From 6cd5776b85101303b585c208f9845a5cc0c36271 Mon Sep 17 00:00:00 2001 From: mraniki Date: Wed, 10 Jul 2024 00:42:32 +0000 Subject: [PATCH] 2024-07-10 00:42:09 UTC - Q What do you call the money you pay to the government when --- .github/dependabot.yml | 11 + .github/renovate.json | 29 + .github/workflows/epg.yml | 94 + .github/workflows/m3u.yml | 116 + IPTV.m3u | 51 + README.md | 28 + config/WebGrab++.config.xml | 65 + config/epg.txt | 3 + config/logo.png | Bin 0 -> 1415213 bytes config/search_terms.txt | 16 + config/template.txt | 51 + config/urls.txt | 8 + guide.xml | 510226 +++++++++++++++++++++++++++++++++ 13 files changed, 510698 insertions(+) create mode 100644 .github/dependabot.yml create mode 100644 .github/renovate.json create mode 100644 .github/workflows/epg.yml create mode 100644 .github/workflows/m3u.yml create mode 100644 IPTV.m3u create mode 100644 README.md create mode 100644 config/WebGrab++.config.xml create mode 100644 config/epg.txt create mode 100644 config/logo.png create mode 100644 config/search_terms.txt create mode 100644 config/template.txt create mode 100644 config/urls.txt create mode 100644 guide.xml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..9d68aee --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +version: 2 +updates: + + # Maintain dependencies for poetry + - package-ecosystem: "pip" + directory: "/" + target-branch: "main" + schedule: + interval: "weekly" + commit-message: + prefix: "⬆️ 🤖 Dependencies" diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..18523f8 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,29 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:base", + ":semanticCommitTypeAll(⬆️ 🛠️)", + ":disableDependencyDashboard" + ], + "gitIgnoredAuthors": ["githubaction@githubaction.com","github-actions[bot]","8766259+mraniki@users.noreply.github.com"], + + "semanticCommits": "enabled", + "labels": ["dependencies"], + "baseBranches": ["main"], + "packageRules": [ + { + "matchManagers": ["pip_requirements"], + "enabled": false + }, + { + "matchUpdateTypes": ["minor", "patch"], + "matchCurrentVersion": "!/^0/", + "automerge": true + }, + { + "matchUpdateTypes": ["major"], + "automerge": false, + "minimumReleaseAge": "30 days" + } + ] +} diff --git a/.github/workflows/epg.yml b/.github/workflows/epg.yml new file mode 100644 index 0000000..3ac3a0b --- /dev/null +++ b/.github/workflows/epg.yml @@ -0,0 +1,94 @@ +name: Make EPG +on: + # schedule: + # - cron: "0 0 * * *" + workflow_dispatch: + +jobs: + epg: + name: Make EPG + runs-on: ubuntu-latest + steps: + + - name: 📥 Checkout the repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Create temp directory + run: | + mkdir -p temp + + + + # - name: Download & Install WebGrab+Plus & its config + # run: | + # wget http://webgrabplus.com/sites/default/files/download/SW/V3.2.0/WebGrabPlus_V3.2_install.tar.gz + # tar -zxvf WebGrabPlus_V3.2_install.tar.gz + # cd .wg++ + # ./install.sh + # wget -N https://raw.githubusercontent.com/mraniki/tv/main/config/WebGrab++.config.xml + # ./run.sh + + # - name: Extract Channel List + # run: | + # sudo apt install xmlstarlet + # xmlstarlet sel -t -v "//channel/@xmltv_id" config/WebGrab++.config.xml > config/channels.txt + + - name: Download manual EPG + run: | + + mapfile -t urls < config/epg.txt + # Iterate over the URLs and download the XML files + for url in "${urls[@]}"; do + echo "Downloading from $url..." + wget -P temp "$url" + done + + - name: xmltv install + run: | + + sudo apt install xmltv + + - name: Merge EPG + run: | + + ls -l temp/*.xml + + # Get a list of downloaded XML files + xml_files=$(ls temp/*.xml) + + # Iterate over the XML files + for xml_file in $xml_files; do + if [ ! -f "guide.xml" ] || [ ! -s "guide.xml" ]; then + # Rename the first XML file to guide.xml + tv_sort --by-channel --output $xml_file $xml_file + mv $xml_file guide.xml + continue + fi + echo "Sorting ..." + tv_sort --by-channel --output $xml_file $xml_file + sleep 2 + tv_merge -t -i guide.xml -m $xml_file -o temp.xml + mv temp.xml guide.xml + + done + + # # Save the merged XML file as compressed tarball + # tar czf guide.tar.gz guide.xml + # rm guide.xml + + - name: 🪪 Identify + run: | + git config --global user.email "action@github.com" + git config --global user.name "${GITHUB_ACTOR}" + + - name: Clean + run: | + rm -rf temp + git checkout --orphan latest_branch + git add -A + git commit -am "${{ steps.date.outputs.DATE }} - ${{ steps.quote.outputs.TITLE }}" + git branch -D main + git branch -m main + git push -f origin main diff --git a/.github/workflows/m3u.yml b/.github/workflows/m3u.yml new file mode 100644 index 0000000..9c9b810 --- /dev/null +++ b/.github/workflows/m3u.yml @@ -0,0 +1,116 @@ +name: Update M3U + +on: + workflow_dispatch: + schedule: + - cron: "0 0 * * *" + + +jobs: + Update: + name: 📺 m3u update + runs-on: ubuntu-latest + permissions: + id-token: write + contents: write + + steps: + - name: 📥 Checkout the repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: 🕓 GetTime + id: date + run: | + echo "DATE=$(date +'%Y-%m-%d %H:%M:%S UTC')" >> $GITHUB_OUTPUT + + + - name: 🔮 Get a random quote + id: quote + run: | + sudo apt-get -y install fortune-mod + TITLE=$(fortune -s | tr -d '[:punct:]' | tr -d '[:digit:]' | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//' | head -n 1) + + # Limit the TITLE to 256 characters + TITLE=${TITLE:0:256} + echo "TITLE=$TITLE" >> $GITHUB_OUTPUT + + - name: Update + run: | + cp config/template.txt IPTV.m3u + echo "IPTV.m3u contents:" + cat IPTV.m3u + + # Define the search terms + mapfile -t search_terms < config/search_terms.txt + # mapfile -t search_terms < <(grep 'tvg-name' template.txt | cut -d'"' -f4) + + for search_term in "${search_terms[@]}"; do + # Control flag for each search term + found=0 + + # Define the URLs + mapfile -t urls < config/urls.txt + for url in "${urls[@]}"; do + if [ $found -eq 1 ]; then + break + fi + + if [[ $url == \#* ]]; then + echo "Skipping commented out URL: $url" + continue + fi + # Download the URLs + echo "Downloading from $url..." + wget --no-check-certificate "$url" -O input.txt + + echo "Extracting URL for $search_term..." + new_url=$(awk "/$search_term/{getline; print; exit}" input.txt) + + echo "Extracted URL: $new_url" + if [ -z "$new_url" ]; then + echo "No New URL found" + else + echo "URL extracted found: $new_url" + echo "" + echo "Replacing URL in file with: $new_url" + awk -v new_url="$new_url" -v search_term="$search_term" ' + index($0, search_term) { + print $0 + getline + print new_url + next + } + {print} + ' IPTV.m3u > temp && mv temp IPTV.m3u + + echo "URL replaced in IPTV.m3u" + echo "IPTV.m3u contents:" + cat IPTV.m3u + + # Set the control flag to 1 + found=1 + fi + done + done + + rm input.txt + echo "Update completed." + echo "IPTV.m3u contents:" + cat IPTV.m3u + + - name: 🪪 Identify + run: | + git config --global user.email "action@github.com" + git config --global user.name "${GITHUB_ACTOR}" + + + - name: Clean + run: | + git checkout --orphan latest_branch + git add -A + git commit -am "${{ steps.date.outputs.DATE }} - ${{ steps.quote.outputs.TITLE }}" + git branch -D main + git branch -m main + git push -f origin main diff --git a/IPTV.m3u b/IPTV.m3u new file mode 100644 index 0000000..af08467 --- /dev/null +++ b/IPTV.m3u @@ -0,0 +1,51 @@ +#EXTM3U +#EXTINF:0 tvg-chno="840001" tvg-name="Bloomberg" tvg-ID="bloomberg.us" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/us/bloomberg.png" group-title="📰 NEWS",Bloomberg +https://jmp2.uk/SamsungTVPlus/USAJ3400011A8.m3u8 +#EXTINF:0 tvg-chno="826000" tvg-name="Reuters" tvg-ID="reuterstv.us" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/uk/reuters.png" group-title="📰 NEWS",Reuters +https://jmp2.uk/Plex/5e20b730f2f8d5003d739db7-5eea71d65252710041e0ccbc.m3u8 +#EXTINF:0 tvg-chno="702003" tvg-name="CNA International" tvg-ID="cna.sg" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/sg/cna.png" group-title="📰 NEWS",Channel News Asia +https://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index.m3u8 +#EXTINF:0 tvg-chno="634001" tvg-name="Al Jazeera" tvg-ID="aljazeera.uk" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/qa/aljazeera.png" group-title="📰 NEWS",Al Jazeera +https://live-hls-web-aje.getaj.net/AJE/03.m3u8 +#EXTINF:0 tvg-chno="056001" tvg-name="Euronews" tvg-ID="euronews.uk" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/fr/euronews.png" group-title="📰 NEWS",Euronews +https://shls-live-ak.akamaized.net/out/v1/115bfcde8fa342d182ef846445cdbdcf/index.m3u8 +#EXTINF:0 tvg-chno="840006" tvg-name="CNN" tvg-ID="cnn.us" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/us/cnn.png" group-title="📰 NEWS ",CNN +https://turnerlive.warnermediacdn.com/hls/live/586495/cnngo/cnn_slate/VIDEO_0_3564000.m3u8 +#EXTINF:0 tvg-chno="840007" tvg-name="CNBC" tvg-ID="cnbc.us" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/us/cnbc.png" group-title="📰 NEWS ",CNBC +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="840008" tvg-name="FOXNEWS" tvg-ID="foxnews.us" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/us/foxnews.png" group-title="📰 NEWS ",CNN +https://fox-foxnewsnow-samsungus.amagi.tv/playlist720p.m3u8 +#EXTINF:0 tvg-chno="826001" tvg-name="BBC One" tvg-ID="bbc1.uk" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/uk/bbcone.png" group-title="🇬🇧 UK",BBC One +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="826002" tvg-name="BBC Two" tvg-ID="bbctwo.uk" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/uk/bbctwo.png" group-title="🇬🇧 UK",BBC Two +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="826003" tvg-name="Channel 4" tvg-ID="channel4.uk" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/uk/channel4.png" group-title="🇬🇧 UK",Channel 4 +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="826004" tvg-name="Channel 5" tvg-ID="channel5.uk" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/uk/channel5.png" group-title="🇬🇧 UK",Channel 5 +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="826005" tvg-name="ITV" tvg-ID="itv.uk" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/uk/itv.png" group-title="🇬🇧 UK",ITV +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="826006" tvg-name="ITV2" tvg-ID="itv2.uk" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/uk/itv2.png" group-title="🇬🇧 UK",ITV2 +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="826010" tvg-name="BBC News" tvg-ID="bbcnews.uk" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/uk/bbcnews.png" group-title="🇬🇧 UK",ITV2 +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="250001" tvg-name="TF1" tvg-ID="tf1.fr" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/fr/tf1.png" group-title=" 🇫🇷 FR ",TF1 +https://www.tntendirect.com/tf1/live/playlist.m3u8 +#EXTINF:0 tvg-chno="250002" tvg-name="France2" tvg-ID="france2.fr" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/fr/france2.png" group-title=" 🇫🇷 FR ",France 2 +https://www.tntendirect.com/france2/live/playlist.m3u8 +#EXTINF:0 tvg-chno="250003" tvg-name="France3" tvg-ID="france3.fr" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/fr/france3.png" group-title=" 🇫🇷 FR ",France 3 +https://www.tntendirect.com/france3/live/playlist.m3u8 +#EXTINF:0 tvg-chno="250004" tvg-name="France4" tvg-ID="france4.fr" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/fr/france4.png" group-title=" 🇫🇷 FR ",France 4 +https://www.tntendirect.com/france4/live/playlist.m3u8 +#EXTINF:0 tvg-chno="250005" tvg-name="France5" tvg-ID="france5.fr" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/fr/france5.png" group-title=" 🇫🇷 FR ",France 5 +https://www.tntendirect.com/france5/live/playlist.m3u8 +#EXTINF:0 tvg-chno="250006" tvg-name="M6" tvg-ID="m6.fr" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/fr/m6.png" group-title=" 🇫🇷 FR ",M6 +https://www.tntendirect.com/m6/live/playlist.m3u8 +#EXTINF:0 tvg-chno="250007" tvg-name="CANAL+" tvg-ID="canal.fr" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/fr/canalplus.png" group-title=" 🇫🇷 FR ",CANAL+ +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="250008" tvg-name="PARIS PREMIERE" tvg-ID="parispremiere.fr" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/fr/parispremiere.png" group-title=" 🇫🇷 FR ",PARIS PREMIERE +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="276001" tvg-name="Das Erste" tvg-ID="daserste.de" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/de/daserste.png" group-title=" 🇩🇪 DE ",Das Erste +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="000001" tvg-name="NightWave Plaza" radio="true" tvg-ID="plaza.one" tvg-logo="http://pa1.narvii.com/6389/4bcee8daec7d0300c37f22e929e8a245e51772b0_00.gif" group-title=" 📻 Radio ",NightWave Plaza +http://radio.plaza.one/mp3 diff --git a/README.md b/README.md new file mode 100644 index 0000000..4687641 --- /dev/null +++ b/README.md @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + +
Logo +
+ M3U

+ https://shorturl.at/nrtDL
+ +
+ Electronic Program Guide

+ https://shorturl.at/xKV26 +
+ PLAYER
+
+ + diff --git a/config/WebGrab++.config.xml b/config/WebGrab++.config.xml new file mode 100644 index 0000000..e028ce5 --- /dev/null +++ b/config/WebGrab++.config.xml @@ -0,0 +1,65 @@ + + + + + + guide.xml + + rex + Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36 Edg/79.0.309.71 + + + + on + 4 + 0 + f + + + + CNA + AlJazeera English + Euronews + BBC1 HD + BBC2 HD + Channel 4 HD + Channel 5 + ITV HD + ITV2 HD + TF1 + France 2 + France 3 + France 4 + France 5 + Canal+ + M6 + Paris Première + Guyane la 1ère + CBS + ABC + NBC + FOX + PBS + TBS Superstation (East) + Turner Network Television (East) + USA Network (East) + HBO (East) + HBO 2 (East) + Cable News Network + Sky Sports Main Event + Sky Sports Premier League + Sky Sports Football + Sky Sports Cricket + Sky Sports Golf + Sky Sports Racing + Sky Sports F1 + Sky Sports NFL + Sky Sports Arena + Sky Sports Mix + ESPN + ESPN2 + \ No newline at end of file diff --git a/config/epg.txt b/config/epg.txt new file mode 100644 index 0000000..972d7a1 --- /dev/null +++ b/config/epg.txt @@ -0,0 +1,3 @@ +https://xmltvfr.fr/xmltv/xmltv_tnt.xml +https://raw.githubusercontent.com/bebawy6/EPG/master/usEPG.xml +https://github.com/Catch-up-TV-and-More/xmltv/raw/master/tv_guide_all.xml diff --git a/config/logo.png b/config/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..1cc3d72c1271a59e740bb4cf390b6b015e057432 GIT binary patch literal 1415213 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%0A3-3f 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

l= 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

IHigd!f$Gmd|YqGSKS&}$qvzk^i3TCO^Bkqt` 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⁢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

6*hz8@smeMMK`x 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�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 mC`7p2;k#|7n+jZw1kuz?b56(MjJKr|E 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


Z98U)vhd#9)n^*R}0dr`w_Teh|^NnOM?31d+a} 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
m>$pZ@H#Zu@a%t#gJg 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 z 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
7*DTS3K6+hB6#F`-HEAI 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 p;Pt%*zKfXi{`l?g&xqW(H7?j0OaEM|Vpy!=I7 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%0D~>*(^8$$8f7EsSWS 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¾x4ZqJ|I`2MANlit?$4L%Pc9Fw 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ϗ-@b+-m-rarn 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 z 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 Avj6}9 literal 0 HcmV?d00001 diff --git a/config/search_terms.txt b/config/search_terms.txt new file mode 100644 index 0000000..d16a183 --- /dev/null +++ b/config/search_terms.txt @@ -0,0 +1,16 @@ +Bloomberg +Reuters +CNA International +Jazeera +Euronews +CNN +FOXNEWS +CNBC +BBC One +TF1 +France2 +France3 +France4 +France5 +M6 +DasErste diff --git a/config/template.txt b/config/template.txt new file mode 100644 index 0000000..a01c196 --- /dev/null +++ b/config/template.txt @@ -0,0 +1,51 @@ +#EXTM3U +#EXTINF:0 tvg-chno="840001" tvg-name="Bloomberg" tvg-ID="bloomberg.us" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/us/bloomberg.png" group-title="📰 NEWS",Bloomberg +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="826000" tvg-name="Reuters" tvg-ID="reuterstv.us" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/uk/reuters.png" group-title="📰 NEWS",Reuters +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="702003" tvg-name="CNA International" tvg-ID="cna.sg" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/sg/cna.png" group-title="📰 NEWS",Channel News Asia +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="634001" tvg-name="Al Jazeera" tvg-ID="aljazeera.uk" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/qa/aljazeera.png" group-title="📰 NEWS",Al Jazeera +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="056001" tvg-name="Euronews" tvg-ID="euronews.uk" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/fr/euronews.png" group-title="📰 NEWS",Euronews +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="840006" tvg-name="CNN" tvg-ID="cnn.us" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/us/cnn.png" group-title="📰 NEWS ",CNN +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="840007" tvg-name="CNBC" tvg-ID="cnbc.us" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/us/cnbc.png" group-title="📰 NEWS ",CNBC +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="840008" tvg-name="FOXNEWS" tvg-ID="foxnews.us" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/us/foxnews.png" group-title="📰 NEWS ",CNN +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="826001" tvg-name="BBC One" tvg-ID="bbc1.uk" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/uk/bbcone.png" group-title="🇬🇧 UK",BBC One +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="826002" tvg-name="BBC Two" tvg-ID="bbctwo.uk" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/uk/bbctwo.png" group-title="🇬🇧 UK",BBC Two +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="826003" tvg-name="Channel 4" tvg-ID="channel4.uk" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/uk/channel4.png" group-title="🇬🇧 UK",Channel 4 +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="826004" tvg-name="Channel 5" tvg-ID="channel5.uk" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/uk/channel5.png" group-title="🇬🇧 UK",Channel 5 +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="826005" tvg-name="ITV" tvg-ID="itv.uk" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/uk/itv.png" group-title="🇬🇧 UK",ITV +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="826006" tvg-name="ITV2" tvg-ID="itv2.uk" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/uk/itv2.png" group-title="🇬🇧 UK",ITV2 +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="826010" tvg-name="BBC News" tvg-ID="bbcnews.uk" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/uk/bbcnews.png" group-title="🇬🇧 UK",ITV2 +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="250001" tvg-name="TF1" tvg-ID="tf1.fr" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/fr/tf1.png" group-title=" 🇫🇷 FR ",TF1 +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="250002" tvg-name="France2" tvg-ID="france2.fr" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/fr/france2.png" group-title=" 🇫🇷 FR ",France 2 +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="250003" tvg-name="France3" tvg-ID="france3.fr" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/fr/france3.png" group-title=" 🇫🇷 FR ",France 3 +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="250004" tvg-name="France4" tvg-ID="france4.fr" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/fr/france4.png" group-title=" 🇫🇷 FR ",France 4 +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="250005" tvg-name="France5" tvg-ID="france5.fr" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/fr/france5.png" group-title=" 🇫🇷 FR ",France 5 +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="250006" tvg-name="M6" tvg-ID="m6.fr" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/fr/m6.png" group-title=" 🇫🇷 FR ",M6 +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="250007" tvg-name="CANAL+" tvg-ID="canal.fr" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/fr/canalplus.png" group-title=" 🇫🇷 FR ",CANAL+ +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="250008" tvg-name="PARIS PREMIERE" tvg-ID="parispremiere.fr" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/fr/parispremiere.png" group-title=" 🇫🇷 FR ",PARIS PREMIERE +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="276001" tvg-name="Das Erste" tvg-ID="daserste.de" tvg-logo="https://raw.githubusercontent.com/fraudiay79/logos/master/de/daserste.png" group-title=" 🇩🇪 DE ",Das Erste +https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8 +#EXTINF:0 tvg-chno="000001" tvg-name="NightWave Plaza" radio="true" tvg-ID="plaza.one" tvg-logo="http://pa1.narvii.com/6389/4bcee8daec7d0300c37f22e929e8a245e51772b0_00.gif" group-title=" 📻 Radio ",NightWave Plaza +http://radio.plaza.one/mp3 diff --git a/config/urls.txt b/config/urls.txt new file mode 100644 index 0000000..f5bf863 --- /dev/null +++ b/config/urls.txt @@ -0,0 +1,8 @@ +https://raw.githubusercontent.com/iptv-org/iptv/master/streams/sg.m3u +https://raw.githubusercontent.com/twoonethree/IPTV/5bc9d2498988037b0db7a3d9e81723647e662387/News.m3u +https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/ed0131394035abaf176a2daa8ef3c51b53b773be/IPTV/TNTenDirect.m3u +https://raw.githubusercontent.com/iptv-org/iptv/7db1317457cade1863617fc371b7f6c15d2abfaf/streams/qa.m3u +https://i.mjh.nz/SamsungTVPlus/us.m3u8 +https://i.mjh.nz/Plex/us.m3u8 +#https://list.iptvcat.com/my_list/s/3b4035e829b4eb0e3207b6fc50899a9e.m3u8 +https://raw.githubusercontent.com/iptv-org/iptv/master/streams/de.m3u diff --git a/guide.xml b/guide.xml new file mode 100644 index 0000000..5ac9d07 --- /dev/null +++ b/guide.xml @@ -0,0 +1,510226 @@ + + + + + + + Usa: CBS 9 (KCAL) Los Angeles + + + + Adult On Demand + + + + USA: ABC News HD + + + + Boomerang + + + + WEP + + + + Consumer News & Business Channel + + + + EPIX On Demand + + + + VH1 - Pacific Feed + + + + Usa: NEWSMAX TV + + + + NickMusic + + + + UNI (KMEX) Los Angeles, CA + + + + Catchy Comedy Network + + + + Disney XD USA - Pacific Feed + + + + IONPlus + + + + SHOXBET - Eastern + + + + Jewish Life Television + + + + NBA TV USA + + + + Local Programming + + + + KCET Los Angeles, CA + + + + OuterMAX EAST + + + + Impact Television Network + + + + MOVIEplex - Pacific + + + + NBA League Pass 4 + + + + Hallmark - Pacific Feed + + + + Destination America + + + + MC - Indie + + + + MC - Dance/EDM + + + + Canal+ Cinema + + + + GMA Life TV + + + + MOMAX + + + + beIN Sport USA + + + + MLB Extra Innings 2 HD + + + + TFX + + + + Atres Series + + + + WWE + + + + Canal de La Fe (KBEH) Los Angeles, CA + + + + L'Equipe TV + + + + MC - 80s + + + + Law & Crime (LAWC) [252] + + + + Planete+ + + + + NBA League Pass 1 HD + + + + Estrella (KRCA) Los Angeles, CA + + + + FUSE TV - Pacific feed + + + + Movies On Demand Hits + + + + Oprah Winfrey Network USA Pacific + + + + ESPN News + + + + Crime & Investigation Network USA + + + + MC - Singers & Swing + + + + ThrillerMax - East + + + + ESPN + + + + MC - Contemporary Christian + + + + El Rey Network + + + + GVV- Goneviral Vogue HD + + + + Quality Value Convenience Network + + + + LCI + + + + FOXWX + + + + Lifetime Network US - Eastern Feed + + + + Video Rola + + + + Starz Encore Suspense - Eastern + + + + TF1 + + + + AT&T SportsNet Rocky Mountain (Dish) (ATTSN) [5414] + + + + The Word Network + + + + EPIX2 - East + + + + France Info + + + + UniMás - Network Pacific + + + + Nickelodeon USA - Pacific Feed + + + + FX Movie Channel + + + + Bally Sports SoCal + + + + TVBS (Mandarin) + + + + Discovery Channel (US) - Pacific Feed + + + + More Max (East) + + + + Bally Sports South (Dish) (BSSO) [412.10] + + + + Nicktoons - West + + + + NBC Universo - West + + + + FX Networks East Coast + + + + Start TV (KCBS-TV2) Los Angeles, CA + + + + Canal Once (Mexico) + + + + beIN Sport en Espanol + + + + Create (KLCS3) Los Angeles CA + + + + CW + + + + ESPN Goal Line + + + + MC - Light Classical + + + + NHK World (KCET-DT3) Los Angeles, CA + + + + Bally Sports Southwest HDTV 24/7 (Main) (BSSWHD) [412.06] + + + + FanDuel TV + + + + Starz Kids & Family - Eastern + + + + Localish (KABC-TV2) HD Los Angeles, CA + + + + Usa: FOX 11 (KTTV) Los Angeles + + + + NMZK + + + + Super Canal Caribe + + + + Telemicro - Canal 5 + + + + ESPN College Extra 7 HD + + + + Phoenix InfoNews + + + + Baby First TV + + + + FOROtv + + + + CHDDRHD + + + + NBCSCHD + + + + Cinelatino USA + + + + ESPN College Extra 6 HD + + + + Azteca (KJLA) Los Angeles, CA + + + + CTI-Zhong Tian Channel + + + + Starz Encore Action - Eastern + + + + MGM+ Marquee HDTV (East) (MGM+MRQ) [382] + + + + YESHDNY + + + + Hallmark Movies & Mysteries - Eastern + + + + Showtime FamilyZone (East) (SHOFe) [324] + + + + Usa: ABC 7 (KABC) Los Angeles + + + + Bandamax + + + + LNGHRNH + + + + Movies! (KCOP-TV3) Los Angeles, CA + + + + TeleXitos (KVEA2) Los Angeles, CA + + + + MLB Extra Innings 7 + + + + Home & Garden Television (East) + + + + CGTN + + + + RTVi + + + + Universal Kids + + + + HSN - Home Shopping Network + + + + MC - Stage & Screen + + + + MC - Rock + + + + MLB Extra Innings 11 + + + + CMAX + + + + MLS Direct Kick 8 + + + + Disney Junior USA - West + + + + NHL Network USA + + + + HBO Family West (PACIFIC) + + + + Cinemax - Eastern Feed + + + + TV Games Network + + + + Showtime Extreme West (PACIFIC) + + + + MAXDM + + + + NBA League Pass 8 + + + + Big Ten Network HDTV (24/7 Overflow #3) (BTFB3) [405.4] + + + + Sony Movie Channel (SONY) [386] + + + + MC - Pop Hits + + + + Entertainment OnDemand + + + + USA Network - Pacific + + + + NHL Center Ice 4 + + + + GVX- Goneviral X-treme HD + + + + USA| NBC HD + + + + Usa: KTLA 5 Los Angeles + + + + RMC Story + + + + HLN - West + + + + H&I - Heroes & Icons Network + + + + The Tennis Channel + + + + Cinemáx - East + + + + NIKP + + + + Starz In Black - Eastern + + + + Pursuit Channel (DISH only) (PRST) [393] + + + + NHL Center Ice 9 + + + + Disney XD WEST (PACIFIC) + + + + ION (KPXN) Los Angeles, CA + + + + VICE + + + + CBS Sports Network USA + + + + TUDN + + + + Movies On Demand + + + + TLC USA - Eastern + + + + Nature & Knowledge On Demand + + + + MC - Kidz Only! + + + + ETTV News + + + + How To On Demand + + + + Starz Encore - Eastern + + + + SHOBETH + + + + Cutting Edge on Demand + + + + MLB Extra Innings 1 + + + + MC - Today Country + + + + C-SPAN 3 + + + + ESPN College Extra 4 HD + + + + Playboy + + + + MLB Extra Innings 10 + + + + Starz - Eastern + + + + Bounce (KMEX-DT3) Los Angeles, CA + + + + WE tv + + + + Canal 22 (KWHY-TV) Los Angeles, CA + + + + 5 STAR MAX WEST PACIFIC + + + + FYI (FYI) [119] + + + + Showtime 2 - Eastern + + + + ITV Gold + + + + TV One + + + + BET - Pacific Feed + + + + W9 + + + + GVM- Goneviral Music HD + + + + MC - 90s + + + + Lifetime Real Women West + + + + Showtime Showcase West (PACIFIC) + + + + i24news + + + + Turner Classic Movies USA + + + + Teleformula + + + + MoreMax WEST (Pacific) + + + + NHL Center Ice 8 + + + + Usa: NBC NEWS NOW HD + + + + NHL Center Ice 1 HD + + + + TV Land - Pacific + + + + HBO ZONE WEST (PACIFIC) + + + + MeTV (KAZA) Los Angeles, CA HD + + + + CStar + + + + Here! On Demand + + + + MLB Extra Innings 6 + + + + HBO Latino (HBO 7) - Eastern + + + + Golf Channel USA + + + + France 4 + + + + MC - Alternative + + + + France 2 + + + + IFC HDTV (East) (IFCHD) [133] + + + + The Cooking Channel + + + + MC - Hip-Hop Classics + + + + Enlace + + + + MOMAXP + + + + Starz Encore Family - Eastern + + + + KDOC - Los Angeles, CA + + + + Estudio 5 + + + + Outdoor Channel US + + + + BFM TV + + + + Syfy - Pacific Feed + + + + Pets TV + + + + La Chaine Parlementaire + + + + SonLife Network + + + + TNT - Pacific Feed + + + + CNNI + + + + A&E US - Pacific Feed + + + + dummy001 + + + + Paramount Network USA - Eastern Feed + + + + Ca: KTLA + + + + QVC + + + + HBO SIGNATURE WEST (PACIFIC) + + + + RFD-TV + + + + MC - Hip-Hop and R&B + + + + Usa: MSNBC + + + + ATN - Max 2 + + + + NHL Center Ice 7 + + + + Usa: Fox News HD + + + + TBS - Pacific + + + + Big Ten Network (24/7 Overflow #4) (BTFB4) [405.5] + + + + ESPN College Extra 3 HD + + + + HITN + + + + ETTV Super - West + + + + UniMás (KFTR) Ontario, CA + + + + Big Ten Network HDTV (24/7 Overflow #1) (BTFB1) [405.2] + + + + IFC (East) + + + + ASPiRE TV + + + + EPIX - East + + + + MC - Max + + + + Retro TV (KBEH3) Los Angeles, CA + + + + AYM Sports + + + + Investigation Discovery USA - Pacific + + + + MC - Metal + + + + Big Ten Network + + + + ESPN U + + + + Caracol TV Internacional + + + + 5MAX + + + + NBA League Pass 2 + + + + HBO COMEDY WEST (PACIFIC) + + + + Bravo USA - Pacific Feed + + + + truTV USA - Pacific + + + + Gol TV USA + + + + HGTV WEST (PACIFIC) + + + + Cartoon Network USA - Pacific Feed + + + + Jewelry Television + + + + Disney Junior East + + + + The Learning Channel HD + + + + Outside Television (OUTSD) [390] + + + + MC - Sounds of The Seasons + + + + P.E.G. Access + + + + Fox Deportes + + + + BET Soul + + + + My Network TV + + + + MoreMax Eastern + + + + SEC Network + + + + FYI USA - Pacific + + + + NHL Center Ice 1 + + + + Cine Mexicano + + + + MC - Pop Country + + + + Independent Film Channel US + + + + JUSTICE CENTRAL + + + + ESPN College Extra 8 HD + + + + USA: CNBC HD + + + + CLEO TV + + + + ViendoMovies + + + + Usa: CBS 2 (KCBS) Los Angeles + + + + ETTV YOYO + + + + Starz Comedy (East) (STZ C) [354] + + + + HDNet Movies + + + + University of California TV + + + + NRJ12 + + + + ESPN College Extra 1 + + + + NHL Center Ice 13 + + + + USA| Bloomberg HD + + + + Antenna (KTLA2) Los Angeles, CA + + + + Lifetime Movies - West + + + + ESPN Classics USA + + + + EPIX Drive-In + + + + E! Entertainment USA - Eastern Feed + + + + EPIX Hits + + + + Military History + + + + CGN (KSCI-DT4) Los Angeles, CA + + + + Altitude Sports & Entertainment (Colorado) HDTV 24/7 (ALTHD) [412.02] + + + + ShopHQ (KSCI) Los Angeles, CA + + + + CMT US - Pacific Feed + + + + Outrageous On Demand + + + + MC - Solid Gold Oldies + + + + OMAX + + + + MC - R&B Soul + + + + Fox Sports 2 + + + + Canal Sur + + + + ESPN College Extra 2 HD + + + + Usa: BBC America HD + + + + 6ter + + + + AMCP + + + + Playboy On Demand + + + + NHL Center Ice 11 + + + + TeenNick - Pacific + + + + Usa: BBC World News + + + + Ultra Familia + + + + MC - Country Hits + + + + ES.TV + + + + MLB Extra Innings 13 + + + + MLB Extra Innings 3 + + + + MC - Rock Hits + + + + Bally Sports West + + + + MOVIE + + + + HBO Zone - East + + + + Music Choice + + + + World Fishing Network (US) (WFN) [394] + + + + New Tang Dynasty (KVMD) Twentynine Palms, CA + + + + Canal+ Sport + + + + NHL Center Ice 5 + + + + BET WEST (PACIFIC) + + + + Showtime Showcase - Eastern + + + + DOGTV (DOGTV) [285] + + + + Jewish Broadcasting Service + + + + Comet TV (COMET) [289] + + + + Daystar (KOCE-TV3) Los Angeles, CA + + + + Black Entertainment Television (East) + + + + MTV Classic - West + + + + Starz Encore Black - Eastern + + + + Usa: Fox Business + + + + CCTV-4 America + + + + Showtime - Eastern Feed + + + + Buzzr TV (KCOP-TV2) Los Angeles, CA + + + + Gem Shopping Network + + + + Government Access + + + + MLB Extra Innings 2 + + + + Free Speech TV (FSTV) [4379] + + + + Telehit + + + + Usa: CNN HD + + + + NHK WORLD + + + + MC - Tropicales + + + + Weather Nation TV + + + + Baby First TV Espanol + + + + MLS Direct Kick 7 + + + + MLB Extra Innings 5 + + + + Newsy + + + + MLB Extra Innings 4 + + + + Stadium College Sports - Pacific + + + + Starz On Demand + + + + Fox Sports 1 + + + + PBS Kids (KLCS2) Los Angeles, CA + + + + France 3 + + + + WOMEN + + + + FXX USA - Pacific + + + + ACMAXP + + + + Disney on Demand + + + + The Africa Channel + + + + MC - Y2K + + + + KBS World + + + + MC - Toddler Tunes + + + + Wapa America + + + + MTV 2 - West + + + + MLB Extra Innings 12 + + + + Disney XD EAST + + + + MAXP + + + + Create (KCET2) Los Angeles, CA + + + + NBA League Pass 7 + + + + MoreMax Eastern + + + + NHL Center Ice 2 + + + + HBO Signature (HBO 3) - Eastern + + + + MC - R&B Classics + + + + FM + + + + Gulli + + + + MC - Classic Rock + + + + RECIPE.TV + + + + France 5 + + + + Usa: CNBC World + + + + Stadium College Sports - Central + + + + New England Sports Network HDTV (NESNHD) [412.24] + + + + FX NETWORK WEST (PACIFIC) + + + + Starz Cinema - Eastern + + + + C-SPAN + + + + INSP + + + + M6 + + + + Pac-12 Network + + + + BET Jams + + + + Telemundo (KVEA) Los Angeles, CA + + + + MC - Soft Rock + + + + Community Channel + + + + C-SPAN 2 + + + + QVC2 + + + + Cozi TV (KNBC2) Los Angeles, CA + + + + MC - Party Favorites + + + + MNT (KCOP) Los Angeles, CA + + + + PixL HDTV (PxLHD) [388] + + + + Arte + + + + POP - West + + + + THMAX + + + + MLB Extra Innings 14 + + + + Big Ten Network HDTV (24/7 Overflow #2) (BTFB2) [405.3] + + + + ATTRM1H + + + + De Pelicula + + + + MC - Soundscapes + + + + HALLDR + + + + SHOPHQ + + + + PBS (KLCS) Los Angeles, CA + + + + WE (Women Entertainment) - Pacific + + + + AXS TV USA + + + + SundanceTV USA - West + + + + Paris Première + + + + PBS World (KOCE-TV4) Huntington Beach, CA + + + + HBO FAMILY WEST PACIFIC + + + + TBN (KTBN) Los Angeles, CA + + + + Starz Encore Westerns - Eastern + + + + Canal+ + + + + TMC Xtra - Eastern + + + + NASA Public Educational Channel + + + + Stadium College Sports - Atlantic + + + + Discovery Familia + + + + Ovation + + + + Discovery Science EAST + + + + NHL Center Ice 14 + + + + Galavision - Pacific Feed + + + + FLIX - Eastern + + + + PBS + + + + Freeform - East Feed + + + + ESPN Deportes + + + + FOX Soccer Plus + + + + ESPN College Extra 5 HD + + + + Game Show Network - West + + + + NFL RedZone + + + + NHL Center Ice 2 HD + + + + Baby TV + + + + Hallmark Movies & Mysteries - Pacific + + + + MC - Classic Country + + + + CentroAmérica TV + + + + BET Her + + + + TV5 Monde USA + + + + Heartland (KWHY-TV2) Los Angeles, CA + + + + MC - Reggae + + + + The Movie Channel (East) + + + + HSN 2 + + + + MC - Classical Masterpieces + + + + Disney Movies OnDemand + + + + Starz Edge - Eastern + + + + Bally Sports West (BSWST) [412.07] + + + + MLB Extra Innings 9 + + + + + Usa: CBSN Los Angeles + + + + NBA League Pass 1 + + + + PBS SoCal1 (KOCE) Huntington Beach, CA HD + + + + Too Much! On Demand + + + + ACMAX + + + + NFL Network + + + + Oxygen - Eastern Feed + + + + Antena 3 Internacional + + + + OAN + + + + TF1 Series Films + + + + AWEHD + + + + TMC + + + + NBA League Pass 10 + + + + Root Sports Northwest 24/7 HDTV (Seattle) (ROOTD) [5426] + + + + NBA League Pass 3 + + + + MY DESTINATION.TV + + + + MLB Network + + + + TMC (US) - Eastern Feed + + + + MC - Blues + + + + MC - Hit List + + + + Univision - Pacific Feed + + + + MC - Throwback Jamz + + + + YouToo America + + + + MovieMax (Max 6) - East + + + + PCN + + + + Pac-12 LA + + + + Kids OnDemand + + + + Shop LC (WLWT3) Cincinnati, OH + + + + MLB Extra Innings 1 HD + + + + NewsNation - Eastern Feed + + + + HBO 2 WEST (PAFCIFIC) + + + + MC - Music Urbana + + + + Motor Trend + + + + TV Chile + + + + MC - Romances + + + + The Sportsman Channel + + + + NBA League Pass 5 + + + + National Geographic US - Pacific + + + + Spectrum SportsNet LA + + + + GAC Family - East + + + + Usa: The Weather Channel + + + + USA: NBC 4 (KNBC) Los Angeles + + + + Cinemax (East) + + + + MTV Tr3s - West + + + + ActionMax - Eastern + + + + Motor Trend HD + + + + NHL Center Ice 12 + + + + CARS.TV + + + + ETTV America + + + + Hustler TV USA On Demand + + + + Chérie 25 + + + + MC - Jazz + + + + Movies On Demand Kids & Teens + + + + Starz Encore Classic - Eastern + + + + ActionMAX WEST (PACIFIC) + + + + Nick Jr. - West + + + + Magnolia - East + + + + MC - Pop Latino + + + + ThrillerMax West (PACIFIC) + + + + SHOBEHP + + + + The Cowboy Channel + + + + Discovery Family Channel + + + + MC - Mexicana + + + + MLS Direct Kick 5 + + + + Disney - Pacific Feed + + + + MC - Adult Alternative + + + + Food Network USA - Pacific Feed + + + + PBS SoCal2 (KOCE-TV2) Huntington Beach, CA + + + + Willow Xtra (WILLX) [722] + + + + National Geographic Wild + + + + TBN Inspire + + + + HBO Family - Eastern Feed + + + + ETTV Drama + + + + MC - 70s + + + + MC - Easy Listening + + + + Travel US - West + + + + 5 Star Max - Eastern + + + + MLS Direct Kick 6 + + + + MavTV USA + + + + Fox + + + + MC - Smooth Jazz + + + + ESPN2 + + + + AMC - Pacific Feed + + + + SundanceTV HD + + + + NHL Center Ice 6 + + + + PBS SoCal1 (KOCE) Huntington Beach, CA + + + + CNews + + + + Bally Sports Sun HDTV (BSSUNHD) [412.12] + + + + Usa: Fox News Now + + + + American Heroes Channel + + + + Starz West (PACIFIC) + + + + INDIEplex - Pacific + + + + LifeStyle Network + + + + Playboy TV en espanol + + + + UP + + + + BYU (Brigham Young University) + + + + NHL Center Ice 3 + + + + GSN + + + + USA: CNN International HD + + + + ReelzChannel + + + + Spectrum SportsNet + + + + De Pelicula Clasico + + + + NBA League Pass 9 + + + + Tele N + + + + MC - Rap + + + + History Channel US - Pacific Feed + + + + MLB Extra Innings 8 + + + + Discovery Life Channel + + + + NBC Sports Network + + + + RETROplex - Pacific + + + + HGTV USA - Eastern Feed + + + + NBA League Pass 6 + + + + MAX + + + + Animal Planet US - East + + + + ACC + + + + Smithsonian Channel USA + + + + RMC Découverte + + + + MTV Live + + + + MC - Gospel + + + + C8 + + + + Multimedios + + + + HBO - Eastern Feed + + + + RCN Nuestra Tele + + + + Olympic Channel + + + + EWTN USA + + + + Bravo West (PACIFIC) + + + + TVBe (Cantonese) + + + + ABP News + + + + RedBull TV + + + + Science + + + + Showtime Extreme - Eastern + + + + RTN+ - Russian Television Network + + + + MC - Teen Beats + + + + NHL Center Ice 10 + + + + Discovery Channel WEST (PACIFIC) + + + + THMAXP + + + + NEXT + + + + Usa: CBSN News + + + + Comedy Central (US) - Pacific Feed + + + + Azteca (KJLA) Los Angeles, CA HD + + + + Willow Cricket + + + + TVB1 (Cantonese) + + + + Revolt TV + + + + Turner Network Television (East) + + + + MGM HD (USA) + + + + Fusion + + + + SEC Network Alternate + + + + HBO Comedy - East + + + + HBO 2 - Eastern Feed + + + + MLB Network Strike Zone + + + La robe de ma vie + Suivez les aventures de plusieurs futures mariées qui recherchent LA robe de leurs rêves pour le plus beau jour de leur vie. Une boutique, deux clientes et leurs accompagnants vivront devant vous cette incroyable quête ! + Divertissement + Jeu + + + Tout public + + + + La robe de ma vie + Amandine et Elena + Suivez les aventures de plusieurs futures mariées qui recherchent LA robe de leurs rêves pour le plus beau jour de leur vie. Une boutique, deux clientes et leurs accompagnants vivront devant vous cette incroyable quête ! + Divertissement + Jeu + + 0 . 0 . + + Tout public + + + + La robe de ma vie + Emilie et Natacha + Suivez les aventures de plusieurs futures mariées qui recherchent LA robe de leurs rêves pour le plus beau jour de leur vie. Une boutique, deux clientes et leurs accompagnants vivront devant vous cette incroyable quête ! + Divertissement + Jeu + + 0 . 0 . + + Tout public + + + + La robe de ma vie + Laura et Isabelle + Suivez les aventures de plusieurs futures mariées qui recherchent LA robe de leurs rêves pour le plus beau jour de leur vie. Une boutique, deux clientes et leurs accompagnants vivront devant vous cette incroyable quête ! + Divertissement + Jeu + + 0 . 0 . + + Tout public + + + + La robe de ma vie + Maryline et Kelly + Suivez les aventures de plusieurs futures mariées qui recherchent LA robe de leurs rêves pour le plus beau jour de leur vie. Une boutique, deux clientes et leurs accompagnants vivront devant vous cette incroyable quête ! + Divertissement + Jeu + + 0 . 0 . + + Tout public + + + + La robe de ma vie + Suivez les aventures de plusieurs futures mariées qui recherchent LA robe de leurs rêves pour le plus beau jour de leur vie. Une boutique, deux clientes et leurs accompagnants vivront devant vous cette incroyable quête ! + Divertissement + Jeu + + + Tout public + + + + La petite maison dans la prairie + Le boxeur + Les Ingalls ont de nouveaux voisins, les Garvey et la mystérieuse et agaçante Kezia. Les évènement se succèdent, heureux ou malheureux. + Série + Série Passion + + 3 . 9 . + + Tout public + + + + La petite maison dans la prairie + Vive la mariée + Nellie Oleson fréquente Luke Simms. Ses parents n'approuvant pas du tout cette relation, Nellie envisage de fuguer avec le jeune homme et de se marier... + Série + Série Passion + + 3 . 11 . + + Tout public + + + + La petite maison dans la prairie + La foire + La famille Ingalls se rend à la traditionnelle foire de Mankato. Comme chaque année, Caroline et madame Oleson s'affrontent lors d'un concours de pâtisserie... + Série + Série Passion + + 3 . 10 . + + Tout public + + + + La petite maison dans la prairie + La liberté + La tension monte à Walnut Grove, lorsque le chef d'une tribu indienne vient chercher de l'aide pour son père malade... + Série + Série Passion + + 3 . 12 . + + Tout public + + + + Charmed + Le corps du délit + Imara, une sorcière avide de pouvoir, invoque une formule lui permettant d'échanger son corps avec celui de Phoebe. Après l'avoir emprisonnée dans le monde souterrain, Imara part en guerre contre Zankou. Privée de ses dons, Phoebe parvient à s'enfuir mais se heurte à ses soeurs, qui ne la reconnaissent pas... + Série + Série Sc.Fiction + + 6 . 18 . + + Tout public + + + + Charmed + La main sur le berceau + Les soeurs Halliwell découvrent que Wyatt a un ami imaginaire qui n'est autre qu'un démon. Celui-ci tente par tous les moyens de gagner la confiance de l'enfant afin de le convertir au Mal. En voulant protéger son fils, Piper invoque une formule mais fait venir par inadvertance le Wyatt du futur... + Série + Série Sc.Fiction + + 6 . 19 . + + Tout public + + + + Charmed + Derniers maux + Tim, un ami de fac de Phoebe, est abattu par un tueur à gages, qui est en fait un puissant démon. Son esprit revient pour hanter la jeune femme et lui faire sentir le poids de sa culpabilité. Les soeurs Halliwell ignorent que c'est en fait une ruse de Zankou destinée à les déstabiliser... + Série + Série Sc.Fiction + + 6 . 20 . + + Tout public + + + + Charmed + Derniers maux + Zankou, qui est entré en possession du grimoire, projette de s'en servir afin d'ouvrir le Nexus et ainsi libérer l'Ombre. Il invoque une formule lui permettant de s'approprier le pouvoir de prémonition de Phoebe. Il est désormais capable d'anticiper les pièges que ses ennemies entreprennent de lui tendre... + Série + Série Sc.Fiction + + 6 . 21 . + + Tout public + + + + Charmed + Une nouvelle vie + Officiellement, les soeurs Halliwell ont péri lors d'une mystérieuse explosion. Elles sont cependant bien vivantes et comptent profiter de leur nouvelle vie, à l'abri des démons. Pour cela, elles décident de changer d'identité en invoquant une formule leur permettant de modifier leur apparence... + Série + Série Sc.Fiction + + 7 . 0 . + + Tout public + + + + Hawaii 5-0 + Umia Ka Hanu + Un pari entre Steve et Chin mène tout droit Chin et Kono vers la mort. De son côté, Lou est à Chicago afin d'obtenir, par la force, les aveux de son ancien meilleur ami, Clay Maxwell, sur le meurtre de sa femme Diane lors d'une randonnée à Hawaii quelque temps auparavant... + Série + Série Suspense + + 5 . 12 . + + + -10 + + + + Hawaii 5-0 + Hoa 'inea + Les agents du 5-0 sont amenés à ouvrir une nouvelle enquête sur une tentative de meurtre. Très vite, ils en déduisent qu'elle pourrait probablement s'expliquer par une infidélité. C'est l'occasion pour chaque membre de l'équipe de raconter à ses collègues comment s'est déroulée sa soirée en amoureux... + Série + Série Suspense + + 5 . 13 . + + + -10 + + + + Hawaii 5-0 + Ke Koa Lokomaika'i + McGarrett fait équipe avec un jeune homme souffrant d'autisme, qui pourrait posséder des informations sur un assassinat. Le meurtre semble étroitement lié au cambriolage d'une banque. Encore une fois, l'ombre de Gabriel Waincroft plane sur l'affaire. La mère de Danny est interrogée par le FBI... + Série + Série Suspense + + 5 . 14 . + + + -10 + + + + Hawaii 5-0 + Ua 'o'oloku Ke Anu I Na Mauna + Deux yakuzas ont été retrouvés morts dans une voiture devant l'habitation de Kono et Adam. Ces meurtres ont un rapport avec Gabriel. Pendant ce temps, le 5-0 s'intéresse à Ben Lahinea, un artiste qui fait des sculptures avec des objets trouvés sur les barrières de corail. Il serait mort accidentellement... + Série + Série Suspense + + 5 . 2 . + + + -10 + + + + Hawaii 5-0 + Ka Papahana Holo Pono + Un couple de chasseurs de plantes tropicales trouve dans la forêt un homme mort, avec autour de lui des billets de banque. La victime ressemble à un sans-abri portant un costume de luxe qui date des années 1980. Il semblerait aussi que l'homme n'ait plus été en contact avec le soleil depuis vingt ans... + Série + Série Suspense + + 5 . 3 . + + + -10 + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Véto & Co + A Liège, Alexandra s'occupe d'un magnifique perroquet. A Nausicaa, Nicolas, un soigneur belge spécialisé dans les requins zèbres, aide l'espèce à perdurer. + Documentaire + Doc. Nature + + + Tout public + + + + Véto & Co + Aucune description + Documentaire + Doc. Nature + + + Tout public + + + + Véto & Co + Aucune description + Documentaire + Doc. Nature + + + Tout public + + + + Véto & Co + Aucune description + Documentaire + Doc. Nature + + + Tout public + + + + Véto & Co + Aucune description + Documentaire + Doc. Nature + + + Tout public + + + + La boutique 6ter + Retrouvez les dernières innovations et des offres exclusives en matière de bijoux, beauté, cuisine, maison. + Magazine + Mag. TV-Achat + + + Tout public + + + + Tarek : le roi de la réno + Les deux font la paire + Dans la rénovation, le fait d'être frères devrait être synonyme de bonne entente mais ce n'est pas le cas pour Marco et Jesus. Tarek leur apporte son aide. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + Tarek : le roi de la réno + Aucune description + Documentaire + Doc. Société + + + Tout public + + + + Tarek : le roi de la réno + Arrête ton cinéma + Aucune description + Documentaire + Doc. Société + + 1 . 0 . + + Tout public + + + + Les rois de la réno + Même pas peur ! + Dans une banlieue huppée du comté d'Orange, Christina et Tarek achètent une maison à un prix très intéressant, et pour cause : tout est à refaire. + Documentaire + Doc. Société + + 8 . 0 . + + Tout public + + + + Les rois de la réno + Hors des sentiers battus + Tarek et Christina tombent sous le charme d'une vieille maison de style espagnol à North Hollywood, même si ce quartier sort de leur secteur habituel. + Documentaire + Doc. Société + + 8 . 0 . + + Tout public + + + + Les rois de la réno + Le temps c'est de l'argent + Pour acheter une maison à Fountain Valley, Tarek et Christina doivent contracter un prêt relais avec un fort taux d'intérêt. Il faut donc faire vite pour la rénover. + Documentaire + Doc. Société + + 8 . 0 . + + Tout public + + + + Les rois de la réno + Il y a quelqu'un ? + Croyant faire une bonne affaire, Tarek et Christina achètent une maison sans la voir. Ils découvrent lors de leur première visite qu'elle est vétuste. + Documentaire + Doc. Société + + 8 . 0 . + + Tout public + + + + Les rois de la réno + C'est un gouffre ! + Tarek a trouvé une maison à rénover à Mission Viejo. Mais dès le tout début des travaux, les ennuis s'accumulent et cela sent la mauvaise affaire. + Documentaire + Doc. Société + + 8 . 0 . + + Tout public + + + + Les rois de la réno + A cheval sur les travaux + Après avoir rénové plus de 500 maisons, Tarek et Christina ont déjà vu des maisons sales, mais cette maison de Garden Grove en Californie est la perle en la matière. + Documentaire + Doc. Société + + 8 . 0 . + + Tout public + + + + Les rois de la réno + Christina parvient à convaincre Tarek de rénover une maison typique des années 50 à Norwalk, en Californie. Le défi est de taille avec un budget serré. + Documentaire + Doc. Société + + + Tout public + + + + Norbert, commis d'office + Dalila et sa paëlla / Olivier et ses lasagnes + Dalila n'hésite pas à rajouter un peu tout et n'importe quoi dans sa paëlla, comme de l'ananas ou de la fleur d'oranger. Norbert va lui donner les clés d'une paëlla savoureuse tout en conservant sa part de fantaisie. + Magazine + Mag. Société + + 1 . 0 . + + Tout public + + + + Norbert, commis d'office + Laetitia et son financier / Alex et son camembert + Aucune description + Magazine + Mag. Société + + 1 . 0 . + + Tout public + + + + Norbert, commis d'office + Florence et son veau / Edwige et son poulet au curry + La première mission de Norbert est de venir en aide à Florence, qui pense que sa cocotte en fonte peut cuisiner à sa place. Place ensuite à Edwige. Cette policière adore son poulet au curry. Mais c'est bien la seule. Norbert va mettre Edwige à l'amende pour ce qu'elle fait subir à sa volaille, cuite à l'excès. + Magazine + Mag. Société + + 1 . 3 . + + Tout public + + + + Il était une fois dans l'Ouest + Trois hors-la-loi attaquent un inconnu, surnommé "Hombre", dans une gare perdue de l'Ouest. L'homme réussit à les tuer avant de jouer un air sur son harmonica. Pendant ce temps, sur ordre de l'ignoble Frank, d'autres tueurs abattent le fermier McBain et ses trois enfants, afin de s'approprier leurs terres... + Film + Film Action + + + Tout public + + + + Face aux éléments : la planète en colère + Aucune description + Documentaire + Doc. Société + + + Tout public + + + + Face aux éléments : la planète en colère + Des feux de brousse ravagent la Nouvelle-Galles-du-Sud en Australie à la veille du Nouvel An, obligeant des familles à évacuer et se mettre à l'abri + Documentaire + Doc. Société + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Véto & Co + Aucune description + Documentaire + Doc. Nature + + + Tout public + + + + Véto & Co + Aucune description + Documentaire + Doc. Nature + + + Tout public + + + + Véto & Co + Aucune description + Documentaire + Doc. Nature + + + Tout public + + + + Véto & Co + Aucune description + Documentaire + Doc. Nature + + + Tout public + + + + Véto & Co + Aucune description + Documentaire + Doc. Nature + + + Tout public + + + + La boutique 6ter + Retrouvez les dernières innovations et des offres exclusives en matière de bijoux, beauté, cuisine, maison. + Magazine + Mag. TV-Achat + + + Tout public + + + + Rénovation impossible + Tomber la veste + Aucune description + Documentaire + Doc. Société + + 11 . 0 . + + Tout public + + + + Rénovation impossible + Le top du top + Aucune description + Documentaire + Doc. Société + + 11 . 0 . + + Tout public + + + + Rénovation impossible + Beauté intérieure + Aucune description + Documentaire + Doc. Société + + 11 . 0 . + + Tout public + + + + Rénovation impossible + Comme une reine + Aucune description + Documentaire + Doc. Société + + 11 . 0 . + + Tout public + + + + Rénovation impossible + À l'ancienne + Aucune description + Documentaire + Doc. Société + + 10 . 0 . + + Tout public + + + + Rénovation impossible + Le style Craftsman + Aucune description + Documentaire + Doc. Société + + 10 . 0 . + + Tout public + + + + Rénovation impossible + La maison couleur dollar + Aucune description + Documentaire + Doc. Société + + 10 . 0 . + + Tout public + + + + Rénovation impossible + Chef, oui chef ! + Aucune description + Documentaire + Doc. Société + + 11 . 0 . + + Tout public + + + + Superman Returns + Voilà cinq ans que Superman a mystérieusement disparu. Quand Lex Luthor sort de prison, bien décidé à reprendre la lutte, le super-héros réapparaît. Le temps de rendre visite à sa mère adoptive, il regagne Metropolis pour retrouver Lois. Mais celle-ci est fiancée et mère d'un petit garçon... + Film + Film Action + + + + -10 + + + + Seul au monde + Employé d'une société de transport, Chuck Noland n'hésite pas à abandonner sa petite amie le soir de Noël pour assumer une mission. Mais, pris dans une tempête, son avion s'abîme en plein Pacifique. Agrippé à un radeau de sauvetage, Chuck rejoint un îlot désert. Petit à petit, il y apprend la survie... + Film + Film Action + + + Tout public + + + + Cauchemar à la maison + Aucune description + Documentaire + Doc. Découverte + + + + -10 + + + + Cauchemar au travail + Aucune description + Documentaire + Doc. Société + + + + -10 + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Programme + Programme indéterminé + + + Tout public + + + + Chiens hors de contrôle : un dresseur à la rescousse + La guerre est déclarée + Graeme Hall va tenter d'aider les maîtres de Rome, un dogue allemand qui ne maîtrise pas sa force, de Gus, un labrador fugueur, d'Addie, un caniche jaloux du petit ami de sa maîtresse, et d'un westie et d'un bouledogue qui sont enlisés dans une guerre de territoire. + Documentaire + Téléréalité + + 0 . 0 . + + Tout public + + + + Chiens hors de contrôle : un dresseur à la rescousse + Promenade dangereuse + Teddy et Fudge, deux fougueux labradors, exposent leur maîtresse à de graves blessures à chaque promenade. Peggy, fugueuse hors pair, fait tourner ses propriétaires en bourrique. Et Stanley, un terrier, est désemparé depuis la mort de sa meilleure amie. + Documentaire + Téléréalité + + 0 . 0 . + + Tout public + + + + La robe de ma vie + Lucy et Fanny + Suivez les aventures de plusieurs futures mariées qui recherchent LA robe de leurs rêves pour le plus beau jour de leur vie. Une boutique, deux clientes et leurs accompagnants vivront devant vous cette incroyable quête ! + Divertissement + Jeu + + + Tout public + + + + La robe de ma vie + Mélissa et Aurélie + Suivez les aventures de plusieurs futures mariées qui recherchent LA robe de leurs rêves pour le plus beau jour de leur vie. Une boutique, deux clientes et leurs accompagnants vivront devant vous cette incroyable quête ! + Divertissement + Jeu + + 1 . 0 . + + Tout public + + + + La robe de ma vie + Suivez les aventures de plusieurs futures mariées qui recherchent LA robe de leurs rêves pour le plus beau jour de leur vie. Une boutique, deux clientes et leurs accompagnants vivront devant vous cette incroyable quête ! + Divertissement + Jeu + + + Tout public + + + + La robe de ma vie + Suivez les aventures de plusieurs futures mariées qui recherchent LA robe de leurs rêves pour le plus beau jour de leur vie. Une boutique, deux clientes et leurs accompagnants vivront devant vous cette incroyable quête ! + Divertissement + Jeu + + + Tout public + + + + La petite maison dans la prairie + La foire + La famille Ingalls se rend à la traditionnelle foire de Mankato. Comme chaque année, Caroline et madame Oleson s'affrontent lors d'un concours de pâtisserie... + Série + Drame + + 3 . 10 . + + Tout public + + + + La petite maison dans la prairie + La liberté + La tension monte à Walnut Grove, lorsque le chef d'une tribu indienne vient chercher de l'aide pour son père malade... + Série + Drame + + 3 . 12 . + + Tout public + + + + La petite maison dans la prairie + Rivalité + Laura réalise qu'elle est amoureuse de son copain de classe, Jimmy Hill. Que faire pour attirer son attention, alors qu'il semble être sous le charme d'une autre ?... + Série + Drame + + 3 . 13 . + + Tout public + + + + La petite maison dans la prairie + La rumeur + Mary a décroché un poste d'enseignante dans une communauté de défricheurs de forêts... + Série + Drame + + 3 . 14 . + + Tout public + + + + Charmed + La main sur le berceau + Les soeurs Halliwell apprennent que Wyatt a un ami imaginaire. Elles sont d'autant plus surprises lorsqu'elles découvrent qu'il s'agit en réalité d'un démon nommé Vicus. Celui-ci tente par tous les moyens de gagner la confiance de l'enfant afin de le convertir au Mal. Piper invoque une formule destinée à mieux cerner les pensées de son fils mais fait venir par inadvertance le Wyatt du futur, âgé de 25 ans. Vicus jette alors un sort à l'enfant, dont les effets sont visibles sur le Wyatt du futur, immédiatement transformé en un être démoniaque. Bien décidé à empêcher les soeurs de revenir en arrière, il retourne dans le futur en emmenant l'enfant avec lui... + Science-fiction + Fantastique + + 6 . 19 . + + Tout public + + + + Charmed + Derniers maux + Tim, un ami de fac de Phoebe, est abattu par un tueur à gages, qui est en fait un puissant démon. Son esprit revient pour hanter la jeune femme et lui faire sentir le poids de sa culpabilité. Les soeurs Halliwell ignorent que c'est une ruse de Zankou destinée à les déstabiliser et les rendre un peu plus vulnérables. Il pense ainsi accéder au Livre des Ombres qu'il ne parvient toujours pas à obtenir. Piper et Leo sont obligés de repousser de quelques jours la fête d'anniversaire de Chris... + Science-fiction + Fantastique + + 6 . 20 . + + Tout public + + + + Charmed + Derniers maux + Zankou, qui est entré en possession du grimoire, projette de s'en servir afin d'ouvrir le Nexus et ainsi libérer l'Ombre. Il invoque une formule lui permettant de s'approprier le pouvoir de prémonition de Phoebe. Il est désormais capable d'anticiper les pièges que ses ennemies entreprennent de lui tendre. Dès lors, les trois soeurs réalisent qu'il leur faudra faire des sacrifices si elles veulent venir à bout du puissant Zankou. Au même moment, l'agent Keyes révèle à l'inspecteur Sheridan qu'il soupçonne les soeurs Halliwell de pratiquer la magie. Munie d'une caméra, Sheridan décide d'infiltrer le manoir afin de les prendre sur le fait... + Science-fiction + Fantastique + + 6 . 21 . + + Tout public + + + + Charmed + Une nouvelle vie + Officiellement, les soeurs Halliwell ont péri lors d'une mystérieuse explosion. Piper, Phoebe et Paige sont cependant bien vivantes et comptent profiter pleinement de leur nouvelle vie, à l'abri des démons. Pour cela, elles décident de changer d'identité en invoquant une formule leur permettant de modifier leur apparence aux yeux du monde extérieur. Lors d'une prémonition, Phoebe a la surprise de se voir mariée à Dex Lawson, un artiste. Paige se rend compte que son destin est définitivement lié à celui d'êtres de lumière. Elle décide alors de répondre à l'appel de Billie, sa nouvelle protégée. De son côté, Piper ne peut s'empêcher de craindre que les démons ne retrouvent leur trace... + Science-fiction + Fantastique + + 7 . 0 . + + Tout public + + + + Charmed + Traquées + Haas, un jeune démon déterminé à prendre le contrôle du monde souterrain, tente de faire sortir les soeurs Halliwell de leur anonymat. Pour ce faire, il utilise le conte "Alice au pays des merveilles". Billie ne tarde pas à tomber dans le piège en voulant protéger ses amies. Dans le même temps, Phoebe, sous sa nouvelle apparence, décide de faire plus ample connaissance avec Dex et découvre qu'il lisait avec assiduité sa rubrique. Elle se présente alors au journal en tant que sa propre remplaçante. De son côté, Paige, obsédée par son désir de venir en aide aux innocents, s'engage dans la police. Piper, quant à elle, découvre les aléas de sa nouvelle vie... + Science-fiction + Fantastique + + 7 . 1 . + + Tout public + + + + Kaamelott + Ve siècle, île de Bretagne. Le royaume de Kaamelott s'organise autour de son souverain, le roi Arthur. Entouré de ses fidèles chevaliers de la Table Ronde, il s'attelle à la mission que les dieux lui ont confiée : rechercher le Saint Graal ! + Série + Comédie + + + Tout public + + + + Kaamelott + Britannia, Ve siècle après J.-C. Alors que l'empire romain s'effondre et que le christianisme s'impose peu à peu face aux dieux païens, le royaume de Kaamelott se resserre et s'organise autour de son souverain, le roi Arthur, fils du brutal roi Uther Pendragon. Entouré de ses plus ou moins fidèles chevaliers de la Table Ronde, le monarque s'attelle à la mission que les Dieux lui ont confiée : rechercher le Saint Graal. Malheureusement, cette mission sacrée est contrariée par l'incompétence du roi. La mièvre Guenièvre, le charlatan Merlin, le benêt Lancelot et l'insupportable Dame du lac ne sont pas en reste. Et pourtant, le bon peuple de Kaamelott compte sur son roi pour le guider vers la lumière. + Série + Comédie + + + Tout public + + + + Kaamelott + Britannia, Ve siècle après J.-C. Alors que l'empire romain s'effondre et que le christianisme s'impose peu à peu face aux dieux païens, le royaume de Kaamelott se resserre et s'organise autour de son souverain, le roi Arthur, fils du brutal roi Uther Pendragon. Entouré de ses plus ou moins fidèles chevaliers de la Table Ronde, le monarque s'attelle à la mission que les Dieux lui ont confiée : rechercher le Saint Graal. Malheureusement, cette mission sacrée est contrariée par l'incompétence du roi. La mièvre Guenièvre, le charlatan Merlin, le benêt Lancelot et l'insupportable Dame du lac ne sont pas en reste. Et pourtant, le bon peuple de Kaamelott compte sur son roi pour le guider vers la lumière. + Série + Comédie + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Programme + Programme indéterminé + + + Tout public + + + + Chiens hors de contrôle : un dresseur à la rescousse + Le roi rebelle + Graeme Hall va tenter de calmer Bella, qui sème la terreur autour d'elle, de faire redescendre Toby de son piédestal royal et d'empêcher Dave de manger ses excréments. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + Chiens hors de contrôle : un dresseur à la rescousse + Les terreurs + Aucune description + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + La robe de ma vie + Priscilla et Vanessa + Suivez les aventures de plusieurs futures mariées qui recherchent LA robe de leurs rêves pour le plus beau jour de leur vie. Une boutique, deux clientes et leurs accompagnants vivront devant vous cette incroyable quête ! + Divertissement + Jeu + + 0 . 0 . + + Tout public + + + + La robe de ma vie + Suivez les aventures de plusieurs futures mariées qui recherchent LA robe de leurs rêves pour le plus beau jour de leur vie. Une boutique, deux clientes et leurs accompagnants vivront devant vous cette incroyable quête ! + Divertissement + Jeu + + + Tout public + + + + La robe de ma vie + Suivez les aventures de plusieurs futures mariées qui recherchent LA robe de leurs rêves pour le plus beau jour de leur vie. Une boutique, deux clientes et leurs accompagnants vivront devant vous cette incroyable quête ! + Divertissement + Jeu + + + Tout public + + + + La robe de ma vie + Suivez les aventures de plusieurs futures mariées qui recherchent LA robe de leurs rêves pour le plus beau jour de leur vie. Une boutique, deux clientes et leurs accompagnants vivront devant vous cette incroyable quête ! + Divertissement + Jeu + + + Tout public + + + + La petite maison dans la prairie + Rivalité + Laura réalise qu'elle est amoureuse de son copain de classe, Jimmy Hill. Que faire pour attirer son attention, alors qu'il semble être sous le charme d'une autre ?... + Série + Série Passion + + 3 . 13 . + + Tout public + + + + La petite maison dans la prairie + La rumeur + Mary a décroché un poste d'enseignante dans une communauté de défricheurs de forêts... + Série + Série Passion + + 3 . 14 . + + Tout public + + + + La petite maison dans la prairie + Les bons amis + Non sans étonnement, Laura trouve une, puis deux bouteilles contenant des messages. Qui a bien pu les placer là ? Elle demande à son père de l'aider à identifier leur expéditeur... + Série + Série Passion + + 3 . 16 . + + Tout public + + + + La petite maison dans la prairie + Souvenirs + Le jour de leur anniversaire de mariage, Caroline attend Charles. Celui-ci est sur la route, sous la pluie, en train de changer une roue de chariot qui s'est brisée... + Série + Série Passion + + 3 . 15 . + + Tout public + + + + Charmed + Derniers maux + Tim, un ami de fac de Phoebe, est abattu par un tueur à gages, qui est en fait un puissant démon. Son esprit revient pour hanter la jeune femme et lui faire sentir le poids de sa culpabilité. Les soeurs Halliwell ignorent que c'est en fait une ruse de Zankou destinée à les déstabiliser... + Série + Série Sc.Fiction + + 6 . 20 . + + Tout public + + + + Charmed + Derniers maux + Zankou, qui est entré en possession du grimoire, projette de s'en servir afin d'ouvrir le Nexus et ainsi libérer l'Ombre. Il invoque une formule lui permettant de s'approprier le pouvoir de prémonition de Phoebe. Il est désormais capable d'anticiper les pièges que ses ennemies entreprennent de lui tendre... + Série + Série Sc.Fiction + + 6 . 21 . + + Tout public + + + + Charmed + Une nouvelle vie + Officiellement, les soeurs Halliwell ont péri lors d'une mystérieuse explosion. Elles sont cependant bien vivantes et comptent profiter de leur nouvelle vie, à l'abri des démons. Pour cela, elles décident de changer d'identité en invoquant une formule leur permettant de modifier leur apparence... + Série + Série Sc.Fiction + + 7 . 0 . + + Tout public + + + + Charmed + Traquées + Haas, un jeune démon, tente de faire sortir les soeurs Halliwell de leur anonymat. Pour ce faire, il utilise le conte "Alice au pays des merveilles". Billie ne tarde pas à tomber dans le piège en voulant protéger ses amies. Dans le même temps, Phoebe décide de faire plus ample connaissance avec Dex... + Série + Série Sc.Fiction + + 7 . 1 . + + Tout public + + + + Charmed + Au-delà des apparences + Piper se rend à un entretien d'embauche mais se fait arrêter par la police. Elle comprend alors que la nouvelle apparence qu'elle a choisie d'adopter correspond en fait à celle d'une femme recherchée pour meurtre. Avec l'aide de Billie, ses soeurs mettent tout en oeuvre afin de prouver son innocence... + Série + Série Sc.Fiction + + 7 . 2 . + + Tout public + + + + Daddy Cool + Maude aurait bien voulu avoir un enfant avec Adrien. Mais, son compagnon, Adrien, est resté dans une adulescence qui dure. Son attitude nonchalante commence à exaspérer Maude, un bourreau de travail. Décidé à se prendre, un peu, en mains, Adrien lui annonce qu'il va créer une crèche à domicile... + Film + Film Rires + + + Tout public + + + + Kaamelott + Ve siècle, île de Bretagne. Le royaume de Kaamelott s'organise autour de son souverain, le roi Arthur. Entouré de ses fidèles chevaliers de la Table Ronde, il s'attelle à la mission que les dieux lui ont confiée : rechercher le Saint Graal ! + Série + Série Rires + + + Tout public + + + + Kaamelott + Britannia, Ve siècle après J.-C. Alors que l'empire romain s'effondre, le royaume de Kaamelott s'organise autour de son souverain, le roi Arthur. Entouré de ses fidèles chevaliers de la Table Ronde, le monarque s'attelle à la mission que les Dieux lui ont confiée : partir à la recherche du Saint Graal. + Série + Série Rires + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Chiens hors de contrôle : un dresseur à la rescousse + La gourmandise est un vilain défaut + Aucune description + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + Chiens hors de contrôle : un dresseur à la rescousse + Petit chien, gros problème + Aucune description + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + La robe de ma vie + Episode 20 + Suivez les aventures de plusieurs futures mariées qui recherchent LA robe de leurs rêves pour le plus beau jour de leur vie. Une boutique, deux clientes et leurs accompagnants vivront devant vous cette incroyable quête ! + Divertissement + Jeu + + 1 . 0 . + + Tout public + + + + La robe de ma vie + Charlotte et Marie + Suivez les aventures de plusieurs futures mariées qui recherchent LA robe de leurs rêves pour le plus beau jour de leur vie. Une boutique, deux clientes et leurs accompagnants vivront devant vous cette incroyable quête ! + Divertissement + Jeu + + 0 . 0 . + + Tout public + + + + La robe de ma vie + Christine et Élodie + Suivez les aventures de plusieurs futures mariées qui recherchent LA robe de leurs rêves pour le plus beau jour de leur vie. Une boutique, deux clientes et leurs accompagnants vivront devant vous cette incroyable quête ! + Divertissement + Jeu + + 0 . 0 . + + Tout public + + + + La robe de ma vie + Suivez les aventures de plusieurs futures mariées qui recherchent LA robe de leurs rêves pour le plus beau jour de leur vie. Une boutique, deux clientes et leurs accompagnants vivront devant vous cette incroyable quête ! + Divertissement + Jeu + + + Tout public + + + + La petite maison dans la prairie + Les bons amis + Non sans étonnement, Laura trouve une, puis deux bouteilles contenant des messages. Qui a bien pu les placer là ? Elle demande à son père de l'aider à identifier leur expéditeur... + Série + Série Passion + + 3 . 16 . + + Tout public + + + + La petite maison dans la prairie + Souvenirs + Le jour de leur anniversaire de mariage, Caroline attend Charles. Celui-ci est sur la route, sous la pluie, en train de changer une roue de chariot qui s'est brisée... + Série + Série Passion + + 3 . 15 . + + Tout public + + + + La petite maison dans la prairie + L'héritage + Charles doit toucher un héritage conséquent. Son entourage lui suggère de modifier son mode de vie en faisant des achats à crédit. Mais il apprend bientôt que le testament n'a aucune valeur... + Série + Série Passion + + 3 . 17 . + + Tout public + + + + La petite maison dans la prairie + L'étranger + Peter, le neveu de monsieur Oleson, a besoin d'un petit rappel à l'ordre. Il est envoyé à Walnut Grove afin d'apprendre le sens de certaines valeurs après son récent renvoi de l'école... + Série + Série Passion + + 3 . 18 . + + Tout public + + + + Charmed + Derniers maux + Zankou, qui est entré en possession du grimoire, projette de s'en servir afin d'ouvrir le Nexus et ainsi libérer l'Ombre. Il invoque une formule lui permettant de s'approprier le pouvoir de prémonition de Phoebe. Il est désormais capable d'anticiper les pièges que ses ennemies entreprennent de lui tendre... + Série + Série Sc.Fiction + + 6 . 21 . + + Tout public + + + + Charmed + Une nouvelle vie + Officiellement, les soeurs Halliwell ont péri lors d'une mystérieuse explosion. Elles sont cependant bien vivantes et comptent profiter de leur nouvelle vie, à l'abri des démons. Pour cela, elles décident de changer d'identité en invoquant une formule leur permettant de modifier leur apparence... + Série + Série Sc.Fiction + + 7 . 0 . + + Tout public + + + + Charmed + Traquées + Haas, un jeune démon, tente de faire sortir les soeurs Halliwell de leur anonymat. Pour ce faire, il utilise le conte "Alice au pays des merveilles". Billie ne tarde pas à tomber dans le piège en voulant protéger ses amies. Dans le même temps, Phoebe décide de faire plus ample connaissance avec Dex... + Série + Série Sc.Fiction + + 7 . 1 . + + Tout public + + + + Charmed + Au-delà des apparences + Piper se rend à un entretien d'embauche mais se fait arrêter par la police. Elle comprend alors que la nouvelle apparence qu'elle a choisie d'adopter correspond en fait à celle d'une femme recherchée pour meurtre. Avec l'aide de Billie, ses soeurs mettent tout en oeuvre afin de prouver son innocence... + Série + Série Sc.Fiction + + 7 . 2 . + + Tout public + + + + Charmed + L'élu + Phoebe est aux anges : d'après la configuration astrale qu'elle est parvenue à décrypter, Dex Lawson serait l'élu de son coeur. De son côté, Leo est décidé à prendre en charge l'éducation de la jeune Billie afin qu'elle puisse intégrer un jour l'école de magie. Il semble que Mendy soit possédée... + Série + Série Sc.Fiction + + 7 . 3 . + + Tout public + + + + Baywatch : Alerte à Malibu + Mitch Buchannon dirige l'équipe de sauveteurs de la plage de Malibu. Il voit d'un mauvais oeil l'arrivée de Matt Brody, un jeune homme prétentieux. D'emblée, ils se détestent. De sa tour, Mitch constate une activité inhabituelle. Il s'agit de mafieux que l'équipe va tenter de mettre hors d'état de nuire... + Film + Film Rires + + + + -10 + + + + Les rois de la piscine + Mon paradis + Aucune description + Documentaire + Doc. Société + + 5 . 0 . + + Tout public + + + + Les rois de la piscine + Une piscine pour des chefs + A Austin au Texas, Don et Kathy Neville ont une fille et habitent à proximité d'un parcours de golf. Ils souhaitent relooker leur vieille piscine de 30 ans. + Documentaire + Doc. Société + + 5 . 0 . + + Tout public + + + + Les rois de la piscine + Un toboggan sinon rien + Monica et Bill Hall sont propriétaires d'un ranch. Ils ont fait construire une maison où ils souhaitent installer une piscine pour réunir la famille et les amis. + Documentaire + Doc. Société + + 5 . 0 . + + Tout public + + + + Les rois de la piscine + Le gnou, la cascade et le pirate + David et Glenda Keck ont acheté une maison, à Lavernia au Texas, il y a quatre mois, et un terrain d'un hectare sur lequel ils souhaitent installer une piscine. + Documentaire + Doc. Société + + 5 . 0 . + + Tout public + + + + Les rois de la piscine + Nos petits-enfants seront des rois + À Austin au Texas, Mike et Jan Kampen voudraient rassembler leur grande famille dans leur nouvelle maison, complétée d'une piscine. + Documentaire + Doc. Société + + 5 . 0 . + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Chiens hors de contrôle : un dresseur à la rescousse + Jeu de patience + Aucune description + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + Chiens hors de contrôle : un dresseur à la rescousse + Attention chien collant + Aucune description + Documentaire + Doc. Société + + 1 . 0 . + + Tout public + + + + La robe de ma vie + Suivez les aventures de plusieurs futures mariées qui recherchent LA robe de leurs rêves pour le plus beau jour de leur vie. Une boutique, deux clientes et leurs accompagnants vivront devant vous cette incroyable quête ! + Divertissement + Jeu + + + Tout public + + + + La robe de ma vie + Esther et Delphine + Suivez les aventures de plusieurs futures mariées qui recherchent LA robe de leurs rêves pour le plus beau jour de leur vie. Une boutique, deux clientes et leurs accompagnants vivront devant vous cette incroyable quête ! + Divertissement + Jeu + + 0 . 0 . + + Tout public + + + + La robe de ma vie + Suivez les aventures de plusieurs futures mariées qui recherchent LA robe de leurs rêves pour le plus beau jour de leur vie. Une boutique, deux clientes et leurs accompagnants vivront devant vous cette incroyable quête ! + Divertissement + Jeu + + + Tout public + + + + La robe de ma vie + Suivez les aventures de plusieurs futures mariées qui recherchent LA robe de leurs rêves pour le plus beau jour de leur vie. Une boutique, deux clientes et leurs accompagnants vivront devant vous cette incroyable quête ! + Divertissement + Jeu + + + Tout public + + + + La petite maison dans la prairie + L'héritage + Charles doit toucher un héritage conséquent. Son entourage lui suggère de modifier son mode de vie en faisant des achats à crédit. Mais il apprend bientôt que le testament n'a aucune valeur... + Série + Série Passion + + 3 . 17 . + + Tout public + + + + La petite maison dans la prairie + L'étranger + Peter, le neveu de monsieur Oleson, a besoin d'un petit rappel à l'ordre. Il est envoyé à Walnut Grove afin d'apprendre le sens de certaines valeurs après son récent renvoi de l'école... + Série + Série Passion + + 3 . 18 . + + Tout public + + + + La petite maison dans la prairie + Un bien si précieux + L'accouchement de Caroline est imminent. Charles espère avoir un fils. Lorsque les premières contractions se déclenchent, tout le monde se plie en quatre pour l'assister dans cette épreuve... + Série + Série Passion + + 3 . 19 . + + Tout public + + + + La petite maison dans la prairie + L'adieu + La vue de Mary commence à baisser de façon plus que préoccupante. Sans tarder, Charles décide de demander l'avis d'un spécialiste, le docteur Burke. Son diagnostic sera-il optimiste ?... + Série + Série Passion + + 3 . 20 . + + Tout public + + + + Charmed + Une nouvelle vie + Officiellement, les soeurs Halliwell ont péri lors d'une mystérieuse explosion. Elles sont cependant bien vivantes et comptent profiter de leur nouvelle vie, à l'abri des démons. Pour cela, elles décident de changer d'identité en invoquant une formule leur permettant de modifier leur apparence... + Série + Série Sc.Fiction + + 7 . 0 . + + Tout public + + + + Charmed + Traquées + Haas, un jeune démon, tente de faire sortir les soeurs Halliwell de leur anonymat. Pour ce faire, il utilise le conte "Alice au pays des merveilles". Billie ne tarde pas à tomber dans le piège en voulant protéger ses amies. Dans le même temps, Phoebe décide de faire plus ample connaissance avec Dex... + Série + Série Sc.Fiction + + 7 . 1 . + + Tout public + + + + Charmed + Au-delà des apparences + Piper se rend à un entretien d'embauche mais se fait arrêter par la police. Elle comprend alors que la nouvelle apparence qu'elle a choisie d'adopter correspond en fait à celle d'une femme recherchée pour meurtre. Avec l'aide de Billie, ses soeurs mettent tout en oeuvre afin de prouver son innocence... + Série + Série Sc.Fiction + + 7 . 2 . + + Tout public + + + + Charmed + L'élu + Phoebe est aux anges : d'après la configuration astrale qu'elle est parvenue à décrypter, Dex Lawson serait l'élu de son coeur. De son côté, Leo est décidé à prendre en charge l'éducation de la jeune Billie afin qu'elle puisse intégrer un jour l'école de magie. Il semble que Mendy soit possédée... + Série + Série Sc.Fiction + + 7 . 3 . + + Tout public + + + + Charmed + Ressuscitées + Billie, qui espère un jour entrer à l'école de magie, lance malencontreusement un sort qui a pour conséquence de marier Dex et Phoebe. Pendant ce temps, un agent du FBI enquête sur les soeurs Halliwell. Les jeunes sorcières s'inquiètent et commencent à douter du subterfuge qui dissimule leur identité... + Série + Série Sc.Fiction + + 7 . 4 . + + Tout public + + + + Les mamans : l'année de tous les défis + Aucune description + Documentaire + Doc. Société + + + Tout public + + + + Les mamans : l'année de tous les défis + Aucune description + Documentaire + Doc. Société + + + Tout public + + + + Les mamans : l'année de tous les défis + Aucune description + Documentaire + Doc. Société + + + Tout public + + + + Les mamans : l'année de tous les défis + Aucune description + Documentaire + Doc. Société + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Kidnapping + Thybo et son épouse Eva sont traduits en justice. Eva avoue avoir joué un rôle de premier plan dans le réseau de trafic de bébés. Thybo est accusé d'avoir manipulé l'enquête sur l'affaire Minna afin de protéger ces activités. Rolf est persuadé qu'il a joué un rôle dans la disparition de sa fille... + Série + Série Passion + + + + -12 + + + + Hilary Hahn : Evolution of an Artist + Tourné sur quinze années, un portrait enlevé de la violoniste virtuose Hilary Hahn, qui se révèle perfectionniste et animée d'un souci constant de se réinventer. + Documentaire + Doc. Musique + + + Tout public + + + + Des bêtes et des sorcières + Les animaux sauvages ont suscité nombre de légendes. Entre animations signées John Howe ("Le Seigneur des anneaux") et observation de la nature, regard sur un fabuleux bestiaire. + Documentaire + Doc. Culture + + + Tout public + + + + Venezuela, la ferme aux crocodiles + Grand prédateur d'Amérique du Sud, le crocodile de l'Orénoque est menacé de disparition ; au Venezuela, une ferme élève de jeunes spécimens, avant de les remettre en liberté. + Documentaire + Doc. Nature + + + Tout public + + + + Invitation au voyage + Spécial Mexique + Trois reportages pour (re)découvrir le Mexique : "Roma", le Mexique intime d'Alfonso Cuaron ; les mariachis, la bande-son de l'identité mexicaine ; et le tourisme matrimonial de Mérida, la capitale de l'État du Yucatán. + Magazine + Mag. Découverte + + 0 . 208 . + + Tout public + + + + Cuisines des terroirs + Le Yorkshire + Dans une ferme qui se soucie du développement durable, un couple revisite le Yorkshire pudding pour acompagner le rosbif ou du feuilleté de saucisse. + Documentaire + Doc. Découverte + + 0 . 0 . + + Tout public + + + + Trois villes à la conquête du monde : Amsterdam, Londres, New York + 1800-1880 : Le choc de la modernité + Explosion de la population et de l'industrie : au tournant du XIXe siècle, Londres et New York sont les premières métropoles à vivre le choc de la modernité, qui les métamorphose. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Trois villes à la conquête du monde : Amsterdam, Londres, New York + 1880-2017 : La course au gigantisme + Après 1900 s'ouvre l'ère du gigantisme. Démesure horizontale à Londres, démesure verticale pour New York, qui fait du gratte-ciel son nouvel horizon. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Planète Méditerranée + De Marseille à Monaco, une découverte de la zone des 100 mètres de profondeur, au prix d'un exploit technologique et humain orchestré par Laurent Ballesta. + Documentaire + Doc. Évasion + + + Tout public + + + + Orques en péril + Les orques, mammifères marins sédentaires, émettent des vocalises qui leur permettent de communiquer. Un langage sonore particulier que les scientifiques s'attellent à décrypter. + Documentaire + Doc. Nature + + + Tout public + + + + Merveilles animales du Pacifique + Des îles de vie + Des atolls coralliens aux volcans bouillonnants, en passant par les fragments d'un continent disparu, les îles du Pacifique prennent des formes multiples. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + Merveilles animales du Pacifique + Des prédateurs et des proies + Dans l'océan, la vie s'apparente à une lutte permanente, qui consiste à manger sans être dévoré et à trouver un partenaire pour assurer sa descendance. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + Céphalopodes : le règne des ventouses + Alors que nombre d'espèces marines sont menacées, les seiches, calamars et autres poulpes prolifèrent, grâce à leurs capacités d'adaptation exceptionnelles. + Documentaire + Doc. Nature + + + Tout public + + + + Invitation au voyage + Spécial Ecosse + Trois sujets pour (re)découvrir l'Écosse : Walter Scott dans les îles Shetland - Un pull cousu de fil d'or aux Shetland - À Dunbar, n'énervez pas la comtesse ! + Magazine + Mag. Découverte + + 0 . 209 . + + Tout public + + + + L'île des Célèbes : La cérémonie funéraire du peuple Toraja + Parmi les trente-six mille îles qui constituent l'archipel indonésien, celle des Célèbes se caractérise par les rites funéraires pratiqués dans le nord et la beauté de sa capitale. + Documentaire + Doc. Découverte + + + Tout public + + + + Les îles Féroé, un air de bout du monde + Sur les îles Féroé, l'aviron est un sport national, et chaque été, fin juillet, les compétitions nationales ont lieu dans le port de la capitale Tórshavn. + Documentaire + Doc. Évasion + + + Tout public + + + + Arte reportage + Depuis la guerre en Ukraine, la coopération énergétique entre la Russie et la Chine connaît un essor sans précédent / En Bolivie, le lac Poopó, qui occupait plus d'un million de kilomètres carrés, s'est transformé en désert de sel. + Magazine + Mag. Société + + + Tout public + + + + Le dessous des cartes + Nucléaire civil : énergie d'hier ou de demain ? + Le monde entier a les yeux braqués sur la centrale nucléaire de Zaporijia en Ukraine. Le "Dessous des cartes" propose un tour du monde du nucléaire civil. + Magazine + Mag. Politique + + 0 . 1101 . + + Tout public + + + + Arte journal + Chaque jour à 19h45, la rédaction franco-allemande d'ARTE Journal propose une approche européenne et culturelle de l'actualité. Un regard original sur le monde. + Info-Météo + Information + + + Tout public + + + + 28 minutes samedi + L'actualité de la semaine, avec un regard international : Israël-Hamas : y a-t-il un risque que le conflit s'exporte à l'étranger ? ; +25 0e salaire : la victoire des syndicats américains ; ce week-end, direction la Suisse où la chasse aux loups est ouverte ; les aventures de "Ségurant, le chevalier au dragon", déclinées en livre, en BD et en un documentaire. + Magazine + Mag. Société + + + Tout public + + + + Homo sapiens, les nouvelles origines + Au Maroc, de nouvelles fouilles sur le site du Djebel Irhoud bouleverse la vision généralement admise de la datation de l'apparition de l'homme. + Documentaire + Doc. Sc. & Tech. + + + Tout public + + + + Néandertal, premier artiste de l'humanité ? + La découverte de gravures attribuées à Néandertal dans une grotte de Touraine bouscule la thèse selon laquelle l'art serait né avec Homo sapien. + Documentaire + Doc. Sc. & Tech. + + + Tout public + + + + Néandertal : le mystère de la grotte de Bruniquel + Enquête sur une découverte archéologique majeure qui, sans avoir encore livré tous ses secrets, bouleverse déjà notre vision de l'homme de Neandertal. + Documentaire + Doc. Découverte + + + Tout public + + + + Court-circuit + Spécial "SOS planète" + Cinq courts métrages d'animation sur la thématique "SOS planète" : "Wild Summon", "PLSTC", "Bottle Cap", "Ressources humaines" et "Carp X Mass" - Shorts cuts : "Sans toit ni loi" d'Agnès Varda résumé en une minute animée par Julie Daravan Chea. + Magazine + Mag. Cinéma + + 0 . 21 . + + Tout public + + + + Un prince à la caserne + Année 2069. Alfredo, roi sans couronne, repose sur son lit de mort. Une chanson populaire éveille en lui les souvenirs de l'époque où il était jeune prince. + Film + Court Métrage + + + + -12 + + + + 42, la réponse à presque tout + A quoi nous sert l'imagination ? + L'imagination est partout. Elle entraîne souvent vers des rivages fort éloigné. Même quand on est très concentré, elle joue un rôle capital. Mais à quoi sert-elle précisément ? + Documentaire + Doc. Sc. & Tech. + + 0 . 0 . + + Tout public + + + + Citizen Kitano + Un portrait alerte de la star japonaise Takeshi Kitano et de ses multiples avatars : cinéaste novateur, humoriste décapant, artiste attaché à l'enfance. + Documentaire + Doc. Culture + + + Tout public + + + + Australie, l'odyssée océanique + Les tropiques + Un voyage entre terre et mer qui suit le parcours du courant est-australien pour montrer son impact sur la biodiversité dans trois zones climatiques distinctes. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + Les hippopotames de Pablo Escobar + Originaires d'Afrique, les hippopotames posent aujourd'hui problème en Colombie, où ils ont été introduits par la fantaisie du trafiquant Pablo Escobar. + Documentaire + Doc. Nature + + + Tout public + + + + Pause + Vêtus d'habits de fourrure aux couleurs vives, et tous dotés d'une personnalité différente, les Oddbods sont sept drôles de personnages qui ne manquent ni de vitalité, ni d'imagination. Ils passent leur temps à chahuter et à se jouer des tours au fil des épisodes. + Autre + + + Tout public + + + + Concert Piazzolla + Aucune description + Musique + Classic-Contemp + + + Tout public + + + + Cuisines des terroirs + La Gallura, Sardaigne + L'arbousier pousse dans le nord-est de la Sardaigne. Le miel amer produit à partir de ses fruits, le Corbezzolo, a des propriétés contre le rhume et les maux de ventre. + Documentaire + Doc. Découverte + + 0 . 0 . + + Tout public + + + + Feux de forêt en Australie : Au secours de la faune sauvage + Après les feux de forêts dramatiques qui ont décimé la faune endémique australienne, des sauveteurs se sont mobilisés pour secourir les animaux sauvages. + Documentaire + Doc. Nature + + + Tout public + + + + ARTE Junior, le mag + Pour les 10-14 ans, l'actualité internationale et européenne traitée à hauteur d'enfant, à partir de questions posées par des élèves du primaire français et allemand, de portraits d'enfants ou de reportages. + Jeunesse + Mag. Jeunesse + + + Tout public + + + + 42, la réponse à presque tout + Peut-on optimiser nos gènes ? + Serait-il possible de contrôler les mécanismes qui activent les gènes et les inhibent, comme cherche à le faire l'épigénétique ? + Documentaire + Doc. Sc. & Tech. + + 0 . 0 . + + Tout public + + + + C'est de l'art ? + Qui achète de l'art ? + Si l'art peut être considéré comme une marchandise, son marché suit des règles précises, qui paraissent parfois bien mystérieuses aux néophytes. + Documentaire + Doc. Culture + + 0 . 0 . + + Tout public + + + + Twist + Comment traverser les crises ? + Comment traverser des crises existentielles, personnelles ou collectives, sans perdre courage ? + Magazine + Mag. Culture + + 0 . 8 . + + Tout public + + + + Voyage en Arménie + Dans la région montagneuse du Caucase, l'Arménie est connue pour ses paysages, sa faune relativement préservée et son riche patrimoine culturel. + Documentaire + Doc. Découverte + + + Tout public + + + + Cuisines des terroirs + Albanie du Sud + Dans les montagnes du sud de l'Albanie, non loin de la côte, Dhurata et son mari Sofo produisent presque tout ce dont ils ont besoin ou le trouvent à proximité. + Documentaire + Doc. Découverte + + 0 . 0 . + + Tout public + + + + Venezuela : le monde mystérieux des hauts plateaux + Dans le sud-est du Venezuela, une équipe scientifique internationale réalise une mission sur le tepui d'Auyán, un relief au sommet plat qui culmine à plus de 2 600 mètres. + Documentaire + Doc. Nature + + + Tout public + + + + A la découverte de la Patagonie + La Patagonie et la Terre de Feu suscitent la fascination des Européens, notamment parce qu'elles sont de formidables zones d'observation des forces de la nature. + Documentaire + Doc. Découverte + + + Tout public + + + + Pumas, les seigneurs des Andes + Naissance + Dans le parc national chilien Torres del Paine, une mère puma, Solitaria, s'occupe de ses quatre chatons et chasse pour eux des proies qu'elle trouve en abondance. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + Pumas, les seigneurs des Andes + Renaissance + Des quatre petits pumas de Solitaria, l'intrépide Casadora est la seule à avoir survécu ; désormais adulte, elle est bien décidée à marcher dans les pas de sa mère. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + Chaplin + Né en 1889 à Londres, le petit Charles Spencer Chaplin perd son père alors qu'il n'a qu'une dizaine d'années et se retrouve livré à lui-même. La rue sera son école. L'enfant observe les gens qui l'entourent et développe un sens de l'humour qui fera plus tard son génie au cinéma sous le surnom de Charlot... + Film + Film Histoire + + + Tout public + + + + Piaf, sans amour on n'est rien du tout + Portrait d'Edith Piaf, l'incarnation de la chanson populaire et de la passion amoureuse, grâce à des images d'archives et de nombreux extraits de chansons. + Documentaire + Doc. Culture + + + Tout public + + + + Picasso : Les premières fois + Jeune adolescent, Pablo Picasso passe quatre ans à La Corogne, en Galice, où il apprend des techniques académiques dont il cherchera à s'affranchir par la suite. + Documentaire + Doc. Culture + + + Tout public + + + + "Un Requiem allemand" de Johannes Brahms : Festival de Salzbourg 2023 + Aucune description + Musique + Classic-Contemp + + + Tout public + + + + Karambolage + la chanson Michel Souris nous raconte l'histoire d'un hit allemand très connu en France : "99 Luftballons", de la chanteuse Nena. l'institution Suivons Claire Doutriaux dans le temple de la langue française : l'Académie française. la devinette + Magazine + Mag. Société + + + Tout public + + + + Arte journal + Chaque jour à 19h45, la rédaction franco-allemande d'ARTE Journal propose une approche européenne et culturelle de l'actualité. Un regard original sur le monde. + Info-Météo + Information + + + Tout public + + + + Catherine Deneuve, à son image + Longtemps réduite à sa blondeur glacée, Catherine Deneuve s'est émancipée des fantasmes et clichés par des choix de carrière instinctifs et audacieux. + Documentaire + Doc. Culture + + + Tout public + + + + Joyeux Noël + 1914. La déclaration de guerre jette des millions d'hommes dans la bataille. Parmi eux, Nikolaus Sprink, célèbre ténor de l'Opéra de Berlin. Le soir de Noël, rejoint par sa maîtresse, la soprano Anna Sörensen, Nikolaus chante pour ses camarades de tranchées. La musique aidant, une trêve est déclarée... + Film + Film Histoire + + + Tout public + + + + Daniel Brühl : Goodbye l'éternel gentil + Daniel Brühl reste éternellement associé au héros du film "Good Bye Lenin!", Avec les confidences de l'intéressé, un portrait de l'acteur et de son double. + Documentaire + Doc. Culture + + + Tout public + + + + L'opéra de quat'sous : Festival d'Aix-en-Provence 2023 + Invitée pour la première fois au Festival d'Aix-en-Provence, la troupe de la Comédie-Française revisite le classique de Bertolt Brecht et Kurt Weill, sous la direction de Thomas Ostermeier. + Musique + Opéra + + + Tout public + + + + Un amour impossible + Dans les années 50 à Châteauroux, Rachel, employée de bureau, rencontre Philippe, un fils de bourgeois, à la cantine de son travail. Débute une histoire d'amour passionnelle. Quand Rachel tombe enceinte, Philippe refuse de l'épouser et de reconnaître l'enfant. Sa famille n'accepterait pas cette mésalliance... + Film + Film Passion + + + Tout public + + + + Pause + Vêtus d'habits de fourrure aux couleurs vives, et tous dotés d'une personnalité différente, les Oddbods sont sept drôles de personnages qui ne manquent ni de vitalité, ni d'imagination. Ils passent leur temps à chahuter et à se jouer des tours au fil des épisodes. + Autre + + + Tout public + + + + Pause + Aucune description + Magazine + Autre + + Tout public + + + + Pommes sans pesticides + Les pommes font partie des fruits les plus traités par les produits phytosanitaires. Est-il encore possible de produire des pommes sans pesticides ? + Documentaire + Société + + + Tout public + + + + Le dessous des images + La fin du genre humain en 39 secondes + Une vidéo d'animation revisite la fresque classique de l'évolution humaine. Réalisée à l'aide d'une intelligence artificielle, elle repose sur un malentendu. + Magazine + Culture + + 0 . 43 . + + Tout public + + + + 28 minutes + Avec curiosité, vivacité et humour, Élisabeth Quin s'empare chaque soir de l'actualité, accompagnée, du lundi au jeudi, par Benjamin Sportouch, Anna N'Diaye, Marie Bonnisseau et Xavier Mauduit. Avec, toujours au programme, les rubriques "Règle de 3" de Gaël Legras, "Mise au point" de Sandrine Le Calvez et "Magnéto". Le week-end, Renaud Dély reprend le flambeau avec "Le club" du vendredi, assisté de Frédéric Says, Alix Van Pée et Claude Askolovitch, ainsi que 28 minutes samedi, en compagnie de Jean-Mathieu Pernin, Valérie Brochard et Alix Van Pée. + Magazine + Information + + 0 . 49 . + + Tout public + + + + ARTE Journal Junior + Le JT matinal et quotidien de six minutes pour les 10-14 ans. + Magazine + Jeunesse + + + Tout public + + + + Les ratons laveurs, nos nouveaux voisins ? + Une vétérinaire plaide pour que les ratons laveurs et les Berlinois, qui en sont agacés, s'entendent : les néozoaires ressemblant à des chiens sont castrés. + Nature + Animalier + + + Tout public + + + + Invitation au voyage + Linda Lorin nous emmène à la découverte de notre patrimoine artistique, culturel et naturel. Hydra, éden solaire de Panayiotis Tetsis - En Finlande, les femmes tissent leur destin - En Indonésie, le riz gluant à la noix de coco d'Oktavia - À Pau, une naissance sur un cours de tennis. + Magazine + Découvertes + + 0 . 1175 . + + Tout public + + + + Invitation au voyage + Linda Lorin nous emmène à la découverte de notre patrimoine artistique, culturel et naturel. En Corse, le fantôme de Leonor Fini - Le Joropo, musique des cow-boys colombiens - En Finlande, la soupe au saumon et à la crème de Sari - Dans le Vermont, la chasse aux flocons. + Magazine + Découvertes + + 0 . 1328 . + + Tout public + + + + Nez-Percés, chevauchée pour la liberté + Afin de revivre comme leurs ancêtres, plus d'une vingtaine de descendants de la tribu des Nez-Percés partent en balade dans le parc de Yellowstone. + Documentaire + Découvertes + + + Tout public + + + + Nature, le retour du sauvage + Le castor en Angleterre : un effet big bang + En 2014, le retour des castors que l'on pensait éteints en Angleterre, est célébré en grande pompe, mais il inquiète aussi ceux qui craignent que les castors ne transmettent des maladies aux animaux d'élevage. + Documentaire + Nature + + 1 . 0 . + + Tout public + + + + Nature, le retour du sauvage + USA, le renouveau du lac Érié + Pendant des décennies, le lac Erié a souffert des rejets de l'agriculture, de l'industrie et des villes. Aujourd'hui, des passionnés tentent de changer cela. + Documentaire + Nature + + 0 . 0 . + + Tout public + + + + Médecines d'ailleurs + Mexique, les guérisseurs maya + Au Yucatan, Bernard Fontanille rencontre don Galo, médecin traditionnel qui fait partie de la catégorie la plus élevée des soignants : les H'men. + Documentaire + Découvertes + + 1 . 0 . + + Tout public + + + + L'Allemagne sauvage + Le massif du Kaiserstuhl + Dans le sud-ouest de l'Allemagne, le massif volcanique de Kaiserstuhl, l'un des endroits les plus chauds d'Allemagne, abrite une biodiversité foisonnante. + Documentaire + Nature + + 8 . 0 . + + Tout public + + + + Elle s'en va + Rien ne va plus pour Bettie, la soixantaine. Indépendante et dotée d'un fort caractère, elle vient d'être quittée par son amant et son restaurant ne marche pas. Alors que les créanciers la pressent de payer ses dettes, elle prend le volant de sa voiture et fait une fugue. En chemin, elle en profite pour faire des rencontres, assiste même à un gala d'ex-miss France. Sa fille, qu'elle n'a pas vue depuis des lustres, lui confie son fils qu'elle ne connaît pas. Sa mission? Emmener l'enfant chez son grand-père, où il doit passer ses vacances. Bettie, qui improvise dans le rôle de grand-mère, a bien du mal à apprivoiser le petit garçon rebelle... + Film + Comédie dramatique + + + Tout public + + + + Animaux nettoyeurs, les alliés de la nature + Les 8 millions d'habitants de New York cohabitent avec 16 milliards de fourmis, non sans quelques tensions. Chassés et exterminés, ces insectes jouent pourtant un rôle essentiel dans les villes modernes, comme le soulignent de plus en plus d'études : véritables professionnelles du traitement des ordures, les fourmis réduisent drastiquement le volume des déchets, empêchant ainsi les rats de pulluler. En milieu rural, les vautours, associés aux cadavres dans l'imaginaire populaire, sont eux aussi mal accueillis par les humains : pourtant, sans ces charognards dotés d'un système immunitaire à toute épreuve, les autres espèces se verraient gravement menacées par des maladies en tout genre. + Nature + Animalier + + + Tout public + + + + Quatre saisons dans les Cévennes + Une découverte des Cévennes, région sauvage du sud de la France où protection de la faune et préservation de l'héritage culturel se rejoignent. + Documentaire + Nature + + + Tout public + + + + Invitation au voyage + Linda Lorin nous emmène à la découverte de notre patrimoine artistique, culturel et naturel. À Rome, Franz Liszt devient éternel - Aux fêtes de Pirenópolis, le Brésil se démasque - Aux États-Unis, la viande marinée et grillée de David - En Grèce, quand la musique est bonne. + Magazine + Découvertes + + 0 . 1329 . + + Tout public + + + + Invitation au voyage + Linda Lorin nous emmène à la découverte de notre patrimoine artistique, culturel et naturel. Martín Chirino, forgeron de l'âme canarienne - La cornemuse, le souffle des Highlands - En Corse, la terrine de jambon de Philippe - Au Texas, pas de pitié pour les Mexicains. + Magazine + Découvertes + + 0 . 1176 . + + Tout public + + + + Phobie scolaire : un cas d'école inédit + Des lycéens souffrant de phobie scolaire évoquent leur parcours, leur angoisse à l'idée de se rendre en classe et leur manière d'affronter le problème. + Documentaire + Education + + + Tout public + + + + Le dessous des images + Le mystère de la vidéo satisfaisante + Une pâte de sable rose est malaxée, aplatie puis coupée de façon parfaitement symétrique. Gros plan sur un des succès de la plate-forme TikTok. + Magazine + Culture + + 0 . 127 . + + Tout public + + + + Arte journal + Chaque jour à 19h45, la rédaction franco-allemande d'ARTE Journal propose une approche européenne et culturelle de l'actualité. Un regard original sur le monde. + Information + Journal + + + Tout public + + + + 28 minutes + Avec curiosité, vivacité et humour, Élisabeth Quin fait sa rentrée pour s'emparer chaque soir de l'actualité, accompagnée, du lundi au jeudi, par Benjamin Sportouch, Anna N'Diaye, Marie Bonnisseau et Xavier Mauduit. Avec, toujours au programme, les rubriques "Règle de 3" de Gaël Legras, "Mise au point" de Sandrine Le Calvez et "Magnéto". Le week-end, Renaud Dély reprend le flambeau avec "Le club" du vendredi, assisté de Frédéric Says, Alix Van Pée et Claude Askolovitch, ainsi que 28 minutes samedi, en compagnie de Jean-Mathieu Pernin, Valérie Brochard et Alix Van Pée. + Magazine + Information + + 0 . 50 . + + Tout public + + + + Le dessous des cartes : l'essentiel + Du lundi au jeudi vers 20.50, Le dessous des cartes - L'essentiel met son expertise géopolitique au service d'un décryptage, en trois minutes, des grands événements qui secouent le monde contemporain. + Information + Politique + + 0 . 40 . + + Tout public + + + + Sans toit ni loi + Un matin d'hiver, on retrouve le cadavre d'une jeune fille dans un fossé. Qui était-elle ? Petit à petit, au fil des témoignages, son passé se reconstitue. Elle s'appelait Mona et avait tout quitté pour prendre la route. Elle croisait sans s'y attarder des chemins et des vies vagues. Avec David, un vagabond, elle s'était installée quelque temps dans un château délabré. Plus tard, elle s'était arrêtée chez un diplômé de philosophie reconverti dans le fromage de chèvre et prônant une tolérance souple, qui a pourtant rapidement montré ses limites. Plus loin encore, elle était montée dans la voiture d'une universitaire, spécialiste des platanes, que sa dureté sans fard avait intriguée et repoussée tout à la fois... + Film + Drame + + + Tout public + + + + Viva Varda ! + Autoproclamé "portrait libre" dès son introduction à travers la voix off facétieuse de Louis Garrel, "Viva Varda !" assume d'emblée le refus de l'hagiographie à sens unique. S'il reste avant tout une ode et un hommage aussi exhaustif que possible à la force créatrice d'Agnès Varda, cinéaste, photographe et plasticienne, disparue en 2019 à 90 ans, le film ne craint pas d'évoquer sans détour, témoignages et archives caustiques à l'appui, l'intransigeance que recouvrait la bonhommie apparente de ce petit bout de femme. Sous les sourires, les danses improvisées et le ludisme érigé en art de vivre, le documentaire rappelle ainsi la radicalité sans compromis de cette pionnière de la Nouvelle Vague, qui revendiqua sa liberté dans chaque domaine de sa vie. + Documentaire + Culture + + + Tout public + + + + L'une chante, l'autre pas + A Paris, en 1962, Pauline est une jeune femme de 17 ans, qui chante dans une chorale et caresse secrètement l'espoir de devenir chanteuse yéyé. Suzanne, sa meilleure amie, enceinte pour la troisième fois, se désespère de la mort brutale de son petit ami. Pauline aide Suzanne à avorter. Dix ans plus tard, les deux amies se retrouvent avec émotion. Suzanne milite depuis quelque temps au planning familial tandis que Pauline, qui se fait appeler Pomme, s'ennuie auprès de Darius, l'homme qu'elle aime, mais dont elle finit par se séparer. En 1976, Suzanne, mariée, retrouve à nouveau Pauline, devenue chanteuse du groupe Orchidée... + Film + Comédie dramatique + + + Tout public + + + + La Paloma + Le "Grosse Freiheit" est un cabaret à Hambourg où s'enivrent les marins. Hannes Kröger, qui a, lui aussi, jadis sillonné les mers, joue de l'accordéon et chante pour ses anciens camarades de bordée. Sur son lit de mort, son frère lui apprend qu'il s'est épris d'une jeune fille qu'il a ensuite abandonnée, Gisa. Celle-ci est retournée dans son village, où elle est exposée à la hargne et aux quolibets des siens. Hannes entreprend de lui rendre visite. Il en tombe à son tour désespérément amoureux... + Film + Drame + + + Tout public + + + + Idée 3D + Après #MeToo, le retour de bâton ? + #MeToo a libéré la parole des femmes, mais le nombre des féminicides ne baisse pas ; aux Etats-Unis et en Pologne, le droit à l'avortement disparaît. + Magazine + Société + + 0 . 6 . + + Tout public + + + + Italie : les montagnes de la Valteline + Avec ses imposants massifs montagneux de granit, la Valteline offre des panoramas parmi les plus spectaculaires d'Italie. Couverte de vignobles escarpés, cette vallée alpine, qui s'étire sur une centaine de kilomètres, au carrefour de la Lombardie, du Sud-Tyrol et de la Suisse, abrite des murs de pierre sèche, mais surtout une faune variée, dont certaines espèces, comme les bouquetins, sont protégées + Documentaire + Découvertes + + + Tout public + + + + Pause + Aucune description + Magazine + Autre + + Tout public + + + + Phobie scolaire : un cas d'école inédit + Des lycéens souffrant de phobie scolaire évoquent leur parcours, leur angoisse à l'idée de se rendre en classe et leur manière d'affronter le problème. + Documentaire + Doc. Société + + + Tout public + + + + Le dessous des images + Le mystère de la vidéo satisfaisante + Une pâte de sable rose est malaxée, aplatie puis coupée de façon parfaitement symétrique. Gros plan sur un des succès de la plate-forme TikTok. + Magazine + Mag. Culture + + 0 . 127 . + + Tout public + + + + Le dessous des cartes : l'essentiel + Du lundi au jeudi vers 20.50, Le dessous des cartes - L'essentiel met son expertise géopolitique au service d'un décryptage, en trois minutes, des grands événements qui secouent le monde contemporain. + Magazine + Mag. Politique + + + Tout public + + + + 28 minutes + Présenté par Élisabeth Quin, le rendez-vous quotidien consacré à l'actualité et au débat. + Magazine + Mag. Société + + + Tout public + + + + Arte journal junior + Le JT matinal et quotidien de six minutes pour les 10-14 ans. + Jeunesse + Mag. Jeunesse + + + Tout public + + + + Ghana : l'avenir est aux femmes + Ama Boamah gère la première entreprise de jus de fruits bio à Accra, capitale du Ghana ; pour ce faire, cette trentenaire s'est émancipée du carcan familial. + Documentaire + Doc. Société + + + Tout public + + + + Invitation au voyage + Linda Lorin nous emmène à la découverte de notre patrimoine artistique, culturel et naturel. Martín Chirino, forgeron de l'âme canarienne - La cornemuse, le souffle des Highlands - En Corse, la terrine de jambon de Philippe - Au Texas, pas de pitié pour les Mexicains. + Magazine + Mag. Découverte + + + Tout public + + + + Invitation au voyage + Linda Lorin nous emmène à la découverte de notre patrimoine artistique, culturel et naturel. À Rome, Franz Liszt devient éternel - Aux fêtes de Pirenópolis, le Brésil se démasque - Aux États-Unis, la viande marinée et grillée de David - En Grèce, quand la musique est bonne. + Magazine + Mag. Découverte + + + Tout public + + + + Nos chères bestioles + Dans les soies d'une araignée + Dans les dernières lueurs de l'automne, une araignée rayée de la famille des épeires frelons finit de tisser le cocon dans lequel ses petits verront le jour. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + Nos chères bestioles + Sous la carapace de la coccinelle + Au printemps, la coccinelle à deux points sort de son hibernation et part en quête de nourriture, tout en batifolant avec différents partenaires. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + Nos chères bestioles + La mouche, précieuse importune + Avec les beaux jours, les mouches domestiques volent de festin en festin. Peu difficiles, elles se repaissent des sécrétions oculaires des chevaux. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + Nature, le retour du sauvage + Brésil, la renaissance de la forêt atlantique + La forêt atlantique a perdu 90 0e sa surface sous l'effet de la déforestation. Face à cette évolution inquiétante des initiatives de protection ont vu le jour. + Documentaire + Doc. Nature + + 1 . 0 . + + Tout public + + + + Autriche, la nature en mouvement + Le Tyrol et les montagnes + Qu'ils soient éleveuse de yaks, plongeur ou biologiste, les habitants du Tyrol sont attachés à la préservation de au leur région de montagnes et d'alpages. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + Lettres de l'au-delà + L'ex-commissaire Gerd Dennert rend visite à son ancien élève et collègue Ingo Thiel pour lui parler d'un douloureux mystère jamais élucidé. En 1997, le jeune Sven s'évaporait sans laisser de trace. Trente ans plus tard, ses parents viennent de recevoir des cartes postales attestant que Sven est en vie. + Film + Film Suspense + + + Tout public + + + + Vatican, en coulisse avec les gardes suisses + Depuis 1506, la Garde suisse assure la protection du pape. Derrière l'uniforme de style Renaissance se cachent aujourd'hui de jeunes Suisses bien entraînés. + Documentaire + Doc. Société + + + Tout public + + + + L'Autriche sauvage : Sous le signe de l'eau + L'empreinte des glaciers + Au coeur du parc de Hohe Tauern, le Grossglockner constitue le point culminant des Alpes autrichiennes, attirant chaque été des milliers de randonneurs. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + Cimes d'Europe + L'Ardenne + Le massif ardennais culmine dans le sud-est de la Belgique, occupe un tiers du Luxembourg, se prolonge en Allemagne et s'étend jusqu'à l'est de la France. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + Invitation au voyage + Linda Lorin nous emmène à la découverte de notre patrimoine artistique, culturel et naturel. Danzón, le cinéma mexicain au féminin - Aux Pays-Bas, les tulipes de la prospérité - En Afrique du Sud, les tomates farcies de Jani - À New York, une invention qui prend de la hauteur. + Magazine + Mag. Découverte + + + Tout public + + + + Invitation au voyage + Linda Lorin nous emmène à la découverte de notre patrimoine artistique, culturel et naturel. La Californie, laboratoire de Philip K. Dick - Camembert, made in Normandie - En Indonésie, le riz frit au poulet de Riana - Au Vatican, on trompe le pape. + Magazine + Mag. Découverte + + + Tout public + + + + Ruée vers l'or : inquiétudes chez les Samis + En Finlande, l'extraction des gisements d'or menace l'élevage de rennes, moyen de subsistance traditionnel des Samis. + Documentaire + Doc. Société + + + Tout public + + + + Le dessous des images + L'image, arme ultime du prisonnier Navalny + Découvrez ce que racontent vraiment les images, au-delà du premier regard. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Arte journal + Chaque jour à 19h45, la rédaction franco-allemande d'ARTE Journal propose une approche européenne et culturelle de l'actualité. Un regard original sur le monde. + Info-Météo + Information + + + Tout public + + + + 28 minutes + Présenté par Élisabeth Quin, le rendez-vous quotidien consacré à l'actualité et au débat. + Magazine + Mag. Société + + + Tout public + + + + Le dessous des cartes : l'essentiel + Du lundi au jeudi vers 20.50, Le dessous des cartes - L'essentiel met son expertise géopolitique au service d'un décryptage, en trois minutes, des grands événements qui secouent le monde contemporain. + Magazine + Mag. Politique + + + Tout public + + + + Capitalisme américain : Le culte de la richesse + Le paradis des millionnaires (1870-1920) + A la fin du XIXe siècle, aux Etats-Unis, un pacte scellé entre mondes des affaires et de la politique accélère la mise en place d'un capitalisme impitoyable. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Capitalisme américain : Le culte de la richesse + Faire casquer les riches (1921-1946) + Le krach de 29 précipite le pays dans la Grande Dépression. Elu président en 1933, Roosevelt prône un capitalisme maîtrisé et lance de grands chantiers publics. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Capitalisme américain : Le culte de la richesse + Qui veut gagner des milliards ? (1981 à aujourd'hui) + A partir de 1981, le capitalisme américain s'est appuyé sur la révolution informatique et sur Internet, créant une nouvelle concentration des richesses. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + America First, le bilan + L'Europe doit payer + Au fil du récit d'acteurs clés, une immersion dans les coulisses diplomatiques des quatre années de présidence Trump, entre stupeur et tremblements. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + America First, le bilan + L'ennemi au Moyen-Orient + Au Moyen-Orient, Donald Trump, plus businessman que chef d'Etat, rebat les cartes sans concertation. Il entraîne l'Amérique au seuil d'une guerre avec l'Iran. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + America First, le bilan + La Chine ne gagnera pas + En se tournant vers l'Asie, Donald Trump, qui applique ses méthodes de magnat de l'immobilier à la diplomatie, adopte encore un style peu orthodoxe. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + Tracks East + Etats-Unis & Russie : une nouvelle guerre froide ? + L'invasion russe en Ukraine a-t-elle replongé le monde dans la guerre froide ? Et si finalement, l'attaque de la Russie contre son voisin ne visait pas plutôt les États-Unis ? Jean-Michel Scherbak s'est rendu à New York pour "Tracks East". Il tente de comprendre ce que ce retour du rideau de fer suscite chez les ennemis d'hier et d'aujourd'hui. + Magazine + Mag. Société + + 0 . 45 . + + Tout public + + + + Jackie Chan : Humour, gloire et kung-fu + Un portrait de Jackie Chan, acteur acrobate et prolifique inventeur du kung-fu comique, qui jeté un pont entre les cinémas américains et asiatiques. + Documentaire + Doc. Cinéma + + + Tout public + + + + Le dessous des cartes + Nucléaire civil : énergie d'hier ou de demain ? + Le monde entier a les yeux braqués sur la centrale nucléaire de Zaporijia en Ukraine. Le "Dessous des cartes" propose un tour du monde du nucléaire civil. + Magazine + Mag. Politique + + 0 . 1101 . + + Tout public + + + + Pause + Vêtus d'habits de fourrure aux couleurs vives, et tous dotés d'une personnalité différente, les Oddbods sont sept drôles de personnages qui ne manquent ni de vitalité, ni d'imagination. Ils passent leur temps à chahuter et à se jouer des tours au fil des épisodes. + Autre + + + Tout public + + + + Ruée vers l'or : inquiétudes chez les Samis + En Finlande, l'extraction des gisements d'or menace l'élevage de rennes, moyen de subsistance traditionnel des Samis. + Documentaire + Doc. Société + + + Tout public + + + + Le dessous des images + L'image, arme ultime du prisonnier Navalny + Ce prisonnier qui se tient droit, et qui va rire à l'annonce d'un verdict implacable, c'est l'opposant russe Alexeï Navalny. On y voit sa façon de communiquer avec le monde, même derrière les barreaux. Présenté par Sonia Devillers, le magazine qui analyse les images de notre époque. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Le dessous des cartes : l'essentiel + Du lundi au jeudi vers 20.50, Le dessous des cartes - L'essentiel met son expertise géopolitique au service d'un décryptage, en trois minutes, des grands événements qui secouent le monde contemporain. + Magazine + Mag. Politique + + + Tout public + + + + 28 minutes + Présenté par Élisabeth Quin, le rendez-vous quotidien consacré à l'actualité et au débat. + Magazine + Mag. Société + + + Tout public + + + + Arte journal junior + Le JT matinal et quotidien de six minutes pour les 10-14 ans. + Jeunesse + Mag. Jeunesse + + + Tout public + + + + GEO Reportage + Thaïlande, un terrain de football insolite + Au sud de la Thaïlande, au nord de la baie de Phang Nga, le village sur pilotis Koh Panyee possède un étonnant terrain de football flottant. + Documentaire + Doc. Découverte + + 0 . 0 . + + Tout public + + + + Invitation au voyage + Linda Lorin nous emmène à la découverte de notre patrimoine artistique, culturel et naturel. La Californie, laboratoire de Philip K. Dick - Camembert, made in Normandie - En Indonésie, le riz frit au poulet de Riana - Au Vatican, on trompe le pape. + Magazine + Mag. Découverte + + + Tout public + + + + Invitation au voyage + Linda Lorin nous emmène à la découverte de notre patrimoine artistique, culturel et naturel. Danzón, le cinéma mexicain au féminin - Aux Pays-Bas, les tulipes de la prospérité - En Afrique du Sud, les tomates farcies de Jani - À New York, une invention qui prend de la hauteur. + Magazine + Mag. Découverte + + + Tout public + + + + Associations de bienfaiteurs + La montagne + En montagne, la faune et la flore ont dû déployer une grande ingéniosité et nouer des alliances pour affronter l'altitude et l'extrême rudesse des éléments. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + Associations de bienfaiteurs + La lande + Dans la lande sèche, l'ajonc est au coeur d'un écosystème qui est menacé par l'urbanisation, l'assèchement et le développement des activités touristique. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + Associations de bienfaiteurs + Le maquis + Paysage de transition, le maquis deviendra à terme une forêt, forçant les espèces qui y vivent à inventer de nouvelles associations bienfaitrices. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + Autriche, la nature en mouvement + La Carinthie et l'eau + Située dans le sud de l'Autriche, la Carinthie est considérée comme le royaume de l'eau et de l'énergie hydraulique. Portraits de plusieurs de ses habitants. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + Médecines d'ailleurs + Cameroun, l'arbre antidouleur + Fin 2013, une équipe franco-camerounaise a isolé une molécule antidouleur dans les racines du pêcher africain, dont les propriétés sont connues au Cameroun. + Documentaire + Doc. Découverte + + 1 . 0 . + + Tout public + + + + Seuls les anges ont des ailes + Durant une escale à Barranca, en Amérique du Sud, Bonnie Lee, une danseuse, rencontre Geoff Carter, qui dirige une ligne de la compagnie aéropostale avec une fermeté proche de l'insensibilité. D'abord surprise, elle tombe amoureuse de lui et ne se laisse pas décourager par ses tentatives de l'évincer... + Film + Film Action + + + Tout public + + + + L'Autriche sauvage : Sous le signe de l'eau + Un monde de lacs et de rivières + Dans le parc national du Gesäuse, la lutte constante de l'eau face à la pierre est visible à l'oeil nu, comme le rappelle ce paysage sculpté par les flots. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + Cimes d'Europe + Les Black Mountains + A la frontière entre l'Angleterre et le pays de Galles, les Black Mountains dans le parc national de Brecon Beacons sont protégée. Rencontre avec les habitants. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + Invitation au voyage + Linda Lorin nous emmène à la découverte de notre patrimoine artistique, culturel et naturel. Les signes basques de Roland Barthes - Au Pendjab, à la gloire des sikhs - En Finlande, le filet de renne et le céleri en croûte de Joel - Au Nigeria, la femme qui voulait être roi. + Magazine + Mag. Découverte + + + Tout public + + + + Invitation au voyage + Linda Lorin nous emmène à la découverte de notre patrimoine artistique, culturel et naturel. Guerre et paix dans l'Ulster de U2 - La Turquie, berceau méconnu de la médecine - En Russie, le gâteau Napoléon d'Olga - À Lyon, un soldat inconnu reste à quai. + Magazine + Mag. Découverte + + + Tout public + + + + Arte Regards + En prise avec un thème d'actualité, une plongée inédite dans la réalité quotidienne de citoyens européens. + Documentaire + Doc. Société + + + Tout public + + + + Le dessous des images + Apocalypse à New York + New York et ses gratte-ciel les plus emblématiques plongés dans une étrange brume orange : pourquoi ces images semblent-elles si familières ? + Magazine + Mag. Culture + + 0 . 130 . + + Tout public + + + + Arte journal + Chaque jour à 19h45, la rédaction franco-allemande d'ARTE Journal propose une approche européenne et culturelle de l'actualité. Un regard original sur le monde. + Info-Météo + Information + + + Tout public + + + + 28 minutes + Présenté par Élisabeth Quin, le rendez-vous quotidien consacré à l'actualité et au débat. + Magazine + Mag. Société + + + Tout public + + + + Le dessous des cartes : l'essentiel + Du lundi au jeudi vers 20.50, Le dessous des cartes - L'essentiel met son expertise géopolitique au service d'un décryptage, en trois minutes, des grands événements qui secouent le monde contemporain. + Magazine + Mag. Politique + + + Tout public + + + + All Is Lost + Au milieu de l'océan Indien, un homme se réveille lorsque la coque de son bateau est perforée par un conteneur à la dérive. Alors qu'il se croit sorti d'affaire après avoir réparé, une tempête s'abat sur lui. Il s'en sort par miracle. Son but : se rapprocher d'une voie de navigation où croisent des cargos... + Film + Film Action + + + Tout public + + + + Leni Riefenstahl : La fin d'un mythe + Epargnée lors de la dénazification de son pays, la réalisatrice allemande Leni Riefenstahl aurait tout fait pour effacer tout lien compromettant avec Hitler. + Documentaire + Doc. Histoire + + + Tout public + + + + Le goût du saké + Shuhei Hirayama est veuf. Il vit avec sa fille Michiko et son fils Kazuo, tandis que l'aîné a quitté le foyer. Un ami lui dit qu'il gâche la vie de sa fille. Shuhei suggère à Michiko de trouver un mari. Elle finit par accepter. Après son départ, il se rend compte qu'il vieillit et qu'il est seul... + Film + Film Passion + + + Tout public + + + + Moby Dick : Une allégorie de l'Amérique + Comment le chef-d'oeuvre d'Herman Melville continue-t-il de résonner aux Etats-Unis ? Mise en perspective du roman à la lumière des aspirations des Américains. + Documentaire + Doc. Culture + + + Tout public + + + + Le tueur de l'ombre + Anders, qui a trouvé refuge avec Emma dans une cachette, attend des nouvelles de Stine. Interrogée par Jan, cette dernière soutient n'agir que sous la contrainte de son amant. Les enquêteurs ne sont pas dupes et cherchent désormais la connexion entre elle et la victime retrouvée en Suède... + Série + Série Suspense + + + + -12 + + + + Le tueur de l'ombre : la mort est aveugle + Déstabilisée par sa récente rupture avec son petit ami, Louise accepte le rendez-vous que lui propose Peter. Poursuivant les recherches, Karina se rend seule au port où elle fait une découverte cruciale. Comprenant que la police est sur ses traces, Peter annonce à Johannes qu'ils vont déménager en Norvège... + Série + Série Suspense + + + + -12 + + + + La "honte noire" : chroniques de l'occupation de la Rhénanie + Au lendemain de la Première Guerre mondiale, 100 000 soldats français occupent la Rhénanie. Ils sont alors la cible d'une campagne de diffamation. + Documentaire + Doc. Histoire + + + Tout public + + + + Pause + Vêtus d'habits de fourrure aux couleurs vives, et tous dotés d'une personnalité différente, les Oddbods sont sept drôles de personnages qui ne manquent ni de vitalité, ni d'imagination. Ils passent leur temps à chahuter et à se jouer des tours au fil des épisodes. + Autre + + + Tout public + + + + Arte Regards + En prise avec un thème d'actualité, une plongée inédite dans la réalité quotidienne de citoyens européens. + Documentaire + Doc. Société + + + Tout public + + + + Le dessous des images + Apocalypse à New York + New York et ses gratte-ciel les plus emblématiques plongés dans une étrange brume orange : pourquoi ces images semblent-elles si familières ? + Magazine + Mag. Culture + + 0 . 130 . + + Tout public + + + + Le dessous des cartes : l'essentiel + "Le dessous des cartes" met son expertise géopolitique au service d'une pastille quotidienne dédiée à l'actualité ukrainienne. + Magazine + Mag. Politique + + + Tout public + + + + 28 minutes + Le point sur l'actualité, avec un invité témoin et un débat sur le sujet chaud du jour, en compagnie de plusieurs journalistes. Chaque vendredi, un club d'intellectuels revisite l'actualité de la semaine. + Magazine + Mag. Société + + + Tout public + + + + Arte journal junior + Lancé en 2014 dans un format magazine, "ARTE Journal junior" propose à l'heure du petit déjeuner une édition quotidienne présentée dans les deux langues. Au programme : un décryptage du monde et de ses enjeux à travers deux sujets d'actualité et, tout au long de la semaine, un feuilleton en cinq épisodes sur un même thème ou des réponses à des questions posées par des enfants. + Jeunesse + Mag. Jeunesse + + + Tout public + + + + Les buffles, l'avenir pour le Laos ? + Une équipe de spécialistes cherche à nourrir sainement les buffles du Laos afin qu'ils produisent plus de lait pour nourrir les enfants du pays. + Documentaire + Doc. Découverte + + + Tout public + + + + Invitation au voyage + Invitation au voyage - L'Ulster de U2 / Turquie / Lyon + Magazine + Mag. Découverte + + + Tout public + + + + Invitation au voyage + Linda Lorin nous emmène à la découverte de notre patrimoine artistique, culturel et naturel. Les signes basques de Roland Barthes - Au Pendjab, à la gloire des sikhs - En Finlande, le filet de renne et le céleri en croûte de Joel - Au Nigeria, la femme qui voulait être roi. + Magazine + Mag. Découverte + + + Tout public + + + + Les parcs nationaux américains : 150 ans au service de la nature + Yellowstone, les Everglades, le Grand Canyon, Yosemite Valley : voyage à travers quelques-uns des plus spectaculaires parcs nationaux américains. + Documentaire + Doc. Nature + + + Tout public + + + + Pumas, les seigneurs des Andes + Naissance + Dans le parc national chilien Torres del Paine, une mère puma, Solitaria, s'occupe de ses quatre chatons et chasse pour eux des proies qu'elle trouve en abondance. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + Pumas, les seigneurs des Andes + Renaissance + Des quatre petits pumas de Solitaria, l'intrépide Casadora est la seule à avoir survécu ; désormais adulte, elle est bien décidée à marcher dans les pas de sa mère. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + Autriche, la nature en mouvement + La Styrie et les forêts + La Styrie, un Land qui s'est développé depuis des millénaires grâce au bois et à l'acier, constitue le coeur vert de la nation autrichienne. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + Potiche + En 1977, Robert Pujol, un riche industriel, est à la tête d'une usine de parapluies. Sa femme, Suzanne, est l'archétype de la bonne épouse. Un soir de rébellion, les salariés de l'usine séquestrent Robert. Suzanne fait alors appel à Maurice Babin, un élu et son ancien amant, pour débloquer la situation... + Film + Film Rires + + + Tout public + + + + Catherine Deneuve, à son image + Longtemps réduite à sa blondeur glacée, Catherine Deneuve s'est émancipée des fantasmes et clichés par des choix de carrière instinctifs et audacieux. + Documentaire + Doc. Culture + + + Tout public + + + + Cimes d'Europe + La Sierra de Guadarrama + Les massifs du parc national de la Sierra de Guadarrama hébergent de nombreuses espèces protégées, parmi lesquelles des vautours moines et des amphibiens. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + Invitation au voyage + Linda Lorin nous emmène à la découverte de notre patrimoine artistique, culturel et naturel. Le Sri Lanka sensuel et libre du peintre Georges Keyt - En Lozère, le berceau de la spéléologie - En Espagne, la tortilla aux haricots blancs de Dolos - Au Gabon, le premier médecin sans frontières. + Magazine + Mag. Découverte + + + Tout public + + + + Invitation au voyage + Linda Lorin nous emmène à la découverte de notre patrimoine artistique, culturel et naturel. Dans le Luberon, un été meurtrier et caniculaire - En Norvège, on trace la route en croisière - En Croatie, le poulpe cuit aux braises d'Ante - À Boston, elle pédale pour épater le monde. + Magazine + Mag. Découverte + + + Tout public + + + + L'extrême droite et la scène viking + En prise avec un thème d'actualité, une plongée inédite dans la réalité quotidienne de citoyens européens. + Documentaire + Doc. Société + + + Tout public + + + + Le dessous des images + Quand l'image fait le putsch + Le 30 septembre 2022, des militaires en uniforme occupent le plateau de la télévision nationale du Burkina Faso. Comment cette image participe-t-elle à asseoir l'autorité des putschistes ? En quoi cet exercice de communication leur est-il indispensable ? + Magazine + Mag. Culture + + 0 . 21 . + + Tout public + + + + Arte journal + Chaque jour à 19h45, la rédaction franco-allemande d'ARTE Journal propose une approche européenne et culturelle de l'actualité. Un regard original sur le monde. + Info-Météo + Information + + + Tout public + + + + 28 minutes + Le point sur l'actualité, avec un invité témoin et un débat sur le sujet chaud du jour, en compagnie de plusieurs journalistes. Chaque vendredi, un club d'intellectuels revisite l'actualité de la semaine. + Magazine + Mag. Société + + + Tout public + + + + Le dessous des cartes : l'essentiel + "Le dessous des cartes" met son expertise géopolitique au service d'une pastille quotidienne dédiée à l'actualité ukrainienne. + Magazine + Mag. Politique + + + Tout public + + + + Polar Park + Maintenant associés dans leur enquête clandestine, David et Louvetot ont vu le tueur de près. Ils ont aussi sauvé Aurélie Poulidor in extremis. David, dont l'un des romans a été retrouvé sur la dernière scène de crime, se demande si les meurtres ne sont pas liés à l'affaire qui l'a conduit à Mouthe... + Série + Série Rires + + + + -12 + + + + Polar Park + David retrouve Aurélie Poulidor pour une entrevue sous tension, au cours de laquelle elle lui révèle son étonnant secret. Pendant ce temps, Louvetot et ses collègues progressent. Une analyse d'ADN a permis d'identifier leur suspect : Ulrich Becherel, un repris de justice obsédé par les amputations... + Série + Série Rires + + + + -12 + + + + Polar Park + David et Louvetot se lancent à la poursuite des ravisseurs de Nicki et de Lyès, le compagnon de l'adjudant. Cet ultime jeu de pistes les conduit dans une forêt où vit un vieil ermite surnommé l'Indien, qui n'est autre que le père de Nicki. Non loin, se trouve le monastère où tout a commencé... + Série + Série Rires + + + + -12 + + + + Le grand bleu + Une île grecque dans les années 60. Deux enfants, Jacques Mayol et Enzo Molinari, passionnés de plongée, se chamaillent pour la possession d'une pièce d'or. Le lendemain, le père de Jacques se noie sous les yeux de son fils. Vingt ans plus tard, Jacques et Enzo sont devenus plongeurs professionnels... + Film + Film Action + + + Tout public + + + + Le tueur de l'ombre + Un témoin signale la présence d'Anders dans la marina : une fois sur place, les policiers découvrent son cadavre. Louise comprend que Stine veut se venger de sa famille. Ses parents et son frère sont mis en sécurité. Pourtant, la jeune femme parvient à les localiser. Accompagnée d'Emma, elle se rend sur les lieux où ils sont cachés… + Série + Série Suspense + + + + -12 + + + + Le tueur de l'ombre : la mort est aveugle + Lorsque Johannes est conduit au commissariat, Louise craint que sa relation avec Peter ne soit dévoilée. Revenue sans le prévenir de Singapour, Masja espère régler avec son ex-mari les modalités de garde de leur fils. Pendant ce temps, Karina, Søren et Torben tentent désespérément de retrouver Peter avant qu'il ne fasse une nouvelle victime... + Série + Série Suspense + + + + -12 + + + + Totems et tabous : Musée Royal d'Afrique centrale + Le Musée royal de l'Afrique centrale de Tervuren a l'ambition d'être le premier musée au monde à se confronter aux tabous et à la violence de la colonisation. + Documentaire + Doc. Histoire + + + Tout public + + + + Pause + Vêtus d'habits de fourrure aux couleurs vives, et tous dotés d'une personnalité différente, les Oddbods sont sept drôles de personnages qui ne manquent ni de vitalité, ni d'imagination. Ils passent leur temps à chahuter et à se jouer des tours au fil des épisodes. + Autre + + + Tout public + + + + Week-end première + L'émission propose un tour d'horizon de l'actualité du jour. Quatre heures d'information en direct, mêlant info "chaude" et info "de proximité". + Info-Météo + Information + + + Tout public + + + + Le Live Week-end + Aucune description + Magazine + Mag. Société + + + Tout public + + + + A l'épreuve des faits + Aucune description + Magazine + Mag. Société + + + Tout public + + + + L'aprèm info + Aucune description + Magazine + Mag. Société + + + Tout public + + + + BFM Story week-end + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Week-end 3D + Aucune description + Info-Météo + Information + + + Tout public + + + + Le 120 minutes + Aucune description + Info-Météo + Information + + + Tout public + + + + Week-end Direct + Le vendredi, samedi et dimanche soir, Alice Darfeuille est à la tête de Week-End Direct : un rendez-vous pour décrypter et débattre, au coeur de l'actualité. + Info-Météo + Information + + + Tout public + + + + Le journal de la nuit + Dans l'ambiance feutrée de la fin de soirée, l'émission propose un compte-rendu complet des principales actualités de la journée. En direct de 00h à 00h30, le journal de la nuit est ensuite rediffusé jusque 4h30. + Info-Météo + Information + + + Tout public + + + + Week-end première + L'émission propose un tour d'horizon de l'actualité du jour. Quatre heures d'information en direct, mêlant info "chaude" et info "de proximité". + Info-Météo + Information + + + Tout public + + + + Le Live Week-end + Aucune description + Magazine + Mag. Société + + + Tout public + + + + BFM Politique + En direct et en public, l'émission présentée par Benjamin Duhamel donne la parole aux personnalités de tous bords. L'interview est suivi d'un débat avec un contradicteur. + Magazine + Mag. Politique + + + Tout public + + + + Affaire suivante + Chaque dimanche, l'émission pilotée par Philippe Gaudin avec à ses côtés Dominique Rizet consultant police/justice BFMTV, traite d'un événement majeur de la semaine, ainsi que d'autres affaires qui sont revenues sur le devant de la scène. + Magazine + Mag. Service + + + Tout public + + + + L'aprèm info + Aucune description + Magazine + Mag. Société + + + Tout public + + + + BFM Story week-end + Aucune description + Magazine + Mag. Société + + + Tout public + + + + C'est pas tous les jours dimanche + Aucune description + Magazine + Débat + + + Tout public + + + + Le 120 minutes + Aucune description + Info-Météo + Information + + + Tout public + + + + Week-end Direct + Le vendredi, samedi et dimanche soir, Alice Darfeuille est à la tête de Week-End Direct : un rendez-vous pour décrypter et débattre, au coeur de l'actualité. + Info-Météo + Information + + + Tout public + + + + Le journal de la nuit + Dans l'ambiance feutrée de la fin de soirée, l'émission propose un compte-rendu complet des principales actualités de la journée. En direct de 00h à 00h30, le journal de la nuit est ensuite rediffusé jusque 4h30. + Info-Météo + Information + + + Tout public + + + + Première édition + Un nouveau tandem prend les commandes du rdv tv d'Informations le plus matinal de France. Dès 4h30, Sophie Hebrard et Julien Migaud-Muller accompagnent les Français qui se lèvent tôt en présentant les informations qui feront l'actualité de la journée. + Info-Météo + Information + + + Tout public + + + + Première édition + Un nouveau tandem prend les commandes du rdv tv d'Informations le plus matinal de France. Dès 4h30, Sophie Hebrard et Julien Migaud-Muller accompagnent les Français qui se lèvent tôt en présentant les informations qui feront l'actualité de la journée. + Information + Journal + + + Tout public + + + + Première édition + Du lundi au vendredi dès 6h, l'équipe de la Première édition donne rendez-vous pour plusieurs heures d'info avec dynamisme et convivialité. + Information + Journal + + + Tout public + + + + Face à face + Aucune description + Information + Politique + + + Tout public + + + + Le Live Toussaint + 3 heures pour vivre l'info. Bruce Toussaint donne les clés aux téléspectateurs pour mieux comprendre les grands enjeux de la journée. + Magazine + Information + + + Tout public + + + + Le Déj info + Entourée d'une bande de chroniqueurs, la présentatrice livre une émission d'info conviviale. La tranche fait la part belle aux territoires grâce à ses rédactions. + Information + Journal + + + Tout public + + + + L'aprèm info + Aucune description + Information + Journal + + + Tout public + + + + BFM Story + Cette émission fait place à l'analyse et aux débats autour des événements marquants de la journée. Chaque soir, "BFM Story" reçoit des invités de tous horizons. + Magazine + Information + + + Tout public + + + + Calvi 3D + Yves Calvi est aux commandes des débuts de soirée de BFMTV avec "Calvi 3D". Direct, décryptages, débats : Yves Calvi mène ce grand rendez-vous d'information avec des invités de référence, des reportages, de l'analyse et un journal politique. + Magazine + Information + + + Tout public + + + + Le 20H de Ruquier + Le 20H de Ruquier arrive le 25/09 ! + Aucune description + Magazine + Information + + + Tout public + + + + Le 60 minutes + Aucune description + Magazine + Information + + + Tout public + + + + 22H MAX + Maxime Switek fait le tour des images marquantes et des déclarations fortes de la journée et fait vivre l'info du soir, entouré de chroniqueurs, d'invités et d'éditorialistes. Chaque soir, Bruno Jeudy se confronte à une éditorialiste: Isabelle Saporta, Géraldine Woessner, Nora Hamadi, ou Solange Bied-Charreton. Sonia Carneiro présente "Le plus" pour approfondir un sujet et faire un petit pas de côté par rapport à l'actu. Les autres rendez-vous : les matchs des éditorialistes, "24 heures sur BFMTV" (toutes les images qui ont marqué l'antenne sur la journée), "Le choix de Max". + Magazine + Information + + + Tout public + + + + Le journal de la nuit + Dans l'ambiance feutrée de la fin de soirée, l'émission propose un compte-rendu complet des principales actualités de la journée. En direct de 00h à 00h30, le journal de la nuit est ensuite rediffusé jusque 4h30. + Information + Journal + + + Tout public + + + + Première édition + Un nouveau tandem prend les commandes du rdv tv d'Informations le plus matinal de France. Dès 4h30, Sophie Hebrard et Julien Migaud-Muller accompagnent les Français qui se lèvent tôt en présentant les informations qui feront l'actualité de la journée. + Information + Journal + + + Tout public + + + + Première édition + Du lundi au vendredi dès 6h, l'équipe de la Première édition donne rendez-vous pour plusieurs heures d'info avec dynamisme et convivialité. + Info-Météo + Information + + + Tout public + + + + Face à face + Aucune description + Magazine + Mag. Politique + + + Tout public + + + + Le Live Toussaint + 3 heures pour vivre l'info. Bruce Toussaint donne les clés aux téléspectateurs pour mieux comprendre les grands enjeux de la journée. + Magazine + Mag. Société + + + Tout public + + + + Le Déj info + Entourée d'une bande de chroniqueurs, la présentatrice livre une émission d'info conviviale. La tranche fait la part belle aux territoires grâce à ses rédactions. + Info-Météo + Information + + + Tout public + + + + L'aprèm info + Aucune description + Info-Météo + Information + + + Tout public + + + + BFM Story + Cette émission fait place à l'analyse et aux débats autour des événements marquants de la journée. Chaque soir, "BFM Story" reçoit des invités de tous horizons. + Magazine + Mag. Société + + + Tout public + + + + Calvi 3D + Yves Calvi est aux commandes des débuts de soirée de BFMTV avec "Calvi 3D". Direct, décryptages, débats : Yves Calvi mène ce grand rendez-vous d'information avec des invités de référence, des reportages, de l'analyse et un journal politique. + Info-Météo + Information + + + Tout public + + + + Le 20H de Ruquier + Aucune description + Info-Météo + Information + + + Tout public + + + + Le 60 minutes + Aucune description + Magazine + Mag. Société + + + Tout public + + + + 22h MAX + Maxime Switek fait le tour des images marquantes et des déclarations fortes de la journée et fait vivre l'info du soir, entouré de chroniqueurs, d'invités et d'éditorialistes. + Magazine + Mag. Société + + + Tout public + + + + Le journal de la nuit + Dans l'ambiance feutrée de la fin de soirée, l'émission propose un compte-rendu complet des principales actualités de la journée. En direct de 00h à 00h30, le journal de la nuit est ensuite rediffusé jusque 4h30. + Info-Météo + Information + + + Tout public + + + + Première édition + Un nouveau tandem prend les commandes du rdv tv d'Informations le plus matinal de France. Dès 4h30, Sophie Hebrard et Julien Migaud-Muller accompagnent les Français qui se lèvent tôt en présentant les informations qui feront l'actualité de la journée. + Info-Météo + Information + + + Tout public + + + + Première édition + Du lundi au vendredi dès 6h, l'équipe de la Première édition donne rendez-vous pour plusieurs heures d'info avec dynamisme et convivialité. + Info-Météo + Information + + + Tout public + + + + Face à face + Aucune description + Magazine + Mag. Politique + + + Tout public + + + + Le Live Toussaint + 3 heures pour vivre l'info. Bruce Toussaint donne les clés aux téléspectateurs pour mieux comprendre les grands enjeux de la journée. + Magazine + Mag. Société + + + Tout public + + + + Le Déj info + Entourée d'une bande de chroniqueurs, la présentatrice livre une émission d'info conviviale. La tranche fait la part belle aux territoires grâce à ses rédactions. + Info-Météo + Information + + + Tout public + + + + L'aprèm info + Aucune description + Info-Météo + Information + + + Tout public + + + + BFM Story + Cette émission fait place à l'analyse et aux débats autour des événements marquants de la journée. Chaque soir, "BFM Story" reçoit des invités de tous horizons. + Magazine + Mag. Société + + + Tout public + + + + Calvi 3D + Yves Calvi est aux commandes des débuts de soirée de BFMTV avec "Calvi 3D". Direct, décryptages, débats : Yves Calvi mène ce grand rendez-vous d'information avec des invités de référence, des reportages, de l'analyse et un journal politique. + Info-Météo + Information + + + Tout public + + + + Le 20H de Ruquier + Aucune description + Info-Météo + Information + + + Tout public + + + + Le 60 minutes + Aucune description + Magazine + Mag. Société + + + Tout public + + + + 22h MAX + Maxime Switek fait le tour des images marquantes et des déclarations fortes de la journée et fait vivre l'info du soir, entouré de chroniqueurs, d'invités et d'éditorialistes. + Magazine + Mag. Société + + + Tout public + + + + Le journal de la nuit + Dans l'ambiance feutrée de la fin de soirée, l'émission propose un compte-rendu complet des principales actualités de la journée. En direct de 00h à 00h30, le journal de la nuit est ensuite rediffusé jusque 4h30. + Info-Météo + Information + + + Tout public + + + + Première édition + Un nouveau tandem prend les commandes du rdv tv d'Informations le plus matinal de France. Dès 4h30, Sophie Hebrard et Julien Migaud-Muller accompagnent les Français qui se lèvent tôt en présentant les informations qui feront l'actualité de la journée. + Info-Météo + Information + + + Tout public + + + + Première édition + Du lundi au vendredi dès 6h, l'équipe de la Première édition donne rendez-vous pour plusieurs heures d'info avec dynamisme et convivialité. + Info-Météo + Information + + + Tout public + + + + Face à face + Aucune description + Magazine + Mag. Politique + + + Tout public + + + + Le Live Toussaint + 3 heures pour vivre l'info. Bruce Toussaint donne les clés aux téléspectateurs pour mieux comprendre les grands enjeux de la journée. + Magazine + Mag. Société + + + Tout public + + + + Le Déj info + Entourée d'une bande de chroniqueurs, la présentatrice livre une émission d'info conviviale. La tranche fait la part belle aux territoires grâce à ses rédactions. + Info-Météo + Information + + + Tout public + + + + L'aprèm info + Aucune description + Info-Météo + Information + + + Tout public + + + + BFM Story + Cette émission fait place à l'analyse et aux débats autour des événements marquants de la journée. Chaque soir, "BFM Story" reçoit des invités de tous horizons. + Magazine + Mag. Société + + + Tout public + + + + Calvi 3D + Yves Calvi est aux commandes des débuts de soirée de BFMTV avec "Calvi 3D". Direct, décryptages, débats : Yves Calvi mène ce grand rendez-vous d'information avec des invités de référence, des reportages, de l'analyse et un journal politique. + Info-Météo + Information + + + Tout public + + + + Le 20H de Ruquier + Aucune description + Info-Météo + Information + + + Tout public + + + + Le 60 minutes + Aucune description + Magazine + Mag. Société + + + Tout public + + + + 22h MAX + Maxime Switek fait le tour des images marquantes et des déclarations fortes de la journée et fait vivre l'info du soir, entouré de chroniqueurs, d'invités et d'éditorialistes. + Magazine + Mag. Société + + + Tout public + + + + Le journal de la nuit + Dans l'ambiance feutrée de la fin de soirée, l'émission propose un compte-rendu complet des principales actualités de la journée. En direct de 00h à 00h30, le journal de la nuit est ensuite rediffusé jusque 4h30. + Info-Météo + Information + + + Tout public + + + + Première édition + Un nouveau tandem prend les commandes du rdv tv d'Informations le plus matinal de France. Dès 4h30, Sophie Hebrard et Julien Migaud-Muller accompagnent les Français qui se lèvent tôt en présentant les informations qui feront l'actualité de la journée. + Info-Météo + Information + + + Tout public + + + + Voyage au bout de la nuit + Sonia lit Les Mémoires de Saint-Simon (26/42) + Les plus grandes oeuvres de la littérature française et internationale sont au programme de cette émission. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Voyage au bout de la nuit + Sonia lit Les Mémoires de Saint-Simon (27/42) + Les plus grandes oeuvres de la littérature française et internationale sont au programme de cette émission. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Les animaux de la 8 + L'épagneul breton un chien bien dans ses pattes + Sandrine Arcizet et Elodie Ageron partent sur les routes de France à la rencontre de passionnés d'animaux. Vétérinaires, soigneurs, bénévoles : ces femmes et ces hommes consacrent leur temps au bien-être des bêtes à poils ou à plumes, de fidèles compagnons qui n'ont pas fini de surprendre. + Magazine + Mag. Nature + + 0 . 0 . + + Tout public + + + + Les animaux de la 8 + Tout le monde craque pour les bébés cursinus + Sandrine Arcizet et Elodie Ageron partent sur les routes de France à la rencontre de passionnés d'animaux. Vétérinaires, soigneurs, bénévoles : ces femmes et ces hommes consacrent leur temps au bien-être des bêtes à poils ou à plumes, de fidèles compagnons qui n'ont pas fini de surprendre. + Magazine + Mag. Nature + + 0 . 0 . + + Tout public + + + + Direct Auto spécial WRC + Rallye d'Europe Centrale + Aucune description + Magazine + Mag. Sport + + 0 . 54 . + + Tout public + + + + Zap pol + Le "zap pol" est un programme court qui revient sur l'actualité politique des quinze derniers jours, en donnant la parole à celles et ceux qui n'ont pas forcément eu l'occasion de s'exprimer suffisamment sur notre antenne. + Divertissement + + + Tout public + + + + Téléachat + Aucune description + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Aucune description + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Aucune description + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Aucune description + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Aucune description + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Aucune description + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Aucune description + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Aucune description + Magazine + Mag. TV-Achat + + + Tout public + + + + Sélection C8 + Un magazine culturel. + Magazine + Mag. Culture + + + Tout public + + + + JT + Un rendez-vous d'information synthétique, pour comprendre le monde et les enjeux du moment. Un décodage moderne de l'actualité en quinze minutes d'infos denses et pédagogiques. + Info-Météo + Information + + + Tout public + + + + L'éphéméride + Une courte présentation de l'histoire du saint du jour qui se conclut par un dicton. + Magazine + Mag. Découverte + + + Tout public + + + + JOB + Un jeune en recherche d'emploi met en avant ses attentes face au monde du travail. Reportages sur les métiers qui recrutent, coaching et conseils d'experts sont au programme. + Magazine + Mag. Service + + + Tout public + + + + Le déclic ! + Des invités partagent le déclic qui leur a fait prendre conscience de l'urgence climatique et des conséquences que celui-ci a eu dans leur domaine d'activité mais aussi les actions qu'ils ont pu mettre en place en faveur de l'écologie. + Magazine + + + Tout public + + + + Les fous du volant + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Direct Auto Express + Magazine consacré à l'automobile par le biais de reportages d'actualité, d'essais de véhicules et de nouvelles concernant les événements sportifs motorisés. Une large place est accordée à l'actualité de la Formule 1: avec, tout au long de la saison, les enjeux des Grands Prix, les dernières infos du paddock et le retour sur la dernière course. + Magazine + Mag. Société + + + Tout public + + + + Direct Auto + Une heure de programme entièrement consacré à la passion automobile en compagnie de Grégory Galiffi, qui propose enquêtes et essais des nouveautés. + Magazine + Mag. Société + + + Tout public + + + + Direct Auto Express + Magazine consacré à l'automobile par le biais de reportages d'actualité, d'essais de véhicules et de nouvelles concernant les événements sportifs motorisés. Une large place est accordée à l'actualité de la Formule 1: avec, tout au long de la saison, les enjeux des Grands Prix, les dernières infos du paddock et le retour sur la dernière course. + Magazine + Mag. Société + + + Tout public + + + + Direct Auto Express + Magazine consacré à l'automobile par le biais de reportages d'actualité, d'essais de véhicules et de nouvelles concernant les événements sportifs motorisés. Une large place est accordée à l'actualité de la Formule 1: avec, tout au long de la saison, les enjeux des Grands Prix, les dernières infos du paddock et le retour sur la dernière course. + Magazine + Mag. Société + + + Tout public + + + + Tennis : Masters 1000 de Paris + Aucune description + Sport + tennis + + + Tout public + + + + Tennis : Masters 1000 de Paris + Aucune description + Sport + tennis + + + Tout public + + + + La recette d'un Noël magique + Lori, une jeune célibataire débordée, pose sa démission lorsque son patron lui impose de travailler pendant les fêtes. En regardant la télévision avec sa sœur, elle tombe sous le charme de Patrick, un pompier veuf très séduisant du Wisconsin. Elle décide de tenter sa chance et de le rencontrer. + Film + Film Passion + + + Tout public + + + + Les Chevaliers du fiel : Travaux d'enfer + Aucune description + Divertissement + Spectacle + + + Tout public + + + + Les Chevaliers du fiel : Une drôle d'affaire de famille + Aucune description + Divertissement + Spectacle + + + Tout public + + + + L'éphéméride + Une courte présentation de l'histoire du saint du jour qui se conclut par un dicton. + Magazine + Mag. Découverte + + + Tout public + + + + Les Chevaliers du Fiel - Les Municipaux : la revanche + Aucune description + Divertissement + Spectacle + + + Tout public + + + + Voyage au bout de la nuit + Florent lit Les Mémoires de Saint-Simon (28/42) + Les plus grandes oeuvres de la littérature française et internationale sont au programme de cette émission. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Sélection C8 + Un magazine culturel. + Magazine + Mag. Culture + + + Tout public + + + + Voyage au bout de la nuit + Florent lit Les Mémoires de Saint-Simon (29/42) + Les plus grandes oeuvres de la littérature française et internationale sont au programme de cette émission. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Voyage au bout de la nuit + Florent lit Les Mémoires de Saint-Simon (30/42) + Les plus grandes oeuvres de la littérature française et internationale sont au programme de cette émission. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Voyage au bout de la nuit + Florent lit Les Mémoires de Saint-Simon (31/42) + Les plus grandes oeuvres de la littérature française et internationale sont au programme de cette émission. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Voyage au bout de la nuit + Florent lit Les Mémoires de Saint-Simon (32/42) + Les plus grandes oeuvres de la littérature française et internationale sont au programme de cette émission. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Voyage au bout de la nuit + Florent lit Les Mémoires de Saint-Simon (33/42) + Les plus grandes oeuvres de la littérature française et internationale sont au programme de cette émission. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Voyage au bout de la nuit + Florent lit Les Mémoires de Saint-Simon (34/42) + Les plus grandes oeuvres de la littérature française et internationale sont au programme de cette émission. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Voyage au bout de la nuit + Florent lit Les Mémoires de Saint-Simon (35/42) + Les plus grandes oeuvres de la littérature française et internationale sont au programme de cette émission. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Voyage au bout de la nuit + Florent lit Les Mémoires de Saint-Simon (36/42) + Les plus grandes oeuvres de la littérature française et internationale sont au programme de cette émission. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Voyage au bout de la nuit + Florent lit Les Mémoires de Saint-Simon (37/42) + Les plus grandes oeuvres de la littérature française et internationale sont au programme de cette émission. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Voyage au bout de la nuit + Florent lit Les Mémoires de Saint-Simon (38/42) + Les plus grandes oeuvres de la littérature française et internationale sont au programme de cette émission. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Téléachat + Un magazine pour le consommateur qui fait découvrir son choix des promotions quotidiennes et une sélection des meilleures ventes. Découvrez les meilleurs produits à des prix imbattables. + Magazine + Mag. TV-Achat + + + Tout public + + + + Zap pol + Le "zap pol" est un programme court qui revient sur l'actualité politique des quinze derniers jours, en donnant la parole à celles et ceux qui n'ont pas forcément eu l'occasion de s'exprimer suffisamment sur notre antenne. + Divertissement + + + Tout public + + + + Téléachat + Un magazine pour le consommateur qui fait découvrir son choix des promotions quotidiennes et une sélection des meilleures ventes. Découvrez les meilleurs produits à des prix imbattables. + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Aucune description + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Aucune description + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Aucune description + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Aucune description + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Aucune description + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Un magazine pour le consommateur qui fait découvrir son choix des promotions quotidiennes et une sélection des meilleures ventes. Découvrez les meilleurs produits à des prix imbattables. + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Aucune description + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Un magazine pour le consommateur qui fait découvrir son choix des promotions quotidiennes et une sélection des meilleures ventes. Découvrez les meilleurs produits à des prix imbattables. + Magazine + Mag. TV-Achat + + + Tout public + + + + Envie d'agir + Qu'ils agissent pour la planète, pour plus d'égalité des chances ou contre les discriminations, des citoyens qui s'engagent pour un monde meilleur témoignent de leur envie d'agir. + Magazine + Mag. Société + + + Tout public + + + + JT + Un rendez-vous d'information synthétique, pour comprendre le monde et les enjeux du moment. Un décodage moderne de l'actualité en quinze minutes d'infos denses et pédagogiques. + Info-Météo + Information + + + Tout public + + + + Les animaux de la 8 + Yack poules de luxe et chat sur l'eau : bienvenue dans le Jura + Aucune description + Magazine + Mag. Nature + + 0 . 24 . + + Tout public + + + + Les animaux de la 8 + Yoga, spectacle, solidarité... toujours avec nos fidèles compagnons + Aucune description + Magazine + Mag. Nature + + 0 . 9 . + + Tout public + + + + Les animaux de la 8 + De la Côte d'Opale à la baie de Somme, les ch'tis animaux au bord de l'eau + Aucune description + Magazine + Mag. Nature + + 0 . 8 . + + Tout public + + + + Les animaux de la 8 + Girafe, rhino et super chiens ! + A l'école vétérinaire d'Alfort, Elodie Ageron suit la formation de chiens de santé, qui peuvent détecter maladie et infection. Sandrine Arcizet se rend dans les Yvelines, au zoo safari de Thoiry, où elle s'intéresse à la girafe, l'animal le plus haut du monde, et au rhinocéros. + Magazine + Mag. Nature + + 0 . 19 . + + Tout public + + + + Animaux à adopter + Baloo, un jeune malinois extrêmement craintif, va enfin pouvoir être proposé à l'adoption. Scandale, une femelle fox terrier, n'en fait qu'à sa tête. + Documentaire + Doc. Nature + + + Tout public + + + + Animaux à adopter + Saint-Pierre-du-Mont + Au refuge de Saint-Pierre-du-Mont, dans les Landes, zoom sur Nyméria, une femelle ratier de 6 mois, Caramel, un Patou très craintif, et la chatte Diamant. + Documentaire + Doc. Nature + + 3 . 0 . + + Tout public + + + + Tennis : Masters 1000 de Paris + Aucune description + Sport + tennis + + + Tout public + + + + Animaux à adopter + Saint-Pierre-du-Mont + Au refuge de Saint-Pierre-du-Mont, dans les Landes, Look est une labrador de 8 ans aveugle. Le jeune Sully pourrait intégrer la brigade cynophile. + Documentaire + Doc. Nature + + 3 . 0 . + + Tout public + + + + Animaux à adopter + Chamarande + Le refuge de Chamarande accueille de nombreux chats, et chacun peut y trouver son bonheur. Neuf tout petits chiots ont été retrouvés abandonnés dans un carton. + Documentaire + Doc. Nature + + 4 . 0 . + + Tout public + + + + Animaux à adopter + Chamarande + 16 chiens en provenance de Roumanie sont recueillis. Les refuges sur place doivent faire face à l'afflux d'animaux venus d'Ukraine. + Documentaire + Doc. Nature + + 4 . 0 . + + Tout public + + + + Off + Marc-Antoine Le Bret + Juste avant le tournage de l'émission de cinéma "Tchi tcha", alors que les caméras ne sont pas censées tourner, Laurie Cholewa et une personnalité en promotion discutent. Situations absurdes, dialogues improbables et quiproquos peuvent survenir. + Série + Série Rires + + 2 . 0 . + + Tout public + + + + L'héritier + Un accident d'avion vient de coûter la vie à un grand capitaine d'industrie français, Hugo Cordell. Son fils, Bart, jusque-là plus occupé à dilapider sa fortune aux quatre coins de la planète, abandonne ses plaisirs new-yorkais et rentre à Paris. Il se retrouve propulsé à la tête d'un vaste empire... + Film + Film Suspense + + + + -10 + + + + Ces Français + Qui nous divertissent + Qu'ils animent dans un Ephad, un camping ou à la télévision pour Cyril Féraud, trois spécialistes du divertissement sont suivis par les caméras. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + Shhh ! Ecoute ma voix + Aucune description + Magazine + Mag. Société + + + Tout public + + + + L'éphéméride + Une courte présentation de l'histoire du saint du jour qui se conclut par un dicton. + Magazine + Mag. Découverte + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Programme + Programme indéterminé + + + Tout public + + + + Enquête sous haute tension + Délinquance, excès d'alcool, violences familiales : 100 jours avec la police des Ch'tis + Pour faire face à des comportements de plus en plus violents, la police municipale de Dunkerque s'est dotée d'une brigade canine et d'un Groupe spécial d'intervention. Les policiers interviennent sur les agressions, les rixes mais également sur tous types de délits liés aux excès d'alcool. + Magazine + Mag. Société + + 0 . 0 . + + + -10 + + + + Sélection C8 + Un magazine culturel. + Magazine + Mag. Culture + + + Tout public + + + + Voyage au bout de la nuit + Florent lit Les Mémoires de Saint-Simon (39/42) + Les plus grandes oeuvres de la littérature française et internationale sont au programme de cette émission. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Voyage au bout de la nuit + Florent lit Les Mémoires de Saint-Simon (40/42) + Les plus grandes oeuvres de la littérature française et internationale sont au programme de cette émission. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Gym direct + GYM DIRECT, la plus grande salle de sport de France propose des cours de fitness tous les jours sur C8. + Magazine + Fitness + + + Tout public + + + + Gym direct + GYM DIRECT, la plus grande salle de sport de France propose des cours de fitness tous les jours sur C8. + Magazine + Fitness + + + Tout public + + + + Zap pol + Le "zap pol" est un programme court qui revient sur l'actualité politique des quinze derniers jours, en donnant la parole à celles et ceux qui n'ont pas forcément eu l'occasion de s'exprimer suffisamment sur notre antenne. + Programme + Divertissement + + + Tout public + + + + Télé-achat + Un magazine pour le consommateur qui fait découvrir son choix des promotions quotidiennes et une sélection des meilleures ventes. Découvrez les meilleurs produits à des prix imbattables. + Services + Télé-achat + + + Tout public + + + + L'éphéméride + Une courte présentation de l'histoire du saint du jour qui se conclut par un dicton. + Magazine + Découvertes + + + Tout public + + + + Chez Jordan + Jordan, le spécialiste du scoop, permet à ses invités du monde du spectacle, du cinéma, des médias ou de la politique de se livrer comme ils ne l'ont jamais fait sur leur carrière, leur vie privée, leurs succès et leurs échecs. + Magazine + Interview + + + Tout public + + + + TPMP en #TT + Les meilleures séquences de "Touche pas à mon poste !" sont à retrouver dans cette émission qui met en lumière ce qu'il ne fallait pas rater. + Divertissement + Humour + + 0 . 30 . + + Tout public + + + + TPMP week-end : deuxième partie + Images décalées, débats et fous rires rythment cette séance de rattrapage des meilleurs moments qui offre un retour tout en humour sur l'actualité marquante de la semaine. + Divertissement + Humour + + + Tout public + + + + TPMP week-end + Images décalées, débats et fous rires rythment cette séance de rattrapage des meilleurs moments qui offre un retour tout en humour sur l'actualité marquante de la semaine. + Divertissement + Humour + + + Tout public + + + + William à midi : première partie + A l'heure du déjeuner, les experts livrent infos et conseils pour vous permettre d'être mieux avertis des pièges que tout consommateur doit affronter. + Magazine + Société + + 0 . 44 . + + Tout public + + + + William à midi + Conseils pratiques et bons plans sont présentés par des experts pour faciliter la vie : santé, droits du citoyen, consommation, nutrition, famille, maison, jardin et animaux. "William à midi", c'est le rendez-vous ludique du déjeuner pour répondre aux besoins du quotidien toujours dans la bonne humeur. + Magazine + Société + + 0 . 44 . + + Tout public + + + + Inspecteur Barnaby + Jusqu'à ce que le meurtre nous sépare + Sarah et John Barnaby sont conviés au mariage de Gavin, le fils d'une amie. Sarah doit y traîner son mari, peu enthousiaste à l'idée de festivités ennuyeuses. Au cours de la soirée, la jeune épouse de Gavin, Laurel, disparaît. C'est Sarah qui découvre son corps sans vie un peu plus tard. Au même moment, la maison des parents de Gavin est cambriolée. Barnaby prend aussitôt l'affaire en main. Il se met à la recherche d'un tueur obsédé par les jeunes mariées. Or, contre toute attente, l'enquête révèle aussi une face sombre de la vie de Laurel... + Série + Policier + 19 . 4 . + + Tout public + + + + Inspecteur Barnaby + Faites entrer les clowns + Depuis l'arrivée dans la région du cirque Ferabbee's, les habitants sont terrorisés par un clown maléfique. Barnaby et Winter se rendent sur place afin de mettre fin à cette farce grotesque. L'affaire prend un tournure bien plus dramatique lorsqu'un clown abat accidentellement son partenaire en pleine représentation. Fleur découvre que le clown n'est pas l'auteur du coup de feu fatal. Le cirque et son propriétaire semblent faire l'objet d'une véritable campagne d'intimidation, d'autant plus aigue que le terrain sur lequel il est installé est l'enjeu d'un conflit entre deux frères ennemis... + Série + Policier + 19 . 5 . + + Tout public + + + + PAF + L'audiovisuel français est passé au crible par Pascale de La Tour du Pin et ses équipes qui proposent des analyses et décryptages des dernières tendances. + Magazine + Information + + 0 . 36 . + + Tout public + + + + PAF avec Baba + Les connaissances sur l'actualité des chroniqueurs réunis en plateau sont testées au cours de cette émission. + Divertissement + Jeu + + 0 . 36 . + + Tout public + + + + TPMP : première partie + Aucune description + Divertissement + Humour + + 0 . 36 . + + Tout public + + + + Touche pas à mon poste : deuxième partie + Les sujets au coeur de l'actualité alimentent les débats au cours de cette émission qui propose également des exclusivités et des surprises. + Divertissement + Humour + + 0 . 36 . + + Tout public + + + + Touche pas à mon poste ! + L'émission la plus commentée du PAF est de retour sur C8 avec Cyril Hanouna et toujours plus de deux heures de direct. De nouveaux visages, de nouvelles chroniques, et toujours plus de débats, les sujets au coeur de l'actualité, des exclusivités, des surprises et bien sûr de la Darka ! + Divertissement + Humour + + 0 . 36 . + + Tout public + + + + Commissaire Magellan + Un instant d'égarement + Jennifer, boursière dans le prestigieux établissement de Sainte-Marie, est assassinée. Pour élucider ce meurtre, le commissaire Magellan enquête dans cet univers d'excellence. Pourtant, il ne tarde pas à constater que les grandes familles, dont les enfants fréquentent cette école d'élite, se déchirent et se trompent. Les interrogatoires se succèdent pour Magellan, qui découvre l'identité de l'amant de Jennifer, de trente ans son aîné. Quant au proviseur, il ne parvient pas à supporter que le directeur ait pu ternir l'image de l'école en soutenant l'arrivée de boursiers. Tout se complique davantage lorsque Roxanne, professeur un peu trop proche de la direction, trouve la mort à son tour... + Série + Policier + + 0 . 5 . + + Tout public + + + + Commissaire Magellan + Pur sang + Pierre-Yves Montalivet, un propriétaire de haras fortuné, est retrouvé assassiné dans ses écuries. Le commissaire Magellan, aidé de Lucy Tran, son adjointe, mènent l'enquête. Ils fouillent dans le passé de la victime et comprennent que l'entourage du défunt ne lui voulait pas que du bien. Outre un concurrent floué, fermement décidé à se venger de Montalivet, Magellan découvre que l'épouse de la victime était infidèle et enceinte de son amant. Enfin, le comportement d'une jeune photographe, évoluant dans la sphère de Montalivet, attise les soupçons du commissaire. L'affaire s'annonce décidément complexe... + Série + Policier + + 0 . 3 . + + Tout public + + + + L'éphéméride + Une courte présentation de l'histoire du saint du jour qui se conclut par un dicton. + Magazine + Découvertes + + + Tout public + + + + Commissaire Magellan + Noces funèbres + Emma de Keyster est la principale héritière d'une puissante famille de notables. Lorsqu'elle disparaît après avoir été accusée de meurtre, c'est un choc pour sa famille. Cinq ans après, elle refait surface à la surprise générale. Quelques heures plus tard, son cadavre flotte dans les douves du château... + Série + Policier + + 0 . 2 . + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Programme + Programme indéterminé + + + Tout public + + + + Gym direct + GYM DIRECT, la plus grande salle de sport de France propose des cours de fitness tous les jours sur C8. + Magazine + Mag. Société + + + Tout public + + + + Gym direct + GYM DIRECT, la plus grande salle de sport de France propose des cours de fitness tous les jours sur C8. + Magazine + Mag. Société + + + Tout public + + + + Téléachat + Un magazine pour le consommateur qui fait découvrir son choix des promotions quotidiennes et une sélection des meilleures ventes. Découvrez les meilleurs produits à des prix imbattables. + Magazine + Mag. TV-Achat + + + Tout public + + + + Chez Jordan De Luxe + Jordan, le spécialiste du scoop, permet à ses invités du monde du spectacle, du cinéma, des médias ou de la politique de se livrer comme ils ne l'ont jamais fait sur leur carrière, leur vie privée, leurs succès et leurs échecs. + Magazine + + + Tout public + + + + TPMP en #TT + Les meilleures séquences de "Touche pas à mon poste !" sont à retrouver dans cette émission qui met en lumière ce qu'il ne fallait pas rater. + Divertissement + + + Tout public + + + + Touche pas à mon poste : 2ème partie + Les sujets au coeur de l'actualité alimentent les débats au cours de cette émission qui propose également des exclusivités et des surprises. + Divertissement + + + Tout public + + + + Touche pas à mon poste ! + L'émission la plus commentée du PAF est de retour sur C8 avec Cyril Hanouna et toujours plus de deux heures de direct. De nouveaux visages, de nouvelles chroniques, et toujours plus de débats, les sujets au coeur de l'actualité, des exclusivités, des surprises et bien sûr de la Darka ! + Divertissement + + + Tout public + + + + William à midi : première partie + A l'heure du déjeuner, les experts livrent infos et conseils pour vous permettre d'être mieux avertis des pièges que tout consommateur doit affronter. + Magazine + Mag. Société + + + Tout public + + + + William à midi + Conseils pratiques et bons plans sont présentés par des experts pour faciliter la vie : santé, droits du citoyen, consommation, nutrition, famille, maison, jardin et animaux. "William à midi", c'est le rendez-vous ludique du déjeuner pour répondre aux besoins du quotidien toujours dans la bonne humeur. + Magazine + Mag. Société + + + Tout public + + + + Inspecteur Barnaby + Leçons de cruauté + Debbie Moffett surgit au beau milieu d'une réunion du comité des parents d'élèves du collège privé de Midsomer. Elle menace de faire des révélations sur l'école. Quelques heures plus tard, elle est assassinée dans les caves d'affinage de la laiterie où elle travaille, écrasée par une meule de fromage... + Série + Série Suspense + + 14 . 5 . + + Tout public + + + + Inspecteur Barnaby + Les noces de sang + Marina Fellows, demoiselle d'honneur au mariage d'un couple d'aristocrates, est retrouvée morte le soir des noces. Barnaby et Jones enquêtent auprès des membres de cette riche famille, les Fitzroy. Dans le même temps, Barnaby et Joyce doivent organiser un autre mariage : celui de leur fille Cully... + Série + Série Suspense + + 10 . 0 . + + Tout public + + + + PAF + L'audiovisuel français est passé au crible par Pascale de La Tour du Pin et ses équipes qui proposent des analyses et décryptages des dernières tendances. + Magazine + Mag. Société + + + Tout public + + + + PAF avec Baba + Les connaissances sur l'actualité des chroniqueurs réunis en plateau sont testées au cours de cette émission. + Divertissement + Jeu + + + Tout public + + + + Touche pas à mon poste : 1re partie + Aucune description + Divertissement + + + Tout public + + + + Touche pas à mon poste : 2ème partie + Les sujets au coeur de l'actualité alimentent les débats au cours de cette émission qui propose également des exclusivités et des surprises. + Divertissement + + + Tout public + + + + Touche pas à mon poste ! + L'émission la plus commentée du PAF est de retour sur C8 avec Cyril Hanouna et toujours plus de deux heures de direct. De nouveaux visages, de nouvelles chroniques, et toujours plus de débats, les sujets au coeur de l'actualité, des exclusivités, des surprises et bien sûr de la Darka ! + Divertissement + + + Tout public + + + + Enquête au coeur de la fin de vie : mourir n'est pas tuer + Certains réclament l'ouverture d'un droit à l'euthanasie. Patients, médecins, philosophes, juriste et psychologues sont questionné sur ce sujet sensible. + Documentaire + Doc. Société + + + Tout public + + + + Enquête au coeur de la fin de vie : mourir n'est pas tuer - le débat + Avec ses invités, Christine Kelly prolonge le débat initié par le documentaire sur la fin de vie. Elle s'interroge sur l'accompagnement de cette période compliquée où se mêlent émotions et réflexion. Tout un chacun peut être amené à être confronté à ses douloureuses questions autour desquelles le débat est vif. + Magazine + Débat + + + Tout public + + + + Jeudi reportage + Aux côtés des pompiers, des forces de l'ordre, en ville, à la campagne... Immersion dans le quotidien des Français. + Magazine + Mag. Société + + + + -10 + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Le déclic ! + Des invités partagent le déclic qui leur a fait prendre conscience de l'urgence climatique et des conséquences que celui-ci a eu dans leur domaine d'activité mais aussi les actions qu'ils ont pu mettre en place en faveur de l'écologie. + Magazine + + + Tout public + + + + Zaoui - Garorock 2023 + Aucune description + Musique + Rock Pop + + + Tout public + + + + Gym direct + Mal au dos : Un peu de renforcement + De nouvelles personnalités invitées et toujours autant de vitalité incarnée par Sandrine Arcizet et son équipe de coachs du lundi au vendredi. + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Gym direct + Body enhance full body + De nouvelles personnalités invitées et toujours autant de vitalité incarnée par Sandrine Arcizet et son équipe de coachs du lundi au vendredi. + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Téléachat + Un magazine pour le consommateur qui fait découvrir son choix des promotions quotidiennes et une sélection des meilleures ventes. Découvrez les meilleurs produits à des prix imbattables. + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Un magazine pour le consommateur qui fait découvrir son choix des promotions quotidiennes et une sélection des meilleures ventes. Découvrez les meilleurs produits à des prix imbattables. + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Un magazine pour le consommateur qui fait découvrir son choix des promotions quotidiennes et une sélection des meilleures ventes. Découvrez les meilleurs produits à des prix imbattables. + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Un magazine pour le consommateur qui fait découvrir son choix des promotions quotidiennes et une sélection des meilleures ventes. Découvrez les meilleurs produits à des prix imbattables. + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Un magazine pour le consommateur qui fait découvrir son choix des promotions quotidiennes et une sélection des meilleures ventes. Découvrez les meilleurs produits à des prix imbattables. + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Un magazine pour le consommateur qui fait découvrir son choix des promotions quotidiennes et une sélection des meilleures ventes. Découvrez les meilleurs produits à des prix imbattables. + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Un magazine pour le consommateur qui fait découvrir son choix des promotions quotidiennes et une sélection des meilleures ventes. Découvrez les meilleurs produits à des prix imbattables. + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Un magazine pour le consommateur qui fait découvrir son choix des promotions quotidiennes et une sélection des meilleures ventes. Découvrez les meilleurs produits à des prix imbattables. + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Un magazine pour le consommateur qui fait découvrir son choix des promotions quotidiennes et une sélection des meilleures ventes. Découvrez les meilleurs produits à des prix imbattables. + Magazine + Mag. TV-Achat + + + Tout public + + + + L'éphéméride + Une courte présentation de l'histoire du saint du jour qui se conclut par un dicton. + Magazine + Mag. Découverte + + + Tout public + + + + Chez Jordan De Luxe + Jordan, le spécialiste du scoop, permet à ses invités du monde du spectacle, du cinéma, des médias ou de la politique de se livrer comme ils ne l'ont jamais fait sur leur carrière, leur vie privée, leurs succès et leurs échecs. + Magazine + + + Tout public + + + + TPMP en #TT + Les meilleures séquences de "Touche pas à mon poste !" sont à retrouver dans cette émission qui met en lumière ce qu'il ne fallait pas rater. + Divertissement + + + Tout public + + + + Touche pas à mon poste : 2ème partie + Les sujets au coeur de l'actualité alimentent les débats au cours de cette émission qui propose également des exclusivités et des surprises. + Divertissement + + + Tout public + + + + Touche pas à mon poste ! + L'émission la plus commentée du PAF est de retour sur C8 avec Cyril Hanouna et toujours plus de deux heures de direct. De nouveaux visages, de nouvelles chroniques, et toujours plus de débats, les sujets au coeur de l'actualité, des exclusivités, des surprises et bien sûr de la Darka ! + Divertissement + + + Tout public + + + + William à midi : première partie + A l'heure du déjeuner, les experts livrent infos et conseils pour vous permettre d'être mieux avertis des pièges que tout consommateur doit affronter. + Magazine + Mag. Société + + + Tout public + + + + William à midi + Conseils pratiques et bons plans sont présentés par des experts pour faciliter la vie : santé, droits du citoyen, consommation, nutrition, famille, maison, jardin et animaux. "William à midi", c'est le rendez-vous ludique du déjeuner pour répondre aux besoins du quotidien toujours dans la bonne humeur. + Magazine + Mag. Société + + + Tout public + + + + Inspecteur Barnaby + Le monte-en-l'air + Tandis qu'un cambrioleur insaisissable sème la panique à Midsomer, pénétrant même chez le chef de la police, Barnaby doit se rendre à Chettham Park, où David Ropert, auteur à succès et vieil ami de William Chettham, a été retrouvé mort. David avait l'intention d'écrire un livre sur tous ses vieux amis... + Série + Série Suspense + + 11 . 5 . + + Tout public + + + + Inspecteur Barnaby + Meurtre sur le green + Barnaby est appelé pour enquêter sur le meurtre d'un certain Alistair Kingslake. L'homme a été tué sur un parcours de golf où Cotton, le supérieur de Barnaby, a ses habitudes. Un des joueurs a aperçu l'assassin, qui portait un blouson à capuche bleue. Alors que l'enquête avance, un autre meurtre est commis... + Série + Série Suspense + + 11 . 0 . + + Tout public + + + + PAF + L'audiovisuel français est passé au crible par Pascale de La Tour du Pin et ses équipes qui proposent des analyses et décryptages des dernières tendances. + Magazine + Mag. Société + + + Tout public + + + + PAF avec Baba + Les connaissances sur l'actualité des chroniqueurs réunis en plateau sont testées au cours de cette émission. + Divertissement + Jeu + + + Tout public + + + + Touche pas à mon poste : 1re partie + Aucune description + Divertissement + + + Tout public + + + + Touche pas à mon poste : 2ème partie + Les sujets au coeur de l'actualité alimentent les débats au cours de cette émission qui propose également des exclusivités et des surprises. + Divertissement + + + Tout public + + + + Touche pas à mon poste ! + L'émission la plus commentée du PAF est de retour sur C8 avec Cyril Hanouna et toujours plus de deux heures de direct. De nouveaux visages, de nouvelles chroniques, et toujours plus de débats, les sujets au coeur de l'actualité, des exclusivités, des surprises et bien sûr de la Darka ! + Divertissement + + + Tout public + + + + Mongeville + Amicalement meurtre + Daniel Vergne, un riche entrepreneur qui a fait fortune dans la Silicon Valley, est retrouvé mort dans sa chambre d'hôtel. Revenu à Bordeaux à l'occasion d'un salon "New Tech", il venait de dîner avec ses anciens camarades de classes préparatoires, dont les parcours sont autant de success stories... + Série + Série Suspense + + 0 . 11 . + + Tout public + + + + Mongeville + Légende vivante + Professeur à l'école de danse de l'Opéra, Martin Novak s'effondre en pleine répétition, victime d'un empoisonnement. Qui a voulu tuer cette légende vivante de la danse ? Un ancien élève tombé en disgrâce ? Le directeur de l'école, jaloux de sa popularité ? Mongeville fouille le passé de la victime... + Série + Série Suspense + + 0 . 9 . + + Tout public + + + + L'éphéméride + Une courte présentation de l'histoire du saint du jour qui se conclut par un dicton. + Magazine + Mag. Découverte + + + Tout public + + + + Mongeville + Comme un battement d'ailes + Mongeville et Valentine enquêtent sur un meurtre survenu dans une réserve ornithologique. En interrogeant Béatrice Lesparre, la chercheuse qui vit dans la réserve, ils découvrent que Claire, la fille de la scientifique, a également disparu. A-t-elle été tuée elle aussi ? Est-elle la meurtrière ?... + Série + Série Suspense + + 0 . 8 . + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Gym direct + Full body + De nouvelles personnalités invitées et toujours autant de vitalité incarnée par Sandrine Arcizet et son équipe de coachs du lundi au vendredi. + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Gym direct + Pilates corps tonique + De nouvelles personnalités invitées et toujours autant de vitalité incarnée par Sandrine Arcizet et son équipe de coachs du lundi au vendredi. + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Téléachat + Un magazine pour le consommateur qui fait découvrir son choix des promotions quotidiennes et une sélection des meilleures ventes. Découvrez les meilleurs produits à des prix imbattables. + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Un magazine pour le consommateur qui fait découvrir son choix des promotions quotidiennes et une sélection des meilleures ventes. Découvrez les meilleurs produits à des prix imbattables. + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Un magazine pour le consommateur qui fait découvrir son choix des promotions quotidiennes et une sélection des meilleures ventes. Découvrez les meilleurs produits à des prix imbattables. + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Un magazine pour le consommateur qui fait découvrir son choix des promotions quotidiennes et une sélection des meilleures ventes. Découvrez les meilleurs produits à des prix imbattables. + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Un magazine pour le consommateur qui fait découvrir son choix des promotions quotidiennes et une sélection des meilleures ventes. Découvrez les meilleurs produits à des prix imbattables. + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Un magazine pour le consommateur qui fait découvrir son choix des promotions quotidiennes et une sélection des meilleures ventes. Découvrez les meilleurs produits à des prix imbattables. + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Un magazine pour le consommateur qui fait découvrir son choix des promotions quotidiennes et une sélection des meilleures ventes. Découvrez les meilleurs produits à des prix imbattables. + Magazine + Mag. TV-Achat + + + Tout public + + + + Téléachat + Un magazine pour le consommateur qui fait découvrir son choix des promotions quotidiennes et une sélection des meilleures ventes. Découvrez les meilleurs produits à des prix imbattables. + Magazine + Mag. TV-Achat + + + Tout public + + + + L'éphéméride + Une courte présentation de l'histoire du saint du jour qui se conclut par un dicton. + Magazine + Mag. Découverte + + + Tout public + + + + Chez Jordan De Luxe + Jordan, le spécialiste du scoop, permet à ses invités du monde du spectacle, du cinéma, des médias ou de la politique de se livrer comme ils ne l'ont jamais fait sur leur carrière, leur vie privée, leurs succès et leurs échecs. + Magazine + + + Tout public + + + + TPMP en #TT + Les meilleures séquences de "Touche pas à mon poste !" sont à retrouver dans cette émission qui met en lumière ce qu'il ne fallait pas rater. + Divertissement + + + Tout public + + + + Touche pas à mon poste : 2ème partie + Les sujets au coeur de l'actualité alimentent les débats au cours de cette émission qui propose également des exclusivités et des surprises. + Divertissement + + + Tout public + + + + Touche pas à mon poste ! + L'émission la plus commentée du PAF est de retour sur C8 avec Cyril Hanouna et toujours plus de deux heures de direct. De nouveaux visages, de nouvelles chroniques, et toujours plus de débats, les sujets au coeur de l'actualité, des exclusivités, des surprises et bien sûr de la Darka ! + Divertissement + + + Tout public + + + + William à midi : première partie + A l'heure du déjeuner, les experts livrent infos et conseils pour vous permettre d'être mieux avertis des pièges que tout consommateur doit affronter. + Magazine + Mag. Société + + + Tout public + + + + William à midi + Conseils pratiques et bons plans sont présentés par des experts pour faciliter la vie : santé, droits du citoyen, consommation, nutrition, famille, maison, jardin et animaux. "William à midi", c'est le rendez-vous ludique du déjeuner pour répondre aux besoins du quotidien toujours dans la bonne humeur. + Magazine + Mag. Société + + + Tout public + + + + Inspecteur Barnaby + Toiles assassines + Barnaby accompagne sa femme Joyce à une vente aux enchères, car elle souhaite acheter un tableau de Hodgson pour le compte de son association. Hélas, les enchères sont trop élevées. C'est alors que la vendeuse, Felicity Law, est assassinée. Barnaby s'intéresse au tableau et découvre qu'il s'agit d'un faux... + Série + Série Suspense + + 11 . 1 . + + + -10 + + + + Inspecteur Barnaby + La guerre des espions + Alors qu'il arbitre un match de cricket, Barnaby a la surprise de retrouver Brenda, une ancienne collègue des services secrets, qui lui demande une faveur : vérifier les systèmes de sécurité de la propriété Allenby, où un agent important est attendu. Barnaby comprend qu'un assassin rôde dans les environs... + Série + Série Suspense + + 11 . 2 . + + + -10 + + + + PAF + L'audiovisuel français est passé au crible par Pascale de La Tour du Pin et ses équipes qui proposent des analyses et décryptages des dernières tendances. + Magazine + Mag. Société + + + Tout public + + + + PAF avec Baba + Les connaissances sur l'actualité des chroniqueurs réunis en plateau sont testées au cours de cette émission. + Divertissement + Jeu + + + Tout public + + + + Touche pas à mon poste : 1re partie + Aucune description + Divertissement + + + Tout public + + + + Touche pas à mon poste : 2ème partie + Les sujets au coeur de l'actualité alimentent les débats au cours de cette émission qui propose également des exclusivités et des surprises. + Divertissement + + + Tout public + + + + Touche pas à mon poste ! + L'émission la plus commentée du PAF est de retour sur C8 avec Cyril Hanouna et toujours plus de deux heures de direct. De nouveaux visages, de nouvelles chroniques, et toujours plus de débats, les sujets au coeur de l'actualité, des exclusivités, des surprises et bien sûr de la Darka ! + Divertissement + + + Tout public + + + + Y'a que la vérité qui compte + En plateau, Laurent Fontaine et Pascal Bataille reçoivent des personnes qui effectuent une démarche qui leur tient à coeur. Que ce soit une demande de pardon, des retrouvailles tant attendues ou un amour à déclarer ou un hommage à rendre, c'est un moment important pour ces hommes et ces femmes. + Magazine + Mag. Société + + + Tout public + + + + Y'a que la vérité qui compte + De nouveaux participants et des histoires de vie incroyables ont rendez-vous sur le plateau de "Y'a que la vérité qui compte". Laurent Fontaine et Pascal Bataille recueillent des témoignages émouvants ou drôles de personnes venues pour des retrouvailles, des hommages, des demandes ou des excuses. + Magazine + Mag. Société + + + Tout public + + + + L'éphéméride + Une courte présentation de l'histoire du saint du jour qui se conclut par un dicton. + Magazine + Mag. Découverte + + + Tout public + + + + Y'a que la vérité qui compte + En plateau, Laurent Fontaine et Pascal Bataille reçoivent des personnes qui effectuent une démarche qui leur tient à coeur. Que ce soit une demande de pardon, des retrouvailles tant attendues ou un amour à déclarer ou un hommage à rendre, c'est un moment important pour ces hommes et ces femmes. + Magazine + Mag. Société + + + Tout public + + + + Lorenzo - Garorock 2023 + Aucune description + Musique + Rock Pop + + + Tout public + + + + L'hebdo de l'éco + Raphaël Chevrier (MaiaSpace) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Mag. Économie + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + La Matinale Week-End + La Matinale Week-End + Anthony Favalli vous informe et reçoit des invités tous les samedis et dimanches matin dans #LaMatinaleWE + Info-Météo + Information + + 0 . 92 . + + Tout public + + + + Météo 9h + Aucune description + Info-Météo + Information + + + Tout public + + + + L'Heure des Pros Week-End + L'Heure des Pros Week-End + Eliot Deval et ses invités débattent des grands thèmes de l'actualité dans #HDProsWE à 9h le samedi et le dimanche + Magazine + Débat + + 0 . 18 . + + Tout public + + + + Météo 9h + Aucune description + Info-Météo + Information + + + Tout public + + + + Bonjour Dr Milhau + Peut-on booster notre immunité ? + Les conseils de notre docteur Brigitte Milhau sur les sujets santé qui vous concernent dans #BonjourDrMilhau. + Magazine + Mag. Société + + 0 . 8 . + + Tout public + + + + Météo 9h + Aucune description + Info-Météo + Information + + + Tout public + + + + Les belles figures de l'histoire + Sainte Marguerite-Marie Alacoque + Retour chronologique sur les grands personnages de l'histoire avec Aymeric Pourbaix et ses invités dans #LBFDLH. + Magazine + Mag. Histoire + + 0 . 97 . + + Tout public + + + + Les belles figures de l'histoire + Saint François + Retour chronologique sur les grands personnages de l'histoire avec Aymeric Pourbaix et ses invités dans #LBFDLH. + Magazine + Mag. Histoire + + 0 . 4 . + + Tout public + + + + Météo 9h + Aucune description + Info-Météo + Information + + + Tout public + + + + Midi News Week-End + Midi News Week-End + Thierry Cabannes reçoit les acteurs de l'info du jour, des experts et nos journalistes dans #MidiNewsWE + Magazine + Mag. Société + + 0 . 103 . + + Tout public + + + + Météo + Prévisions pour les prochains jours + Les prévisions météo pour les prochains jours + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + 180 Minutes Info Week-End + 180 Minutes Info Week-End + Les invités de Lionel Rosso débattent de l'actualité dans #180minutesInfoWE le samedi et le dimanche + Info-Météo + Information + + 0 . 18 . + + Tout public + + + + Météo du soir + Les prévisions météo pour le lendemain + Info-Météo + Information + + + Tout public + + + + Punchline Week-End + Punchline Week-End + Les invités d'Olivier de Keranflec'h débattent de l'actualité dans #PunchlineWE du vendredi au dimanche. + Magazine + Mag. Politique + + 0 . 103 . + + Tout public + + + + Météo du soir + Les prévisions météo pour le lendemain + Info-Météo + Information + + + Tout public + + + + Face à Bock-Côté + Mathieu Bock-Côté propose un décryptage de l'actualité mais aussi une analyse des enjeux fondamentaux qui secouent les sociétés occidentales des deux côtés de l'Atlantique. + Magazine + Mag. Société + + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + L'Heure des Pros 2 Week-End + L'Heure des Pros 2 Week-End + Eliot Deval et ses invités débattent des grands thèmes de l'actualité dans #HDPros2WE à 20h du vendredi au dimanche + Magazine + Mag. Société + + 0 . 28 . + + Tout public + + + + Météo du soir + Les prévisions météo pour le lendemain + Info-Météo + Information + + + Tout public + + + + Face à Philippe de Villiers + Face à Philippe de Villiers + Philippe de Villiers passe en revue l'actualité de la semaine dans #FaceAPhilippedeVilliers. + Info-Météo + Information + + 0 . 7 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Soir Info Week-End + Soir Info Week-End + Ce magazine d'info revient sur l'actualité politique, économique et culturelle des dernières 24 heures. + Info-Météo + Information + + 0 . 53 . + + Tout public + + + + La sélection CNEWS + Bienvenue dans La Sélection CNEWS, l'agenda des événements du moment à ne pas manquer : culture, cinéma, théâtre, spectacle, exposition, festival, concert… + Divertissement + + + Tout public + + + + Météo du soir + Les prévisions météo pour le lendemain + Info-Météo + Information + + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'hebdo de l'éco + Hassad Mouheb ( Fed Experts ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Mag. Économie + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + Météo du soir + Les prévisions météo pour le lendemain + Info-Météo + Information + + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'hebdo de l'éco + Hassad Mouheb ( Fed Experts ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Mag. Économie + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + La sélection CNEWS + Bienvenue dans La Sélection CNEWS, l'agenda des événements du moment à ne pas manquer : culture, cinéma, théâtre, spectacle, exposition, festival, concert… + Divertissement + + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'hebdo de l'éco + Hassad Mouheb ( Fed Experts ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Mag. Économie + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + La sélection CNEWS + Bienvenue dans La Sélection CNEWS, l'agenda des événements du moment à ne pas manquer : culture, cinéma, théâtre, spectacle, exposition, festival, concert… + Divertissement + + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'hebdo de l'éco + Hassad Mouheb ( Fed Experts ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Mag. Économie + + 0 . 0 . + + Tout public + + + + La sélection CNEWS + Bienvenue dans La Sélection CNEWS, l'agenda des événements du moment à ne pas manquer : culture, cinéma, théâtre, spectacle, exposition, festival, concert… + Divertissement + + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + La sélection CNEWS + Bienvenue dans La Sélection CNEWS, l'agenda des événements du moment à ne pas manquer : culture, cinéma, théâtre, spectacle, exposition, festival, concert… + Divertissement + + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'hebdo de l'éco + Hassad Mouheb ( Fed Experts ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Mag. Économie + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + La sélection CNEWS + Bienvenue dans La Sélection CNEWS, l'agenda des événements du moment à ne pas manquer : culture, cinéma, théâtre, spectacle, exposition, festival, concert… + Divertissement + + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'hebdo de l'éco + Hassad Mouheb ( Fed Experts ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Mag. Économie + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + La Matinale Week-End + La Matinale Week-End + Anthony Favalli vous informe et reçoit des invités tous les samedis et dimanches matin dans #LaMatinaleWE + Info-Météo + Information + + 0 . 93 . + + Tout public + + + + Météo 9h + Aucune description + Info-Météo + Information + + + Tout public + + + + L'Heure des Pros Week-End + L'Heure des Pros Week-End + Eliot Deval et ses invités débattent des grands thèmes de l'actualité dans #HDProsWE à 9h le samedi et le dimanche + Magazine + Débat + + 0 . 19 . + + Tout public + + + + Météo 9h + Aucune description + Info-Météo + Information + + + Tout public + + + + Journal + Les actualités et les informations du jour mis en directe. + Info-Météo + Information + + + Tout public + + + + Le grand rendez-vous + Georges Bensoussan et Thierry de Montbrial + Une heure d'entretien incontournable en partenariat avec CNEWS et Les Echos. Une personnalité politique, un dirigeant économique ou un intellectuel revient sur les grands thèmes de l'actualité et répond aux questions sans détour de Sonia Mabrouk pour apporter des réponses concrètes aux Français. + Magazine + Mag. Politique + + 0 . 9 . + + Tout public + + + + Météo 9h + Aucune description + Info-Météo + Information + + + Tout public + + + + Midi News Week-End + Midi News Week-End + Thierry Cabannes reçoit les acteurs de l'info du jour, des experts et nos journalistes dans #MidiNewsWE + Magazine + Mag. Société + + 0 . 104 . + + Tout public + + + + Météo + Suivez le bulletin météorologique pour découvrir quel temps il fera en France durant les jours à venir. + Info-Météo + Information + + + Tout public + + + + En quête d'esprit + Aymeric Pourbaix et ses invités abordent l'actualité d'un point de vue spirituel et philosophique dans #EQE. + Magazine + Mag. Société + + + Tout public + + + + Météo + Prévisions pour les prochains jours + Les prévisions météo pour les prochains jours + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + 180 Minutes Info Week-End + 180 Minutes Info Week-End + Les invités de Lionel Rosso débattent de l'actualité dans #180minutesInfoWE le samedi et le dimanche + Info-Météo + Information + + 0 . 19 . + + Tout public + + + + Météo du soir + Les prévisions météo pour le lendemain + Info-Météo + Information + + + Tout public + + + + Punchline Week-End + Punchline Week-End + Les invités d'Olivier de Keranflec'h débattent de l'actualité dans #PunchlineWE du vendredi au dimanche. + Magazine + Mag. Politique + + 0 . 104 . + + Tout public + + + + Météo du soir + Les prévisions météo pour le lendemain + Info-Météo + Information + + + Tout public + + + + Face à Face + Face à Face + Eliot Deval reçoit Gilles-William Goldnadel et Julien Dray, deux éditorialistes aux idées diamétralement opposées, dans #FaceaFace le dimanche à 19h. + Magazine + Débat + + 0 . 6 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + L'Heure des Pros 2 Week-End + L'Heure des Pros 2 Week-End + Eliot Deval et ses invités débattent des grands thèmes de l'actualité dans #HDPros2WE à 20h du vendredi au dimanche + Magazine + Mag. Société + + 0 . 29 . + + Tout public + + + + Météo du soir + Les prévisions météo pour le lendemain + Info-Météo + Information + + + Tout public + + + + En quête d'esprit + Aymeric Pourbaix et ses invités abordent l'actualité d'un point de vue spirituel et philosophique dans #EQE. + Magazine + Mag. Société + + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Les visiteurs du soir + Les visiteurs du soir + Frédéric Taddeï et ses invités débattent des grandes questions du XXIe siècle dans les #VisiteursDuSoir. + Magazine + Mag. Politique + + 0 . 9 . + + Tout public + + + + Météo du soir + Les prévisions météo pour le lendemain + Info-Météo + Information + + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'hebdo de l'éco + Vincent de Mauny ( Vergnet ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Mag. Économie + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + Météo du soir + Les prévisions météo pour le lendemain + Info-Météo + Information + + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'hebdo de l'éco + Hassad Mouheb ( Fed Experts ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Mag. Économie + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + La sélection CNEWS + Bienvenue dans La Sélection CNEWS, l'agenda des événements du moment à ne pas manquer : culture, cinéma, théâtre, spectacle, exposition, festival, concert… + Divertissement + + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'hebdo de l'éco + Vincent de Mauny ( Vergnet ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Mag. Économie + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + La sélection CNEWS + Bienvenue dans La Sélection CNEWS, l'agenda des événements du moment à ne pas manquer : culture, cinéma, théâtre, spectacle, exposition, festival, concert… + Divertissement + + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'hebdo de l'éco + Vincent de Mauny ( Vergnet ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Mag. Économie + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + La sélection CNEWS + Bienvenue dans La Sélection CNEWS, l'agenda des événements du moment à ne pas manquer : culture, cinéma, théâtre, spectacle, exposition, festival, concert… + Divertissement + + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'hebdo de l'éco + Vincent de Mauny ( Vergnet ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Mag. Économie + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + La sélection CNEWS + Bienvenue dans La Sélection CNEWS, l'agenda des événements du moment à ne pas manquer : culture, cinéma, théâtre, spectacle, exposition, festival, concert… + Divertissement + + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + Edition de la nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Information + Journal + + 0 . 69 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Services + Météo + + + Tout public + + + + Edition de la nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Information + Journal + + 0 . 69 . + + Tout public + + + + La matinale + La Matinale + Tous les matins, Romain Desarbres, ses chroniqueurs et ses invités vous informent dans #LaMatinale de 6h à 9h du lundi au vendredi + Information + Journal + + 0 . 155 . + + Tout public + + + + Météo + Prévisions pour la journée + Les prévisions météo pour la journée + Services + Météo + + 0 . 50 . + + Tout public + + + + La matinale + La Matinale + Tous les matins, Romain Desarbres, ses chroniqueurs et ses invités vous informent dans #LaMatinale de 6h à 9h du lundi au vendredi + Information + Journal + + 0 . 240 . + + Tout public + + + + Météo 9h + Aucune description + Services + Météo + + 0 . 70 . + + Tout public + + + + L'heure des pros + L'Heure des Pros + Pascal Praud et ses invités débattent des grands thèmes de l'actualité dans #HDPros de 9h à 10h30 du lundi au vendredi. + Magazine + Information + + 0 . 175 . + + Tout public + + + + Morandini Live + Morandini Live + Jean-Marc Morandini et ses chroniqueurs décryptent l'actualité des médias dans #MorandiniLive de 10h30 à 12h du lundi au vendredi + Magazine + Information + + 0 . 175 . + + Tout public + + + + Météo 9h + Aucune description + Services + Météo + + 0 . 70 . + + Tout public + + + + Midi News + Sonia Mabrouk reçoit les acteurs de l'info du jour, des experts et nos journalistes dans #MidiNews. + Magazine + Information + + 0 . 165 . + + Tout public + + + + Météo + Prévisions pour les prochains jours + Les prévisions météo pour les prochains jours + Services + Météo + + + Tout public + + + + 180 Minutes info + Les invités de Nelly Daynac débattent de l'actualité dans #180minutesInfo du lundi au vendredi + Information + Journal + + 0 . 50 . + + Tout public + + + + Météo du soir + Les prévisions météo pour le lendemain + Services + Météo + + + Tout public + + + + Punchline + Punchline + Les invités de Laurence Ferrari débattent de l'actualité dans #Punchline du lundi au jeudi de 17h à 19h. + Information + Politique + + 0 . 145 . + + Tout public + + + + Face à l'info + Face à l'Info + Christine Kelly et ses chroniqueurs débattent de l'actualité dans #Facealinfo. + Magazine + Information + 0 . 140 . + + Tout public + + + + L'heure des Pros 2 + L'Heure des Pros 2 + Les invités de #HDPros2 débattent des grands thèmes de l'actualité. Présenté par Pascal Praud du lundi au jeudi et Julien Pasquet le vendredi. + Magazine + Information + + 0 . 40 . + + Tout public + + + + Le meilleur de l'info + Olivier Benkemoun revient sur la journée d'infos et de débats traités sur l'antenne de CNEWS dans #lemeilleurdelinfo + Magazine + Information + + 0 . 40 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Services + Météo + + + Tout public + + + + Soir Info + Soir Info + Julien Pasquet et ses invités débattent des grands thèmes de l'actualité de la journée dans l'émission Soir info. + Information + Journal + + 0 . 205 . + + Tout public + + + + La sélection + Bienvenue dans La Sélection CNEWS, l'agenda des événements du moment à ne pas manquer : culture, cinéma, théâtre, spectacle, exposition, festival, concert… + Programme + Divertissement + + + Tout public + + + + Météo du soir + Les prévisions météo pour le lendemain + Services + Météo + + + Tout public + + + + Edition de la nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Information + Journal + + 0 . 69 . + + Tout public + + + + L'heure des livres + Jean-Félix de La Ville Baugé + Anne Fulda vous présente chaque jour l'actualité littéraire en recevant un invité dans #HDLivres. + Magazine + Culture + + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Services + Météo + + + Tout public + + + + Edition de la nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Information + Journal + + 0 . 69 . + + Tout public + + + + Météo du soir + Les prévisions météo pour le lendemain + Services + Météo + + + Tout public + + + + Edition de la nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Information + Journal + + 0 . 69 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Services + Météo + + + Tout public + + + + Edition de la nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Information + Journal + + 0 . 69 . + + Tout public + + + + L'hebdo de l'éco + Hassad Mouheb ( Fed Experts ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Information + + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Services + Météo + + + Tout public + + + + Edition de la nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Information + Journal + + 0 . 69 . + + Tout public + + + + L'heure des livres + Jean-Félix de La Ville Baugé + Anne Fulda vous présente chaque jour l'actualité littéraire en recevant un invité dans #HDLivres. + Magazine + Culture + + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Services + Météo + + + Tout public + + + + Edition de la nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Information + Journal + + 0 . 69 . + + Tout public + + + + L'hebdo de l'éco + Vincent de Mauny ( Vergnet ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Information + + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Services + Météo + + + Tout public + + + + Edition de la nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Information + Journal + + 0 . 69 . + + Tout public + + + + L'hebdo de l'éco + Hassad Mouheb ( Fed Experts ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Information + + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Services + Météo + + + Tout public + + + + Edition de la nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Information + Journal + + 0 . 69 . + + Tout public + + + + La sélection + Bienvenue dans La Sélection CNEWS, l'agenda des événements du moment à ne pas manquer : culture, cinéma, théâtre, spectacle, exposition, festival, concert… + Programme + Divertissement + + + Tout public + + + + L'heure des livres + Jean-Félix de La Ville Baugé + Anne Fulda vous présente chaque jour l'actualité littéraire en recevant un invité dans #HDLivres. + Magazine + Culture + + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Services + Météo + + + Tout public + + + + Edition de la nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Information + Journal + + 0 . 69 . + + Tout public + + + + L'hebdo de l'éco + Vincent de Mauny ( Vergnet ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Information + + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Services + Météo + + + Tout public + + + + Edition de la nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Information + Journal + + 0 . 69 . + + Tout public + + + + L'hebdo de l'éco + Hassad Mouheb ( Fed Experts ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Information + + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Services + Météo + + + Tout public + + + + Edition de la nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Information + Journal + + 0 . 71 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + La Matinale + La Matinale + Tous les matins, Romain Desarbres, ses chroniqueurs et ses invités vous informent dans #LaMatinale de 6h à 9h du lundi au vendredi + Info-Météo + Information + + 0 . 156 . + + Tout public + + + + Météo + Prévisions pour la journée + Les prévisions météo pour la journée + Info-Météo + Information + + 0 . 51 . + + Tout public + + + + La Matinale + La Matinale + Tous les matins, Romain Desarbres, ses chroniqueurs et ses invités vous informent dans #LaMatinale de 6h à 9h du lundi au vendredi + Info-Météo + Information + + 0 . 241 . + + Tout public + + + + Météo 9h + Aucune description + Info-Météo + Information + + + Tout public + + + + L'Heure des Pros + L'Heure des Pros + Pascal Praud et ses invités débattent des grands thèmes de l'actualité dans #HDPros de 9h à 10h30 du lundi au vendredi. + Magazine + Mag. Société + + 0 . 176 . + + Tout public + + + + Morandini Live + Morandini Live + Jean-Marc Morandini et ses chroniqueurs décryptent l'actualité des médias dans #MorandiniLive de 10h30 à 12h du lundi au vendredi + Info-Météo + Information + + 0 . 176 . + + Tout public + + + + Météo 9h + Aucune description + Info-Météo + Information + + + Tout public + + + + Midi News + Sonia Mabrouk reçoit les acteurs de l'info du jour, des experts et nos journalistes dans #MidiNews. + Magazine + Mag. Société + + + Tout public + + + + Météo + Prévisions pour les prochains jours + Les prévisions météo pour les prochains jours + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + 180 Minutes info + Les invités de Nelly Daynac débattent de l'actualité dans #180minutesInfo du lundi au vendredi + Info-Météo + Information + + + Tout public + + + + Météo du soir + Les prévisions météo pour le lendemain + Info-Météo + Information + + + Tout public + + + + Punchline + Punchline + Les invités de Laurence Ferrari débattent de l'actualité dans #Punchline du lundi au jeudi de 17h à 19h. + Magazine + Mag. Politique + + 0 . 146 . + + Tout public + + + + Face à l'Info + Face à l'Info + Christine Kelly et ses chroniqueurs débattent de l'actualité dans #Facealinfo. + Magazine + Mag. Société + + 0 . 141 . + + Tout public + + + + L'Heure des Pros 2 + L'Heure des Pros 2 + Les invités de #HDPros2 débattent des grands thèmes de l'actualité. Présenté par Pascal Praud du lundi au jeudi et Julien Pasquet le vendredi. + Magazine + Mag. Société + + 0 . 41 . + + Tout public + + + + Le meilleur de l'info + Olivier Benkemoun revient sur la journée d'infos et de débats traités sur l'antenne de CNEWS dans #lemeilleurdelinfo + Info-Météo + Information + + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Soir Info + Soir Info + Julien Pasquet et ses invités débattent des grands thèmes de l'actualité de la journée dans l'émission Soir info. + Info-Météo + Information + + 0 . 206 . + + Tout public + + + + La sélection CNEWS + Bienvenue dans La Sélection CNEWS, l'agenda des événements du moment à ne pas manquer : culture, cinéma, théâtre, spectacle, exposition, festival, concert… + Divertissement + + + Tout public + + + + Météo du soir + Les prévisions météo pour le lendemain + Info-Météo + Information + + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'heure des livres + Sophie Galabru + Anne Fulda vous présente chaque jour l'actualité littéraire en recevant un invité dans #HDLivres. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + Météo du soir + Les prévisions météo pour le lendemain + Info-Météo + Information + + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'hebdo de l'éco + Vincent de Mauny ( Vergnet ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Mag. Économie + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'heure des livres + Sophie Galabru + Anne Fulda vous présente chaque jour l'actualité littéraire en recevant un invité dans #HDLivres. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'hebdo de l'éco + Hassad Mouheb ( Fed Experts ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Mag. Économie + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'hebdo de l'éco + Vincent de Mauny ( Vergnet ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Mag. Économie + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + La sélection CNEWS + Bienvenue dans La Sélection CNEWS, l'agenda des événements du moment à ne pas manquer : culture, cinéma, théâtre, spectacle, exposition, festival, concert… + Divertissement + + + Tout public + + + + L'heure des livres + Sophie Galabru + Anne Fulda vous présente chaque jour l'actualité littéraire en recevant un invité dans #HDLivres. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'hebdo de l'éco + Hassad Mouheb ( Fed Experts ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Mag. Économie + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'hebdo de l'éco + Vincent de Mauny ( Vergnet ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Mag. Économie + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + La Matinale + La Matinale + Tous les matins, Romain Desarbres, ses chroniqueurs et ses invités vous informent dans #LaMatinale de 6h à 9h du lundi au vendredi + Info-Météo + Information + + 0 . 157 . + + Tout public + + + + Météo + Prévisions pour la journée + Les prévisions météo pour la journée + Info-Météo + Information + + 0 . 52 . + + Tout public + + + + La Matinale + La Matinale + Tous les matins, Romain Desarbres, ses chroniqueurs et ses invités vous informent dans #LaMatinale de 6h à 9h du lundi au vendredi + Info-Météo + Information + + 0 . 242 . + + Tout public + + + + Météo 9h + Aucune description + Info-Météo + Information + + + Tout public + + + + L'Heure des Pros + L'Heure des Pros + Pascal Praud et ses invités débattent des grands thèmes de l'actualité dans #HDPros de 9h à 10h30 du lundi au vendredi. + Magazine + Mag. Société + + 0 . 177 . + + Tout public + + + + Morandini Live + Morandini Live + Jean-Marc Morandini et ses chroniqueurs décryptent l'actualité des médias dans #MorandiniLive de 10h30 à 12h du lundi au vendredi + Info-Météo + Information + + 0 . 177 . + + Tout public + + + + Météo 9h + Aucune description + Info-Météo + Information + + + Tout public + + + + Midi News + Sonia Mabrouk reçoit les acteurs de l'info du jour, des experts et nos journalistes dans #MidiNews. + Magazine + Mag. Société + + + Tout public + + + + Météo + Prévisions pour les prochains jours + Les prévisions météo pour les prochains jours + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + 180 Minutes info + Les invités de Nelly Daynac débattent de l'actualité dans #180minutesInfo du lundi au vendredi + Info-Météo + Information + + + Tout public + + + + Météo du soir + Les prévisions météo pour le lendemain + Info-Météo + Information + + + Tout public + + + + Punchline + Punchline + Les invités de Laurence Ferrari débattent de l'actualité dans #Punchline du lundi au jeudi de 17h à 19h. + Magazine + Mag. Politique + + 0 . 147 . + + Tout public + + + + Face à l'Info + Face à l'Info + Christine Kelly et ses chroniqueurs débattent de l'actualité dans #Facealinfo. + Magazine + Mag. Société + + 0 . 142 . + + Tout public + + + + L'Heure des Pros 2 + L'Heure des Pros 2 + Les invités de #HDPros2 débattent des grands thèmes de l'actualité. Présenté par Pascal Praud du lundi au jeudi et Julien Pasquet le vendredi. + Magazine + Mag. Société + + 0 . 42 . + + Tout public + + + + Le meilleur de l'info + Olivier Benkemoun revient sur la journée d'infos et de débats traités sur l'antenne de CNEWS dans #lemeilleurdelinfo + Info-Météo + Information + + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Soir Info + Soir Info + Julien Pasquet et ses invités débattent des grands thèmes de l'actualité de la journée dans l'émission Soir info. + Info-Météo + Information + + 0 . 207 . + + Tout public + + + + La sélection CNEWS + Bienvenue dans La Sélection CNEWS, l'agenda des événements du moment à ne pas manquer : culture, cinéma, théâtre, spectacle, exposition, festival, concert… + Divertissement + + + Tout public + + + + Météo du soir + Les prévisions météo pour le lendemain + Info-Météo + Information + + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'heure des livres + Florent Barraco + Anne Fulda vous présente chaque jour l'actualité littéraire en recevant un invité dans #HDLivres. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + Météo du soir + Les prévisions météo pour le lendemain + Info-Météo + Information + + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'hebdo de l'éco + Hassad Mouheb ( Fed Experts ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Mag. Économie + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'heure des livres + Florent Barraco + Anne Fulda vous présente chaque jour l'actualité littéraire en recevant un invité dans #HDLivres. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'hebdo de l'éco + Vincent de Mauny ( Vergnet ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Mag. Économie + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'hebdo de l'éco + Hassad Mouheb ( Fed Experts ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Mag. Économie + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + La sélection CNEWS + Bienvenue dans La Sélection CNEWS, l'agenda des événements du moment à ne pas manquer : culture, cinéma, théâtre, spectacle, exposition, festival, concert… + Divertissement + + + Tout public + + + + L'heure des livres + Florent Barraco + Anne Fulda vous présente chaque jour l'actualité littéraire en recevant un invité dans #HDLivres. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'hebdo de l'éco + Vincent de Mauny ( Vergnet ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Mag. Économie + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'hebdo de l'éco + Hassad Mouheb ( Fed Experts ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Mag. Économie + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + La Matinale + La Matinale + Tous les matins, Romain Desarbres, ses chroniqueurs et ses invités vous informent dans #LaMatinale de 6h à 9h du lundi au vendredi + Info-Météo + Information + + 0 . 158 . + + Tout public + + + + Météo + Prévisions pour la journée + Les prévisions météo pour la journée + Info-Météo + Information + + 0 . 53 . + + Tout public + + + + La Matinale + La Matinale + Tous les matins, Romain Desarbres, ses chroniqueurs et ses invités vous informent dans #LaMatinale de 6h à 9h du lundi au vendredi + Info-Météo + Information + + 0 . 243 . + + Tout public + + + + Météo 9h + Aucune description + Info-Météo + Information + + + Tout public + + + + L'Heure des Pros + L'Heure des Pros + Pascal Praud et ses invités débattent des grands thèmes de l'actualité dans #HDPros de 9h à 10h30 du lundi au vendredi. + Magazine + Mag. Société + + 0 . 178 . + + Tout public + + + + Morandini Live + Morandini Live + Jean-Marc Morandini et ses chroniqueurs décryptent l'actualité des médias dans #MorandiniLive de 10h30 à 12h du lundi au vendredi + Info-Météo + Information + + 0 . 178 . + + Tout public + + + + Météo 9h + Aucune description + Info-Météo + Information + + + Tout public + + + + Midi News + Sonia Mabrouk reçoit les acteurs de l'info du jour, des experts et nos journalistes dans #MidiNews. + Magazine + Mag. Société + + + Tout public + + + + Météo + Prévisions pour les prochains jours + Les prévisions météo pour les prochains jours + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + 180 Minutes info + Les invités de Nelly Daynac débattent de l'actualité dans #180minutesInfo du lundi au vendredi + Info-Météo + Information + + + Tout public + + + + Météo du soir + Les prévisions météo pour le lendemain + Info-Météo + Information + + + Tout public + + + + Punchline + Punchline + Les invités de Laurence Ferrari débattent de l'actualité dans #Punchline du lundi au jeudi de 17h à 19h. + Magazine + Mag. Politique + + 0 . 148 . + + Tout public + + + + Face à l'Info + Face à l'Info + Christine Kelly et ses chroniqueurs débattent de l'actualité dans #Facealinfo. + Magazine + Mag. Société + + 0 . 143 . + + Tout public + + + + L'Heure des Pros 2 + L'Heure des Pros 2 + Les invités de #HDPros2 débattent des grands thèmes de l'actualité. Présenté par Pascal Praud du lundi au jeudi et Julien Pasquet le vendredi. + Magazine + Mag. Société + + 0 . 43 . + + Tout public + + + + Le meilleur de l'info + Olivier Benkemoun revient sur la journée d'infos et de débats traités sur l'antenne de CNEWS dans #lemeilleurdelinfo + Info-Météo + Information + + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Soir Info + Soir Info + Julien Pasquet et ses invités débattent des grands thèmes de l'actualité de la journée dans l'émission Soir info. + Info-Météo + Information + + 0 . 208 . + + Tout public + + + + La sélection CNEWS + Bienvenue dans La Sélection CNEWS, l'agenda des événements du moment à ne pas manquer : culture, cinéma, théâtre, spectacle, exposition, festival, concert… + Divertissement + + + Tout public + + + + Météo du soir + Les prévisions météo pour le lendemain + Info-Météo + Information + + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'heure des livres + Joséphine Tassy + Anne Fulda vous présente chaque jour l'actualité littéraire en recevant un invité dans #HDLivres. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + Météo du soir + Les prévisions météo pour le lendemain + Info-Météo + Information + + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'hebdo de l'éco + Vincent de Mauny ( Vergnet ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Mag. Économie + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'heure des livres + Joséphine Tassy + Anne Fulda vous présente chaque jour l'actualité littéraire en recevant un invité dans #HDLivres. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'hebdo de l'éco + Hassad Mouheb ( Fed Experts ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Mag. Économie + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'hebdo de l'éco + Vincent de Mauny ( Vergnet ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Mag. Économie + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + La sélection CNEWS + Bienvenue dans La Sélection CNEWS, l'agenda des événements du moment à ne pas manquer : culture, cinéma, théâtre, spectacle, exposition, festival, concert… + Divertissement + + + Tout public + + + + L'heure des livres + Joséphine Tassy + Anne Fulda vous présente chaque jour l'actualité littéraire en recevant un invité dans #HDLivres. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'hebdo de l'éco + Hassad Mouheb ( Fed Experts ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Mag. Économie + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + L'hebdo de l'éco + Vincent de Mauny ( Vergnet ) + Eric de Riedmatten reçoit chaque week-end un invité dans #LHebdoDeLEco pour approfondir un sujet économique. + Magazine + Mag. Économie + + 0 . 0 . + + Tout public + + + + Météo + Prévisions pour le lendemain + Les prévisions météo pour le lendemain + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Édition de la Nuit + Un journal télévisé complet qui revient en détails sur toute l'actualité et les faits marquants de la journée + Info-Météo + Information + + + Tout public + + + + Top Clip + Dance, pop-rock, R'n'b, hip-hop, rap : «Top clip» offre une programmation éclectique des meilleurs clips du moment. + Musique + Clips + + + Tout public + + + + Top Clip + Dance, pop-rock, R'n'b, hip-hop, rap : «Top clip» offre une programmation éclectique des meilleurs clips du moment. + Musique + Clips + + + Tout public + + + + Top France + Les 15 clips les plus en vogue du moment, avec les artistes français qui se sont illustrés dans les différents classements de titres ou d'albums. + Musique + Clips + + + Tout public + + + + Top Cstar Week/end + Aucune description + Musique + Clips + + + Tout public + + + + Top Actu + Rendez-vous avec l'agenda des sorties et des concerts du moment ou à venir. + Musique + Clips + + + Tout public + + + + Top Albums + Le classement des meilleurs albums du moment, de Nekfeu à Florent Pagny, de PNL à Angèle, illustré par des clips toujours hauts en couleur. + Musique + Clips + + + Tout public + + + + Top France + Les 15 clips les plus en vogue du moment, avec les artistes français qui se sont illustrés dans les différents classements de titres ou d'albums. + Musique + Clips + + + Tout public + + + + Top Clip + Dance, pop-rock, R'n'b, hip-hop, rap : «Top clip» offre une programmation éclectique des meilleurs clips du moment. + Musique + Clips + + + Tout public + + + + Douanes sous haute surveillance + Les chiens détecteurs de drogue réagissent en sentant le sac d'un jeune homme. Le passé criminel d'un passager néo-zélandais inquiète les agents de sécurité. + Documentaire + Doc. Société + + + + -10 + + + + Douanes sous haute surveillance + Le quotidien peu banal des douaniers chargés de protéger les frontières et d'arrêter les trafiquants en tout genre ou les personnes suspectées de terrorisme. + Documentaire + Doc. Société + + + + -10 + + + + Douanes sous haute surveillance + Le quotidien peu banal des douaniers chargés de protéger les frontières et d'arrêter les trafiquants en tout genre ou les personnes suspectées de terrorisme. + Documentaire + Doc. Société + + + + -10 + + + + Douanes sous haute surveillance + Comment faire un tabac ? + Gros plan sur la vie quotidienne des douaniers, les divers types de situations qu'ils rencontrent tous les jours et leur lutte constante pour maintenir la sécurité. + Documentaire + Doc. Société + + 14 . 0 . + + + -10 + + + + Douanes sous haute surveillance + L'argent ne fait pas le bonheur + Gros plan sur la vie quotidienne des douaniers, les divers types de situations qu'ils rencontrent tous les jours et leur lutte constante pour maintenir la sécurité. + Documentaire + Doc. Société + + 14 . 0 . + + + -10 + + + + Enquête sous haute tension + Vol, escroqueries, magouilles : les nouvelles arnaques automobiles + Avec 40 millions d'automobilistes, le marché de l'occasion se porte bien en France. On peut y trouver de bonnes affaires, mais les arnaques sont fréquentes : voitures mal entretenues et dangereuses ou encore véhicules volés. Ce business de la voiture volée représente 450 milliards d'euros dans le monde. + Magazine + Mag. Société + + 0 . 0 . + + + -10 + + + + Enquête sous haute tension + Bagarre, trafic de supéfiants, agressions : 100 jours avec la police de Nice (n°3) + Nice vit essentiellement de ses cinq millions de touristes annuels. Mais cet engouement pour le soleil provençal attire aussi les escrocs. Pour les arrêter, la municipalité a mis en place le plus important réseau de caméras en France. Sur le terrain, les policiers sont confrontés à des agressions de plus en plus violentes. + Magazine + Mag. Société + + 0 . 0 . + + + -10 + + + + Des news musicales + Aucune description + Musique + Clips + + + Tout public + + + + Le meilleur forgeron + L'arbalete d'acier + Différentes plaques servent de base à la fabrication d'une lame en acier damassé. Les meilleures lames devront ensuite fabriquer une arbalète en acier. + Documentaire + Doc. Société + + 4 . 0 . + + Tout public + + + + Le meilleur forgeron + Les roues de vent et de feu + Les forgerons ont trois heures pour fabriquer une lame solide et tranchante à partir de vieux vélos. Les deux meilleurs candidats réalisent une arme chinoise. + Documentaire + Doc. Société + + 4 . 0 . + + Tout public + + + + Ghost Hunters + Les coulisses de l'au-dela + Au Colorado, le personnel et les pensionnaires du Perry Mansfield Performing Arts Camp sont témoins d'activités paranormales depuis un siècle. + Documentaire + Doc. Société + + 12 . 0 . + + + -10 + + + + Ghost Hunters + Souvenirs vivants + Grant et l'équipe viennent en aide à une mère célibataire et à son fils qui craignent que les esprits qui hantent leur demeure victorienne menacent leur sécurité. + Documentaire + Doc. Société + + 11 . 0 . + + + -10 + + + + Enquêtes paranormales + Du fantôme de Marilyn Monroe à celui de Sharon Tate, Hollywood serait le théâtre de curieux phénomènes paranormaux dont certains font froid dans le dos. + Magazine + Mag. Société + + + + -10 + + + + Enquêtes paranormales + Au sommaire : Ovni, les mystérieuses lumières d'Hessdalen ; Allemagne, la femme qui pleurait des larmes de sang ; Maison diabolique, la famille d'un homme politique terrifiée ; USA, la malédiction du parc d'attractions hanté ; Carl Higdon, l'homme enlevé par des extraterrestres. + Magazine + Mag. Société + + + + -10 + + + + Nuit club + Une sélection des clips les plus dansants du moment, tout genre musical confondu. + Musique + Clips + + + Tout public + + + + Garorock + Marc Rebillet + Aucune description + Musique + Rock Pop + + 0 . 0 . + + Tout public + + + + Les Déferlantes + Lunar Disco + Aucune description + Musique + Rock Pop + + 0 . 0 . + + Tout public + + + + Top Cstar Week/end + Aucune description + Musique + Clips + + + Tout public + + + + Top France + Les 15 clips les plus en vogue du moment, avec les artistes français qui se sont illustrés dans les différents classements de titres ou d'albums. + Musique + Clips + + + Tout public + + + + Top Clip + Dance, pop-rock, R'n'b, hip-hop, rap : «Top clip» offre une programmation éclectique des meilleurs clips du moment. + Musique + Clips + + + Tout public + + + + Top Albums + Le classement des meilleurs albums du moment, de Nekfeu à Florent Pagny, de PNL à Angèle, illustré par des clips toujours hauts en couleur. + Musique + Clips + + + Tout public + + + + Top Clip + Dance, pop-rock, R'n'b, hip-hop, rap : «Top clip» offre une programmation éclectique des meilleurs clips du moment. + Musique + Clips + + + Tout public + + + + Douanes sous haute surveillance + Aéroports, douanes, centres postaux : la caméra pénètre au coeur du système de contrôle australien chargé d'interpeller trafiquants et autres passeurs clandestins. + Documentaire + Doc. Société + + + + -10 + + + + Douanes sous haute surveillance + Aéroports, douanes, centres postaux : la caméra pénètre au coeur du système de contrôle australien chargé d'interpeller trafiquants et autres passeurs clandestins. + Documentaire + Doc. Société + + + + -10 + + + + Douanes sous haute surveillance + Gros plan sur la vie quotidienne des douaniers, les divers... + Documentaire + Doc. Société + + + + -10 + + + + Douanes sous haute surveillance + Les douaniers contrôlent un membre de la jet set new-yorkaise dans la file d'attente. Un passager néo-zélandais a des antécédents de violence. + Documentaire + Doc. Société + + + + -10 + + + + Douanes sous haute surveillance + Cette s'rie documentaire en vingt 'pisodes suit le travail des douaniers et permet de d'couvrir l'envers du d'cor de la lutte contre tous les trafics. + Documentaire + Doc. Société + + + + -10 + + + + Douanes sous haute surveillance + Des rations très spéciales + Dans cet épisode : les douaniers découvrent un sac à dos envoyé par la poste et après inspection, ils y trouvent une grande quantité de stupéfiants. + Documentaire + Doc. Société + + 14 . 0 . + + + -10 + + + + Douanes sous haute surveillance + Entre mensonge et vérité + Gros plan sur la vie quotidienne des douaniers, les divers types de situations qu'ils rencontrent tous les jours et leur lutte constante pour maintenir la sécurité. + Documentaire + Doc. Société + + 14 . 0 . + + + -10 + + + + Au coeur de l'enquête + Poids lourds : danger sur les routes françaises + A cause de ses nombreux tunnels, l'autoroute A8 peut se transformer en piège pour les automobilistes. L'autre fléau, c'est la conduite sous l'emprise de stupéfiants ou d'alcool. Pour protéger les conducteurs, les gendarmes de l'autoroute affichent une tolérance zéro et multiplient les contrôles. + Magazine + Mag. Société + + 0 . 0 . + + + -10 + + + + Au coeur de l'enquête + Aucune description + Magazine + Mag. Société + + + + -10 + + + + Le meilleur forgeron + L'épée de cour + Quatre forgerons doivent forger des couteaux pliables à partir d'une bobine d'acier. Ils doivent produire des armes capables de résister à tous les tests. + Documentaire + Doc. Société + + 4 . 0 . + + Tout public + + + + Le meilleur forgeron + Le sabre de hussard + Les finalistes vont devoir réaliser une des armes les plus meurtrières de l'histoire : le sabre qui équipait les hussards de l'armée austro-hongroise. + Documentaire + Doc. Société + + 4 . 0 . + + Tout public + + + + Chicago Fire + Un grand "Bang" + Après une longue absence, Stella Kidd fait son grand retour à la caserne 51. Les membres de l'équipe doivent joindre leurs efforts pour venir à bout d'un incendie dans un tunnel. Suite à cet incident, Ritt s'inquiète pour un jeune policier, témoin de la mort d'un chauffeur de camion... + Série + Série Passion + + 9 . 9 . + + + -10 + + + + Chicago Fire + La petite nouvelle + A New York, le groupe 51 intervient sur les lieux d'un incendie d'appartement. Ce sinistre fait ressortir une affaire d'enlèvement et de tentative de meurtre non élucidés, qui date d'une dizaine d'années. Les équipes tentent de rassembler des éléments qui permettront à cette enquête d'avancer... + Série + Série Passion + + 2 . 20 . + + + -10 + + + + Chicago Fire + Cyber-attaque + Une importante faille de sécurité dans les réseaux informatiques de la ville oblige les hauts responsables de la caserne 51 à prendre les choses en main. Severide, quant à lui, enquête sur un incendie criminel dans une église... + Série + Série Passion + + 9 . 5 . + + + -10 + + + + Chicago Fire + De qui aurais-je peur ? + Une violente dispute oppose Gallo et le lieutenant qui remplace temporairement Casey. L'enquête sur les incendies criminels dans les églises prend une tournure tragique quand l'un des prêtres meurt de ses brûlures. Severide et Seager mettent tout en oeuvre pour retrouver le criminel... + Série + Série Passion + + 9 . 6 . + + + -10 + + + + Beautés d'amour + Aucune description + Film + Film Érotique + + + + -16 + + + + Top Rock + Le rock dans tous ses états, rebelle ou novateur, où l'on croise les légendes ou les nouveaux prometteurs du genre Lana Del Rey, Stuck in the Sound, Pony Pony Run Run ou encore Dionysos. + Musique + Clips + + + Tout public + + + + Nuit rock + Une sélection de clips tous tirés de l'univers rock anglais, américain, français et de bien d'autres pays encore. + Musique + Clips + + + Tout public + + + + Top Clip + Dance, pop-rock, R'n'b, hip-hop, rap : «Top clip» offre une programmation éclectique des meilleurs clips du moment. + Musique + Clips + + + Tout public + + + + Top Cstar Lundi + Aucune description + Musique + Clips + + + Tout public + + + + Top Clip + Dance, pop-rock, R'n'b, hip-hop, rap : «Top clip» offre une programmation éclectique des meilleurs clips du moment. + Musique + Clips + + + Tout public + + + + Top albums + Le classement des meilleurs albums du moment, de Nekfeu à Florent Pagny, de PNL à Angèle, illustré par des clips toujours hauts en couleur. + Musique + Clips + + + Tout public + + + + Top France + Les 15 clips les plus en vogue du moment, avec les artistes français qui se sont illustrés dans les différents classements de titres ou d'albums. + Musique + Clips + + + Tout public + + + + Top Clip + Dance, pop-rock, R'n'b, hip-hop, rap : «Top clip» offre une programmation éclectique des meilleurs clips du moment. + Musique + Clips + + + Tout public + + + + Top France + Les 15 clips les plus en vogue du moment, avec les artistes français qui se sont illustrés dans les différents classements de titres ou d'albums. + Musique + Clips + + + Tout public + + + + Top albums + Le classement des meilleurs albums du moment, de Nekfeu à Florent Pagny, de PNL à Angèle, illustré par des clips toujours hauts en couleur. + Musique + Clips + + + Tout public + + + + Pawn Stars, les rois des enchères + Le testament du jedi + Qu'il s'agisse d'un sabre de samouraï, d'une sculpture de Picasso ou d'un autographe de John Lennon, tout objet qui passe entre les mains des Harrison sera examiné sous toutes les coutures et authentifié par des spécialistes. Rick, Corey, Richard et Chumlee doivent retracer l'histoire de chacune des pièces qu'on leur confie pour en déterminer la valeur marchande. + Documentaire + Société + + 10 . 0 . + + Tout public + + + + Pawn Stars, les rois des enchères + Roosevelt Vs Kanye West + A Las Vegas, dans la boutique Gold & Silver Pawn Shop, les trois générations de la famille Harrison estiment la valeur des objets présentés par les clients. + Documentaire + Société + + 17 . 0 . + + Tout public + + + + Pawn Stars, les rois des enchères + Million Dollar Deal + Rick et Corey mettent la main sur une lettre signée d'un ancien président. Ensuite, un oeuf d'oiseau géant roule dans le poulailler de Rick. Rick peut-il élaborer un plan pour l'acheter avant qu'il ne s'envole ? Pendant ce temps, Corey remonte le temps avec une horloge en forme de violon. Le vendeur acceptera-t-il le prix ? Plus tard, Rick se rend à Londres pour une acheter une oeuvre d'art très chère. + Documentaire + Société + + 14 . 0 . + + Tout public + + + + Le meilleur forgeron + L'o-katana + Pour cette centième épreuve de la compétition, quatre forgerons sont chargés de forger un hachoir. Pour cela ils peuvent choisir parmi tous les métaux et matériaux utilisés dans les 99 épreuves précédentes. Les deux finalistes rentrent chez eux pour recréer l'une des épées les plus épiques de l'histoire de cette compétition : l'O-Katana. + Documentaire + Téléréalité + + 4 . 0 . + + Tout public + + + + Le meilleur forgeron + Baïonnette Springfield modèle 1905 + Après la première épreuve où il fallait forger les lames de signature, les deux forgerons restants ont pour mission de fabriquer la baïonnette Springfield. + Documentaire + Téléréalité + + 7 . 0 . + + Tout public + + + + One, Two, Three, Nawell Madani ! + Portrait de Nawell Madani à l'occasion d'un grand défi de sa vie : être la première femme humoriste à monter sur la scène à l'opéra d'Alger dans le cadre du festival "Alger mon humour", en janvier 2017. Partant à la rencontre de la culture et des souvenirs de ses parents, elle livre à travers ce documentaire son regard sur son pays d'origine. Elle a retracé son parcours sur grand écran dans le film "C'est tout pour moi" sorti en novembre 2017. + Documentaire + Culture + + + + -10 + + + + Jérémy Ferrari : Vends 2 pièces à Beyrouth + Après s'être intéressé à la religion, Jérémy Ferrari s'attaque à la guerre. Dans ce spectacle, il répond aux questions que personne n'ose plus se poser : Daesh, est-ce une start-up qui monte ? Les entreprises qui ont bénéficié du nazisme doivent-elles s'en repentir ? Peut-on être dans l'humanitaire quand on a une terrasse en teck ? Al Qaïda sans Ben Laden, n'est-ce pas un peu Apple sans Steve Jobs ? Plébiscité, ce spectacle a bénéficié d'une tournée en France mais également en Belgique, en Suisse, au Québec et aux Etats-Unis. + Spectacle + One man show + + + + -10 + + + + Nuit hip hop + Une compilation des meilleurs titres qui ont fait ou qui font l'actualité du rap et du hip hop. + Musique + Clips + + + Tout public + + + + Musilac + Nothing But Thieves + Partenaire du festival Musilac d'Aix-les-Bains, la chaîne propose de voir ou revoir quelques-unes des prestations des artistes qui se sont succédé sur scène. + Spectacle + Variétés + + + Tout public + + + + Garorock + Marc Rebillet + C'est en avril 1997, que le Sud Ouest voit naître un festival à la tendance punk/rock avérée, dans les anciens abattoirs marmandais : le Garorock, jeu de mot oscillant entre Garonne et Rock, mais aussi Gare au Rock. Fêtant en 2020 son 24e anniversaire, Garorock s'est imposé comme l'un des plus gros festivals de l'hexagone. En plus de vingt ans d'existence, le festival a su grandir et se développer tout en restant ancré dans son territoire. Attirant en 2019 plus de 160 000 festivaliers grâce à une programmation riche et surprenante orchestrée par Ludovic Larbodie, Garorock est désormais le rendez-vous incontournable des musiques actuelles du Sud-Ouest. + Spectacle + Pop & Rock + + + Tout public + + + + Top Clip + Dance, pop-rock, R'n'b, hip-hop, rap : «Top clip» offre une programmation éclectique des meilleurs clips du moment. + Musique + Clips + + + Tout public + + + + Top Cstar Mardi + Aucune description + Musique + Clips + + + Tout public + + + + Top Clip + Dance, pop-rock, R'n'b, hip-hop, rap : «Top clip» offre une programmation éclectique des meilleurs clips du moment. + Musique + Clips + + + Tout public + + + + Top streaming + LE TOP STREAMING est le classement hebdomadaire des meilleures écoutes en streaming. T-Miss révèle les entrées, sorties et meilleures progressions de tous les plus grands tubes du moment. Au menu, une heure d'un TOP dynamique et drôle au rythme haletant, qui sera le reflet des goûts musicaux du plus grand nombre. + Musique + Clips + + + Tout public + + + + Top Clip + Dance, pop-rock, R'n'b, hip-hop, rap : «Top clip» offre une programmation éclectique des meilleurs clips du moment. + Musique + Clips + + + Tout public + + + + Top Cstar Week/end + Aucune description + Musique + Clips + + + Tout public + + + + Top Clip + Dance, pop-rock, R'n'b, hip-hop, rap : «Top clip» offre une programmation éclectique des meilleurs clips du moment. + Musique + Clips + + + Tout public + + + + Top Albums + Le classement des meilleurs albums du moment, de Nekfeu à Florent Pagny, de PNL à Angèle, illustré par des clips toujours hauts en couleur. + Musique + Clips + + + Tout public + + + + Top France + Les 15 clips les plus en vogue du moment, avec les artistes français qui se sont illustrés dans les différents classements de titres ou d'albums. + Musique + Clips + + + Tout public + + + + Pawn Stars, les rois des enchères + Armez ! Tirez ! + A Las Vegas, dans la boutique Gold & Silver Pawn Shop, les trois générations de la famille Harrison estiment la valeur des objets présentés par les clients. + Documentaire + Doc. Société + + 15 . 0 . + + Tout public + + + + Pawn Stars, les rois des enchères + Une sulfateuse à manivelle + A Las Vegas, dans la boutique Gold & Silver Pawn Shop, les trois générations de la famille Harrison estiment la valeur des objets présentés par les clients. + Documentaire + Doc. Société + + 17 . 0 . + + Tout public + + + + Pawn Stars, les rois des enchères + Outre-pawn'atlantique + Dans la banlieue de Las Vegas, dans la boutique Gold & Silver... + Documentaire + Doc. Société + + 20 . 0 . + + Tout public + + + + Le meilleur forgeron + L'épée mérovingienne + Une émission relevée dont la première épreuve repose sur la maîtrise d'une technique difficile. Quant à la finale, elle met en scène une épée venue d'Europe. + Documentaire + Doc. Société + + 4 . 0 . + + Tout public + + + + Le meilleur forgeron + Le sabre d'abordage + Dans cet épisode consacré à l'art militaire, quatre vétérans se transforment en forgerons pour réaliser les armes les plus performantes possible. + Documentaire + Doc. Société + + 4 . 0 . + + Tout public + + + + Le meilleur forgeron + Les dents de Tegha + Après la première épreuve, les deux participants restants sont chargés de forger l'épée de Tegha, originaire d'Inde moghole, qui a une lame large et lourde. + Documentaire + Doc. Société + + 7 . 0 . + + Tout public + + + + Le meilleur forgeron + Le sabre à tête de coq + Après la première épreuve qui s'est déroulée à la ferme, les deux forgerons restants doivent fabriquer l'emblématique sabre à tête de coq. + Documentaire + Doc. Société + + 6 . 0 . + + Tout public + + + + Le meilleur forgeron + Le Qinglong Ji + Fabriquer une lame à partir d'un tonneau à whisky n'est pas chose aisée. Les deux vainqueurs s'affrontent autour d'une lance chinoise : la hallebarde qinglong. + Documentaire + Doc. Société + + 4 . 0 . + + Tout public + + + + Le meilleur forgeron + L'épée à poignée anthropomorphe + De gros écrous et des barres en acier fournissent le matériau de base de la première épreuve. Les finalistes se départageront autour d'une épée celtique. + Documentaire + Doc. Société + + 4 . 0 . + + Tout public + + + + Le meilleur forgeron + La Zweihander + Quatre concurrents doivent forger des lames de soudure. Après avoir réussi les tests, deux forgerons rentrent chez eux où ils forgent une Zweihander allemande. + Documentaire + Doc. Société + + 2 . 0 . + + Tout public + + + + Le meilleur forgeron + Le sabre Darb Sri Gun Chai + Après s'être mesurés à l'acier de Damas, les deux meilleurs candidats vont concourir pour la finale en réalisant un sabre Darb Sri Gun Chai, une arme thaïe. + Documentaire + Doc. Société + + 6 . 0 . + + Tout public + + + + Top France + Les 15 clips les plus en vogue du moment, avec les artistes français qui se sont illustrés dans les différents classements de titres ou d'albums. + Musique + Clips + + + Tout public + + + + Nuit française + Une sélection de clips francophones, tout genre musical confondu. + Musique + Clips + + + Tout public + + + + Top Clip + Dance, pop-rock, R'n'b, hip-hop, rap : «Top clip» offre une programmation éclectique des meilleurs clips du moment. + Musique + Clips + + + Tout public + + + + Top France + Les 15 clips les plus en vogue du moment, avec les artistes français qui se sont illustrés dans les différents classements de titres ou d'albums. + Musique + Clips + + + Tout public + + + + Top Clip + Dance, pop-rock, R'n'b, hip-hop, rap : «Top clip» offre une programmation éclectique des meilleurs clips du moment. + Musique + Clips + + + Tout public + + + + Top streaming + LE TOP STREAMING est le classement hebdomadaire des meilleures écoutes en streaming. T-Miss révèle les entrées, sorties et meilleures progressions de tous les plus grands tubes du moment. Au menu, une heure d'un TOP dynamique et drôle au rythme haletant, qui sera le reflet des goûts musicaux du plus grand nombre. + Musique + Clips + + + Tout public + + + + Top Clip + Dance, pop-rock, R'n'b, hip-hop, rap : «Top clip» offre une programmation éclectique des meilleurs clips du moment. + Musique + Clips + + + Tout public + + + + Top Cstar Vendredi + Aucune description + Musique + Clips + + + Tout public + + + + Top Clip + Dance, pop-rock, R'n'b, hip-hop, rap : «Top clip» offre une programmation éclectique des meilleurs clips du moment. + Musique + Clips + + + Tout public + + + + Top streaming + LE TOP STREAMING est le classement hebdomadaire des meilleures écoutes en streaming. T-Miss révèle les entrées, sorties et meilleures progressions de tous les plus grands tubes du moment. Au menu, une heure d'un TOP dynamique et drôle au rythme haletant, qui sera le reflet des goûts musicaux du plus grand nombre. + Musique + Clips + + + Tout public + + + + Top Cstar Week/end + Aucune description + Musique + Clips + + + Tout public + + + + Pawn Stars, les rois des enchères + Scaphandre à vendre + A Las Vegas, dans la boutique Gold & Silver Pawn Shop, les trois générations de la famille Harrison estiment la valeur des objets présentés par les clients. + Documentaire + Doc. Société + + 17 . 0 . + + Tout public + + + + Pawn Stars, les rois des enchères + Des saints et des vainqueurs + Rick et Chum partent en Italie où ils peuvent mélanger travail et plaisir. Bien sûr, ils ne manquent pas l'occasion de tester deux Vespas. + Documentaire + Doc. Société + + 21 . 0 . + + Tout public + + + + Pawn Stars, les rois des enchères + Dans la banlieue de Las Vegas, dans la boutique Gold & Silver Pawn Shop, les trois générations de la famille Harrison estiment les objets présentés par les clients. + Documentaire + Doc. Société + + + Tout public + + + + Le meilleur forgeron + La flissa kabyle + Un canon fournira la matière de la première épreuve. Les finalistes se départageront autour d'un sabre traditionnel algérien : la flissa. + Documentaire + Doc. Société + + 4 . 0 . + + Tout public + + + + Le meilleur forgeron + L'épée de conquistador + Après la première épreuve où il fallait recréer le couteau utilisé par des forces spéciales de la Seconde Guerre mondiale, les finalistes créent une épée de conquistador espagnol. + Documentaire + Doc. Société + + 6 . 0 . + + Tout public + + + + Broken City + Exclu des rangs de la police après le meurtre d'un suspect impliqué dans une affaire personnelle, Billy Taggart est devenu détective privé, spécialisé dans la filature des époux volages. Engagé par le maire de New York pour identifier l'amant de sa femme, il se retrouve au coeur d'une machination politique... + Film + Film Suspense + + + + -10 + + + + Gangsterdam + Ruben, un étudiant, a déja raté une fois ses examens. Nora, dont il est amoureux, a le même genre de déconvenues. Quand il découvre qu'elle vend de la drogue et qu'elle part pour Amsterdam afin de récupérer une nouvelle substance, Ruben décide de l'accompagner, espérant la séduire enfin... + Film + Film Rires + + + + -10 + + + + Nuit nouveaux talents + Une sélection de clips d'artistes issus de la nouvelle scène musicale. + Musique + Clips + + + Tout public + + + + Top Clip + Dance, pop-rock, R'n'b, hip-hop, rap : «Top clip» offre une programmation éclectique des meilleurs clips du moment. + Musique + Clips + + + Tout public + + + + Top Cstar Jeudi + Aucune description + Musique + Clips + + + Tout public + + + + Top Clip + Dance, pop-rock, R'n'b, hip-hop, rap : «Top clip» offre une programmation éclectique des meilleurs clips du moment. + Musique + Clips + + + Tout public + + + + Top Cstar Week/end + Aucune description + Musique + Clips + + + Tout public + + + + Top Albums + Le classement des meilleurs albums du moment, de Nekfeu à Florent Pagny, de PNL à Angèle, illustré par des clips toujours hauts en couleur. + Musique + Clips + + + Tout public + + + + Top Clip + Dance, pop-rock, R'n'b, hip-hop, rap : «Top clip» offre une programmation éclectique des meilleurs clips du moment. + Musique + Clips + + + Tout public + + + + Top France + Les 15 clips les plus en vogue du moment, avec les artistes français qui se sont illustrés dans les différents classements de titres ou d'albums. + Musique + Clips + + + Tout public + + + + Top Albums + Le classement des meilleurs albums du moment, de Nekfeu à Florent Pagny, de PNL à Angèle, illustré par des clips toujours hauts en couleur. + Musique + Clips + + + Tout public + + + + Pawn Stars, les rois des enchères + La légende des chemins de fer + A Las Vegas, dans la boutique Gold & Silver Pawn Shop, les trois générations de la famille Harrison estiment la valeur des objets présentés par les clients. + Documentaire + Doc. Société + + 17 . 0 . + + Tout public + + + + Pawn Stars, les rois des enchères + Cowboys et canons + A Las Vegas, dans la boutique Gold & Silver Pawn Shop, les trois générations de la famille Harrison estiment la valeur des objets présentés par les clients. + Documentaire + Doc. Société + + 17 . 0 . + + Tout public + + + + Pawn Stars, les rois des enchères + On taille la route 66 + Chum et Rick doivent s'occuper d'un radiateur, d'une sculpture et d'une poupée Zack Morris. L'équipe prend la route 66 pour que Rick achète sa voiture de rêve. + Documentaire + Doc. Société + + 21 . 0 . + + Tout public + + + + Le meilleur forgeron + L'épée de guerre chinoise + Après plusieurs épreuves et une série de tests incessants, les deux forgerons restants ont pour mission de créer une épée de guerre chinoise. + Documentaire + Doc. Société + + 6 . 0 . + + Tout public + + + + Le meilleur forgeron + L'arc d'acier + Forger une dague à partir de tiges d'acier n'est pas chose facile. Les finalistes devront reproduire l'arc d'acier de Robin des bois. + Documentaire + Doc. Société + + 4 . 0 . + + Tout public + + + + Au coeur de l'enquête + Nos routes sont-elles dangereuses ? + Un accident sur quatre serait causé par des infrastructures mal entretenues. En 2012, la qualité de notre réseau était classée au premier rang mondial par le forum économique. Dix ans plus tard, la France a dégringolé à la 18e place. Pourquoi certaines des routes sont-elles en si mauvais état ? + Magazine + Mag. Société + + 0 . 0 . + + + -10 + + + + Au coeur de l'enquête + Poids lourds : danger sur les routes françaises + A cause de ses nombreux tunnels, l'autoroute A8 peut se transformer en piège pour les automobilistes. L'autre fléau, c'est la conduite sous l'emprise de stupéfiants ou d'alcool. Pour protéger les conducteurs, les gendarmes de l'autoroute affichent une tolérance zéro et multiplient les contrôles. + Magazine + Mag. Société + + 0 . 0 . + + + -10 + + + + Au coeur de l'enquête + Bagarres, trafic de stupéfiants, agressions : 100 jours avec la police de Nice + Une immersion dans le monde des services d'investigation de la police et de la gendarmerie. Du dépôt de plainte aux interpellations, le travail des enquêteurs est détaillé : relevés d'empreintes, premières pistes et premiers suspects, analyses ADN et écoutes téléphoniques, filatures et travail des indicateurs. + Magazine + Mag. Société + + 0 . 0 . + + + -10 + + + + Nuit rap français + Le rap français est à l'honneur, avec une sélection des meilleurs clips du moment. + Musique + Clips + + + Tout public + + + + Déambulations : Sofiane Pamart à l'Olympia + Aucune description + Musique + Variétés + + + Tout public + + + + Don't Leave Me + Elena et Daniele décident de se passer de l'accord de la procureure et d'appréhender Tom à son domicile. A Trévise, les forces de police émettent un avis de disparition concernant Angelo. Enfermé, ce dernier semble avoir perdu tout espoir d'échapper à ses ravisseurs. Chez Daniele et Guilia pour l'anniversaire de leur fils aîné, le comportement étrange d'Elena intrigue Guilia. + Série + Série Suspense + + + + -10 + + + + En aparté + Best of + Une personnalité est invitée par Nathalie Levy à évoquer son actualité et à parler de sa vie et de sa carrière. L'entretien se déroule dans un appartement où l'invité est seul et répond aux questions de son hôte dont on n'entend que la voix. + Divertissement + + 0 . 35 . + + Tout public + + + + Dragon Ball Super: Super Hero + Alors que Goku a terrassé l'armée du Ruban Rouge, Magenta souhaite ressusciter l'organisation de son père. Aidé par le docteur Hedo, ils décident de se battre contre la Capsule Corp, en créant Gamma 1 et 2, deux cyborgs ultimes. Jusqu'au jour où ils attaquent Piccolo et Pan, la fille de Gohan... + Film + Film Animation + + + + -10 + + + + Enzo le croco + Récemment débarqué à New York avec ses parents, Josh souffre en raison de ses difficultés à s'adapter à ce nouvel environnement. Un jour, le jeune garçon entre dans sa salle de bain et y découvre un crocodile dans la baignoire. Josh comprend rapidement que le reptile sera son nouveau et fidèle ami... + Jeunesse + Film Jeunesse + + + Tout public + + + + Jamel Comedy Club + La 12ème saison du Jamel Comedy Club permet de découvrir une nouvelle génération d'artistes sur scène. C'est Ilyes Djadel qui prend les commandes de l'émission et présente les jeunes humoristes sociétaires. Jamel l'accompagne au bar ou sur scène avec des invités. + Divertissement + + + Tout public + + + + Dans ma tête + La boucle des coucous + "Dans ma tête" est au départ une websérie qui plonge dans la tête d'un jeune parisien un peu trop créatif qui raconte, selon le fil de ses pensées, sa journée type. + Série + Série Rires + + 0 . 8 . + + Tout public + + + + Tchi tcha + Best of + Aucune description + Magazine + Mag. Cinéma + + 0 . 34 . + + + -10 + + + + Le cercle + LE CERCLE CINÉMA rentre dans sa 19ème saison. C'est la seule émission télévisée de débats critiques 100onsacrée au cinéma. Elle offre chaque semaine des joutes enflammées, joyeuses et sans préjugés, sur les films à l'affiche. Elle invite les cinéastes à venir partager leur passion cinéphile. Tant qu'il y aura du cinéma, LE CERCLE sera là. + Magazine + Mag. Cinéma + + + + -10 + + + + En aparté + Best of + Une personnalité est invitée par Nathalie Levy à évoquer son actualité et à parler de sa vie et de sa carrière. L'entretien se déroule dans un appartement où l'invité est seul et répond aux questions de son hôte dont on n'entend que la voix. + Divertissement + + 0 . 40 . + + Tout public + + + + Canalissime + Chaque mois, ce tout-en-images fait le tour d'horizon de l'actualité des programmes CANAL+ au fil d'interviews sur les temps forts de l'antenne. + Divertissement + + + + -10 + + + + Clique X + Clique X, ce sont de longues conversations entre Mouloud Achour et son invité, une galerie de portraits de personnalités qui dessinent les contours du monde de demain. + Divertissement + + + Tout public + + + + Avant-Match Top 14 + Oyonnax - La Rochelle + Aucune description + Magazine + Mag. Sport + + 0 . 0 . + + Tout public + + + + Rugby : Top 14 + Aucune description + Sport + Rugby + + + Tout public + + + + Avant-Match Top 14 + Multirugby + Aucune description + Magazine + Mag. Sport + + 0 . 0 . + + Tout public + + + + Rugby : Top 14 + Aucune description + Sport + Rugby + + + Tout public + + + + Canal Sports Club + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Canal Rugby Club 1re partie + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Avant-Match Top 14 + Racing 92 - Lyon + Aucune description + Magazine + Mag. Sport + + 0 . 0 . + + Tout public + + + + Rugby : Top 14 + Aucune description + Sport + Rugby + + + Tout public + + + + Canal Rugby Club le débrief + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Hot Ones + Alexandre Astier a hacké le concept + Kyan Khojandi dirige une interview d'un genre particulier, inspirée d'un concept venu des Etats-Unis. L'invité de l'émission répond à dix questions et doit, pour chacune, goûter une sauce pimentée de plus en plus intense. Plus l'intensité des sauces augmente, plus l'interview prend une tournure imprévisible. + Divertissement + + 1 . 8 . + + Tout public + + + + Mininours + Vive la drogue + Mininours est un petit nounours violet fumeur de joints en liberté conditionnelle. Pour ne pas faire ses travaux d'intérêt général, il doit aller raconter des histoires une fois par semaine à une classe de maternelles. Et quelles histoires… + Série + Série Rires + + 0 . 0 . + + + -10 + + + + Mininours + Racisme Coin-Coin + Mininours est un petit nounours violet fumeur de joints en liberté conditionnelle. Pour ne pas faire ses travaux d'intérêt général, il doit aller raconter des histoires une fois par semaine à une classe de maternelles. Et quelles histoires… + Série + Série Rires + + 0 . 1 . + + + -10 + + + + Le journal du hard + La culture porno est abordée de manière pop et chic avec des enquêtes, les nouveautés du mois sans oublier l'actualité des vedettes de l'univers du X. + Magazine + + + + -18 + + + + Mes chroniques libertines + Aucune description + Film + Film Carré Rose + + + + -18 + + + + The Woman King + En 1823, dans le Dahomey, en Afrique de l'Ouest, les Agojié, un groupe de femmes guerrières formées et menées par la générale Nanisca, constituent la garde rapprochée du roi. Nawi, une jeune recrue orpheline, sort du lot parmi ces amazones surentraînées. De nombreuses menaces planent sur le Dahomey... + Film + Film Action + + + + -12 + + + + La meuf de Jay + La fête bat son plein. Nina n'a qu'un objectif dans cette soirée : la terminer avec Jay. C'est sans compter sur la présence de Louise. + Film + Court Métrage + + + Tout public + + + + Rallye : Rallye d'Europe Centrale + Aucune description + Sport + Sport Mécanique + + + Tout public + + + + Rallye Club + Criterium des Cévennes + Aucune description + Magazine + Mag. Sport + + 0 . 7 . + + Tout public + + + + Tchi tcha + Best of + Aucune description + Magazine + Mag. Cinéma + + 0 . 34 . + + + -10 + + + + Don't Leave Me + Elena et l'équipe utilisent un profil piraté pour participer aux enchères. Mais il va d'abord leur falloir montrer patte blanche pour être accepté parmi les enchérisseurs. De son côté, Angelo tente une nouvelle fois de déjouer la vigilance de son geôlier. Elena et Daniele localisent la planque des ravisseurs et s'y rendent sans tarder. Sur place, ils font des découvertes capitales... + Série + Série Suspense + + + + -10 + + + + En aparté + Une personnalité est invitée par Nathalie Levy à évoquer son actualité et à parler de sa vie et de sa carrière. L'entretien se déroule dans un appartement où l'invité est seul et répond aux questions de son hôte dont on n'entend que la voix. + Divertissement + + + Tout public + + + + Suzume + A Kyushu, une bourgade japonaise. Suzume, 17 ans, fait connaissance avec un homme mystérieux qui prétend voyager pour mettre la main sur une étrange porte. Intriguée, elle accepte de suivre ce dernier dans les montagnes environnantes, où elle ne tarde pas à découvrir cette porte si convoitée... + Film + Film Animation + + + + -10 + + + + Super Mario Bros. le film + Bowser, le méchant Koopa, souhaite régner sur le royaume Champignon et dispose pour cela d'une armée sous ses ordres. Mais c'est sans compter sur la présence du célèbre plombier, Mario, qui est appelé à la rescousse pour venir en aide à la princesse Peach, mais aussi pour sauver son frère Luigi... + Film + Film Animation + + + Tout public + + + + L'hebd'Hollywood + Entre événements, indiscrétions et exclusivités, le journaliste Didier Allouch propose chaque semaine, depuis Los Angeles, un décryptage très personnel de l'actualité du cinéma américain. News sur les tournages, tendances, films en salles, stars : la cité des Anges livre tous ses secrets. + Magazine + Mag. Cinéma + + + + -10 + + + + La boîte à questions + Best of + Sacrifiant au rituel d'une émission au format maintenant bien connu, une célébrité répond aux questions qui lui sont posées en off. C'est une interview aussi décalée que décontractée qui en découle. Les invités se révèlent souvent sous un autre angle,... + Divertissement + + 0 . 7 . + + Tout public + + + + Têtàtête(s) + Chaque semaine, une interview par Laurie Cholewa des talents ou cinéastes des films à l'affiche, un moment convivial et chaleureux qui raconte les coulisses des films les plus attendus en salles et des films diffusés sur Canal+. + Magazine + + + + -10 + + + + Faut voir ! L'hebdo cinéma + "FAUT VOIR ! L'HEBDO CINÉMA c'est à la fois une invitation, une proposition, un conseil, et pourquoi pas une injonction, d'où le point d'exclamation ! Ce qu'il faut voir, c'est ce que le cinéma propose de mieux chaque semaine sur les écrans, une passion qui se partage sérieusement, mais je l'espère sans esprit de sérieux." - Antoine de Caunes + Magazine + Mag. Cinéma + + + + -10 + + + + Groland le zapoï + Michael Kael, Francis Kuntz, Gustave de Kervern et tous leurs ami(e)s repartent à l'assaut d'une nouvelle saison Grolandaise ! Tous oeuvreront dans l'espoir un peu fou que le Zapoï corresponde enfin à sa définition dans Wikipedia : "un phénomène de société russe se traduisant par une consommation d'alcool conduisant à une ivresse de plusieurs jours." + Divertissement + + + + -10 + + + + Groland le zapoï + Michael Kael, Francis Kuntz, Gustave de Kervern et tous leurs ami(e)s repartent à l'assaut d'une nouvelle saison Grolandaise ! Tous oeuvreront dans l'espoir un peu fou que le Zapoï corresponde enfin à sa définition dans Wikipedia : "un phénomène de société russe se traduisant par une consommation d'alcool conduisant à une ivresse de plusieurs jours." + Divertissement + + + + -10 + + + + Pour 1 euro j'écoute vos problèmes + Politique + Une jeune femme s'improvise psychologue et installe un cabinet de rue. Généreuse et enthousiaste, pour 1 euro, elle écoute les problèmes des passants. Face à elle, se succèdent des personnalités de tous bords, déversant leurs difficultés personnelles. + Divertissement + + 0 . 4 . + + Tout public + + + + D'argent et de sang + #4 Alya + Fitous, Bouli et Attias se sont installés dans une maison à Tel-Aviv pour lancer les hostilités. Leur arnaque dépasse rapidement leurs espérances et les millions pleuvent. Cet afflux massif d'argent va petit à petit changer la donne. Pour obtenir des informations, Simon place Annabelle, la femme d'Attias, en garde à vue. + Série + Série Passion + + 0 . 3 . + + + -10 + + + + 10 jours encore sans maman + Depuis son licenciement, Antoine s'occupe de ses quatre enfants au quotidien, une tâche bien plus éreintante que ce qu'il imaginait. Après deux ans d'efforts, il rêve de repos et compte sur sa femme Isabelle pour l'aider durant les vacances. Au dernier moment, elle se désiste à cause du travail... + Film + Film Rires + + + Tout public + + + + Canalissime + Chaque mois, ce tout-en-images fait le tour d'horizon de l'actualité des programmes CANAL+ au fil d'interviews sur les temps forts de l'antenne. + Divertissement + + + + -10 + + + + Grand Prix + Grand Prix du Mexique + Aucune description + Magazine + Mag. Sport + + 0 . 19 . + + Tout public + + + + La grille + Grand Prix de Sao Paulo + Aucune description + Magazine + Mag. Sport + + 0 . 21 . + + Tout public + + + + Plateau Sport F1 / Moto + Lancement du Grand Prix de Sao Paulo + Aucune description + Magazine + Mag. Sport + + 0 . 0 . + + Tout public + + + + Formule 1 : Grand Prix de Sao Paulo + Aucune description + Sport + Grand Prix F1 + + + Tout public + + + + Le Podium + Grand Prix de Sao Paulo + Aucune description + Magazine + Mag. Sport + + 0 . 21 . + + Tout public + + + + Formula One, le mag + Grand Prix de Sao Paulo, 1re partie + Aucune description + Magazine + Mag. Sport + + 0 . 22 . + + Tout public + + + + Canal Rugby Club + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Avant-Match Top 14 + Pau - Toulouse + Aucune description + Magazine + Mag. Sport + + 0 . 0 . + + Tout public + + + + Rugby : Top 14 + Aucune description + Sport + Rugby + + + Tout public + + + + Canal Rugby Club le débrief + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Un bon moment + Best of + Kyan Khojandi et Navo passent de bons moments avec des gens qui aiment passer un bon moment. + Divertissement + + 0 . 4 . + + Tout public + + + + La Tour + Après une nuit banale, les habitants d'un immeuble de banlieue découvrent au réveil que leur bâtiment semble absorbé dans un étrange et très opaque brouillard. Coupés du monde, les dizaines d'occupants des lieux se lancent dans une cohabitation dont ils ignorent combien de temps elle va durer... + Film + Film Horreur + + + + -16 + + + + Babylon + Los Angeles, au début des années 1920. Après une période de balbutiements, l'industrie cinématographique est désormais en plein boom, et nombreux sont ceux qui veulent profiter de ce nouvel eldorado. Producteurs, réalisateurs, acteurs, tous tentent de s'offrir une part de l'inestimable gâteau... + Film + Film Passion + + + + -12 + + + + L'hebd'Hollywood + Entre événements, indiscrétions et exclusivités, le journaliste Didier Allouch propose chaque semaine, depuis Los Angeles, un décryptage très personnel de l'actualité du cinéma américain. News sur les tournages, tendances, films en salles, stars : la cité des Anges livre tous ses secrets. + Magazine + Mag. Cinéma + + + + -10 + + + + Cesta Punta : Open De Biarritz + Aucune description + Sport + + + Tout public + + + + Cesta Punta : Open De Biarritz + Open De Biarritz 2023. + Sport + Cesta punta + + + Tout public + + + + L'oeil des pros + Céline Boutier + 2023. Les plus grands golfeurs de la planète se retrouvent pour l'un des plus importants rendez-vous golf de la saison, la Ryder Cup, à suivre sur les antennes de CANAL+. + Sport + Golf + + 0 . 165 . + + Tout public + + + + Tits + À la suite d'une dispute à la plage, Oscar et Iben, deux adolescents, sont abandonnés par leurs amis. + Film + Drame + + Tout public + + + + En aparté + Best of + Une personnalité est invitée par Nathalie Levy à évoquer son actualité et à parler de sa vie et de sa carrière. L'entretien se déroule dans un appartement où l'invité est seul et répond aux questions de son hôte dont on n'entend que la voix. + Programme + Divertissement + + 0 . 40 . + + Tout public + + + + Brassic + Vinnie sort de prison et retrouve avec joie sa bande d'amis. Récemment promu, l'inspecteur Slater surveille ses moindres gestes, aussi Vinnie est-il déterminé à faire profil bas et à mener une vie exempte de tout reproche. Malgré ses bonnes résolutions, il a bien du mal à décliner la proposition de Jim, venu lui faire part d'un plan très lucratif. + Série + Comédie + + 2 . 0 . + + + -12 + + + + La boîte à questions + La boite a questions best of du vendredi 03 novembre + Sacrifiant au rituel d'une émission au format maintenant bien connu, une célébrité répond aux questions qui lui sont posées en off. C'est une interview aussi décalée que décontractée qui en découle. Les invités se révèlent souvent sous un autre angle,... + Programme + Divertissement + + 0 . 7 . + + Tout public + + + + Moitié.e.s + En couple avec son plan cul + Cette collection de programmes courts, de et avec Pauline Clément parodie les podcast intimistes et met en scène des couples d'aujourd'hui qui parlent de leur vision singulière du couple chez eux. + Programme + Divertissement + + 0 . 7 . + + Tout public + + + + Mes rendez-vous avec Léo + A la suite du décès de son époux, Nancy, professeur à la retraite, cherche à briser la monotonie de son existence et à rattraper le temps perdu après une vie entière sans aucun écart. Pour ce faire, elle décide de s'offrir les services d'un jeune escort boy et de se faire plaisir en prenant du bon temps. Son choix se porte sur Leo, un brun ténébreux fort surpris de découvrir le programme millimétré concocté par sa cliente lors de son arrivée à son domicile. Bien plus détendu que cette dernière, il parvient à rapidement briser la glace. Mais la relation, au départ tarifée et limitée dans le temps, prend bien vite une tournure inattendue... + Film + Comédie dramatique + + + + -10 + + + + Le torrent + Entre Juliette et Alexandre, le torchon brûle. L'homme a découvert l'infidélité de son épouse et une violente dispute éclate. Lasse, la jeune femme préfère fuir le domicile, mais un drame terrible se produit en cette nuit pluvieuse : Juliette se blesse mortellement en faisant une chute dans des massifs escarpés rendus glissants par un déluge incessant. Déplacé par des crues torrentielles, son corps finit par être retrouvé. Très vite, les soupçons se portent sur Alexandre, qui cherche maladroitement à cacher certains éléments aux enquêteurs qui découvrent rapidement des indices troublants que le suspect ne parvient pas à expliquer... + Action + Policier + + + + -10 + + + + Hot Ones + Alexandre Astier a hacké le concept + Le principe est simple, mais arriver au bout de l'interview menée par Kyan Khojandi l'est beaucoup moins ! 10 grandes questions ! 10 sauces épicées allant de 2500 à plus de 3 millions sur l'échelle de Scoville (échelle de mesure du piment). 10 chicken wings ou tempuras de légumes. A chaque question, sa sauce. Plus l'interview progresse, plus l'intensité des sauces augmente. Plus l'intensité des sauces augmente, plus l'interview prend une tournure imprévisible. + Divertissement + Humour + + 1 . 8 . + + Tout public + + + + Moitié.e.s + En couple avec son plan cul + Cette collection de programmes courts, de et avec Pauline Clément parodie les podcast intimistes et met en scène des couples d'aujourd'hui qui parlent de leur vision singulière du couple chez eux. + Programme + Divertissement + + 0 . 7 . + + Tout public + + + + La boîte à questions + La boite a questions best of du vendredi 03 novembre + Sacrifiant au rituel d'une émission au format maintenant bien connu, une célébrité répond aux questions qui lui sont posées en off. C'est une interview aussi décalée que décontractée qui en découle. Les invités se révèlent souvent sous un autre angle,... + Programme + Divertissement + + 0 . 7 . + + Tout public + + + + En aparté + Best of + Une personnalité est invitée par Nathalie Levy à évoquer son actualité et à parler de sa vie et de sa carrière. L'entretien se déroule dans un appartement où l'invité est seul et répond aux questions de son hôte dont on n'entend que la voix. + Programme + Divertissement + + 0 . 40 . + + Tout public + + + + Clique + Nouvel horaire, nouvelle formule pour CLIQUE, présenté par Mouloud Achour. A 19h45 Pauline Clavière ouvre le bal avec "Le JT de Clique" , le journal avec tout ce qu'il fallait cliquer dans la journée. Mouloud Achour revient à son exercice signature, le \" Clique X \" face à face iconique, entretien au long cours avec la personnalité du jour. Un invité sociétal viendra ensuite nous éclairer sur le monde actuel, toujours en clair et en direct ! + Magazine + Information + + 0 . 44 . + + Tout public + + + + Plateaux Canal+ premières + Dead for a Dollar + Aucune description + Culture + Cinéma + + 0 . 2023 . + + Tout public + + + + Dead for a Dollar + En 1897, au Nouveau-Mexique, Max Borlund, un chasseur de primes, apprend que Joe Cribbens, un joueur professionnel et hors-la-loi qu'il a mis derrière les barreaux cinq ans plus tôt, va bientôt être libéré. Par ailleurs, il est engagé par Martin Kidd, un homme d'affaires de Santa Fe, pour retrouver sa femme Rachel, qui aurait été enlevée par Elijah Jones, un déserteur afro-américain. Max découvre rapidement que la situation n'est pas tout à fait celle qu'on lui a décrite : les deux amants se cachent en fait d'un mari violent. Au cours de sa mission, le chasseur de primes recroise la route de son ennemi juré. + Action + Western + + + + -10 + + + + Faut voir ! L'hebdo cinéma + "FAUT VOIR ! L'HEBDO CINÉMA c'est à la fois une invitation, une proposition, un conseil, et pourquoi pas une injonction, d'où le point d'exclamation ! Ce qu'il faut voir, c'est ce que le cinéma propose de mieux chaque semaine sur les écrans, une passion qui se partage sérieusement, mais je l'espère sans esprit de sérieux." - Antoine de Caunes + Culture + Cinéma + + 0 . 6 . + + + -10 + + + + Et l'amour dans tout ça ? + Zoe, une documentariste célibataire, passe son temps à chercher le grand amour sur des applications de rencontre. Malgré ses nombreuses tentatives, elle ne parvient toujours pas à trouver chaussure à son pied, au grand dam de Cath, sa mère. Lorsque son meilleur ami et voisin Kaz lui annonce qu'il va se marier, la jeune femme s'étonne qu'il accepte d'épouser une inconnue au Pakistan. Cette tradition selon laquelle le choix de sa future femme est "arrangée" ne semble pas le déranger, au contraire de Zoe qui décide de tourner un documentaire sur ce mariage. Mais au fil du temps, elle comprend que c'est à elle de changer sa manière de chercher le grand amour... + Film + Comédie + + + Tout public + + + + Canalissime + Chaque mois, ce tout-en-images fait le tour d'horizon de l'actualité des programmes CANAL+ au fil d'interviews sur les temps forts de l'antenne. + Programme + Divertissement + 0 . 2 . + + Tout public + + + + Moitié.e.s + En couple nomade + Cette collection de programmes courts, de et avec Pauline Clément parodie les podcast intimistes et met en scène des couples d'aujourd'hui qui parlent de leur vision singulière du couple chez eux. + Programme + Divertissement + + 0 . 8 . + + Tout public + + + + Clique + Nouvel horaire, nouvelle formule pour CLIQUE, présenté par Mouloud Achour. A 19h45 Pauline Clavière ouvre le bal avec "Le JT de Clique" , le journal avec tout ce qu'il fallait cliquer dans la journée. Mouloud Achour revient à son exercice signature, le \" Clique X \" face à face iconique, entretien au long cours avec la personnalité du jour. Un invité sociétal viendra ensuite nous éclairer sur le monde actuel, toujours en clair et en direct ! + Magazine + Information + + 0 . 44 . + + Tout public + + + + En aparté + Best of + Une personnalité est invitée par Nathalie Levy à évoquer son actualité et à parler de sa vie et de sa carrière. L'entretien se déroule dans un appartement où l'invité est seul et répond aux questions de son hôte dont on n'entend que la voix. + Programme + Divertissement + + 0 . 40 . + + Tout public + + + + Tchi tcha + TCHI TCHA présentée par Laurie Cholewa revient cette saison en quotidienne, soit une dose journalière de sept minutes de cinéma du lundi au jeudi. TCHI TCHA traite de tous les cinémas avec curiosité à travers des sujets, des entretiens et quelques pépites du Journal du cinéma des années 90. Et chaque semaine, une interview inédite par Laurie Cholewa et une mise en lumière des événements cinéma diffusés sur les chaînes CANAL+. + Culture + Cinéma + + 0 . 35 . + + + -10 + + + + La boîte à questions + Sacrifiant au rituel d'une émission au format maintenant bien connu, une célébrité répond aux questions qui lui sont posées en off. C'est une interview aussi décalée que décontractée qui en découle. Les invités se révèlent souvent sous un autre angle,... + Programme + Divertissement + + 0 . 32 . + + Tout public + + + + Clique + Nouvel horaire, nouvelle formule pour CLIQUE, présenté par Mouloud Achour. A 19h45 Pauline Clavière ouvre le bal avec "Le JT de Clique" , le journal avec tout ce qu'il fallait cliquer dans la journée. Mouloud Achour revient à son exercice signature, le \" Clique X \" face à face iconique, entretien au long cours avec la personnalité du jour. Un invité sociétal viendra ensuite nous éclairer sur le monde actuel, toujours en clair et en direct ! + Magazine + Information + + 0 . 45 . + + Tout public + + + + En aparté + Emission spéciale + Une personnalité est invitée par Nathalie Levy à évoquer son actualité et à parler de sa vie et de sa carrière. L'entretien se déroule dans un appartement où l'invité est seul et répond aux questions de son hôte dont on n'entend que la voix. + Programme + Divertissement + + 0 . 41 . + + Tout public + + + + D'argent et de sang + #5 Anton Zagury + A Tel-Aviv, Anton Zagury, figure du banditisme avec lequel Simon est en contact, accepte de jouer les informateurs en échange d'un arrangement fiscal avec les autorités françaises. De leur côté, Jérôme Attias, Fitous et Bouli continuent d'engranger les millions. A ce rythme là, la fraude risque d'être rapidement incontrôlable. Simon rentre en France pour alerter les autorités qui font la sourde oreille. Mais à Tel-Aviv, son informateur est entré en contact avec les escrocs. + Série + Drame + + 0 . 4 . + + + -10 + + + + Bonne conduite + Formatrice en sécurité routière, Pauline s'investit dans cette mission avec passion, consciente de la nécessité de remettre les chauffards sur le droit chemin. Malgré son flegme et son tact, la jeune femme ne parvient pas à convaincre tous les fous du volant qu'elle reçoit de lever le pied, bien au contraire. Ce manque d'empathie a le don de l'agacer fortement, elle qui possède une méthode inavouable et bien à elle pour régler définitivement le problème des récalcitrants. Mais les surprenants secrets de l'insoupçonnable Pauline vont être découverts par des enquêteurs loin d'être au bout de leurs surprises... + Film + Comédie + + + + -10 + + + + The Son + Peter vient d'avoir un bébé avec sa seconde épouse lorsque Kate, son ex-compagne, lui demande d'accueillir leur fils Nicholas chez lui. L'adolescent de 17 ans est complètement déboussolé et sa mère ne sait pas comment sortir de cette situation. Absent de sa vie depuis son divorce, Peter tente de nouer un lien avec ce fils qu'il n'a jamais vraiment connu, sans pour autant délaisser son nouveau-né et sa femme. Ayant lui aussi vécu une enfance difficile, il souhaite être un bon père pour Nicholas et tente de comprendre les raisons du changement d'attitude de l'adolescent qui était autrefois un enfant souriant et qui est devenu un jeune homme triste et dépressif... + Film + Drame + + + + -10 + + + + Late Sport 360 + 2023/2024. Du décryptage, des débats, des infos, des images inédites pour revenir sur les faits marquants des compétitions diffusées par les chaînes du groupe Canal+, et le meilleur des réseaux sociaux. Football, rugby, Moto GP, Formule 1, ou encore golf et padel au menu de ce magazine concocté par les experts du groupe. + Sport + Multisports + + 0 . 39 . + + Tout public + + + + Nos frangins + En 1986, la France est secouée par de nombreuses manifestations étudiantes contestant le projet de loi Devaquet et sa réforme de l'éducation. A la suite de heurts, la police envoie un peloton de voltigeurs motorisés pour chasser les possibles casseurs. Mais durant la nuit du 5 au 6 décembre, l'étudiant Malik Oussekine décède sous les coups de matraque. C'est une situation délicate pour les forces de l'ordre qui souffrent déjà d'une mauvaise image. Ils font alors tout ce qui est en leur pouvoir pour étouffer l'affaire. Malheureusement pour eux, un autre drame se produit lorsqu'un policier tue Abdel Benyahia, un jeune Algérien, provoquant la colère de sa famille... + Film + Drame + + + + -10 + + + + Têtàtête(s) + Chaque semaine, une interview par Laurie Cholewa des talents ou cinéastes des films à l'affiche, un moment convivial et chaleureux qui raconte les coulisses des films les plus attendus en salles et des films diffusés sur Canal+. + Magazine + Interview + + 0 . 5 . + + + -10 + + + + Le chien aux yeux noirs + Un homme est hanté par son obsession pour un monstre qu'il a vu enfant. + Film + Animation + + + -10 + + + + Lionceaux de la Teranga + 2023. Ils s'appellent Léo, Naïm, Stelio, Axel, Matthias, Tiago, Timothée et ce sont peut-être les futures stars de la Ligue 1. En attendant, ils poursuivent leur formation chez les moins de 16 ans de l'Olympique Lyonnais. Pendant une semaine, ces jeunes footballeurs ont découvert le Sénégal. Entre plongée dans une nouvelle culture et péripéties sportives, récit d'un voyage inoubliable... + Sport + Football + + + Tout public + + + + Voile : Grand Prix de Cadix + Sail GP 2023/2024. Grand Prix de Cadix. Après Chicago, Los Angeles, Saint-Tropez et Tarente, c'est au tour de Cadix, en Andalousie, d'accueillir la 5e étape de la Saison 4 de la SailGP, circuit de courses en équipages, qui rassemble les plus grands skippers au monde et offre des courses trépidantes et des rivalités intenses. + Sport + Voile + + + Tout public + + + + Emission spéciale Victor Wembanyama + Aucune description + Documentaire + Doc. Sport + + + Tout public + + + + Groland le zapoï + Michael Kael, Francis Kuntz, Gustave de Kervern et tous leurs ami(e)s repartent à l'assaut d'une nouvelle saison Grolandaise ! Tous oeuvreront dans l'espoir un peu fou que le Zapoï corresponde enfin à sa définition dans Wikipedia : "un phénomène de société russe se traduisant par une consommation d'alcool conduisant à une ivresse de plusieurs jours." + Divertissement + + + + -10 + + + + En aparté + Emission spéciale + Une personnalité est invitée par Nathalie Levy à évoquer son actualité et à parler de sa vie et de sa carrière. L'entretien se déroule dans un appartement où l'invité est seul et répond aux questions de son hôte dont on n'entend que la voix. + Divertissement + + 0 . 41 . + + Tout public + + + + Brassic + Gideon appelle son amie Vinnie pour lui annoncer que sa mère est décédée et qu'il aimerait son aide pour honorer ses dernières volontés. Avec Gary, Vinnie organise une cérémonie à la hauteur de l'événement. Lors de la veillée funèbre, Gideon retrouve un papier au fond de sa poche avec les souhaits de sa mère. + Série + Série Rires + + + + -10 + + + + La boîte à questions + Sacrifiant au rituel d'une émission au format maintenant bien connu, une célébrité répond aux questions qui lui sont posées en off. C'est une interview aussi décalée que décontractée qui en découle. Les invités se révèlent souvent sous un autre angle,... + Divertissement + + + Tout public + + + + Moitié.e.s + En couple nomade + Cette collection de programmes courts, de et avec Pauline Clément parodie les podcast intimistes et met en scène des couples d'aujourd'hui qui parlent de leur vision singulière du couple chez eux. + Divertissement + + 0 . 8 . + + Tout public + + + + Golda + En 1969, Golda Meir devient Premier ministre d'Israël. Quatre ans, le jour de la fête de Yom Kippour, l'Egypte et la Syrie attaquent le pays par surprise. Golda Meir est très critiquée mais elle fait face à ses responsabilités et prend des décisions difficiles qui vont changer la face du monde. + Film + Film Histoire + + + + -10 + + + + The Fabelmans + Un soir de janvier 1952, Mitzi et Burt Fabelman emmènent leur fils Sammy voir son premier film au cinéma : "Sous le plus grand chapiteau du monde". L'enfant tombe littéralement sous le charme du septième art et développe sa fibre artistique en filmant sa famille la majeure partie de son temps... + Film + Film Passion + + + Tout public + + + + Moitié.e.s + En couple nomade + Cette collection de programmes courts, de et avec Pauline Clément parodie les podcast intimistes et met en scène des couples d'aujourd'hui qui parlent de leur vision singulière du couple chez eux. + Divertissement + + 0 . 8 . + + Tout public + + + + La boîte à questions + Sacrifiant au rituel d'une émission au format maintenant bien connu, une célébrité répond aux questions qui lui sont posées en off. C'est une interview aussi décalée que décontractée qui en découle. Les invités se révèlent souvent sous un autre angle,... + Divertissement + + + Tout public + + + + En aparté + Emission spéciale + Une personnalité est invitée par Nathalie Levy à évoquer son actualité et à parler de sa vie et de sa carrière. L'entretien se déroule dans un appartement où l'invité est seul et répond aux questions de son hôte dont on n'entend que la voix. + Divertissement + + 0 . 41 . + + Tout public + + + + Clique + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Mayday + Lorsqu'il prend place dans sa cabine, le pilote Brodie Torrance ne se doute pas un instant de ce qui l'attend. Traversant une zone de turbulences, l'avion doit atterrir d'urgence, prouesse que Brodie parvient à réussir sur l'île de Jolo, en Indonésie. Les quatorze passagers sont aussitôt pris en otage... + Film + Film Action + + + + -12 + + + + Couleurs de l'incendie + Madeleine Péricourt hérite de toute l'immense fortune de son défunt père, Marcel. Mais cette situation s'avère plus difficile que prévu, surtout lorsque son jeune fils se blesse et se retrouve handicapé. En outre, elle doit se battre contre son banquier et son oncle, qui convoitent son empire. + Film + Film Passion + + + + -10 + + + + Jamel Comedy Club + Aucune description + Divertissement + + + Tout public + + + + Moitié.e.s + Famille nombreuse + Cette collection de programmes courts, de et avec Pauline Clément parodie les podcast intimistes et met en scène des couples d'aujourd'hui qui parlent de leur vision singulière du couple chez eux. + Divertissement + + 0 . 9 . + + Tout public + + + + Clique + Aucune description + Magazine + Mag. Société + + + Tout public + + + + En aparté + Emission spéciale + Une personnalité est invitée par Nathalie Levy à évoquer son actualité et à parler de sa vie et de sa carrière. L'entretien se déroule dans un appartement où l'invité est seul et répond aux questions de son hôte dont on n'entend que la voix. + Divertissement + + 0 . 41 . + + Tout public + + + + Tchi tcha + Tchi Tcha traite de tous les cinémas avec curiosité à travers des sujets, des entretiens et quelques pépites du "Journal du cinéma" des années 90. Au programme également, une interview inédite et une mise en lumière des événements cinéma diffusés sur les chaînes Canal+. + Magazine + Mag. Cinéma + + + + -10 + + + + Clique + Aucune description + Magazine + Mag. Société + + + Tout public + + + + La boîte à questions + Sacrifiant au rituel d'une émission au format maintenant bien connu, une célébrité répond aux questions qui lui sont posées en off. C'est une interview aussi décalée que décontractée qui en découle. Les invités se révèlent souvent sous un autre angle,... + Divertissement + + + Tout public + + + + En aparté + Une personnalité est invitée par Nathalie Levy à évoquer son actualité et à parler de sa vie et de sa carrière. L'entretien se déroule dans un appartement où l'invité est seul et répond aux questions de son hôte dont on n'entend que la voix. + Divertissement + + + Tout public + + + + De grandes espérances + Issue d'une famille modeste, Madeleine possède un caractère de battante et beaucoup d'ambition. La jeune femme se rend en Corse pour préparer l'oral du concours d'entrée à l'ENA dans la maison d'Antoine, son compagnon. Sur place, Madeleine ne cache pas qu'elle rêve de devenir présidente de la République... + Film + Film Passion + + + + -10 + + + + Je verrai toujours vos visages + Grégoire, Nawelle, Sabine et Chloé ont été victimes de braquages, de vols à l'arraché ou encore de viols incestueux. Ils acceptent de rejoindre une association qui utilise la justice restaurative. C'est ainsi qu'ils se retrouvent face aux auteurs des infractions pour tenter d'instaurer un dialogue. + Film + Film Passion + + + + -10 + + + + Les femmes du square + Pour échapper à la vengeance de malfrats, Angèle, une Ivoirienne d'une trentaine d'années, parvient à se faire embaucher comme nounou par Hélène, une mère célibataire qui vit dans un quartier parisien bourgeois. Mais très vite, la jeune femme se rend compte que sa nouvelle situation est synonyme de précarité... + Film + Film Rires + + + Tout public + + + + Les Engagés + Alors qu'il circule de nuit sur une route enneigée des Hautes-Alpes, David renverse un jeune migrant qu'il aperçoit trop tard. Très vite, David comprend que celui-ci fuit la police. Sans hésiter, il propose à la victime de monter dans son coffre pour tenter de l'aider à échapper à ses poursuivants... + Film + Film Passion + + + + -10 + + + + Voyages au bout de l'effort + Face aux lutteurs sénégalais + Victor Bergeon se rend au Sénégal, où il explore l'univers fascinant de la lutte traditionnelle, un sport ancestral profondément ancré dans la culture du pays. + Documentaire + Doc. Découverte + + 0 . 0 . + + Tout public + + + + Golf+, le mag + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Fár + Un oiseau heurte la fenêtre d'un café et perturbe ses clients. Une femme est confrontée à la décision d'ignorer la nature ou de réagir. + Film + Court Métrage + + + + -10 + + + + Le cercle + LE CERCLE CINÉMA rentre dans sa 19ème saison. C'est la seule émission télévisée de débats critiques 100onsacrée au cinéma. Elle offre chaque semaine des joutes enflammées, joyeuses et sans préjugés, sur les films à l'affiche. Elle invite les cinéastes à venir partager leur passion cinéphile. Tant qu'il y aura du cinéma, LE CERCLE sera là. + Magazine + Mag. Cinéma + + + + -10 + + + + En aparté + Vitaa + Une personnalité est invitée par Nathalie Levy à évoquer son actualité et à parler de sa vie et de sa carrière. L'entretien se déroule dans un appartement où l'invité est seul et répond aux questions de son hôte dont on n'entend que la voix. + Divertissement + + 0 . 38 . + + Tout public + + + + Brassic + Doolan, le cousin d'Ashley, a été enlevé. Son oncle Francis demande à Vinnie de servir de coursier pour livrer l'argent de la rançon. Mais le montant dû est perdu en cours de route. Pour se rattraper, ils feignent de donner la rançon et suivent celui à qui ils la remettent pour découvrir où est retenu Doolan. + Série + Série Rires + + + + -10 + + + + La boîte à questions + Sacrifiant au rituel d'une émission au format maintenant bien connu, une célébrité répond aux questions qui lui sont posées en off. C'est une interview aussi décalée que décontractée qui en découle. Les invités se révèlent souvent sous un autre angle,... + Divertissement + + + Tout public + + + + Moitié.e.s + Famille nombreuse + Cette collection de programmes courts, de et avec Pauline Clément parodie les podcast intimistes et met en scène des couples d'aujourd'hui qui parlent de leur vision singulière du couple chez eux. + Divertissement + + 0 . 9 . + + Tout public + + + + Alibi.com 2 + Jadis à la tête d'une agence chargée de fournir des alibis, Greg a préféré abandonner cette activité peu noble en vue de son prochain mariage avec Flo. Alors que la cérémonie approche, Greg ne se résout pas à présenter ses parents, dont les parcours professionnels sont inhabituels, à sa belle-famille... + Film + Film Rires + + + + -10 + + + + Têtàtête(s) + Chaque semaine, une interview par Laurie Cholewa des talents ou cinéastes des films à l'affiche, un moment convivial et chaleureux qui raconte les coulisses des films les plus attendus en salles et des films diffusés sur Canal+. + Magazine + + + + -10 + + + + 10 jours encore sans maman + Depuis son licenciement, Antoine s'occupe de ses quatre enfants au quotidien, une tâche bien plus éreintante que ce qu'il imaginait. Après deux ans d'efforts, il rêve de repos et compte sur sa femme Isabelle pour l'aider durant les vacances. Au dernier moment, elle se désiste à cause du travail... + Film + Film Rires + + + Tout public + + + + Hot Ones + Leïla Bekhti ne sait pas pourquoi elle pleure + Aucune description + Divertissement + + 1 . 1 . + + Tout public + + + + Moitié.e.s + Famille nombreuse + Cette collection de programmes courts, de et avec Pauline Clément parodie les podcast intimistes et met en scène des couples d'aujourd'hui qui parlent de leur vision singulière du couple chez eux. + Divertissement + + 0 . 9 . + + Tout public + + + + La boîte à questions + Sacrifiant au rituel d'une émission au format maintenant bien connu, une célébrité répond aux questions qui lui sont posées en off. C'est une interview aussi décalée que décontractée qui en découle. Les invités se révèlent souvent sous un autre angle,... + Divertissement + + + Tout public + + + + En aparté + Une personnalité est invitée par Nathalie Levy à évoquer son actualité et à parler de sa vie et de sa carrière. L'entretien se déroule dans un appartement où l'invité est seul et répond aux questions de son hôte dont on n'entend que la voix. + Divertissement + + + Tout public + + + + Clique + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Supercell + William Brody est un jeune homme généreux et passionné. Son père, Bill Brody, était un chasseur de tempêtes devenu légendaire. Malheureusement, il est mort lors du passage d'une tornade dévastatrice. Depuis, son entreprise a été reprise par Zane Rogers, un homme d'affaires qui n'hésite pas à utiliser le nom des Brody pour faire fructifier son business... + Film + Film Action + + + + -10 + + + + Jamel Comedy Club + Jamel ouvre la scène du Comedy Club aux nouveaux talents... + Divertissement + + + Tout public + + + + Donjons & Dragons : L'honneur des voleurs + Au Moyen Age, sur le Vieux Continent. Edgin et Holga, un barde et une guerrière barbare, s'échappent de la forteresse dans laquelle ils sont retenus depuis deux ans après un vol qui a mal tourné. Les deux compagnons sont bien décidés à se venger de Forge Fitzwilliam, le complice qui les a trahis... + Film + Film Action + + + + -10 + + + + Têtàtête(s) + Chaque semaine, une interview par Laurie Cholewa des talents ou cinéastes des films à l'affiche, un moment convivial et chaleureux qui raconte les coulisses des films les plus attendus en salles et des films diffusés sur Canal+. + Magazine + + + + -10 + + + + Moitié.e.s + En couple dans les années 60 + Cette collection de programmes courts, de et avec Pauline Clément parodie les podcast intimistes et met en scène des couples d'aujourd'hui qui parlent de leur vision singulière du couple chez eux. + Divertissement + + 0 . 10 . + + Tout public + + + + Clique + Aucune description + Magazine + Mag. Société + + + Tout public + + + + En aparté + Une personnalité est invitée par Nathalie Levy à évoquer son actualité et à parler de sa vie et de sa carrière. L'entretien se déroule dans un appartement où l'invité est seul et répond aux questions de son hôte dont on n'entend que la voix. + Divertissement + + + Tout public + + + + Tchi tcha + Aucune description + Magazine + Mag. Cinéma + + + + -10 + + + + La boîte à questions + Sacrifiant au rituel d'une émission au format maintenant bien connu, une célébrité répond aux questions qui lui sont posées en off. C'est une interview aussi décalée que décontractée qui en découle. Les invités se révèlent souvent sous un autre angle,... + Divertissement + + + Tout public + + + + Previously CCC Ligue des champions + PSV Eindhoven - Lens + Aucune description + Magazine + Mag. Sport + + 0 . 0 . + + Tout public + + + + Canal Champions Club + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Avant-match : Ligue des champions + PSV Eindhoven - Lens + Aucune description + Magazine + Mag. Sport + + 0 . 0 . + + Tout public + + + + Football : Ligue des champions + Aucune description + Sport + Football + + + Tout public + + + + Canal Champions Club le debrief + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Benjamin Tranié - Le Dernier Relais + Aucune description + Divertissement + Spectacle + + + + -10 + + + + D'argent et de sang + #5 Anton Zagury + A Tel-Aviv, Anton Zagury, une figure du banditisme avec lequel Simon est en contact, accepte finalement de jouer les informateurs en échange d'un arrangement fiscal avec les autorités françaises. De leur côté, Jérôme Attias, Fitous et Bouli continuent d'engranger les millions rapidement. + Série + Série Passion + + 0 . 4 . + + + -10 + + + + Un bon moment + Best of + Kyan Khojandi et Navo passent de bons moments avec des gens qui aiment passer un bon moment. + Divertissement + + 0 . 4 . + + Tout public + + + + Le cercle + LE CERCLE CINÉMA rentre dans sa 19ème saison. C'est la seule émission télévisée de débats critiques 100onsacrée au cinéma. Elle offre chaque semaine des joutes enflammées, joyeuses et sans préjugés, sur les films à l'affiche. Elle invite les cinéastes à venir partager leur passion cinéphile. Tant qu'il y aura du cinéma, LE CERCLE sera là. + Magazine + Mag. Cinéma + + + + -10 + + + + Le 5e tour + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Et maintenant ? + Aucune description + Film + Court Métrage + + + Tout public + + + + Une berceuse pour les roses jaunes + Après avoir perdu leur fille à cause d'un destin malheureux, un couple de la classe ouvrière migrante trouve du réconfort l'un dans l'autre en tant qu'amis. + Film + Court Métrage + + + Tout public + + + + En aparté + Best of + Une personnalité est invitée par Nathalie Levy à évoquer son actualité et à parler de sa vie et de sa carrière. L'entretien se déroule dans un appartement où l'invité est seul et répond aux questions de son hôte dont on n'entend que la voix. + Divertissement + + 0 . 40 . + + Tout public + + + + Brassic + Toujours lancé dans une procédure de divorce houleuse, monsieur Bishop charge Vinnie de dérober trois voitures de luxe que sa femme refuse de lui rendre. La bande d'acolytes met au point un plan élaboré mais réalise alors qu'elle a été piégée. De son côté, Erin reçoit une aide financière de Terence McCann + Série + Série Rires + + + + -10 + + + + La boîte à questions + Sacrifiant au rituel d'une émission au format maintenant bien connu, une célébrité répond aux questions qui lui sont posées en off. C'est une interview aussi décalée que décontractée qui en découle. Les invités se révèlent souvent sous un autre angle,... + Divertissement + + + Tout public + + + + Moitié.e.s + En couple dans les années 60 + Cette collection de programmes courts, de et avec Pauline Clément parodie les podcast intimistes et met en scène des couples d'aujourd'hui qui parlent de leur vision singulière du couple chez eux. + Divertissement + + 0 . 10 . + + Tout public + + + + Je verrai toujours vos visages + Grégoire, Nawelle, Sabine et Chloé ont été victimes de braquages, de vols à l'arraché ou encore de viols incestueux. Ils acceptent de rejoindre une association qui utilise la justice restaurative. C'est ainsi qu'ils se retrouvent face aux auteurs des infractions pour tenter d'instaurer un dialogue. + Film + Film Passion + + + + -10 + + + + Tchi tcha + Aucune description + Magazine + Mag. Cinéma + + + + -10 + + + + Dead for a Dollar + En 1897, au Nouveau-Mexique, Max Borlund, un chasseur de primes, apprend que Joe Cribbens, qu'il a mis derrière les barreaux cinq ans plus tôt, va bientôt être libéré. Par ailleurs, il est engagé par Martin Kidd, un homme d'affaires de Santa Fe, pour retrouver sa femme Rachel, qui aurait été enlevée. + Film + Film Action + + + + -10 + + + + Moitié.e.s + En couple dans les années 60 + Cette collection de programmes courts, de et avec Pauline Clément parodie les podcast intimistes et met en scène des couples d'aujourd'hui qui parlent de leur vision singulière du couple chez eux. + Divertissement + + 0 . 10 . + + Tout public + + + + La boîte à questions + Sacrifiant au rituel d'une émission au format maintenant bien connu, une célébrité répond aux questions qui lui sont posées en off. C'est une interview aussi décalée que décontractée qui en découle. Les invités se révèlent souvent sous un autre angle,... + Divertissement + + + Tout public + + + + En aparté + Best of + Une personnalité est invitée par Nathalie Levy à évoquer son actualité et à parler de sa vie et de sa carrière. L'entretien se déroule dans un appartement où l'invité est seul et répond aux questions de son hôte dont on n'entend que la voix. + Divertissement + + 0 . 40 . + + Tout public + + + + Clique + Aucune description + Magazine + Mag. Société + + + Tout public + + + + D'argent et de sang + #5 Anton Zagury + A Tel-Aviv, Anton Zagury, une figure du banditisme avec lequel Simon est en contact, accepte finalement de jouer les informateurs en échange d'un arrangement fiscal avec les autorités françaises. De leur côté, Jérôme Attias, Fitous et Bouli continuent d'engranger les millions rapidement. + Série + Série Passion + + 0 . 4 . + + + -10 + + + + She Said + Jodi et Megan, jeunes journalistes du New York Times, se voient confier une mission délicate par leur hiérarchie. En effet, face à d'insistantes rumeurs et face aux soupçons de harcèlement et de violences sexuelles à Hollywood, leur supérieure les invite à mener l'enquête sur ce scandale étouffé... + Film + Film Passion + + + + -10 + + + + Plateaux Canal+ premières + Golda + Aucune description + Magazine + Mag. Cinéma + + 0 . 1 . + + Tout public + + + + Golda + En 1969, Golda Meir devient Premier ministre d'Israël. Quatre ans, le jour de la fête de Yom Kippour, l'Egypte et la Syrie attaquent le pays par surprise. Golda Meir est très critiquée mais elle fait face à ses responsabilités et prend des décisions difficiles qui vont changer la face du monde. + Film + Film Histoire + + + + -10 + + + + Moitié.e.s + PMA + Cette collection de programmes courts, de et avec Pauline Clément parodie les podcast intimistes et met en scène des couples d'aujourd'hui qui parlent de leur vision singulière du couple chez eux. + Divertissement + + 0 . 11 . + + Tout public + + + + Clique + Aucune description + Magazine + Mag. Société + + + Tout public + + + + En aparté + Best of + Une personnalité est invitée par Nathalie Levy à évoquer son actualité et à parler de sa vie et de sa carrière. L'entretien se déroule dans un appartement où l'invité est seul et répond aux questions de son hôte dont on n'entend que la voix. + Divertissement + + 0 . 40 . + + Tout public + + + + Tchi tcha + Aucune description + Magazine + Mag. Cinéma + + + + -10 + + + + Clique + Aucune description + Magazine + Mag. Société + + + Tout public + + + + La boîte à questions + Sacrifiant au rituel d'une émission au format maintenant bien connu, une célébrité répond aux questions qui lui sont posées en off. C'est une interview aussi décalée que décontractée qui en découle. Les invités se révèlent souvent sous un autre angle,... + Divertissement + + + Tout public + + + + En aparté + Une personnalité est invitée par Nathalie Levy à évoquer son actualité et à parler de sa vie et de sa carrière. L'entretien se déroule dans un appartement où l'invité est seul et répond aux questions de son hôte dont on n'entend que la voix. + Divertissement + + + Tout public + + + + Gangs of London + Elliot avoue à son père qu'ils sont traqués. Charlie lui propose de laisser tout ça derrière lui, mais son fils ne peut pas s'y résoudre. De son côté, Sean sait que la guerre est loin d'être terminée. Asif reproche à Koba de n'avoir pas été vigilant et le charge d'éliminer Sean rapidement. + Série + Série Action + + + + -16 + + + + Gangs of London + Les cartes sont rebattues, et les alliances évoluent. Reprochant à son fils une entente qui ne peut que mal tourner, Marian propose à Ed de reprendre ce qu'ils ont construit. Lale se retrouve en bien mauvaise posture. + Série + Série Action + + + + -16 + + + + Alexia cuisine la France + Normandie + En Normandie, Alexia compose un menu unique et revisite les recettes traditionnelles de la cuisine locale en utilisant les produits emblématiques de la région. + Documentaire + Doc. Découverte + + 0 . 0 . + + Tout public + + + + Voyages au bout de l'effort + Face aux lutteurs sénégalais + Victor Bergeon se rend au Sénégal, où il explore l'univers fascinant de la lutte traditionnelle, un sport ancestral profondément ancré dans la culture du pays. + Documentaire + Doc. Découverte + + 0 . 0 . + + Tout public + + + + Late Sport 360 + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Neneh Superstar + Passionnée de danse, Neneh, 12 ans, semble s'approcher de son objectif de devenir ballerine. Originaire de banlieue, la préadolescente parvient à intégrer l'école de danse de l'Opéra national de Paris grâce au soutien du directeur de la compagnie, mais contre l'avis de la directrice de l'établissement... + Film + Film Passion + + + Tout public + + + + Déambulations : Sofiane Pamart à l'Olympia + Aucune description + Musique + Variétés + + + Tout public + + + + Fár + Un oiseau heurte la fenêtre d'un café et perturbe ses clients. Une femme est confrontée à la décision d'ignorer la nature ou de réagir. + Film + Court Métrage + + + + -10 + + + + Rugby : Pro D2 + Aucune description + Sport + Rugby + + + Tout public + + + + Fin des programmes + Nos programmes se terminent pour cette journée, en attendant ceux de demain. + Programme + Fin + + + Tout public + + + + Faut voir ! L'hebdo cinéma + "FAUT VOIR ! L'HEBDO CINÉMA c'est à la fois une invitation, une proposition, un conseil, et pourquoi pas une injonction, d'où le point d'exclamation ! Ce qu'il faut voir, c'est ce que le cinéma propose de mieux chaque semaine sur les écrans, une passion qui se partage sérieusement, mais je l'espère sans esprit de sérieux." - Antoine de Caunes + Culture + Cinéma + + 0 . 6 . + + + -10 + + + + Les miens + Très proches, Ryad et Moussa sont deux frères avec des caractères pourtant diamétralement opposés. L'un, Moussa, brille par son altruisme et ne manque pas une occasion de se montrer aux petits soins pour ses proches. L'autre, Ryad, un célèbre animateur de télévision, fait preuve d'un égocentrisme agaçant pour son entourage. Un jour, suite à un malheureux accident, Moussa se fait diagnostiquer un traumatisme crânien. Désormais métamorphosé, l'homme semble être devenu la copie conforme de son frère et s'attire les foudres de sa famille, déboussolée par ses dérapages verbaux. Seul Ryad paraît profiter d'une certaine bienveillance... + Film + Drame + + + + -10 + + + + The Fabelmans + Un soir de janvier 1952, Mitzi et Burt Fabelman emmènent leur fils Sammy voir son premier film au cinéma : "Sous le plus grand chapiteau du monde". L'enfant tombe sous le charme du septième art et passe la majeure partie de son temps à filmer les activités familiales. Sa mère le pousse à développer ce côté artistique tandis que son père, un scientifique, n'y voit qu'un hobby. Au fil du temps, Sammy tourne des films de plus en plus perfectionnés en utilisant les membres de sa famille comme acteurs. Jusqu'au jour où il découvre, à travers l'une de ses oeuvres, une facette de sa mère qui va bouleverser leurs rapports… + Film + Drame + + + Tout public + + + + The Son + Peter vient d'avoir un bébé avec sa seconde épouse lorsque Kate, son ex-compagne, lui demande d'accueillir leur fils Nicholas chez lui. L'adolescent de 17 ans est complètement déboussolé et sa mère ne sait pas comment sortir de cette situation. Absent de sa vie depuis son divorce, Peter tente de nouer un lien avec ce fils qu'il n'a jamais vraiment connu, sans pour autant délaisser son nouveau-né et sa femme. Ayant lui aussi vécu une enfance difficile, il souhaite être un bon père pour Nicholas et tente de comprendre les raisons du changement d'attitude de l'adolescent qui était autrefois un enfant souriant et qui est devenu un jeune homme triste et dépressif... + Film + Drame + + + + -10 + + + + The Lost King + Lorsque Philippa Langley voit une autre femme, plus jeune et plus belle, obtenir une promotion à sa place, c'est la goutte d'eau qui fait déborder le vase. Effondrée, elle s'aère l'esprit en allant voir une pièce de théâtre consacrée au roi Richard III. Elle s'identifie à ce monarque controversé et décide de se lancer dans un défi assez fou, rétablir la vérité sur son histoire. Elle arrête de travailler et débute son enquête dans la ville de Leicester où le corps de Richard III serait enterré. Pour ses recherches, elle rejoint une association locale et rencontre notamment l'archéologue Richard Buckley qui va l'aider dans ses recherches... + Film + Comédie dramatique + + + Tout public + + + + Les Banshees d'Inisherin + Sur leur petite île au large de l'Irlande, Pádraic et Colm font figure d'inséparables pour les quelques centaines d'habitants de cet endroit coupé du monde. Pourtant, cette amitié de longue date prend soudainement fin quand Colm, du jour au lendemain, demande à Pádraic de ne plus lui adresser la parole. Totalement abasourdi, Pádraic tente de connaître les raisons de ce revirement, mais n'obtient que de vagues et mystérieuses explications, loin d'être satisfaisantes selon lui. Dès lors, il ne cesse de harceler son ancien acolyte qui se mure de plus en plus face à ce comportement qu'il juge déplacé, jusqu'à émettre des menaces... + Film + Comédie dramatique + + + + -10 + + + + Les Gardiennes de la planète + Un rorqual à bosse s'échoue sur un rivage isolé. Son sauvetage va nécessiter toute une organisation, mobilisant de gros moyens et de nombreuses personnes. Cette mission remet en perspective la présence et surtout l'importance de ces cétacés dans les océans du monde. Ces baleines, présentes depuis plus de 50 millions d'années, sont devenues une espèce menacée par l'homme alors que leur existence est indispensable au bon fonctionnement de l'écosystème. La survie du plus grand mammifère du monde est intimement liée à celle de l'homme... + Film + Documentaire + + + Tout public + + + + Le cercle + LE CERCLE CINÉMA rentre dans sa 19ème saison. C'est la seule émission télévisée de débats critiques 100onsacrée au cinéma. Elle offre chaque semaine des joutes enflammées, joyeuses et sans préjugés, sur les films à l'affiche. Elle invite les cinéastes à venir partager leur passion cinéphile. Tant qu'il y aura du cinéma, LE CERCLE sera là. + Culture + Cinéma + + 0 . 8 . + + + -10 + + + + Dead for a Dollar + En 1897, au Nouveau-Mexique, Max Borlund, un chasseur de primes, apprend que Joe Cribbens, un joueur professionnel et hors-la-loi qu'il a mis derrière les barreaux cinq ans plus tôt, va bientôt être libéré. Par ailleurs, il est engagé par Martin Kidd, un homme d'affaires de Santa Fe, pour retrouver sa femme Rachel, qui aurait été enlevée par Elijah Jones, un déserteur afro-américain. Max découvre rapidement que la situation n'est pas tout à fait celle qu'on lui a décrite : les deux amants se cachent en fait d'un mari violent. Au cours de sa mission, le chasseur de primes recroise la route de son ennemi juré. + Action + Western + + + + -10 + + + + Mon crime + Madeleine Verdier tente de réussir dans le monde du cinéma français des années 1930. Malheureusement pour la jeune femme, son talent d'actrice n'est pas reconnu par les professionnels du milieu, ce qui la laisse dans une situation financière compliquée. Le jour où un célèbre producteur est retrouvé assassiné, les soupçons se portent sur l'actrice. Elle décide d'avouer ce crime, mais grâce au travail de sa meilleure amie, Pauline, avocate de profession, elle obtient son acquittement. S'ouvre alors un tout nouvel horizon pour Madeleine, qui voit là une chance de réaliser ses rêves. + Film + Comédie + + + + -10 + + + + Sous le sable + Comme chaque été, Jean et Marie Drillon, la cinquantaine aisée, s'offrent des vacances dans les Landes. Le lendemain de son arrivée, le couple se rend à la plage. Jean part se baigner, et ne revient pas. Marie alerte les garde-côtes, mais les recherches restent vaines. Noyade ou simple disparition ? Marie opte pour la seconde hypothèse. De retour à Paris, elle reprend le cours normal de sa vie, comme si rien ne s'était passé. Jean fait toujours partie de son quotidien. Elle le voit, l'entend, lui parle. Au cours d'un dîner chez Amanda, sa meilleure amie, Marie fait la connaissance de Vincent, un éditeur qui s'éprend d'elle. Amanda pousse Marie à consulter un psychologue, en vain... + Film + Drame + + + + -10 + + + + Le cercle + LE CERCLE CINÉMA rentre dans sa 19ème saison. C'est la seule émission télévisée de débats critiques 100onsacrée au cinéma. Elle offre chaque semaine des joutes enflammées, joyeuses et sans préjugés, sur les films à l'affiche. Elle invite les cinéastes à venir partager leur passion cinéphile. Tant qu'il y aura du cinéma, LE CERCLE sera là. + Culture + Cinéma + + 0 . 8 . + + + -10 + + + + Fár + Un oiseau heurte la fenêtre d'un café et perturbe ses clients. Une femme est confrontée à la décision d'ignorer la nature ou de réagir. + Film + Drame + + + -10 + + + + Les amants criminels + Alice s'ennuie dans sa petite ville de banlieue parisienne, où les maisons se ressemblent toutes et où les distractions manquent cruellement. Pour pimenter son existence, la jeune fille se prend à souhaiter vivre une grande aventure à la "Bonnie and Clyde". Elle convainc Luc, son petit ami, d'assassiner un de leurs camarades de classe, le beau Saïd, dont l'assurance le désigne comme la victime idéale. Ayant tout prévu dans les moindres détails, le couple passe à l'acte. Mais dans leur naïveté, les deux jeunes gens n'avaient pas imaginé si piteuse issue à leur mauvais coup... + Film + Drame + + + + -16 + + + + Sitcom + Une famille bourgeoise classique : un père ingénieur, toujours absent, au propre comme au figuré, une mère au foyer pleine d'entrain, et deux grands enfants, Sophie et Nicolas. La vie tranquille de ce petit monde bascule lorsque Jean, le père, ramène un petit rat de laboratoire à la maison... + Film + Comédie + + + + -12 + + + + Fin des programmes + Nos programmes se terminent pour cette journée, en attendant ceux de demain. + Programme + Fin + + + Tout public + + + + Le cercle + LE CERCLE CINÉMA rentre dans sa 19ème saison. C'est la seule émission télévisée de débats critiques 100onsacrée au cinéma. Elle offre chaque semaine des joutes enflammées, joyeuses et sans préjugés, sur les films à l'affiche. Elle invite les cinéastes à venir partager leur passion cinéphile. Tant qu'il y aura du cinéma, LE CERCLE sera là. + Culture + Cinéma + + 0 . 8 . + + + -10 + + + + L'innocent + Après avoir rencontré Michel, un détenu, Sylvie décide de l'épouser. Apprenant la nouvelle, son fils Abel devient fou de rage, connaissant les mauvais choix précédents de sa mère. Il décide de protéger cette dernière avec l'aide de sa meilleure amie, et de suivre Michel dans tous ses déplacements. Il comprend très vite que celui-ci prépare un nouveau coup : le braquage d'un camion contenant du caviar. Et selon lui il s'agit d'une occasion en or, sans risque, puisque le chauffeur a toujours les mêmes habitudes dans le même restaurant. Mais lorsque l'occasion s'annonce trop belle, il y a toujours le risque qu'un imprévu complique l'affaire... + Film + Comédie policière + + + + -10 + + + + Youssef Salem a du succès + Malgré ses tentatives de plus en plus désespérées, Youssef Salem ne parvient pas à séduire les lecteurs avec ses romans, et le succès se fait attendre depuis bien trop longtemps. Miné par ses échecs, le quadragénaire ne pense prendre aucun risque en choisissant un sujet quelque peu original pour son nouvel ouvrage. En effet, Youssef décide de s'inspirer de son entourage proche, décrivant des scènes de son quotidien. Le livre fait un carton, à son grand dam. Car désormais, le seul objectif pour Youssef, c'est d'empêcher les membres de sa famille de tomber sur ce fameux récit autobiographique, de peur d'inévitables représailles... + Film + Comédie + + + + -10 + + + + Les femmes du square + Pour échapper à la vengeance d'une bande de malfrats, Angèle, une Ivoirienne d'une trentaine d'années, parvient à trouver un emploi stable en se faisant embaucher comme nounou par Hélène, une mère célibataire qui vit dans un quartier parisien bourgeois. Angèle doit s'occuper d'un bébé et du petit Arthur, âgé de 8 ans. Mais très vite, la jeune femme se rend compte que sa nouvelle situation est synonyme de précarité, tout comme celle de ses consoeurs. Elle décide d'obtenir justice pour toutes ces femmes exploitées et fait appel à Edouard, un avocat qui ne tarde pas à tomber sous son charme... + Film + Comédie + + + Tout public + + + + Le cercle + LE CERCLE CINÉMA rentre dans sa 19ème saison. C'est la seule émission télévisée de débats critiques 100onsacrée au cinéma. Elle offre chaque semaine des joutes enflammées, joyeuses et sans préjugés, sur les films à l'affiche. Elle invite les cinéastes à venir partager leur passion cinéphile. Tant qu'il y aura du cinéma, LE CERCLE sera là. + Culture + Cinéma + + 0 . 8 . + + + -10 + + + + Je verrai toujours vos visages + Grégoire, Nawelle, Sabine et Chloé ont été victimes de braquages, de vols à l'arraché ou encore de viols incestueux. Ils acceptent de rejoindre une association qui utilise la justice restaurative. C'est ainsi qu'ils se retrouvent face aux auteurs des infractions pour tenter d'instaurer un dialogue. Pour cela, ils sont entourés par des professionnels et des bénévoles qui mettent en place un cadre sécurisé. Les victimes expliquent ce qu'elles ont vécu, tout en essayant de comprendre les mobiles de leurs agresseurs. + Film + Drame + + + + -10 + + + + Têtàtête(s) + Jeanne Herry + Chaque semaine, une interview par Laurie Cholewa des talents ou cinéastes des films à l'affiche, un moment convivial et chaleureux qui raconte les coulisses des films les plus attendus en salles et des films diffusés sur Canal+. + Magazine + Interview + + 0 . 4 . + + + -10 + + + + Juste ciel ! + Cinq religieuses sont déterminées à trouver l'argent nécessaire aux travaux de rénovation d'un Ehpad qui tombe en ruines. Dans leur quête, elles démarchent les collectivités locales, mais comprennent que la seule solution serait de participer à une course cycliste dont le premier prix est d'un montant assez élevé. Le hic c'est qu'elles n'ont aucune expérience dans le domaine et doivent demander de l'aide à Monsieur Pierre pour les entraîner. En outre, elles doivent faire face à une concurrence inattendue avec l'apparition de religieuses d'une autre paroisse, qui sont des spécialistes de la discipline et souhaitent rafler la mise... + Film + Comédie + + + + -10 + + + + Marlowe + 1939, Bay City en Californie. En perte de vitesse, le détective privé Philip Marlowe est contacté par la riche Clare Cavendish qui lui demande de retrouver son amant, Nico Peterson, disparu sans laisser de traces. Marlowe part alors à la recherche d'indices qui l'amènent au Club Corbata, un cercle privé où se retrouvent les personnes les plus puissantes de Los Angeles. Mais la curiosité de Marlowe n'est pas du goût de ses anciens collègues de la police, qui n'apprécient pas de le voir fouiner dans les coulisses de Hollywood et dans les affaires d'une des familles les plus influentes et respectées de la ville... + Action + Policier + + + Tout public + + + + Kanun, la loi du sang + Né en Albanie, Lorik n'a pas eu d'autre choix que de fuir son pays vers la Belgique dès son plus jeune âge en raison des menaces qui pesaient sur sa famille. A Bruxelles, des choix hasardeux et de mauvaises fréquentations ont gâché son adolescence, mais le jeune homme a su remonter la pente. Par ailleurs, sa récente rencontre avec Sema, une étudiante en art, provoque un nouveau déclic chez Lorik, qui rêve désormais de fonder un foyer avec sa petite amie. Ses espoirs s'effondrent soudain comme un château de cartes quand il apprend qu'il est rattrapé par son lointain passé. Selon la tradition, son sang doit couler pour éponger une dette... + Action + Policier + + + + -12 + + + + Têtàtête(s) + Chaque semaine, une interview par Laurie Cholewa des talents ou cinéastes des films à l'affiche, un moment convivial et chaleureux qui raconte les coulisses des films les plus attendus en salles et des films diffusés sur Canal+. + Magazine + Interview + + 0 . 5 . + + + -10 + + + + Une comédie romantique + Après trois années sans donner aucune nouvelle, ni à ses proches, ni à sa compagne, César refait soudain irruption dans la vie de tous ceux qu'il avait abandonnés sans explication. Stupéfait, le trentenaire découvre à cet instant qu'il est le père d'une fillette de 3 ans que Salomé, son ancienne compagne, élève seule. Evidemment, la colère envahit cette dernière à la vue de celui qu'elle considère comme un lâche, mais les efforts de César finissent par porter leurs fruits et lui permettent, malgré les nombreux secrets encore inavoués, de recoller peu à peu les morceaux... + Film + Comédie + + + Tout public + + + + La revanche des Crevettes pailletées + Alors que les "Gay Games" de Tokyo approchent à grands pas, les Crevettes pailletées préparent activement leur participation aux compétitions de water-polo. Après des heures d'entraînement, Matthias, Cédric, Joël et consorts embarquent à bord d'un avion en direction du Japon. Malheureusement, le voyage subit un imprévu qui les force à séjourner dans une zone reculée de Russie, où l'homosexualité est vue d'un très mauvais oeil par des locaux pour le moins rustres. En attendant de rejoindre sa destination, le groupe fait contre mauvaise fortune bon coeur et se plie aux dérangeantes coutumes et traditions locales... + Film + Comédie + + + + -10 + + + + Bonne conduite + Formatrice en sécurité routière, Pauline s'investit dans cette mission avec passion, consciente de la nécessité de remettre les chauffards sur le droit chemin. Malgré son flegme et son tact, la jeune femme ne parvient pas à convaincre tous les fous du volant qu'elle reçoit de lever le pied, bien au contraire. Ce manque d'empathie a le don de l'agacer fortement, elle qui possède une méthode inavouable et bien à elle pour régler définitivement le problème des récalcitrants. Mais les surprenants secrets de l'insoupçonnable Pauline vont être découverts par des enquêteurs loin d'être au bout de leurs surprises... + Film + Comédie + + + + -10 + + + + The Whale + Cela fait dix ans que Charlie, un professeur d'anglais, n'a plus de contact avec sa fille Ellie, depuis qu'il a quitté le foyer familial pour se mettre en couple avec son amant. Après le décès de ce dernier, il noie son chagrin dans la nourriture atteignant une obésité morbide. Pour renouer avec l'adolescente de 17 ans, il lui propose d'écrire ses rédactions scolaires en espérant se rapprocher d'elle. Son état de santé se dégradant, Charlie donne désormais ses cours en ligne sans allumer sa webcam et vit en reclus. Ses seules visites sont celles de son amie infirmière Liz. Jusqu'au jour où il rencontre Thomas, un missionnaire de la New Life Church... + Film + Drame + + + + -10 + + + + Fin des programmes + Nos programmes se terminent pour cette journée, en attendant ceux de demain. + Programme + Fin + + + Tout public + + + + Fin des programmes + Nos programmes se terminent pour cette journée, en attendant ceux de demain. + Programme + Fin + + + Tout public + + + + La part du Lion : Une histoire de la Mostra + La Mostra de Venise, plus ancien festival de cinéma du monde, célèbre en 2023 sa 80e édition. Depuis sa naissance en 1932, la Mostra d'Art Cinématographique est riche de chefs d'oeuvres et de stars mondiales qui ont façonné sa légende, de cinéastes consacrés et de nouveaux talents révélés. A travers d'archives et d'interviews de personnalités qui ont marqué le Lido, ce documentaire raconte une histoire inédite de la Mostra. + Documentaire + Cinéma + + + Tout public + + + + Mammarranca + Giovanni et Michele ont onze et neuf ans et ils vivent à Sant'Elia, un quartier populaire en périphérie de Cagliari. La vie des deux enfants semble changer soudainement lorsqu'un ticket à gratter atterrit entre leurs mains. + Film + Drame + + Tout public + + + + Les Cinq Diables + La petite Vicky dispose de dons extraordinaires malgré son âge. Elle a un sens olfactif hyperdéveloppé qui lui permet de reproduire des odeurs qu'elle place dans des bocaux dans sa chambre. Ceux qui ont le plus de valeur à ses yeux sont ceux qui représentent sa mère qu'elle aime plus que tout. Mais la venue de Julia, la soeur de son père, va mettre en péril l'harmonie de la famille. La jeune enfant décide alors de reproduire son odeur comme elle le fait à chaque fois, mais ce faisant, elle découvre qu'elle dispose d'un autre don, celui de revivre des souvenirs qui ne sont pas les siens, et ainsi en apprendre plus sur les gens... + Film + Drame + + + + -10 + + + + La Passagère + Depuis près de deux décennies, Chiara partage sa vie avec Antoine, un pêcheur qu'elle a suivi sans hésiter sur la petite île dont ce dernier est originaire, au large de la côte Atlantique. Epanouie dans son couple, la quadragénaire s'implique aussi pleinement dans l'activité de son époux, un métier dont elle a appris tous les secrets. Pourtant, malgré cette relation en tous points idyllique, Chiara voit toutes ses certitudes s'effondrer après sa rencontre avec Maxence, le jeune apprenti embauché par Antoine. Rapidement, elle perd pied, irrésistiblement attirée par ce séduisant jeune homme, et elle finit par céder à ses désirs... + Film + Drame + + + + -10 + + + + Close + Deux garçons de 13 ans, Léo et Rémi, sont inséparables. Ils passent pratiquement tous les jours ensemble et dorment parfois chez Rémi. Mais un évènement va bouleverser cette relation. Lors de leur rentrée au collège, un groupe de jeunes filles souhaitent savoir si les garçons sont en couple. C'est un véritable choc pour Léo et un coup de frein pour leur amitié. A la suite de cet incident, l'enfant va se remettre en question ainsi que la relation qui le lie à Rémi. Il s'éloigne de son ami de toujours, laissant celui-ci dans l'incompréhension. Jusqu'au jour où Léo décide de se rapprocher de la mère de son ami afin de trouver du soutien... + Film + Drame + + + + -10 + + + + Tchi tcha + Best of + TCHI TCHA présentée par Laurie Cholewa revient cette saison en quotidienne, soit une dose journalière de sept minutes de cinéma du lundi au jeudi. TCHI TCHA traite de tous les cinémas avec curiosité à travers des sujets, des entretiens et quelques pépites du Journal du cinéma des années 90. Et chaque semaine, une interview inédite par Laurie Cholewa et une mise en lumière des événements cinéma diffusés sur les chaînes CANAL+. + Culture + Cinéma + + 0 . 34 . + + + -10 + + + + Une comédie romantique + Après trois années sans donner aucune nouvelle, ni à ses proches, ni à sa compagne, César refait soudain irruption dans la vie de tous ceux qu'il avait abandonnés sans explication. Stupéfait, le trentenaire découvre à cet instant qu'il est le père d'une fillette de 3 ans que Salomé, son ancienne compagne, élève seule. Evidemment, la colère envahit cette dernière à la vue de celui qu'elle considère comme un lâche, mais les efforts de César finissent par porter leurs fruits et lui permettent, malgré les nombreux secrets encore inavoués, de recoller peu à peu les morceaux... + Film + Comédie + + + Tout public + + + + Faut voir ! L'hebdo cinéma + "FAUT VOIR ! L'HEBDO CINÉMA c'est à la fois une invitation, une proposition, un conseil, et pourquoi pas une injonction, d'où le point d'exclamation ! Ce qu'il faut voir, c'est ce que le cinéma propose de mieux chaque semaine sur les écrans, une passion qui se partage sérieusement, mais je l'espère sans esprit de sérieux." - Antoine de Caunes + Culture + Cinéma + + 0 . 6 . + + + -10 + + + + She Said + Jodi et Megan, deux jeunes journalistes du New York Times, se voient confier une mission délicate par leur hiérarchie. En effet, face à d'insistantes rumeurs sur des soupçons de harcèlement et de violences sexuelles à Hollywood, leur supérieure les invite à mener l'enquête pour tenter de démêler le vrai du faux dans une affaire qui pourrait créer un énorme scandale. Malgré l'omerta qui règne dans le milieu, malgré les menaces et les pressions diverses, elles parviennent à recueillir assez d'éléments pour mettre en cause un des plus grands pontes californiens du septième art : Harvey Weinstein, accusé par d'innombrables victimes... + Film + Drame + + + + -10 + + + + Les Amandiers + Nanterre, théâtre des Amandiers, fin des années 1980. Solidaires, avec des rôles bien définis, Patrice Chéreau et Pierre Romans mènent fermement la barque de la célèbre école qu'ils ont créée dans ce lieu déjà mythique. Adèle, Stella, Etienne et d'autres jeunes adultes s'apprêtent à y affronter le redoutable concours d'entrée, véritable passeport pour la gloire. Entre les cours, les membres de la troupe vivent comme des étudiants lambda. Amour, passion, séduction, jeux dangereux et découverte d'un monde guidé par les excès en tous genres conduisent rapidement à diverses situations inextricables et, bientôt, aux premiers drames... + Film + Comédie dramatique + + + + -10 + + + + Le cercle + LE CERCLE CINÉMA rentre dans sa 19ème saison. C'est la seule émission télévisée de débats critiques 100onsacrée au cinéma. Elle offre chaque semaine des joutes enflammées, joyeuses et sans préjugés, sur les films à l'affiche. Elle invite les cinéastes à venir partager leur passion cinéphile. Tant qu'il y aura du cinéma, LE CERCLE sera là. + Culture + Cinéma + + 0 . 8 . + + + -10 + + + + Burning Days + Emre, un jeune procureur intègre, est nommé dans la petite bourgade reculée de Yaniklar, en Turquie. Si l'accueil qu'il reçoit est plutôt sympathique, les choses ne se passent pas comme il l'espérait. Il doit faire face non seulement à une crise de l'eau mais aussi à différents scandales politiques. Face à l'inflexibilité d'Emre, les notables locaux sont déterminés à défendre leurs privilèges par tous les moyens. De nombreuses rumeurs commencent alors à circuler sur le procureur, entachant sa réputation. La pression s'intensifie encore plus lorsqu'il entame sa première enquête sur un meurtre... + Film + Drame + + + + -10 + + + + En plein feu + Un mégafeu ravage la forêt des Landes, dévorant de nombreux hectares. L'incendie, incontrôlable, se rapprochant des habitations, une alerte est lancée par les autorités demandant à tous les résidents de quitter les lieux. Simon et son père Joseph prennent alors la route qui doit les mener hors de la zone de danger. Mais si le début du trajet semble tranquille, les deux hommes se retrouvent très vite cernés par les flammes, alors que tous les véhicules des évacués sont à l'arrêt. Simon et Joseph, dont la relation est tendue, hésitent sur le meilleur moyen de se sortir de là... + Action + Policier + + + + -10 + + + + Pearl + A la fin de la Première Guerre mondiale. Piégée dans la ferme isolée de ses parents, Pearl attend avec impatience le retour de son fiancé, parti au front. Nourrie de comédies musicales, la jeune fille se rêve danseuse de revue. En attendant, elle est contrainte de s'occuper des animaux et de prendre soin de son père paralysé sous le regard autoritaire de sa mère dévote et cruelle. Le jour où cette dernière lui interdit de se rendre en ville pour participer aux auditions d'une troupe itinérante, Pearl sombre dans la folie... + Film + Horreur + + + + -16 + + + + American Carnage + De nos jours aux Etats-Unis, le gouverneur nationaliste Harper Finn signe un décret qui stipule que tous les enfants d'immigrants clandestins doivent être arrêtés immédiatement. Placés en détention, les jeunes se voient offrir la possibilité de quitter la prison s'ils se portent volontaires pour s'occuper de personnes âgées dans une maison de retraite. A leur arrivée sur place, ils sont témoins des comportements étranges des résidants et des employés et se rendent compte que certaines choses leur ont été cachées. + Film + Horreur + + + + -12 + + + + Fin des programmes + Nos programmes se terminent pour cette journée, en attendant ceux de demain. + Programme + Fin + + + Tout public + + + + Fin des programmes + Nos programmes se terminent pour cette journée, en attendant ceux de demain. + Programme + Fin + + + Tout public + + + + Faut voir ! L'hebdo cinéma + "FAUT VOIR ! L'HEBDO CINÉMA c'est à la fois une invitation, une proposition, un conseil, et pourquoi pas une injonction, d'où le point d'exclamation ! Ce qu'il faut voir, c'est ce que le cinéma propose de mieux chaque semaine sur les écrans, une passion qui se partage sérieusement, mais je l'espère sans esprit de sérieux." - Antoine de Caunes + Culture + Cinéma + + 0 . 6 . + + + -10 + + + + Une belle course + Madeleine, 92 ans, appelle un taxi pour la déposer à la maison de retraite où elle va passer le restant de ses jours. Et c'est Charles qui s'occupe de l'y emmener. Mais avant de s'y rendre, la vieille dame lui demande de passer par les divers endroits qui ont marqué sa vie. Chaque lieu fait remonter en elle les émotions d'antan et les histoires qui y correspondent. Alors qu'il était plutôt grognon et désabusé au départ, Charles écoute attentivement les récits et découvre que Madeleine a vécu une vie fort riche en souvenirs et que cette course, au départ anodine, va peut-être bouleverser son existence... + Film + Comédie dramatique + + + + -10 + + + + Les Rascals + Milieu des années 1980, à Paris. En balade dans la capitale, un groupe de jeunes banlieusards croise par hasard un jeune skinhead impliqué dans une rixe avec l'un d'entre eux. Les coups ne tardent pas à pleuvoir, sous l'oeil discret de la petite soeur du jeune extrémiste pris à partie. Celle-ci dénonce cette agression auprès de son petit ami, lui aussi membre d'un groupuscule néonazi. Ni une ni deux, ce dernier décide à son tour d'organiser une expédition punitive pour venger le frère de sa compagne. Dans un contexte socio-économique difficile, ces menues batailles ne tardent pas à se transformer en une véritable guerre... + Film + Action + + + + -12 + + + + Défense d'atterrir + In-ho, un policier qui enquête sur une menace terroriste imminente, donne l'alarme lorsqu'il découvre qu'un suspect a pris place à bord de l'avion à destination de Hawaii dans lequel son épouse voyage. Pendant ce temps, dans l'appareil, un des passagers décède dans des douleurs atroces. La panique se répand rapidement. Le commandant de bord veut se poser au plus près, mais une seule consigne est adressée aux pilotes : "Défense d'atterrir". Alors que d'autres voyageurs semblent touchés par le même mal et que le carburant s'épuise, l'équipage décide de prendre tous les risques pour sauver les passagers... + Film + Action + + + + -10 + + + + Tchi tcha + TCHI TCHA présentée par Laurie Cholewa revient cette saison en quotidienne, soit une dose journalière de sept minutes de cinéma du lundi au jeudi. TCHI TCHA traite de tous les cinémas avec curiosité à travers des sujets, des entretiens et quelques pépites du Journal du cinéma des années 90. Et chaque semaine, une interview inédite par Laurie Cholewa et une mise en lumière des événements cinéma diffusés sur les chaînes CANAL+. + Culture + Cinéma + + 0 . 35 . + + + -10 + + + + Burning Days + Emre, un jeune procureur intègre, est nommé dans la petite bourgade reculée de Yaniklar, en Turquie. Si l'accueil qu'il reçoit est plutôt sympathique, les choses ne se passent pas comme il l'espérait. Il doit faire face non seulement à une crise de l'eau mais aussi à différents scandales politiques. Face à l'inflexibilité d'Emre, les notables locaux sont déterminés à défendre leurs privilèges par tous les moyens. De nombreuses rumeurs commencent alors à circuler sur le procureur, entachant sa réputation. La pression s'intensifie encore plus lorsqu'il entame sa première enquête sur un meurtre... + Film + Drame + + + + -10 + + + + Leila et ses frères + Dans un pays en proie aux difficultés économiques, Leila est la seule fille d'une fratrie de cinq enfants. Elle souhaite aider ses frères au chômage en ouvrant avec eux une boutique et ainsi faire prospérer cette famille iranienne. Son père Esmail dispose d'une réserve de pièces d'or et a d'autres plans : il souhaite réaliser son rêve et devenir le nouveau chef de famille, véritable distinction dans sa société. Débute alors les disputes entre eux puisque les enfants ont mis toutes leurs économies en commun et qu'ils ont besoin de ce coup de pouce financier. Mais Esmail semble avoir l'intention de camper sur ses positions... + Film + Drame + + + + -10 + + + + Les Cyclades + Inséparables durant toute leur adolescence, Magalie et Blandine ont finalement emprunté des chemins différents avant de totalement se perdre de vue. Un jour, les deux jeunes femmes vont pourtant se croiser par le plus grand des hasards et, ravies de se remémorer les bons souvenirs, vont décider de s'offrir un voyage en Grèce, espérant ainsi raviver la complicité qui les unissait durant leur jeunesse. Pourtant, le séjour, à peine débuté, semble prendre une mauvaise tournure. En effet, les deux amies d'autrefois ne tardent pas à comprendre que les nombreux atomes crochus qu'elles partageaient se sont dissipés avec le temps... + Film + Comédie + + + Tout public + + + + Fumer fait tousser + Benzène, Méthanol, Ammoniaque, Mercure et Nicotine, membres d'une brigade spéciale de lutte contre le tabagisme, sont épuisés après un combat éprouvant contre une tortue maléfique. Conscient de la nécessité de voir ses troupes se reposer, Didier, leur chef, décide de les envoyer s'isoler quelques temps à la campagne pour recharger les batteries. Sur place, le petit groupe profite du calme des lieux et tente de ressouder des liens distendus en raison de divergences d'opinion. Mais un autre ennemi féroce, Lézardin, souhaite profiter de leur retraite afin de mener à bien une nouvelle campagne qui loue les bienfaits du tabac... + Film + Comédie + + + + -12 + + + + UFO Sweden + La Suède des années 1990. Denise, une adolescente geek et rebelle, a été placée en foyer d'accueil des années plus tôt après la mystérieuse disparition de son père. La jeune fille est persuadée que ce dernier n'est pas mort, mais a été enlevé par des extraterrestres. Epaulée par une association de chasseurs d'ovnis, elle se lance dans une aventure haletante et risquée qui va la plonger dans un univers de phénomènes surnaturels... + Film + Science-fiction + + + + -10 + + + + La Tour + Après une nuit des plus banales, les habitants d'un immeuble de banlieue découvrent que leur bâtiment semble totalement absorbé dans un étrange et très opaque brouillard. Téléphones et télévisions sont devenus soudain inutilisables. Coupés du monde et complètement abasourdis, plusieurs dizaines d'occupants des lieux se lancent dans une cohabitation dont ils ignorent combien de temps elle va durer. Rapidement, les rumeurs vont bon train dans la tour et augmentent encore le sentiment d'insécurité pour ces malheureux pris dans un inexplicable phénomène. L'instinct de survie prend vite le dessus sur la volonté d'aider son prochain... + Film + Horreur + + + + -16 + + + + Le cercle + LE CERCLE CINÉMA rentre dans sa 19ème saison. C'est la seule émission télévisée de débats critiques 100onsacrée au cinéma. Elle offre chaque semaine des joutes enflammées, joyeuses et sans préjugés, sur les films à l'affiche. Elle invite les cinéastes à venir partager leur passion cinéphile. Tant qu'il y aura du cinéma, LE CERCLE sera là. + Culture + Cinéma + + 0 . 8 . + + + -10 + + + + Prison 77 + 1977, l'Espagne sort à peine des années noires du franquisme. A Barcelone, Manuel, un jeune comptable, est emprisonné en attente de jugement pour détournement de fonds. Il risque une peine de 10 à 20 ans, une sanction disproportionnée par rapport au délit commis. Alors qu'à l'extérieur, le pays redécouvre la liberté, dans la prison, c'est toujours le règne de la loi du plus fort. Avec José Pino, son compagnon de cellule, il s'associe à un collectif qui lutte pour les droits des prisonniers et l'amnistie. C'est le début d'un combat qui va révolutionner le système pénitentiaire espagnol... + Action + Policier + + + + -12 + + + + Du crépitement sous les néons + Soumis à un régime de contrôle judiciaire strict par la justice, Yann ne peut se permettre le moindre faux pas. Pourtant, le jeune homme doit trouver une solution pour rembourser une dette sous peine de subir les foudres de son inquiétant créancier. Il s'adresse alors à Sumaï, un caïd du quartier auquel il propose ses services contre rémunération. Intéressé par son profil, Sumaï propose à ce dernier de conduire une des membres de son réseau de prostitution jusqu'en Espagne, un contrat accepté par Yann. Lors du trajet, la jeune femme semble être victime d'un malaise, mais Yann saisit vite qu'en réalité, ses ennuis commencent... + Action + Policier + + + + -12 + + + + Fin des programmes + Nos programmes se terminent pour cette journée, en attendant ceux de demain. + Programme + Fin + + + Tout public + + + + + de courts + Une émission de 52 minutes qui aime le court métrage et qui en veut toujours + ! Magazine bimensuel proposé les deuxième et quatrième dimanches de chaque mois, + DE COURTS accompagne la diffusion de deux à trois courts-métrages par la parole de ceux qui font l'actualité court-métrage. + Culture + Cinéma + + 0 . 3 . + + Tout public + + + + Le Grand Cirque + Momo mène une carrière de comédien de seconde zone. Ses spectacles de stand-up ne rencontrent pas un grand succès. Lors d'une visite à un ami à l'hôpital pédiatrique Robert Debré, il fait la connaissance de Michel, un clown bénévole qui fait tout pour rendre le sourire aux enfants malades. Celui-ci lui propose d'enfiler un nez rouge et de devenir un membre de sa troupe. Momo parvient assez vite à obtenir l'approbation des enfants qui tombent sous son charme. Il se prend au jeu et a l'idée de créer un spectacle de cirque. Il propose aux petits malades d'y participer... + Film + Comédie + + + Tout public + + + + Neneh Superstar + Passionnée de danse depuis sa plus tendre enfance, Neneh, âgée de 12 ans, semble s'approcher de son objectif de devenir ballerine. En effet, la talentueuse préadolescente originaire de banlieue parvient à intégrer l'école de danse de l'Opéra national de Paris grâce au soutien du directeur de la prestigieuse compagnie, mais contre l'avis de Marianne Bellage, la directrice de l'établissement. Dès son arrivée sur place, Neneh subit les foudres de cette dernière, visiblement remontée contre sa présence. Les remarques vexantes instaurent le doute dans l'esprit de Neneh, totalement démotivée par la tournure prise par les événements... + Film + Comédie dramatique + + + Tout public + + + + Divertimento + Passionnées de musique classique et visiblement douées, Fettouma et Zahia, des jumelles âgées de 17 ans qui vivent en Seine-Saint-Denis, intègrent une section spéciale dans un prestigieux lycée parisien pour y poursuivre leur scolarité. Dès leur arrivée en classe de terminale, les remarques blessantes fusent. Victimes de préjugés liés à leurs origines et violemment prises à partie, les deux soeurs refusent pourtant de baisser les bras et s'accrochent à leurs rêves : devenir violoncelliste pour Fettouma, et diriger un orchestre pour Zahia. Ensemble, elles parviennent à surmonter tous les obstacles et à s'approcher de leurs buts... + Film + Biographie + + + Tout public + + + + Tchi tcha + TCHI TCHA présentée par Laurie Cholewa revient cette saison en quotidienne, soit une dose journalière de sept minutes de cinéma du lundi au jeudi. TCHI TCHA traite de tous les cinémas avec curiosité à travers des sujets, des entretiens et quelques pépites du Journal du cinéma des années 90. Et chaque semaine, une interview inédite par Laurie Cholewa et une mise en lumière des événements cinéma diffusés sur les chaînes CANAL+. + Culture + Cinéma + + 0 . 36 . + + + -10 + + + + Mon crime + Madeleine Verdier tente de réussir dans le monde du cinéma français des années 1930. Malheureusement pour la jeune femme, son talent d'actrice n'est pas reconnu par les professionnels du milieu, ce qui la laisse dans une situation financière compliquée. Le jour où un célèbre producteur est retrouvé assassiné, les soupçons se portent sur l'actrice. Elle décide d'avouer ce crime, mais grâce au travail de sa meilleure amie, Pauline, avocate de profession, elle obtient son acquittement. S'ouvre alors un tout nouvel horizon pour Madeleine, qui voit là une chance de réaliser ses rêves. + Film + Comédie + + + + -10 + + + + Coup de théâtre + Années 1950, à Londres. Le quartier de West End, où sont situés la plupart des théâtres de la ville, voit débarquer Leo Köpernick, un producteur hollywoodien désireux d'adapter au cinéma une pièce populaire d'Agatha Christie. Malheureusement, une vague d'assassinats interrompt le tournage et oblige les forces de l'ordre à ouvrir une enquête. L'affaire est confiée à l'inspecteur Stoppard, un policier peu motivé qui attend sagement la retraite. Tout le contraire de son acolyte, la jeune agent Stalker, qui débute sa carrière et souhaite faire ses preuves au plus vite, quitte à bousculer sa hiérarchie. Stupéfait, le duo découvre l'insoupçonnable envers du décor... + Film + Comédie + + + + -10 + + + + Faut voir ! L'hebdo cinéma + "FAUT VOIR ! L'HEBDO CINÉMA c'est à la fois une invitation, une proposition, un conseil, et pourquoi pas une injonction, d'où le point d'exclamation ! Ce qu'il faut voir, c'est ce que le cinéma propose de mieux chaque semaine sur les écrans, une passion qui se partage sérieusement, mais je l'espère sans esprit de sérieux." - Antoine de Caunes + Culture + Cinéma + + 0 . 6 . + + + -10 + + + + Annie colère + Mère de deux enfants, Annie tombe une nouvelle fois enceinte contre son gré. En ce mois de février 1974, à l'aube de la nomination de Simone Veil au ministère de la Santé, l'avortement reste une pratique illégale en France. Annie n'a d'autre choix que de s'adresser à une association, le Mouvement pour la liberté de l'avortement et de la contraception, dont les membres se chargent d'effectuer cette opération pourtant interdite. Auprès d'eux, Annie découvre l'ampleur d'un problème qui touche plusieurs milliers de femmes à travers tout le pays. Très vite, elle décide de prendre totalement fait et cause pour ce combat... + Film + Comédie dramatique + + + + -10 + + + + Bonne conduite + Formatrice en sécurité routière, Pauline s'investit dans cette mission avec passion, consciente de la nécessité de remettre les chauffards sur le droit chemin. Malgré son flegme et son tact, la jeune femme ne parvient pas à convaincre tous les fous du volant qu'elle reçoit de lever le pied, bien au contraire. Ce manque d'empathie a le don de l'agacer fortement, elle qui possède une méthode inavouable et bien à elle pour régler définitivement le problème des récalcitrants. Mais les surprenants secrets de l'insoupçonnable Pauline vont être découverts par des enquêteurs loin d'être au bout de leurs surprises... + Film + Comédie + + + + -10 + + + + Coup de foudre + Aucune description + Culture + Cinéma + + 0 . 7 . + + Tout public + + + + De grandes espérances + Issue d'une famille modeste, Madeleine possède un caractère de battante et de grandes ambitions. La jeune femme se rend en Corse pour préparer l'oral du concours d'entrée à l'ENA dans la maison de vacances d'Antoine, son compagnon. Sur place, Madeleine ne cache son rêve de devenir présidente de la République, déterminée à faire évoluer les mentalités et une situation sociale qu'elle juge alarmante. Cependant, son objectif semble visiblement gêner quelques personnes de son entourage. Alors qu'ils circulent sur une route isolée, Madeleine et Antoine tombent dans une embuscade au cours de laquelle un terrible drame se produit... + Film + Drame + + + + -10 + + + + Les Engagés + Alors qu'il circule de nuit sur une petite route enneigée des Hautes-Alpes, David renverse un jeune migrant qu'il aperçoit trop tard, heureusement sans graves conséquences pour ce dernier. Très vite, David comprend que le jeune homme fuit la police qui est à ses trousses. Sans hésiter, il propose à la victime de monter dans son coffre pour tenter de l'aider à échapper à ses poursuivants, et décide de le conduire chez sa compagne, Gabrielle, qui vit non loin du lieu de l'accident avec ses deux enfants. Malgré les risques encourus, David refuse d'abandonner l'adolescent à son triste sort et choisit de lui apporter son indéfectible soutien... + Film + Drame + + + + -10 + + + + Les bonnes étoiles + Dong-soo travaille dans une église qui dispose d'une boîte dans laquelle certaines personnes abandonnent leur bébé. Avec son ami Sang-hyeon, ils récupèrent certains nourrissons de manière illégale, en effaçant les images de vidéosurveillance, et les revendent sur le marché noir de l'adoption. Lorsque So-young, une jeune mère, abandonne son enfant, le duo le vole et décide de lui trouver une nouvelle famille. Mais la maman revient sur ses pas et prend les deux amis en flagrant délit. Après un échange, So-young choisit de les accompagner dans leur voyage afin de rencontrer les parents adoptifs et s'assurer ainsi que le bébé sera entre de bonnes mains... + Film + Comédie dramatique + + + Tout public + + + + Le Lycéen + Après avoir perdu son père, tué dans un accident de la route, Lucas, âgé de 17 ans, traverse l'une des phases les plus difficiles de sa jeune existence. Désormais seul avec sa mère, le jeune homme ne parvient pas à relever la tête et sombre peu à peu dans la dépression, une situation que son frère aîné ne peut supporter. Pour l'aider à avancer, ce dernier lui propose de le rejoindre dans son appartement parisien pour y passer quelques jours avant de reprendre les cours dans son lycée. Sur place, Lucas semble enfin retrouver des couleurs en profitant d'une certaine liberté, au point de vouloir abandonner ses études... + Film + Drame + + + + -12 + + + + Fin des programmes + Nos programmes se terminent pour cette journée, en attendant ceux de demain. + Programme + Fin + + + Tout public + + + + Le cercle + LE CERCLE CINÉMA rentre dans sa 19ème saison. C'est la seule émission télévisée de débats critiques 100onsacrée au cinéma. Elle offre chaque semaine des joutes enflammées, joyeuses et sans préjugés, sur les films à l'affiche. Elle invite les cinéastes à venir partager leur passion cinéphile. Tant qu'il y aura du cinéma, LE CERCLE sera là. + Culture + Cinéma + + 0 . 8 . + + + -10 + + + + Reprise en main + Employé comme son père dans une usine de mécanique de précision, Cédric tombe des nues lorsqu'il apprend que son employeur va céder la société à un fonds d'investissement. Cette nouvelle dévaste les employés qui craignent pour leur travail, jusqu'à ce que Cédric décide de tenter le tout pour le tout. C'est un pari fou qu'il se lance, il convainc ses amis d'enfance de l'accompagner dans ce projet aux allures de mission impossible. Il souhaite monter un fonds d'investissement afin de concurrencer l'offre déjà présente et ainsi racheter l'usine pour sauver les emplois et proposer une pérennité à ses collègues pour leur futur... + Film + Comédie dramatique + + + + -10 + + + + La montagne + Présent dans les Alpes pour la présentation d'un projet dans le cadre de son travail, Pierre, un ingénieur parisien, décide de rester sur place et laisse ses collègues retourner à Paris sans lui. Ebloui par ces paysages grandioses, il se procure vite le matériel nécessaire pour effectuer une randonnée et part à la conquête des sommets. Une fois arrivé, il ne souhaite plus redescendre et fait la connaissance d'une autre passionnée d'alpinisme, Léa, cheffe cuisinière. Il est alors témoin d'un phénomène étrange : des lueurs énigmatiques scintillent dans la nuit. Profondément intrigué, l'ingénieur souhaite en connaître l'origine... + Film + Action + + + + -10 + + + + Pétaouchnok + Ludo et Richard, deux amis de longue date, se retrouvent dans une situation financière catastrophique. Pour s'en sortir, ils ont une idée de génie : monter un projet de tourisme équestre dans les Pyrénées. Pleins de bonne volonté, ils s'investissent mais comprennent qu'il y aura des difficultés. Après avoir accueilli leurs premiers invités, ils leur promettent un dépaysement total, des aventures et du silence. De quoi se ressourcer au contact de la nature. Mais une succession d'événements imprévus va entraîner tout leur petit groupe de randonneurs dans une excursion inoubliable… + Film + Comédie + + + + -10 + + + + Tchi tcha + TCHI TCHA présentée par Laurie Cholewa revient cette saison en quotidienne, soit une dose journalière de sept minutes de cinéma du lundi au jeudi. TCHI TCHA traite de tous les cinémas avec curiosité à travers des sujets, des entretiens et quelques pépites du Journal du cinéma des années 90. Et chaque semaine, une interview inédite par Laurie Cholewa et une mise en lumière des événements cinéma diffusés sur les chaînes CANAL+. + Culture + Cinéma + + 0 . 37 . + + + -10 + + + + De grandes espérances + Issue d'une famille modeste, Madeleine possède un caractère de battante et de grandes ambitions. La jeune femme se rend en Corse pour préparer l'oral du concours d'entrée à l'ENA dans la maison de vacances d'Antoine, son compagnon. Sur place, Madeleine ne cache son rêve de devenir présidente de la République, déterminée à faire évoluer les mentalités et une situation sociale qu'elle juge alarmante. Cependant, son objectif semble visiblement gêner quelques personnes de son entourage. Alors qu'ils circulent sur une route isolée, Madeleine et Antoine tombent dans une embuscade au cours de laquelle un terrible drame se produit... + Film + Drame + + + + -10 + + + + Kanun, la loi du sang + Né en Albanie, Lorik n'a pas eu d'autre choix que de fuir son pays vers la Belgique dès son plus jeune âge en raison des menaces qui pesaient sur sa famille. A Bruxelles, des choix hasardeux et de mauvaises fréquentations ont gâché son adolescence, mais le jeune homme a su remonter la pente. Par ailleurs, sa récente rencontre avec Sema, une étudiante en art, provoque un nouveau déclic chez Lorik, qui rêve désormais de fonder un foyer avec sa petite amie. Ses espoirs s'effondrent soudain comme un château de cartes quand il apprend qu'il est rattrapé par son lointain passé. Selon la tradition, son sang doit couler pour éponger une dette... + Action + Policier + + + + -12 + + + + Caravage + Rome, au début du XVIIe siècle. Après de nombreux démêlés judiciaires avec les Etats pontificaux, un duel qui tourne mal sonne le glas pour le Caravage, contraint de s'exiler à Naples. Au sommet de sa gloire, le peintre refuse cette sombre destinée et, aidé par la très influente famille Colonna, tente de se faire pardonner ses écarts par le pape Paul V, espérant ainsi pouvoir faire son retour à Rome. Avant de rendre son verdict, le souverain pontife souhaite qu'une enquête minutieuse soit menée sur cet artiste fort controversé. Il confie cette mission à l'Ombre, un inquisiteur qui ne tarde pas à livrer des conclusions peu flatteuses... + Film + Biographie + + + + -12 + + + + Genre genres + Biopics + Le film biographique connaît depuis quelques années un succès considérable en France et dans le reste du monde. Pour en parler, Antoine de Caunes reçoit Elsa Zylberstein, qui a incarné Simone Veil dans "Simone, le voyage du siècle", Thomas VDB, auteur de "Comedian Rhapsodie", la dessinatrice de BD Pénélope Bagieu, qui a publié une biographie de la chanteuse Cass Elliot, Thomas Solivérès pour "Les Aventures du jeune Voltaire" et "Edmond", et enfin Sandor Funtek pour "Suprêmes", sur les premières années du mythique duo de rap NTM. + Culture + Cinéma + + 0 . 4 . + + + -10 + + + + L'immensità + Alors que l'Italie se confronte à une vague de changements socio-culturels dans les années 1970, Clara et Felice, un couple qui vacille, emménagent avec leurs trois enfants dans un appartement de la banlieue de Rome. Face à l'indifférence de son époux, de plus en plus distant, Clara se rapproche de ses enfants, auprès desquels elle trouve un certain réconfort. Elle saisit rapidement qu'Adriana, aînée de la fratrie âgée de 12 ans, se sent mal dans sa peau. L'adolescente s'interroge quant à son identité sexuelle, et, soutenue par sa mère, décide peu à peu d'assumer le fait qu'elle soit née dans un corps qui ne lui correspond pas... + Film + Drame + + + + -10 + + + + Darkland Undercover + Chirurgien cardiaque réputé, Zaid n'a pas supporté la mort de son frère cadet, Yasin, qui a succombé à ses blessures après un hold-up. Yasin lui avait demandé son aide une fois de trop, et Zaid avait refusé d'intervenir. Bourrelé de remords, le médecin a voulu venger son frère et s'est laissé entraîner dans un univers violent. Désormais incarcéré depuis sept ans, Zaid accepte de se mettre au service de la police en échange de sa libération. Il va devoir infiltrer un gang ultraviolent pour espérer sortir un jour de prison. En parallèle, il tente de renouer avec son fils dont il a été séparé... + Film + Action + + + + -12 + + + + Darkland + Yasin s'apprête à commettre un hold-up dans une banque avec des complices mais les choses tournent mal. Il se rend alors au domicile de son frère, Zaid, chirurgien cardiaque réputé, pour solliciter son aide. Mais celui-ci, las de répondre aux sollicitations de son cadet, refuse de l'écouter. Le lendemain, Yasin, grièvement blessé, est admis aux urgences de l'hôpital où travaille son frère. Quand Yasin finit par succomber à ses blessures, Zaid, ivre de vengeance, se laisse happer par un univers fait de violence... + Film + Action + + + + -12 + + + + Je verrai toujours vos visages + Grégoire, Nawelle, Sabine et Chloé ont été victimes de braquages, de vols à l'arraché ou encore de viols incestueux. Ils acceptent de rejoindre une association qui utilise la justice restaurative. C'est ainsi qu'ils se retrouvent face aux auteurs des infractions pour tenter d'instaurer un dialogue. Pour cela, ils sont entourés par des professionnels et des bénévoles qui mettent en place un cadre sécurisé. Les victimes expliquent ce qu'elles ont vécu, tout en essayant de comprendre les mobiles de leurs agresseurs. + Film + Drame + + + + -10 + + + + Têtàtête(s) + Jeanne Herry + Chaque semaine, une interview par Laurie Cholewa des talents ou cinéastes des films à l'affiche, un moment convivial et chaleureux qui raconte les coulisses des films les plus attendus en salles et des films diffusés sur Canal+. + Magazine + Interview + + 0 . 4 . + + + -10 + + + + Apprentice + Âgé de 28 ans, Aiman vit à Singapour avec sa soeur aînée Suhaila. Après une adolescence agitée suivie d'une brève carrière militaire, il décide de devenir gardien dans la prison de haute sécurité où, de nombreuses années auparavant, leur père avait été pendu pour meurtre. Sur son nouveau lieu de travail, Aiman se lie d'amitié avec Rahim, le bourreau en chef, qui lui propose de devenir son assistant. Fasciné par son nouvel ami qui lui apprend les gestes du métier, il voit pourtant sa conscience et ses véritables motivations le rattraper. Lorsque Rahim se retrouve sur le point de percer le lourd secret de son jeune apprenti, ce dernier risque à son tour de se retrouver en prison pour payer les vieux crimes de son père. + Film + Drame + + + + -10 + + + + Fin des programmes + Nos programmes se terminent pour cette journée, en attendant ceux de demain. + Programme + Fin + + + Tout public + + + + Fin des programmes + Nos programmes se terminent pour cette journée, en attendant ceux de demain. + Programme + Fin + + + Tout public + + + + Late Sport 360 + 2023/2024. Présentée par Nicolas Tourriol ou Virginie Ramel, cette émission multisports, experte et conviviale, propose un tour complet de l'actualité du sport : football, rugby, golf, sports mécaniques de la Formule 1™ au MotoGP™... Les journalistes de la rédaction de CANAL+ interviennent chaque jour en fonction des sujets abordés. Du décryptage, des débats, des infos, des images inédites pour revenir sur les faits marquants de nos compétitions, et le meilleur des réseaux sociaux. + Sport + Multisports + + + Tout public + + + + Golf : Open de Los Cabos + Circuit américain 2023/2024. Open de Los Cabos. Suivez l'Open de Playa del Carmen, aussi appelé Mayakoba Golf Classic, un tournoi du PGA Tour de golf. Les meilleurs golfeurs de la planète se retrouvent tous les ans au El Camaleon Golf Club à Cancun, dans la Riviera Maya au Mexique, afin de remporter ce trophée. Sa première édition a eu lieu en 2007. + Sport + Golf + + + Tout public + + + + Rugby : Pro D2 + Pro D2 2023/2024. 9e journée. Biarritz / Agen. Biarritz et Agen, deux équipes de milieu de tableau en ce début de saison, s'affrontent au parc des sports d'Aguilera pour le compte de la 9e journée de Pro D2. + Sport + Rugby + + + Tout public + + + + Rugby : Pro D2 + Pro D2 2023/2024. 9e journée. Dax / Mont-de-Marsan. L'US Dax, qui flirte avec la zone rouge en Pro D2, aura fort à faire face à un Stade montois aux portes du Top 5 du classement. C'est le grand retour de l'historique derby landais, ce soir, au stade Maurice-Boyau. + Sport + Rugby + + + Tout public + + + + Soir de rugby + 2023/2024. Tous les résumés des matches de Pro D2 de la soirée, des interviews et des analyses, avec les experts de la chaîne. Plus, avant chaque journée de Top 14, toutes les dernières infos et les compositions des équipes qui s'affrontent. + Sport + Rugby + + + Tout public + + + + Formule 1 : Grand Prix de Sao Paulo + Championnat du monde 2023. Grand Prix de Sao Paulo. Courses, courses sprint, qualifications, essais..., sont retransmis en direct, avec la passion et l'expertise de l'ensemble de l'équipe de Formule 1™ de CANAL+. Une immersion totale avec les pilotes, pendant les courses, dans le paddock... Les équipes de CANAL+ assurent le suivi de l'intérieur pour vivre tous les moments forts au sein des écuries. "Et sur myCANAL, le" Mode Expert "s'enrichit avec désormais cinq flux de caméras embarquées au choix et la possibilité de suivre au plus près les pilotes français. Une fonctionnalité qui vient s'ajouter au tracking des monoplaces, aux temps en live, etc. + Sport + Formule 1 + + + Tout public + + + + Zapsport 360 + 2023/2024. Le Zapsport 360 permet de retrouver toutes les images marquantes du sport des derniers jours, dans un format dynamique : résultats, compétitions du moment et séquences spectaculaires sont au rendez-vous. + Sport + Multisports + + + Tout public + + + + Intérieur sport + Par monts et par maux + Immersion dans le quotidien de Mathieu Blanchard, venu à la marche à 26 ans pour perdre du poids et qui, cinq ans plus tard, montait terminait 2e de l'Ultra Trail du Mont-Blanc.. + Magazine + Sport + + 16 . 1 . + + Tout public + + + + Rugby : Top 14 + Top 14 2023/2024. 5e journée. Perpignan / Toulon. L'ensemble du service rugby de CANAL+ se mobilise pour faire vivre le grand feuilleton du Top 14. En jeu le bout de bois le plus précieux de l'hexagone : le fameux Bouclier de Brennus ! + Sport + Rugby + + + Tout public + + + + La compile Zapsport 360 + 2023/2024. A découvrir, une compilation d'images marquantes et spectaculaires extraites d'événements sportifs concoctée par des spécialistes du groupe Canal+. + Sport + Multisports + 0 . 8 . + + Tout public + + + + Formule 1 : Grand Prix de Sao Paulo + Championnat du monde 2023. Grand Prix de Sao Paulo. Courses, courses sprint, qualifications, essais..., sont retransmis en direct, avec la passion et l'expertise de l'ensemble de l'équipe de Formule 1™ de CANAL+. Une immersion totale avec les pilotes, pendant les courses, dans le paddock... Les équipes de CANAL+ assurent le suivi de l'intérieur pour vivre tous les moments forts au sein des écuries. "Et sur myCANAL, le" Mode Expert "s'enrichit avec désormais cinq flux de caméras embarquées au choix et la possibilité de suivre au plus près les pilotes français. Une fonctionnalité qui vient s'ajouter au tracking des monoplaces, aux temps en live, etc. + Sport + Formule 1 + + + Tout public + + + + Rallye : Rallye d'Europe Centrale + Championnat du monde des rallyes 2023. Rallye d'Europe Centrale. + Sport + Rallye + + + Tout public + + + + Golf : Open de Los Cabos + Circuit américain 2023/2024. Open de Los Cabos. Suivez l'Open de Playa del Carmen, aussi appelé Mayakoba Golf Classic, un tournoi du PGA Tour de golf. Les meilleurs golfeurs de la planète se retrouvent tous les ans au El Camaleon Golf Club à Cancun, dans la Riviera Maya au Mexique, afin de remporter ce trophée. Sa première édition a eu lieu en 2007. + Sport + Golf + + + Tout public + + + + Rugby : Top 14 + Top 14 2023/2024. 5e journée. Racing 92 / Lyon. Les Franciliens du Racing 92 accueillent le Lyon LOU pour cette 5e journée de championnat : les locaux ont pris un meilleur départ que les visiteurs depuis le début de saison. Mais la trêve internationale va peut-être rebattre les cartes. Une éventuelle victoire de Lyon permettrait aux Gones de remonter dans la première partie de tableau. Le Racing 92, quant à lui, espère aussi une victoire pour suivre le rythme du Stade Français Paris qui était alors installé dans le siège de leader du Top 14. Le LOU peut-il venir faire un coup sur la pelouse de la Défense Arena ? + Sport + Rugby + + + Tout public + + + + Fin des programmes + Nos programmes se terminent pour cette journée, en attendant ceux de demain. + Programme + Fin + + + Tout public + + + + Fin des programmes + Nos programmes se terminent pour cette journée, en attendant ceux de demain. + Programme + Fin + + + Tout public + + + + La compile Zapsport 360 + 2023/2024. A découvrir, une compilation d'images marquantes et spectaculaires extraites d'événements sportifs concoctée par des spécialistes du groupe Canal+. + Sport + Multisports + 0 . 8 . + + Tout public + + + + L'oeil des pros + Céline Boutier + 2023. Les plus grands golfeurs de la planète se retrouvent pour l'un des plus importants rendez-vous golf de la saison, la Ryder Cup, à suivre sur les antennes de CANAL+. + Sport + Golf + + 0 . 165 . + + Tout public + + + + Golf : Open de Los Cabos + Circuit américain 2023/2024. Open de Los Cabos. Suivez l'Open de Playa del Carmen, aussi appelé Mayakoba Golf Classic, un tournoi du PGA Tour de golf. Les meilleurs golfeurs de la planète se retrouvent tous les ans au El Camaleon Golf Club à Cancun, dans la Riviera Maya au Mexique, afin de remporter ce trophée. Sa première édition a eu lieu en 2007. + Sport + Golf + + + Tout public + + + + Rugby : Top 14 + Top 14 2023/2024. 5e journée. Oyonnax / La Rochelle. L'ensemble du service rugby de CANAL+ se mobilise pour faire vivre le grand feuilleton du Top 14. En jeu le bout de bois le plus précieux de l'hexagone : le fameux Bouclier de Brennus ! + Sport + Rugby + + + Tout public + + + + Rugby : Top 14 + Top 14 2023/2024. 5e journée. Perpignan / Toulon. L'ensemble du service rugby de CANAL+ se mobilise pour faire vivre le grand feuilleton du Top 14. En jeu le bout de bois le plus précieux de l'hexagone : le fameux Bouclier de Brennus ! + Sport + Rugby + + + Tout public + + + + Formule 1 : Grand Prix de Sao Paulo + Championnat du monde 2023. Grand Prix de Sao Paulo. Courses, courses sprint, qualifications, essais..., sont retransmis en direct, avec la passion et l'expertise de l'ensemble de l'équipe de Formule 1™ de CANAL+. Une immersion totale avec les pilotes, pendant les courses, dans le paddock... Les équipes de CANAL+ assurent le suivi de l'intérieur pour vivre tous les moments forts au sein des écuries. "Et sur myCANAL, le" Mode Expert "s'enrichit avec désormais cinq flux de caméras embarquées au choix et la possibilité de suivre au plus près les pilotes français. Une fonctionnalité qui vient s'ajouter au tracking des monoplaces, aux temps en live, etc. + Sport + Formule 1 + + + Tout public + + + + Formule 1 : Grand Prix de Sao Paulo + Championnat du monde 2023. Grand Prix de Sao Paulo. Courses, courses sprint, qualifications, essais..., sont retransmis en direct, avec la passion et l'expertise de l'ensemble de l'équipe de Formule 1™ de CANAL+. Une immersion totale avec les pilotes, pendant les courses, dans le paddock... Les équipes de CANAL+ assurent le suivi de l'intérieur pour vivre tous les moments forts au sein des écuries. "Et sur myCANAL, le" Mode Expert "s'enrichit avec désormais cinq flux de caméras embarquées au choix et la possibilité de suivre au plus près les pilotes français. Une fonctionnalité qui vient s'ajouter au tracking des monoplaces, aux temps en live, etc. + Sport + Formule 1 + + + Tout public + + + + Rugby : Top 14 + Top 14 2023/2024. 5e journée. Bordeaux-Bègles / Montpellier. L'ensemble du service rugby de CANAL+ se mobilise pour faire vivre le grand feuilleton du Top 14. En jeu le bout de bois le plus précieux de l'hexagone : le fameux Bouclier de Brennus ! + Sport + Rugby + + + Tout public + + + + Rugby : Top 14 + Top 14 2023/2024. 5e journée. Racing 92 / Lyon. Les Franciliens du Racing 92 accueillent le Lyon LOU pour cette 5e journée de championnat : les locaux ont pris un meilleur départ que les visiteurs depuis le début de saison. Mais la trêve internationale va peut-être rebattre les cartes. Une éventuelle victoire de Lyon permettrait aux Gones de remonter dans la première partie de tableau. Le Racing 92, quant à lui, espère aussi une victoire pour suivre le rythme du Stade Français Paris qui était alors installé dans le siège de leader du Top 14. Le LOU peut-il venir faire un coup sur la pelouse de la Défense Arena ? + Sport + Rugby + + + Tout public + + + + Voile : Grand Prix de Cadix + Sail GP 2023/2024. Grand Prix de Cadix. Après Chicago, Los Angeles, Saint-Tropez et Tarente, c'est au tour de Cadix, en Andalousie, d'accueillir la 5e étape de la Saison 4 de la SailGP, circuit de courses en équipages, qui rassemble les plus grands skippers au monde et offre des courses trépidantes et des rivalités intenses. + Sport + Voile + + + Tout public + + + + Golf : Open de Los Cabos + Circuit américain 2023/2024. Open de Los Cabos. Suivez l'Open de Playa del Carmen, aussi appelé Mayakoba Golf Classic, un tournoi du PGA Tour de golf. Les meilleurs golfeurs de la planète se retrouvent tous les ans au El Camaleon Golf Club à Cancun, dans la Riviera Maya au Mexique, afin de remporter ce trophée. Sa première édition a eu lieu en 2007. + Sport + Golf + + + Tout public + + + + Formule 1 : Grand Prix de Sao Paulo + Championnat du monde 2023. Grand Prix de Sao Paulo. En 2022, c'est le pilote britannique George Russell (Mercedes) qui avait remporté la course lors du Grand Prix de São Paulo au Brésil. Qui va prendre la suite en 2023, alors même que Max Verstappen semble irrésistible ? + Sport + Formule 1 + + + Tout public + + + + Le podium + Grand Prix de Sao Paulo + 2023. Les hymnes, la remise des trophées aux pilotes ayant terminé aux trois premières places, le traditionnel champagne qui coule à flots : toute la cérémonie du podium du Grand Prix de Formule 1 du jour à suivre avec les équipes de Canal+ ! + Sport + Formule 1 + + 0 . 21 . + + Tout public + + + + Formula One, le mag + Grand Prix de Sao Paulo, 1re partie + 2023. Margot Laffite propose ce debrief à chaud du Grand Prix de Formule 1™ tout juste terminé. Les réactions des pilotes, les analyses de nos consultants et des invités en plateau. + Sport + Formule 1 + + 0 . 22 . + + Tout public + + + + Formula One, le mag + Grand Prix de Sao Paulo, 2e partie + 2023. Margot Laffite propose ce debrief à chaud du Grand Prix de Formule 1™ tout juste terminé. Les réactions des pilotes, les analyses de nos consultants et des invités en plateau. + Sport + Formule 1 + + 0 . 23 . + + Tout public + + + + Fin des programmes + Nos programmes se terminent pour cette journée, en attendant ceux de demain. + Programme + Fin + + + Tout public + + + + Fin des programmes + Nos programmes se terminent pour cette journée, en attendant ceux de demain. + Programme + Fin + + + Tout public + + + + Golf : Open de Los Cabos + Circuit américain 2023/2024. Open de Los Cabos. Suivez l'Open de Playa del Carmen, aussi appelé Mayakoba Golf Classic, un tournoi du PGA Tour de golf. Les meilleurs golfeurs de la planète se retrouvent tous les ans au El Camaleon Golf Club à Cancun, dans la Riviera Maya au Mexique, afin de remporter ce trophée. Sa première édition a eu lieu en 2007. + Sport + Golf + + + Tout public + + + + Rugby : Top 14 + Top 14 2023/2024. 5e journée. Bordeaux-Bègles / Montpellier. L'ensemble du service rugby de CANAL+ se mobilise pour faire vivre le grand feuilleton du Top 14. En jeu le bout de bois le plus précieux de l'hexagone : le fameux Bouclier de Brennus ! + Sport + Rugby + + + Tout public + + + + Rugby : Top 14 + Top 14 2023/2024. 5e journée. Racing 92 / Lyon. Les Franciliens du Racing 92 accueillent le Lyon LOU pour cette 5e journée de championnat : les locaux ont pris un meilleur départ que les visiteurs depuis le début de saison. Mais la trêve internationale va peut-être rebattre les cartes. Une éventuelle victoire de Lyon permettrait aux Gones de remonter dans la première partie de tableau. Le Racing 92, quant à lui, espère aussi une victoire pour suivre le rythme du Stade Français Paris qui était alors installé dans le siège de leader du Top 14. Le LOU peut-il venir faire un coup sur la pelouse de la Défense Arena ? + Sport + Rugby + + + Tout public + + + + Canal Rugby Club 1re partie + 2023/2024. Astrid Bard, accompagnée des consultants et journalistes rugby de CANAL+, prend la tête du CANAL RUGBY CLUB, l'émission emblématique du rugby qui se renouvelle pour sa neuvième saison. Le magazine, diffusé en clair, met à l'honneur le Top 14 dont les rencontres sont proposées en exclusivité et en intégralité sur les chaînes CANAL+. Cette saison, l'émission propose encore plus d'immersion en direct des terrains chaque week-end et plus de reportages inside et d'interviews de personnalités du rugby afin de décrypter les enjeux et résultats de chaque journée. + Sport + Rugby + + 0 . 3 . + + Tout public + + + + Rugby : Pro D2 + Pro D2 2023/2024. 9e journée. Biarritz / Agen. Biarritz et Agen, deux équipes de milieu de tableau en ce début de saison, s'affrontent au parc des sports d'Aguilera pour le compte de la 9e journée de Pro D2. + Sport + Rugby + + + Tout public + + + + Rugby : Pro D2 + Pro D2 2023/2024. 9e journée. Dax / Mont-de-Marsan. L'US Dax, qui flirte avec la zone rouge en Pro D2, aura fort à faire face à un Stade montois aux portes du Top 5 du classement. C'est le grand retour de l'historique derby landais, ce soir, au stade Maurice-Boyau. + Sport + Rugby + + + Tout public + + + + Rugby : Top 14 + Top 14 2023/2024. 5e journée. Stade Français Paris / Castres. L'ensemble du service rugby de CANAL+ se mobilise pour faire vivre le grand feuilleton du Top 14. En jeu le bout de bois le plus précieux de l'hexagone : le fameux Bouclier de Brennus ! + Sport + Rugby + + + Tout public + + + + Rugby : Top 14 + Top 14 2023/2024. 5e journée. Clermont-Auvergne / Bayonne. L'ensemble du service rugby de CANAL+ se mobilise pour faire vivre le grand feuilleton du Top 14. En jeu le bout de bois le plus précieux de l'hexagone : le fameux Bouclier de Brennus ! + Sport + Rugby + + + Tout public + + + + La grille + Grand Prix de Sao Paulo + 2023. Près d'une heure avant le départ, les journalistes de la chaîne sont en place pour faire vivre de l'intérieur l'arrivée sur la grille des pilotes et de leurs monoplaces, avec interviews, analyses techniques, sujets mag et portraits. + Sport + Formule 1 + + 0 . 21 . + + Tout public + + + + Formule 1 : Grand Prix de Sao Paulo + Championnat du monde 2023. Grand Prix de Sao Paulo. En 2022, c'est le pilote britannique George Russell (Mercedes) qui avait remporté la course lors du Grand Prix de São Paulo au Brésil. Qui va prendre la suite en 2023, alors même que Max Verstappen semble irrésistible ? + Sport + Formule 1 + + + Tout public + + + + Le podium + Grand Prix de Sao Paulo + 2023. Les hymnes, la remise des trophées aux pilotes ayant terminé aux trois premières places, le traditionnel champagne qui coule à flots : toute la cérémonie du podium du Grand Prix de Formule 1 du jour à suivre avec les équipes de Canal+ ! + Sport + Formule 1 + + 0 . 21 . + + Tout public + + + + Formula One, le mag + Grand Prix de Sao Paulo, 1re partie + 2023. Margot Laffite propose ce debrief à chaud du Grand Prix de Formule 1™ tout juste terminé. Les réactions des pilotes, les analyses de nos consultants et des invités en plateau. + Sport + Formule 1 + + 0 . 22 . + + Tout public + + + + Formula One, le mag + Grand Prix de Sao Paulo, 2e partie + 2023. Margot Laffite propose ce debrief à chaud du Grand Prix de Formule 1™ tout juste terminé. Les réactions des pilotes, les analyses de nos consultants et des invités en plateau. + Sport + Formule 1 + + 0 . 23 . + + Tout public + + + + Golf : Open de Los Cabos + Circuit américain 2023/2024. Open de Los Cabos. Suivez l'Open de Playa del Carmen, aussi appelé Mayakoba Golf Classic, un tournoi du PGA Tour de golf. Les meilleurs golfeurs de la planète se retrouvent tous les ans au El Camaleon Golf Club à Cancun, dans la Riviera Maya au Mexique, afin de remporter ce trophée. Sa première édition a eu lieu en 2007. + Sport + Golf + + + Tout public + + + + Fin des programmes + Nos programmes se terminent pour cette journée, en attendant ceux de demain. + Programme + Fin + + + Tout public + + + + Fin des programmes + Nos programmes se terminent pour cette journée, en attendant ceux de demain. + Programme + Fin + + + Tout public + + + + Late Sport 360 + 2023/2024. Présentée par Nicolas Tourriol ou Virginie Ramel, cette émission multisports, experte et conviviale, propose un tour complet de l'actualité du sport : football, rugby, golf, sports mécaniques de la Formule 1™ au MotoGP™... Les journalistes de la rédaction de CANAL+ interviennent chaque jour en fonction des sujets abordés. Du décryptage, des débats, des infos, des images inédites pour revenir sur les faits marquants de nos compétitions, et le meilleur des réseaux sociaux. + Sport + Multisports + + + Tout public + + + + La grille + Grand Prix de Sao Paulo + 2023. Près d'une heure avant le départ, les journalistes de la chaîne sont en place pour faire vivre de l'intérieur l'arrivée sur la grille des pilotes et de leurs monoplaces, avec interviews, analyses techniques, sujets mag et portraits. + Sport + Formule 1 + + 0 . 21 . + + Tout public + + + + Formule 1 : Grand Prix de Sao Paulo + Championnat du monde 2023. Grand Prix de Sao Paulo. En 2022, c'est le pilote britannique George Russell (Mercedes) qui avait remporté la course lors du Grand Prix de São Paulo au Brésil. Qui va prendre la suite en 2023, alors même que Max Verstappen semble irrésistible ? + Sport + Formule 1 + + + Tout public + + + + Le podium + Grand Prix de Sao Paulo + 2023. Les hymnes, la remise des trophées aux pilotes ayant terminé aux trois premières places, le traditionnel champagne qui coule à flots : toute la cérémonie du podium du Grand Prix de Formule 1 du jour à suivre avec les équipes de Canal+ ! + Sport + Formule 1 + + 0 . 21 . + + Tout public + + + + Formula One, le mag + Grand Prix de Sao Paulo, 1re partie + 2023. Margot Laffite propose ce debrief à chaud du Grand Prix de Formule 1™ tout juste terminé. Les réactions des pilotes, les analyses de nos consultants et des invités en plateau. + Sport + Formule 1 + + 0 . 22 . + + Tout public + + + + Formula One, le mag + Grand Prix de Sao Paulo, 2e partie + 2023. Margot Laffite propose ce debrief à chaud du Grand Prix de Formule 1™ tout juste terminé. Les réactions des pilotes, les analyses de nos consultants et des invités en plateau. + Sport + Formule 1 + + 0 . 23 . + + Tout public + + + + Fractionné F1 + Big Five : la notoriété + 2023. + Sport + Formule 1 + + 0 . 13 . + + Tout public + + + + Canal Rugby Club + 2023/2024. Astrid Bard, accompagnée des consultants et journalistes rugby de CANAL+, prend la tête du CANAL RUGBY CLUB, l'émission emblématique du rugby qui se renouvelle pour sa neuvième saison. Le magazine, diffusé en clair, met à l'honneur le Top 14 dont les rencontres sont proposées en exclusivité et en intégralité sur les chaînes CANAL+. Cette saison, l'émission propose encore plus d'immersion en direct des terrains chaque week-end et plus de reportages inside et d'interviews de personnalités du rugby afin de décrypter les enjeux et résultats de chaque journée. + Sport + Rugby + + 0 . 4 . + + Tout public + + + + Rugby : Top 14 + Top 14 2023/2024. 5e journée. Pau / Toulouse. Pour conclure cette 5e journée de Top 14, c'est déjà un choc entre la Section Paloise, qui était à la 2e place du classement derrière le Stade Français, et le Stade Toulousain, placé en embuscade à la 5e place. Pau a une belle opportunité de rebattre les cartes du début de championnat, s'il venait à dominer les Toulousains. Ces derniers viennent évidemment en terre paloise déterminés et désireux de reprendre leur marche en avant. Les rugbymen de Pau vont-ils avoir les ressources pour surprendre Toulouse ou vont-ils subir la loi des hommes d'Ugo Mola ? + Sport + Rugby + + + Tout public + + + + Canal Rugby Club le débrief + 2023/2024. Astrid Bard, accompagnée des consultants et journalistes rugby de CANAL+, prend la tête du CANAL RUGBY CLUB, l'émission emblématique du rugby qui se renouvelle pour sa neuvième saison. Le magazine, diffusé en clair, met à l'honneur le Top 14 dont les rencontres sont proposées en exclusivité et en intégralité sur les chaînes CANAL+. Cette saison, l'émission propose encore plus d'immersion en direct des terrains chaque week-end et plus de reportages inside et d'interviews de personnalités du rugby afin de décrypter les enjeux et résultats de chaque journée. + Sport + Rugby + + 0 . 8 . + + Tout public + + + + Rugby : Pro D2 + Pro D2 2023/2024. A vivre, sur CANAL+ SPORT, en direct et en exclusivité, la meilleure affiche de chaque journée avec un match en prime le jeudi, et deux matchs le vendredi, à 18H30 et 21H00. + Sport + Rugby + + + Tout public + + + + Rugby : Pro D2 + Pro D2 2023/2024. A vivre, sur CANAL+ SPORT, en direct et en exclusivité, la meilleure affiche de chaque journée avec un match en prime le jeudi, et deux matchs le vendredi, à 18H30 et 21H00. + Sport + Rugby + + + Tout public + + + + Rugby : Pro D2 + Pro D2 2023/2024. A vivre, sur CANAL+ SPORT, en direct et en exclusivité, la meilleure affiche de chaque journée avec un match en prime le jeudi, et deux matchs le vendredi, à 18H30 et 21H00. + Sport + Rugby + + + Tout public + + + + Soir de rugby + 2023/2024. Tous les résumés des matches de Pro D2 de la soirée, des interviews et des analyses, avec les experts de la chaîne. Plus, avant chaque journée de Top 14, toutes les dernières infos et les compositions des équipes qui s'affrontent. + Sport + Rugby + + + Tout public + + + + Fractionné Rugby + 2023/2024. Sport noble par excellence, le rugby figure parmi les disciplines les plus populaires. Garants du fairplay, les joueurs cachent de véritables émotions sous leurs impressionnantes carapaces. Découvres des belles histoires liées au monde de l'ovalie dans ce magazine consacré à ce sport. + Sport + Rugby + + + Tout public + + + + Rugby : Top 14 + Top 14 2023/2024. 5e journée. Oyonnax / La Rochelle. L'ensemble du service rugby de CANAL+ se mobilise pour faire vivre le grand feuilleton du Top 14. En jeu le bout de bois le plus précieux de l'hexagone : le fameux Bouclier de Brennus ! + Sport + Rugby + + + Tout public + + + + Rugby : Top 14 + Top 14 2023/2024. 5e journée. Pau / Toulouse. Pour conclure cette 5e journée de Top 14, c'est déjà un choc entre la Section Paloise, qui était à la 2e place du classement derrière le Stade Français, et le Stade Toulousain, placé en embuscade à la 5e place. Pau a une belle opportunité de rebattre les cartes du début de championnat, s'il venait à dominer les Toulousains. Ces derniers viennent évidemment en terre paloise déterminés et désireux de reprendre leur marche en avant. Les rugbymen de Pau vont-ils avoir les ressources pour surprendre Toulouse ou vont-ils subir la loi des hommes d'Ugo Mola ? + Sport + Rugby + + + Tout public + + + + Golf+, le mag + 2023/2024. Présentée par Astrid Bard, l'émission consacrée à l'actualité du golf proposera cette saison encore plus d'images, et notamment les "insides" passés inaperçus lors des directs. Pour tout savoir des coulisses du monde du golf. + Sport + Golf + + 0 . 10 . + + Tout public + + + + Au-delà du KO + 2023. + Sport + Boxe + + + Tout public + + + + Fin des programmes + Nos programmes se terminent pour cette journée, en attendant ceux de demain. + Programme + Fin + + + Tout public + + + + Fin des programmes + Nos programmes se terminent pour cette journée, en attendant ceux de demain. + Programme + Fin + + + Tout public + + + + Late Sport 360 + 2023/2024. Présentée par Nicolas Tourriol ou Virginie Ramel, cette émission multisports, experte et conviviale, propose un tour complet de l'actualité du sport : football, rugby, golf, sports mécaniques de la Formule 1™ au MotoGP™... Les journalistes de la rédaction de CANAL+ interviennent chaque jour en fonction des sujets abordés. Du décryptage, des débats, des infos, des images inédites pour revenir sur les faits marquants de nos compétitions, et le meilleur des réseaux sociaux. + Sport + Multisports + + + Tout public + + + + Rugby : Pro D2 + Pro D2 2023/2024. 9e journée. Biarritz / Agen. Biarritz et Agen, deux équipes de milieu de tableau en ce début de saison, s'affrontent au parc des sports d'Aguilera pour le compte de la 9e journée de Pro D2. + Sport + Rugby + + + Tout public + + + + Rugby : Top 14 + Top 14 2023/2024. 5e journée. Pau / Toulouse. Pour conclure cette 5e journée de Top 14, c'est déjà un choc entre la Section Paloise, qui était à la 2e place du classement derrière le Stade Français, et le Stade Toulousain, placé en embuscade à la 5e place. Pau a une belle opportunité de rebattre les cartes du début de championnat, s'il venait à dominer les Toulousains. Ces derniers viennent évidemment en terre paloise déterminés et désireux de reprendre leur marche en avant. Les rugbymen de Pau vont-ils avoir les ressources pour surprendre Toulouse ou vont-ils subir la loi des hommes d'Ugo Mola ? + Sport + Rugby + + + Tout public + + + + Golf+, le mag + 2023/2024. Présentée par Astrid Bard, l'émission consacrée à l'actualité du golf proposera cette saison encore plus d'images, et notamment les "insides" passés inaperçus lors des directs. Pour tout savoir des coulisses du monde du golf. + Sport + Golf + + 0 . 10 . + + Tout public + + + + Les Minots : le football à l'état pur + 2023. Le 7 avril 1981, alors que l'OM est en deuxième division, le tribunal de commerce rend sa décision et prononce la liquidation de biens et le règlement judiciaire à l'encontre du club. Véritable coup de tonnerre, le personnel est placé en chômage technique et les joueurs professionnels, libérés. L'OM va pourtant être sauvé grâce à ceux que l'on surnomme les "Minots" : le gardien Marc Lévy, Christian Caminiti, Jacques Lopez, José Anigo, l'entraîneur-joueur Roland Gransart, Eric Terrones (décédé en septembre 2019), Michel Castellani ou encore François Lapinta. Ils réussissent l'exploit de sauver l'Olympique de Marseille en décrochant trois victoires, et trois matches nuls suffisants pour rester en deuxième division la saison suivante. + Sport + Football + + + Tout public + + + + Rugby : Top 14 + Top 14 2023/2024. 5e journée. Perpignan / Toulon. L'ensemble du service rugby de CANAL+ se mobilise pour faire vivre le grand feuilleton du Top 14. En jeu le bout de bois le plus précieux de l'hexagone : le fameux Bouclier de Brennus ! + Sport + Rugby + + + Tout public + + + + Rugby : Top 14 + Top 14 2023/2024. 5e journée. Oyonnax / La Rochelle. L'ensemble du service rugby de CANAL+ se mobilise pour faire vivre le grand feuilleton du Top 14. En jeu le bout de bois le plus précieux de l'hexagone : le fameux Bouclier de Brennus ! + Sport + Rugby + + + Tout public + + + + Rugby : Top 14 + Top 14 2023/2024. 5e journée. Pau / Toulouse. Pour conclure cette 5e journée de Top 14, c'est déjà un choc entre la Section Paloise, qui était à la 2e place du classement derrière le Stade Français, et le Stade Toulousain, placé en embuscade à la 5e place. Pau a une belle opportunité de rebattre les cartes du début de championnat, s'il venait à dominer les Toulousains. Ces derniers viennent évidemment en terre paloise déterminés et désireux de reprendre leur marche en avant. Les rugbymen de Pau vont-ils avoir les ressources pour surprendre Toulouse ou vont-ils subir la loi des hommes d'Ugo Mola ? + Sport + Rugby + + + Tout public + + + + L'oeil des pros + Céline Boutier + 2023. Les plus grands golfeurs de la planète se retrouvent pour l'un des plus importants rendez-vous golf de la saison, la Ryder Cup, à suivre sur les antennes de CANAL+. + Sport + Golf + + 0 . 165 . + + Tout public + + + + Golf+, le mag + 2023/2024. Présentée par Astrid Bard, l'émission consacrée à l'actualité du golf proposera cette saison encore plus d'images, et notamment les "insides" passés inaperçus lors des directs. Pour tout savoir des coulisses du monde du golf. + Sport + Golf + + 0 . 10 . + + Tout public + + + + Le 5e tour + 2023/2024. Rendez-vous hebdomadaire des passionnés de golf, le magazine "Le 5e tour" revient sur le plus prestigieux tournoi, qui s'est déroulé le week-end passé, avec un résumé des trois premiers tours, une large page consacrée à la dernière journée, accompagnés d'interviews et d'images. La rédaction devrait faire, cette fois, la part belle à l'Open de Los Cabos, disputé au Mexique.. + Sport + Golf + + 0 . 10 . + + Tout public + + + + Rugby : Top 14 + Top 14 2023/2024. 5e journée. Racing 92 / Lyon. Les Franciliens du Racing 92 accueillent le Lyon LOU pour cette 5e journée de championnat : les locaux ont pris un meilleur départ que les visiteurs depuis le début de saison. Mais la trêve internationale va peut-être rebattre les cartes. Une éventuelle victoire de Lyon permettrait aux Gones de remonter dans la première partie de tableau. Le Racing 92, quant à lui, espère aussi une victoire pour suivre le rythme du Stade Français Paris qui était alors installé dans le siège de leader du Top 14. Le LOU peut-il venir faire un coup sur la pelouse de la Défense Arena ? + Sport + Rugby + + + Tout public + + + + 24h de Boulleau + Episode 1 : Laure au Maroc + 2023. Laure Boulleau se rend au Maroc afin de dévoiler les recettes des récents succès du football marocain. Elle y découvre les pôles d'excellence et de formation du foot marocain, et notamment l'académie Mohammed VI, et s'entretient avec les grands acteurs de cette mutation comme Walid Regragui et Reynald Pedros, sélectionneurs des équipes du Maroc masculine et féminine, et certains joueurs phare de la sélection comme Azzedine Ounahi ou Nayef Aguerd. + Sport + Football + + 2 . 0 . + + Tout public + + + + Lionceaux de la Teranga + 2023. Ils s'appellent Léo, Naïm, Stelio, Axel, Matthias, Tiago, Timothée et ce sont peut-être les futures stars de la Ligue 1. En attendant, ils poursuivent leur formation chez les moins de 16 ans de l'Olympique Lyonnais. Pendant une semaine, ces jeunes footballeurs ont découvert le Sénégal. Entre plongée dans une nouvelle culture et péripéties sportives, récit d'un voyage inoubliable... + Sport + Football + + + Tout public + + + + Fin des programmes + Nos programmes se terminent pour cette journée, en attendant ceux de demain. + Programme + Fin + + + Tout public + + + + Fin des programmes + Nos programmes se terminent pour cette journée, en attendant ceux de demain. + Programme + Fin + + + Tout public + + + + Late Sport 360 + 2023/2024. Présentée par Nicolas Tourriol ou Virginie Ramel, cette émission multisports, experte et conviviale, propose un tour complet de l'actualité du sport : football, rugby, golf, sports mécaniques de la Formule 1™ au MotoGP™... Les journalistes de la rédaction de CANAL+ interviennent chaque jour en fonction des sujets abordés. Du décryptage, des débats, des infos, des images inédites pour revenir sur les faits marquants de nos compétitions, et le meilleur des réseaux sociaux. + Sport + Multisports + + + Tout public + + + + Le 5e tour + 2023/2024. Rendez-vous hebdomadaire des passionnés de golf, le magazine "Le 5e tour" revient sur le plus prestigieux tournoi, qui s'est déroulé le week-end passé, avec un résumé des trois premiers tours, une large page consacrée à la dernière journée, accompagnés d'interviews et d'images. La rédaction devrait faire, cette fois, la part belle à l'Open de Los Cabos, disputé au Mexique.. + Sport + Golf + + 0 . 10 . + + Tout public + + + + The AIG Women's Open 2023, film officiel + 2023. L'AIG Women's Open a eu lieu, du 10 au 13 août dernier, sur le parcours du Walton Heath Old Course et a vu la victoire de l'Américaine de 25 ans Lilia Vu qui a remporté son deuxième titre en Majeur et s'est emparée de la tête du classement mondial. La Française, Céline Boutier, lauréate des deux tournois précédents, passe ainsi de la troisième à la quatrième place mondiale. + Sport + Golf + + + Tout public + + + + L'oeil des pros + Céline Boutier + 2023. Les plus grands golfeurs de la planète se retrouvent pour l'un des plus importants rendez-vous golf de la saison, la Ryder Cup, à suivre sur les antennes de CANAL+. + Sport + Golf + + 0 . 165 . + + Tout public + + + + Intérieur sport + Par monts et par maux + Immersion dans le quotidien de Mathieu Blanchard, venu à la marche à 26 ans pour perdre du poids et qui, cinq ans plus tard, montait terminait 2e de l'Ultra Trail du Mont-Blanc.. + Magazine + Sport + + 16 . 1 . + + Tout public + + + + Rugby : Top 14 + Top 14 2023/2024. 5e journée. Racing 92 / Lyon. Les Franciliens du Racing 92 accueillent le Lyon LOU pour cette 5e journée de championnat : les locaux ont pris un meilleur départ que les visiteurs depuis le début de saison. Mais la trêve internationale va peut-être rebattre les cartes. Une éventuelle victoire de Lyon permettrait aux Gones de remonter dans la première partie de tableau. Le Racing 92, quant à lui, espère aussi une victoire pour suivre le rythme du Stade Français Paris qui était alors installé dans le siège de leader du Top 14. Le LOU peut-il venir faire un coup sur la pelouse de la Défense Arena ? + Sport + Rugby + + + Tout public + + + + Remontadas + 2023. Le 8 mars 2017, un nouveau mot fait son apparition dans le langage des amoureux du foot : "remontada". Ce jour-là, en Catalogne, l'impossible se réalise : après une lourde défaite au match aller (4-0), le FC Barcelone terrasse le Paris Saint-Germain en Ligue des Champions sur le score de 6-1, contre toute attente, déjouant tous les pronostics. Un scénario fou que le Real Madrid de Karim Benzema a réussi à imposer trois fois à ses adversaires en 2022 pour gagner sa quatorzième Ligue des champions. + Sport + Football + + + Tout public + + + + Golf+, le mag + 2023/2024. Présentée par Astrid Bard, l'émission consacrée à l'actualité du golf proposera cette saison encore plus d'images, et notamment les "insides" passés inaperçus lors des directs. Pour tout savoir des coulisses du monde du golf. + Sport + Golf + + + Tout public + + + + La grille + Grand Prix de Sao Paulo + 2023. Près d'une heure avant le départ, les journalistes de la chaîne sont en place pour faire vivre de l'intérieur l'arrivée sur la grille des pilotes et de leurs monoplaces, avec interviews, analyses techniques, sujets mag et portraits. + Sport + Formule 1 + + 0 . 21 . + + Tout public + + + + Formule 1 : Grand Prix de Sao Paulo + Championnat du monde 2023. Grand Prix de Sao Paulo. En 2022, c'est le pilote britannique George Russell (Mercedes) qui avait remporté la course lors du Grand Prix de São Paulo au Brésil. Qui va prendre la suite en 2023, alors même que Max Verstappen semble irrésistible ? + Sport + Formule 1 + + + Tout public + + + + Le podium + Grand Prix de Sao Paulo + 2023. Les hymnes, la remise des trophées aux pilotes ayant terminé aux trois premières places, le traditionnel champagne qui coule à flots : toute la cérémonie du podium du Grand Prix de Formule 1 du jour à suivre avec les équipes de Canal+ ! + Sport + Formule 1 + + 0 . 21 . + + Tout public + + + + Formula One, le mag + Grand Prix de Sao Paulo, 1re partie + 2023. Margot Laffite propose ce debrief à chaud du Grand Prix de Formule 1™ tout juste terminé. Les réactions des pilotes, les analyses de nos consultants et des invités en plateau. + Sport + Formule 1 + + 0 . 22 . + + Tout public + + + + Formula One, le mag + Grand Prix de Sao Paulo, 2e partie + 2023. Margot Laffite propose ce debrief à chaud du Grand Prix de Formule 1™ tout juste terminé. Les réactions des pilotes, les analyses de nos consultants et des invités en plateau. + Sport + Formule 1 + + 0 . 23 . + + Tout public + + + + Avant-match Pro D2 + 2023/2024. + Sport + Rugby + + + Tout public + + + + Rugby : Pro D2 + Pro D2 2023/2024. 10e journée. Colomiers / Vannes. Même à l'extérieur, les Bretons de Vannes partent avec les faveurs des pronostics lors de cette 10e journée de Pro D2. + Sport + Rugby + + + Tout public + + + + Après-match Pro D2 + 2023/2024. + Sport + Rugby + + + Tout public + + + + Golf : Championnat des Bermudes + Circuit américain 2023/2024. Championnat des Bermudes. Suivez le Championnat des Bermudes de golf, un tournoi professionnel de golf. Créé en 2019, ce tournoi a été intégré au PGA Tour lors de la saison 2019/2020, et il est considéré comme un tournoi alternatif car il ne fait toujours pas partie du circuit définitif du PGA Tour. Sa première édition s'est disputée au Port Royal Golf Course de Southampton Parish aux Bermudes. + Sport + Golf + + + Tout public + + + + Baby foot, neuf mois dans la vie d'Amel Majri + Amel Majri est devenue la première joueuse de l'équipe de France de football à devenir maman durant sa carrière. Un bouleversement dans sa vie, mais aussi dans le football féminin qui ne compte pas beaucoup d'exemple de ce type. Comment son club de l'Olympique Lyonnais l'a-t-il accompagnée dans ce changement ? Comment envisager un retour au plus haut niveau ? Jessica Houara, ancienne coéquipière d'Amel Majri, a suivi la footballeuse durant ces premiers mois de maman. Elle est également allée à la rencontre d'autres joueuses devenues mères durant leur carrière. + Documentaire + Sport + + + Tout public + + + + Fin des programmes + Nos programmes se terminent pour cette journée, en attendant ceux de demain. + Programme + Fin + + + Tout public + + + + Téléachat + Aucune description + Magazine + Mag. TV-Achat + + + Tout public + + + + Snapped : cauchemars au réveil + Terreurs nocturnes + Un élève de primaire se réveille en pleine nuit. En entrant dans la chambre parentale, il découvre sa mère poignardée près de 40 fois dans son lit. + Documentaire + Doc. Société + + 0 . 0 . + + + -10 + + + + Snapped : cauchemars au réveil + La clé du meurtre + Lorsqu'une jeune assistante pédagogique est tuée par balle au milieu de la nuit, sa colocataire appelle les secours et déclare qu'il s'agit d'un suicide. + Documentaire + Doc. Société + + 0 . 0 . + + + -10 + + + + Snapped : richesse fatale + Donna Horwitz + Un matin, un agent de sécurité découvre le cadavre de Lanny Horwitz, un promoteur immobilier de 66 ans. Tout laisse penser à un suicide. Mais quand le fils de la famille sort du silence, il mène les enquêteurs sur une piste en révélant que la relation entre ses parents n'avait rien d'un long fleuve tranquille. + Magazine + Mag. Société + + 0 . 7 . + + + -10 + + + + Snapped : richesse fatale + Michele Williams + A Keller, au Texas, la police reçoit un appel de Michele Williams expliquant qu'un intrus est entré par effraction dans leur maison et aurait tiré sur son mari, Greg Williams, un riche entrepreneur. Les enquêteurs ne trouvent cependant pas de signe d'effraction. La mère de famille déclare alors que son mari s'est suicidé. + Magazine + Mag. Société + + 0 . 8 . + + + -10 + + + + Snapped : richesse fatale + Celeste Beard + Le 2 octobre 1999, à Austin, au Texas, la police reçoit un appel de Steven Beard qui explique s'être réveillé avec une immense douleur à l'estomac. Les secours se rendent à son domicile et font face à une scène de crime : Steven Beard se trouve entre la vie et la mort. La police interroge alors les proches de l'homme et un nom revient : Tracey Tarlton. + Magazine + Mag. Société + + 0 . 9 . + + + -10 + + + + Snapped : noces de sang + Robert Campbell + Rusty et Becky, jeunes mariés, disparaissent dans des circonstances suspectes, dans une petite ville du Missouri. Le couple n'avait en apparence aucun ennemi, si ce n'est un certain Robert Campbell, un homme qui partageait un terrain avec Rusty. Après plusieurs désaccords, les deux hommes avaient reçu l'ordre de s'éloigner l'un de l'autre. + Magazine + Mag. Société + + 0 . 0 . + + + -10 + + + + Snapped : noces de sang + Bennett et Hellman + Dans la nuit du 15 mai 2017, les secours reçoivent un appel satellite du bateau de Lewis Bennett. Son catamaran aurait chaviré avec, à bord, sa femme Isabella Hellman. Lorsque l'équipe de sauvetage arrive enfin sur place, elle trouve en effet Lewis sur le radeau de sauvetage, à la dérive, mais aucune trace de la jeune femme. + Magazine + Mag. Société + + 0 . 1 . + + + -10 + + + + Snapped : cauchemars au réveil + Une exécution à Bigelow + Dans une petite ville de l'Arkansas, alors que sa femme dort à côté, un homme est tué d'une seule balle dans la tête. L'épouse serait-elle la meurtrière ? + Documentaire + Doc. Société + + 0 . 0 . + + + -10 + + + + Snapped : cauchemars au réveil + Le masque de la mort + A Noël, un cambriolage transforme une maison en scène de crime. Agressée pendant son sommeil, Anita Yunk survit mais son mari n'a pas cette chance. + Documentaire + Doc. Société + + 0 . 0 . + + + -10 + + + + Crimes + Spéciale le mystère Turquin + En mars 1991, Jean-Louis Turquin appelle les policiers de Nice pour signaler que son fils, âgé de 8 ans, a disparu. La mère de l'enfant révèle aux enquêteurs que son mari lui aurait avoué le meurtre de leur enfant. Jean-Louis Turquin est alors inculpé d'assassinat. Le 7 janvier 2017, il est retrouvée assassiné à son domicile. + Magazine + Mag. Société + + 0 . 78 . + + + -10 + + + + Crimes + Dans le Bordelais + Au sommaire : "Harcèlement fatal au lycée". En mars 2013, un lycéen est grièvement blessé en plein cours. - "La mort en cadeau". En octobre 2011, Marylène fête son anniversaire avec son ami. Mais le couple ne rentre pas. - "Pêche macabre". En 2006, sur la rivière de l'Isle, des pêcheurs font une prise inattendue. + Magazine + Mag. Société + + 0 . 12 . + + + -10 + + + + Damoiselle + Electrique ma routine cheveux ! + Scandale ! J'ai relooké ma cousine Suzanne. Ça part en catholicisme ! + Série + Série Rires + + 0 . 8 . + + Tout public + + + + Downton Abbey + L'entraide + L'absence de Bates se prolongeant, Robert prend un nouveau valet, de retour du front avec un traumatisme important. Tandis qu'Edith apprend à conduire un tracteur, sa soeur Sybil travaille comme infirmière. Isobel suggère de transformer Downton Abbey en lieu de convalescence pour des soldats blessés... + Série + Série Passion + + 1 . 1 . + + Tout public + + + + Downton Abbey + La maison des intrigues + Matthew annonce sa visite, en compagnie du général Strutt. Branson y voit l'occasion d'un coup d'éclat. Violet et Rosamund conspirent pour écarter Lavinia de la route de Mary. Carson se demande comment recevoir le général Strutt sans valet de pied. Madame Patmore contraint Daisy à se fiancer avec William... + Série + Série Passion + + 1 . 2 . + + Tout public + + + + Héritages + Quand un héritage tourne au drame familial + Au sommaire : "Complot de famille". Dans l'Yonne, fin septembre 2017, après une journée de travail, deux frères, ouvriers agricoles, rejoignent leurs tracteurs lorsqu'un drame se produit. - "L'héritage de toutes les convoitises". En rendant visite à Renée, 86 ans, son fils a découvert le corps sans vie de sa mère. + Magazine + Mag. Société + + 0 . 3 . + + + -10 + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Téléachat + Aucune description + Magazine + Mag. TV-Achat + + + Tout public + + + + Châteaux XXL : le défi d'une vie + Dick part à la recherche d'une réserve de vin légendaire, cachée par les Allemands dans l'une des grottes de Jonathan et Michael pendant la Seconde Guerre mondiale. + Documentaire + Doc. Société + + + Tout public + + + + Châteaux XXL : le défi d'une vie + Jonathan et Michael rencontrent leurs investisseurs. De leur côté, Philip et Angelina organisent la fête d'anniversaire qu'ils ont passé des semaines à préparer. + Documentaire + Doc. Société + + + Tout public + + + + Châteaux XXL : le défi d'une vie + Michael invite Angel pour qu'elle l'aide à organiser un goûter pour les habitants pendant que Philip et Angelina achètent de nouveaux meubles. + Documentaire + Doc. Société + + + Tout public + + + + Châteaux XXL : le défi d'une vie + Alors que Jonathan et Michael sont confrontés à un problème de canalisation, Philip et Angelina partent à la recherche de leur propre château. + Documentaire + Doc. Société + + + Tout public + + + + Châteaux XXL : le défi d'une vie + Pendant que Jonathan et Michael doivent encore faire face à une succession de problèmes, Mandy et Steve ont toujours un souci avec leur piscine. + Documentaire + Doc. Société + + + Tout public + + + + Châteaux XXL : le défi d'une vie + Donna McDougal pense que des armures et des armes anciennes ont été cachées et enterrées dans le lac de son château pendant la Seconde Guerre mondiale. + Documentaire + Doc. Société + + + Tout public + + + + Châteaux XXL : le défi d'une vie + Pendant que Dick et Donna sont toujours à la recherche de l'armure enterrée dans le lac, Tim et Krys continuent de se démener pour aménager le grenier. + Documentaire + Doc. Société + + + Tout public + + + + Châteaux XXL : le défi d'une vie + Alors que Dick se lance dans la construction de toilettes à compost, un jeune couple veut ouvrir son château comme chambre d'hôtes et lieu de mariage. + Documentaire + Doc. Société + + + Tout public + + + + Châteaux XXL : le défi d'une vie + Billy, Gwendoline et Michael essayent toujours de réparer leur cheminée. Dick et Angel se remémorent les problèmes de chauffage de leur château. + Documentaire + Doc. Société + + + Tout public + + + + Candice Renoir + Toute vérité n'est pas bonne à dire + Tout juste de retour de Valenciennes où ils ont passé une nuit torride, Candice et Antoine sont chargés d'enquêter sur la mort d'une jeune femme percutée par une voiture dans le voisinage, alors que son mari la croyait en voyage en Allemagne. Cette enquête fait miroir à la situation de Candice et d'Antoine... + Série + Série Suspense + + 3 . 6 . + + Tout public + + + + Candice Renoir + Pas de fumée sans feu + Candice et Antoine poursuivent leur idylle secrète, mais ne parviennent pas à en parler à leurs conjoints respectifs. Par ailleurs, des rumeurs d'enlèvement circulent sur Internet. Un enfant aurait été kidnappé à Sète. C'est Emma, informée par les réseaux sociaux, qui en parle à sa mère... + Série + Série Suspense + + 3 . 7 . + + Tout public + + + + Candice Renoir + C'est dans le malheur qu'on reconnaît ses amis + Un corps sans vie est découvert dans le coffre d'une voiture abandonnée, sous un tunnel. Aline, la responsable de l'IJ, prend soin de dissimuler un des indices trouvés sur la scène de crime. L'équipe se rend sur place. Un face-à-face entre Candice et Aline fait ressurgir le climat de violence des années 80... + Série + Série Suspense + + 3 . 8 . + + Tout public + + + + Candice Renoir + Oeil pour oeil et le monde deviendra aveugle + Le docteur Adler, psychiatre renommé, vient signaler le futur meurtre d'un des membres du groupe Renoir. Une femme aurait la ferme intention de s'en prendre à Antoine. L'équipe prend l'affaire au sérieux. Parallèlement, le commandant Canovas s'éloigne de Candice, peu enclin à lui pardonner ses infidélités... + Série + Série Suspense + + 3 . 9 . + + + -10 + + + + Candice Renoir + Faute avouée à demi pardonnée + D'abord pris pour des figurants au service d'un séminaire d'entreprise, le commandant Renoir et son groupe interviennent au cours d'une "Murder Party". Ils finissent par faire comprendre aux participants qu'un des membres de ce jeu de rôle est vraiment mort. Candice mène aussitôt l'enquête... + Série + Série Suspense + + 4 . 0 . + + Tout public + + + + Candice Renoir + Qui se ressemble s'assemble + Le commandant Renoir, blessée a été déclarée "inapte voie publique". Elle s'infiltre néanmoins dans une communauté des gitans catalans sédentaires, endeuillés par le meurtre d'un jeune homme de 18 ans. Ses collègues et ses proches s'inquiètent pour sa santé : elle devrait être en convalescence... + Série + Série Suspense + + 4 . 1 . + + Tout public + + + + Candice Renoir + Loin des yeux, loin du coeur + Tout à sa joie de revenir à Sète et de réintégrer son ancien groupe, Antoine n'a pas mesuré à quel point le statut de Candice a été dégradé. Les enquêtes criminelles intéressantes ne lui sont plus confiées et elle doit désormais travailler sur des bagarres entre ivrognes et des braquages de supérettes... + Série + Série Suspense + + 3 . 4 . + + Tout public + + + + Candice Renoir + Telle mère, telle fille + Avec le meurtre de son principal suspect, l'enquête de Candice à Valenciennes se complique. D'autant qu'elle est directement menacée de mort par le tueur. + Série + Série Suspense + + 3 . 5 . + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Programme + Programme indéterminé + + + Tout public + + + + Télé-achat + Aucune description + Services + Télé-achat + + + Tout public + + + + Snapped : noces de sang + Bennett et Hellman + Dans la nuit du 15 mai 2017, les secours reçoivent un appel satellite du bateau de Lewis Bennett. Son catamaran aurait chaviré avec, à bord, sa femme Isabella Hellman. Lorsque l'équipe de sauvetage arrive enfin sur place, elle trouve en effet Lewis sur le radeau de sauvetage, à la dérive, mais aucune trace de la jeune femme. + Magazine + Société + + 0 . 1 . + + + -10 + + + + Snapped : noces de sang + Umphrey et Petry + Cassandra Petry et Brian Umphrey partent en voyage pour célébrer leur seconde lune de miel, après un premier mariage qui s'est soldé par un divorce. Mais après plusieurs jours sans nouvelles de Cassandra, la famille de la jeune femme décide d'appeler l'hôtel. En entrant dans la chambre, le personnel fait alors la macabre découverte du corps sans vie de Cassandra, sous les draps du lit. Les enquêteurs se penchent sur le couple et sur les raisons de leur premier divorce. Ils découvrent que Brian était loin du mari idéal et qu'il battait régulièrement Cassandra. + Magazine + Société + + 0 . 4 . + + + -10 + + + + Snapped : noces de sang + John Makris + En novembre 2015, à Rowlett, dans le Texas, les policiers reçoivent l'appel d'un homme qui vient de trouver sa soeur, Laura Grillo, abattue chez elle. La police pense d'abord à un cambriolage qui aurait mal tourné, puis passe en revue l'entourage de la jeune femme. En état de choc, le futur mari de Laura, John Makris, affirme aux enquêteurs que personne ne pouvait en vouloir à la jeune femme. Pourtant, les soupçons s'orientent très vite vers lui. + Magazine + Société + + 0 . 9 . + + + -10 + + + + Snapped : vacances mortelles + Nuit silencieuse, nuit mortelle + Lorsqu'une mère et ses deux filles ne se présentent pas au dîner de Noël, la police se rend à leur domicile et découvre que toutes trois ont été abattues. Le seul survivant de cette tuerie est un bébé de 9 mois, retrouvé déshydraté dans les bras de sa mère, morte d'une balle dans la tête. Les enquêteurs découvrent que ce crime cache un drame familial incestueux. + Magazine + Société + + 2 . 1 . + + + -10 + + + + Le jour où tout a basculé + J'ai découvert un lourd secret de famille + Un adolescent qui tombe subitement malade découvre peu à peu la vérité cachée sur sa filiation. + Magazine + Société + + 1 . 75 . + + Tout public + + + + Le jour où tout a basculé + Nos voisines nous terrorisent + A la suite d'un événement imprévu, des hommes et des femmes ont vu leur vie bouleversée pour le pire et le meilleur. Ces histoires vraies sont interprétées par des comédiens, écrites et réalisées comme un reportage. Pour éclairer ces histoires, Nathalie Fellonneau, avocate spécialisée, apporte son savoir. + Magazine + Société + + 1 . 76 . + + Tout public + + + + Le jour où tout a basculé + Ma rivale est prête à tout pour gagner + Une jeune femme inscrite à un concours de beauté est prête à toutes les malfaisances pour faire perdre sa rivale, jusqu'à en devenir folle... + Magazine + Société + + 1 . 79 . + + Tout public + + + + Le jour où tout a basculé + Ma mère a laissé mourir notre père + Un père de famille qui se sait condamné par la maladie entend rétablir l'équité familiale par son testament. + Magazine + Société + + 1 . 80 . + + Tout public + + + + Le jour où tout a basculé + Ma meilleure amie a profité de moi + Une femme retrouve par hasard son ex-meilleure amie mais cette dernière revient dans sa vie avec l'intention de la voler et de la dépouiller... + Magazine + Société + + 1 . 88 . + + Tout public + + + + Le jour où tout a basculé + Je suis amoureuse de l'assassin de ma soeur ! + Une jeune femme découvre que le garçon dont elle est amoureuse est le chauffard qui a tué sa soeur jumelle... + Magazine + Société + + 1 . 89 . + + Tout public + + + + Le jour où tout a basculé + Mon père est trop strict + Un homme aveuglé par l'extrémisme de sa foi enferme sa femme et sa fille dans une cave quand il découvre qu'elles lui mentent. + Magazine + Société + + 1 . 0 . + + Tout public + + + + Le jour où tout a basculé + Mon mari doute de moi ! + Un sexagénaire prend sa retraite. Entre ennui et monotonie, il se met à soupcçonner sa femme d'avoir un amant. + Magazine + Société + + 1 . 0 . + + Tout public + + + + Plus belle la vie + Alors que Jean-François se demande s'il n'est pas en train de perdre tout contrôle, Nathan a trouvé la solution pour retrouver le sien. De son côté, Babeth s'interroge sur les nouvelles méthodes pédagogiques de l'Education nationale... + Série + Drame + + 9 . 2450 . + + Tout public + + + + Plus belle la vie + Alors que Nathan révèle la part sombre qui se cachait en lui, Xavier s'emporte une nouvelle fois. De leur côté, les lycéens se rendent en nombre chez le proviseur... + Série + Drame + + 9 . 2451 . + + Tout public + + + + Plus belle la vie + Tandis que Jean-François découvre les joies et les incertitudes du travail sur le terrain, Seta enrage. Pendant ce temps, Luna conclut une alliance de circonstance avec sa mère... + Série + Drame + + 9 . 2452 . + + Tout public + + + + Plus belle la vie + Tandis que Mirta et Roland essaient de tromper leur solitude, Frémont voit rouge et en avertit Seta. De son côté, Valentin découvre la générosité de Nathan... + Série + Drame + + 9 . 2453 . + + Tout public + + + + Plus belle la vie + Seta change d'avis. Nathan découvre le monde du silence et angoisse. Quant à Xavier, il assume sa nouvelle priorité quitte à en décevoir certains... + Série + Drame + + 9 . 2454 . + + Tout public + + + + Plus belle la vie + Alors que Johanna est victime d'un curieux lapin, Nathan fait celui qui ne veut rien voir. Jean-François, lui, a l'impression d'être pris pour un imbécile... + Série + Drame + + 9 . 2455 . + + Tout public + + + + Plus belle la vie + Xavier se mouille dangereusement dans les calanques, Frémont en a après Pif le chien et Jean-François passe pour un éternel malade imaginaire... + Série + Drame + + 9 . 2456 . + + Tout public + + + + Plus belle la vie + Xavier se retrouve parmi les convives d'un dîner qui s'avère fort embarrassant. Quant à Nathan, il se sacrifie pour ses élèves, tandis que Fiquin lit en Seta comme dans un livre ouvert... + Série + Drame + + 9 . 2457 . + + Tout public + + + + The Closer : L.A. enquêtes prioritaires + Morts en service + Deux officiers de police et un jeune homme, Kevin Weber, sont retrouvés morts. Johnson pense que les policiers ont été attaqués lors d'un contrôle et que Weber faisait partie des agresseurs. Mais pour Sharon Raydor, des affaires internes, ce dernier n'est qu'un civil, victime du zèle des agents. En se rendant au domicile de Weber pour prévenir sa mère, l'équipe découvre des symboles néo-nazis dans sa chambre. + Série + Policier + + 4 . 6 . + + Tout public + + + + The Closer : L.A. enquêtes prioritaires + Affaires classées + Un couple de randonneurs découvre le cadavre d'un homme à Elysian Park. La victime a été longuement traînée à l'arrière d'une voiture. Selon le légiste, son tortionnaire lui aurait administré de la morphine afin de le maintenir en vie, avant finalement de l'exécuter de deux balles dans la tête. Les papiers du mort sont trouvés dans sa poche. Il s'agit de Howie Greeson, qui avait été fortement soupçonné des meurtres de deux jeunes femmes en 1990. L'inspecteur qui s'était occupé de l'affaire est rappelé pour aider Brenda. Les deux policiers commencent par soupçonner les familles des victimes... + Série + Policier + + 4 . 7 . + + + -10 + + + + The Closer : L.A. enquêtes prioritaires + Médecine parallèle + Brenda assiste, à la demande du lieutenant Tao, au procès d'un homme, Russell Clark, accusé d'avoir étranglé un médecin holistique, Keith Milano. L'accusé reprochait au thérapeute de mettre en danger la santé de son fils schizophrène, James, 19 ans. Le meurtre a eu lieu six mois plus tôt. L'accusé a reconnu être l'auteur des faits et a accepté de plaider coupable. Le procureur Andrea Hobbs instruisait l'affaire. Mais il semble qu'elle soit allée un peu vite en besogne. Clark affirme avoir tué Milano en utilisant ses mains. Or, la photo du cou de la victime montre qu'elle est bien morte étouffée, mais que l'assassin s'est servi d'un objet... + Série + Policier + + 4 . 8 . + + Tout public + + + + The Closer : L.A. enquêtes prioritaires + Si près de l'enfer + Brenda enquête sur le meurtre de deux policiers venant de Tijuana. Toute la brigade est sur le pied de guerre pour retrouver un suspect surveillé par le FBI. Par ailleurs, la brigade des enquêtes prioritaires est en mauvaise posture après la publication de l'article d'un journaliste du Times qui met en cause le service. L'enquête avance. Les agents découvrent que les deux victimes n'ont pas été tuées là où un témoin les a découvertes. En pistant l'appel passé aux secours, ils identifient un certain père Donahue. D'autres indices permettent de penser que les policiers étaient corrompus par un cartel de la drogue. Pope demande à Brenda de passer moins de temps à communiquer avec les médias... + Série + Policier + + 3 . 8 . + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Programme + Programme indéterminé + + + Tout public + + + + Téléachat + Aucune description + Magazine + Mag. TV-Achat + + + Tout public + + + + Snapped : noces de sang + Doug Grant + Doug Grant et sa femme Faylene forment un couple uni. Tous deux mormons, ils sont mariés depuis de nombreuses années. Un jour, Doug découvre le corps sans vie de sa femme dans leur baignoire. La police s'interroge sur cette mort potentiellement causée par des médicaments que Faylene prenait. + Magazine + Mag. Société + + 0 . 2 . + + + -10 + + + + Snapped : noces de sang + Amber Hilberling + Le 7 juin 2011, à Tulsa, en Oklahoma, Joshua Hilberling meurt en tombant du 25e étage de la résidence où il habitait avec sa jeune épouse, Amber. Enceinte de 7 mois, celle-ci l'aurait repoussé, pour se défendre, contre la baie vitrée qui aurait cédé sous le poids du jeune homme. En avril 2013, Amber Hilberling est condamnée à 25 ans de prison. + Magazine + Mag. Société + + 0 . 5 . + + + -10 + + + + Snapped : vacances mortelles + La rage de Noël + Juste avant Noël, le corps de Kristine, une jeune mère, est retrouvé étranglé dans une voiture en feu, dans une banlieue tranquille de Minneapolis. Tout porte à croire qu'elle n'a pas été tuée sur place mais que son cadavre y a été placé pour brouiller les pistes. Les détectives entament l'enquête et sont convaincus que l'assassin fait partie de ses proches. + Magazine + Mag. Société + + 2 . 0 . + + + -10 + + + + Snapped : vacances mortelles + Un Nouvel An sanglant + Juste avant le Nouvel An, Cindy, une mère de famille de 37 ans est abattue devant sa porte, sous les yeux de son fils. Plus tard dans la nuit, sept corps sont retrouvés dans une autre maison de banlieue. La police y découvre un véritable bain de sang, classant l'affaire au rang de meurtre de masse. L'agresseur est en liberté, la traque commence. + Magazine + Mag. Société + + 2 . 2 . + + + -10 + + + + Le jour où tout a basculé + J'ai été séquestrée par mes employeurs + Une Pakistanaise étudiante en médecine et employée de maison devient l'esclave moderne du couple franco-russe qui l'emploie + Magazine + Mag. Société + + 1 . 77 . + + Tout public + + + + Le jour où tout a basculé + Mon fils est devenu raciste + Un quadragénaire divorcé et chômeur retourne vivre chez sa mère et se montre raciste envers ses nouveaux voisins africains. La vie lui démontrera qu'il fait fausse route + Magazine + Mag. Société + + 1 . 78 . + + Tout public + + + + Le jour où tout a basculé + Mon père a honte de moi + Un fils de médecin voudrait que son père accepte qu'il a choisi de devenir cuisinier et non pas médecin comme il le voulait + Magazine + Mag. Société + + 1 . 81 . + + Tout public + + + + Le jour où tout a basculé + Mon fils est un braqueur + Un policier en couple avec une restauratrice découvre que son beau-fils est l'auteur d'un braquage chez un bijoutier qui est un habitué du restaurant de sa compagne + Magazine + Mag. Société + + 1 . 82 . + + Tout public + + + + Le jour où tout a basculé + Je suis victime de mon physique ! + Nathalie Fellonneau propose de revivre des histoires de personnes dont la vie a basculé, pour le pire ou le meilleur, à la suite d'un événement. Les récits présentés sont tous inspirés d'histoires qui ont réellement eu lieu. Au sommaire : "je suis victime de mon physique" + Magazine + Mag. Société + + 1 . 90 . + + Tout public + + + + Le jour où tout a basculé + Mon histoire d'amour est impossible + Une lycéenne découvre que le garçon dont elle est amoureuse est le fils caché de son propre père. + Magazine + Mag. Société + + 1 . 0 . + + Tout public + + + + Le jour où tout a basculé + Mon fils est condamné + Des histoires intimes. Des histoires qui peuvent arriver à chacun d'entre nous. Des histoires inspirées de faits réels. A la suite d'un événement imprévu, des hommes et des femmes ont vu leur vie bouleversée + Magazine + Mag. Société + + 1 . 95 . + + Tout public + + + + Le jour où tout a basculé + Ma mère profite de ma faiblesse ! + Un homme qui a perdu 150 000 euros au poker est obligé de faire appel à sa mère pour rembourser. Problème : belle-mère et bell-fille ne se supportent pas + Magazine + Mag. Société + + 1 . 0 . + + Tout public + + + + Plus belle la vie + Tandis que Jean-François découvre les joies et les incertitudes du travail sur le terrain, Seta enrage. Pendant ce temps, Luna conclut une alliance de circonstance avec sa mère... + Série + + + Tout public + + + + Plus belle la vie + Tandis que Mirta et Roland essaient de tromper leur solitude, Frémont voit rouge et en avertit Seta. De son côté, Valentin découvre la générosité de Nathan... + Série + + + Tout public + + + + Plus belle la vie + Seta change d'avis. Nathan découvre le monde du silence et angoisse. Quant à Xavier, il assume sa nouvelle priorité quitte à en décevoir certains... + Série + + + Tout public + + + + Plus belle la vie + Alors que Johanna est victime d'un curieux lapin, Nathan fait celui qui ne veut rien voir. Jean-François, lui, a l'impression d'être pris pour un imbécile... + Série + + + Tout public + + + + Plus belle la vie + Xavier se mouille dangereusement dans les calanques, Frémont en a après Pif le chien et Jean-François passe pour un éternel malade imaginaire... + Série + + + Tout public + + + + Plus belle la vie + Xavier se retrouve parmi les convives d'un dîner qui s'avère fort embarrassant. Quant à Nathan, il se sacrifie pour ses élèves, tandis que Fiquin lit en Seta comme dans un livre ouvert... + Série + + + Tout public + + + + Plus belle la vie + Gabriel s'essaie à l'art délicat du portrait, tandis que Nathan poursuit son travail. Quant à Wanda, elle met tout en oeuvre pour faire du Mistral un restaurant étoilé... + Série + + + Tout public + + + + Plus belle la vie + Tandis que Samia a une étrange impression de déjà-vu, Seta réalise qu'elle s'est aveuglée. De son côté, Jean-François est surpris par une visite inattendue... + Série + + + Tout public + + + + Snapped : vivre avec un serial killer + Anthony Shore + Durant des années, la police de Houston a recherché un tueur en série s'attaquant à des jeunes femmes. Le coupable se révèle être un homme de la ville. + Documentaire + Doc. Société + + 1 . 0 . + + + -10 + + + + Snapped : vivre avec un serial killer + Stephen Griffiths + De 2009 à 2010, Stephen Griffiths, surnommé le Cannibale, terrorise la communauté de Bradford, dans le nord de l'Angleterre en assassinant trois prostituées. + Documentaire + Doc. Société + + 1 . 0 . + + + -10 + + + + Snapped : richesse fatale + Kathleen Denson + Un soir d'automne, la police d'Aspen, dans le Colorado, reçoit un appel de la millionnaire Kathleen Denson. Elle affirme avoir tiré sur son petit ami par légitime défense. Les enquêteurs découvrent une relation animée de disputes, de consommation de drogue et d'un triangle amoureux à l'issue mortelle. + Magazine + Mag. Société + + 0 . 1 . + + + -10 + + + + Snapped : cauchemars au réveil + Une exécution à Bigelow + Dans une petite ville de l'Arkansas, alors que sa femme dort à côté, un homme est tué d'une seule balle dans la tête. L'épouse serait-elle la meurtrière ? + Documentaire + Doc. Société + + 0 . 0 . + + + -10 + + + + Snapped : cauchemars au réveil + Le masque de la mort + A Noël, un cambriolage transforme une maison en scène de crime. Agressée pendant son sommeil, Anita Yunk survit mais son mari n'a pas cette chance. + Documentaire + Doc. Société + + 0 . 0 . + + + -10 + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Téléachat + Aucune description + Magazine + Mag. TV-Achat + + + Tout public + + + + Snapped : noces de sang + Couty Alexander + Le 29 juin 2008, la police de Livingston reçoit l'appel d'un homme paniqué, Couty Alexander. Il déclare qu'il a retrouvé sa femme, Christa, sans vie, à leur domicile. Une douille correspondant au fusil du veuf est retrouvée sur place, mais Couty affirme qu'il a vendu cette arme la veille, à un certain Steve. + Magazine + Mag. Société + + 0 . 3 . + + + -10 + + + + Snapped : noces de sang + Michel Escoto + Le 14 octobre 2002, le corps de Wendy Trapaga est retrouvé sans vie dans les rues du comté de Miami-Dade, en Floride. La jeune femme était partie en lune de miel avec son fiancé, Michel Escoto. Ce dernier mène la police sur une piste de club échangiste dont ils faisaient partie. Mais les enquêteurs remarquent que Michel a appelé son ex-petite amie le soir du meurtre. + Magazine + Mag. Société + + 0 . 6 . + + + -10 + + + + Snapped : vacances mortelles + Nuit silencieuse, nuit mortelle + Lorsqu'une mère et ses deux filles ne se présentent pas au dîner de Noël, la police se rend à leur domicile et découvre que toutes trois ont été abattues. Le seul survivant de cette tuerie est un bébé de 9 mois, retrouvé déshydraté dans les bras de sa mère, morte d'une balle dans la tête. Les enquêteurs découvrent que ce crime cache un drame familial incestueux. + Magazine + Mag. Société + + 2 . 1 . + + + -10 + + + + Snapped : vacances mortelles + Terreur à Thanksgiving + Sarah mène une vie heureuse avec son mari et ses deux enfants près d'Atlanta, Pour Thanksgiving, ils rendent visite à la famille de Sarah en Floride. Comme son mari est obligé d'écourter son séjour, Sarah et ses deux garçons repartent seuls en voiture sans lui. Les enfants sont retrouvés couverts de sang et leur mère abattue dans la voiture. + Magazine + Mag. Société + + 3 . 0 . + + + -10 + + + + Le jour où tout a basculé + Ma rivale est prête à tout pour gagner + Une jeune femme inscrite à un concours de beauté est prête à toutes les malfaisances pour faire perdre sa rivale, jusqu'à en devenir folle + Magazine + Mag. Société + + 1 . 79 . + + Tout public + + + + Le jour où tout a basculé + Ma mère a laissé mourir notre père + Un père de famille qui se sait condamné par la maladie entend rétablir l'équité familiale par son testament + Magazine + Mag. Société + + 1 . 80 . + + Tout public + + + + Le jour où tout a basculé + 40 ans et victime de la précarité + A la suite d'un événement imprévu, des hommes et des femmes ont vu leur vie bouleversée pour le pire et le meilleur. Ces histoires vraies sont interprétées par des comédiens, écrites et réalisées comme un reportage. Ce genre mélange toutes les écritures de la télévision + Magazine + Mag. Société + + 1 . 83 . + + Tout public + + + + Le jour où tout a basculé + Ma fille a perdu la raison + Une ado cyclothymique à tendance bipolaire, en rébellion contre sa mère et inconsolable du décès de son père, accuse son psychiatre de l'avoir violée + Magazine + Mag. Société + + 1 . 84 . + + Tout public + + + + Le jour où tout a basculé + Mon voisin me harcèle + Aucune description + Magazine + Mag. Société + + 1 . 92 . + + Tout public + + + + Le jour où tout a basculé + Mon père est trop strict + A la suite d'un événement imprévu, des hommes et des femmes ont vu leur vie bouleversée pour le pire et le meilleur. Ces histoires vraies sont interprétées par des comédiens, écrites et réalisées comme un reportage. Ce nouveau genre mélange toutes les écritures de la télévision + Magazine + Mag. Société + + 1 . 0 . + + Tout public + + + + Le jour où tout a basculé + Ma mère est jalouse de ma réussite ! + Tous les jours, retrouvez Nathalie Fellonneau pour un rendez-vous avec des histoires vraies : Le Jour où tout a basculé + Magazine + Mag. Société + + 1 . 0 . + + Tout public + + + + Le jour où tout a basculé + J'ai découvert le secret de ma mère + Une ado persuadée que sa mère n'est pas la sienne va être amenée à découvrir que c'est son père qui a quelque chose à cacher + Magazine + Mag. Société + + 1 . 98 . + + Tout public + + + + Plus belle la vie + Seta change d'avis. Nathan découvre le monde du silence et angoisse. Quant à Xavier, il assume sa nouvelle priorité quitte à en décevoir certains... + Série + + + Tout public + + + + Plus belle la vie + Alors que Johanna est victime d'un curieux lapin, Nathan fait celui qui ne veut rien voir. Jean-François, lui, a l'impression d'être pris pour un imbécile... + Série + + + Tout public + + + + Plus belle la vie + Xavier se mouille dangereusement dans les calanques, Frémont en a après Pif le chien et Jean-François passe pour un éternel malade imaginaire... + Série + + + Tout public + + + + Plus belle la vie + Xavier se retrouve parmi les convives d'un dîner qui s'avère fort embarrassant. Quant à Nathan, il se sacrifie pour ses élèves, tandis que Fiquin lit en Seta comme dans un livre ouvert... + Série + + + Tout public + + + + Plus belle la vie + Gabriel s'essaie à l'art délicat du portrait, tandis que Nathan poursuit son travail. Quant à Wanda, elle met tout en oeuvre pour faire du Mistral un restaurant étoilé... + Série + + + Tout public + + + + Plus belle la vie + Tandis que Samia a une étrange impression de déjà-vu, Seta réalise qu'elle s'est aveuglée. De son côté, Jean-François est surpris par une visite inattendue... + Série + + + Tout public + + + + Plus belle la vie + Margaux annonce une mauvaise nouvelle à ses camarades, Xavier découvre que le prix du silence est plus élevé qu'il le pensait et Jean-François cherche à échapper à la médecine traditionnelle... + Série + + + Tout public + + + + Plus belle la vie + Valentin se fait chahuter à cause de ses fréquentations, certaines traditions mettent Gabriel de mauvaise humeur et Johanna ne cache rien au commandant Nebout... + Série + + + Tout public + + + + Les petits meurtres d'Agatha Christie + Mélodie mortelle + Contacté pour enquêter sur la mort d'un guitariste de variété, Laurence est contraint de s'immiscer dans le milieu des maisons de disques et des chanteurs yéyés. Sans se laisser éblouir par les paillettes, il tente d'identifier l'assassin qui sème la panique dans les studios d'enregistrement... + Série + Série Suspense + + 1 . 22 . + + + -10 + + + + Crimes + Spéciale le dépeceur de Montréal + Retour sur le parcours sanglant de Lukka Rocco Magnotta, Canadien psychopathe de 29 ans. En 2012, il a fait trembler Montréal après avoir tué un étudiant chinois de 33 ans en lui faisant subir les pires atrocités. A l'issue d'une folle cavale, son arrestation a lieu à Berlin. + Magazine + Mag. Société + + 0 . 99 . + + + -12 + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Téléachat + Aucune description + Magazine + Mag. TV-Achat + + + Tout public + + + + Snapped : noces de sang + Umphrey et Petry + Cassandra Petry et Brian Umphrey partent en voyage pour célébrer leur seconde lune de miel, après un premier mariage qui s'est soldé par un divorce. Mais après plusieurs jours sans nouvelles de Cassandra, la famille de la jeune femme décide d'appeler l'hôtel. En entrant dans la chambre, le personnel fait alors la macabre découverte du corps sans vie de Cassandra. + Magazine + Mag. Société + + 0 . 4 . + + + -10 + + + + Snapped : noces de sang + Graham et Johnson + En 2012, Cody Johnson et Jordan Graham, se marient, entourés de leurs amis et de leurs familles. Mais une semaine plus tard, le corps du jeune marié est retrouvé au fond d'un ravin, dans le parc national des Glaciers, au Canada. La police, curieuse de savoir pourquoi la jeune femme n'a jamais signalé la disparition de son mari, se penche sur la vie du couple, plus nébuleuse qu'elle n'y paraît. + Magazine + Mag. Société + + 0 . 7 . + + + -10 + + + + Snapped : vacances mortelles + Un Nouvel An sanglant + Juste avant le Nouvel An, Cindy, une mère de famille de 37 ans est abattue devant sa porte, sous les yeux de son fils. Plus tard dans la nuit, sept corps sont retrouvés dans une autre maison de banlieue. La police y découvre un véritable bain de sang, classant l'affaire au rang de meurtre de masse. L'agresseur est en liberté, la traque commence. + Magazine + Mag. Société + + 2 . 2 . + + + -10 + + + + Snapped : vacances mortelles + Un dernier Noël + En Floride, la police trouve les corps sans vie de Michelle et Steven dans leur chambre à coucher tandis que leur petit garçon se trouve seul au rez-de-chaussée. + Magazine + Mag. Société + + 3 . 1 . + + + -10 + + + + Le jour où tout a basculé + Mon père a honte de moi + Un fils de médecin voudrait que son père accepte qu'il a choisi de devenir cuisinier et non pas médecin comme il le voulait + Magazine + Mag. Société + + 1 . 81 . + + Tout public + + + + Le jour où tout a basculé + Mon fils est un braqueur + Un policier en couple avec une restauratrice découvre que son beau-fils est l'auteur d'un braquage chez un bijoutier qui est un habitué du restaurant de sa compagne + Magazine + Mag. Société + + 1 . 82 . + + Tout public + + + + Le jour où tout a basculé + Mon fiancé est infidèle + Un trentenaire sur le point de se marier tombe follement amoureu + Magazine + Mag. Société + + 1 . 85 . + + Tout public + + + + Le jour où tout a basculé + Mon père a gâché la vie de ma mère + Un ado va tout faire pour sauver sa mère de la dépression dont e + Magazine + Mag. Société + + 1 . 86 . + + Tout public + + + + Le jour où tout a basculé + Mon mari doute de moi ! + Un sexagénaire prend sa retraite. Entre ennui et monotonie, il se met à soupcçonner sa femme d'avoir un amant. + Magazine + Mag. Société + + 1 . 0 . + + Tout public + + + + Le jour où tout a basculé + Mon fils est condamné + Un trentenaire découvre qu'il est atteint d'une maladie incurable qui lui laisse au maximum un an à vivre. Il entend réorganiser toute son existence... + Magazine + Mag. Société + + 1 . 95 . + + Tout public + + + + Le jour où tout a basculé + Ma belle-mère me déteste ! + Une mère de famille possessive fait tout pour faire capoter le couple que son fils forme avec sa compagne. + Magazine + Mag. Société + + 1 . 0 . + + Tout public + + + + Le jour où tout a basculé + Une colocation qui finit mal… + Deux jeunes en colocation acceuillent un nouveau colocataire au profil particulier : une femme de... plus de 70 ans ! + Magazine + Mag. Société + + 1 . 0 . + + Tout public + + + + Plus belle la vie + Xavier se mouille dangereusement dans les calanques, Frémont en a après Pif le chien et Jean-François passe pour un éternel malade imaginaire... + Série + + + Tout public + + + + Plus belle la vie + Xavier se retrouve parmi les convives d'un dîner qui s'avère fort embarrassant. Quant à Nathan, il se sacrifie pour ses élèves, tandis que Fiquin lit en Seta comme dans un livre ouvert... + Série + + + Tout public + + + + Plus belle la vie + Gabriel s'essaie à l'art délicat du portrait, tandis que Nathan poursuit son travail. Quant à Wanda, elle met tout en oeuvre pour faire du Mistral un restaurant étoilé... + Série + + + Tout public + + + + Plus belle la vie + Tandis que Samia a une étrange impression de déjà-vu, Seta réalise qu'elle s'est aveuglée. De son côté, Jean-François est surpris par une visite inattendue... + Série + + + Tout public + + + + Plus belle la vie + Margaux annonce une mauvaise nouvelle à ses camarades, Xavier découvre que le prix du silence est plus élevé qu'il le pensait et Jean-François cherche à échapper à la médecine traditionnelle... + Série + + + Tout public + + + + Plus belle la vie + Valentin se fait chahuter à cause de ses fréquentations, certaines traditions mettent Gabriel de mauvaise humeur et Johanna ne cache rien au commandant Nebout... + Série + + + Tout public + + + + Plus belle la vie + Tandis que Seta hésite à laisser parler son coeur, de son côté, Xavier doit faire face à un terrible dilemme. Quant à Jean-François, ira-t-il jusqu'au bout ?... + Série + + + Tout public + + + + Plus belle la vie + Alors qu'une innocente carte postale bouleverse Jean-François, Seta donne une interview qui restera dans les annales. Johanna, quant à elle, commence à se poser des questions... + Série + + + Tout public + + + + Tout l'argent du monde + Le magnat du pétrole J. Paul Getty, l'Américain le plus riche du monde, est un homme très avare. Quand, au cours de l'été 1973, son petit-fils est enlevé à Rome par la Mafia, il refuse de payer la rançon de 17 millions de dollars. Désespérée, la mère du garçon entreprend de négocier avec les malfrats... + Film + Film Suspense + + + + -12 + + + + Code Mercury + Simon reconstitue un puzzle dans un magazine et appelle le numéro de téléphone obtenu. L'enfant autiste ne sait pas qu'il a percé un code secret et qu'il vient d'entrer en relation avec la NSA. La CIA veut l'éliminer et envoie son meilleur agent. Le FBI fait de même, mais pour le protéger. + Film + Film Suspense + + + + -10 + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Tout le monde veut prendre sa place + Six candidats affrontent un "champion" autour d'une série de jeux. Celui ou celle qui parviendra à le déloger deviendra le nouveau champion. Suspense et coups de théâtre rythment ce rendez-vous ludique. + Divertissement + Jeu + + + Tout public + + + + Le 6h info + Un rendez-vous réveil-matin, avec un point sur l'actualité assorti de différentes rubriques qui permettent d'en explorer certains aspects plus en profondeur. + Info-Météo + Information + + + Tout public + + + + Télématin + Du lundi au jeudi, rendez-vous, dès 6h30 avec Thomas Sotto et Marie Portonalo. Et du vendredi au dimanche, c'est au tour de Damien Thévenot et Maya Lauqué de dynamiser le réveil. + Magazine + Mag. Service + + + Tout public + + + + Journal 08h00 + Pour bien démarrer la journée, la rédaction de France 2 propose un point sur l'actualité. Les principales informations nationales et internationales sont passées en revue. + Info-Météo + Information + + + Tout public + + + + Télématin + Du lundi au jeudi, rendez-vous, dès 6h30 avec Thomas Sotto et Marie Portonalo. Et du vendredi au dimanche, c'est au tour de Damien Thévenot et Maya Lauqué de dynamiser le réveil. + Magazine + Mag. Service + + + Tout public + + + + Bel & bien + Rester jeune dans sa tète pour ne pas devenir un vieux c... ? + Aucune description + Magazine + Débat + + 0 . 0 . + + Tout public + + + + Consomag + Qu'est-ce que l'escroquerie au faux support technique ? + Le magazine de l'Institut national de la consommation donne à chacun des conseils pratiques pour mieux consommer. + Magazine + Mag. Service + + 0 . 0 . + + Tout public + + + + Chacun son tour + Des participants tirés au sort parmi le public doivent répondre à des questions de culture générale dans l'espoir d'être qualifiés pour la deuxième épreuve : le billard japonais, un jeu d'adresse qui peut rapporter cadeaux et argent. Les candidats qui perdent leur duel de culture générale réintègrent le public et peuvent donc être à nouveau tirés au sort. + Divertissement + Jeu + + + Tout public + + + + Chacun son tour + Des participants tirés au sort parmi le public doivent répondre à des questions de culture générale dans l'espoir d'être qualifiés pour la deuxième épreuve : le billard japonais, un jeu d'adresse qui peut rapporter cadeaux et argent. Les candidats qui perdent leur duel de culture générale réintègrent le public et peuvent donc être à nouveau tirés au sort. + Divertissement + Jeu + + + Tout public + + + + Tout le monde veut prendre sa place + Six candidats affrontent un "champion" autour d'une série de jeux. Celui ou celle qui parviendra à le déloger deviendra le nouveau champion. Suspense et coups de théâtre rythment ce rendez-vous ludique. + Divertissement + Jeu + + + Tout public + + + + C'est bon à savoir + Les plats traditionnels + "C'est bon à savoir" décrypte les bénéfices pour la santé de la consommation des fruits et légumes et analyse leur mode de culture, sans oublier de parler d'environnement. Avec la complicité d'experts, ce programme revient quelques idées reçues. + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Journal Météo climat + Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts. + Info-Météo + Information + + + Tout public + + + + Journal 13h00 + Tous les jours, à 13h, la rédaction de France 2 propose un point sur l'actualité. Les informations nationales et internationales sont passées à la loupe et mises en perspective, illustrées par des reportages sur le terrain. + Info-Météo + Information + + + Tout public + + + + 13h15, le samedi... + Une saison au Pic Saint-Loup + Aucune description + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Journal Météo climat + Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts. + Info-Météo + Information + + + Tout public + + + + Au bout de l'enquête, la fin du crime parfait ? + Affaire du Grêlé, le tueur en série identifié 35 ans après ! + Marie Drucker, avec le criminologue Alain Bauer, revient sur quelques affaires classées, réputées insolubles, qui ont parfois résisté près de 50 ans à la ténacité des enquêteurs. + Magazine + Mag. Service + + 1 . 16 . + + Tout public + + + + Au bout de l'enquête, la fin du crime parfait ? + Affaire du Grêlé, le tueur en série identifié 35 ans après ! + Marie Drucker, avec le criminologue Alain Bauer, revient sur quelques affaires classées, réputées insolubles, qui ont parfois résisté près de 50 ans à la ténacité des enquêteurs. + Magazine + Mag. Service + + 1 . 17 . + + Tout public + + + + Destination 2024 + Paris accueillera en 2024 les XXXIIIe Jeux olympiques d'été. Zoom sur un champion en préparation. + Magazine + Mag. Sport + + + Tout public + + + + Affaire conclue, tout le monde a quelque chose à vendre + Parce que les maisons sont remplies de babioles insolites qui ne demandent qu'à trouver acquéreurs, des spécialistes accompagnent les propriétaires d'objets tout au long des étapes susceptibles de les mener à la vente. + Magazine + Mag. Société + + + Tout public + + + + Affaire conclue : la vie des objets + Table 70's, jeu de l'oie ancien, affiches de la Première Guerre mondiale : retour sur l'histoire d'un objet emblématique de l'émission, acquis par un des acheteurs. + Magazine + Mag. Société + + + Tout public + + + + Affaire conclue, tout le monde a quelque chose à vendre + Parce que les maisons sont remplies de babioles insolites qui ne demandent qu'à trouver acquéreurs, des spécialistes accompagnent les propriétaires d'objets tout au long des étapes susceptibles de les mener à la vente. + Magazine + Mag. Société + + + Tout public + + + + Affaire conclue : la vie des objets + Table 70's, jeu de l'oie ancien, affiches de la Première Guerre mondiale : retour sur l'histoire d'un objet emblématique de l'émission, acquis par un des acheteurs. + Magazine + Mag. Société + + + Tout public + + + + Tout le monde a son mot à dire + Une gymnastique quotidienne de l'esprit pour s'amuser avec la langue française et enrichir sa culture générale. + Divertissement + Jeu + + + Tout public + + + + N'oubliez pas les paroles + Accompagnés par un orchestre, les candidats chantent en karaoké. Mais les paroles affichées ne sont pas complètes. A eux de combler les vides. Pour cela, ils doivent se souvenir des mots exacts de la chanson. + Divertissement + Jeu + + + Tout public + + + + N'oubliez pas les paroles + Accompagnés par un orchestre, les candidats chantent en karaoké. Mais les paroles affichées ne sont pas complètes. A eux de combler les vides. Pour cela, ils doivent se souvenir des mots exacts de la chanson. + Divertissement + Jeu + + + Tout public + + + + Journal Météo climat + Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts. + Info-Météo + Information + + + Tout public + + + + Journal 20h00 + Les principales informations nationales et internationales sont passées à la loupe et mises en perspective, illustrées par des reportages sur le terrain. + Info-Météo + Information + + + Tout public + + + + Les rencontres du Papotin + Dany Boon + L'invité est interviewé par la rédaction du journal "Les Rencontres du Papotin", composée de journalistes non professionnels, porteurs de trouble du spectre autistique. + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Journal Météo climat + Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts. + Info-Météo + Information + + + Tout public + + + + Les Etoiles du sport et de la santé + Alain Bernard + De grands champions du sport français partagent leur expérience et des conseils pour améliorer notre santé physique et mentale grâce au sport. + Magazine + Mag. Sport + + 0 . 0 . + + Tout public + + + + Mort sur la piste + Alors que les premiers essais pour la course des 24h du Mans viennent de débuter, le corps dans vie d'un pilote est découvert sur la piste. Sabrina Nedjard va être accompagnée par un observateur américain, Ryan Martin : ils débutent des recherches qui vont les mener à une complexe histoire de famille... + Film + Film Suspense + + + Tout public + + + + Quelle époque ! + Léa Salamé présente un talk-show drôle et festif, à la fois magazine de société et divertissement, dont l'objectif est de raconter et interroger l'époque. "Quelle époque !" est conçu comme un lieu de débats entre les personnalités qui marquent l'actualité culturelle, sociétale, politique ou médiatique, dans la vie réelle comme sur les réseaux sociaux. + Magazine + Débat + + + Tout public + + + + Météo 2 + Le point, plusieurs fois par jour, sur l'évolution de la météo, grâce à des cartes et des explications. + Info-Météo + Information + + + Tout public + + + + La grande soirée du bêtisier + Le meilleur des fous rires, les lapsus les plus embarrassants, des stars qui dérapent, les candidats des jeux les plus fous, le plus drôle des journaux régionaux, le meilleur des télévisions internationaux, les bêtisiers exclusifs des séries appréciées par les téléspectateurs : "La Grande Soirée du bêtisier" se déguste en famille. Un programme idéal pour combattre la grisaille et la morosité. + Divertissement + + + Tout public + + + + Les enfants de la télé + Au programme de ce moment convivial d'humeur et d'humour, un savant mélange de séquences cultes, de fous rires, d'images drôles et émouvantes. L'occasion de revoir avec plaisir les images qui ont fait les belles heures de la télévision. + Divertissement + + + Tout public + + + + Les enfants de la télé, la suite + Après le rendez-vous de 18h, de nouveaux invités prennent place sur le plateau. Pour les surprendre et parfois même les embarrasser, des images évoquent leur biographie télévisuelle. Gare aux casseroles ! + Divertissement + + + Tout public + + + + Lady Mond, la fabuleuse histoire de Maï la Bretonne + Le parcours insolite de Marie-Louise Le Manac'h, surnommée Maï, née en 1869 d'une ménagère et d'un meunier de Belle-Isle-en-Terre, devenue plus tard lady Mond. + Documentaire + Doc. Histoire + + + Tout public + + + + La civilisation des arbres + Bambou, le végétal du futur + Une découverte de la bambouseraie d'Anduze dans les Cévennes, composé de 240 variétés de bambou, et des incroyables possibilités qu'offre ce végétal d'avenir. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + Pays et marchés du monde + Cuba-Santiago + Zoom sur les spécialités emblématiques de la cuisine cubaine, à travers les allées du marché Ferreiro, où s'étalent épices et herbes. + Documentaire + Doc. Découverte + + 1 . 0 . + + Tout public + + + + Pays et marchés du monde + Cuba-Gibara + Escale sur les marchés de la petite ville de Gibara, sur l'île de Cuba, qui vit essentiellement de la pêche. Les poissons y ont la part belle. + Documentaire + Doc. Découverte + + 1 . 0 . + + Tout public + + + + Tout le monde veut prendre sa place + Six candidats affrontent un "champion" autour d'une série de jeux. Celui ou celle qui parviendra à le déloger deviendra le nouveau champion. Suspense et coups de théâtre rythment ce rendez-vous ludique. + Divertissement + Jeu + + + Tout public + + + + Le 6h info + Un rendez-vous réveil-matin, avec un point sur l'actualité assorti de différentes rubriques qui permettent d'en explorer certains aspects plus en profondeur. + Info-Météo + Information + + + Tout public + + + + Télématin + Du lundi au jeudi, rendez-vous, dès 6h30 avec Thomas Sotto et Marie Portonalo. Et du vendredi au dimanche, c'est au tour de Damien Thévenot et Maya Lauqué de dynamiser le réveil. + Magazine + Mag. Service + + + Tout public + + + + Journal 08h00 + Pour bien démarrer la journée, la rédaction de France 2 propose un point sur l'actualité. Les principales informations nationales et internationales sont passées en revue. + Info-Météo + Information + + + Tout public + + + + Télématin + Du lundi au jeudi, rendez-vous, dès 6h30 avec Thomas Sotto et Marie Portonalo. Et du vendredi au dimanche, c'est au tour de Damien Thévenot et Maya Lauqué de dynamiser le réveil. + Magazine + Mag. Service + + + Tout public + + + + Sagesses bouddhistes + L'actualité et la pratique du bouddhisme en France. + Magazine + Mag. Société + + + Tout public + + + + Islam + Trente minutes consacrées à la religion musulmane et à l'Islam en France. + Magazine + Mag. Société + + + Tout public + + + + À l'origine + Histoires : juifs de tunisie + Histoire et spiritualité du judaïsme. + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Présence protestante + Ma foi... la chute + "Présence protestante" permet à toutes celles et ceux qui le souhaitent d'avoir accès et de partager la foi en Christ telle qu'elle se vit dans la diversité du protestantisme. + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Messe + A Lourdes avec les évêques de France + Retransmission de la célébration d'une messe catholique en direct ou en différé, parfois en Eurovision. + Autre + + 0 . 0 . + + Tout public + + + + Parole inattendue + Une personnalité s'exprime au sujet de sa foi et de sa spiritualité. + Magazine + Mag. Société + + + Tout public + + + + Tout le monde veut prendre sa place + Six candidats affrontent un "champion" autour d'une série de jeux. Celui ou celle qui parviendra à le déloger deviendra le nouveau champion. Suspense et coups de théâtre rythment ce rendez-vous ludique. + Divertissement + Jeu + + + Tout public + + + + Journal Météo climat + Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts. + Info-Météo + Information + + + Tout public + + + + Journal 13h00 + Tous les jours, à 13h, la rédaction de France 2 propose un point sur l'actualité. Les informations nationales et internationales sont passées à la loupe et mises en perspective, illustrées par des reportages sur le terrain. + Info-Météo + Information + + + Tout public + + + + 13h15, le dimanche + Joséphine et Coco, des années folles aux années sombres (Episodes 1 et 2) + Destins croisés de deux figures féminines de l'entre-deux guerres. L'artiste Joséphine Baker, bien sûr, égérie des Années folles, et la couturière Coco Chanel, celle qui a marqué la mode en révolutionnant la silhouette des femmes. Deux exemples de réussite. Deux symboles. Elles ont traversé le siècle, mais à l'approche de la guerre, elles ont surtout fait des choix radicalement différents. + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + 13h15, le dimanche + Joséphine et Coco, des années folles aux années sombres (Episodes 3 et 4) + Des images, des émotions, une écriture sensible aux aventures humaines : "13h15" propose des histoires françaises, le feuilleton de la politique, les coulisses de la vie de tous les jours, les sagas familiales et les confidences des grands témoins. + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Affaires sensibles + Ovni + Aucune description + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Un dimanche à la campagne + Aucune description + Magazine + Débat + + + Tout public + + + + En bande organisée + Tous les dimanches, Philippe Caverivière et Alex Vizorek donnent rendez-vous aux téléspectateurs pour rire de l'actualité. Ils passent en revue l'information avec leur ton et leur univers très différents et joyeusement complémentaires. En compagnie d'invités issus de la politique, du spectacle, de la mode ou du monde sportif, ils commentent l'actualité. + Divertissement + + + Tout public + + + + Les enfants de la télé + Au programme de ce moment convivial d'humeur et d'humour, un savant mélange de séquences cultes, de fous rires, d'images drôles et émouvantes. L'occasion de revoir avec plaisir les images qui ont fait les belles heures de la télévision. + Divertissement + + + Tout public + + + + Les enfants de la télé, la suite + Après le rendez-vous de 18h, de nouveaux invités prennent place sur le plateau. Pour les surprendre et parfois même les embarrasser, des images évoquent leur biographie télévisuelle. Gare aux casseroles ! + Divertissement + + + Tout public + + + + Journal Météo climat + Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts. + Info-Météo + Information + + + Tout public + + + + Journal 20h00 + Les principales informations nationales et internationales sont passées à la loupe et mises en perspective, illustrées par des reportages sur le terrain. + Info-Météo + Information + + + Tout public + + + + 20h30 le dimanche + La story Madonna + Portrait de l'une des icônes de la pop music, l'artiste qui a vendu le plus de disques au monde - 400 millions d'albums en 40 ans de carrière. Madonna a débuté une tournée anniversaire avec une étape qui lui tient à cœur : Paris, où elle se produira dans quelques jours. Madonna et la France, une histoire d'amour. Rencontre avec Martin Solveig et Nicolas Huchard. + Info-Météo + Information + + 2 . 0 . + + Tout public + + + + Journal Météo climat + Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts. + Info-Météo + Information + + + Tout public + + + + Les Etoiles du sport et de la santé + Griedge Mbock + De grands champions du sport français partagent leur expérience et des conseils pour améliorer notre santé physique et mentale grâce au sport. + Magazine + Mag. Sport + + 0 . 0 . + + Tout public + + + + Oh ! Biz'Art + La feuille + Un rendez-vous sur le thème de la culture artistique pour les curieux, un petit plaisir pour les érudits, ou encore une découverte pour les plus jeunes. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Lolo + Violette, qui travaille dans la mode, passe des vacances à Biarritz avec Ariane, sa meilleure amie. Quadragénaire parisienne et branchée, elle a été plus d'une fois déçue par les hommes. Sur le port, Violette rencontre le maladroit Jean-René, qui évolue dans un monde aux antipodes du sien... + Film + Film Rires + + + Tout public + + + + Beau geste + Ancien président du Festival de Cannes, Pierre Lescure présente ce rendez-vous hebdomadaire consacré au cinéma qui prépare au long cours le terrain au Festival. L'émission d'une heure est présentée comme "une déclaration d'amour au cinéma, loin des plateaux de télévision et des interviews promo classiques". + Magazine + Mag. Cinéma + + + Tout public + + + + Le pitch cinéma + Les films de cinéma vus par ceux qui ne les ont pas vus. + Magazine + Mag. Cinéma + + + Tout public + + + + Histoires courtes + Best of Brest + Une sélection de courts métrages français et internationaux liés par un thème. + Magazine + Mag. Cinéma + + 0 . 0 . + + Tout public + + + + Météo 2 + Le point, plusieurs fois par jour, sur l'évolution de la météo, grâce à des cartes et des explications. + Info-Météo + Information + + + Tout public + + + + Dix pour cent + Gérard + Un jeune comédien talentueux, mais sans expérience, est pris comme partenaire pour jouer au côté de Gérard Lanvin sur son prochain film. Ce choix a été commandé par une bourde de Camille. Mathias se retrouve à devoir gérer l'égo de son acteur, quitte à se mettre en porte-à-faux vis-à-vis de sa fille... + Série + Série Passion + + 2 . 2 . + + Tout public + + + + Dix pour cent + Isabelle + Isabelle Huppert accepte tous les projets qui la passionnent, absolument tous. Et pour Gabriel, son agent, cela veut dire accepter des modifications d'emploi du temps à la limite de l'impossible. Surtout quand l'équipe de production d'un film américain refuse catégoriquement qu'elle partage son temps sur un autre projet... + Série + Série Passion + + 2 . 3 . + + Tout public + + + + 13h15, le samedi... + Une saison au Pic Saint-Loup + Aucune description + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Affaire conclue, tout le monde a quelque chose à vendre + Parce que les maisons sont remplies de babioles insolites qui ne demandent qu'à trouver acquéreurs, des spécialistes accompagnent les propriétaires d'objets tout au long des étapes susceptibles de les mener à la vente. + Magazine + Mag. Société + + + Tout public + + + + Pays et marchés du monde + Polynésie : Motu Mahana + A la découverte d'un pays, d'une ville, d'un peuple et, bien sûr, d'un marché traditionnel et d'une spécialité locale. + Documentaire + Doc. Découverte + + 2 . 0 . + + Tout public + + + + Pays et marchés du monde + Los Angeles (Californie, Etats-Unis) + Balade dans les rues de la Cité des Anges, à la recherche des mets et traditions qui font la saveur de la gastronomie locale. + Documentaire + Doc. Découverte + + 1 . 0 . + + Tout public + + + + Pays et marchés du monde + Californie : Mendocino-Ukiah + A la découverte d'un pays, d'une ville, d'un peuple et, bien sûr, d'un marché traditionnel et d'une spécialité locale. + Documentaire + Doc. Découverte + + 2 . 0 . + + Tout public + + + + Tout le monde veut prendre sa place + Six candidats affrontent un "champion" autour d'une série de jeux. Celui ou celle qui parviendra à le déloger deviendra le nouveau champion. Suspense et coups de théâtre rythment ce rendez-vous ludique. La première manche s'enrichit d'une nouveauté majeure : les QPT. Ces "Questions Pour Tous" posées simultanément aux candidats donnent un nouveau rythme, créent des surprises, renversent les scores en s'ajoutant aux deux questions de chacun. Chaque candidats a désormais quatre chances de passer en deuxième manche et d'avancer vers le fauteuil. Une sélection plus juste, avec davantage de suspense. + Divertissement + Jeu + + + Tout public + + + + Tout le monde veut prendre sa place + Aucune description + Divertissement + Jeu + + + Tout public + + + + Un si grand soleil + Alors que Christophe reçoit un mystérieux colis, Janet se pose de multiples questions et Yann se livre à des confidences imprudentes. + Série + Policier + + 4 . 1268 . + + Tout public + + + + Le 6h info + Un rendez-vous réveil-matin, avec un point sur l'actualité assorti de différentes rubriques qui permettent d'en explorer certains aspects plus en profondeur. + Information + Journal + + + Tout public + + + + Télématin + Du lundi au jeudi, rendez-vous, dès 6h30 avec Thomas Sotto et Marie Portonalo. Et du vendredi au dimanche, c'est au tour de Damien Thévenot et Maya Lauqué de dynamiser le réveil. + Magazine + Services + + + Tout public + + + + Journal 08h00 + Pour bien démarrer la journée, la rédaction de France 2 propose un point sur l'actualité. Les principales informations nationales et internationales sont passées en revue. + Information + Journal + + + Tout public + + + + Télématin + Du lundi au jeudi, rendez-vous, dès 6h30 avec Thomas Sotto et Marie Portonalo. Et du vendredi au dimanche, c'est au tour de Damien Thévenot et Maya Lauqué de dynamiser le réveil. + Magazine + Services + + + Tout public + + + + La maison des Maternelles + Entourée de chroniqueurs, Agathe Lecaron répond aux nombreuses interrogations des parents. L'émission s'enrichit de rubriques, de reportages et de tutos pour permettre d'en savoir plus sur le monde de l'enfance. + Magazine + Société + + + Tout public + + + + La maison des Maternelles + La maison des Maternelles à votre service + Entourée de chroniqueurs, Agathe Lecaron répond aux nombreuses interrogations des parents. L'émission s'enrichit de rubriques, de reportages et de tutos pour permettre d'en savoir plus sur le monde de l'enfance. + Magazine + Société + + + Tout public + + + + Consomag + La fin du ticket de caisse systématique + Le magazine de l'Institut national de la consommation donne à chacun des conseils pratiques pour mieux consommer. + Art de vivre + Consommation + + + Tout public + + + + Météo Outre-mer + Le point sur l'évolution de la météo dans les Outre-mers, grâce à des cartes et des explications. + Services + Météo + + + Tout public + + + + Chacun son tour + Des participants tirés au sort parmi le public doivent répondre à des questions de culture générale dans l'espoir d'être qualifiés pour la deuxième épreuve : le billard japonais, un jeu d'adresse qui peut rapporter cadeaux et argent. Les candidats qui perdent leur duel de culture générale réintègrent le public et peuvent donc être à nouveau tirés au sort. + Divertissement + Jeu + + + Tout public + + + + Chacun son tour + Des participants tirés au sort parmi le public doivent répondre à des questions de culture générale dans l'espoir d'être qualifiés pour la deuxième épreuve : le billard japonais, un jeu d'adresse qui peut rapporter cadeaux et argent. Les candidats qui perdent leur duel de culture générale réintègrent le public et peuvent donc être à nouveau tirés au sort. + Divertissement + Jeu + + + Tout public + + + + Tout le monde veut prendre sa place + Six candidats affrontent un "champion" autour d'une série de jeux. Celui ou celle qui parviendra à le déloger deviendra le nouveau champion. Suspense et coups de théâtre rythment ce rendez-vous ludique. La première manche s'enrichit d'une nouveauté majeure : les QPT. Ces "Questions Pour Tous" posées simultanément aux candidats donnent un nouveau rythme, créent des surprises, renversent les scores en s'ajoutant aux deux questions de chacun. Chaque candidats a désormais quatre chances de passer en deuxième manche et d'avancer vers le fauteuil. Une sélection plus juste, avec davantage de suspense. + Divertissement + Jeu + + + Tout public + + + + Tous en scène pour le handicap + Un programme court consacré au handicap et au regard posé sur le handicap dans la société contemporaine. + Magazine + Services + + + Tout public + + + + Journal Météo Climat + Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts. + Services + Météo + + + Tout public + + + + Journal 13h00 + Tous les jours, à 13h, la rédaction de France 2 propose un point sur l'actualité. Les informations nationales et internationales sont passées à la loupe et mises en perspective, illustrées par des reportages sur le terrain. + Information + Journal + + + Tout public + + + + Journal Météo Climat + Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts. + Services + Météo + + + Tout public + + + + La p'tite librairie + Les sept contre Thèbes, par Eschyle + François Busnel propose chaque jour de découvrir ou redécouvrir une oeuvre française ou étrangère : roman, essai, grand classique ou encore bande dessinée. + Magazine + Culture + + + Tout public + + + + Ça commence aujourd'hui + Tous les jours, Faustine Bollaert accueille sur le plateau de "Ça commence aujourd'hui" des hommes et des femmes qui évoquent des événements marquants de leur existence, pour permettre à d'autres d'avancer dans leur parcours: un rendez-vous positif et optimiste. + Magazine + Société + + + Tout public + + + + Ça commence aujourd'hui + Tous les jours, Faustine Bollaert accueille sur le plateau de "Ça commence aujourd'hui" des hommes et des femmes qui évoquent des événements marquants de leur existence, pour permettre à d'autres d'avancer dans leur parcours: un rendez-vous positif et optimiste. + Magazine + Société + + + Tout public + + + + Affaire conclue, tout le monde a quelque chose à vendre + Parce que les maisons sont remplies de babioles insolites qui ne demandent qu'à trouver acquéreurs, des spécialistes accompagnent les propriétaires d'objets tout au long des étapes susceptibles de les mener à la vente. + Magazine + Art de vivre + + + Tout public + + + + Affaire conclue, tout le monde a quelque chose à vendre + Parce que les maisons sont remplies de babioles insolites qui ne demandent qu'à trouver acquéreurs, des spécialistes accompagnent les propriétaires d'objets tout au long des étapes susceptibles de les mener à la vente. + Magazine + Art de vivre + + + Tout public + + + + Affaire conclue : la vie des objets + Table 70's, jeu de l'oie ancien, affiches de la Première Guerre mondiale : retour sur l'histoire d'un objet emblématique de l'émission, acquis par un des acheteurs. + Magazine + Art de vivre + + + Tout public + + + + Tout le monde a son mot à dire + Une gymnastique quotidienne de l'esprit pour s'amuser avec la langue française et enrichir sa culture générale. + Divertissement + Jeu + + + Tout public + + + + N'oubliez pas les paroles + Accompagnés par un orchestre, les candidats chantent en karaoké. Mais les paroles affichées ne sont pas complètes. A eux de combler les vides. Pour cela, ils doivent se souvenir des mots exacts de la chanson. + Divertissement + Jeu + + + Tout public + + + + N'oubliez pas les paroles + Accompagnés par un orchestre, les candidats chantent en karaoké. Mais les paroles affichées ne sont pas complètes. A eux de combler les vides. Pour cela, ils doivent se souvenir des mots exacts de la chanson. + Divertissement + Jeu + + + Tout public + + + + Journal Météo Climat + Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts. + Services + Météo + + + Tout public + + + + Journal 20h00 + Les principales informations nationales et internationales sont passées à la loupe et mises en perspective, illustrées par des reportages sur le terrain. + Information + Journal + + + Tout public + + + + Journal Météo Climat + Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts. + Services + Météo + + + Tout public + + + + Bleu, Blanc, Bouge + "Bleu, Blanc, Bouge" met en lumière une innovation française issue d'un territoire. + Magazine + Services + + + Tout public + + + + Basique, l'essentiel de la musique + Une pastille consacrée à l'actualité musicale, qui braque les projecteurs sur un ou une artiste. + Magazine + Musique + + + Tout public + + + + J'ai la solution + Aucune description + Magazine + Services + + + Tout public + + + + Un si grand soleil + Alors que Johanna commet une gaffe qui va avoir de lourdes conséquences, le suspect d'Akim et d'Elise semble s'être volatilisé. Comment a-t-il fait ? + Série + Policier + + 4 . 1269 . + + Tout public + + + + Clemenceau, la force d'aimer + Marguerite, mariée et mère de famille, est inconsolable de la perte de sa fille aînée, Annette. Elle rencontre Georges Clemenceau, l'ancien Président du Conseil. Ce dernier lui propose une sorte de pacte où il va l'aider à surmonter sa peine et où elle va l'aider sur son dernier chemin avant la mort. Entre ces deux êtres marqués par les épreuves et le temps, une relation puissante, amoureuse et profondément humaine s'installe peu à peu. Georges Clemenceau est un homme passionné, parfois colérique, alors que Marguerite est plutôt discrète et réservée. Leur histoire ne ressemble à aucune autre. + Téléfilm + Drame + + + Tout public + + + + La dernière reine de Tahiti + Au royaume des lagons, la coutume veut que seuls les hommes puissent devenir rois. La jeune Aimata Pomare va briser cette loi. Face à l'hostilité de ses semblables, menacée par la convoitise de l'Angleterre et de la France, cette jeune princesse tahitienne tentera de sauver ses traditions et son peuple afin de lui offrir un destin. Alors que rien ne la destinait à devoir régner, elle a su apprendre à s'imposer dans un milieu d'hommes et malgré des défaites et des sacrifices, réussir à négocier et préserver l'intérêt de son peuple. C'est ainsi qu'elle deviendra la dernière reine de Tahiti et fera la paix avec la France. + Histoire + Biographie + + + + -10 + + + + Expression directe + EELV + Organisations syndicales, partis politiques, mais aussi mouvements d'entrepreneurs prennent la parole. + Information + Politique + + + Tout public + + + + Leonardo + Leonardo Da Vinci est accusé du meurtre de Caterina da Cremona, une fille du peuple qu'il a rencontrée alors qu'elle posait comme modèle dans l'atelier de Verrocchio, à Florence, où le jeune artiste fit ses premières armes. Entre les deux êtres s'était noué une relation orageuse. Stefano Giraldi, un jeune officier de la Podesta chargé d'obtenir les aveux de Da Vinci, devient de plus en plus fasciné par l'homme et le génie qu'il a en face de lui... + Série + Histoire + + 0 . 0 . + + Tout public + + + + Leonardo + Victime d'un piège retors, Leonardo est emprisonné et inculpé du crime de sodomie. Les poursuites sont finalement abandonnées, mais il est définitivement renvoyé de l'atelier du peintre Verrocchio. Il obtient néanmoins une commande de la part d'une grande famille au sein de laquelle il fait embaucher Caterina comme servante... + Série + Histoire + + 0 . 1 . + + Tout public + + + + Leonardo + Leonardo vient trouver refuge à Milan, à la cour du régent Ludovico Sforza, avec l'idée d'obtenir son mécénat. Il croit que l'homme va lui commander une peinture, mais c'est un spectacle autour d'une pièce d'Ange Politien que Leonardo devra mettre sur pied pour plaire à Ludovico. A cette occasion, il rencontre un acteur français dont il devient proche. + Série + Histoire + + 0 . 2 . + + Tout public + + + + Affaire conclue, tout le monde a quelque chose à vendre + Parce que les maisons sont remplies de babioles insolites qui ne demandent qu'à trouver acquéreurs, des spécialistes accompagnent les propriétaires d'objets tout au long des étapes susceptibles de les mener à la vente. + Magazine + Art de vivre + + + Tout public + + + + Météo Outre-mer + Le point sur l'évolution de la météo dans les Outre-mers, grâce à des cartes et des explications. + Services + Météo + + + Tout public + + + + New York d'île en île + Un voyage passionnant au coeur de la ville de New York, aux Etats-Unis, qui révèle toute sa diversité, notamment son patrimoine insulaire méconnu. + Documentaire + Découvertes + + + Tout public + + + + Pays et marchés du monde + Cuba-Baracoa + A la découverte d'un pays, d'une ville, d'un peuple et, bien sûr, d'un marché traditionnel et d'une spécialité locale. + Documentaire + Découvertes + + 1 . 0 . + + Tout public + + + + Tout le monde veut prendre sa place + Six candidats affrontent un "champion" autour d'une série de jeux. Celui ou celle qui parviendra à le déloger deviendra le nouveau champion. Suspense et coups de théâtre rythment ce rendez-vous ludique. La première manche s'enrichit d'une nouveauté majeure : les QPT. Ces "Questions Pour Tous" posées simultanément aux candidats donnent un nouveau rythme, créent des surprises, renversent les scores en s'ajoutant aux deux questions de chacun. Chaque candidats a désormais quatre chances de passer en deuxième manche et d'avancer vers le fauteuil. Une sélection plus juste, avec davantage de suspense. + Divertissement + Jeu + + + Tout public + + + + Un si grand soleil + Alors que Johanna commet une gaffe qui va avoir de lourdes conséquences, le suspect d'Akim et d'Elise semble s'être volatilisé. Comment a-t-il fait ? + Série + Série Suspense + + + Tout public + + + + Le 6h info + Un rendez-vous réveil-matin, avec un point sur l'actualité assorti de différentes rubriques qui permettent d'en explorer certains aspects plus en profondeur. + Info-Météo + Information + + + Tout public + + + + Télématin + Du lundi au jeudi, rendez-vous, dès 6h30 avec Thomas Sotto et Marie Portonalo. Et du vendredi au dimanche, c'est au tour de Damien Thévenot et Maya Lauqué de dynamiser le réveil. + Magazine + Mag. Service + + + Tout public + + + + Journal 08h00 + Pour bien démarrer la journée, la rédaction de France 2 propose un point sur l'actualité. Les principales informations nationales et internationales sont passées en revue. + Info-Météo + Information + + + Tout public + + + + Télématin + Du lundi au jeudi, rendez-vous, dès 6h30 avec Thomas Sotto et Marie Portonalo. Et du vendredi au dimanche, c'est au tour de Damien Thévenot et Maya Lauqué de dynamiser le réveil. + Magazine + Mag. Service + + + Tout public + + + + La maison des Maternelles + Entourée de chroniqueurs, Agathe Lecaron répond aux nombreuses interrogations des parents. L'émission s'enrichit de rubriques, de reportages et de tutos pour permettre d'en savoir plus sur le monde de l'enfance. + Magazine + Mag. Société + + + Tout public + + + + La maison des Maternelles + La maison des Maternelles à votre service + Entourée de chroniqueurs, Agathe Lecaron répond aux nombreuses interrogations des parents. L'émission s'enrichit de rubriques, de reportages et de tutos pour permettre d'en savoir plus sur le monde de l'enfance. + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Consomag + Entre un devis et un bon de commande, quelles sont les différences ? + Le magazine de l'Institut national de la consommation donne à chacun des conseils pratiques pour mieux consommer. + Magazine + Mag. Service + + 0 . 0 . + + Tout public + + + + Météo Outre-mer + Le point sur l'évolution de la météo dans les Outre-mers, grâce à des cartes et des explications. + Info-Météo + Information + + + Tout public + + + + Chacun son tour + Des participants tirés au sort parmi le public doivent répondre à des questions de culture générale dans l'espoir d'être qualifiés pour la deuxième épreuve : le billard japonais, un jeu d'adresse qui peut rapporter cadeaux et argent. Les candidats qui perdent leur duel de culture générale réintègrent le public et peuvent donc être à nouveau tirés au sort. + Divertissement + Jeu + + + Tout public + + + + Chacun son tour + Des participants tirés au sort parmi le public doivent répondre à des questions de culture générale dans l'espoir d'être qualifiés pour la deuxième épreuve : le billard japonais, un jeu d'adresse qui peut rapporter cadeaux et argent. Les candidats qui perdent leur duel de culture générale réintègrent le public et peuvent donc être à nouveau tirés au sort. + Divertissement + Jeu + + + Tout public + + + + Tout le monde veut prendre sa place + Six candidats affrontent un "champion" autour d'une série de jeux. Celui ou celle qui parviendra à le déloger deviendra le nouveau champion. Suspense et coups de théâtre rythment ce rendez-vous ludique. + Divertissement + Jeu + + + Tout public + + + + Tous en scène pour le handicap + Aucune description + Magazine + Mag. Service + + + Tout public + + + + Journal Météo climat + Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts. + Info-Météo + Information + + + Tout public + + + + Journal 13h00 + Tous les jours, à 13h, la rédaction de France 2 propose un point sur l'actualité. Les informations nationales et internationales sont passées à la loupe et mises en perspective, illustrées par des reportages sur le terrain. + Info-Météo + Information + + + Tout public + + + + Journal Météo climat + Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts. + Info-Météo + Information + + + Tout public + + + + Expression directe + Organisations syndicales, partis politiques, mais aussi mouvements d'entrepreneurs prennent la parole. + Magazine + Mag. Politique + + + Tout public + + + + La p'tite librairie + Pour tout vous dire, par Joan Didion + François Busnel propose chaque jour de découvrir ou redécouvrir une oeuvre française ou étrangère : roman, essai, grand classique ou encore bande dessinée. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Ça commence aujourd'hui + Tous les jours, Faustine Bollaert accueille sur le plateau de "Ça commence aujourd'hui" des hommes et des femmes qui évoquent des événements marquants de leur existence, pour permettre à d'autres d'avancer dans leur parcours: un rendez-vous positif et optimiste. + Magazine + Mag. Société + + + Tout public + + + + Ça commence aujourd'hui + Tous les jours, Faustine Bollaert accueille sur le plateau de "Ça commence aujourd'hui" des hommes et des femmes qui évoquent des événements marquants de leur existence, pour permettre à d'autres d'avancer dans leur parcours: un rendez-vous positif et optimiste. + Magazine + Mag. Société + + + Tout public + + + + Affaire conclue, tout le monde a quelque chose à vendre + Parce que les maisons sont remplies de babioles insolites qui ne demandent qu'à trouver acquéreurs, des spécialistes accompagnent les propriétaires d'objets tout au long des étapes susceptibles de les mener à la vente. + Magazine + Mag. Société + + + Tout public + + + + Affaire conclue, tout le monde a quelque chose à vendre + Parce que les maisons sont remplies de babioles insolites qui ne demandent qu'à trouver acquéreurs, des spécialistes accompagnent les propriétaires d'objets tout au long des étapes susceptibles de les mener à la vente. + Magazine + Mag. Société + + + Tout public + + + + Affaire conclue : la vie des objets + Table 70's, jeu de l'oie ancien, affiches de la Première Guerre mondiale : retour sur l'histoire d'un objet emblématique de l'émission, acquis par un des acheteurs. + Magazine + Mag. Société + + + Tout public + + + + Tout le monde a son mot à dire + Une gymnastique quotidienne de l'esprit pour s'amuser avec la langue française et enrichir sa culture générale. + Divertissement + Jeu + + + Tout public + + + + N'oubliez pas les paroles + Accompagnés par un orchestre, les candidats chantent en karaoké. Mais les paroles affichées ne sont pas complètes. A eux de combler les vides. Pour cela, ils doivent se souvenir des mots exacts de la chanson. + Divertissement + Jeu + + + Tout public + + + + N'oubliez pas les paroles + Accompagnés par un orchestre, les candidats chantent en karaoké. Mais les paroles affichées ne sont pas complètes. A eux de combler les vides. Pour cela, ils doivent se souvenir des mots exacts de la chanson. + Divertissement + Jeu + + + Tout public + + + + Journal Météo climat + Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts. + Info-Météo + Information + + + Tout public + + + + Journal 20h00 + Les principales informations nationales et internationales sont passées à la loupe et mises en perspective, illustrées par des reportages sur le terrain. + Info-Météo + Information + + + Tout public + + + + Journal Météo climat + Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts. + Info-Météo + Information + + + Tout public + + + + Bleu, Blanc, Bouge + Circulegg + "Bleu, Blanc, Bouge" met en lumière une innovation française issue d'un territoire. + Magazine + Mag. Service + + 0 . 0 . + + Tout public + + + + Basique, l'essentiel de la musique + Une pastille consacrée à l'actualité musicale, qui braque les projecteurs sur un ou une artiste. + Magazine + Mag. Musique + + + Tout public + + + + J'ai la solution + Aucune description + Magazine + Mag. Service + + + Tout public + + + + Un si grand soleil + Alors que Gary a une idée grandiose pour investir l'argent de son héritage, Elise avoue tout à Akim. + Série + Série Suspense + + + Tout public + + + + Harcèlement scolaire : briser le silence + François 10 ans, Thays 13 ans, Elena 17 ans, Antonin 19 ans, Eliza 20 ans sont en butte au harcèlement scolaire. Près d'un million d'enfants en seraient victimes chaque année, soit 6 à 10 0es élèves. France Télévisions se mobilise pour une soirée événement consacrée au combat contre le harcèlement scolaire. + Magazine + Débat + + + Tout public + + + + Débat + Grâce à un dispositif digital interactif, cette émission tente de comprendre le phénomène du harcèlement scolaire et de trouver des solutions. Comment le harcèlement prend-il racine ? Quelles sont les solutions officielles et alternatives proposées aux enfants pour éradiquer ce mal d'école ? Sont-elles suffisantes ? Qui sont les enfants harcelés ? Qui sont les enfants harceleurs ? + Magazine + Débat + + + Tout public + + + + Harcèlement scolaire, les Indiens contre-attaquent + Emmanuelle Piquet, thérapeute spécialiste de la question du harcèlement et de la souffrance à l'école, a élaboré pour les jeunes une stratégie de défense. + Documentaire + Doc. Société + + + Tout public + + + + Un dimanche à la campagne + Loin du tumulte médiatique, Frédéric Lopez invite quelques célébrités le temps d'un week-end afin de leur offrir un moment hors du temps propice aux confidences. Entre émotion et fous rires, chacun se dévoile. + Magazine + Débat + + + Tout public + + + + Ça commence aujourd'hui + Tous les jours, Faustine Bollaert accueille sur le plateau de "Ça commence aujourd'hui" des hommes et des femmes qui évoquent des événements marquants de leur existence, pour permettre à d'autres d'avancer dans leur parcours: un rendez-vous positif et optimiste. + Magazine + Mag. Société + + + Tout public + + + + Affaire conclue, tout le monde a quelque chose à vendre + Parce que les maisons sont remplies de babioles insolites qui ne demandent qu'à trouver acquéreurs, des spécialistes accompagnent les propriétaires d'objets tout au long des étapes susceptibles de les mener à la vente. + Magazine + Mag. Société + + + Tout public + + + + Météo Outre-mer + Le point sur l'évolution de la météo dans les Outre-mers, grâce à des cartes et des explications. + Info-Météo + Information + + + Tout public + + + + Les reines du lagon + Moeava de Rosemont milite à travers son association pour que les raies manta, ces élégants oiseaux des mers, restent les reines du lagon de Bora Bora. + Documentaire + Doc. Nature + + + Tout public + + + + Pays et marchés du monde + Turquie : Cappadoce + A la découverte d'un pays, d'une ville, d'un peuple et, bien sûr, d'un marché traditionnel et d'une spécialité locale. + Documentaire + Doc. Découverte + + 3 . 0 . + + Tout public + + + + Pays et marchés du monde + Turquie, Istanbul + A la découverte d'un pays, d'une ville, d'un peuple et, bien sûr, d'un marché traditionnel et d'une spécialité locale. + Documentaire + Doc. Découverte + + 3 . 0 . + + Tout public + + + + Tout le monde veut prendre sa place + Six candidats affrontent un "champion" autour d'une série de jeux. Celui ou celle qui parviendra à le déloger deviendra le nouveau champion. Suspense et coups de théâtre rythment ce rendez-vous ludique. + Divertissement + Jeu + + + Tout public + + + + Un si grand soleil + Alors que Gary a une idée grandiose pour investir l'argent de son héritage, Elise avoue tout à Akim. + Série + Série Suspense + + + Tout public + + + + Le 6h info + Un rendez-vous réveil-matin, avec un point sur l'actualité assorti de différentes rubriques qui permettent d'en explorer certains aspects plus en profondeur. + Info-Météo + Information + + + Tout public + + + + Télématin + Du lundi au jeudi, rendez-vous, dès 6h30 avec Thomas Sotto et Marie Portonalo. Et du vendredi au dimanche, c'est au tour de Damien Thévenot et Maya Lauqué de dynamiser le réveil. + Magazine + Mag. Service + + + Tout public + + + + Journal 08h00 + Pour bien démarrer la journée, la rédaction de France 2 propose un point sur l'actualité. Les principales informations nationales et internationales sont passées en revue. + Info-Météo + Information + + + Tout public + + + + Télématin + Du lundi au jeudi, rendez-vous, dès 6h30 avec Thomas Sotto et Marie Portonalo. Et du vendredi au dimanche, c'est au tour de Damien Thévenot et Maya Lauqué de dynamiser le réveil. + Magazine + Mag. Service + + + Tout public + + + + La maison des Maternelles + Entourée de chroniqueurs, Agathe Lecaron répond aux nombreuses interrogations des parents. L'émission s'enrichit de rubriques, de reportages et de tutos pour permettre d'en savoir plus sur le monde de l'enfance. + Magazine + Mag. Société + + + Tout public + + + + La maison des Maternelles + La maison des Maternelles à votre service + Entourée de chroniqueurs, Agathe Lecaron répond aux nombreuses interrogations des parents. L'émission s'enrichit de rubriques, de reportages et de tutos pour permettre d'en savoir plus sur le monde de l'enfance. + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Consomag + Qu'est-ce que le dispositif "Oui pub" ? + Le magazine de l'Institut national de la consommation donne à chacun des conseils pratiques pour mieux consommer. + Magazine + Mag. Service + + 0 . 0 . + + Tout public + + + + Météo Outre-mer + Le point sur l'évolution de la météo dans les Outre-mers, grâce à des cartes et des explications. + Info-Météo + Information + + + Tout public + + + + Chacun son tour + Des participants tirés au sort parmi le public doivent répondre à des questions de culture générale dans l'espoir d'être qualifiés pour la deuxième épreuve : le billard japonais, un jeu d'adresse qui peut rapporter cadeaux et argent. Les candidats qui perdent leur duel de culture générale réintègrent le public et peuvent donc être à nouveau tirés au sort. + Divertissement + Jeu + + + Tout public + + + + Chacun son tour + Des participants tirés au sort parmi le public doivent répondre à des questions de culture générale dans l'espoir d'être qualifiés pour la deuxième épreuve : le billard japonais, un jeu d'adresse qui peut rapporter cadeaux et argent. Les candidats qui perdent leur duel de culture générale réintègrent le public et peuvent donc être à nouveau tirés au sort. + Divertissement + Jeu + + + Tout public + + + + Tout le monde veut prendre sa place + Six candidats affrontent un "champion" autour d'une série de jeux. Celui ou celle qui parviendra à le déloger deviendra le nouveau champion. Suspense et coups de théâtre rythment ce rendez-vous ludique. + Divertissement + Jeu + + + Tout public + + + + Tous en scène pour le handicap + Aucune description + Magazine + Mag. Service + + + Tout public + + + + Journal Météo climat + Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts. + Info-Météo + Information + + + Tout public + + + + Journal 13h00 + Tous les jours, à 13h, la rédaction de France 2 propose un point sur l'actualité. Les informations nationales et internationales sont passées à la loupe et mises en perspective, illustrées par des reportages sur le terrain. + Info-Météo + Information + + + Tout public + + + + Journal Météo climat + Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts. + Info-Météo + Information + + + Tout public + + + + La p'tite librairie + La vie mode d'emploi, par Georges Perec + François Busnel propose chaque jour de découvrir ou redécouvrir une oeuvre française ou étrangère : roman, essai, grand classique ou encore bande dessinée. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Ça commence aujourd'hui + Tous les jours, Faustine Bollaert accueille sur le plateau de "Ça commence aujourd'hui" des hommes et des femmes qui évoquent des événements marquants de leur existence, pour permettre à d'autres d'avancer dans leur parcours: un rendez-vous positif et optimiste. + Magazine + Mag. Société + + + Tout public + + + + Ça commence aujourd'hui + Tous les jours, Faustine Bollaert accueille sur le plateau de "Ça commence aujourd'hui" des hommes et des femmes qui évoquent des événements marquants de leur existence, pour permettre à d'autres d'avancer dans leur parcours: un rendez-vous positif et optimiste. + Magazine + Mag. Société + + + Tout public + + + + Affaire conclue, tout le monde a quelque chose à vendre + Parce que les maisons sont remplies de babioles insolites qui ne demandent qu'à trouver acquéreurs, des spécialistes accompagnent les propriétaires d'objets tout au long des étapes susceptibles de les mener à la vente. + Magazine + Mag. Société + + + Tout public + + + + Affaire conclue, tout le monde a quelque chose à vendre + Parce que les maisons sont remplies de babioles insolites qui ne demandent qu'à trouver acquéreurs, des spécialistes accompagnent les propriétaires d'objets tout au long des étapes susceptibles de les mener à la vente. + Magazine + Mag. Société + + + Tout public + + + + Affaire conclue : la vie des objets + Table 70's, jeu de l'oie ancien, affiches de la Première Guerre mondiale : retour sur l'histoire d'un objet emblématique de l'émission, acquis par un des acheteurs. + Magazine + Mag. Société + + + Tout public + + + + Tout le monde a son mot à dire + Une gymnastique quotidienne de l'esprit pour s'amuser avec la langue française et enrichir sa culture générale. + Divertissement + Jeu + + + Tout public + + + + N'oubliez pas les paroles + Accompagnés par un orchestre, les candidats chantent en karaoké. Mais les paroles affichées ne sont pas complètes. A eux de combler les vides. Pour cela, ils doivent se souvenir des mots exacts de la chanson. + Divertissement + Jeu + + + Tout public + + + + N'oubliez pas les paroles + Accompagnés par un orchestre, les candidats chantent en karaoké. Mais les paroles affichées ne sont pas complètes. A eux de combler les vides. Pour cela, ils doivent se souvenir des mots exacts de la chanson. + Divertissement + Jeu + + + Tout public + + + + Journal Météo climat + Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts. + Info-Météo + Information + + + Tout public + + + + Journal 20h00 + Les principales informations nationales et internationales sont passées à la loupe et mises en perspective, illustrées par des reportages sur le terrain. + Info-Météo + Information + + + Tout public + + + + Journal Météo climat + Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts. + Info-Météo + Information + + + Tout public + + + + Bleu, Blanc, Bouge + Neoline + "Bleu, Blanc, Bouge" met en lumière une innovation française issue d'un territoire. + Magazine + Mag. Service + + 0 . 0 . + + Tout public + + + + Basique, l'essentiel de la musique + Une pastille consacrée à l'actualité musicale, qui braque les projecteurs sur un ou une artiste. + Magazine + Mag. Musique + + + Tout public + + + + J'ai la solution + Aucune description + Magazine + Mag. Service + + + Tout public + + + + Un si grand soleil + Alors qu'il apparaît que toutes les casquettes ne sont pas identiques, Ludo va devoir annoncer une grande nouvelle à Jade et redoute énormément sa réaction. + Série + Série Suspense + + + Tout public + + + + Les invisibles + Camélia + Un squelette est retrouvé dans le jardin d'une maison. La nouvelle propriétaire est sous le choc. Rapidement, l'équipe des Invisibles soupçonne le neveu de l'ancien propriétaire, qui a repris la maison au moment de la mort de ce dernier. Enzo, sorti de prison, semble avoir une idée précise en tête... + Série + Série Suspense + + 2 . 3 . + + Tout public + + + + Les invisibles + Stardust + Dans un bunker, une fête sauvage s'est déroulée. Mais après les festivités, le cadavre d'un jeune homme est découvert au milieu des bouteilles vides et des tas de mégots. Que s'est-il passé lors de cette soirée agitée ? Parmi la centaine de jeunes gens présents dans le bunker, personne ne semble avoir rien vu... + Série + Série Suspense + + 2 . 4 . + + Tout public + + + + Routiers, les forçats du bitume + Face à l'essor de l'e-commerce, le trafic de poids-lourds a augmenté de 50%. Indispensables, les routiers se sentent pourtant méprisés. Ils prennent la parole. + Documentaire + Doc. Société + + + Tout public + + + + Archipels + Au sud des quarantièmes rugissants, une poignée d'hommes et de femmes vivent isolés sur des îles au milieu de l'océan Indien : les Terres Australes. + Documentaire + Doc. Découverte + + + Tout public + + + + Affaires sensibles + Ovni + Aucune description + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Affaire conclue, tout le monde a quelque chose à vendre + Parce que les maisons sont remplies de babioles insolites qui ne demandent qu'à trouver acquéreurs, des spécialistes accompagnent les propriétaires d'objets tout au long des étapes susceptibles de les mener à la vente. + Magazine + Mag. Société + + + Tout public + + + + Météo Outre-mer + Le point sur l'évolution de la météo dans les Outre-mers, grâce à des cartes et des explications. + Info-Météo + Information + + + Tout public + + + + Emissions religieuses + Rediffusion des émissions religieuses du dimanche précédent. + Magazine + Mag. Société + + + Tout public + + + + Londres passé et présent + Une déambulation dans la ville de Londres, à la découverte des vestiges du passé et des témoignages du présent de la belle capitale britannique. + Documentaire + Doc. Découverte + + + Tout public + + + + Pays et marchés du monde + Irlande : Dublin + A la découverte d'un pays, d'une ville, d'un peuple et, bien sûr, d'un marché traditionnel et d'une spécialité locale. + Documentaire + Doc. Découverte + + 3 . 0 . + + Tout public + + + + Pays et marchés du monde + Arizona : Sierra Vista + A la découverte d'un pays, d'une ville, d'un peuple et, bien sûr, d'un marché traditionnel et d'une spécialité locale. + Documentaire + Doc. Découverte + + 3 . 0 . + + Tout public + + + + Tout le monde veut prendre sa place + Six candidats affrontent un "champion" autour d'une série de jeux. Celui ou celle qui parviendra à le déloger deviendra le nouveau champion. Suspense et coups de théâtre rythment ce rendez-vous ludique. + Divertissement + Jeu + + + Tout public + + + + Un si grand soleil + Alors qu'il apparaît que toutes les casquettes ne sont pas identiques, Ludo va devoir annoncer une grande nouvelle à Jade et redoute énormément sa réaction. + Série + Série Suspense + + + Tout public + + + + Le 6h info + Un rendez-vous réveil-matin, avec un point sur l'actualité assorti de différentes rubriques qui permettent d'en explorer certains aspects plus en profondeur. + Info-Météo + Information + + + Tout public + + + + Télématin + Du lundi au jeudi, rendez-vous, dès 6h30 avec Thomas Sotto et Marie Portonalo. Et du vendredi au dimanche, c'est au tour de Damien Thévenot et Maya Lauqué de dynamiser le réveil. + Magazine + Mag. Service + + + Tout public + + + + Journal 08h00 + Pour bien démarrer la journée, la rédaction de France 2 propose un point sur l'actualité. Les principales informations nationales et internationales sont passées en revue. + Info-Météo + Information + + + Tout public + + + + Télématin + Du lundi au jeudi, rendez-vous, dès 6h30 avec Thomas Sotto et Marie Portonalo. Et du vendredi au dimanche, c'est au tour de Damien Thévenot et Maya Lauqué de dynamiser le réveil. + Magazine + Mag. Service + + + Tout public + + + + La maison des Maternelles + Entourée de chroniqueurs, Agathe Lecaron répond aux nombreuses interrogations des parents. L'émission s'enrichit de rubriques, de reportages et de tutos pour permettre d'en savoir plus sur le monde de l'enfance. + Magazine + Mag. Société + + + Tout public + + + + La maison des Maternelles + La maison des Maternelles à votre service + Entourée de chroniqueurs, Agathe Lecaron répond aux nombreuses interrogations des parents. L'émission s'enrichit de rubriques, de reportages et de tutos pour permettre d'en savoir plus sur le monde de l'enfance. + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Consomag + Etiquette énergétique : les nouvelles obligations / interdictions pour les bailleurs + Le magazine de l'Institut national de la consommation donne à chacun des conseils pratiques pour mieux consommer. + Magazine + Mag. Service + + 0 . 0 . + + Tout public + + + + Météo Outre-mer + Le point sur l'évolution de la météo dans les Outre-mers, grâce à des cartes et des explications. + Info-Météo + Information + + + Tout public + + + + Chacun son tour + Des participants tirés au sort parmi le public doivent répondre à des questions de culture générale dans l'espoir d'être qualifiés pour la deuxième épreuve : le billard japonais, un jeu d'adresse qui peut rapporter cadeaux et argent. Les candidats qui perdent leur duel de culture générale réintègrent le public et peuvent donc être à nouveau tirés au sort. + Divertissement + Jeu + + + Tout public + + + + Chacun son tour + Des participants tirés au sort parmi le public doivent répondre à des questions de culture générale dans l'espoir d'être qualifiés pour la deuxième épreuve : le billard japonais, un jeu d'adresse qui peut rapporter cadeaux et argent. Les candidats qui perdent leur duel de culture générale réintègrent le public et peuvent donc être à nouveau tirés au sort. + Divertissement + Jeu + + + Tout public + + + + Tout le monde veut prendre sa place + Six candidats affrontent un "champion" autour d'une série de jeux. Celui ou celle qui parviendra à le déloger deviendra le nouveau champion. Suspense et coups de théâtre rythment ce rendez-vous ludique. + Divertissement + Jeu + + + Tout public + + + + Tous en scène pour le handicap + Un programme court consacré au handicap et au regard posé sur le handicap dans la société contemporaine. + Magazine + Mag. Service + + + Tout public + + + + Journal Météo climat + Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts. + Info-Météo + Information + + + Tout public + + + + Journal 13h00 + Tous les jours, à 13h, la rédaction de France 2 propose un point sur l'actualité. Les informations nationales et internationales sont passées à la loupe et mises en perspective, illustrées par des reportages sur le terrain. + Info-Météo + Information + + + Tout public + + + + Journal Météo climat + Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts. + Info-Météo + Information + + + Tout public + + + + La p'tite librairie + Feuilles d'herbe, par Walt Whitman + François Busnel propose chaque jour de découvrir ou redécouvrir une oeuvre française ou étrangère : roman, essai, grand classique ou encore bande dessinée. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Ça commence aujourd'hui + Tous les jours, Faustine Bollaert accueille sur le plateau de "Ça commence aujourd'hui" des hommes et des femmes qui évoquent des événements marquants de leur existence, pour permettre à d'autres d'avancer dans leur parcours: un rendez-vous positif et optimiste. + Magazine + Mag. Société + + + Tout public + + + + Ça commence aujourd'hui + Tous les jours, Faustine Bollaert accueille sur le plateau de "Ça commence aujourd'hui" des hommes et des femmes qui évoquent des événements marquants de leur existence, pour permettre à d'autres d'avancer dans leur parcours: un rendez-vous positif et optimiste. + Magazine + Mag. Société + + + Tout public + + + + Affaire conclue, tout le monde a quelque chose à vendre + Parce que les maisons sont remplies de babioles insolites qui ne demandent qu'à trouver acquéreurs, des spécialistes accompagnent les propriétaires d'objets tout au long des étapes susceptibles de les mener à la vente. + Magazine + Mag. Société + + + Tout public + + + + Affaire conclue, tout le monde a quelque chose à vendre + Parce que les maisons sont remplies de babioles insolites qui ne demandent qu'à trouver acquéreurs, des spécialistes accompagnent les propriétaires d'objets tout au long des étapes susceptibles de les mener à la vente. + Magazine + Mag. Société + + + Tout public + + + + Affaire conclue : la vie des objets + Table 70's, jeu de l'oie ancien, affiches de la Première Guerre mondiale : retour sur l'histoire d'un objet emblématique de l'émission, acquis par un des acheteurs. + Magazine + Mag. Société + + + Tout public + + + + Tout le monde a son mot à dire + Une gymnastique quotidienne de l'esprit pour s'amuser avec la langue française et enrichir sa culture générale. + Divertissement + Jeu + + + Tout public + + + + N'oubliez pas les paroles + Accompagnés par un orchestre, les candidats chantent en karaoké. Mais les paroles affichées ne sont pas complètes. A eux de combler les vides. Pour cela, ils doivent se souvenir des mots exacts de la chanson. + Divertissement + Jeu + + + Tout public + + + + N'oubliez pas les paroles + Accompagnés par un orchestre, les candidats chantent en karaoké. Mais les paroles affichées ne sont pas complètes. A eux de combler les vides. Pour cela, ils doivent se souvenir des mots exacts de la chanson. + Divertissement + Jeu + + + Tout public + + + + Journal Météo climat + Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts. + Info-Météo + Information + + + Tout public + + + + Journal 20h00 + Les principales informations nationales et internationales sont passées à la loupe et mises en perspective, illustrées par des reportages sur le terrain. + Info-Météo + Information + + + Tout public + + + + Journal Météo climat + Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts. + Info-Météo + Information + + + Tout public + + + + Bleu, Blanc, Bouge + "Bleu, Blanc, Bouge" met en lumière une innovation française issue d'un territoire. + Magazine + Mag. Service + + + Tout public + + + + Basique, l'essentiel de la musique + Une pastille consacrée à l'actualité musicale, qui braque les projecteurs sur un ou une artiste. + Magazine + Mag. Musique + + + Tout public + + + + J'ai la solution + Aucune description + Magazine + Mag. Service + + + Tout public + + + + Un si grand soleil + Alors que Bilal accepte la proposition d'Elise, Christophe fait un constat douloureux. Comment rebondira-t-il ? + Série + Série Suspense + + + Tout public + + + + L'évènement + Chaque numéro de "L'Evénement" est consacré à une thématique politico-sociétale et alterne reportages et débats en plateau, animés par Caroline Roux. Ce format, différent de l'entretien politique "L'Evénement, l'interview" mené tous les mois par la journaliste, laisse cette fois la place à une réflexion de fond sur un sujet qui fait l'actualité. + Magazine + Mag. Politique + + + Tout public + + + + Successions + Frontières et fractures + Le projet de loi "Asile et immigration" est débattu au Sénat à partir du 6 novembre. La série " Successions " a accompagné des élu(es) sur le terrain. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + 13h15, le dimanche + Joséphine et Coco, des années folles aux années sombres (Episodes 1 et 2) + Destins croisés de deux figures féminines de l'entre-deux guerres. L'artiste Joséphine Baker, bien sûr, égérie des Années folles, et la couturière Coco Chanel, celle qui a marqué la mode en révolutionnant la silhouette des femmes. Deux exemples de réussite. Deux symboles. Elles ont traversé le siècle, mais à l'approche de la guerre, elles ont surtout fait des choix radicalement différents. + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + 13h15, le dimanche + Joséphine et Coco, des années folles aux années sombres (Episodes 3 et 4) + Des images, des émotions, une écriture sensible aux aventures humaines : "13h15" propose des histoires françaises, le feuilleton de la politique, les coulisses de la vie de tous les jours, les sagas familiales et les confidences des grands témoins. + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Au bout de l'enquête, la fin du crime parfait ? + Marie Drucker, avec le criminologue Alain Bauer, revient sur quelques affaires classées, réputées insolubles, qui ont parfois résisté près de 50 ans à la ténacité des enquêteurs. + Magazine + Mag. Service + + + Tout public + + + + Au bout de l'enquête, la fin du crime parfait ? + Marie Drucker, avec le criminologue Alain Bauer, revient sur quelques affaires classées, réputées insolubles, qui ont parfois résisté près de 50 ans à la ténacité des enquêteurs. + Magazine + Mag. Service + + + Tout public + + + + Ça commence aujourd'hui + Tous les jours, Faustine Bollaert accueille sur le plateau de "Ça commence aujourd'hui" des hommes et des femmes qui évoquent des événements marquants de leur existence, pour permettre à d'autres d'avancer dans leur parcours: un rendez-vous positif et optimiste. + Magazine + Mag. Société + + + Tout public + + + + Météo Outre-mer + Le point sur l'évolution de la météo dans les Outre-mers, grâce à des cartes et des explications. + Info-Météo + Information + + + Tout public + + + + Pays et marchés du monde + France : Lourmarin + A la découverte d'un pays, d'une ville, d'un peuple et, bien sûr, d'un marché traditionnel et d'une spécialité locale. + Documentaire + Doc. Découverte + + 2 . 0 . + + Tout public + + + + Pays et marchés du monde + France - Toulouse + A la découverte d'un pays, d'une ville, d'un peuple et, bien sûr, d'un marché traditionnel et d'une spécialité locale. + Documentaire + Doc. Découverte + + 3 . 0 . + + Tout public + + + + Pays et marchés du monde + France, Touraine, Loches + A la découverte d'un pays, d'une ville, d'un peuple et, bien sûr, d'un marché traditionnel et d'une spécialité locale. + Documentaire + Doc. Découverte + + 3 . 0 . + + Tout public + + + + Tout le monde veut prendre sa place + Six candidats affrontent un "champion" autour d'une série de jeux. Celui ou celle qui parviendra à le déloger deviendra le nouveau champion. Suspense et coups de théâtre rythment ce rendez-vous ludique. + Divertissement + Jeu + + + Tout public + + + + Questions pour un champion + Samuel Etienne anime ce jeu emblématique, qui voit chaque soir s'affronter quatre candidats autour de questions de culture générale. + Divertissement + Jeu + + + Tout public + + + + Power Players + Une relation magnétique + Un garçon de neuf ans peut se transformer en jouet vivant et se doter de super pouvoirs. Accompagné des jouets Power Players, il combat les méchants. + Jeunesse + Dessins Animés + + 0 . 41 . + + Tout public + + + + Power Players + Soif de pouvoir + Un garçon de neuf ans peut se transformer en jouet vivant et se doter de super pouvoirs. Accompagné des jouets Power Players, il combat les méchants. + Jeunesse + Dessins Animés + + 0 . 42 . + + Tout public + + + + Power Players + Comme des robots + Un garçon de neuf ans peut se transformer en jouet vivant et se doter de super pouvoirs. Accompagné des jouets Power Players, il combat les méchants. + Jeunesse + Dessins Animés + + 0 . 44 . + + Tout public + + + + Shaun le mouton + La photo volée de Pidsley + Les moutons profitent de l'absence du fermier pour organiser une fête dans la maison. Pidsley, le chat fourbe, prend une photo des coupables... + Jeunesse + Dessins Animés + + 1 . 31 . + + Tout public + + + + Shaun le mouton + L'inspecteur et la bagarre + Alors que la ferme est inspectée officiellement, des dissensions dans les rangs des animaux font mauvaise impression... + Jeunesse + Dessins Animés + + 1 . 32 . + + Tout public + + + + Shaun le mouton + La Shirley roulante + Shaun équipe Shirley de deux roues pour lui permettre de se déplacer plus facilement. Il utilise une télécommande pour guider son amie... + Jeunesse + Dessins Animés + + 1 . 33 . + + Tout public + + + + Shaun le mouton + Le renard et l'agneau + Un renard déguisé en mouton arrive à la ferme. Il charme aussitôt toutes les brebis. Seul Shaun se montre suspicieux... + Jeunesse + Dessins Animés + + 1 . 34 . + + Tout public + + + + Shaun le mouton + Le billard + Les moutons s'amusent avec le nouveau billard du fermier. Mais, dans leur enthousiasme, ils déchirent le tapis de la table... + Jeunesse + Dessins Animés + + 1 . 35 . + + Tout public + + + + Nawak + Les gourmands + Le Chef a préparé pour tout le village une tarte aux pommes tellement appétissante que Nawak en rêve la nuit. Résistera-t-il à la tentation d'aller en croquer un petit bout malgré l'interdiction du Chef ?... + Jeunesse + Dessins Animés + + 0 . 54 . + + Tout public + + + + Nawak + La course + Une course de canoë voit s'opposer la tribu de Nawak à ses voisins. Le Chef a bien l'intention de remporter facilement le trophée de cette petite compétition amicale. C'est sans compter sur la maladresse de son rameur : un certain Nawak... + Jeunesse + Dessins Animés + + 0 . 55 . + + Tout public + + + + Nawak + Le duvet + Quand Nawak se réveille coincé dans son duvet, il se retrouve obligé de ramper comme une chenille pour regagner le village. + Jeunesse + Dessins Animés + + 0 . 56 . + + Tout public + + + + Nawak + Le géranium + Quand Nawak, Kawak et le Chef se retrouvent contaminés par d'étranges boutons, ils sont forcés de patienter en quarantaine le temps que le Sorcier trouve un remède. + Jeunesse + Dessins Animés + + 0 . 57 . + + Tout public + + + + Nawak + Les appeaux + Quand le Chef emmène Nawak essayer ses appeaux en forêt, tous deux s'attirent les foudres d'un aigle, dérangé dans sa sieste par leurs appels incessants. + Jeunesse + Dessins Animés + + 0 . 58 . + + Tout public + + + + Les lapins crétins : invasion + Totem crétin + Aucune description + Jeunesse + Dessins Animés + + 3 . 47 . + + Tout public + + + + Les lapins crétins : invasion + Mutation crétine + Aucune description + Jeunesse + Dessins Animés + + 3 . 48 . + + Tout public + + + + Les lapins crétins : invasion + Trône crétin + Aucune description + Jeunesse + Dessins Animés + + 3 . 49 . + + Tout public + + + + Les lapins crétins : invasion + Crétine attaque + Moka remonte le moral à un grand méchant loup que sa mauvaise réputation rend triste. Grâce au gentil prince, le loup retrouve le sourire... et l'appétit. + Jeunesse + Dessins Animés + + 3 . 50 . + + Tout public + + + + Les lapins crétins : invasion + Crétin de jardin + Aucune description + Jeunesse + Dessins Animés + + 3 . 58 . + + Tout public + + + + Un jour, une question + Comment sait-on si un sportif est dopé ? + A quoi ça sert ? Ça veut dire quoi ? C'est qui ? Pourquoi c'est comme ça ? Les questions des enfants trouvent quotidiennement une réponse. + Jeunesse + + 7 . 0 . + + Tout public + + + + Sous les mers + En provenance des étoiles + Alors qu'ils tentent d'empêcher un satellite de détruire la vie sous-marine, les Nekton font la rencontre d'Alpheus Benthos, un ennemi qui semble connaître Ant. + Jeunesse + Dessins Animés + + 1 . 0 . + + Tout public + + + + Sous les mers + L'anomalie de la mer Baltique + Ant est persuadé que l'anomalie de la mer Baltique est un ancien OVNI, mais les Nekton font une découverte bien plus dangereuse. + Jeunesse + Dessins Animés + + 1 . 1 . + + Tout public + + + + Les Dalton + Au vol + www.presences.online.fr + Jeunesse + Dessins Animés + + 3 . 5 . + + Tout public + + + + Les Dalton + Un paradis d'enfer + www.presences.online.fr + Jeunesse + Dessins Animés + + 3 . 6 . + + Tout public + + + + Les Dalton + Les Dalton rient à pleines dents + www.presences.online.fr + Jeunesse + Dessins Animés + + 3 . 7 . + + Tout public + + + + Les Dalton + La fée Dalton + www.presences.online.fr + Jeunesse + Dessins Animés + + 3 . 8 . + + Tout public + + + + Les Dalton + Pénitencier Palace Hôtel + www.presences.online.fr + Jeunesse + Dessins Animés + + 3 . 9 . + + Tout public + + + + Les Dalton + Les Dalton déménagent + www.presences.online.fr + Jeunesse + Dessins Animés + + 3 . 10 . + + Tout public + + + + Mr Magoo + Un fameux rafiot + Retraité bienveillant, mister Magoo cherche toujours à régler les problèmes qui se présentent à lui. Hélas, sa terrible myopie l'induit souvent en erreur... + Jeunesse + Dessins Animés + + 1 . 0 . + + Tout public + + + + Mr Magoo + Hamster contre chat + Retraité bienveillant, mister Magoo cherche toujours à régler les problèmes qui se présentent à lui. Hélas, sa terrible myopie l'induit souvent en erreur... + Jeunesse + Dessins Animés + + 0 . 0 . + + Tout public + + + + Rencontres à XV + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Consomag + Dépannage à domicile : attention aux abus ! + Le magazine de l'Institut national de la consommation donne à chacun des conseils pratiques pour mieux consommer. + Magazine + Mag. Service + + 0 . 0 . + + Tout public + + + + Outremer.gourmand + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Dans votre région + Des hommes et des femmes, issus de toutes les régions de France, partagent leurs expériences, leurs passions, et font découvrir leur mode de vie. + Documentaire + Doc. Société + + + Tout public + + + + Météo + Bulletin météorologique du service de presse de France 3-Météo France. + Info-Météo + Information + + + Tout public + + + + Outremer.l'info + Aucune description + Info-Météo + Information + + + Tout public + + + + Sports d'Ici + France 3 accueille "Sports d'ICI", un nouveau magazine sportif made in régions. Multi-sport, il vous fera vivre l'actualité sport d'un autre point de vue, celui des acteurs qui font cette actualité : sportifs, femmes et hommes, clubs, entraineurs... tout ce maillage qui permet l'éclosion de champions. + Magazine + Mag. Société + + + Tout public + + + + 12/13 : Météo régionale + Un aperçu des prévisions météorologiques concernant la région pour la journée et le lendemain. + Info-Météo + Information + + + Tout public + + + + ICI 12/13 - Edition toute région + Le rendez-vous de la mi-journée des 24 rédactions régionales de France Télévisions, avec les journaux locaux, les reportages propres à chaque région, mais aussi un regard de proximité sur l'actualité nationale et internationale. + Info-Météo + Information + + + Tout public + + + + Les nouveaux nomades + La diversité des territoires est riche de belles surprises : des bords de la Méditerranée aux sommets alpins, de la Loire aux côtes atlantiques, des Pyrénées au coeur de la capitale, rencontre avec des passionnés de leur région. + Magazine + Mag. Société + + + Tout public + + + + Samedi d'en rire + Aucune description + Divertissement + + + Tout public + + + + Samedi d'en rire + Chaque semaine dans "Samedi d'en rire", Jean-Luc Lemoine plonge dans le patrimoine humoristique et musical des années 70 à nos jours à travers images d'archives et chroniques. + Divertissement + + + Tout public + + + + Patinage artistique : Grand Prix ISU + Aucune description + Sport + Sport De Glisse + + + Tout public + + + + Expression directe + Renaissance + Organisations syndicales, partis politiques, mais aussi mouvements d'entrepreneurs prennent la parole. + Magazine + Mag. Politique + + 0 . 0 . + + Tout public + + + + La p'tite librairie + Malavita, de Tonino Benacquista + François Busnel propose chaque jour de vous faire découvrir ou redécouvrir une œuvre française ou étrangère : roman, essai, grand classique ou encore bande dessinée. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Le jeu des 1000 euros + Aucune description + Divertissement + Jeu + + + Tout public + + + + Questions pour un super champion + "Questions pour un Super Champion", la compétition incontournable qui propose, chaque samedi, de retrouver les plus grands champions ayant obtenu plusieurs victoires au cours de l'émission quotidienne, et qui vont s'affronter pour tenter de détrôner le champion en lice. Avec toujours des matchs de haut niveau et une cagnotte de 50 000€ à remporter toutes les 5 victoires ! + Divertissement + Jeu + + + Tout public + + + + L'image du jour + Magazine sportif. + Magazine + Mag. Sport + + + Tout public + + + + Le journal des talents + Aucune description + Info-Météo + Information + + + Tout public + + + + 19/20 : Météo régionale + Un aperçu des prévisions météorologiques qui devraient concerner la région pour les jours à venir. + Info-Météo + Information + + + Tout public + + + + ICI 19/20 - Edition toute région + Le rendez-vous vespéral des 24 rédactions régionales de France Télévisions, avec les journaux locaux, les reportages propres à chaque région, mais aussi un regard de proximité sur l'actualité nationale et internationale. + Info-Météo + Information + + + Tout public + + + + Tout le sport + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Météo + Bulletin météorologique du service de presse de France 3-Météo France. + Info-Météo + Information + + + Tout public + + + + Météo régionale + Un bulletin météorologique propre à chaque région. + Info-Météo + Information + + + Tout public + + + + Saveurs de saison + Hiver terroir: la madeleine ambassadrice gourmande de la France + Des recettes avec des produits régionaux. + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Cuisine ouverte + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Tous en scène pour le handicap + Etudes imposées + Un programme court consacré au handicap et au regard posé sur le handicap dans la société contemporaine. + Magazine + Mag. Service + + 0 . 0 . + + Tout public + + + + Qui sera le champion des années 80 ? + Aucune description + Divertissement + Jeu + + + Tout public + + + + Tous les chanteurs s'appellent Michel + Retour sur des époques en chansons à travers les parcours de 6 chanteurs qui se prénomment tous Michel : Berger, Delpech, Fugain, Jonasz, Polnareff et Sardou. + Documentaire + Doc. Musique + + + Tout public + + + + Météo + Bulletin météorologique du service de presse de France 3-Météo France. + Info-Météo + Information + + + Tout public + + + + Le songe d'une nuit d'été + Après une grande querelle entre Oberon, le roi des fées et sa femme Tytania, l'harmonie naturelle de la forêt magique est en danger. Ce n'est que le début de la confusion, des identités mixtes et des transformations soudaines, causées par leur intransigeance et leur désir de vengeance. + Musique + Opéra + + + Tout public + + + + La p'tite librairie + Malavita, de Tonino Benacquista + François Busnel propose chaque jour de vous faire découvrir ou redécouvrir une œuvre française ou étrangère : roman, essai, grand classique ou encore bande dessinée. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Cuisine ouverte + Thibaut de Montalembert + Mory Sacko va réinterpréter un classique des brasseries parisiennes : l'oeuf mayonnaise. Côté cuisine, il est assisté du comédien Thibault de Montalembert. + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Les matinales + Programme de musique classique pour se réveiller en douceur. + Magazine + Mag. Musique + + + Tout public + + + + Questions pour un super champion + "Questions pour un Super Champion", la compétition incontournable qui propose, chaque samedi, de retrouver les plus grands champions ayant obtenu plusieurs victoires au cours de l'émission quotidienne, et qui vont s'affronter pour tenter de détrôner le champion en lice. Avec toujours des matchs de haut niveau et une cagnotte de 50 000€ à remporter toutes les 5 victoires ! + Divertissement + Jeu + + + Tout public + + + + A table les enfants + L'orange + Les fruits et légumes prennent la parole en racontant leur vie aux enfants. + Jeunesse + Dessins Animés + + 0 . 0 . + + Tout public + + + + Power Players + Quelque chose dans le mur... + Un garçon de neuf ans peut se transformer en jouet vivant et se doter de super pouvoirs. Accompagné des jouets Power Players, il combat les méchants. + Jeunesse + Dessins Animés + + 0 . 46 . + + Tout public + + + + Power Players + Les opposés s'attirent + Un garçon de neuf ans peut se transformer en jouet vivant et se doter de super pouvoirs. Accompagné des jouets Power Players, il combat les méchants. + Jeunesse + Dessins Animés + + 0 . 45 . + + Tout public + + + + Power Players + Case par case + Un garçon de neuf ans peut se transformer en jouet vivant et se doter de super pouvoirs. Accompagné des jouets Power Players, il combat les méchants. + Jeunesse + Dessins Animés + + 0 . 48 . + + Tout public + + + + Shaun le mouton + La grande roue + Le fermier essaie de faire des économies en produisant son électricité. Il construit une éolienne, que le troupeau s'empresse de transformer en grande roue... + Jeunesse + Dessins Animés + + 1 . 36 . + + Tout public + + + + Shaun le mouton + Au coin du feu + Bitzer ayant pris froid, le fermier décide de le confiner dans la maison, à côté de la cheminée. Malheureusement, cette place est celle de Pidsley, qui n'apprécie pas du tout d'en être chassé... + Jeunesse + Dessins Animés + + 1 . 37 . + + Tout public + + + + Shaun le mouton + Enneigés + Au petit matin, le troupeau découvre qu'il a neigé sur la ferme. Une bataille de boules de neige s'engage. Les moutons ne s'aperçoivent pas que le fermier est pris au piège dans la maison... + Jeunesse + Dessins Animés + + 1 . 38 . + + Tout public + + + + Shaun le mouton + Baa-gherita + Shaun le mouton et sa troupe sont de retour pour de nouvelles aventures et catastrophes hilarantes, qu'il s'agit de réparer avant que le fermier s'en s'aperçoive ! Dans cette saison, le fermier tombe amoureux … Le spécial sera sur le thème de Noël. + Jeunesse + Dessins Animés + + 5 . 10 . + + Tout public + + + + Shaun le mouton + CSI Mossy + Shaun le mouton et sa troupe sont de retour pour de nouvelles aventures et catastrophes hilarantes, qu'il s'agit de réparer avant que le fermier s'en s'aperçoive ! Dans cette saison, le fermier tombe amoureux … Le spécial sera sur le thème de Noël. + Jeunesse + Dessins Animés + + 5 . 19 . + + Tout public + + + + Nawak + Granmawak + Rêveur, insouciant et surtout maladroit, Nawak est toujours partant pour résoudre, à sa façon bien particulière, les petits soucis de ses amis. + Jeunesse + Dessins Animés + + 0 . 59 . + + Tout public + + + + Nawak + Le masque + Quand Nawak se déguise avec le Masque du Sorcier, il se retrouve capturé par la tribu voisine qui l'a confondu avec un grand médecin. + Jeunesse + Dessins Animés + + 0 . 60 . + + Tout public + + + + Nawak + Le chewing gum + Quand Nawak et Kawak découvrent qu'on peut mâchouiller de la sève pour faire des bulles, la frénésie du chewing-gum s'empare de la tribu. + Jeunesse + Dessins Animés + + 0 . 61 . + + Tout public + + + + Nawak + La balançoire + Quand le Chef installe une nouvelle balançoire pour les Papooses, Nawak se découvre une passion pour ce sport méconnu. Mais les courtes pattes du Poney l'handicapent. Charge, donc, à Nawak d'aider sa monture à devenir un champion du monde de balançoire... + Jeunesse + Dessins Animés + + 0 . 62 . + + Tout public + + + + Nawak + Les lucioles + Quand Nawak et le Chef tentent de trouver leur chemin en s'orientant avec les étoiles, ils deviennent les victimes innocentes d'une bande de lucioles facétieuses qui les égarent dans les bois... + Jeunesse + Dessins Animés + + 0 . 63 . + + Tout public + + + + Les lapins crétins : invasion + Business crétin + Aucune description + Jeunesse + Dessins Animés + + 3 . 63 . + + Tout public + + + + Les lapins crétins : invasion + Allergie crétine + Aucune description + Jeunesse + Dessins Animés + + 3 . 44 . + + Tout public + + + + Les lapins crétins : invasion + Circus crétin + Bien décidé à se faire recruter par le tout nouveau cirque crétin, un lapin passe au déguisarium pour se déguiser en clown. Hélas, il est doublé par un autre lapin clown qui lui pique son numéro. Injustement évincé de la piste aux étoiles, le lapin va devoir se battre pour gagner sa place sur scène… + Jeunesse + Dessins Animés + + 3 . 69 . + + Tout public + + + + Les lapins crétins : invasion + Enigme crétine + Aucune description + Jeunesse + Dessins Animés + + 3 . 61 . + + Tout public + + + + Les lapins crétins : invasion + Paradoxe crétin + Aucune description + Jeunesse + Dessins Animés + + 3 . 55 . + + Tout public + + + + Un jour, une question + Depuis quand le dopage existe ? + A quoi ça sert ? Ça veut dire quoi ? C'est qui ? Pourquoi c'est comme ça ? Les questions des enfants trouvent quotidiennement une réponse. + Jeunesse + + 7 . 0 . + + Tout public + + + + Sous les mers + Les sirènes + Le professeur Fiction et Fontaine ont été enlevés. Parti à leur recherche, Ant est persuadé qu'il a vu une sirène, mais il ne tarde pas à s'attirer des ennuis. + Jeunesse + Dessins Animés + + 1 . 2 . + + Tout public + + + + Sous les mers + Eaux dangereuses + L'Aronnax est coincé dans le Triangle des Bermudes où la situation vire à la catastrophe. Seul Jeffrey peut sauver l'équipage, à moins qu'Alpheus ne s'en mêle. + Jeunesse + Dessins Animés + + 1 . 3 . + + Tout public + + + + Les Dalton + Traitement de choc + www.presences.online.fr + Jeunesse + Dessins Animés + + 3 . 11 . + + Tout public + + + + Les Dalton + Ce bon vieux Joe + www.presences.online.fr + Jeunesse + Dessins Animés + + 3 . 12 . + + Tout public + + + + Les Dalton + Mauvaises graines + www.presences.online.fr + Jeunesse + Dessins Animés + + 3 . 14 . + + Tout public + + + + Les Dalton + Un grain de sable pour les Dalton + www.presences.online.fr + Jeunesse + Dessins Animés + + 3 . 13 . + + Tout public + + + + Les Dalton + Roule ma poule ! + www.presences.online.fr + Jeunesse + Dessins Animés + + 3 . 20 . + + Tout public + + + + Les Dalton + Averell jette un froid + www.presences.online.fr + Jeunesse + Dessins Animés + + 3 . 18 . + + Tout public + + + + Mr Magoo + Le nouvel assistant de Fizz + Retraité bienveillant, mister Magoo cherche toujours à régler les problèmes qui se présentent à lui. Hélas, sa terrible myopie l'induit souvent en erreur... + Jeunesse + Dessins Animés + + 1 . 0 . + + Tout public + + + + Mr Magoo + Bouh ! + Retraité bienveillant, mister Magoo cherche toujours à régler les problèmes qui se présentent à lui. Hélas, sa terrible myopie l'induit souvent en erreur... + Jeunesse + Dessins Animés + + 1 . 0 . + + Tout public + + + + Outremer.story + Aucune description + Magazine + Mag. Découverte + + + Tout public + + + + Parlement hebdo + Entièrement dédié à l'actualité parlementaire, ce rendez-vous unique offre chaque semaine un panorama complet des événements qui ont alimenté le débat à l'Assemblée nationale et au Sénat. En présence d'un député ou d'un sénateur, "Parlement Hebdo" propose une relecture éclairée des grands travaux et discussions parlementaires. + Magazine + Mag. Politique + + + Tout public + + + + Expression directe + Les Républicains + Organisations syndicales, partis politiques, mais aussi mouvements d'entrepreneurs prennent la parole. + Magazine + Mag. Politique + + 0 . 0 . + + Tout public + + + + Météo + Bulletin météorologique du service de presse de France 3-Météo France. + Info-Météo + Information + + + Tout public + + + + Outremer.l'info + Aucune description + Info-Météo + Information + + + Tout public + + + + Dimanche en politique dans votre région + Les rédactions régionales de France 3 traitent des sujets qui font débat et des enjeux politiques, sociaux et sociétaux. Hommes et femmes politiques, citoyens engagés et habitants de la région apportent leurs réponses à la question de la semaine. + Magazine + Mag. Politique + + + Tout public + + + + Dimanche en politique + Aucune description + Magazine + Mag. Politique + + + Tout public + + + + 12/13 : Météo régionale + Un aperçu des prévisions météorologiques concernant la région pour la journée et le lendemain. + Info-Météo + Information + + + Tout public + + + + ICI 12/13 - Edition toute région + Le rendez-vous de la mi-journée des 24 rédactions régionales de France Télévisions, avec les journaux locaux, les reportages propres à chaque région, mais aussi un regard de proximité sur l'actualité nationale et internationale. + Info-Météo + Information + + + Tout public + + + + Les nouveaux nomades + La diversité des territoires est riche de belles surprises : des bords de la Méditerranée aux sommets alpins, de la Loire aux côtes atlantiques, des Pyrénées au coeur de la capitale, rencontre avec des passionnés de leur région. + Magazine + Mag. Société + + + Tout public + + + + Vivement dimanche + Aucune description + Divertissement + + + Tout public + + + + Sport dimanche + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Patinage artistique : Grand Prix ISU + Aucune description + Sport + Sport De Glisse + + + Tout public + + + + La p'tite librairie + Comme un roman, de Daniel Pennac + François Busnel propose chaque jour de vous faire découvrir ou redécouvrir une œuvre française ou étrangère : roman, essai, grand classique ou encore bande dessinée. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Des chiffres et des lettres + Aucune description + Divertissement + Jeu + + + Tout public + + + + Le Grand Slam + Aucune description + Divertissement + Jeu + + + Tout public + + + + L'image du jour + Magazine sportif. + Magazine + Mag. Sport + + + Tout public + + + + Zap actu + Et si on prenait 5 minutes pour revivre l'actualité de la semaine ? Ce journal 100 0.000000e+00n images se propose de raconter l'information avec un peu de recul en se basant sur les reportages tournés au plus près des évènements par les rédactions régionales de France 3. + Magazine + Mag. Société + + + Tout public + + + + Instant conso + Le magazine de la consommation des régions, au plus près du terrain. + Magazine + Mag. Service + + + Tout public + + + + 19/20 : Météo régionale + Un aperçu des prévisions météorologiques qui devraient concerner la région pour les jours à venir. + Info-Météo + Information + + + Tout public + + + + ICI 19/20 - Edition toute région + Le rendez-vous vespéral des 24 rédactions régionales de France Télévisions, avec les journaux locaux, les reportages propres à chaque région, mais aussi un regard de proximité sur l'actualité nationale et internationale. + Info-Météo + Information + + + Tout public + + + + Météo + Bulletin météorologique du service de presse de France 3-Météo France. + Info-Météo + Information + + + Tout public + + + + Météo régionale + Un bulletin météorologique propre à chaque région. + Info-Météo + Information + + + Tout public + + + + Stade 2 + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Destination 2024 + Paris accueillera en 2024 les XXXIIIe Jeux olympiques d'été. Zoom sur un champion en préparation. + Magazine + Mag. Sport + + + Tout public + + + + Brokenwood + Quatre incendies et un enterrement + Les restes carbonisés d'un corps sont découverts dans un hangar rural incendié. Mike et Kristin sont chargés d'identifier le corps ; il semble que ce soit le troisième d'une série de décès "accidentels", tous pris en charge par les pompiers de Brokenwood... + Série + Série Suspense + + 7 . 5 . + + + -10 + + + + Brokenwood + La mécanique du crime + A Riverstone Beach, le festival annuel attire les amateurs de véhicules de collection. Le matin de l'ouverture officielle, Charlie Baxter, président de la société des voitures vintage, est retrouvé mort près d'une Cadillac Eldorado. S'agit-il d'un accident mécanique, ou d'un acte prémédité ?... + Série + Série Suspense + + 2 . 2 . + + Tout public + + + + Brokenwood + Un Noël rouge + Les préparatifs de Noël sont gâchés par la découverte du cadavre du père Noël. La victime n'est autre que le maire Evan Whitestone, qui avait pris pour habitude de défiler chaque année revêtu du costume traditionnel. Les élections municipales approchant, l'enquête s'oriente vers quatre de ses rivaux... + Série + Série Suspense + + 2 . 3 . + + Tout public + + + + Météo + Bulletin météorologique du service de presse de France 3-Météo France. + Info-Météo + Information + + + Tout public + + + + Des racines et des ailes + Passion patrimoine : la France vue d'en haut + Aucune description + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Samedi d'en rire + (Reprise du 21/10/23) + Divertissement + + + Tout public + + + + Les matinales + Programme de musique classique pour se réveiller en douceur. + Magazine + Mag. Musique + + + Tout public + + + + Les matinales + Programme de musique classique pour se réveiller en douceur. + Magazine + Musique + + + Tout public + + + + Le grand Slam + Chaque dimanche, "Le Grand Slam" accueille les champions qui ont marqué l'histoire de "Slam" par leur palmarès et leur personnalité. Avec sa mécanique imparable basée sur la culture générale et les mots croisés, "Le Grand Slam" permet, chaque semaine, à quatre candidats de revenir dans la compétition pour tenter de se qualifier et d'affronter, toujours dans la bonne humeur, le champion en lice afin de remporter les 10 000€ en jeu. + Divertissement + Jeu + + + Tout public + + + + Power Players + Le retour du Thermometron 9000 + Axel a neuf ans et vit avec son oncle André, un inventeur de jouets. Un jour, il découvre son laboratoire secret et il lui est désormais possible de se transformer en jouet vivant. Mesurant maintenant vingt centimètres et armé de super pouvoirs, il est accompagné d'une équipe de jouets animés : les Powers Players. Ensemble, ils vivent de folles aventures et combattent des méchants qui sèment la terreur. La série met en scène des histoires incroyables dont tous les enfants aimeraient être les héros. + Série + Animation + + 0 . 48 . + + Tout public + + + + Power Players + La couronne + Axel a neuf ans et vit avec son oncle André, un inventeur de jouets. Un jour, il découvre son laboratoire secret et il lui est désormais possible de se transformer en jouet vivant. Mesurant maintenant vingt centimètres et armé de super pouvoirs, il est accompagné d'une équipe de jouets animés : les Powers Players. Ensemble, ils vivent de folles aventures et combattent des méchants qui sèment la terreur. La série met en scène des histoires incroyables dont tous les enfants aimeraient être les héros. + Série + Animation + + 0 . 49 . + + Tout public + + + + Power Players + La répétition + Axel a neuf ans et vit avec son oncle André, un inventeur de jouets. Un jour, il découvre son laboratoire secret et il lui est désormais possible de se transformer en jouet vivant. Mesurant maintenant vingt centimètres et armé de super pouvoirs, il est accompagné d'une équipe de jouets animés : les Powers Players. Ensemble, ils vivent de folles aventures et combattent des méchants qui sèment la terreur. La série met en scène des histoires incroyables dont tous les enfants aimeraient être les héros. + Série + Animation + + 0 . 50 . + + Tout public + + + + Power Players + Le piège de la peur + Axel a neuf ans et vit avec son oncle André, un inventeur de jouets. Un jour, il découvre son laboratoire secret et il lui est désormais possible de se transformer en jouet vivant. Mesurant maintenant vingt centimètres et armé de super pouvoirs, il est accompagné d'une équipe de jouets animés : les Powers Players. Ensemble, ils vivent de folles aventures et combattent des méchants qui sèment la terreur. La série met en scène des histoires incroyables dont tous les enfants aimeraient être les héros. + Série + Animation + + 0 . 47 . + + Tout public + + + + Shaun le mouton + Bien dans ses baskets + Shaun le mouton et sa troupe sont de retour pour de nouvelles aventures et catastrophes hilarantes, qu'il s'agit de réparer avant que le fermier s'en s'aperçoive ! Dans cette saison, le fermier tombe amoureux … Le spécial sera sur le thème de Noël. + Série + Animation + + 5 . 2 . + + Tout public + + + + Shaun le mouton + Super Sheep + Shaun le mouton et sa troupe sont de retour pour de nouvelles aventures et catastrophes hilarantes, qu'il s'agit de réparer avant que le fermier s'en s'aperçoive ! Dans cette saison, le fermier tombe amoureux … Le spécial sera sur le thème de Noël. + Série + Animation + + 5 . 8 . + + Tout public + + + + Shaun le mouton + Tour de Mossy Bottom + Shaun le mouton et sa troupe sont de retour pour de nouvelles aventures et catastrophes hilarantes, qu'il s'agit de réparer avant que le fermier s'en s'aperçoive ! Dans cette saison, le fermier tombe amoureux … Le spécial sera sur le thème de Noël. + Série + Animation + + 5 . 12 . + + Tout public + + + + Shaun le mouton + Sauvetage de peluche + Shaun le mouton et sa troupe sont de retour pour de nouvelles aventures et catastrophes hilarantes, qu'il s'agit de réparer avant que le fermier s'en s'aperçoive ! Dans cette saison, le fermier tombe amoureux … Le spécial sera sur le thème de Noël. + Série + Animation + + 5 . 3 . + + Tout public + + + + Shaun le mouton + #Farmstar + Shaun le mouton et sa troupe sont de retour pour de nouvelles aventures et catastrophes hilarantes, qu'il s'agit de réparer avant que le fermier s'en s'aperçoive ! Dans cette saison, le fermier tombe amoureux … Le spécial sera sur le thème de Noël. + Série + Animation + + 5 . 4 . + + Tout public + + + + Les lapins crétins : invasion + Crétin du futur + On les a découverts mignons, curieux et attachants, mais surtout, complètement frapadingues ! Après avoir envahi notre belle planète bleue dans la saison 1, tenté de rentrer chez eux en visant l'astre lunaire dans la saison 2 et voyagé dans l'espace-temps grâce à la téléportatélé dans la saison 3, Les Lapins Crétins n'auront, dans cette saison 4, qu'une seule idée en tête : quitter définitivement le junkyard et vivre des aventures autour du monde dans leur sous-marin jaune, un étrange engin volant (un peu à la panière d'un dirigeable) équipé d'une technologie "Lapin" qui est d'autant plus surprenant que les Crétins ne semblent pas du tout savoir s'en s'servir. + Dessin animé + Jeunesse + + 3 . 56 . + + Tout public + + + + Les lapins crétins : invasion + Un sous-marin dans le crétin + On les a découverts mignons, curieux et attachants, mais surtout, complètement frapadingues ! Après avoir envahi notre belle planète bleue dans la saison 1, tenté de rentrer chez eux en visant l'astre lunaire dans la saison 2 et voyagé dans l'espace-temps grâce à la téléportatélé dans la saison 3, Les Lapins Crétins n'auront, dans cette saison 4, qu'une seule idée en tête : quitter définitivement le junkyard et vivre des aventures autour du monde dans leur sous-marin jaune, un étrange engin volant (un peu à la panière d'un dirigeable) équipé d'une technologie "Lapin" qui est d'autant plus surprenant que les Crétins ne semblent pas du tout savoir s'en s'servir. + Dessin animé + Jeunesse + + 3 . 59 . + + Tout public + + + + Les lapins crétins : invasion + Gladiatus cretinus + On les a découverts mignons, curieux et attachants, mais surtout, complètement frapadingues ! Après avoir envahi notre belle planète bleue dans la saison 1, tenté de rentrer chez eux en visant l'astre lunaire dans la saison 2 et voyagé dans l'espace-temps grâce à la téléportatélé dans la saison 3, Les Lapins Crétins n'auront, dans cette saison 4, qu'une seule idée en tête : quitter définitivement le junkyard et vivre des aventures autour du monde dans leur sous-marin jaune, un étrange engin volant (un peu à la panière d'un dirigeable) équipé d'une technologie "Lapin" qui est d'autant plus surprenant que les Crétins ne semblent pas du tout savoir s'en s'servir. + Dessin animé + Jeunesse + + 3 . 65 . + + Tout public + + + + Les lapins crétins : invasion + Crétin de la jungle et l'armée des trois crabes + On les a découverts mignons, curieux et attachants, mais surtout, complètement frapadingues ! Après avoir envahi notre belle planète bleue dans la saison 1, tenté de rentrer chez eux en visant l'astre lunaire dans la saison 2 et voyagé dans l'espace-temps grâce à la téléportatélé dans la saison 3, Les Lapins Crétins n'auront, dans cette saison 4, qu'une seule idée en tête : quitter définitivement le junkyard et vivre des aventures autour du monde dans leur sous-marin jaune, un étrange engin volant (un peu à la panière d'un dirigeable) équipé d'une technologie "Lapin" qui est d'autant plus surprenant que les Crétins ne semblent pas du tout savoir s'en s'servir. + Dessin animé + Jeunesse + + 3 . 52 . + + Tout public + + + + Les lapins crétins : invasion + Commando crétin + On les a découverts mignons, curieux et attachants, mais surtout, complètement frapadingues ! Après avoir envahi notre belle planète bleue dans la saison 1, tenté de rentrer chez eux en visant l'astre lunaire dans la saison 2 et voyagé dans l'espace-temps grâce à la téléportatélé dans la saison 3, Les Lapins Crétins n'auront, dans cette saison 4, qu'une seule idée en tête : quitter définitivement le junkyard et vivre des aventures autour du monde dans leur sous-marin jaune, un étrange engin volant (un peu à la panière d'un dirigeable) équipé d'une technologie "Lapin" qui est d'autant plus surprenant que les Crétins ne semblent pas du tout savoir s'en s'servir. + Dessin animé + Jeunesse + + 3 . 53 . + + Tout public + + + + Les lapins crétins : invasion + Crétin comme un pot + On les a découverts mignons, curieux et attachants, mais surtout, complètement frapadingues ! Après avoir envahi notre belle planète bleue dans la saison 1, tenté de rentrer chez eux en visant l'astre lunaire dans la saison 2 et voyagé dans l'espace-temps grâce à la téléportatélé dans la saison 3, Les Lapins Crétins n'auront, dans cette saison 4, qu'une seule idée en tête : quitter définitivement le junkyard et vivre des aventures autour du monde dans leur sous-marin jaune, un étrange engin volant (un peu à la panière d'un dirigeable) équipé d'une technologie "Lapin" qui est d'autant plus surprenant que les Crétins ne semblent pas du tout savoir s'en s'servir. + Dessin animé + Jeunesse + + 3 . 6 . + + Tout public + + + + Looney Tunes Cartoons + Les livreurs + Looney Tunes Cartoons est une série de dessins animés s'inspirant des premiers courts métrages des Looney Tunes dont elle reprend les codes. + Série + Animation + + 0 . 17 . + + Tout public + + + + Looney Tunes Cartoons + Elmer le lapin + Looney Tunes Cartoons est une série de dessins animés s'inspirant des premiers courts métrages des Looney Tunes dont elle reprend les codes. + Série + Animation + + 0 . 17 . + + Tout public + + + + Looney Tunes Cartoons + De quoi semelle-t-il ? + Looney Tunes Cartoons est une série de dessins animés s'inspirant des premiers courts métrages des Looney Tunes dont elle reprend les codes. + Série + Animation + + 0 . 18 . + + Tout public + + + + Looney Tunes Cartoons + Vil coyote, chef de meute + Looney Tunes Cartoons est une série de dessins animés s'inspirant des premiers courts métrages des Looney Tunes dont elle reprend les codes. + Série + Animation + + 0 . 18 . + + Tout public + + + + Looney Tunes Cartoons + Eradicabugs + Looney Tunes Cartoons est une série de dessins animés s'inspirant des premiers courts métrages des Looney Tunes dont elle reprend les codes. + Série + Animation + + 0 . 15 . + + Tout public + + + + Looney Tunes Cartoons + Porking pig + Looney Tunes Cartoons est une série de dessins animés s'inspirant des premiers courts métrages des Looney Tunes dont elle reprend les codes. + Série + Animation + + 0 . 18 . + + Tout public + + + + Chroniques méditerranéennes + Parc du Ventoux + 100564309a2b3f8assion territoire méditerranéen ! "Chroniques Méditerranéennes" nous entraîne hors des sentiers battus à la découverte de la région Provence-Alpes-Côte d'Azur et de ses habitants. Des sites exceptionnels, de riches rencontres, des histoires inédites à partager... + Magazine + Découvertes + + + Tout public + + + + Dans votre région + Des hommes et des femmes, issus de toutes les régions de France, partagent leurs expériences, leurs passions, et font découvrir leur mode de vie. + Documentaire + Société + + + Tout public + + + + Dans votre région, la suite + Des hommes et des femmes, issus de toutes les régions de France, partagent leurs expériences, leurs passions, et font découvrir leur mode de vie. + Magazine + Information + + + Tout public + + + + Consomag + La fin du ticket de caisse systématique + Le magazine de l'Institut national de la consommation donne à chacun des conseils pratiques pour mieux consommer. + Art de vivre + Consommation + + + Tout public + + + + Outremer.le mag + Spéciale Polynésie + "Outremer.le mag", c'est la découverte et la connaissance des Outre-mer, une immersion au coeur de ces territoires, animée par Brice Laurent Dubois. Pour cette saison, deux nouveaux chroniqueurs : Sanjee qui partage une recette facile issue de la cuisine du monde et Max qui reçoit chaque jour un invité. "Outremer.lemag" ce sont toujours des reportages qui donnent à voir et à comprendre les Outre-mer avec notamment un portrait touchant et original d'un habitant ultramarin. Dans un décor renouvelé, 26 minutes de bonne humeur, d'évasion et d'authenticité, un moment de partage chaleureux et souriant pour découvrir et vivre la diversité de ces territoires. + Magazine + Découvertes + + + Tout public + + + + Météo + Bulletin météorologique du service de presse de France 3-Météo France. + Services + Météo + + + Tout public + + + + Outremer.l'info + Reportages, décryptages, focus... la Rédaction du Pôle Outre-mer propose "Outremer.l'info", le journal d'information consacré à l'actualité ultramarine. De Saint-Pierre-et-Miquelon à Wallis-et-Futuna, en passant par la Guadeloupe, la Martinique, la Guyane, Mayotte, la Réunion, la Polynésie et la Nouvelle-Calédonie, faites le tour de l'actualité quotidienne des Outre-mer en 9 minutes, 7 jours sur 7, tout au long de l'année ! + Information + Journal + + + Tout public + + + + Le journal des solutions + Trouver des solutions pour vivre au mieux les défis d'aujourd'hui. C'est le pari de cette émission qui s'appuie sur la richesse des reportage des rédactions régionales de France 3 et tous ceux qui innovent et s'engagent au quotidien dans les domaines de la santé, de l'écologie, de l'éducation, de l'emploi, de la consommation... Une vision volontairement positive de l'information pour mieux en comprendre les enjeux. + Information + Journal + + + Tout public + + + + 12/13 : Météo régionale + Un aperçu des prévisions météorologiques concernant la région pour la journée et le lendemain. + Services + Météo + + + Tout public + + + + ICI 12/13 - Edition toute région + Le rendez-vous de la mi-journée des 24 rédactions régionales de France Télévisions, avec les journaux locaux, les reportages propres à chaque région, mais aussi un regard de proximité sur l'actualité nationale et internationale. + Information + Journal + + + Tout public + + + + Météo à la carte + En direct "Météo à la carte", un magazine quotidien en direct, consacré à la météo et à ses implications dans notre vie de tous les jours. Ce sont des reportages inédits mettant en lumière des producteurs, des agriculteurs, des artisans et des scientifiques en mesure de s'adapter aux changements climatiques grâce à de nouvelles pratiques. De leur côté, chefs et cuisiniers amateurs valorisent au travers de leurs recettes des produits de saison, cultivés à proximité. + Magazine + Découvertes + + + Tout public + + + + Météo à la carte (la suite) + En direct Dans un décor plus intimiste, ce nouveau rendez-vous en direct également animé par Marines Vignes et Laurent Romejko est placé sous le signe de l'évasion et du développement durable avec des reportages sur les surfers écolos du Cap Ferrat, Kito le géant de la sculpture bretonne … Le Journal du temps, présenté par Laurent Romejko, viendra conclure ce nouveau rendez-vous avec des prévisions à 9 jours et l'arrivée de nouvelles cartes saisonnières (indices UV / taux de pollen /indicateurs de pollution / état des nappes phréatiques…) ainsi que le recours à de webcams en cas d'évènements climatiques. Ce nouveau format se veut encore plus interactif. Les téléspectateurs gardent une place importante dans l'émission et sur les réseaux. Les photos et vidéos envoyées vont être davantage mises en valeur. + Magazine + Société + + + Tout public + + + + Meurtres au paradis + Meurtre à la plantation + Le corps sans vie d'un habitant de l'île Sainte Marie est découvert. Le cadavre est rapidement identifié : il s'agit du riche propriétaire d'une vaste plantation de sucre. Pas besoin de faire appel au médecin légiste pour deviner la cause du décès. En effet, une machette est plantée dans le dos de la victime. L'enquête débute et, très vite, l'inspecteur Richard Poole apprend que cet exploitant s'apprêtait à effectuer une annonce importante à sa famille. Il avait d'ailleurs réuni tous ses proches pour l'occasion. Une nouvelle fois, Richard Poole se retrouve face à une enquête qui nécessite d'aborder les faits de manière différente. Apparemment, cet homicide paraît impossible à résoudre... + Action + Suspense + + 1 . 0 . + + + -10 + + + + Meurtres au paradis + Faux semblants + Therese, une jeune postulante, est retrouvée morte à la suite de l'incendie d'un couvent. La porte de sa chambre était fermée à clé. Les premiers indices montrent que la jeune fille n'a pas fumé la cigarette censée avoir mis le feu à son matelas. Poole cherche à comprendre qui a voulu tuer une religieuse et pour quelles raisons. Il découvre dans ses affaires une lettre de menaces montrant qu'elle en savait un petit peu trop long sur les petites histoires du couvent, notamment sur d'obscurs agissements autour d'une prétendue source miraculeuse. La jeune femme aurait-elle été éliminée sciemment ?... + Action + Suspense + + 1 . 1 . + + Tout public + + + + La p'tite librairie + Les sept contre Thèbes, par Eschyle + François Busnel propose chaque jour de vous faire découvrir ou redécouvrir une oeuvre française ou étrangère : roman, essai, grand classique ou encore bande dessinée. + Magazine + Culture + + + Tout public + + + + Duels en familles + Dans un décor d'appartement géant, deux familles de quatre membres viennent défendre les couleurs de leur région en s'affrontant chaque jour de la semaine, au cours de trois duels et une finale. Au programme : duels en images, duels en régions, duels de mots, duels en musique, duels en culture … Chaque jour, la famille victorieuse se qualifie pour la finale pour tenter de remporter 2000 €. Le vendredi, pour le dernier match de la semaine, c'est une grande finale à 5000 € qui attend les candidats. Quelle sera la famille et donc la région gagnante de la semaine ? + Divertissement + Jeu + + + Tout public + + + + Slam + Accessible à tous les publics, "Slam" est un jeu de lettres 1000riginal qui fait la joie des amoureux des mots, des férus de quiz et des adeptes des mots fléchés, en mixant tous les genres, de la géographie aux mathématiques, en passant par la chimie...et bien sûr le français. Au menu: vivacité d'esprit, humour, vocabulaire, orthographe et bien sûr culture générale! + Divertissement + Jeu + + + Tout public + + + + Questions pour un champion + Jeu emblématique construit autour de la culture générale, l'émission culte "Questions pour un champion" se déroule en trois manches : - Le "9 points gagnants" lors de laquelle la rapidité est de mise. - Le "4 à la suite" où dans un temps de 40 secondes maximum, le but est de donner 4 bonnes réponses à la suite sur un thème choisi. - Et le "Face-à-face", manche lors de laquelle plus vous répondez rapidement, plus vous marquez de points. Le premier candidat qui atteint 12 points remporte le match. Le champion pourra repartir avec ses gains (fonction de son nombre de victoires successives) ou revenir le lendemain affronter 3 nouveaux candidats et tenter de remporter la cagnotte au bout de 5 victoires successives et continuer ensuite indéfiniment (remportant 500€ à chaque victoire supplémentaire). + Divertissement + Jeu + + + Tout public + + + + L'image du jour + Magazine sportif. + Magazine + Sport + + + Tout public + + + + ICI 19/20 - Titres + Les titres de l'information régionale du soir, qui seront développés dans les journaux locaux. + Information + Journal + + + Tout public + + + + 19/20 : Météo régionale + Un aperçu des prévisions météorologiques qui devraient concerner la région pour les jours à venir. + Services + Météo + + + Tout public + + + + ICI 19/20 - Edition locale + Aucune description + Information + Journal + + + Tout public + + + + ICI 19/20 - Edition toute région + Le rendez-vous vespéral des 24 rédactions régionales de France Télévisions, avec les journaux locaux, les reportages propres à chaque région, mais aussi un regard de proximité sur l'actualité nationale et internationale. + Information + Journal + + + Tout public + + + + Tout le sport + 2023. Toute l'actualité sportive nationale et internationale avec "Tout le sport", le plus ancien magazine sportif quotidien de la télévision française. L'émission est diffusée en direct sur France 3 à 20h45 du lundi au samedi, présentée par Fabien Lévêque du lundi au jeudi et par Matthieu Lartot vendredi et samedi. + Sport + Multisports + + + Tout public + + + + Journal Météo Climat + Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts. + Services + Météo + + + Tout public + + + + Météo régionale + Un bulletin météorologique propre à chaque région. + Services + Météo + + + Tout public + + + + Aux Jeux, citoyens ! + 2023. Paris 2024 : la France a rendez-vous avec le monde entier, en organisant les Jeux Olympiques et Paralympiques. Chaque jour, Carole Gaessler, cheffe de bande, sera accompagnée d'Alexandre Boyon et d'un ancien champion ayant vécu les Jeux de l'intérieur ! Luc Abalo, Théo Curin, Stéphane Diagana, Céline Dumerc, Laure Manaudou, Sarah Ourahmoune et Marie-José Pérec, tous olympiens ou paralympiens, racontent au quotidien les coulisses de la préparation des Jeux Olympiques et Paralympiques. Chaque vendredi, un(e) invité(e) viendra témoigner de sa passion pour les jeux, qu'il ou elle soit sportif en activité, artiste, ancien champion, chef cuisinier, écrivain… + Sport + Multisports + + + Tout public + + + + La fracture + Il a suffi d'un instant d'inattention alors qu'elle se querelle encore avec sa compagne Julie pour que Raf trébuche violemment et se retrouve immobilisée au sol, incapable de se relever. Les pompiers se chargent d'emmener les deux femmes aux urgences, où la sentence tombe : le coude est fracturé. L'attente commence pour ce couple au bord de l'implosion au sein d'un service totalement surchargé des blessés touchés dans les violentes manifestations en cours dans la capitale. Au fur et à mesure des heures qui passent, Raf et Julie comprennent la futilité de leurs disputes devant le drame humain auquel elles assistent impuissantes... + Film + Comédie dramatique + + + + -10 + + + + Météo + Bulletin météorologique du service de presse de France 3-Météo France. + Services + Météo + + + Tout public + + + + Changement climatique, des résistants en outre-mer + Montée des eaux, ouragans plus puissants et plus nombreux, épisodes durables de sécheresse ou inondations brutales : dans les territoires d'outre-mer, les populations locales affrontent déjà l'impact du dérèglement climatique, qui a des conséquences dévastatrices et très concrètes sur leur quotidien. Ce documentaire part à leur rencontre d'homme et de femmes qui vivent désormais dans l'urgence, pour raconter la mobilisation collective de celles et ceux qui doivent apprendre à vivre autrement pour pouvoir survivre sur leurs terres ancestrales. + Documentaire + Nature + + + Tout public + + + + Tropiques d'excellence + Suivre un parcours d'excellence d'enseignement supérieur à Paris quand on a grandi en Outre-Mer n'a rien d'évident. Avec un bac en poche et un brillant parcours collège/lycée certains font le " saut ", à 18 ans à peine, d'intégrer une "prépa" dans un grand lycée parisien. Rupture familiale, nouveaux codes culturels, charge de travail colossale, isolement affectif, étiquette d'ultra-marin : rien n'est simple. + Documentaire + Société + + + Tout public + + + + Cévennes, l'hôpital de la vie sauvage + En 2008, Marie-Pierre Puech vétérinaire à la retraite, a construit sur son propre terrain dans la vallée de l'Hérault, un hôpital pour les animaux sauvages. Son but : recueillir, soigner puis relâcher les bêtes abîmées par l'activité des hommes. Douze ans plus tard, elle a réussi à fédérer autour d'elle une centaine de bénévoles de 14 à 80 ans, transformés en sentinelles de la faune sauvage. Plus fort encore, elle vient de convaincre la ville de Montpellier de travailler sur un projet similaire au coeur du parc zoologique. + Nature + Animalier + + + Tout public + + + + La p'tite librairie + Les sept contre Thèbes, par Eschyle + François Busnel propose chaque jour de vous faire découvrir ou redécouvrir une oeuvre française ou étrangère : roman, essai, grand classique ou encore bande dessinée. + Magazine + Culture + + + Tout public + + + + La vie secrète des chansons + Voyage, voyage + André Manoukian raconte l'histoire de ces mélodies qui font voyager au bout du monde. Etats-Unis, Egypte, Mali, Burundi : les artistes sont nombreux à chanter des villes ou des contrées lointaines. On se souvient de Line Renaud et de sa "Cabane au Canada" ou encore du duo Amadou et Mariam et de leur ode à Bamako : "Beaux Dimanches". Pour certains, ces chansons sont une façon de rendre hommage aux souvenirs de leur jeunesse à l'instar de Gaël Faye avec "Petit Pays", de Maxime Le Forestier avec "San Francisco" ou encore de Dalida lorsqu'elle interprète "Salma Ya Salama". Des titres, tel "New York, New York" chanté par Franck Sinatra, ou encore "Bruxelles" du groupe Boulevard des Airs, sont devenus, parfois malgré eux, de véritables hymnes. + Documentaire + Musique + + + Tout public + + + + Outremer.story + Dans "Outremer.story", Laurence Roustandjee nous présente deux portraits d'Ultramarins. Rencontre, en images, de celles et ceux qui font les Outre-mer. Ils sont anonymes mais ils ont un visage et surtout une histoire. Leur engagement fait leur force. Leur territoire est leur fierté. Cette semaine dans "Outremer.story", Laurence Roustandjee nous présente deux créatrices de mode, deux femmes inspirantes. Murielle Kabyle est une jeune martiniquaise qui détestait ses cheveux crépus quand elle était enfant. Depuis, elle a fait de ce complexe une force et puise l'inspiration dans ces cheveux texturés que les femmes noires ont longtemps caché. Aujourd'hui, elle est installée à Paris et elle crée des pièces de haute couture entièrement faites de cheveux ! Chouhoura Abdallah-Minas vit à Mayotte. + Magazine + Découvertes + + + Tout public + + + + Les matinales + Programme de musique classique pour se réveiller en douceur. + Magazine + Musique + + + Tout public + + + + Duels en familles + Dans un décor d'appartement géant, deux familles de quatre membres viennent défendre les couleurs de leur région en s'affrontant chaque jour de la semaine, au cours de trois duels et une finale. Au programme : duels en images, duels en régions, duels de mots, duels en musique, duels en culture … Chaque jour, la famille victorieuse se qualifie pour la finale pour tenter de remporter 2000 €. Le vendredi, pour le dernier match de la semaine, c'est une grande finale à 5000 € qui attend les candidats. Quelle sera la famille et donc la région gagnante de la semaine ? + Divertissement + Jeu + + + Tout public + + + + Slam + Accessible à tous les publics, "Slam" est un jeu de lettres 1000riginal qui fait la joie des amoureux des mots, des férus de quiz et des adeptes des mots fléchés, en mixant tous les genres, de la géographie aux mathématiques, en passant par la chimie...et bien sûr le français. Au menu: vivacité d'esprit, humour, vocabulaire, orthographe et bien sûr culture générale! + Divertissement + Jeu + + + Tout public + + + + Questions pour un champion + Aucune description + Divertissement + Jeu + + + Tout public + + + + Shaun le mouton : Mossy Bottom Farm + Bale maze + Shaun, un mouton malicieux, vit dans une ferme en compagnie de ses amis ovins nettement moins malins que lui, mais toujours prêts à le suivre dans une nouvelle aventure. + Jeunesse + Dessins Animés + + 0 . 6 . + + Tout public + + + + Power Players + Percutants ! + Un garçon de neuf ans peut se transformer en jouet vivant et se doter de super pouvoirs. Accompagné des jouets Power Players, il combat les méchants. + Jeunesse + Dessins Animés + + 0 . 52 . + + Tout public + + + + Power Players + Un bruit dans la nuit + Un garçon de neuf ans peut se transformer en jouet vivant et se doter de super pouvoirs. Accompagné des jouets Power Players, il combat les méchants. + Jeunesse + Dessins Animés + + 0 . 53 . + + Tout public + + + + Power Players + Cherche ! + Un garçon de neuf ans peut se transformer en jouet vivant et se doter de super pouvoirs. Accompagné des jouets Power Players, il combat les méchants. + Jeunesse + Dessins Animés + + 0 . 54 . + + Tout public + + + + Power Players + Cassé + Un garçon de neuf ans peut se transformer en jouet vivant et se doter de super pouvoirs. Accompagné des jouets Power Players, il combat les méchants. + Jeunesse + Dessins Animés + + 1 . 4 . + + Tout public + + + + Shaun le mouton + Squirrelled Away + Shaun le mouton et sa troupe sont de retour pour de nouvelles aventures et catastrophes hilarantes, qu'il s'agit de réparer avant que le fermier s'en s'aperçoive ! Dans cette saison, le fermier tombe amoureux … Le spécial sera sur le thème de Noël. + Jeunesse + Dessins Animés + + 5 . 15 . + + Tout public + + + + Shaun le mouton + Space Bitzer + Shaun le mouton et sa troupe sont de retour pour de nouvelles aventures et catastrophes hilarantes, qu'il s'agit de réparer avant que le fermier s'en s'aperçoive ! Dans cette saison, le fermier tombe amoureux … Le spécial sera sur le thème de Noël. + Jeunesse + Dessins Animés + + 5 . 11 . + + Tout public + + + + Shaun le mouton + Get your Goat + Shaun le mouton et sa troupe sont de retour pour de nouvelles aventures et catastrophes hilarantes, qu'il s'agit de réparer avant que le fermier s'en s'aperçoive ! Dans cette saison, le fermier tombe amoureux … Le spécial sera sur le thème de Noël. + Jeunesse + Dessins Animés + + 5 . 1 . + + Tout public + + + + Shaun le mouton + Go Bitzer Go! + Shaun le mouton et sa troupe sont de retour pour de nouvelles aventures et catastrophes hilarantes, qu'il s'agit de réparer avant que le fermier s'en s'aperçoive ! Dans cette saison, le fermier tombe amoureux … Le spécial sera sur le thème de Noël. + Jeunesse + Dessins Animés + + 5 . 18 . + + Tout public + + + + Shaun le mouton + Porc primé + Shaun le mouton et sa troupe sont de retour pour de nouvelles aventures et catastrophes hilarantes, qu'il s'agit de réparer avant que le fermier s'en s'aperçoive ! Dans cette saison, le fermier tombe amoureux … Le spécial sera sur le thème de Noël. + Jeunesse + Dessins Animés + + 5 . 14 . + + Tout public + + + + Les lapins crétins : invasion + Les crétins contre le chaton infernal + Aucune description + Jeunesse + Dessins Animés + + 3 . 54 . + + Tout public + + + + Les lapins crétins : invasion + Le mariage de Draculapin + Aucune description + Jeunesse + Dessins Animés + + 3 . 57 . + + Tout public + + + + Les lapins crétins : invasion + Paquebot crétin + Aucune description + Jeunesse + Dessins Animés + + 3 . 62 . + + Tout public + + + + Les lapins crétins : invasion + Requin crétin + Aucune description + Jeunesse + Dessins Animés + + 3 . 64 . + + Tout public + + + + Les lapins crétins : invasion + Crétin de combat + Aucune description + Jeunesse + Dessins Animés + + 3 . 70 . + + Tout public + + + + Les lapins crétins : invasion + Pique-nique crétin + Aucune description + Jeunesse + Dessins Animés + + 3 . 7 . + + Tout public + + + + Looney Tunes Cartoons + Une tortue trop rapide + Looney Tunes Cartoons est une série de dessins animés s'inspirant des premiers courts métrages des Looney Tunes dont elle reprend les codes. + Jeunesse + Dessins Animés + + 0 . 19 . + + Tout public + + + + Looney Tunes Cartoons + Daffy dentiste + Looney Tunes Cartoons est une série de dessins animés s'inspirant des premiers courts métrages des Looney Tunes dont elle reprend les codes. + Jeunesse + Dessins Animés + + 0 . 19 . + + Tout public + + + + Looney Tunes Cartoons + Problème de puma + Looney Tunes Cartoons est une série de dessins animés s'inspirant des premiers courts métrages des Looney Tunes dont elle reprend les codes. + Jeunesse + Dessins Animés + + 0 . 21 . + + Tout public + + + + Looney Tunes Cartoons + La malédiction de l'oiseau-singe + Looney Tunes Cartoons est une série de dessins animés s'inspirant des premiers courts métrages des Looney Tunes dont elle reprend les codes. + Jeunesse + Dessins Animés + + 0 . 0 . + + Tout public + + + + Looney Tunes Cartoons + Bras d'enfer + Looney Tunes Cartoons est une série de dessins animés s'inspirant des premiers courts métrages des Looney Tunes dont elle reprend les codes. + Jeunesse + Dessins Animés + + 0 . 0 . + + Tout public + + + + Ô la belle vie + Gavarnie : le pyrénéisme en héritage + C'est dans les Hautes-Pyrénées, à Gavarnie, que nous retrouvons Sophie Jovillard, en compagnie de Céline Bonnal, professeure et autrice de plusieurs ouvrages dédiés aux guides pyrénéens. Nous avons rendez-vous sur le plateau de Saugué à 1610 m d'altitude. Un endroit accessible et idéal pour admirer le cirque de Gavarnie et les sommets environnants. Un lieu où l'esprit du pyrénéisme plane encore. + Magazine + Mag. Société + + 0 . 5 . + + Tout public + + + + Dans votre région + Des hommes et des femmes, issus de toutes les régions de France, partagent leurs expériences, leurs passions, et font découvrir leur mode de vie. + Documentaire + Doc. Société + + + Tout public + + + + Dans votre région, la suite + Des hommes et des femmes, issus de toutes les régions de France, partagent leurs expériences, leurs passions, et font découvrir leur mode de vie. + Magazine + Mag. Société + + + Tout public + + + + Consomag + Entre un devis et un bon de commande, quelles sont les différences ? + Le magazine de l'Institut national de la consommation donne à chacun des conseils pratiques pour mieux consommer. + Magazine + Mag. Service + + 0 . 0 . + + Tout public + + + + Outremer.le mag + Spéciale Polynésie + Aucune description + Magazine + Mag. Découverte + + 0 . 0 . + + Tout public + + + + Météo + Bulletin météorologique du service de presse de France 3-Météo France. + Info-Météo + Information + + + Tout public + + + + Outremer.l'info + Aucune description + Info-Météo + Information + + + Tout public + + + + Le journal des solutions + Aucune description + Info-Météo + Information + + + Tout public + + + + 12/13 : Météo régionale + Un aperçu des prévisions météorologiques concernant la région pour la journée et le lendemain. + Info-Météo + Information + + + Tout public + + + + ICI 12/13 - Edition toute région + Le rendez-vous de la mi-journée des 24 rédactions régionales de France Télévisions, avec les journaux locaux, les reportages propres à chaque région, mais aussi un regard de proximité sur l'actualité nationale et internationale. + Info-Météo + Information + + + Tout public + + + + Météo à la carte + Aucune description + Magazine + Mag. Découverte + + + Tout public + + + + Météo à la carte (la suite) + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Meurtres au paradis + Relooking extrême + Le corps de Valerie Dupree est retrouvé flottant dans la piscine d'une clinique esthétique située sur l'île de Sainte-Marie. Le docteur Anna Jones affirme aux enquêteurs que la victime présentait de fortes tendances suicidaires. Mais l'inspecteur Richard Poole pense plutôt à un empoisonnement... + Série + Série Suspense + + 1 . 2 . + + Tout public + + + + Meurtres au paradis + Le secret du pirate + Des chasseurs de trésor arrivent sur une île pour retrouver le magot du pirate Leclerc. Le chef de file du groupe, Daniel Morgan, se retrouve blessé au cours d'une explosion. Un autre membre, Ian, est tué dans la tente de Daniel. L'inspecteur Richard Poole pense que Daniel était la personne visée... + Série + Série Suspense + + 1 . 3 . + + Tout public + + + + La p'tite librairie + Pour tout vous dire, par Joan Didion + François Busnel propose chaque jour de vous faire découvrir ou redécouvrir une œuvre française ou étrangère : roman, essai, grand classique ou encore bande dessinée. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Duels en familles + Les Français connaissent-ils bien leurs régions ? Deux familles de quatre personnes s'opposent pour remporter des sommes pouvant atteindre plusieurs milliers d'euros. Elles devront trouver les réponses aux questions de Cyril Féraud sur des sujets concernant leurs régions respectives. + Divertissement + Jeu + + + Tout public + + + + Slam + Accessible à tous les publics, "Slam" est un jeu de lettres 1000riginal qui fait la joie des amoureux des mots, des férus de quiz et des adeptes des mots fléchés, en mixant tous les genres, de la géographie aux mathématiques, en passant par la chimie...et bien sûr le français. Au menu: vivacité d'esprit, humour, vocabulaire, orthographe et bien sûr culture générale! + Divertissement + Jeu + + + Tout public + + + + Questions pour un champion + Samuel Etienne anime ce jeu emblématique, qui voit chaque soir s'affronter quatre candidats autour de questions de culture générale. + Divertissement + Jeu + + + Tout public + + + + L'image du jour + Magazine sportif. + Magazine + Mag. Sport + + + Tout public + + + + ICI 19/20 - Titres + Les titres de l'information régionale du soir, qui seront développés dans les journaux locaux. + Info-Météo + Information + + + Tout public + + + + 19/20 : Météo régionale + Un aperçu des prévisions météorologiques qui devraient concerner la région pour les jours à venir. + Info-Météo + Information + + + Tout public + + + + ICI 19/20 - Edition locale + Aucune description + Info-Météo + Information + + + Tout public + + + + ICI 19/20 - Edition toute région + Le rendez-vous vespéral des 24 rédactions régionales de France Télévisions, avec les journaux locaux, les reportages propres à chaque région, mais aussi un regard de proximité sur l'actualité nationale et internationale. + Info-Météo + Information + + + Tout public + + + + Tout le sport + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Journal Météo climat + Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts. + Info-Météo + Information + + + Tout public + + + + Météo régionale + Un bulletin météorologique propre à chaque région. + Info-Météo + Information + + + Tout public + + + + Aux Jeux, citoyens ! + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Sophie Cross + Médaille d'or + Une jeune athlète très prometteuse est retrouvée morte dans un canal. L'équipe découvre qu'après un contrôle antidopage positif, la jeune femme a été retirée de la sélection pour les Jeux olympiques, et elle a fini par sombrer dans la dépression. La première piste des enquêteurs est donc un suicide... + Série + Série Suspense + + 1 . 1 . + + + -10 + + + + Meurtres à... + Meurtres à Granville + Ancienne médecin légiste et romancière à succès, Camille Fauvel rédige son nouveau roman lorsqu'une scène de crime se produit en contrebas de sa terrasse. Ce meurtre est très similaire à celui qu'elle était en train de rédiger. Arrivés sur place, les policiers découvrent sur la plage le cadavre d'un homme, supplicié selon les anciens rites vikings... + Série + Série Suspense + + 7 . 3 . + + + -10 + + + + Météo + Bulletin météorologique du service de presse de France 3-Météo France. + Info-Météo + Information + + + Tout public + + + + Le pitch cinéma + Les films de cinéma vus par ceux qui ne les ont pas vus. + Magazine + Mag. Cinéma + + + Tout public + + + + Libre court + Un autre regard sur le handicap + Courts métrages de fiction, courts documentaires et films d'animation sont au programme sur des thèmes singuliers et proches de chacun. + Magazine + Mag. Cinéma + + 0 . 0 . + + Tout public + + + + Silence + Bahar, neuf ans, a récemment perdu l'ouïe. En raison du manque de ressources dans le village, elle est exclue de l'école, ce qui la met au désespoir. + Film + Court Métrage + + + Tout public + + + + Électrique + Un homme amputé des deux jambes rêve de marcher à nouveau. Agacé par la motorisation permanente des piétons, il fait la course avec la pire représentante de cette mode : une trottinette électrique. + Film + Court Métrage + + + Tout public + + + + Brasse coulée + Maxime, une jeune femme, partage sa vie entre un petit boulot et la garde de son frère Gauthier, handicapé mental. Elle refuse le placement en institution. + Film + Court Métrage + + + Tout public + + + + Son visage + Claire et Simon attendent un heureux événement. Mais il n'est pas facile d'assumer ce choix ou le regard des autres quand on est non-voyant. + Film + Court Métrage + + + Tout public + + + + Charles Trenet l'enchanteur + Charles Trenet est mort en 2001. Vingt ans plus tard, ce documentaire propose un nouveau regard sur l'artiste, gamin de génie qui inventa la chanson française. + Documentaire + Doc. Musique + + + Tout public + + + + La p'tite librairie + Pour tout vous dire, par Joan Didion + François Busnel propose chaque jour de vous faire découvrir ou redécouvrir une œuvre française ou étrangère : roman, essai, grand classique ou encore bande dessinée. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Les matinales + Programme de musique classique pour se réveiller en douceur. + Magazine + Mag. Musique + + + Tout public + + + + Duels en familles + Les Français connaissent-ils bien leurs régions ? Deux familles de quatre personnes s'opposent pour remporter des sommes pouvant atteindre plusieurs milliers d'euros. Elles devront trouver les réponses aux questions de Cyril Féraud sur des sujets concernant leurs régions respectives. + Divertissement + Jeu + + + Tout public + + + + Slam + Accessible à tous les publics, "Slam" est un jeu de lettres 1000riginal qui fait la joie des amoureux des mots, des férus de quiz et des adeptes des mots fléchés, en mixant tous les genres, de la géographie aux mathématiques, en passant par la chimie...et bien sûr le français. Au menu: vivacité d'esprit, humour, vocabulaire, orthographe et bien sûr culture générale! + Divertissement + Jeu + + + Tout public + + + + Questions pour un champion + Samuel Etienne anime ce jeu emblématique, qui voit chaque soir s'affronter quatre candidats autour de questions de culture générale. + Divertissement + Jeu + + + Tout public + + + + Shaun le mouton : Mossy Bottom Farm + Babysitting Timmy + Shaun est chargé de garder Timmy lorsque sa mère sort faire des courses, mais en l'absence de celle-ci, les choses se compliquent... + Jeunesse + Dessins Animés + + 0 . 0 . + + Tout public + + + + Power Players + Quand ça gratte... + Un garçon de neuf ans peut se transformer en jouet vivant et se doter de super pouvoirs. Accompagné des jouets Power Players, il combat les méchants. + Jeunesse + Dessins Animés + + 0 . 56 . + + Tout public + + + + Power Players + Sergent Lacharge + Un garçon de neuf ans peut se transformer en jouet vivant et se doter de super pouvoirs. Accompagné des jouets Power Players, il combat les méchants. + Jeunesse + Dessins Animés + + 1 . 8 . + + Tout public + + + + Power Players + Qu'est-ce qui arrive à oncle André ? + Un garçon de neuf ans peut se transformer en jouet vivant et se doter de super pouvoirs. Accompagné des jouets Power Players, il combat les méchants. + Jeunesse + Dessins Animés + + 0 . 58 . + + Tout public + + + + Power Players + Sauver Madcap + Un garçon de neuf ans peut se transformer en jouet vivant et se doter de super pouvoirs. Accompagné des jouets Power Players, il combat les méchants. + Jeunesse + Dessins Animés + + 1 . 0 . + + Tout public + + + + Shaun le mouton + Pond Life + Shaun le mouton et sa troupe sont de retour pour de nouvelles aventures et catastrophes hilarantes, qu'il s'agit de réparer avant que le fermier s'en s'aperçoive ! Dans cette saison, le fermier tombe amoureux … Le spécial sera sur le thème de Noël. + Jeunesse + Dessins Animés + + 5 . 6 . + + Tout public + + + + Shaun le mouton + Hot to Trotter + Shaun, un mouton malicieux, vit dans une ferme en compagnie de ses amis ovins nettement moins malins que lui, mais toujours prêts à le suivre dans une nouvelle aventure. + Jeunesse + Dessins Animés + + 5 . 16 . + + Tout public + + + + Shaun le mouton + Room with a Ewe + Shaun le mouton et sa troupe sont de retour pour de nouvelles aventures et catastrophes hilarantes, qu'il s'agit de réparer avant que le fermier s'en s'aperçoive ! Dans cette saison, le fermier tombe amoureux … Le spécial sera sur le thème de Noël. + Jeunesse + Dessins Animés + + 5 . 0 . + + Tout public + + + + Shaun le mouton + Express Delivery + Shaun le mouton et sa troupe sont de retour pour de nouvelles aventures et catastrophes hilarantes, qu'il s'agit de réparer avant que le fermier s'en s'aperçoive ! Dans cette saison, le fermier tombe amoureux … Le spécial sera sur le thème de Noël. + Jeunesse + Dessins Animés + + 5 . 17 . + + Tout public + + + + Shaun le mouton + Sheep Sheep Goose + Shaun le mouton et sa troupe sont de retour pour de nouvelles aventures et catastrophes hilarantes, qu'il s'agit de réparer avant que le fermier s'en s'aperçoive ! Dans cette saison, le fermier tombe amoureux … Le spécial sera sur le thème de Noël. + Jeunesse + Dessins Animés + + 5 . 7 . + + Tout public + + + + Les lapins crétins : invasion + Crétin 000 contre le fils de Dark lapin + Aucune description + Jeunesse + Dessins Animés + + 3 . 68 . + + Tout public + + + + Les lapins crétins : invasion + L'attaque des mouches crétines + Aucune description + Jeunesse + Dessins Animés + + 3 . 67 . + + Tout public + + + + Les lapins crétins : invasion + Crétin des alpages + Aucune description + Jeunesse + Dessins Animés + + 3 . 66 . + + Tout public + + + + Les lapins crétins : invasion + Fermière crétine + La série se concentre sur les Lapins Crétins, des personnages inspirés de jeux vidéo, qui découvrent le monde qui les entoure. Leur mémoire et leur compréhension sont particulièrement limitées, ils se retrouvent alors systématiquement dans des enchaînements de situations saugrenues. + Jeunesse + Dessins Animés + + 3 . 60 . + + Tout public + + + + Les lapins crétins : invasion + Les trois mouscrétins + Aucune description + Jeunesse + Dessins Animés + + 3 . 71 . + + Tout public + + + + Les lapins crétins : invasion + Le crétin de la jungle + Aucune description + Jeunesse + Dessins Animés + + 3 . 9 . + + Tout public + + + + Looney Tunes Cartoons + Aux trousses du trousseau + Looney Tunes Cartoons est une série de dessins animés s'inspirant des premiers courts métrages des Looney Tunes dont elle reprend les codes. + Jeunesse + Dessins Animés + + 0 . 22 . + + Tout public + + + + Looney Tunes Cartoons + T'as bu la Taz ! + Looney Tunes Cartoons est une série de dessins animés s'inspirant des premiers courts métrages des Looney Tunes dont elle reprend les codes. + Jeunesse + Dessins Animés + + 0 . 22 . + + Tout public + + + + Looney Tunes Cartoons + Charlie et la belette + Looney Tunes Cartoons est une série de dessins animés s'inspirant des premiers courts métrages des Looney Tunes dont elle reprend les codes. + Jeunesse + Dessins Animés + + 0 . 23 . + + Tout public + + + + Looney Tunes Cartoons + Temps mort + Looney Tunes Cartoons est une série de dessins animés s'inspirant des premiers courts métrages des Looney Tunes dont elle reprend les codes. + Jeunesse + Dessins Animés + + 0 . 23 . + + Tout public + + + + Looney Tunes Cartoons + Un match monstrueux + Looney Tunes Cartoons est une série de dessins animés s'inspirant des premiers courts métrages des Looney Tunes dont elle reprend les codes. + Jeunesse + Dessins Animés + + 0 . 1 . + + Tout public + + + + Le temps d'un détour + Au lac de Vassivière avec David Livet + Aucune description + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Dans votre région + Des hommes et des femmes, issus de toutes les régions de France, partagent leurs expériences, leurs passions, et font découvrir leur mode de vie. + Documentaire + Doc. Société + + + Tout public + + + + Dans votre région, la suite + Des hommes et des femmes, issus de toutes les régions de France, partagent leurs expériences, leurs passions, et font découvrir leur mode de vie. + Magazine + Mag. Société + + + Tout public + + + + Consomag + Qu'est-ce que le dispositif "Oui pub" ? + Le magazine de l'Institut national de la consommation donne à chacun des conseils pratiques pour mieux consommer. + Magazine + Mag. Service + + 0 . 0 . + + Tout public + + + + Outremer.le mag + Spéciale Polynésie + Aucune description + Magazine + Mag. Découverte + + 0 . 0 . + + Tout public + + + + Météo + Bulletin météorologique du service de presse de France 3-Météo France. + Info-Météo + Information + + + Tout public + + + + Outremer.l'info + Aucune description + Info-Météo + Information + + + Tout public + + + + Le journal des solutions + Aucune description + Info-Météo + Information + + + Tout public + + + + 12/13 : Météo régionale + Un aperçu des prévisions météorologiques concernant la région pour la journée et le lendemain. + Info-Météo + Information + + + Tout public + + + + ICI 12/13 - Edition toute région + Le rendez-vous de la mi-journée des 24 rédactions régionales de France Télévisions, avec les journaux locaux, les reportages propres à chaque région, mais aussi un regard de proximité sur l'actualité nationale et internationale. + Info-Météo + Information + + + Tout public + + + + Météo à la carte + Aucune description + Magazine + Mag. Découverte + + + Tout public + + + + Météo à la carte (la suite) + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Meurtres au paradis + Escale fatale + Aimee, une chanteuse de talent et grande amie de Camille, fait un malaise en plein spectacle et meurt à bord d'un bateau appartenant à Stephen Morrison et sa femme Eloise. Très vite, les enquêteurs apprennent qu'elle a été empoisonnée. Aimee avait obtenu un contrat pour enregistrer un disque à Miami... + Série + Série Suspense + + 1 . 4 . + + Tout public + + + + Meurtres au paradis + Coup de soleil + Lorsqu'une touriste est découverte dans sa villa, étranglée avec sa propre écharpe, tout porte à croire qu'il s'agit d'un cambriolage meurtrier. Cependant, la scène rappelle à l'inspecteur Richard Poole une autre affaire dont il avait entendu parler à Londres. Il en vient à soupçonner le mari de la victime... + Série + Série Suspense + + 1 . 5 . + + + -10 + + + + La p'tite librairie + La vie mode d'emploi, par Georges Perec + François Busnel propose chaque jour de vous faire découvrir ou redécouvrir une œuvre française ou étrangère : roman, essai, grand classique ou encore bande dessinée. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Duels en familles + Les Français connaissent-ils bien leurs régions ? Deux familles de quatre personnes s'opposent pour remporter des sommes pouvant atteindre plusieurs milliers d'euros. Elles devront trouver les réponses aux questions de Cyril Féraud sur des sujets concernant leurs régions respectives. + Divertissement + Jeu + + + Tout public + + + + Slam + Accessible à tous les publics, "Slam" est un jeu de lettres 1000riginal qui fait la joie des amoureux des mots, des férus de quiz et des adeptes des mots fléchés, en mixant tous les genres, de la géographie aux mathématiques, en passant par la chimie...et bien sûr le français. Au menu: vivacité d'esprit, humour, vocabulaire, orthographe et bien sûr culture générale! + Divertissement + Jeu + + + Tout public + + + + Questions pour un champion + Samuel Etienne anime ce jeu emblématique, qui voit chaque soir s'affronter quatre candidats autour de questions de culture générale. + Divertissement + Jeu + + + Tout public + + + + L'image du jour + Magazine sportif. + Magazine + Mag. Sport + + + Tout public + + + + ICI 19/20 - Titres + Les titres de l'information régionale du soir, qui seront développés dans les journaux locaux. + Info-Météo + Information + + + Tout public + + + + 19/20 : Météo régionale + Un aperçu des prévisions météorologiques qui devraient concerner la région pour les jours à venir. + Info-Météo + Information + + + Tout public + + + + ICI 19/20 - Edition locale + Aucune description + Info-Météo + Information + + + Tout public + + + + ICI 19/20 - Edition toute région + Le rendez-vous vespéral des 24 rédactions régionales de France Télévisions, avec les journaux locaux, les reportages propres à chaque région, mais aussi un regard de proximité sur l'actualité nationale et internationale. + Info-Météo + Information + + + Tout public + + + + Tout le sport + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Journal Météo climat + Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts. + Info-Météo + Information + + + Tout public + + + + Météo régionale + Un bulletin météorologique propre à chaque région. + Info-Météo + Information + + + Tout public + + + + Aux Jeux, citoyens ! + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Alsace, dans la tourmente de l'histoire + L'Alsace peut se prévaloir d'un patrimoine sympathique et populaire. Mais derrière cette prospérité se révèle une histoire douloureuse et mal connue. + Documentaire + Doc. Histoire + + + Tout public + + + + Après la guerre, l'impossible oubli + La fin de la Première Guerre mondiale, le 11 novembre 1918, n'a fait que marquer le début d'une longue et difficile reconstruction d'un pays traumatisé. + Documentaire + Doc. Histoire + + + Tout public + + + + Dans l'oeil de l'occupant + Grâce à des films amateurs et à des milliers de lettres envoyées à des proches, la France sous l'Occupation est vue à travers le regard des soldats allemands. + Documentaire + Doc. Histoire + + + Tout public + + + + Journal d'une bonne : l'histoire de Félicité Lavergne + Une histoire de la domesticité dans la France du début du XXe siècle à travers le portrait d'une jeune Auvergnate qui devient bonne à tout faire en 1905. + Documentaire + Doc. Histoire + + + Tout public + + + + Michel Debré et La Réunion, dérives d'une ambition républicaine + Député de La Réunion pendant 25 ans, Michel Debré a fait de l'île un laboratoire de son utopie républicaine, au prix de certaines dérives et de destins brisés. + Documentaire + Doc. Histoire + + + Tout public + + + + La Grippe espagnole, la grande tueuse + En 1918, alors que la Grande Guerre laisse l'Europe exsangue, un ennemi frappe, sans visage ni drapeau. Une grippe virulente se répand sur les cinq continents. + Documentaire + Doc. Histoire + + + Tout public + + + + Stasi, un Etat contre son peuple + Grâce à des archives de la Stasi, les parcours d'hommes et de femmes épiés et fichés par la Stasi, la police politique est-allemande, sont reconstitués. + Documentaire + Doc. Histoire + + + Tout public + + + + Les matinales + Programme de musique classique pour se réveiller en douceur. + Magazine + Mag. Musique + + + Tout public + + + + Questions pour un champion + Samuel Etienne anime ce jeu emblématique, qui voit chaque soir s'affronter quatre candidats autour de questions de culture générale. + Divertissement + Jeu + + + Tout public + + + + Shaun le mouton : Mossy Bottom Farm + Down the Loo + Shaun, un mouton malicieux, vit dans une ferme en compagnie de ses amis ovins nettement moins malins que lui, mais toujours prêts à le suivre dans une nouvelle aventure. + Jeunesse + Dessins Animés + + 0 . 7 . + + Tout public + + + + Power Players + Les tout nouveaux tout beaux Power Players + Un garçon de neuf ans peut se transformer en jouet vivant et se doter de super pouvoirs. Accompagné des jouets Power Players, il combat les méchants. + Jeunesse + Dessins Animés + + 1 . 9 . + + Tout public + + + + Power Players + Pas de pot + Un garçon de neuf ans peut se transformer en jouet vivant et se doter de super pouvoirs. Accompagné des jouets Power Players, il combat les méchants. + Jeunesse + Dessins Animés + + 1 . 12 . + + Tout public + + + + Power Players + Triple jeu + Un garçon de neuf ans peut se transformer en jouet vivant et se doter de super pouvoirs. Accompagné des jouets Power Players, il combat les méchants. + Jeunesse + Dessins Animés + + 1 . 7 . + + Tout public + + + + Power Players + Opération de nuit + Un garçon de neuf ans peut se transformer en jouet vivant et se doter de super pouvoirs. Accompagné des jouets Power Players, il combat les méchants. + Jeunesse + Dessins Animés + + 1 . 10 . + + Tout public + + + + Shaun le mouton + Costume Drama + Shaun, un mouton malicieux, vit dans une ferme en compagnie de ses amis ovins nettement moins malins que lui, mais toujours prêts à le suivre dans une nouvelle aventure. + Jeunesse + Dessins Animés + + 5 . 13 . + + Tout public + + + + Shaun le mouton + Farm Park + Shaun le mouton et sa troupe sont de retour pour de nouvelles aventures et catastrophes hilarantes, qu'il s'agit de réparer avant que le fermier s'en s'aperçoive ! Dans cette saison, le fermier tombe amoureux … Le spécial sera sur le thème de Noël. + Jeunesse + Dessins Animés + + 5 . 9 . + + Tout public + + + + Shaun le mouton + Citrouille en danger + Shaun, un mouton malicieux, vit dans une ferme en compagnie de ses amis ovins nettement moins malins que lui, mais toujours prêts à le suivre dans une nouvelle aventure. + Jeunesse + Dessins Animés + + 5 . 5 . + + Tout public + + + + Shaun le mouton + Shaun le fermier + Un trou dans le toit de l'étable oblige les moutons à se réfugier dans la porcherie pour la nuit. Malheureusement, les cochons ne sont pas disposés à les accueillir... + Jeunesse + Dessins Animés + + 0 . 24 . + + Tout public + + + + Shaun le mouton + Foin à la ligne + C'est l'heure du bain pour Timmy. Cette perspective ne semble pas lui faire plaisir, au point qu'il préfère prendre la fuite. En cours de route, le petit mouton se retrouve avec un ressort attaché à la queue... + Jeunesse + Dessins Animés + + 1 . 1 . + + Tout public + + + + Les lapins crétins : invasion + Crétin coq et le poussin perdu + Aucune description + Jeunesse + Dessins Animés + + 3 . 74 . + + Tout public + + + + Les lapins crétins : invasion + Circus crétin + Bien décidé à se faire recruter par le tout nouveau cirque crétin, un lapin passe au déguisarium pour se déguiser en clown. Hélas, il est doublé par un autre lapin clown qui lui pique son numéro. Injustement évincé de la piste aux étoiles, le lapin va devoir se battre pour gagner sa place sur scène… + Jeunesse + Dessins Animés + + 3 . 69 . + + Tout public + + + + Les lapins crétins : invasion + Naufragé crétin + Aucune description + Jeunesse + Dessins Animés + + 3 . 72 . + + Tout public + + + + Les lapins crétins : invasion + Naufrage crétin + Aucune description + Jeunesse + Dessins Animés + + 3 . 73 . + + Tout public + + + + Les lapins crétins : invasion + Mad Lapin et l'astrolabe de Léonard + Aucune description + Jeunesse + Dessins Animés + + 3 . 75 . + + Tout public + + + + Les lapins crétins : invasion + Lapin princesse + Aucune description + Jeunesse + Dessins Animés + + 3 . 10 . + + Tout public + + + + Looney Tunes Cartoons + Un distributeur buté + Looney Tunes Cartoons est une série de dessins animés s'inspirant des premiers courts métrages des Looney Tunes dont elle reprend les codes. + Jeunesse + Dessins Animés + + 0 . 24 . + + Tout public + + + + Looney Tunes Cartoons + Daffy avocat + Looney Tunes Cartoons est une série de dessins animés s'inspirant des premiers courts métrages des Looney Tunes dont elle reprend les codes. + Jeunesse + Dessins Animés + + 0 . 25 . + + Tout public + + + + Looney Tunes Cartoons + Coyote Motard + Looney Tunes Cartoons est une série de dessins animés s'inspirant des premiers courts métrages des Looney Tunes dont elle reprend les codes. + Jeunesse + Dessins Animés + + 0 . 25 . + + Tout public + + + + Looney Tunes Cartoons + Mémé remonte sur le ring + Looney Tunes Cartoons est une série de dessins animés s'inspirant des premiers courts métrages des Looney Tunes dont elle reprend les codes. + Jeunesse + Dessins Animés + + 0 . 26 . + + Tout public + + + + Looney Tunes Cartoons + Bon apéti-ti + Looney Tunes Cartoons est une série de dessins animés s'inspirant des premiers courts métrages des Looney Tunes dont elle reprend les codes. + Jeunesse + Dessins Animés + + 0 . 2 . + + Tout public + + + + Looney Tunes Cartoons + Pneu mieux faire + Looney Tunes Cartoons est une série de dessins animés s'inspirant des premiers courts métrages des Looney Tunes dont elle reprend les codes. + Jeunesse + Dessins Animés + + 0 . 26 . + + Tout public + + + + Envie dehors ! + La Brière, le marais et ses mystères + Allez à la rencontre de ceux qui font bouger ce territoire et captez la beauté des lieux de notre région avec Julie Hattu ! Elle vous guide dans son aventure. Débrouillarde, chaque situation est pour elle l'occasion de participer à une activité, de se faire expliquer un métier, d'apprécier la beauté d'un paysage, de goûter le terroir d'une région et d'apprendre à chaque fois. + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Dans votre région + Des hommes et des femmes, issus de toutes les régions de France, partagent leurs expériences, leurs passions, et font découvrir leur mode de vie. + Documentaire + Doc. Société + + + Tout public + + + + Dans votre région, la suite + Des hommes et des femmes, issus de toutes les régions de France, partagent leurs expériences, leurs passions, et font découvrir leur mode de vie. + Magazine + Mag. Société + + + Tout public + + + + Consomag + Etiquette énergétique : les nouvelles obligations / interdictions pour les bailleurs + Le magazine de l'Institut national de la consommation donne à chacun des conseils pratiques pour mieux consommer. + Magazine + Mag. Service + + 0 . 0 . + + Tout public + + + + Outremer.le mag + Spéciale Polynésie + Aucune description + Magazine + Mag. Découverte + + 0 . 0 . + + Tout public + + + + Météo + Bulletin météorologique du service de presse de France 3-Météo France. + Info-Météo + Information + + + Tout public + + + + Outremer.l'info + Aucune description + Info-Météo + Information + + + Tout public + + + + Le journal des solutions + Aucune description + Info-Météo + Information + + + Tout public + + + + 12/13 : Météo régionale + Un aperçu des prévisions météorologiques concernant la région pour la journée et le lendemain. + Info-Météo + Information + + + Tout public + + + + ICI 12/13 - Edition toute région + Le rendez-vous de la mi-journée des 24 rédactions régionales de France Télévisions, avec les journaux locaux, les reportages propres à chaque région, mais aussi un regard de proximité sur l'actualité nationale et internationale. + Info-Météo + Information + + + Tout public + + + + Météo à la carte + Aucune description + Magazine + Mag. Découverte + + + Tout public + + + + Météo à la carte (la suite) + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Meurtres au paradis + Ouragan meurtrier + Alors qu'un ouragan menace Sainte-Marie et que tous ses habitants se calfeutrent, l'inspecteur Poole est appelé pour constater la mort d'un jeune météorologue. Le décor dans lequel il le trouve fait penser à la mise en scène d'un accident causé par la tempête. Poole, méfiant, tente d'en savoir plus... + Série + Série Suspense + + 1 . 6 . + + Tout public + + + + Meurtres au paradis + Charité bien ordonnée + Un coup de feu est tiré lors d'une réception à laquelle assiste Richard Poole, tuant son hôte sur le coup. Son assistante, Vicky, croit reconnaître le coupable... + Série + Série Suspense + + 1 . 7 . + + Tout public + + + + La p'tite librairie + Feuilles d'herbe, par Walt Whitman + François Busnel propose chaque jour de vous faire découvrir ou redécouvrir une œuvre française ou étrangère : roman, essai, grand classique ou encore bande dessinée. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Duels en familles + Les Français connaissent-ils bien leurs régions ? Deux familles de quatre personnes s'opposent pour remporter des sommes pouvant atteindre plusieurs milliers d'euros. Elles devront trouver les réponses aux questions de Cyril Féraud sur des sujets concernant leurs régions respectives. + Divertissement + Jeu + + + Tout public + + + + Slam + Accessible à tous les publics, "Slam" est un jeu de lettres 1000riginal qui fait la joie des amoureux des mots, des férus de quiz et des adeptes des mots fléchés, en mixant tous les genres, de la géographie aux mathématiques, en passant par la chimie...et bien sûr le français. Au menu: vivacité d'esprit, humour, vocabulaire, orthographe et bien sûr culture générale! + Divertissement + Jeu + + + Tout public + + + + Questions pour un champion + Samuel Etienne anime ce jeu emblématique, qui voit chaque soir s'affronter quatre candidats autour de questions de culture générale. + Divertissement + Jeu + + + Tout public + + + + L'image du jour + Magazine sportif. + Magazine + Mag. Sport + + + Tout public + + + + C'est bon à savoir + L'alimentation de bébé + "C'est bon à savoir" décrypte les bénéfices pour la santé de la consommation des fruits et légumes et analyse leur mode de culture, sans oublier de parler d'environnement. Avec la complicité d'experts, ce programme revient quelques idées reçues. + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + ICI 19/20 - Titres + Les titres de l'information régionale du soir, qui seront développés dans les journaux locaux. + Info-Météo + Information + + + Tout public + + + + 19/20 : Météo régionale + Un aperçu des prévisions météorologiques qui devraient concerner la région pour les jours à venir. + Info-Météo + Information + + + Tout public + + + + ICI 19/20 - Edition locale + Aucune description + Info-Météo + Information + + + Tout public + + + + ICI 19/20 - Edition toute région + Le rendez-vous vespéral des 24 rédactions régionales de France Télévisions, avec les journaux locaux, les reportages propres à chaque région, mais aussi un regard de proximité sur l'actualité nationale et internationale. + Info-Météo + Information + + + Tout public + + + + Tout le sport + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Journal Météo climat + Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts. + Info-Météo + Information + + + Tout public + + + + Météo régionale + Un bulletin météorologique propre à chaque région. + Info-Météo + Information + + + Tout public + + + + Aux Jeux, citoyens ! + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Coups de sang + Un policier dont la fille a été assassinée entre en conflit avec sa propre mère au sujet de l'identité du coupable. Ce violent désaccord permettra d'élucider un meurtre en réalité bien plus complexe qu'il n'y paraît. Et si cette tragédie ouvrait enfin la voie d'une possible réconciliation ? + Film + Film Suspense + + + + -10 + + + + Météo + Bulletin météorologique du service de presse de France 3-Météo France. + Info-Météo + Information + + + Tout public + + + + La France en vrai + Cette collection documentaire traite les grands sujets de société d'un point de vue local, à travers les 13 antennes régionales du réseau de France 3. + Documentaire + Doc. Société + + + Tout public + + + + La France en vrai + Cette collection documentaire traite les grands sujets de société d'un point de vue local, à travers les 13 antennes régionales du réseau de France 3. + Documentaire + Doc. Société + + + Tout public + + + + Le monde de Jamy + Santé, transports, climat : les animaux ont la solution ! + Aucune description + Documentaire + Doc. Sc. & Tech. + + 0 . 0 . + + Tout public + + + + La p'tite librairie + Feuilles d'herbe, par Walt Whitman + François Busnel propose chaque jour de vous faire découvrir ou redécouvrir une œuvre française ou étrangère : roman, essai, grand classique ou encore bande dessinée. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Les potagers de Julie + La charlotte du Val de Saône (pomme de terre) + Julie part à l'assaut de la pomme de terre, un légume que les Français adorent. Accompagnée de Lola, jeune maraîchère d'Ile-de-France, Julie découvre les joies de ce tubercule très productif. Elle prend aussi de la hauteur en découvrant les cultures étonnantes d'André Catherin, jardinier de l'Ain. Cet ancien professeur de mathématiques aime faire des expériences tous azimuts dans son potager. + Magazine + Mag. Société + + 0 . 4 . + + Tout public + + + + Les nouveaux nomades + La diversité des territoires est riche de belles surprises : des bords de la Méditerranée aux sommets alpins, de la Loire aux côtes atlantiques, des Pyrénées au coeur de la capitale, rencontre avec des passionnés de leur région. + Magazine + Mag. Société + + + Tout public + + + + Les matinales + Programme de musique classique pour se réveiller en douceur. + Magazine + Mag. Musique + + + Tout public + + + + Duels en familles + Les Français connaissent-ils bien leurs régions ? Deux familles de quatre personnes s'opposent pour remporter des sommes pouvant atteindre plusieurs milliers d'euros. Elles devront trouver les réponses aux questions de Cyril Féraud sur des sujets concernant leurs régions respectives. + Divertissement + Jeu + + + Tout public + + + + Slam + Accessible à tous les publics, "Slam" est un jeu de lettres 1000riginal qui fait la joie des amoureux des mots, des férus de quiz et des adeptes des mots fléchés, en mixant tous les genres, de la géographie aux mathématiques, en passant par la chimie...et bien sûr le français. Au menu: vivacité d'esprit, humour, vocabulaire, orthographe et bien sûr culture générale! + Divertissement + Jeu + + + Tout public + + + + Foot 2 rue + Enfermés ! + Monsieur Arnold, le nouveau directeur de l'Institut, a décidé d'instaurer un règlement intérieur beaucoup plus strict que celui en vigueur avec mademoiselle Adélaïde. + Jeunesse + Dessins Animés + + 3 . 13 . + + Tout public + + + + Foot 2 rue + L'adieu au mondial + Entre les tags qui prolifèrent sur les murs de la ville et les Psikopats qui sèment la pagaille partout, le maire menace d'interdire le foot de rue. + Jeunesse + Dessins Animés + + 3 . 14 . + + Tout public + + + + Foot 2 rue + Rendez-vous manqué + Assâad reçoit le message qu'il n'attendait plus : sa famille est retrouvée... + Jeunesse + Dessins Animés + + 3 . 15 . + + Tout public + + + + Foot 2 rue + 13/20 + Consigné car il n'a pas atteint 14 de moyenne, Jérémy utilise le passage souterrain pour participer à son match avec le FC Golmetti... + Jeunesse + Dessins Animés + + 3 . 16 . + + Tout public + + + + Coache-moi si tu peux + Mon ex-joueur préféré + Pour retrouver sa forme humaine, Erico Platana, grand footballeur, doit dégonfler son égo et aider Daniel, qui n'est pas très doué, à devenir un champion. + Jeunesse + Dessins Animés + + 0 . 0 . + + Tout public + + + + Coache-moi si tu peux + La rivale + Pour retrouver sa forme humaine, Erico Platana, grand footballeur, doit dégonfler son égo et aider Daniel, qui n'est pas très doué, à devenir un champion. + Jeunesse + Dessins Animés + + 0 . 1 . + + Tout public + + + + Un jour, une question + C'est quoi la politesse ? + A quoi ça sert ? Ça veut dire quoi ? C'est qui ? Pourquoi c'est comme ça ? Les questions des enfants trouvent quotidiennement une réponse. + Jeunesse + + 7 . 962 . + + Tout public + + + + Gigantosaurus + La poursuite en traîneau + Afin de sauver une libellule des mains des raptors, Mazu doit leur apporter une écaille de Gigantosaurus. Elle trouve plein de stratagèmes ingénieux pour prendre une écaille sur le dos de la bête, mais toutes ses tentatives échouent lamentablement... + Jeunesse + Dessins Animés + + 1 . 20 . + + Tout public + + + + Gigantosaurus + Dino-sitting + Quatre petits dinosaures, Rocky, Bill, Tiny et Mazu, découvrent un monde dans lequel rôde le mystérieux Gigantosaurus, le plus grand et le plus féroce de tous les dinosaures. + Jeunesse + Dessins Animés + + 1 . 20 . + + Tout public + + + + Gigantosaurus + Maître des éléments + Afin de sauver une libellule des mains des raptors, Mazu doit leur apporter une écaille de Gigantosaurus. Elle trouve plein de stratagèmes ingénieux pour prendre une écaille sur le dos de la bête, mais toutes ses tentatives échouent lamentablement... + Jeunesse + Dessins Animés + + 1 . 21 . + + Tout public + + + + Gigantosaurus + L'école pour Dinos de Crétacia + Quatre petits dinosaures, Rocky, Bill, Tiny et Mazu, découvrent un monde dans lequel rôde le mystérieux Gigantosaurus, le plus grand et le plus féroce de tous les dinosaures. + Jeunesse + Dessins Animés + + 1 . 21 . + + Tout public + + + + Gigantosaurus + Le pinceau de Tiny + Afin de sauver une libellule des mains des raptors, Mazu doit leur apporter une écaille de Gigantosaurus. Elle trouve plein de stratagèmes ingénieux pour prendre une écaille sur le dos de la bête, mais toutes ses tentatives échouent lamentablement... + Jeunesse + Dessins Animés + + 1 . 22 . + + Tout public + + + + Gigantosaurus + Et si ? + Aucune description + Jeunesse + Dessins Animés + + 1 . 22 . + + Tout public + + + + Gigantosaurus + Le nez de Bill + Masha adore faire des bêtises dont les conséquences cocasses retombent malheureusement sur son ami l'ours Michka. La patience de celui-ci est mise à rude épreuve. Il lui arrive de punir ou de s'éloigner de Masha quand elle est allée trop loin, mais la tendresse qui lie ces deux amis finit toujours par prendre le dessus. + Jeunesse + Dessins Animés + + 1 . 23 . + + Tout public + + + + Kiya et les héros de Kimoja + Les puces de Jenny + Aucune description + Jeunesse + Dessins Animés + + 0 . 8 . + + Tout public + + + + Kiya et les héros de Kimoja + Les reines des glaces ! + Lorsque Kiya et ses deux meilleurs amis, Jay et Motsie, enfilent leurs bandeaux ornés des mystiques cristaux de Kimoja, ils se transforment et peuvent exécuter des acrobaties. Ensemble, ils forment une équipe de super-héros connus sous le nom de Kimoja Heroes , prêts à protéger et rassembler leur communauté. + Jeunesse + Dessins Animés + + 0 . 9 . + + Tout public + + + + Kiya et les héros de Kimoja + Kiya reine des abeilles ! + Lorsque Jenny Cassetout crée un essaim de robots-abeilles pour alimenter son laboratoire, ces derniers emportent Kiya, la prenant pour leur nouvelle reine. Motsie se sent responsable de l'enlèvement de Kiya parce qu'elle était trop occupée à inventer son détecteur d'insectes au lieu de se concentrer sur sa mission. Motsie apprend à ne pas laisser ses propres besoins l'empêcher d'aider les autres. + Jeunesse + Dessins Animés + + 0 . 9 . + + Tout public + + + + Kiya et les héros de Kimoja + Le duel des inventrices + Lorsque Kiya et ses deux meilleurs amis, Jay et Motsie, enfilent leurs bandeaux ornés des mystiques cristaux de Kimoja, ils se transforment et peuvent exécuter des acrobaties. Ensemble, ils forment une équipe de super-héros connus sous le nom de Kimoja Heroes , prêts à protéger et rassembler leur communauté. + Jeunesse + Dessins Animés + + 0 . 14 . + + Tout public + + + + Les Pyjamasques + Hector et le copain d'étoile + Dotés de pouvoirs particuliers grâce à leurs pyjamas spéciaux, les Pyjamasques vivent la nuit des aventures extraordinaires au lieu de dormir dans leur lit. + Jeunesse + Dessins Animés + + 3 . 14 . + + Tout public + + + + Les Pyjamasques + Yoyo et le cristal de téléportation + Dotés de pouvoirs particuliers grâce à leurs pyjamas spéciaux, les Pyjamasques vivent la nuit des aventures extraordinaires au lieu de dormir dans leur lit. + Jeunesse + Dessins Animés + + 3 . 14 . + + Tout public + + + + Les Pyjamasques + Sorceline et l'aimant Lune perdu + Dotés de pouvoirs particuliers grâce à leurs pyjamas spéciaux, les Pyjamasques vivent la nuit des aventures extraordinaires au lieu de dormir dans leur lit. + Jeunesse + Dessins Animés + + 3 . 15 . + + Tout public + + + + Les Pyjamasques + Motsuki et les Papinuits géants + Dotés de pouvoirs particuliers grâce à leurs pyjamas spéciaux, les Pyjamasques vivent la nuit des aventures extraordinaires au lieu de dormir dans leur lit. + Jeunesse + Dessins Animés + + 3 . 15 . + + Tout public + + + + Les Pyjamasques + Tatouro'Tom et le Gorgolagon + Dotés de pouvoirs particuliers grâce à leurs pyjamas spéciaux, les Pyjamasques vivent la nuit des aventures extraordinaires au lieu de dormir dans leur lit. + Jeunesse + Dessins Animés + + 3 . 32 . + + Tout public + + + + Les Pyjamasques + Bibou et l'ennemi de Zoé Zap + Dotés de pouvoirs particuliers grâce à leurs pyjamas spéciaux, les Pyjamasques vivent la nuit des aventures extraordinaires au lieu de dormir dans leur lit. + Jeunesse + Dessins Animés + + 3 . 33 . + + Tout public + + + + Les as de la jungle à la rescousse + Abracadabra + Deux chauves-souris viennent demander de l'aide aux As car elles ont été évincées de leur grotte par un mandrill magicien. Elles demandent aux As de faire partir le mandrill et aussi de les héberger... + Jeunesse + Dessins Animés + + 1 . 7 . + + Tout public + + + + Les as de la jungle à la rescousse + A la poursuite de la papaye verte + Marla vient chercher les As, le moment est arrivé pour la délicieuse papaye verte "d'éclore", cela n'arrive qu'une fois tous les 100 ans, mais les mandrills sont au courant et ils vont essayer de la manger. Pour Marla, la botaniste, c'est un drame, il faut vite aller sauver cette espèce rare de la gloutonnerie des mandrills... + Jeunesse + Dessins Animés + + 1 . 8 . + + Tout public + + + + Les as de la jungle à la rescousse + Rien ne va plus + Les As sont appelés par des animaux qui disent s'être fait dépouillés de tous leurs fruits dans un casino tenu par des loutres. Ils racontent que ces loutres ne peuvent pas réussir ainsi sans être des tricheurs. Les As se rendent au casino pour en avoir le coeur net et constatent qu'il n'y a pas de tricheries... + Jeunesse + Dessins Animés + + 1 . 9 . + + Tout public + + + + Les as de la jungle à la rescousse + Catch ou pas catch + Les parents de Lola viennent chercher les As, Lola a fait une fugue. Elle est en fait partie à un concours de catch. Les As se rendent sur le lieu du concours, Junior va lui aussi participer au concours. El Popo, l'arbitre, fait tout pour faire gagner Kevin, son fils... + Jeunesse + Dessins Animés + + 1 . 10 . + + Tout public + + + + Les as de la jungle à la rescousse + Le règne des mammouths + Lucette, une petite taupe, vient chercher les As : son mari et elle sont tombés dans "une faille temporelle". Son mari a été enlevé par des mammouths, pendant leur voyage de noces. Evidemment Gilbert ne la croit pas. Les As se rendent sur place et découvrent des éléphants obligés à se déguiser en mammouths par Hannibal leur chef... + Jeunesse + Dessins Animés + + 1 . 11 . + + Tout public + + + + Idéfix et les Irréductibles + Fragrance gauloise + La production à grande échelle d'un parfum pour les légions romaines menace tout le gui de la région. Idéfix tente de dégoûter du parfum le général Labiénus. + Jeunesse + Dessins Animés + + 0 . 22 . + + Tout public + + + + Idéfix et les Irréductibles + L'affaire du collier + Suite à un quiproquo, Turbine se persuade que Lentix, un bandit de Lutèce, est son maître perdu de longue date. Le truand profite de l'affection de la chienne. + Jeunesse + Dessins Animés + + 0 . 23 . + + Tout public + + + + Idéfix et les Irréductibles + Fausses notes pour les Romains + Idéfix est très surpris de découvrir que Goudurix, le chanteur gaulois connu pour ses hymnes rebelles à Rome, est de retour à Lutèce et semble avoir retourné sa veste. + Jeunesse + Dessins Animés + + 0 . 24 . + + Tout public + + + + Idéfix et les Irréductibles + Furie au forum + Padgachix et Idéfix se fâchent, chacun reprochant à l'autre de ne pas assez l'écouter. Monalisa décide de prendre les choses en main et de se rendre sur le terrain. + Jeunesse + Dessins Animés + + 0 . 25 . + + Tout public + + + + Idéfix et les Irréductibles + Une Ibère dans la ville + Labienus a le coup de foudre pour Tortilla, la nièce ibère de Padgachix. Le général la ramène au palais où son fort tempérament n'est pas du goût de Monalisa. + Jeunesse + Dessins Animés + + 0 . 5 . + + Tout public + + + + Kid'z en forme + Les portions + "Kid'z en forme" propose de multiples conseils pour la bonne santé, destinés principalement aux jeunes téléspectateurs. + Jeunesse + + 0 . 0 . + + Tout public + + + + Un jour, une question + C'est quoi la politesse ? + A quoi ça sert ? Ça veut dire quoi ? C'est qui ? Pourquoi c'est comme ça ? Les questions des enfants trouvent quotidiennement une réponse. + Jeunesse + + 7 . 962 . + + Tout public + + + + Les Croods (Pré)histoires de famille + Le front du problème + Deux familles très différentes unissent leurs forces pour créer une nouvelle communauté, une coopérative d'hommes des cavernes dans la ferme la plus étonnante de la préhistoire. + Jeunesse + Dessins Animés + + 0 . 21 . + + Tout public + + + + Les Croods (Pré)histoires de famille + Grotte après grotte + Deux familles très différentes unissent leurs forces pour créer une nouvelle communauté, une coopérative d'hommes des cavernes dans la ferme la plus étonnante de la préhistoire. + Jeunesse + Dessins Animés + + 3 . 3 . + + Tout public + + + + Anatole Latuile + Powercut 3000 + Anatole Latuile, un écolier dissipé mais plein de ressources, dépense toute son énergie à s'attirer des ennuis. + Jeunesse + Dessins Animés + + 0 . 22 . + + Tout public + + + + Anatole Latuile + La grande illusion + Anatole Latuile, un écolier dissipé mais plein de ressources, dépense toute son énergie à s'attirer des ennuis. + Jeunesse + Dessins Animés + + 0 . 37 . + + Tout public + + + + Anatole Latuile + L'anniversaire d'Olympe + Anatole Latuile, un écolier dissipé mais plein de ressources, dépense toute son énergie à s'attirer des ennuis. + Jeunesse + Dessins Animés + + 0 . 23 . + + Tout public + + + + Anatole Latuile + Le départ + Anatole Latuile, un écolier dissipé mais plein de ressources, dépense toute son énergie à s'attirer des ennuis. + Jeunesse + Dessins Animés + + 0 . 50 . + + Tout public + + + + Un jour, une question + C'est quoi la politesse ? + A quoi ça sert ? Ça veut dire quoi ? C'est qui ? Pourquoi c'est comme ça ? Les questions des enfants trouvent quotidiennement une réponse. + Jeunesse + + 7 . 962 . + + Tout public + + + + Foot 2 rue + Un entraîneur pour les Bleus + Les Bleus ont de gros soucis : ils ne parviennent plus à retrouver leur esprit d'équipe légendaire. Ils décident de faire appel à un entraîneur pour les remettre sur le droit chemin. Mais ils ont beaucoup de mal à se plier aux propositions de leur nouvel entraîneur, un ancien joueur de foot professionnel, recommandé par Samira... + Jeunesse + Dessins Animés + + 2 . 16 . + + Tout public + + + + Foot 2 rue + Technik de drague + La jeune gardienne de but des Pharaons semble disposer d'un pouvoir étrange pour déstabiliser ses attaquants. Et voilà que Tek tombe amoureux d'elle. De malentendu en quiproquo, il en arrive à refuser de jouer le match... + Jeunesse + Dessins Animés + + 2 . 18 . + + Tout public + + + + Teen Titans Go ! + La fête du travail + Aujourd'hui c'est la fête du travail. Robin explique à ses amis que ce n'est pas seulement un long week-end férié mais que c'est une occasion pour célébrer le dur labeur. Ils décident d'aller à la plage mais leur chemin va être semé d'embûches... + Jeunesse + Dessins Animés + + 3 . 34 . + + Tout public + + + + Teen Titans Go ! + L'intelligence pizzaiolienne + Aujourd'hui, c'est jour de pizza hawaïenne. Robin croit faire plaisir à ses amis en leur apportant leur pizza préférée, mais ceux-ci en ont assez. La pizza hawaïenne ne leur fait plus envie. Il faut trouver une nouvelle recette de pizza, mais la tâche semble impossible. A moins de demander à une intelligence artificielle de s'en charger, ce qui n'est pas sans danger... + Jeunesse + Dessins Animés + + 3 . 35 . + + Tout public + + + + Teen Titans Go ! + La journée des métiers + Robin apprend à ses amis qu'aujourd'hui c'est la journée des métiers. Il leur explique que bientôt il devront quitter la tour et travailler pour subvenir à leur besoin. Ils ont tous des rêves pour leur avenir, il va donc choisir leur métier à leur place... + Jeunesse + Dessins Animés + + 3 . 36 . + + Tout public + + + + Teen Titans Go ! + Batsoirée, Gordon ! + Batman et le commissaire Gordon font une soirée pyjama. Il ne faut pas qu'ils se couchent trop tard, mais les deux amis n'en font qu'à leur tête : ils mangent devant la télé. Au programme, une émission culinaire présentée par Starfire, un épisode de "Robin et Robin" et les aventures de Christopher le nuage... + Jeunesse + Dessins Animés + + 3 . 37 . + + Tout public + + + + Teen Titans Go ! + L'académie + Robin est en colère car ses amis n'ont pas fait leurs tâches ménagères et la Tour est une véritable porcherie. Il tente de les ramener à la raison mais ils sont totalement absorbés par la 75e cérémonie de l'Académie qui dure des heures et qui diffusée à la télé. Cela lui donne une idée... + Jeunesse + Dessins Animés + + 3 . 38 . + + Tout public + + + + Teen Titans Go ! + Le trône squelettique + Robin emmène ses amis se détendre à un concert de jazz, mais il se trompe de jour et ils assistent à un concert de métal. Le choc des cultures est tel qu'il les ramène immédiatement à la tour. Mais, contre toute attente, le lendemain matin, il s'aperçoit qu'ils ont été séduit par le monde du métal. Il tente de les en dissuader, en leur expliquant que c'est dangereux... + Jeunesse + Dessins Animés + + 3 . 39 . + + Tout public + + + + Slugterra + Le blakk steel + Eli Shane et sa bande unissent leur force avec le clan des ombres afin d'arrêter le Blakk Steel, la machine dévastatrice... + Jeunesse + Dessins Animés + + 2 . 1 . + + Tout public + + + + Slugterra + La coupe de slugball + Eli Shane, accompagné de ses amis, vient en aide au "Roller" pour remporter la Coupe de Slugball. Ils découvrent des pièges sur le terrain... + Jeunesse + Dessins Animés + + 2 . 2 . + + Tout public + + + + Ninjago, le soulèvement des dragons + Mauvaises blagues + Après un cataclysme qui a changé leur monde pour toujours, anciens et nouveaux ninjas s'allient pour sauver les royaumes de la domination d'Impérium. + Jeunesse + Dessins Animés + + 0 . 12 . + + Tout public + + + + Ninjago, le soulèvement des dragons + Le dernier Djinn + Après un cataclysme qui a changé leur monde pour toujours, anciens et nouveaux ninjas s'allient pour sauver les royaumes de la domination d'Impérium. + Jeunesse + Dessins Animés + + 0 . 13 . + + Tout public + + + + DC Super Hero Girls + #JeSuisBatgirl + "Suivez la rencontre et les aventures de six jeunes filles au lycée de Metropolis : Barbara Gordon, Diana Prince, Zee Zatara, Jessica Cruz, Karen Beecher et Kara Danvers. Unies par un point commun, elles ont toutes une identité secrète et vont devoir composer avec pour devenir des super-héroïnes : Batgirl, Wonder Woman, Zatanna, Green Lantern, Bumble Bee et Supergirl." + Jeunesse + Dessins Animés + + 1 . 0 . + + Tout public + + + + DC Super Hero Girls + #JeSuisBatgirl + "Suivez la rencontre et les aventures de six jeunes filles au lycée de Metropolis : Barbara Gordon, Diana Prince, Zee Zatara, Jessica Cruz, Karen Beecher et Kara Danvers. Unies par un point commun, elles ont toutes une identité secrète et vont devoir composer avec pour devenir des super-héroïnes : Batgirl, Wonder Woman, Zatanna, Green Lantern, Bumble Bee et Supergirl." + Jeunesse + Dessins Animés + + 1 . 1 . + + Tout public + + + + DC Super Hero Girls + #DoubleKara + A Super Hero High, une école réservée aux super-héros, les célèbres super-héros de DC Comics sont venus pour apprendre à maîtriser leurs super-pouvoirs et assister à des cours personnalisés. + Jeunesse + Dessins Animés + + 1 . 2 . + + Tout public + + + + DC Super Hero Girls + #GarthÀLaClasse + A Super Hero High, une école réservée aux super-héros, les célèbres super-héros de DC Comics sont venus pour apprendre à maîtriser leurs super-pouvoirs et assister à des cours personnalisés. + Jeunesse + Dessins Animés + + 1 . 3 . + + Tout public + + + + DC Super Hero Girls + #LeChantDeLaSirène + A Super Hero High, une école réservée aux super-héros, les célèbres super-héros de DC Comics sont venus pour apprendre à maîtriser leurs super-pouvoirs et assister à des cours personnalisés. + Jeunesse + Dessins Animés + + 1 . 5 . + + Tout public + + + + DC Super Hero Girls + # Supergirlenpétard + A Super Hero High, une école réservée aux super-héros, les célèbres super-héros de DC Comics sont venus pour apprendre à maîtriser leurs super-pouvoirs et assister à des cours personnalisés. + Jeunesse + Dessins Animés + + 1 . 6 . + + Tout public + + + + Sortilèges à l'Opéra + Hors des sentiers battus + Cece s'adapte à sa vie à l'école tout en jonglant avec les ex... + Jeunesse + Série Jeunesse + + 0 . 4 . + + Tout public + + + + Sortilèges à l'Opéra + La nuit des sorcières + C'est Halloween, l'une des fêtes préférées de Cece ! Et acces... + Jeunesse + Série Jeunesse + + 0 . 5 . + + Tout public + + + + Léna, rêve d'étoile + Retrouvailles + Henri est de retour dans le présent et travaille dur pour aider Léna à retrouver ses souvenirs. Les élèves d'Armando sont en compétition avec ceux de Gabrielle pour une représentation de Casse-Noisette. + Jeunesse + Série Jeunesse + + 2 . 7 . + + Tout public + + + + Léna, rêve d'étoile + Soupçons + Nico soupçonne que Léna a retrouvé la mémoire, ce qui oblige Claudine et Léna à travailler ensemble pour sauver la situation. + Jeunesse + Série Jeunesse + + 2 . 8 . + + Tout public + + + + Chasseurs de légendes + Des crocodiles dans nos égouts ! + Wassim vient au secours d'un crocodile coincé dans les égouts. Ils sont nombreux à avoir trouvé refuge dans les canalisations souterraines des villes. Quels autres animaux exotiques peut-on trouver dans ces sous-sols ? Comment sont-ils arrivés ici ? Wassim est bien décidé à le savoir. + Jeunesse + Mag. Jeunesse + + 0 . 3 . + + Tout public + + + + Chasseurs de légendes + Des détecteurs d'urine dans les piscines ! + Ambre, Gavril, Shyrelle, Thibault et Wassim, cinq jeunes enquêteurs en herbe, partent à la chasse aux légendes. Sous la forme d'une enquête minutieuse, chaque émission raconte une légende, explique d'où elle vient et pourquoi elle est fausse, même si elle repose parfois sur une part de faits réels. + Jeunesse + Mag. Jeunesse + + 0 . 9 . + + Tout public + + + + Okoo-koo + Tuto : fabriquer un photophore + Manon, Bouba, Julia et Sam, quatre jeunes animateurs, divertissent les enfants avec une pointe de pédagogie. + Jeunesse + Mag. Jeunesse + + 0 . 0 . + + Tout public + + + + Consomag + Le magazine de l'Institut national de la consommation donne à chacun des conseils pratiques pour mieux consommer. + Magazine + Mag. Service + + + Tout public + + + + Beau geste + A la manière d'un grand magazine papier, BEAU GESTE est un mix entre des rencontres passionnantes. Des rencontres en fil rouge, menées par PIERRE LESCURE dans des lieux qui font sens. Des enquêtes sur les grandes thématiques sociétales et politiques qui traversent le cinéma et des véritables immersions au coeur du cinéma. + Magazine + Mag. Cinéma + + + Tout public + + + + Le pitch cinéma + Les films de cinéma vus par ceux qui ne les ont pas vus. + Magazine + Mag. Cinéma + + + Tout public + + + + Mais vous êtes fous + Un soir, la fille de Roman et Camille tombe gravement malade. A l'hôpital, des traces de cocaïne sont détectées dans son sang. Roman avoue à Camille qu'il se drogue depuis des années. Il est finalement arrêté par la police et pour ne pas perdre la garde de ses enfants, Camille doit se séparer de Roman... + Film + Film Passion + + + Tout public + + + + Fellini, confidences retrouvées + Un portrait intime de Federico Fellini, l'un des réalisateurs les plus récompensés de l'histoire du cinéma, l'un des plus libres et audacieux. + Documentaire + Doc. Culture + + + Tout public + + + + Jacques Tati, tombé de la Lune + Retour sur la vie artistique de Jacques Tati, de ses débuts dans le music-hall dans les années 30 au naufrage financier provoqué par le tournage de "Playtime". + Documentaire + Doc. Cinéma + + + Tout public + + + + Le pitch cinéma + Les films de cinéma vus par ceux qui ne les ont pas vus. + Magazine + Mag. Cinéma + + + Tout public + + + + Gérard Lanvin live au Magic Mirrors + Aucune description + Musique + Rock Pop + + + Tout public + + + + French Kiss Goes to Oulu + French Kiss a toujours rêvé d'être une rock star. Pour réaliser son rêve, il décide de concourir au championnat du monde de Air Guitar à Oulu, en Finlande. + Documentaire + Doc. Société + + + Tout public + + + + Last Train à la Halle Verrière + Aucune description + Musique + Rock Pop + + + Tout public + + + + Edvard Grieg : sonate pour violoncelle en la mineur op 36, allegro molto e marcato + Aucune description + Musique + Classic-Contemp + + + Tout public + + + + Beau geste + A la manière d'un grand magazine papier, BEAU GESTE est un mix entre des rencontres passionnantes. Des rencontres en fil rouge, menées par PIERRE LESCURE dans des lieux qui font sens. Des enquêtes sur les grandes thématiques sociétales et politiques qui traversent le cinéma et des véritables immersions au coeur du cinéma. + Magazine + Mag. Cinéma + + + Tout public + + + + Foot 2 rue + Retour à la case départ + Kani apprend que ses parents veulent vendre leur ferme pour revenir vivre auprès d'elle... + Jeunesse + Dessins Animés + + 3 . 17 . + + Tout public + + + + Foot 2 rue + Une nouvelle famille + Bianca a une mauvaise nouvelle, monsieur Arnold lui cherche une famille adoptive. + Jeunesse + Dessins Animés + + 3 . 18 . + + Tout public + + + + Foot 2 rue + La grande annonce + Franck trouve enfin le courage dannoncer à ses parents qu'il veut devenir gardien de foot professionnel. + Jeunesse + Dessins Animés + + 3 . 19 . + + Tout public + + + + Foot 2 rue + Le Grand Clash ! + Le FC Golmetti doit rencontrer les Princes du Rebond pour leur prochain match. Mais quand Jérémy découvre que Golmetti a, une nouvelle fois, acheté le match, il décide de claquer la porte. Jérémy garde l'honneur sauf, mais voit son rêve de mondial disparaitre. Tout ce qu'il lui reste à faire, c'est aider les Bleus pour leur prochain match contre les Bulldozers, une équipe qu'il connait bien. + Jeunesse + Dessins Animés + + 3 . 20 . + + Tout public + + + + Coache-moi si tu peux + Le ballon magique + Pour retrouver sa forme humaine, Erico Platana, grand footballeur, doit dégonfler son égo et aider Daniel, qui n'est pas très doué, à devenir un champion. + Jeunesse + Dessins Animés + + 0 . 2 . + + Tout public + + + + Coache-moi si tu peux + Canyon + Pour retrouver sa forme humaine, Erico Platana, grand footballeur, doit dégonfler son égo et aider Daniel, qui n'est pas très doué, à devenir un champion. + Jeunesse + Dessins Animés + + 0 . 3 . + + Tout public + + + + Un jour, une question + Pourquoi doit-on faire attention à ce qu'on mange ? + Dessins animés courts, quotidiens, ayant pour vocation d'expliquer aux enfants un sujet du moment, économique, politique ou social, en mêlant un ton pédagogique et un trait humoristique. + Jeunesse + + 1 . 23 . + + Tout public + + + + Gigantosaurus + Grand frère, grande soeur + Rocky trouve un oeuf perdu. Aucun intérêt pour lui, mais ses amis veulent retrouver ses parents. Rocky prend les choses en main, estimant que plus vite cet oeuf aura retrouvé sa famille, plus vite ils pourront retourner jouer... + Jeunesse + Dessins Animés + + 1 . 23 . + + Tout public + + + + Gigantosaurus + Un Giganto succès + Rocky trouve un oeuf perdu. Aucun intérêt pour lui, mais ses amis veulent retrouver ses parents. Rocky prend les choses en main, estimant que plus vite cet oeuf aura retrouvé sa famille, plus vite ils pourront retourner jouer... + Jeunesse + Dessins Animés + + 1 . 24 . + + Tout public + + + + Gigantosaurus + Le bâton dans la pierre + Quatre petits dinosaures, Rocky, Bill, Tiny et Mazu, découvrent un monde dans lequel rôde le mystérieux Gigantosaurus, le plus grand et le plus féroce de tous les dinosaures. + Jeunesse + Dessins Animés + + 1 . 24 . + + Tout public + + + + Gigantosaurus + Le Nouveau + Rocky trouve un oeuf perdu. Aucun intérêt pour lui, mais ses amis veulent retrouver ses parents. Rocky prend les choses en main, estimant que plus vite cet oeuf aura retrouvé sa famille, plus vite ils pourront retourner jouer... + Jeunesse + Dessins Animés + + 1 . 25 . + + Tout public + + + + Gigantosaurus + La Bataille des titans + Rocky trouve un oeuf perdu. Aucun intérêt pour lui, mais ses amis veulent retrouver ses parents. Rocky prend les choses en main, estimant que plus vite cet oeuf aura retrouvé sa famille, plus vite ils pourront retourner jouer... + Jeunesse + Dessins Animés + + 1 . 25 . + + Tout public + + + + Gigantosaurus + Le retour de Termy + Bill et Tiny s'amusent dans la Grotte qui Hurle, et n'écoutent pas les avertissements : ils sautent sur un champignon sans supervision. Celui-ci se casse, et bouche la source d'eau de Crétacia... + Jeunesse + Dessins Animés + + 1 . 0 . + + Tout public + + + + Gigantosaurus + Rocky, le roi des records + Bill et Tiny s'amusent dans la Grotte qui Hurle, et n'écoutent pas les avertissements : ils sautent sur un champignon sans supervision. Celui-ci se casse, et bouche la source d'eau de Crétacia... + Jeunesse + Dessins Animés + + 1 . 1 . + + Tout public + + + + Kiya et les héros de Kimoja + Un parfum d'anniversaire + Lorsque Kiya et ses deux meilleurs amis, Jay et Motsie, enfilent leurs bandeaux ornés des mystiques cristaux de Kimoja, ils se transforment et peuvent exécuter des acrobaties. Ensemble, ils forment une équipe de super-héros connus sous le nom de Kimoja Heroes , prêts à protéger et rassembler leur communauté. + Jeunesse + Dessins Animés + + 0 . 7 . + + Tout public + + + + Kiya et les héros de Kimoja + Soirée cinéma en famille + Lorsque Kiya et ses deux meilleurs amis, Jay et Motsie, enfilent leurs bandeaux ornés des mystiques cristaux de Kimoja, ils se transforment et peuvent exécuter des acrobaties. Ensemble, ils forment une équipe de super-héros connus sous le nom de Kimoja Heroes , prêts à protéger et rassembler leur communauté. + Jeunesse + Dessins Animés + + 0 . 7 . + + Tout public + + + + Kiya et les héros de Kimoja + Farce attaque + Lorsque Jay et Acrobrute sont tous deux inspirés par Fred le Farceur, un personnage farceur de bande dessinée, ils commencent à leur tour à faire des farces à la communauté de Kimoja. Lorsque Acrobrute va trop loin, Jay décide de se venger et de lui rendre la pareille, ce qui ne fait qu'empirer les choses pour la communauté. Jay apprend qu'il ne faut pas aller trop loin dans les farces. + Jeunesse + Dessins Animés + + 0 . 8 . + + Tout public + + + + Kiya et les héros de Kimoja + Kiya reine des abeilles ! + Lorsque Kiya et ses deux meilleurs amis, Jay et Motsie, enfilent leurs bandeaux ornés des mystiques cristaux de Kimoja, ils se transforment et peuvent exécuter des acrobaties. Ensemble, ils forment une équipe de super-héros connus sous le nom de Kimoja Heroes , prêts à protéger et rassembler leur communauté. + Jeunesse + Dessins Animés + + 0 . 9 . + + Tout public + + + + Ninjago, le soulèvement des dragons + On appelle ça la malédiction + Après un cataclysme qui a changé leur monde pour toujours, anciens et nouveaux ninjas s'allient pour sauver les royaumes de la domination d'Impérium. + Jeunesse + Dessins Animés + + 0 . 14 . + + Tout public + + + + Ninjago + La terre des égarés + Lorsqu'une sorcière serpent emprisonnée utilise le Parchemin du Spinjitzu Interdit depuis longtemps perdu pour libérer une armée ancestrale, les ninjas doivent se remettre en forme et protéger Ninjago. Durant le combat, un ninja est banni au mystérieux Royaume de Non-Retour et nos héros doivent s'embarquer dans une quête désespérée pour tirer leur ami des griffes du sinistre Empereur de Glace... + Jeunesse + Dessins Animés + + 14 . 15 . + + Tout public + + + + Les as de la jungle à la rescousse + La taupe secrète + Stanislas, un hamster, accompagné de deux éléphants, vient chercher les As : toutes les nuits le hamster se fait voler ses pastèques par la "taupe mystère", elle porte un masque et est toujours accompagné de Pétardo une hyène... + Jeunesse + Dessins Animés + + 1 . 12 . + + Tout public + + + + Les as de la jungle à la rescousse + Pour une poignée de cahouètes + Des bandits ont volé le jus de cactus de la ville. Le shérif ne faisant rien, deux marchands viennent chercher les As. Captain Cahouète, le shérif, veut faire croire que ce sont les As les voleurs... + Jeunesse + Dessins Animés + + 1 . 13 . + + Tout public + + + + Les as de la jungle à la rescousse + La horde sauvage + Trois marmottes terrifiées viennent demander de l'aide aux As : un énorme nuage de poussière a envahi leur village. En allant au village, les As découvrent qu'il s'agit d'une horde de lapins tous identiques et blancs, le chef les menace et leur propose même de les incorporer dans l'armée... + Jeunesse + Dessins Animés + + 1 . 14 . + + Tout public + + + + Les as de la jungle à la rescousse + La planète du singe + Tous les copains de Bruno le castor ont été enlevés par une armée de singe. Les As vont sur la plage et découvre une immense statue représentant un mandrill, Koro. Les As sont fait prisonniers par les singes, ils arrivent à s'en débarrasser en leur faisant boire une potion qui donne mal au ventre... + Jeunesse + Dessins Animés + + 1 . 16 . + + Tout public + + + + Les as de la jungle à la rescousse + Un tarsier en danger + Gilbert, une fois de plus dérangé par le bruit de ses collègues, décide de partir dans la Jungle. Le signal sonne, les As pensent que c'est Gilbert mais ils aperçoivent une montgolfière. A bord, Mélina a kidnappé le tarsier... + Jeunesse + Dessins Animés + + 1 . 17 . + + Tout public + + + + Les as de la jungle à la rescousse + La goyave ou la papaye + Les suricates ne veulent plus jouer au foot, ne veulent plus faire la cueillette, ne veulent plus bouger. Les As vont découvrir que les suricates sont victimes d'un méchant qui leur livre de faux fruits en échange d'objets, ils n'ont plus besoin de se bouger ou de faire la cueillette... + Jeunesse + Dessins Animés + + 1 . 18 . + + Tout public + + + + Les as de la jungle à la rescousse + Le festin de la jungle + Al va participer au grand concours de cuisine de la Jungle. Hector sera l'arbitre, mais il est aveugle et a besoin de l'aide des As pour surveiller les autres concurrents... + Jeunesse + Dessins Animés + + 1 . 19 . + + Tout public + + + + Les as de la jungle : en direct + Les sculptures + Miguel révèle ses talents artistiques... + Jeunesse + Dessins Animés + + 0 . 22 . + + Tout public + + + + SamSam + Le concours de papas + Petit héros cosmique de neuf ans, il vit avec ses parents super-héros comme lui sur la Samplanète. En recherche d'autonomie, SamSam va devoir grandir et se confronter à ses inquiétudes incarnées par les monstres comme Pipiolis et Exitators. + Jeunesse + Dessins Animés + + 2 . 0 . + + Tout public + + + + SamSam + Le téléportasam 3000 + Petit héros cosmique de neuf ans, il vit avec ses parents super-héros comme lui sur la Samplanète. En recherche d'autonomie, SamSam va devoir grandir et se confronter à ses inquiétudes incarnées par les monstres comme Pipiolis et Exitators. + Jeunesse + Dessins Animés + + 2 . 1 . + + Tout public + + + + SamSam + Si j'étais toi + Petit héros cosmique de neuf ans, il vit avec ses parents super-héros comme lui sur la Samplanète. En recherche d'autonomie, SamSam va devoir grandir et se confronter à ses inquiétudes incarnées par les monstres comme Pipiolis et Exitators. + Jeunesse + Dessins Animés + + 2 . 2 . + + Tout public + + + + SamSam + Samklaxon et supernounours + Petit héros cosmique de neuf ans, il vit avec ses parents super-héros comme lui sur la Samplanète. En recherche d'autonomie, SamSam va devoir grandir et se confronter à ses inquiétudes incarnées par les monstres comme Pipiolis et Exitators. + Jeunesse + Dessins Animés + + 2 . 3 . + + Tout public + + + + SamSam + Cap ou pas cap + Petit héros cosmique de neuf ans, il vit avec ses parents super-héros comme lui sur la Samplanète. En recherche d'autonomie, SamSam va devoir grandir et se confronter à ses inquiétudes incarnées par les monstres comme Pipiolis et Exitators. + Jeunesse + Dessins Animés + + 2 . 4 . + + Tout public + + + + Kid'z en forme + L'eau + Les conseils avisés des "Kid'z en Forme" à propos de l'eau, la boisson idéale de tous les instants. + Jeunesse + + 0 . 1 . + + Tout public + + + + Un jour, une question + Pourquoi doit-on faire attention à ce qu'on mange ? + Dessins animés courts, quotidiens, ayant pour vocation d'expliquer aux enfants un sujet du moment, économique, politique ou social, en mêlant un ton pédagogique et un trait humoristique. + Jeunesse + + 1 . 23 . + + Tout public + + + + Les Croods (Pré)histoires de famille + Un éclair de génie + Deux familles très différentes unissent leurs forces pour créer une nouvelle communauté, une coopérative d'hommes des cavernes dans la ferme la plus étonnante de la préhistoire. + Jeunesse + Dessins Animés + + 3 . 4 . + + Tout public + + + + Les Croods (Pré)histoires de famille + La voie du poing + Deux familles très différentes unissent leurs forces pour créer une nouvelle communauté, une coopérative d'hommes des cavernes dans la ferme la plus étonnante de la préhistoire. + Jeunesse + Dessins Animés + + 3 . 5 . + + Tout public + + + + Anatole Latuile + Les aventures de Pimpin + Anatole Latuile, un écolier dissipé mais plein de ressources, dépense toute son énergie à s'attirer des ennuis. + Jeunesse + Dessins Animés + + 0 . 11 . + + Tout public + + + + Anatole Latuile + Clash Morvox + Anatole Latuile, un écolier dissipé mais plein de ressources, dépense toute son énergie à s'attirer des ennuis. + Jeunesse + Dessins Animés + + 0 . 38 . + + Tout public + + + + Anatole Latuile + La nouvelle voisine + Les aventures d'Anatole Latuile, élève de CM1, et de son meilleur ami, Jason Bombix, toujours prêts à faire des bêtises et des blagues. + Jeunesse + Dessins Animés + + 0 . 35 . + + Tout public + + + + Un jour, une question + Pourquoi doit-on faire attention à ce qu'on mange ? + Dessins animés courts, quotidiens, ayant pour vocation d'expliquer aux enfants un sujet du moment, économique, politique ou social, en mêlant un ton pédagogique et un trait humoristique. + Jeunesse + + 1 . 23 . + + Tout public + + + + Okoo-koo + Fabriquer un mandala + Manon, Bouba, Julia et Sam, quatre jeunes animateurs, divertissent les enfants avec une pointe de pédagogie. + Jeunesse + Mag. Jeunesse + + 0 . 0 . + + Tout public + + + + Les extras curieux + Chameaux + A quoi sert la trompe de l'éléphant ? Comment se forment les glaciers ? Comment font les crabes pour respirer dans l'eau mais aussi hors de l'eau ? En 3 minutes chrono, Léo et Vinci, un duo d'extraterrestres très curieux répondent à toutes ces questions. + Jeunesse + Mag. Jeunesse + + 1 . 17 . + + Tout public + + + + Les extras curieux + Vol d'oiseaux + A quoi sert la trompe de l'éléphant ? Comment se forment les glaciers ? Comment font les crabes pour respirer dans l'eau mais aussi hors de l'eau ? En 3 minutes chrono, Léo et Vinci, un duo d'extraterrestres très curieux répondent à toutes ces questions. + Jeunesse + Mag. Jeunesse + + 1 . 7 . + + Tout public + + + + SamSam + Samsam + Petit héros cosmique de neuf ans, il vit avec ses parents super-héros comme lui sur la Samplanète. En recherche d'autonomie, SamSam va devoir grandir et se confronter à ses inquiétudes incarnées par les monstres comme Pipiolis et Exitators. + Jeunesse + Dessins Animés + + 0 . 0 . + + Tout public + + + + SamSam + Oui a tout + Petit héros cosmique de neuf ans, il vit avec ses parents super-héros comme lui sur la Samplanète. En recherche d'autonomie, SamSam va devoir grandir et se confronter à ses inquiétudes incarnées par les monstres comme Pipiolis et Exitators. + Jeunesse + Dessins Animés + + 2 . 5 . + + Tout public + + + + SamSam + Le tout petit ami + Petit héros cosmique de neuf ans, il vit avec ses parents super-héros comme lui sur la Samplanète. En recherche d'autonomie, SamSam va devoir grandir et se confronter à ses inquiétudes incarnées par les monstres comme Pipiolis et Exitators. + Jeunesse + Dessins Animés + + 2 . 7 . + + Tout public + + + + SamSam + La chaussette porte-bonne-humeur + Petit héros cosmique de neuf ans, il vit avec ses parents super-héros comme lui sur la Samplanète. En recherche d'autonomie, SamSam va devoir grandir et se confronter à ses inquiétudes incarnées par les monstres comme Pipiolis et Exitators. + Jeunesse + Dessins Animés + + 2 . 8 . + + Tout public + + + + SamSam + Les zizanos + Petit héros cosmique de neuf ans, il vit avec ses parents super-héros comme lui sur la Samplanète. En recherche d'autonomie, SamSam va devoir grandir et se confronter à ses inquiétudes incarnées par les monstres comme Pipiolis et Exitators. + Jeunesse + Dessins Animés + + 2 . 9 . + + Tout public + + + + SamSam + Le rayon glaçouilleur de temps + Petit héros cosmique de neuf ans, il vit avec ses parents super-héros comme lui sur la Samplanète. En recherche d'autonomie, SamSam va devoir grandir et se confronter à ses inquiétudes incarnées par les monstres comme Pipiolis et Exitators. + Jeunesse + Dessins Animés + + 2 . 10 . + + Tout public + + + + Les Croods (Pré)histoires de famille + Adieu monde crooel + Deux familles très différentes unissent leurs forces pour créer une nouvelle communauté, une coopérative d'hommes des cavernes dans la ferme la plus étonnante de la préhistoire. + Jeunesse + Dessins Animés + + 3 . 6 . + + Tout public + + + + Fort Boyard + Équipe CéKeDuBonheur + Une équipe dynamique et motivée se lance à l'assaut des épreuves de Fort Boyard dans le but de venir en aide à l'association "CéKeDuBonheur". "CéKeDuBonheur" améliore la qualité de vie des enfants et adolescents hospitalisés. Valérie Damidot, Juan Arbelaez, Keen'V, Guillaume Pley, Anthony Colette et Terence Telle devront faire preuve de courage et d'abnégation. + Divertissement + + 29 . 4 . + + Tout public + + + + Wakfu + Rubilaxia + A l'époque du Wakfu, au milieu du chaos engendré par Ogrest, Yugo, un enfant aux origines mystérieuses et doté de pouvoirs magiques, part à la recherche de sa vraie famille. Durant son périple, il sera aidé par des compagnons extravagants, bagarreurs mais toujours solidaires. + Jeunesse + Dessins Animés + + 1 . 1 . + + Tout public + + + + Wakfu + Remington Smisse + L'heure est grave : Rubilax se sert du corps de Tristepin pour conquérir le monde. Loin d'être perturbé, Remington Smisse ne se gêne pas pour pratiquer ses deux activités préférées : la chasse aux Shushus et l'esquive en douce. Pas question pour Evangelyne de le laisser filer... + Jeunesse + Dessins Animés + + 1 . 2 . + + Tout public + + + + Wakfu + Le retour de pinpin + Evangelyne a réussi à récupérer l'âme de Tristepin enfermée dans l'épée. C'est maintenant que les choses se compliquent : il faut trouver comment remettre Rubilax dans sa prison. Pendant ce temps Yugo, Ruel et Amalia sont toujours prisonniers du Shushu... + Jeunesse + Dessins Animés + + 1 . 3 . + + Tout public + + + + C'est toujours pas sorcier + Les crocodiles, alligators, c'est caïmaan pareil + Un magazine de vulgarisation scientifique destiné à tous les curieux, jeunes et moins jeunes. Depuis leur cabane Max, Cécile et Mathieu, à l'aide de maquettes, de l'avis de spécialistes et de travaux pratiques, se penchent sur un thème fascinant. + Magazine + Mag. Éducation + + 5 . 2 . + + Tout public + + + + C'est toujours pas sorcier + + Le braconnage et la survie des espèces de crocodiles + Un des trois scientifiques de l'émission se focalise sur un sujet durant quelques minutes. Le sujet traité dans l'épisode principal est abordé sous un autre angle. + Magazine + Mag. Éducation + + 0 . 0 . + + Tout public + + + + Consomag + A quoi sert une assurance garantie accidents de la vie + Le magazine de l'Institut national de la consommation donne à chacun des conseils pratiques pour mieux consommer. + Magazine + Mag. Service + + 0 . 0 . + + Tout public + + + + Culturebox l'émission + Best of 2 + Aucune description + Magazine + Mag. Musique + + 0 . 0 . + + Tout public + + + + 100 000 ans de beauté + Le sourire d'Eros + Aucune description + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Sélectionné + L'incroyable destin du nageur Alfred Nakache, incarné par Amir Haddad. Alfred Nakache fait partie de ces héros des temps modernes dont l'histoire est méconnue. Gamin de Constantine, toulousain d'adoption, il est le meilleur nageur français des années 1940. + Divertissement + Théâtre + + + Tout public + + + + Clara Haskil, Prélude et Fugue + Aucune description + Divertissement + Théâtre + + + Tout public + + + + Les Fables de La Fontaine + Le Dragon à plusieurs têtes et le Dragon à plusieurs queues par Julie Delarme + France télévisions souhaite célébrer dignement les 400 ans de Jean de La Fontaine, l'auteur que tous les enfants du monde francophone connaissent. Pour enregistrer l'intégrale des fables, 241, nous demandons aux artistes qui jouent dans nos fictions, nos pièces de théâtre, nos spectacles ou qui sont sur les plateaux des magazines de lire une fable. + Jeunesse + Série Jeunesse + + 0 . 0 . + + Tout public + + + + Dom Juan + Dom Juan a séduit Elvire puis, assouvi, l'abandonne pour courir de nouvelles aventures. Outragée, celle-ci le menace de la malédiction céleste. Mais Dom Juan n'en a cure. Il compte sur son fidèle Sganarelle pour l'aider dans son entreprise : séduire toutes les femmes qui croisent sa route... + Divertissement + Théâtre + + + Tout public + + + + Le Corsaire + Aucune description + Divertissement + Danse + + + Tout public + + + + Esprit d'Arménie : Akna Krunk + Aucune description + Musique + Du Monde + + + Tout public + + + + Culturebox l'émission + Best of 2 + Aucune description + Magazine + Mag. Musique + + 0 . 0 . + + Tout public + + + + Foot 2 rue + Remplacante de luxe + Pour remplacer Jérémy, le FC Golmetti a débauché Jessica des Double X. Celles-ci se retrouvent donc à 4... + Dessin animé + Jeunesse + + 3 . 21 . + + Tout public + + + + Foot 2 rue + Le rêve de Frank + En quart de finale, les Bleus affrontent les Double X avec leur nouvelle recrue, Paolo, un attaquant en formation à l'Olympique de Port-Marie... + Dessin animé + Jeunesse + + 3 . 22 . + + Tout public + + + + Foot 2 rue + Retrouvailles + Alors qu'ils s'entrainent pour leur demi-finale contre les Psykopats, les Bleus sont estomaqués : les parents d'Assâad et son petit frère, Elias sont là devant eux ! Petit garçon vif et attachant, Elias se lie d'amitié avec Steven. Mais Assâad interdit à son frère de le voir. Durant la demi-finale, Jack, le capitaine masqué des Psykopats, se montre très agressif, et blesse volontairement Assâad qui ne se relève pas... + Dessin animé + Jeunesse + + 3 . 23 . + + Tout public + + + + Foot 2 rue + Le remplaçant + Alors que les Bleus célèbrent leur place en finale, Assâd apprend qu'il doit partir avec sa famille la veille du match... + Dessin animé + Jeunesse + + 3 . 24 . + + Tout public + + + + Coache-moi si tu peux + La tasse brisée + Pour retrouver sa forme humaine, Erico Platana, grand footballeur, doit dégonfler son égo et aider Daniel, qui n'est pas très doué, à devenir un champion. + Série + Animation + + 0 . 4 . + + Tout public + + + + Coache-moi si tu peux + Chacun son Daniel + Pour retrouver sa forme humaine, Erico Platana, grand footballeur, doit dégonfler son égo et aider Daniel, qui n'est pas très doué, à devenir un champion. + Série + Animation + + 0 . 5 . + + Tout public + + + + Un jour, une question + A quoi ça sert ? Ça veut dire quoi ? C'est qui ? Pourquoi c'est comme ça ? Les questions des enfants trouvent quotidiennement une réponse. + Programme + Jeunesse + + + Tout public + + + + Oscar & Malika, toujours en retard + La Marionnette + Oscar et Malika rencontrent Garett, une marionnette magique qui adore faire des blagues pour amuser son public. Justement, il cherche un nouveau partenaire de jeu, et Oscar est ravi d'être choisi ! Mais grâce à Malika, il comprend que les blagues de Garett sont plus blessantes qu'amusantes. Vexée, la marionnette kidnappe Oscar pour le forcer à jouer dans son spectacle, et Malika se retrouve seule pour le sauver ! + Série + Animation + + 1 . 15 . + + Tout public + + + + Oscar & Malika, toujours en retard + La Mandragore + Alors qu'Oscar et Malika s'affairent dans le parc pour remplir l'herbier qu'ils doivent apporter à l'école, Oscar déterre par accident un bébé Mandragore. Elle s'enfuit dans le parc en poussant d'affreux cris... et ses pleurs sèment des ronces maléfiques sur son passage. Avec l'aide de Violette, nos héros doivent calmer le bébé végétal qui met leur patience à rude épreuve. + Série + Animation + + 1 . 16 . + + Tout public + + + + Oscar & Malika, toujours en retard + Les Vampires + Oscar et Malika rencontrent Winifred, un gentil vampire en voyage scolaire chez les humains. Mais sa camarade Harmonie a de mauvaises intentions, et bientôt, nos héros se retrouvent confrontés à une vraie vampire revenue des ténèbres ! Nos héros doivent la renvoyer d'où elle vient avec l'aide de leurs nouveaux amis. + Série + Animation + + 1 . 17 . + + Tout public + + + + Oscar & Malika, toujours en retard + La Sphinge + En découvrant un passage secret dans les ruines romaines de leur ville, Oscar et Malika rencontrent une sphinge qui leur propose de répondre à une série d'énigmes. A la clef : le trésor légendaire de l'empereur Maximus ! Mais alors que nos héros enchaînent les victoires, la créature leur met des bâtons dans les roues, menaçant même de les emprisonner pour toujours dans son monde d'énigmes ! + Série + Animation + + 1 . 18 . + + Tout public + + + + Oscar & Malika, toujours en retard + Le Pendule + Lors d'un spectacle de rue, Malika se prête au jeu d'un hypnotiseur, Marvo, sans savoir que celui-ci utilise un pendule très spécial. Ainsi, sans s'en rendre compte, Malika vole un diamant qu'elle remet ensuite à Marvo ! Mais quand nos héros retrouvent ce dernier, lui non plus ne se souvient plus de rien ! Désormais accusés de vol, Oscar et Malika doivent retrouver le diamant et surtout : le véritable coupable ! + Série + Animation + + 1 . 19 . + + Tout public + + + + Oscar & Malika, toujours en retard + La carpe géante + Oscar et Malika se font avaler par une carpe géante qui surgit du lac ! Dans le ventre du poisson, ils retrouvent Maxime Dermy, le trafiquant d'animaux. Nos héros décident de faire équipe avec lui pour se libérer... mais le trafiquant saura-t-il se montrer digne de leur confiance ? + Série + Animation + + 1 . 20 . + + Tout public + + + + Héros à moitié + Mo Tout-Puissant + Mo et Sam sont demi-frère et soeur. Ayant hérité ses superpouvoirs d'un aïeul superhéros, ils doivent se les partager : ce n'est qu'en se donnant la main qu'ils obtiennent le pouvoir complet. Et dans leur quotidien, ils vont en avoir besoin. + Série + Animation + + 0 . 43 . + + Tout public + + + + Héros à moitié + Coup de mou + Mo et Sam sont demi-frère et soeur. Ayant hérité ses superpouvoirs d'un aïeul superhéros, ils doivent se les partager : ce n'est qu'en se donnant la main qu'ils obtiennent le pouvoir complet. Et dans leur quotidien, ils vont en avoir besoin. + Série + Animation + + 0 . 44 . + + Tout public + + + + Héros à moitié + Bad bzzz + Mo et Sam sont demi-frère et soeur. Ayant hérité ses superpouvoirs d'un aïeul superhéros, ils doivent se les partager : ce n'est qu'en se donnant la main qu'ils obtiennent le pouvoir complet. Et dans leur quotidien, ils vont en avoir besoin. + Série + Animation + + 0 . 45 . + + Tout public + + + + Héros à moitié + Sam dans la toile + Mo et Sam sont demi-frère et soeur. Ayant hérité ses superpouvoirs d'un aïeul superhéros, ils doivent se les partager : ce n'est qu'en se donnant la main qu'ils obtiennent le pouvoir complet. Et dans leur quotidien, ils vont en avoir besoin. + Série + Animation + + 0 . 46 . + + Tout public + + + + Héros à moitié + Viiite + Mo et Sam sont demi-frère et soeur. Ayant hérité ses superpouvoirs d'un aïeul superhéros, ils doivent se les partager : ce n'est qu'en se donnant la main qu'ils obtiennent le pouvoir complet. Et dans leur quotidien, ils vont en avoir besoin. + Série + Animation + + 0 . 47 . + + Tout public + + + + Un jour, une question + A quoi ça sert ? Ça veut dire quoi ? C'est qui ? Pourquoi c'est comme ça ? Les questions des enfants trouvent quotidiennement une réponse. + Programme + Jeunesse + + + Tout public + + + + Grizzy et les lemmings + Lemming Fortune + À force de se disputer l'occupation de la maison du Ranger par tous les moyens, Grizzy et les Lemmings déclenchent des catastrophes qu'ils ne maitrisent pas toujours. Ils finissent par faire littéralement décoller la maison un jour où toute une cargaison de feux d'artifices est allumée de manière inopinée. La Ranger Station atterrit au milieu d'un fleuve qui l'entraine dans ses courants - mais pas question pour les passagers d'abandonner ce navire qui dérive désormais vers des territoires inconnus sur chacun des six continents. Grizzy et les Lemmings découvrent de nouvelles manières de tirer la couverture à eux et de se disputer des richesses locales inconnues. + Série + Animation + + 2 . 0 . + + Tout public + + + + Grizzy et les lemmings + Tough Medicine + Grizzy, gros ours placide et chapardeur, vit comme un roi dans la forêt canadienne, n'hésitant pas à s'approprier la cabane du garde forestier dès que celui-ci a le dos tourné. Seuls les lemmings, de petits mammifères idiots, lui contestent ses privilèges... + Série + Animation + + 2 . 1 . + + Tout public + + + + Grizzy et les lemmings + Domestic Shaolin + Grizzy, gros ours placide et chapardeur, vit comme un roi dans la forêt canadienne, n'hésitant pas à s'approprier la cabane du garde forestier dès que celui-ci a le dos tourné. Seuls les lemmings, de petits mammifères idiots, lui contestent ses privilèges... + Série + Animation + + 2 . 2 . + + Tout public + + + + Grizzy et les lemmings + Ennemis pacifiques + Grizzy, gros ours placide et chapardeur, vit comme un roi dans la forêt canadienne, n'hésitant pas à s'approprier la cabane du garde forestier dès que celui-ci a le dos tourné. Seuls les lemmings, de petits mammifères idiots, lui contestent ses privilèges... + Série + Animation + + 2 . 3 . + + Tout public + + + + Grizzy et les lemmings + The Legend of the Lemmings + Grizzy, gros ours placide et chapardeur, vit comme un roi dans la forêt canadienne, n'hésitant pas à s'approprier la cabane du garde forestier dès que celui-ci a le dos tourné. Seuls les lemmings, de petits mammifères idiots, lui contestent ses privilèges... + Série + Animation + + 2 . 4 . + + Tout public + + + + Grizzy et les lemmings + Cabane d'artifice + Grizzy, gros ours placide et chapardeur, vit comme un roi dans la forêt canadienne, n'hésitant pas à s'approprier la cabane du garde forestier dès que celui-ci a le dos tourné. Seuls les lemmings, de petits mammifères idiots, lui contestent ses privilèges... + Série + Animation + + 2 . 12 . + + Tout public + + + + Grizzy et les lemmings + Dragons & Bears + Grizzy, gros ours placide et chapardeur, vit comme un roi dans la forêt canadienne, n'hésitant pas à s'approprier la cabane du garde forestier dès que celui-ci a le dos tourné. Seuls les lemmings, de petits mammifères idiots, lui contestent ses privilèges... + Série + Animation + + 2 . 5 . + + Tout public + + + + Kid'z en forme + Le petit déjeuner + Les "Kid'z en Forme" donnent leur conseils avisés en matière de petit déjeuner, le repas le plus important de la journée. + Programme + Jeunesse + + 0 . 4 . + + Tout public + + + + Il était une fois... la vie + Le cœur + Le coeur, qui pèse en moyenne trois cents grammes, débite cinq litres de sang à la minute et près de deux cent millions durant une vie d'homme. Maître Globus entraîne Hémo et Globine dans les différentes cavités de ce muscle très impressionnant... + Dessin animé + Jeunesse + + 0 . 6 . + + Tout public + + + + Il était une fois... la vie + La respiration + Dans le corps humain, l'air fait un aller-retour entre le nez et les poumons. C'est là que less bulles d'air retrouvent les globules rouge, qui se chargent alors de les distribuer dans le corps humain... + Dessin animé + Jeunesse + + 0 . 7 . + + Tout public + + + + Un jour, une question + A quoi ça sert ? Ça veut dire quoi ? C'est qui ? Pourquoi c'est comme ça ? Les questions des enfants trouvent quotidiennement une réponse. + Programme + Jeunesse + + + Tout public + + + + Chouette, pas chouette + Le rose + Alors que Wawa le chihuahua porte fièrement son tee-shirt préféré dans la cour de récréation, Kiki l'aperçoit et se moque franchement de lui. ' C'est quoi ce tee-shirt rose ? '. Kiki est catégorique : le rose, ce n'est pas pour les garçons. C'est une couleur de fille et d'ailleurs c'est SA couleur préférée. Kiki va découvrir qu'il n'y a rien de plus énervant que quelqu'un qui décide quelle est votre couleur préférée. Et ce faisant, elle devra admettre que si Wawa aime le rose, c'est bien son droit ! + Série + Animation + + 0 . 0 . + + Tout public + + + + Disco Dragon + Le carrousel + Dulcimer est un village où habite au N°7 de la rue Tomatis un dragon, fou d'instruments et de musique, dont personne n'évoque d'ailleurs l'incongruité. Pour certains habitants du quartier Bellefontaine, ce voisin toujours de bonne humeur est même une aubaine qui ne refuse jamais d'occuper les enfants et de leur faire découvrir sa grande passion : la musique disco ! D'ailleurs tout le monde l'appelle Disco Dragon ! Et c'est le meilleur ami de Joe et Betty (7 ans tous les deux, meilleurs amis et voisins). Avant Disco Dragon, la vie était bien mais c'était la vie normale avec des paroles, maintenant grâce à lui, il y a paroles et musique et il y a aussi les missions ! + Série + Animation + + 0 . 0 . + + Tout public + + + + Disco Dragon + Le chien cracra + Dulcimer est un village où habite au N°7 de la rue Tomatis un dragon, fou d'instruments et de musique, dont personne n'évoque d'ailleurs l'incongruité. Pour certains habitants du quartier Bellefontaine, ce voisin toujours de bonne humeur est même une aubaine qui ne refuse jamais d'occuper les enfants et de leur faire découvrir sa grande passion : la musique disco ! D'ailleurs tout le monde l'appelle Disco Dragon ! Et c'est le meilleur ami de Joe et Betty (7 ans tous les deux, meilleurs amis et voisins). Avant Disco Dragon, la vie était bien mais c'était la vie normale avec des paroles, maintenant grâce à lui, il y a paroles et musique et il y a aussi les missions ! + Série + Animation + + 0 . 1 . + + Tout public + + + + Disco Dragon + Le fantôme + Dulcimer est un village où habite au N°7 de la rue Tomatis un dragon, fou d'instruments et de musique, dont personne n'évoque d'ailleurs l'incongruité. Pour certains habitants du quartier Bellefontaine, ce voisin toujours de bonne humeur est même une aubaine qui ne refuse jamais d'occuper les enfants et de leur faire découvrir sa grande passion : la musique disco ! D'ailleurs tout le monde l'appelle Disco Dragon ! Et c'est le meilleur ami de Joe et Betty (7 ans tous les deux, meilleurs amis et voisins). Avant Disco Dragon, la vie était bien mais c'était la vie normale avec des paroles, maintenant grâce à lui, il y a paroles et musique et il y a aussi les missions ! + Série + Animation + + 0 . 2 . + + Tout public + + + + Disco Dragon + L'as du roller + Dulcimer est un village où habite au N°7 de la rue Tomatis un dragon, fou d'instruments et de musique, dont personne n'évoque d'ailleurs l'incongruité. Pour certains habitants du quartier Bellefontaine, ce voisin toujours de bonne humeur est même une aubaine qui ne refuse jamais d'occuper les enfants et de leur faire découvrir sa grande passion : la musique disco ! D'ailleurs tout le monde l'appelle Disco Dragon ! Et c'est le meilleur ami de Joe et Betty (7 ans tous les deux, meilleurs amis et voisins). Avant Disco Dragon, la vie était bien mais c'était la vie normale avec des paroles, maintenant grâce à lui, il y a paroles et musique et il y a aussi les missions ! + Série + Animation + + 0 . 3 . + + Tout public + + + + Disco Dragon + Le grand petit réalisateur + Dulcimer est un village où habite au N°7 de la rue Tomatis un dragon, fou d'instruments et de musique, dont personne n'évoque d'ailleurs l'incongruité. Pour certains habitants du quartier Bellefontaine, ce voisin toujours de bonne humeur est même une aubaine qui ne refuse jamais d'occuper les enfants et de leur faire découvrir sa grande passion : la musique disco ! D'ailleurs tout le monde l'appelle Disco Dragon ! Et c'est le meilleur ami de Joe et Betty (7 ans tous les deux, meilleurs amis et voisins). Avant Disco Dragon, la vie était bien mais c'était la vie normale avec des paroles, maintenant grâce à lui, il y a paroles et musique et il y a aussi les missions ! + Série + Animation + + 0 . 4 . + + Tout public + + + + Kid'z en forme + La consommation de céréales complètes + Les conseils avisés des "Kid'z en Forme" à propos des céréales complètes, un aliment bon pour la santé. + Programme + Jeunesse + + 0 . 5 . + + Tout public + + + + Un jour, une question + A quoi ça sert ? Ça veut dire quoi ? C'est qui ? Pourquoi c'est comme ça ? Les questions des enfants trouvent quotidiennement une réponse. + Programme + Jeunesse + + + Tout public + + + + Idéfix et les Irréductibles + Labienus tu m'auras pas ! + Goudurix, jeune chanteur gaulois rebelle à l'occupation romaine, est de passage à Lutèce. Les Romains veulent l'arrêter, mais les Irréductibles veillent. + Série + Animation + + 0 . 1 . + + Tout public + + + + Idéfix et les Irréductibles + La baballe de Chevrotine + Nos héros récupèrent la balle de Chevrotine, la chienne du grand chef gaulois vaincu à Lutèce. Ignorant la valeur historique de ce précieux objet, Turbine l'emmène dehors pour jouer et se la fait voler par la légion canine ! Monalisa en hérite et ne la lâche plus. Idéfix et ses copains vont devoir s'introduire dans le palais de la Louve, de nuit, pour reprendre la précieuse baballe. + Série + Animation + + 0 . 12 . + + Tout public + + + + Idéfix et les Irréductibles + Une affaire corsée + Les fromages corses sont interdits à Lutèce par les Romains. Et le fier fromager corse qui refuse de se laisser faire se retrouve emprisonné. Idéfix et ses amis vont faire équipe avec le chien du fromager corse pour sauver son maître. + Série + Animation + + 0 . 2 . + + Tout public + + + + Idéfix et les Irréductibles + Turbine encrassée + Lors d'une course-poursuite à très grande vitesse, Turbine se prend un tas de charbon. Elle se retrouve avec le poil noirci et une toux inextinguible. Pour la ménager, Idéfix ne veut plus monter sur le dos de son amie. Inquiète et vexée, Turbine se tourne vers Voldenuix et ses potions imprévisibles pour arrêter de tousser. + Série + Animation + + 0 . 3 . + + Tout public + + + + Anatole Latuile + Fort Braillard + Anatole Latuile, un écolier dissipé mais plein de ressources, dépense toute son énergie à s'attirer des ennuis. + Série + Animation + + 1 . 0 . + + Tout public + + + + Anatole Latuile + En route vers Morvox + Anatole Latuile, un écolier dissipé mais plein de ressources, dépense toute son énergie à s'attirer des ennuis. + Série + Animation + + 1 . 1 . + + Tout public + + + + Anatole Latuile + Ciboulette a disparu + Anatole Latuile, un écolier dissipé mais plein de ressources, dépense toute son énergie à s'attirer des ennuis. + Série + Animation + + 1 . 2 . + + Tout public + + + + Anatole Latuile + La soirée contes + Anatole Latuile, un écolier dissipé mais plein de ressources, dépense toute son énergie à s'attirer des ennuis. + Série + Animation + + 1 . 3 . + + Tout public + + + + Un jour, une question + A quoi ça sert ? Ça veut dire quoi ? C'est qui ? Pourquoi c'est comme ça ? Les questions des enfants trouvent quotidiennement une réponse. + Programme + Jeunesse + + + Tout public + + + + Les extras curieux + Ours blanc + A quoi sert la trompe de l'éléphant ? Comment se forment les glaciers ? Comment font les crabes pour respirer dans l'eau mais aussi hors de l'eau ? En 3 minutes chrono, Léo et Vinci, un duo d'extraterrestres très curieux répondent à toutes ces questions. + Magazine + Jeunesse + + 1 . 1 . + + Tout public + + + + Les extras curieux + Dinosaures + A quoi sert la trompe de l'éléphant ? Comment se forment les glaciers ? Comment font les crabes pour respirer dans l'eau mais aussi hors de l'eau ? En 3 minutes chrono, Léo et Vinci, un duo d'extraterrestres très curieux répondent à toutes ces questions. + Magazine + Jeunesse + + 0 . 26 . + + Tout public + + + + Les Pyjamasques + Les Pyjamasques et le retour de Ti'Ninja + Dotés de pouvoirs particuliers grâce à leurs pyjamas spéciaux, les Pyjamasques vivent la nuit des aventures extraordinaires au lieu de dormir dans leur lit. + Série + Animation + + 3 . 17 . + + Tout public + + + + Les Pyjamasques + Pyja-robot et le Farfe-Robot + Amis, voisins, et acolytes dans leurs aventures Sacha, Amaya et Greg revêtent leur costumes de super héros le soir venu pour devenir Yoyo, Bibou et Gluglu et faire régner la justice face à leurs ennemis jurés: Roméo le génie de la technologie, Sorceline la petite sorcière lunaire et Ninjaka l'insaisissable ninja. + Série + Animation + + 3 . 17 . + + Tout public + + + + Les Pyjamasques + Tatourotom et le vase brisé + Dotés de pouvoirs particuliers grâce à leurs pyjamas spéciaux, les Pyjamasques vivent la nuit des aventures extraordinaires au lieu de dormir dans leur lit. + Série + Animation + + 3 . 18 . + + Tout public + + + + Scooby-Doo : tous en piste *2012 + Les membres de Mystères Associés prennent des vacances biens méritées à Atlantic City. Sur place, ils enquêtent sur la disparition d'artistes de cirque qui semblent être la cible de loups-garous. Mais comme toujours, Fred et ses amis font rapidement le lien avec une affaire bien plus prosaïque : un vol de pierres précieuses... + Téléfilm + Animation + + + Tout public + + + + Bienvenue chez les mouches + Une amie à manger + Louis et Abacus veulent faire une partie de leur jeu préféré mais ils ne trouvent pas de place confortable, calme et tranquille, malgré avoir tout essayé. + Série + Animation + + 0 . 15 . + + Tout public + + + + L'armure de Jade + Que le spectacle continue + Jade est une super héroïne de légende. Et c'est maintenant à Lan Jun de porter son armure. Dur à croire que c'est à son tour d'endosser la célèbre armure pour combattre le mal. + Série + Animation + + 0 . 10 . + + Tout public + + + + L'armure de Jade + Le chaton + Les aventures et mésaventure du petit monde d'Elmore. Les objets de la vie quotidienne de la famille Watterson sous les feux des projecteurs. + Série + Animation + + 0 . 11 . + + Tout public + + + + Mystery Lane + L'invincible adversaire + Aucune description + Série + Animation + + 0 . 8 . + + Tout public + + + + Okoo-koo + Manon, Bouba, Julia et Sam, quatre jeunes animateurs, divertissent les enfants avec une pointe de pédagogie. + Magazine + Jeunesse + + + Tout public + + + + Mystery Lane + La vengeance du loup-garou + Aucune description + Série + Animation + + 0 . 12 . + + Tout public + + + + Angelo la débrouille + Les dossiers d'Angelo + Quand on a onze ans, la vie n'est pas tous les jours facile, surtout pour le pauvre Angelo, avec son petit frère qui lui empoisonne l'existence, sa grande soeur qui le traite comme un gamin, ses parents au temps libre agité. Mais Angelo a des dons d'anthropologue et a fait de l'étude des comportements son arme fatale pour se faire une place dans ce monde sans pitié... + Série + Animation + + 4 . 27 . + + Tout public + + + + Okoo-koo + Manon, Bouba, Julia et Sam, quatre jeunes animateurs, divertissent les enfants avec une pointe de pédagogie. + Magazine + Jeunesse + + + Tout public + + + + Angelo la débrouille + La ruée vers l'or + Quand on a onze ans, la vie n'est pas tous les jours facile, surtout pour le pauvre Angelo, avec son petit frère qui lui empoisonne l'existence, sa grande soeur qui le traite comme un gamin, ses parents au temps libre agité. Mais Angelo a des dons d'anthropologue et a fait de l'étude des comportements son arme fatale pour se faire une place dans ce monde sans pitié... + Série + Animation + + 4 . 28 . + + Tout public + + + + Les as de la jungle à la rescousse + Une journée avec les As + La jungle n'est pas toujours un endroit paisible. Les animaux qui la peuplent en savent quelque chose. Maurice, un manchot tigré, Batricia, une chauve-souris, Miguel, un gorille ou encore Gilbert, un tarsier, sont là pour assurer la sécurité de leurs amis. Pour les appeler, il suffit de tirer un signal d'alarme qui envoie de petits nuages de fumée au sommet d'un volcan. Une fois leur plan d'action établi, les As de la jungle interviennent au plus vite. Produit par une société toulousaine, un dessin animé inventif destiné au jeune public. + Série + Animation + + 2 . 48 . + + Tout public + + + + Les as de la jungle à la rescousse + Vieux pour vendetta + La jungle n'est pas toujours un endroit paisible. Les animaux qui la peuplent en savent quelque chose. Maurice, un manchot tigré, Batricia, une chauve-souris, Miguel, un gorille ou encore Gilbert, un tarsier, sont là pour assurer la sécurité de leurs amis. Pour les appeler, il suffit de tirer un signal d'alarme qui envoie de petits nuages de fumée au sommet d'un volcan. Une fois leur plan d'action établi, les As de la jungle interviennent au plus vite. Produit par une société toulousaine, un dessin animé inventif destiné au jeune public. + Série + Animation + + 2 . 50 . + + Tout public + + + + Les as de la jungle à la rescousse + Pirates des cahouètes + La jungle n'est pas toujours un endroit paisible. Les animaux qui la peuplent en savent quelque chose. Maurice, un manchot tigré, Batricia, une chauve-souris, Miguel, un gorille ou encore Gilbert, un tarsier, sont là pour assurer la sécurité de leurs amis. Pour les appeler, il suffit de tirer un signal d'alarme qui envoie de petits nuages de fumée au sommet d'un volcan. Une fois leur plan d'action établi, les As de la jungle interviennent au plus vite. Produit par une société toulousaine, un dessin animé inventif destiné au jeune public. + Série + Animation + + 2 . 49 . + + Tout public + + + + Okoo-koo + Manon, Bouba, Julia et Sam, quatre jeunes animateurs, divertissent les enfants avec une pointe de pédagogie. + Magazine + Jeunesse + + + Tout public + + + + Les as de la jungle à la rescousse + Attrape mon gâteau si tu peux + La jungle n'est pas toujours un endroit paisible. Les animaux qui la peuplent en savent quelque chose. Maurice, un manchot tigré, Batricia, une chauve-souris, Miguel, un gorille ou encore Gilbert, un tarsier, sont là pour assurer la sécurité de leurs amis. Pour les appeler, il suffit de tirer un signal d'alarme qui envoie de petits nuages de fumée au sommet d'un volcan. Une fois leur plan d'action établi, les As de la jungle interviennent au plus vite. Produit par une société toulousaine, un dessin animé inventif destiné au jeune public. + Série + Animation + + 2 . 51 . + + Tout public + + + + Ninjago *2019 + Changement de cap + Un an après le sacrifice de Nya, les ninjas se retrouvent pour enquêter sur une opération de contrebande de Pierre Venge. + Série + Animation + + 13 . 0 . + + Tout public + + + + Ninjago *2019 + L'appel du cœur + Après avoir sauvé un marin de la noyade, Nya rencontre une autre élémentaire d'eau et élabore un plan pour retrouver son humanité. + Série + Animation + + 13 . 1 . + + Tout public + + + + Dragons : les neuf royaumes + Les dragons zombies + Les dragons ne sont plus rien d'autre qu'une légende. Un jour, une fissure lézarde la surface de la terre. Des scientifiques s'en vont l'étudier. Mais des enfants les ont devancés et découvre là des dragons qui se cachent. Ils décident de les protéger, et de maintenir coûte que coûte leur existence secrète. + Série + Animation + + 1 . 2 . + + Tout public + + + + Dragons : les neuf royaumes + Le déluge + Aucune description + Série + Animation + + 1 . 3 . + + Tout public + + + + Organisation super insolite + Qu'est-ce qu'on s'éclate! + Les jeunes agents Olive, Otto et le reste de l'équipe travaillent pour la Super Unusual Organization (OSI) qui enquête sur tout ce qui est étrange, bizarre, mais surtout inhabituel. Leur travail est de remettre les choses en ordre. L'équipe se servent des gadgets les plus avancés et la série se concentrent sur la collaboration, la pensée critique et la résolution de problèmes. Grâce aux mathématiques et à la science ils portent des jugements pour résoudre les défis auxquels ils sont confrontés. + Série + Jeunesse + + 1 . 15 . + + Tout public + + + + Organisation super insolite + Pris en sandwich + Les jeunes agents Olive, Otto et le reste de l'équipe travaillent pour la Super Unusual Organization (OSI) qui enquête sur tout ce qui est étrange, bizarre, mais surtout inhabituel. Leur travail est de remettre les choses en ordre. L'équipe se servent des gadgets les plus avancés et la série se concentrent sur la collaboration, la pensée critique et la résolution de problèmes. Grâce aux mathématiques et à la science ils portent des jugements pour résoudre les défis auxquels ils sont confrontés. + Série + Jeunesse + + 1 . 31 . + + Tout public + + + + Consomag + Que faire en cas d'arnaque au faux conseiller ? + Le magazine de l'Institut national de la consommation donne à chacun des conseils pratiques pour mieux consommer. + Art de vivre + Consommation + + + Tout public + + + + Culturebox l'émission + "Culturebox l'émission", c'est l'émission dédiée à la culture, au spectacle vivant et aux artistes, présentée par Daphné Bürki et Raphäl Yem. + Magazine + Musique + + 0 . 20 . + + Tout public + + + + Ultra Vomit + Reprendre Calogero, "La Chenille" et "Bouba le petit ourson" façon métal, il fallait oser : Ultra Vomit l'a fait. Même s'ils sont là avant tout pour s'amuser, force est de constater que le quatuor nantais possède une véritable maîtrise technique, qui n'avait rien à envier aux autres formations invitées lors de ce Hellfest 2019. + Spectacle + Concert + + + Tout public + + + + Hellfest 2019 : Mass Hysteria + Mass Hysteria + Mouss et ses acolytes sévissent dans le milieu métal depuis plus de vingt ans. Une carrière bercée au son du nü-metal et de l'indus, qui vaut à Mass Hysteria une place à part dans le coeur des metalheads français. Ce gros capital sympathie est alimenté par la vision humaniste du groupe : pour les Parisiens, la musique rassemble et porte un message, comme le montrait leur show lors du Hellfest 2019. + Spectacle + Pop & Rock + + + Tout public + + + + Idles en concert à l'Elysée-Montmartre + Le quintet Idles revient à Paris pour un concert ravageur à l'Elysée-Montmartre. L'heure est à l'introspection et à la réflexion avec "Crawler", quatrième album du groupe originaire de Bristol. Idles propose une expérience thérapeutique où la joie viendrait toujours à bout des traumatismes. Si Idles ne se revendique d'aucun genre musical, il invite cependant le public à s'emparer de sa musique et à se l'approprier. + Spectacle + Pop & Rock + + + Tout public + + + + Le pitch cinéma + Les films de cinéma vus par ceux qui ne les ont pas vus. + Culture + Cinéma + + 2 . 0 . + + Tout public + + + + Trop jeune pour mourir + Kurt Cobain + Le 5 avril 1994, Kurt Cobain, 27 ans, se tire une balle dans la tête dans sa maison de Seattle. Icône du grunge, le leader de Nirvana luttait contre un showbiz aseptisé et une musique de plus en plus asservie aux lois du marché. Niels Negendank a rencontré ses compagnons de route, ses amis et ses proches, qui évoquent la jeunesse et le parcours d'un garçon épris d'art, mais aussi obsédé par la mort. Des extraits de son journal racontent sans fard une jeunesse morne à Aberdeen, petite bourgade de l'Etat de Washington, et la blessure causée par le divorce de ses parents. Mis à la porte par sa mère, il a vécu dans la rue quelque temps et a connu la pauvreté la plus grande partie de sa vie. + Documentaire + Culture + + 0 . 0 . + + Tout public + + + + Tribute to Jimi Hendrix + Quatre musiciens honorent la mémoire du légendaire Jimi Hendrix (1942-1970), guitariste et personnalité hors-norme à la carrière trop courte : Steve Morse, guitariste du groupe de hard rock Deep Purple ; Steve Vai, "guitar hero" des années 80-90 ; Uli Jon Roth, guitariste des Scorpions ; et Eric Sardinas, fan inconditionnel de blues des années 1920-30. + Divertissement + Variétés + + + Tout public + + + + Le Paname Comedy Club + Pendant une heure, une dizaine de comédiens et comédiennes présenteront des passages de 5 minutes et livreront en filigrane une radiographie comique de la France d'aujourd'hui. De nombreux humoristes sont attendus dans ce numéro du Paname Comedy Club : Mathieu Madenian lui-même, Tareek, Ayoub Marceau, Mahaut, Ahmed Sparrow, Samy Bel, Avril, Yassine Daoudi, Solene Rossignol et Djamel Kaibou. + Programme + Divertissement + + 0 . 8 . + + + -10 + + + + Moonwalk + Rencontre avec Rilès + Rilès raconte son incroyable histoire à Oumar : sa vision de l'art, son choix de chanter en anglais, ses clips, ses parents, sa philosophie de vie, charbonner, Seb la Frite, ses inspirations, Call me maybe, rester positif. + Magazine + Culture + + 2 . 0 . + + Tout public + + + + Culturebox l'émission + "Culturebox l'émission", c'est l'émission dédiée à la culture, au spectacle vivant et aux artistes, présentée par Daphné Bürki et Raphäl Yem. + Magazine + Musique + + 0 . 20 . + + Tout public + + + + Foot 2 rue + Les bleus en finale ! + Les Bleus n'ont qu'une idée en tête : battre le FC Golmetti et se qualifier pour le Mondial de foot de rue ! + Jeunesse + Dessins Animés + + 3 . 25 . + + Tout public + + + + Coache-moi si tu peux + Le dégonfleur + Pour retrouver sa forme humaine, Erico Platana, grand footballeur, doit dégonfler son égo et aider Daniel, qui n'est pas très doué, à devenir un champion. + Jeunesse + Dessins Animés + + 0 . 7 . + + Tout public + + + + Coache-moi si tu peux + Le Noël de Platana + Pour retrouver sa forme humaine, Erico Platana, grand footballeur, doit dégonfler son égo et aider Daniel, qui n'est pas très doué, à devenir un champion. + Jeunesse + Dessins Animés + + 0 . 7 . + + Tout public + + + + Coache-moi si tu peux + Monsieur ballon + Pour retrouver sa forme humaine, Erico Platana, grand footballeur, doit dégonfler son égo et aider Daniel, qui n'est pas très doué, à devenir un champion. + Jeunesse + Dessins Animés + + 0 . 8 . + + Tout public + + + + Coache-moi si tu peux + Le secret de Daniel + Pour retrouver sa forme humaine, Erico Platana, grand footballeur, doit dégonfler son égo et aider Daniel, qui n'est pas très doué, à devenir un champion. + Jeunesse + Dessins Animés + + 0 . 9 . + + Tout public + + + + Coache-moi si tu peux + Les crampons de la gloire + Pour retrouver sa forme humaine, Erico Platana, grand footballeur, doit dégonfler son égo et aider Daniel, qui n'est pas très doué, à devenir un champion. + Jeunesse + Dessins Animés + + 0 . 10 . + + Tout public + + + + Coache-moi si tu peux + Le bandit à sa maman + Pour retrouver sa forme humaine, Erico Platana, grand footballeur, doit dégonfler son égo et aider Daniel, qui n'est pas très doué, à devenir un champion. + Jeunesse + Dessins Animés + + 0 . 11 . + + Tout public + + + + Coache-moi si tu peux + La main + Pour retrouver sa forme humaine, Erico Platana, grand footballeur, doit dégonfler son égo et aider Daniel, qui n'est pas très doué, à devenir un champion. + Jeunesse + Dessins Animés + + 0 . 12 . + + Tout public + + + + Coache-moi si tu peux + Mon coach, ma maman + Panda remporte un concours sur Internet dont la récompense est une visite exclusive du QG du géant de l'Internet et des technologies du futur : Googs. Il emmène avec lui ses deux frères, qui vont déclencher par leur comportement irresponsable un véritable désastre. + Jeunesse + Dessins Animés + + 0 . 13 . + + Tout public + + + + Un jour, une question + C'est quoi l'antisémitisme? + A quoi ça sert ? Ça veut dire quoi ? C'est qui ? Pourquoi c'est comme ça ? Les questions des enfants trouvent quotidiennement une réponse. + Jeunesse + + 4 . 700 . + + Tout public + + + + Oscar & Malika toujours en retard + La robe de mariée + Sur le chemin de l'école, Oscar et Malika tombent sur une robe de mariée magique, capable de donner vie à d'autres vêtements. Elle jette son dévolu sur le nouveau nœud papillon d'Oscar... et embarque Oscar lui-même dans sa course folle ! Aidée par Chloé la jeune sorcière, Malika doit libérer son ami et capturer la robe avant qu'elle ne dépouille tous les habitants de leurs garde-robes. + Jeunesse + Dessins Animés + + 1 . 21 . + + Tout public + + + + Oscar & Malika toujours en retard + L'esprit du foyer + Tous les matins, Oscar et sa voisine Malika font ensemble le chemin jusqu'à l'école. Tous les matins, en dépit de leurs efforts, ils arrivent en retard à cause d'un événement extraordinaire. + Jeunesse + Dessins Animés + + 1 . 22 . + + Tout public + + + + Oscar & Malika toujours en retard + Le grand Pili-Pala + Tous les matins, Oscar et sa voisine Malika font ensemble le chemin jusqu'à l'école. Tous les matins, en dépit de leurs efforts, ils arrivent en retard à cause d'un événement extraordinaire. + Jeunesse + Dessins Animés + + 1 . 23 . + + Tout public + + + + Oscar & Malika toujours en retard + La récré sans fin + Tous les matins, Oscar et sa voisine Malika font ensemble le chemin jusqu'à l'école. Tous les matins, en dépit de leurs efforts, ils arrivent en retard à cause d'un événement extraordinaire. + Jeunesse + Dessins Animés + + 1 . 24 . + + Tout public + + + + Oscar & Malika toujours en retard + L'agent poulet + Tous les matins, Oscar et sa voisine Malika font ensemble le chemin jusqu'à l'école. Tous les matins, en dépit de leurs efforts, ils arrivent en retard à cause d'un événement extraordinaire. + Jeunesse + Dessins Animés + + 1 . 25 . + + Tout public + + + + Oscar & Malika toujours en retard + Le kitsune + Aucune description + Jeunesse + Dessins Animés + + 1 . 26 . + + Tout public + + + + Héros à moitié + Y'a plus de saison + Mo et Sam sont demi-frère et soeur. Ayant hérité ses superpouvoirs d'un aïeul superhéros, ils doivent se les partager : ce n'est qu'en se donnant la main qu'ils obtiennent le pouvoir complet. Et dans leur quotidien, ils vont en avoir besoin. + Jeunesse + Dessins Animés + + 0 . 48 . + + Tout public + + + + Héros à moitié + Une chance sur deux + Mo et Sam sont demi-frère et soeur. Ayant hérité ses superpouvoirs d'un aïeul superhéros, ils doivent se les partager : ce n'est qu'en se donnant la main qu'ils obtiennent le pouvoir complet. Et dans leur quotidien, ils vont en avoir besoin. + Jeunesse + Dessins Animés + + 0 . 49 . + + Tout public + + + + Héros à moitié + Tapettor le magnifique + Aucune description + Jeunesse + Dessins Animés + + 0 . 50 . + + Tout public + + + + Héros à moitié + Tapettor le magnifique + Mo et Sam sont demi-frère et soeur. Ayant hérité ses superpouvoirs d'un aïeul superhéros, ils doivent se les partager : ce n'est qu'en se donnant la main qu'ils obtiennent le pouvoir complet. Et dans leur quotidien, ils vont en avoir besoin. + Jeunesse + Dessins Animés + + 0 . 51 . + + Tout public + + + + Héros à moitié + Entrez dans la danse + Mo et Sam sont demi-frère et soeur. Ayant hérité ses superpouvoirs d'un aïeul superhéros, ils doivent se les partager : ce n'est qu'en se donnant la main qu'ils obtiennent le pouvoir complet. Et dans leur quotidien, ils vont en avoir besoin. + Jeunesse + Dessins Animés + + 0 . 0 . + + Tout public + + + + Un jour, une question + C'est quoi l'antisémitisme? + A quoi ça sert ? Ça veut dire quoi ? C'est qui ? Pourquoi c'est comme ça ? Les questions des enfants trouvent quotidiennement une réponse. + Jeunesse + + 4 . 700 . + + Tout public + + + + Grizzy et les lemmings + Bamboo Warfare + Grizzy, gros ours placide et chapardeur, vit comme un roi dans la forêt canadienne, n'hésitant pas à s'approprier la cabane du garde forestier dès que celui-ci a le dos tourné. Seuls les lemmings, de petits mammifères idiots, lui contestent ses privilèges... + Jeunesse + Dessins Animés + + 2 . 6 . + + Tout public + + + + Grizzy et les lemmings + Bear In the Clouds + Grizzy, gros ours placide et chapardeur, vit comme un roi dans la forêt canadienne, n'hésitant pas à s'approprier la cabane du garde forestier dès que celui-ci a le dos tourné. Seuls les lemmings, de petits mammifères idiots, lui contestent ses privilèges... + Jeunesse + Dessins Animés + + 2 . 7 . + + Tout public + + + + Grizzy et les lemmings + Tactiques d'ombrelles + Grizzy, gros ours placide et chapardeur, vit comme un roi dans la forêt canadienne, n'hésitant pas à s'approprier la cabane du garde forestier dès que celui-ci a le dos tourné. Seuls les lemmings, de petits mammifères idiots, lui contestent ses privilèges... + Jeunesse + Dessins Animés + + 2 . 8 . + + Tout public + + + + Grizzy et les lemmings + Ni yin ni yang + Grizzy, gros ours placide et chapardeur, vit comme un roi dans la forêt canadienne, n'hésitant pas à s'approprier la cabane du garde forestier dès que celui-ci a le dos tourné. Seuls les lemmings, de petits mammifères idiots, lui contestent ses privilèges... + Jeunesse + Dessins Animés + + 2 . 9 . + + Tout public + + + + Grizzy et les lemmings + Ours mécatronique + Grizzy, gros ours placide et chapardeur, vit comme un roi dans la forêt canadienne, n'hésitant pas à s'approprier la cabane du garde forestier dès que celui-ci a le dos tourné. Seuls les lemmings, de petits mammifères idiots, lui contestent ses privilèges... + Jeunesse + Dessins Animés + + 2 . 10 . + + Tout public + + + + Grizzy et les lemmings + Tai chi lemmings + Grizzy, gros ours placide et chapardeur, vit comme un roi dans la forêt canadienne, n'hésitant pas à s'approprier la cabane du garde forestier dès que celui-ci a le dos tourné. Seuls les lemmings, de petits mammifères idiots, lui contestent ses privilèges... + Jeunesse + Dessins Animés + + 2 . 11 . + + Tout public + + + + Grizzy et les lemmings + Plongée sauvage + Grizzy, gros ours placide et chapardeur, vit comme un roi dans la forêt canadienne, n'hésitant pas à s'approprier la cabane du garde forestier dès que celui-ci a le dos tourné. Seuls les lemmings, de petits mammifères idiots, lui contestent ses privilèges... + Jeunesse + Dessins Animés + + 2 . 13 . + + Tout public + + + + Kid'z en forme + L'activité physique + "Kid'z en forme" propose de multiples conseils pour la bonne santé, destinés principalement aux jeunes téléspectateurs. + Jeunesse + + 0 . 6 . + + Tout public + + + + Il était une fois... la vie + Le cerveau + Maestro initie Hémo et Globine au plus mystérieux des organes du corps humain : le cerveau. Il leur montre sa structure extrêmement complexe et leur explique comment se développent les différents sens... + Jeunesse + Dessins Animés + + 0 . 8 . + + Tout public + + + + Il était une fois... la vie + Les neurones + Le neurone est l'unité fonctionnelle du système nerveux. Son contenu le rend capable de générer, de transmettre et de recevoir des informations sous forme de signaux électriques, l'influx nerveux... + Jeunesse + Dessins Animés + + 0 . 9 . + + Tout public + + + + Un jour, une question + C'est quoi l'antisémitisme? + A quoi ça sert ? Ça veut dire quoi ? C'est qui ? Pourquoi c'est comme ça ? Les questions des enfants trouvent quotidiennement une réponse. + Jeunesse + + 4 . 700 . + + Tout public + + + + Chouette, pas chouette + La footballeuse + Un programme court qui mène la lutte contre les stéréotypes sexistes dés le plus jeune âge. + Jeunesse + Dessins Animés + + 0 . 1 . + + Tout public + + + + Disco Dragon + Ex-aequo + Aucune description + Jeunesse + Dessins Animés + + 0 . 5 . + + Tout public + + + + Disco Dragon + Gaspard contre le troll Fracasse + Aucune description + Jeunesse + Dessins Animés + + 0 . 6 . + + Tout public + + + + Disco Dragon + Le toboggan + Aucune description + Jeunesse + Dessins Animés + + 0 . 7 . + + Tout public + + + + Disco Dragon + Monsieur Bouloche + Aucune description + Jeunesse + Dessins Animés + + 0 . 8 . + + Tout public + + + + Disco Dragon + Le parfait Lucas + Aucune description + Jeunesse + Dessins Animés + + 0 . 9 . + + Tout public + + + + Kid'z en forme + Les gestes de tri + "Kid'z en Forme" propose des conseils avisés pour faire un geste pour la planète, en apprenant à trier ses emballages. + Jeunesse + + 0 . 2 . + + Tout public + + + + Un jour, une question + C'est quoi l'antisémitisme? + A quoi ça sert ? Ça veut dire quoi ? C'est qui ? Pourquoi c'est comme ça ? Les questions des enfants trouvent quotidiennement une réponse. + Jeunesse + + 4 . 700 . + + Tout public + + + + Idéfix et les Irréductibles + Le hibou de marbre + Alors que Voldenuix transporte une poudre magique pour son maître Amnésix, il s'en retrouve recouvert et se transforme en statue de marbre en plein vol ! Il tombe pile sur la tête du général Labienus, qui délire et le prend pour un envoyé des dieux quand il s'aperçoit que la statue émet des sons ! Il ne peut plus s'en passer et la consulte pour tout. + Jeunesse + Dessins Animés + + 0 . 4 . + + Tout public + + + + Idéfix et les Irréductibles + Fluctuat n-hic ! Mergitur + Une mystérieuse épidémie de hoquet pousse les Romains à imposer une quarantaine sur tout Lutèce. Idéfix cherche l'aide du druide Amnésix, qui vit en forêt. + Jeunesse + Dessins Animés + + 0 . 0 . + + Tout public + + + + Idéfix et les Irréductibles + Idéfix et la soupe à la romaine + Le cuisinier du palais étant malade, Anglaigus réquisitionne Poulérotix et Pomdofine pour préparer un festin pour le général Labienus. Idéfix ruine les plats. + Jeunesse + Dessins Animés + + 0 . 6 . + + Tout public + + + + Idéfix et les Irréductibles + Les Irréductibles font leur cirque + Les amis croisent un lion emprisonné en route pour le cirque où il sera l'attraction principale des nouveaux jeux romains. Idéfix tente de libérer l'animal. + Jeunesse + Dessins Animés + + 0 . 7 . + + Tout public + + + + Anatole Latuile + Le jeu concours + Anatole Latuile, un écolier dissipé mais plein de ressources, dépense toute son énergie à s'attirer des ennuis. + Jeunesse + Dessins Animés + + 1 . 4 . + + Tout public + + + + Anatole Latuile + Gros squatteur + Anatole Latuile, un écolier dissipé mais plein de ressources, dépense toute son énergie à s'attirer des ennuis. + Jeunesse + Dessins Animés + + 1 . 5 . + + Tout public + + + + Anatole Latuile + Inspecteur Lapétoche + Anatole Latuile, un écolier dissipé mais plein de ressources, dépense toute son énergie à s'attirer des ennuis. + Jeunesse + Dessins Animés + + 1 . 6 . + + Tout public + + + + Anatole Latuile + Un camping de rêve + Anatole Latuile, un écolier dissipé mais plein de ressources, dépense toute son énergie à s'attirer des ennuis. + Jeunesse + Dessins Animés + + 1 . 7 . + + Tout public + + + + Un jour, une question + C'est quoi l'antisémitisme? + A quoi ça sert ? Ça veut dire quoi ? C'est qui ? Pourquoi c'est comme ça ? Les questions des enfants trouvent quotidiennement une réponse. + Jeunesse + + 4 . 700 . + + Tout public + + + + Les extras curieux + Plantes carnivores + A quoi sert la trompe de l'éléphant ? Comment se forment les glaciers ? Comment font les crabes pour respirer dans l'eau mais aussi hors de l'eau ? En 3 minutes chrono, Léo et Vinci, un duo d'extraterrestres très curieux répondent à toutes ces questions. + Jeunesse + Mag. Jeunesse + + 1 . 2 . + + Tout public + + + + Les extras curieux + Zèbres + A quoi sert la trompe de l'éléphant ? Comment se forment les glaciers ? Comment font les crabes pour respirer dans l'eau mais aussi hors de l'eau ? En 3 minutes chrono, Léo et Vinci, un duo d'extraterrestres très curieux répondent à toutes ces questions. + Jeunesse + Mag. Jeunesse + + 0 . 27 . + + Tout public + + + + Les Pyjamasques + Roméo perd le contrôle + Amis, voisins, et acolytes dans leurs aventures Sacha, Amaya et Greg revêtent leur costumes de super héros le soir venu pour devenir Yoyo, Bibou et Gluglu et faire régner la justice face à leurs ennemis jurés: Roméo le génie de la technologie, Sorceline la petite sorcière lunaire et Ninjaka l'insaisissable ninja. + Jeunesse + Dessins Animés + + 3 . 18 . + + Tout public + + + + Les Pyjamasques + Les Pyjamasques et la colère de la montagne + Dotés de pouvoirs particuliers grâce à leurs pyjamas spéciaux, les Pyjamasques vivent la nuit des aventures extraordinaires au lieu de dormir dans leur lit. + Jeunesse + Dessins Animés + + 3 . 19 . + + Tout public + + + + Les Pyjamasques + Les pyjamasques et la baguette du vieux sorcier + Amis, voisins, et acolytes dans leurs aventures Sacha, Amaya et Greg revêtent leur costumes de super héros le soir venu pour devenir Yoyo, Bibou et Gluglu et faire régner la justice face à leurs ennemis jurés: Roméo le génie de la technologie, Sorceline la petite sorcière lunaire et Ninjaka l'insaisissable ninja. + Jeunesse + Dessins Animés + + 3 . 19 . + + Tout public + + + + Scooby-Doo et le fantôme gourmand + L'oncle de Fred, le célèbre chef Bobby Flay, dirige le Rocky Harbor Culinary Resort. Selon la légende, son ancêtre aurait été enlevé par un mystérieux fantôme. Quand le spectre réapparaît soudainement, Fred, Scooby et leurs amis mènent l'enquête, secondés par Bobby et Giada de Laurentiis... + Film + Film Animation + + + Tout public + + + + Bienvenue chez les Mouche + Le spectacle + Louis est tout excité par la sortie d'un numéro de sa BD préférée mais ses parents veulent se rendre chez la chenille pour assister à sa transformation. + Jeunesse + Dessins Animés + + 0 . 16 . + + Tout public + + + + L'armure de Jade + La station + Jade est une super héroïne de légende. Et c'est maintenant à Lan Jun de porter son armure. Dur à croire que c'est à son tour d'endosser la célèbre armure pour combattre le mal. + Jeunesse + Dessins Animés + + 0 . 12 . + + Tout public + + + + L'armure de Jade + La classe tout risque + Jade est une super héroïne de légende. Et c'est maintenant à Lan Jun de porter son armure. Dur à croire que c'est à son tour d'endosser la célèbre armure pour combattre le mal. + Jeunesse + Dessins Animés + + 0 . 13 . + + Tout public + + + + Mystery Lane + Le gnome aux diamants + Aucune description + Jeunesse + Dessins Animés + + 0 . 9 . + + Tout public + + + + Okoo-koo + Manon, Bouba, Julia et Sam, quatre jeunes animateurs, divertissent les enfants avec une pointe de pédagogie. + Jeunesse + Mag. Jeunesse + + + Tout public + + + + Mystery Lane + La menace oubliée + Aucune description + Jeunesse + Dessins Animés + + 0 . 13 . + + Tout public + + + + Angelo la débrouille + Un foyer pour toujours + Quand on a onze ans, la vie n'est pas tous les jours facile, surtout pour le pauvre Angelo, avec son petit frère qui lui empoisonne l'existence, sa grande sœur qui le traite comme un gamin, ses parents au temps libre agité. Mais Angelo a des dons d'anthropologue et a fait de l'étude des comportements son arme fatale pour se faire une place dans ce monde sans pitié... + Jeunesse + Dessins Animés + + 4 . 29 . + + Tout public + + + + Okoo-koo + Manon, Bouba, Julia et Sam, quatre jeunes animateurs, divertissent les enfants avec une pointe de pédagogie. + Jeunesse + Mag. Jeunesse + + + Tout public + + + + Angelo la débrouille + Coach karaoké + Quand on a onze ans, la vie n'est pas tous les jours facile, surtout pour le pauvre Angelo, avec son petit frère qui lui empoisonne l'existence, sa grande sœur qui le traite comme un gamin, ses parents au temps libre agité. Mais Angelo a des dons d'anthropologue et a fait de l'étude des comportements son arme fatale pour se faire une place dans ce monde sans pitié... + Jeunesse + Dessins Animés + + 4 . 30 . + + Tout public + + + + Les as de la jungle à la rescousse + Arrête ou ma mère va griffer + Natacha vient rendre visite à son fils Maurice pour la première fois. Elle en profite pour faire une petite mise au point des règles de politesse. Maurice, fatigué d'être surnommé "Minou", est soulagé lorsqu'ils sont interrompus par Patrick, l'axolotl... + Jeunesse + Dessins Animés + + 2 . 0 . + + Tout public + + + + Les as de la jungle à la rescousse + Le musée Gredin + Roger est bien embêté : toutes les abeilles qui d'habitude pollinisent les fleurs de bananiers de son potager ont disparu . Un drame pour Miguel, qui risque de se retrouver privé de bananes... + Jeunesse + Dessins Animés + + 2 . 1 . + + Tout public + + + + Les as de la jungle à la rescousse + Les dents de la plage + Alors que Natacha repeint avec une extrême application les rayures d'un Maurice excédé, Martin la gerboise atterrit dans la mare des As après avoir été catapulté depuis son île. Il raconte aux As que la communauté des gerboises vit recluse sur l'île depuis que Bruce, un crocodile marin géant, les empêche de s'aventurer en mer... + Jeunesse + Dessins Animés + + 2 . 2 . + + Tout public + + + + Okoo-koo + Manon, Bouba, Julia et Sam, quatre jeunes animateurs, divertissent les enfants avec une pointe de pédagogie. + Jeunesse + Mag. Jeunesse + + + Tout public + + + + Les as de la jungle à la rescousse + La banane fatale + La jungle n'est pas toujours un endroit paisible. Les animaux qui la peuplent en savent quelque chose. Maurice, un manchot tigré, Batricia, une chauve-souris, Miguel, un gorille ou encore Gilbert, un tarsier, sont là pour assurer la sécurité de leurs amis. Pour les appeler, il suffit de tirer un signal d'alarme qui envoie de petits nuages de fumée au sommet d'un volcan. + Jeunesse + Dessins Animés + + 2 . 3 . + + Tout public + + + + Ninjago + La forme de Nya + Lorsqu'une sorcière serpent emprisonnée utilise le Parchemin du Spinjitzu Interdit depuis longtemps perdu pour libérer une armée ancestrale, les ninjas doivent se remettre en forme et protéger Ninjago. Durant le combat, un ninja est banni au mystérieux Royaume de Non-Retour et nos héros doivent s'embarquer dans une quête désespérée pour tirer leur ami des griffes du sinistre Empereur de Glace... + Jeunesse + Dessins Animés + + 13 . 2 . + + Tout public + + + + Ninjago + La grande évasion + Lorsqu'une sorcière serpent emprisonnée utilise le Parchemin du Spinjitzu Interdit depuis longtemps perdu pour libérer une armée ancestrale, les ninjas doivent se remettre en forme et protéger Ninjago. Durant le combat, un ninja est banni au mystérieux Royaume de Non-Retour et nos héros doivent s'embarquer dans une quête désespérée pour tirer leur ami des griffes du sinistre Empereur de Glace... + Jeunesse + Dessins Animés + + 13 . 3 . + + Tout public + + + + Dragons : les neuf royaumes + Le déluge + Les dragons ne sont plus rien d'autre qu'une légende. Un jour, une fissure lézarde la surface de la terre. Des scientifiques s'en vont l'étudier. Mais des enfants les ont devancés et découvre là des dragons qui se cachent. Ils décident de les protéger, et de maintenir coûte que coûte leur existence secrète. + Jeunesse + Dessins Animés + + 1 . 3 . + + Tout public + + + + Dragons : les neuf royaumes + Maudite toile! + Aucune description + Jeunesse + Dessins Animés + + 1 . 4 . + + Tout public + + + + Organisation Super Insolite + La cerise-sur-le-sundae-nateur + Chaque fois que quelque chose d'inhabituel se produit, ces deux agents enfants, Olive et Otto sont chargés de remettre les choses à leur place en se servant des concepts mathématiques. + Jeunesse + Série Jeunesse + + 1 . 16 . + + Tout public + + + + Organisation Super Insolite + Monsieur + Chaque fois que quelque chose d'inhabituel se produit, ces deux agents enfants, Olive et Otto sont chargés de remettre les choses à leur place en se servant des concepts mathématiques. + Jeunesse + Série Jeunesse + + 1 . 16 . + + Tout public + + + + Consomag + Comment signaler un mail de phishing ou d'hameçonnage ? + Le magazine de l'Institut national de la consommation donne à chacun des conseils pratiques pour mieux consommer. + Magazine + Mag. Service + + 0 . 0 . + + Tout public + + + + Culturebox l'émission + Aucune description + Magazine + Mag. Musique + + + Tout public + + + + Luisa Miller + Au XVIIe siècle, dans un village du Tyrol, Luisa, fille du vieux soldat Miller, et Rodolfo, fils du comte Walter, s'aiment d'un amour impossible. + Musique + Opéra + + + Tout public + + + + Requiem de Giuseppe Verdi + Aucune description + Musique + Classic-Contemp + + + Tout public + + + + Ouh là l'art ! + Comment Vivian Maier devint-elle la nounou la plus célèbre du monde ? + Aucune description + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Notre-Dame de Paris + Aucune description + Divertissement + Danse + + + Tout public + + + + Déjeuner en l'air + Aucune description + Divertissement + Spectacle + + + Tout public + + + + Moonwalk + Rencontre avec Léna Situations + Léna Situations raconte son incroyable histoire à Oumar : son adolescence, Papa et Maman Situations, les discriminations, Friends, son premier livre. + Magazine + Mag. Culture + + 2 . 26 . + + Tout public + + + + Culturebox l'émission + Aucune description + Magazine + Mag. Musique + + + Tout public + + + + Coache-moi si tu peux + En toute sécurité + Gumball raconte l'histoire d'une famille de banlieue ordinaire vivant dans une ville extraordinaire. L'histoire est centrée sur la famille de Gumball un chat bleu optimiste et enthousiaste qui a le don de se mettre dans des situations cocasses. + Jeunesse + Dessins Animés + + 0 . 14 . + + Tout public + + + + Coache-moi si tu peux + Ni repris ni échangé + Gumball raconte l'histoire d'une famille de banlieue ordinaire vivant dans une ville extraordinaire. L'histoire est centrée sur la famille de Gumball un chat bleu optimiste et enthousiaste qui a le don de se mettre dans des situations cocasses. + Jeunesse + Dessins Animés + + 0 . 15 . + + Tout public + + + + Coache-moi si tu peux + Oopsie ! + Gumball raconte l'histoire d'une famille de banlieue ordinaire vivant dans une ville extraordinaire. L'histoire est centrée sur la famille de Gumball un chat bleu optimiste et enthousiaste qui a le don de se mettre dans des situations cocasses. + Jeunesse + Dessins Animés + + 0 . 16 . + + Tout public + + + + Coache-moi si tu peux + Les peu bons + Quand Papa et Maman partent en week-end c'est Mamie Jojo qui vient garder les enfants en les accueillant d'un gros bisou sur la joue comme elle sait si bien les faire. Mais cette fois Gumball a décidé qu'il était trop grand pour ce genre de choses. Malheureusement Mamie Jojo en a décidé autrement. + Jeunesse + Dessins Animés + + 0 . 17 . + + Tout public + + + + Coache-moi si tu peux + Mauvais cygne + Pour retrouver sa forme humaine, Erico Platana, grand footballeur, doit dégonfler son égo et aider Daniel, qui n'est pas très doué, à devenir un champion. + Jeunesse + Dessins Animés + + 0 . 36 . + + Tout public + + + + Coache-moi si tu peux + Daniel la terreur + Pour retrouver sa forme humaine, Erico Platana, grand footballeur, doit dégonfler son égo et aider Daniel, qui n'est pas très doué, à devenir un champion. + Jeunesse + Dessins Animés + + 0 . 37 . + + Tout public + + + + Coache-moi si tu peux + Huit mètres carrés d'aventure + Pour retrouver sa forme humaine, Erico Platana, grand footballeur, doit dégonfler son égo et aider Daniel, qui n'est pas très doué, à devenir un champion. + Jeunesse + Dessins Animés + + 0 . 38 . + + Tout public + + + + Coache-moi si tu peux + La petite entreprise + Pour retrouver sa forme humaine, Erico Platana, grand footballeur, doit dégonfler son égo et aider Daniel, qui n'est pas très doué, à devenir un champion. + Jeunesse + Dessins Animés + + 0 . 39 . + + Tout public + + + + Coache-moi si tu peux + Erico, mon copain robot + Pour retrouver sa forme humaine, Erico Platana, grand footballeur, doit dégonfler son égo et aider Daniel, qui n'est pas très doué, à devenir un champion. + Jeunesse + Dessins Animés + + 0 . 40 . + + Tout public + + + + Coache-moi si tu peux + Coco l'écureuil + Pour retrouver sa forme humaine, Erico Platana, grand footballeur, doit dégonfler son égo et aider Daniel, qui n'est pas très doué, à devenir un champion. + Jeunesse + Dessins Animés + + 0 . 41 . + + Tout public + + + + Un jour, une question + C'est quoi le harcèlement à l'école ? + A quoi ça sert ? Ça veut dire quoi ? C'est qui ? Pourquoi c'est comme ça ? Les questions des enfants trouvent quotidiennement une réponse. + Jeunesse + + 9 . 1111 . + + Tout public + + + + Kiya et les héros de Kimoja + Kiya et le Monstre volant + Lorsque Kiya et ses deux meilleurs amis, Jay et Motsie, enfilent leurs bandeaux ornés des mystiques cristaux de Kimoja, ils se transforment et peuvent exécuter des acrobaties. Ensemble, ils forment une équipe de super-héros connus sous le nom de Kimoja Heroes , prêts à protéger et rassembler leur communauté. + Jeunesse + Dessins Animés + + 0 . 0 . + + Tout public + + + + Kiya et les héros de Kimoja + La danse cosmique + Lorsque Kiya et ses deux meilleurs amis, Jay et Motsie, enfilent leurs bandeaux ornés des mystiques cristaux de Kimoja, ils se transforment et peuvent exécuter des acrobaties. Ensemble, ils forment une équipe de super-héros connus sous le nom de Kimoja Heroes , prêts à protéger et rassembler leur communauté. + Jeunesse + Dessins Animés + + 0 . 0 . + + Tout public + + + + Kiya et les héros de Kimoja + De Zéro à Héros + Lorsque Kiya et ses deux meilleurs amis, Jay et Motsie, enfilent leurs bandeaux ornés des mystiques cristaux de Kimoja, ils se transforment et peuvent exécuter des acrobaties. Ensemble, ils forment une équipe de super-héros connus sous le nom de Kimoja Heroes , prêts à protéger et rassembler leur communauté. + Jeunesse + Dessins Animés + + 0 . 2 . + + Tout public + + + + Kiya et les héros de Kimoja + Prendre du recul + Lorsque Kiya et ses deux meilleurs amis, Jay et Motsie, enfilent leurs bandeaux ornés des mystiques cristaux de Kimoja, ils se transforment et peuvent exécuter des acrobaties. Ensemble, ils forment une équipe de super-héros connus sous le nom de Kimoja Heroes , prêts à protéger et rassembler leur communauté. + Jeunesse + Dessins Animés + + 0 . 1 . + + Tout public + + + + Kiya et les héros de Kimoja + La légende du Manioc Doré + Lorsque Kiya et ses deux meilleurs amis, Jay et Motsie, enfilent leurs bandeaux ornés des mystiques cristaux de Kimoja, ils se transforment et peuvent exécuter des acrobaties. Ensemble, ils forment une équipe de super-héros connus sous le nom de Kimoja Heroes , prêts à protéger et rassembler leur communauté. + Jeunesse + Dessins Animés + + 0 . 2 . + + Tout public + + + + Kiya et les héros de Kimoja + Le remix de Primadonna + Lorsque Kiya et ses deux meilleurs amis, Jay et Motsie, enfilent leurs bandeaux ornés des mystiques cristaux de Kimoja, ils se transforment et peuvent exécuter des acrobaties. Ensemble, ils forment une équipe de super-héros connus sous le nom de Kimoja Heroes , prêts à protéger et rassembler leur communauté. + Jeunesse + Dessins Animés + + 0 . 2 . + + Tout public + + + + Héros à moitié + Frère et fils + Mo et Sam sont demi-frère et soeur. Ayant hérité ses superpouvoirs d'un aïeul superhéros, ils doivent se les partager : ce n'est qu'en se donnant la main qu'ils obtiennent le pouvoir complet. Et dans leur quotidien, ils vont en avoir besoin. + Jeunesse + Dessins Animés + + 0 . 1 . + + Tout public + + + + Héros à moitié + Le rêve de Riton + Mo et Sam sont demi-frère et soeur. Ayant hérité ses superpouvoirs d'un aïeul superhéros, ils doivent se les partager : ce n'est qu'en se donnant la main qu'ils obtiennent le pouvoir complet. Et dans leur quotidien, ils vont en avoir besoin. + Jeunesse + Dessins Animés + + 0 . 2 . + + Tout public + + + + Héros à moitié + L'acné de tous les dangers + Mo et Sam sont demi-frère et soeur. Ayant hérité ses superpouvoirs d'un aïeul superhéros, ils doivent se les partager : ce n'est qu'en se donnant la main qu'ils obtiennent le pouvoir complet. Et dans leur quotidien, ils vont en avoir besoin. + Jeunesse + Dessins Animés + + 0 . 3 . + + Tout public + + + + Héros à moitié + Parle à mon dos + Mo et Sam sont demi-frère et soeur. Ayant hérité ses superpouvoirs d'un aïeul superhéros, ils doivent se les partager : ce n'est qu'en se donnant la main qu'ils obtiennent le pouvoir complet. Et dans leur quotidien, ils vont en avoir besoin. + Jeunesse + Dessins Animés + + 0 . 4 . + + Tout public + + + + Héros à moitié + Mo à un incroyable talent + Mo et Sam sont demi-frère et soeur. Ayant hérité ses superpouvoirs d'un aïeul superhéros, ils doivent se les partager : ce n'est qu'en se donnant la main qu'ils obtiennent le pouvoir complet. Et dans leur quotidien, ils vont en avoir besoin. + Jeunesse + Dessins Animés + + 0 . 5 . + + Tout public + + + + Oscar & Malika toujours en retard + Le collectionneur + Nils, un collectionneur de cartes magiques transforme Mélanie la postière en un personnage de son jeu. Pour la libérer, Oscar et Malika doivent affronter le collectionneur en jouant contre lui. Leur meilleur atout pour gagner ? Une carte plus puissante que toutes les autres : Mélania la messagère de feu ! + Jeunesse + Dessins Animés + + 1 . 27 . + + Tout public + + + + Oscar & Malika toujours en retard + Le kappa + Oscar et Malika secourent un kappa, une créature qui vit dans la mare du parc. Pour les remercier, Tetsu tient absolument à leur rendre service, mais il ne fait que provoquer des catastrophes dans la ville ! Il va même jusqu'à mettre nos héros en danger, en convoquant un monstre d'algues. Oscar et Malika doivent alors affronter le grand Wakamemono avec l'aide de leur nouvel ami maladroit. + Jeunesse + Dessins Animés + + 1 . 228 . + + Tout public + + + + Oscar & Malika toujours en retard + Le haricot Magique + Le quartier d'Oscar et Malika subit une pluie de rochers à cause d'une guerre qui a lieu au-dessus des nuages : au royaume des géants ! Pour arrêter le bombardement et sauver la ville, Oscar et Malika doivent entrer dans le château du roi à deux têtes qui s'est accaparé tous les haricots magiques du royaume.... + Jeunesse + Dessins Animés + + 1 . 29 . + + Tout public + + + + Oscar & Malika toujours en retard + L'épreuve du Demi-Dieu + Oscar et Malika arrivent en avance au stade, pour les Olympiades de l'école. C'est là qu'ils rencontrent Chloros, un demi-dieu chétif qui doit prouver à son père, Zeus, qu'il est un grand athlète. Malika a une idée : ils vont s'affronter tous les deux, et elle le laissera gagner ! Mais quand Zeus découvre la tricherie, c'est sur Oscar et Malika qu'il déchaîne sa colère... + Jeunesse + Dessins Animés + + 1 . 30 . + + Tout public + + + + Oscar & Malika toujours en retard + Le glitch + Quand Zimbra, une intelligence artificielle maléfique, contamine leurs amis avec un virus informatique, Oscar et Malika doivent trouver le moyen de sauver la ville. + Jeunesse + Dessins Animés + + 1 . 31 . + + Tout public + + + + Kid'z en forme + Le recyclage + Les conseils avisés des "Kid'z en Forme" sur le sujet du recyclage. + Jeunesse + + 0 . 3 . + + Tout public + + + + Mystery Lane + L'insaisissable Robin des animaux + Aucune description + Jeunesse + Dessins Animés + + 0 . 18 . + + Tout public + + + + Mystery Lane + Le faiseur d'énigmes + Aucune description + Jeunesse + Dessins Animés + + 0 . 19 . + + Tout public + + + + Scooby-Doo et compagnie + Le fantôme, le chien qui parle, et la sauce extra, extra, extra, extra forte, avec Kacey Musgraves + Aux côtés de personnages célèbres, les membres du Scooby-Gang doivent résoudre toute sorte de mystères. Leurs aventures les conduisent sur le chemin de Batman, Sherlock Holmes, Abraham Lincoln ou encore Ricky Gervais et Whoopi Goldberg. + Jeunesse + Dessins Animés + + 1 . 1 . + + Tout public + + + + Scooby-Doo et compagnie + Le concours de hot-dogs + Aux côtés de personnages célèbres, les membres du Scooby-Gang doivent résoudre toute sorte de mystères. Leurs aventures les conduisent sur le chemin de Batman, Sherlock Holmes, Abraham Lincoln ou encore Ricky Gervais et Whoopi Goldberg. + Jeunesse + Dessins Animés + + 1 . 2 . + + Tout public + + + + Scooby-Doo: Mystères associés + Le chaos hurlant + Avec Mystery Inc brisée, la bande décide de profiter de la vie après l'école secondaire et de passer un week-end à Darrow College. Mais les choses ne se passent pas comme prévu et une créature appelée Char Gar Gothakon commence à terroriser le campus. Il s'avère que le monstre est un personnage de fiction venu à la vie. Une création de l'auteur H.P. Hatecraft, professeur à l'école... + Jeunesse + Dessins Animés + + 0 . 11 . + + Tout public + + + + Moi à ton âge + J'adorais les surprises + Paul, petit garçon de 10 ans vit des aventures assez particulières en se baladant dans le passé, entre les années 1950 et 1980. Chaque incursion dans une période lui donne l'occasion d'en découvrir les objets emblématiques, les innovations technologiques, les modes et les habitudes du moment et, du coup, de découvrir que les membres de sa famille ont eu eux aussi, une enfance... + Jeunesse + Dessins Animés + + 0 . 36 . + + Tout public + + + + Idéfix et les Irréductibles + Roucoulez jeunesse + Le Moulin de Lutèce qui produit la farine avec laquelle on fait le pain cher à Asmatix va être démantelé par les Romains ! Le vieux pigeon ne va pas les laisser faire. + Jeunesse + Dessins Animés + + 0 . 8 . + + Tout public + + + + Idéfix et les Irréductibles + Lutèce II + Anglaigus trouve un ingénieux plan de romanisation : remplacer les commerces lutéciens par des livraisons romaines à domicile. Idéfix doit mettre fin à l'hégémonie romaine qui ne tarde pas à se mettre en place, sinon Poulérotix et Pomdofine, les maîtres du bouledogue Padgachix, fermeront boutique et quitteront Lutèce pour toujours. + Jeunesse + Dessins Animés + + 0 . 9 . + + Tout public + + + + Idéfix et les Irréductibles + Le réveil de Lutèce + Chaque matin, le coq Sinfonix réveille Lutèce ainsi que Monalisa. Cette dernière fomente un plan machiavélique pour se débarrasser du coq, qui va finir dans les casseroles du cuisinier de la Louve ! Idéfix et ses amis doivent sauver Sinfonix avant qu'il ne finisse en plan à la casserole ! + Jeunesse + Dessins Animés + + 0 . 13 . + + Tout public + + + + Idéfix et les Irréductibles + La statue de Labienus + L'installation d'une statue de Labienus insulte l'honneur gaulois et bloque le passage vers la boulangerie. Asmatix utilise une potion de Voldenuix pour détruire la statue mais lui donne vie. + Jeunesse + Dessins Animés + + 0 . 14 . + + Tout public + + + + Anatole Latuile + La punition du directeur + Anatole Latuile, un écolier dissipé mais plein de ressources, dépense toute son énergie à s'attirer des ennuis. + Jeunesse + Dessins Animés + + 1 . 8 . + + Tout public + + + + Anatole Latuile + Robin des Billes + Anatole Latuile, un écolier dissipé mais plein de ressources, dépense toute son énergie à s'attirer des ennuis. + Jeunesse + Dessins Animés + + 1 . 9 . + + Tout public + + + + Anatole Latuile + Les nouveaux robinsons + Anatole Latuile, un écolier dissipé mais plein de ressources, dépense toute son énergie à s'attirer des ennuis. + Jeunesse + Dessins Animés + + 1 . 10 . + + Tout public + + + + Anatole Latuile + Les chamois + Anatole Latuile, un écolier dissipé mais plein de ressources, dépense toute son énergie à s'attirer des ennuis. + Jeunesse + Dessins Animés + + 1 . 11 . + + Tout public + + + + Un jour, une question + C'est quoi le harcèlement à l'école ? + A quoi ça sert ? Ça veut dire quoi ? C'est qui ? Pourquoi c'est comme ça ? Les questions des enfants trouvent quotidiennement une réponse. + Jeunesse + + 9 . 1111 . + + Tout public + + + + Les extras curieux + Escargots + A quoi sert la trompe de l'éléphant ? Comment se forment les glaciers ? Comment font les crabes pour respirer dans l'eau mais aussi hors de l'eau ? En 3 minutes chrono, Léo et Vinci, un duo d'extraterrestres très curieux répondent à toutes ces questions. + Jeunesse + Mag. Jeunesse + + 1 . 5 . + + Tout public + + + + Les extras curieux + Fourmis + A quoi sert la trompe de l'éléphant ? Comment se forment les glaciers ? Comment font les crabes pour respirer dans l'eau mais aussi hors de l'eau ? En 3 minutes chrono, Léo et Vinci, un duo d'extraterrestres très curieux répondent à toutes ces questions. + Jeunesse + Mag. Jeunesse + + 1 . 6 . + + Tout public + + + + C'est toujours pas sorcier + Les crocodiles, alligators, c'est caïmaan pareil + Un magazine de vulgarisation scientifique destiné à tous les curieux, jeunes et moins jeunes. Depuis leur cabane Max, Cécile et Mathieu, à l'aide de maquettes, de l'avis de spécialistes et de travaux pratiques, se penchent sur un thème fascinant. + Magazine + Mag. Éducation + + 5 . 2 . + + Tout public + + + + C'est toujours pas sorcier + + Le braconnage et la survie des espèces de crocodiles + Un des trois scientifiques de l'émission se focalise sur un sujet durant quelques minutes. Le sujet traité dans l'épisode principal est abordé sous un autre angle. + Magazine + Mag. Éducation + + 0 . 0 . + + Tout public + + + + Héros à moitié + Les passes-muraille + Mo et Sam sont demi-frère et soeur. Ayant hérité ses superpouvoirs d'un aïeul superhéros, ils doivent se les partager : ce n'est qu'en se donnant la main qu'ils obtiennent le pouvoir complet. Et dans leur quotidien, ils vont en avoir besoin. + Jeunesse + Dessins Animés + + 0 . 7 . + + Tout public + + + + Héros à moitié + Futur flou + Mo et Sam sont demi-frère et soeur. Ayant hérité ses superpouvoirs d'un aïeul superhéros, ils doivent se les partager : ce n'est qu'en se donnant la main qu'ils obtiennent le pouvoir complet. Et dans leur quotidien, ils vont en avoir besoin. + Jeunesse + Dessins Animés + + 0 . 7 . + + Tout public + + + + Héros à moitié + Et je coupe le son + Mo et Sam sont demi-frère et soeur. Ayant hérité ses superpouvoirs d'un aïeul superhéros, ils doivent se les partager : ce n'est qu'en se donnant la main qu'ils obtiennent le pouvoir complet. Et dans leur quotidien, ils vont en avoir besoin. + Jeunesse + Dessins Animés + + 0 . 8 . + + Tout public + + + + Héros à moitié + Filtre beau gosse + Mo et Sam sont demi-frère et soeur. Ayant hérité ses superpouvoirs d'un aïeul superhéros, ils doivent se les partager : ce n'est qu'en se donnant la main qu'ils obtiennent le pouvoir complet. Et dans leur quotidien, ils vont en avoir besoin. + Jeunesse + Dessins Animés + + 0 . 9 . + + Tout public + + + + Héros à moitié + Rodolf man + Mo et Sam sont demi-frère et soeur. Ayant hérité ses superpouvoirs d'un aïeul superhéros, ils doivent se les partager : ce n'est qu'en se donnant la main qu'ils obtiennent le pouvoir complet. Et dans leur quotidien, ils vont en avoir besoin. + Jeunesse + Dessins Animés + + 0 . 10 . + + Tout public + + + + Héros à moitié + Clones à tout faire + Mo et Sam sont demi-frère et soeur. Ayant hérité ses superpouvoirs d'un aïeul superhéros, ils doivent se les partager : ce n'est qu'en se donnant la main qu'ils obtiennent le pouvoir complet. Et dans leur quotidien, ils vont en avoir besoin. + Jeunesse + Dessins Animés + + 0 . 11 . + + Tout public + + + + Chouette, pas chouette + La pilote + Kiki et Lili jouent au jeu des 7 familles. Et quand Lili demande ' Dans la famille Pilote d'avion, je voudrais la fille ', Kiki n'en revient pas + Jeunesse + Dessins Animés + + 0 . 2 . + + Tout public + + + + Okoo-koo + Harcèlement + Manon, Bouba, Julia et Sam, quatre jeunes animateurs, divertissent les enfants avec une pointe de pédagogie. + Jeunesse + Mag. Jeunesse + + 0 . 0 . + + Tout public + + + + Bienvenue chez les Mouche + La fête de Louis + Louis et Abacus veulent faire une partie de leur jeu préféré mais ils ne trouvent pas de place confortable, calme et tranquille, malgré avoir tout essayé. + Jeunesse + Dessins Animés + + 0 . 19 . + + Tout public + + + + Bienvenue chez les Mouche + Un trophée pour Basile + Louis et Abacus veulent faire une partie de leur jeu préféré mais ils ne trouvent pas de place confortable, calme et tranquille, malgré avoir tout essayé. + Jeunesse + Dessins Animés + + 0 . 20 . + + Tout public + + + + Bienvenue chez les Mouche + Poids mouche + Louis et Abacus veulent faire une partie de leur jeu préféré mais ils ne trouvent pas de place confortable, calme et tranquille, malgré avoir tout essayé. + Jeunesse + Dessins Animés + + 0 . 21 . + + Tout public + + + + Okoo-koo + Harcèlement + Manon, Bouba, Julia et Sam, quatre jeunes animateurs, divertissent les enfants avec une pointe de pédagogie. + Jeunesse + Mag. Jeunesse + + 0 . 0 . + + Tout public + + + + Mystery Lane + La volière hantée + Aucune description + Jeunesse + Dessins Animés + + 0 . 16 . + + Tout public + + + + Okoo-koo + Harcèlement + Manon, Bouba, Julia et Sam, quatre jeunes animateurs, divertissent les enfants avec une pointe de pédagogie. + Jeunesse + Mag. Jeunesse + + 0 . 0 . + + Tout public + + + + Mystery Lane + Le mystère de Lexington Alley + Aucune description + Jeunesse + Dessins Animés + + 0 . 17 . + + Tout public + + + + Angelo la débrouille + La photo de la honte + Quand on a onze ans, la vie n'est pas tous les jours facile, surtout pour le pauvre Angelo, avec son petit frère qui lui empoisonne l'existence, sa grande sœur qui le traite comme un gamin, ses parents au temps libre agité. Mais Angelo a des dons d'anthropologue et a fait de l'étude des comportements son arme fatale pour se faire une place dans ce monde sans pitié... + Jeunesse + Dessins Animés + + 4 . 21 . + + Tout public + + + + Angelo la débrouille + La guerre des drones + Quand on a onze ans, la vie n'est pas tous les jours facile, surtout pour le pauvre Angelo, avec son petit frère qui lui empoisonne l'existence, sa grande sœur qui le traite comme un gamin, ses parents au temps libre agité. Mais Angelo a des dons d'anthropologue et a fait de l'étude des comportements son arme fatale pour se faire une place dans ce monde sans pitié... + Jeunesse + Dessins Animés + + 4 . 32 . + + Tout public + + + + Okoo-koo + Harcèlement + Manon, Bouba, Julia et Sam, quatre jeunes animateurs, divertissent les enfants avec une pointe de pédagogie. + Jeunesse + Mag. Jeunesse + + 0 . 0 . + + Tout public + + + + Angelo la débrouille + Le grand quizz + Quand on a onze ans, la vie n'est pas tous les jours facile, surtout pour le pauvre Angelo, avec son petit frère qui lui empoisonne l'existence, sa grande sœur qui le traite comme un gamin, ses parents au temps libre agité. Mais Angelo a des dons d'anthropologue et a fait de l'étude des comportements son arme fatale pour se faire une place dans ce monde sans pitié... + Jeunesse + Dessins Animés + + 4 . 33 . + + Tout public + + + + Les as de la jungle à la rescousse + Pas de bol + La jungle n'est pas toujours un endroit paisible. Les animaux qui la peuplent en savent quelque chose. Maurice, un manchot tigré, Batricia, une chauve-souris, Miguel, un gorille ou encore Gilbert, un tarsier, sont là pour assurer la sécurité de leurs amis. Pour les appeler, il suffit de tirer un signal d'alarme qui envoie de petits nuages de fumée au sommet d'un volcan. + Jeunesse + Dessins Animés + + 2 . 4 . + + Tout public + + + + Les as de la jungle à la rescousse + Mon beau-père, ma belle-mère et moi + La jungle n'est pas toujours un endroit paisible. Les animaux qui la peuplent en savent quelque chose. Maurice, un manchot tigré, Batricia, une chauve-souris, Miguel, un gorille ou encore Gilbert, un tarsier, sont là pour assurer la sécurité de leurs amis. Pour les appeler, il suffit de tirer un signal d'alarme qui envoie de petits nuages de fumée au sommet d'un volcan. + Jeunesse + Dessins Animés + + 2 . 5 . + + Tout public + + + + Les as de la jungle à la rescousse + Les Mini-As au Puits des fous + La jungle n'est pas toujours un endroit paisible. Les animaux qui la peuplent en savent quelque chose. Maurice, un manchot tigré, Batricia, une chauve-souris, Miguel, un gorille ou encore Gilbert, un tarsier, sont là pour assurer la sécurité de leurs amis. Pour les appeler, il suffit de tirer un signal d'alarme qui envoie de petits nuages de fumée au sommet d'un volcan. + Jeunesse + Dessins Animés + + 2 . 6 . + + Tout public + + + + Okoo-koo + Harcèlement + Manon, Bouba, Julia et Sam, quatre jeunes animateurs, divertissent les enfants avec une pointe de pédagogie. + Jeunesse + Mag. Jeunesse + + 0 . 0 . + + Tout public + + + + Les as de la jungle à la rescousse + Les chiens du réservoir + Maurice est contrarié : au lieu de s'entraîner au kung-fu, Junior joue à construire des animaux en bambou. Natacha s'en mêle et la discussion s'envenime... + Jeunesse + Dessins Animés + + 2 . 7 . + + Tout public + + + + Ninjago + Ennemis publics n°1, 2, 3, 4, 5 + Le maire lance un mandat d'arrêt contre les ninjas noirs. Aspheera arrive au monastère, mais il lui faut sa lance pour sauver Nya. Dans leurs nouveaux véhicules, les ninjas interceptent le fourgon qui la contient. Ils trouvent la lance, mais les nouveaux ninjas les attendent. Pendant le combat, leur véritable identité est révélée, et le maire les déclare ennemis publics numéros un à cinq. + Jeunesse + Dessins Animés + + 13 . 4 . + + Tout public + + + + Ninjago + Une promesse douloureuse + Maître Wu empêche Aspheera de partir en acceptant de relever une série de défis. Les ninjas reviennent juste à temps avec la lance d'Aspheera. Quand la police arrive, les ninjas combattent les Nouveaux Ninjas le temps qu'Aspheera draine les pouvoirs de Nya. Nya ayant retrouvé son humanité, Aspheera s'échappe au milieu du chaos et reçoit une invitation du Roi de Cristal. Les ninjas se font arrêter. + Jeunesse + Dessins Animés + + 13 . 5 . + + Tout public + + + + Dragons : les neuf royaumes + Maudite toile! + Les dragons ne sont plus rien d'autre qu'une légende. Un jour, une fissure lézarde la surface de la terre. Des scientifiques s'en vont l'étudier. Mais des enfants les ont devancés et découvre là des dragons qui se cachent. Ils décident de les protéger, et de maintenir coûte que coûte leur existence secrète. + Jeunesse + Dessins Animés + + 1 . 4 . + + Tout public + + + + Dragons : les neuf royaumes + Suis l'éclair! + Les dragons ne sont plus rien d'autre qu'une légende. Un jour, une fissure lézarde la surface de la terre. Des scientifiques s'en vont l'étudier. Mais des enfants les ont devancés et découvre là des dragons qui se cachent. Ils décident de les protéger, et de maintenir coûte que coûte leur existence secrète. + Jeunesse + Dessins Animés + + 1 . 5 . + + Tout public + + + + Organisation Super Insolite + Le concours de talent de moins d'une demi-heure d'orchidée + Chaque fois que quelque chose d'inhabituel se produit, ces deux agents enfants, Olive et Otto sont chargés de remettre les choses à leur place en se servant des concepts mathématiques. + Jeunesse + Série Jeunesse + + 1 . 17 . + + Tout public + + + + Organisation Super Insolite + Dix sur dix + Chaque fois que quelque chose d'inhabituel se produit, ces deux agents enfants, Olive et Otto sont chargés de remettre les choses à leur place en se servant des concepts mathématiques. + Jeunesse + Série Jeunesse + + 1 . 17 . + + Tout public + + + + Culturebox l'émission + Aucune description + Magazine + Mag. Musique + + + Tout public + + + + Brassens par Brassens + En plongeant dans les archives de George Brassens, ce documentaire dresse un portrait au plus près de l'autoportrait, raconté par Sandrine Kiberlain. + Documentaire + Doc. Musique + + + Tout public + + + + Face B comme bossa, l'autre histoire d'Henri Salvador + Henri Salvador, le chanteur de "Zorro est arrivé" et de "Syracuse", fut passionné de jazz et un des inspirateurs fortuits de la bossa nova à la fin les années 50. + Documentaire + Doc. Musique + + + Tout public + + + + Régine Lapassion : les voix de la soul + Aucune description + Musique + Variétés + + + Tout public + + + + Basique, les sessions + Aurus + Aucune description + Magazine + Mag. Musique + + 0 . 0 . + + Tout public + + + + Une vie en 10 photos + Amy Winehouse + La famille et les amis les plus proches d'Amy Winehouse révèlent la vraie personnalité de l'auteur, compositrice, interprète, disparue à l'âge de 27 ans. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + Trop jeune pour mourir + River Phoenix, l'étoile filante + Enfant acteur devenu l'idole d'une génération grâce à ses idéaux et à ses opinions politiques tranchées, River Phoenix succombe à une overdose en 1993, à 23 ans. + Documentaire + Doc. Culture + + 1 . 0 . + + Tout public + + + + Marie Trintignant , le choix du jeu + La vie et la carrière riche et variée de Marie Trintignant, racontée à la fois avec pudeur et tendresse par son père, le comédien Jean-Louis Trintignant. + Documentaire + Doc. Culture + + + Tout public + + + + Les Goûts réunis : Ouverture / Suite n°2 en si mineur, BWV 1067 : Rondeau + Aucune description + Musique + Classic-Contemp + + + Tout public + + + + Culturebox l'émission + Aucune description + Magazine + Mag. Musique + + + Tout public + + + + Coache-moi si tu peux + L'imposteur du coeur + Pour retrouver sa forme humaine, Erico Platana, grand footballeur, doit dégonfler son égo et aider Daniel, qui n'est pas très doué, à devenir un champion. + Jeunesse + Dessins Animés + + 0 . 42 . + + Tout public + + + + Coache-moi si tu peux + La guerre du gymnase + Pour retrouver sa forme humaine, Erico Platana, grand footballeur, doit dégonfler son égo et aider Daniel, qui n'est pas très doué, à devenir un champion. + Jeunesse + Dessins Animés + + 0 . 43 . + + Tout public + + + + Coache-moi si tu peux + A deux doigts de la victoire + Pour retrouver sa forme humaine, Erico Platana, grand footballeur, doit dégonfler son égo et aider Daniel, qui n'est pas très doué, à devenir un champion. + Jeunesse + Dessins Animés + + 0 . 44 . + + Tout public + + + + Coache-moi si tu peux + Extrême joie de vivre + Erico et Daniel veulent faire sourire Timéa, la goal gothique. La croyant déprimée, Erico persuade Daniel qu'il faut à tout prix remonter le moral de Timéa, la goal gothique de l'équipe des Noisettes. Mais malgré toutes leurs tentatives de chatouilles et de cadeaux, rien ne semble marcher… + Jeunesse + Dessins Animés + + 0 . 45 . + + Tout public + + + + Coache-moi si tu peux + Le poids du sifflet + Pour retrouver sa forme humaine, Erico Platana, grand footballeur, doit dégonfler son égo et aider Daniel, qui n'est pas très doué, à devenir un champion. + Jeunesse + Dessins Animés + + 0 . 46 . + + Tout public + + + + Coache-moi si tu peux + L'héritage Platana + Pour retrouver sa forme humaine, Erico Platana, grand footballeur, doit dégonfler son égo et aider Daniel, qui n'est pas très doué, à devenir un champion. + Jeunesse + Dessins Animés + + 0 . 47 . + + Tout public + + + + Coache-moi si tu peux + La statue volée + Découvrez les toutes nouvelles aventures de Robin Cyborg Starfire Raven et Changelin dans Teen Titans Go ! Que font ces super héros quand ils ne combattent pas le crime ? Rejoins les Teen Titans et découvre leur quotidien dans une comédie hilarante ! + Jeunesse + Dessins Animés + + 0 . 48 . + + Tout public + + + + Coache-moi si tu peux + Noisettes de luxe + Gumball raconte l'histoire d'une famille de banlieue ordinaire vivant dans une ville extraordinaire. L'histoire est centrée sur la famille de Gumball un chat bleu optimiste et enthousiaste qui a le don de se mettre dans des situations cocasses. + Jeunesse + Dessins Animés + + 0 . 49 . + + Tout public + + + + Coache-moi si tu peux + Graine de champion + Pour retrouver sa forme humaine, Erico Platana, grand footballeur, doit dégonfler son égo et aider Daniel, qui n'est pas très doué, à devenir un champion. + Jeunesse + Dessins Animés + + 0 . 50 . + + Tout public + + + + Coache-moi si tu peux + L'engagement + Pour retrouver sa forme humaine, Erico Platana, grand footballeur, doit dégonfler son égo et aider Daniel, qui n'est pas très doué, à devenir un champion. + Jeunesse + Dessins Animés + + 0 . 51 . + + Tout public + + + + Un jour, une question + Comment arrêter le harcèlement à l'école ? + A quoi ça sert ? Ça veut dire quoi ? C'est qui ? Pourquoi c'est comme ça ? Les questions des enfants trouvent quotidiennement une réponse. + Jeunesse + + 8 . 1022 . + + Tout public + + + + Oscar & Malika toujours en retard + Les Lilliputiens + Aucune description + Jeunesse + Dessins Animés + + 1 . 32 . + + Tout public + + + + Oscar & Malika toujours en retard + Le chapeau du magicien + Aucune description + Jeunesse + Dessins Animés + + 1 . 33 . + + Tout public + + + + Oscar & Malika toujours en retard + Le chromapix + Oscar et Malika découvrent que leur quartier est en train d'être repeint tout en gris par un nécropix, une créature venue de l'espace et qui abhorre les couleurs. Nos héros doivent alors aider une jeune super-héroïne chromapix à l'arrêter, et, grâce à leurs pinceaux magiques, rendre à leur ville toutes ses couleurs. + Jeunesse + Dessins Animés + + 1 . 34 . + + Tout public + + + + Oscar & Malika toujours en retard + La famille pain d'épice + Aucune description + Jeunesse + Dessins Animés + + 1 . 35 . + + Tout public + + + + Oscar & Malika toujours en retard + L'agence Alphabet + Aucune description + Jeunesse + Dessins Animés + + 1 . 36 . + + Tout public + + + + Oscar & Malika toujours en retard + Les bêtes sauvages + Oscar et Malika, 10 ans, ont une telle soif d'aventure et un tel chic pour faire des bêtises qu'ils arrivent toujours en retard à l'école. + Jeunesse + Dessins Animés + + 1 . 37 . + + Tout public + + + + Héros à moitié + Samomorphose + Mo et Sam sont demi-frère et soeur. Ayant hérité ses superpouvoirs d'un aïeul superhéros, ils doivent se les partager : ce n'est qu'en se donnant la main qu'ils obtiennent le pouvoir complet. Et dans leur quotidien, ils vont en avoir besoin. + Jeunesse + Dessins Animés + + 0 . 12 . + + Tout public + + + + Héros à moitié + On s'entend trop penser + Mo et Sam sont demi-frère et soeur. Ayant hérité ses superpouvoirs d'un aïeul superhéros, ils doivent se les partager : ce n'est qu'en se donnant la main qu'ils obtiennent le pouvoir complet. Et dans leur quotidien, ils vont en avoir besoin. + Jeunesse + Dessins Animés + + 0 . 13 . + + Tout public + + + + Héros à moitié + A sa place + Mo et Sam sont demi-frère et soeur. Ayant hérité ses superpouvoirs d'un aïeul superhéros, ils doivent se les partager : ce n'est qu'en se donnant la main qu'ils obtiennent le pouvoir complet. Et dans leur quotidien, ils vont en avoir besoin. + Jeunesse + Dessins Animés + + 0 . 14 . + + Tout public + + + + Héros à moitié + Brick 3000 + Mo et Sam sont demi-frère et soeur. Ayant hérité ses superpouvoirs d'un aïeul superhéros, ils doivent se les partager : ce n'est qu'en se donnant la main qu'ils obtiennent le pouvoir complet. Et dans leur quotidien, ils vont en avoir besoin. + Jeunesse + Dessins Animés + + 0 . 15 . + + Tout public + + + + Héros à moitié + La suite après la pub + Mo et Sam sont demi-frère et soeur. Ayant hérité ses superpouvoirs d'un aïeul superhéros, ils doivent se les partager : ce n'est qu'en se donnant la main qu'ils obtiennent le pouvoir complet. Et dans leur quotidien, ils vont en avoir besoin. + Jeunesse + Dessins Animés + + 0 . 16 . + + Tout public + + + + Un jour, une question + Comment arrêter le harcèlement à l'école ? + A quoi ça sert ? Ça veut dire quoi ? C'est qui ? Pourquoi c'est comme ça ? Les questions des enfants trouvent quotidiennement une réponse. + Jeunesse + + 8 . 1022 . + + Tout public + + + + Grizzy et les lemmings + Cocochoco + Grizzy, gros ours placide et chapardeur, vit comme un roi dans la forêt canadienne, n'hésitant pas à s'approprier la cabane du garde forestier dès que celui-ci a le dos tourné. Seuls les lemmings, de petits mammifères idiots, lui contestent ses privilèges... + Jeunesse + Dessins Animés + + 2 . 14 . + + Tout public + + + + Grizzy et les lemmings + La pêche ascensionnelle + Grizzy, gros ours placide et chapardeur, vit comme un roi dans la forêt canadienne, n'hésitant pas à s'approprier la cabane du garde forestier dès que celui-ci a le dos tourné. Seuls les lemmings, de petits mammifères idiots, lui contestent ses privilèges... + Jeunesse + Dessins Animés + + 2 . 15 . + + Tout public + + + + Grizzy et les lemmings + Piratage à tartiner + Grizzy, gros ours placide et chapardeur, vit comme un roi dans la forêt canadienne, n'hésitant pas à s'approprier la cabane du garde forestier dès que celui-ci a le dos tourné. Seuls les lemmings, de petits mammifères idiots, lui contestent ses privilèges... + Jeunesse + Dessins Animés + + 2 . 16 . + + Tout public + + + + Grizzy et les lemmings + Virée en mer + Grizzy, gros ours placide et chapardeur, vit comme un roi dans la forêt canadienne, n'hésitant pas à s'approprier la cabane du garde forestier dès que celui-ci a le dos tourné. Seuls les lemmings, de petits mammifères idiots, lui contestent ses privilèges... + Jeunesse + Dessins Animés + + 2 . 17 . + + Tout public + + + + Grizzy et les lemmings + Lemmings des sables + Grizzy, gros ours placide et chapardeur, vit comme un roi dans la forêt canadienne, n'hésitant pas à s'approprier la cabane du garde forestier dès que celui-ci a le dos tourné. Seuls les lemmings, de petits mammifères idiots, lui contestent ses privilèges... + Jeunesse + Dessins Animés + + 2 . 18 . + + Tout public + + + + Grizzy et les lemmings + Coaching pas pacifique + Grizzy, gros ours placide et chapardeur, vit comme un roi dans la forêt canadienne, n'hésitant pas à s'approprier la cabane du garde forestier dès que celui-ci a le dos tourné. Seuls les lemmings, de petits mammifères idiots, lui contestent ses privilèges... + Jeunesse + Dessins Animés + + 2 . 19 . + + Tout public + + + + Grizzy et les lemmings + Ours en eaux troubles + Moka avale des pépins de pastèque et Cerise plaisante qu'il va lui-même devenir pastèque ! Mais lui prend ça très au sérieux. Et il entend bien vivre sa vie comme un véritable fruit parmi les fruits. + Jeunesse + Dessins Animés + + 2 . 20 . + + Tout public + + + + Kid'z en forme + Les portions + "Kid'z en forme" propose de multiples conseils pour la bonne santé, destinés principalement aux jeunes téléspectateurs. + Jeunesse + + 0 . 0 . + + Tout public + + + + Il était une fois... la vie + L'Œil + L'oeil humain est un organe complexe qui permet au cerveau de recevoir, sous forme d'images, des informations provenant de l'extérieur. Mais si la moindre poussière y pénètre, les enzymes des larmes se mettent au travail et se chargent aussitôt de chasser l'intrus... + Jeunesse + Dessins Animés + + 0 . 10 . + + Tout public + + + + Il était une fois... la vie + L'oreille + L'ouïe, cette sentinelle sensitive du cerveau, fait partie des cinq sens : c'est l'organe de l'audition et aussi de notre équilibre... + Jeunesse + Dessins Animés + + 0 . 11 . + + Tout public + + + + Un jour, une question + Comment arrêter le harcèlement à l'école ? + A quoi ça sert ? Ça veut dire quoi ? C'est qui ? Pourquoi c'est comme ça ? Les questions des enfants trouvent quotidiennement une réponse. + Jeunesse + + 8 . 1022 . + + Tout public + + + + Chouette, pas chouette + La casse-cou + Aucune description + Jeunesse + Dessins Animés + + 0 . 3 . + + Tout public + + + + Disco Dragon + Les filles, c'est des patates pourries + Aucune description + Jeunesse + Dessins Animés + + 0 . 10 . + + Tout public + + + + Disco Dragon + Soeur de frigo + Aucune description + Jeunesse + Dessins Animés + + 0 . 11 . + + Tout public + + + + Disco Dragon + Pas de lézard + "Y a pas de lézard". Turbo accepte que Super Lézard devienne son agent. "Raoul, roi de la glisse". Raoul tombe amoureux d'une ravissante limace. + Jeunesse + Dessins Animés + + 0 . 12 . + + Tout public + + + + Disco Dragon + Echecs et Matt + Aucune description + Jeunesse + Dessins Animés + + 0 . 13 . + + Tout public + + + + Disco Dragon + Ce n'est pas du jeux + Aucune description + Jeunesse + Dessins Animés + + 0 . 14 . + + Tout public + + + + Kid'z en forme + L'eau + Les conseils avisés des "Kid'z en Forme" à propos de l'eau, la boisson idéale de tous les instants. + Jeunesse + + 0 . 1 . + + Tout public + + + + Un jour, une question + Comment arrêter le harcèlement à l'école ? + A quoi ça sert ? Ça veut dire quoi ? C'est qui ? Pourquoi c'est comme ça ? Les questions des enfants trouvent quotidiennement une réponse. + Jeunesse + + 8 . 1022 . + + Tout public + + + + Idéfix et les Irréductibles + La bête de Lutèce + Alors que Baratine escorte Voldenuix dans les catacombes, elle est attaquée par une mystérieuse créature et disparaît. Prévenus par le hibou terrifié, les Irréductibles se rendent sur place. + Jeunesse + Dessins Animés + + 0 . 10 . + + Tout public + + + + Idéfix et les Irréductibles + Le colombier infernal + Une famille de pigeons se retrouve coincée sous une statue romaine placée par Anglaigus en haut du Grand Colombier. Idéfix, Turbine et Padgachix se rendent sur place, mais ils se retrouvent confrontés à la méfiance des volatiles. + Jeunesse + Dessins Animés + + 0 . 11 . + + Tout public + + + + Idéfix et les Irréductibles + La patrouille de Gaule + Asmatix doit se rendre à la traditionnelle réunion d'anciens combattants qui a lieu tous les ans au Grand Colombier. Idéfix et Turbine accompagnent leur copain. + Jeunesse + Dessins Animés + + 0 . 15 . + + Tout public + + + + Idéfix et les Irréductibles + Voldenuix ramène sa fiole + Voldenuix teste sur lui-même une de ses potions qui lui confère un pouvoir de télékinésie. Il veut le mettre à profit pour arrêter les grands travaux des Romains. Mais Monalisa met la patte sur la potion et hérite des mêmes pouvoirs. Le clash entre les deux met Lutèce en danger. + Jeunesse + Dessins Animés + + 0 . 16 . + + Tout public + + + + Anatole Latuile + Cache-cache vaccin + Anatole Latuile, un écolier dissipé mais plein de ressources, dépense toute son énergie à s'attirer des ennuis. + Jeunesse + Dessins Animés + + 1 . 12 . + + Tout public + + + + Anatole Latuile + La méthode Olympe + Anatole Latuile, un écolier dissipé mais plein de ressources, dépense toute son énergie à s'attirer des ennuis. + Jeunesse + Dessins Animés + + 1 . 13 . + + Tout public + + + + Anatole Latuile + Les malheurs d'Ulysse + Anatole Latuile, un écolier dissipé mais plein de ressources, dépense toute son énergie à s'attirer des ennuis. + Jeunesse + Dessins Animés + + 1 . 14 . + + Tout public + + + + Anatole Latuile + Lettre à Marjane + Anatole Latuile, un écolier dissipé mais plein de ressources, dépense toute son énergie à s'attirer des ennuis. + Jeunesse + Dessins Animés + + 1 . 15 . + + Tout public + + + + Un jour, une question + Comment arrêter le harcèlement à l'école ? + A quoi ça sert ? Ça veut dire quoi ? C'est qui ? Pourquoi c'est comme ça ? Les questions des enfants trouvent quotidiennement une réponse. + Jeunesse + + 8 . 1022 . + + Tout public + + + + Les extras curieux + Vol d'oiseaux + A quoi sert la trompe de l'éléphant ? Comment se forment les glaciers ? Comment font les crabes pour respirer dans l'eau mais aussi hors de l'eau ? En 3 minutes chrono, Léo et Vinci, un duo d'extraterrestres très curieux répondent à toutes ces questions. + Jeunesse + Mag. Jeunesse + + 1 . 7 . + + Tout public + + + + Les extras curieux + Baleines + A quoi sert la trompe de l'éléphant ? Comment se forment les glaciers ? Comment font les crabes pour respirer dans l'eau mais aussi hors de l'eau ? En 3 minutes chrono, Léo et Vinci, un duo d'extraterrestres très curieux répondent à toutes ces questions. + Jeunesse + Mag. Jeunesse + + 1 . 10 . + + Tout public + + + + Les Pyjamasques + Les pyjamasques et Apophis + Amis, voisins, et acolytes dans leurs aventures Sacha, Amaya et Greg revêtent leur costumes de super héros le soir venu pour devenir Yoyo, Bibou et Gluglu et faire régner la justice face à leurs ennemis jurés: Roméo le génie de la technologie, Sorceline la petite sorcière lunaire et Ninjaka l'insaisissable ninja. + Jeunesse + Dessins Animés + + 3 . 20 . + + Tout public + + + + Les Pyjamasques + Apophis et les plumes de Bibou + Amis, voisins, et acolytes dans leurs aventures Sacha, Amaya et Greg revêtent leur costumes de super héros le soir venu pour devenir Yoyo, Bibou et Gluglu et faire régner la justice face à leurs ennemis jurés: Roméo le génie de la technologie, Sorceline la petite sorcière lunaire et Ninjaka l'insaisissable ninja. + Jeunesse + Dessins Animés + + 3 . 20 . + + Tout public + + + + Les Pyjamasques + Les Pyjamasques et le char d'Apophis + Amis, voisins, et acolytes dans leurs aventures Sacha, Amaya et Greg revêtent leur costumes de super héros le soir venu pour devenir Yoyo, Bibou et Gluglu et faire régner la justice face à leurs ennemis jurés: Roméo le génie de la technologie, Sorceline la petite sorcière lunaire et Ninjaka l'insaisissable ninja. + Jeunesse + Dessins Animés + + 3 . 21 . + + Tout public + + + + Scooby-Doo et la folie du catch + Sammy et Scooby-Doo ont gagné des billets pour assister au match de catch WrestleMania à La Nouvelle-Orléans. Sur place, ils découvrent qu'un horrible Ours Fantôme sème la terreur dans la ville. Afin de contrer les plans machiavéliques de ce monstre, Scooby-Doo demande de l'aide aux superstars du catch. + Film + Film Animation + + + Tout public + + + + Bienvenue chez les Mouche + La boule d'asticots + Louis et Abacus veulent faire une partie de leur jeu préféré mais ils ne trouvent pas de place confortable, calme et tranquille, malgré avoir tout essayé. + Jeunesse + Dessins Animés + + 0 . 17 . + + Tout public + + + + L'armure de Jade + Le parfum + Lan Jun est à la recherche d'un flacon du parfum préféré de sa mère - c'est un objet vintage et rare, qui s'avère contenir un Eclat. En effet, celui qui se parfume devient le plus grand fan de la première personne qu'il voit. Mais c'est La Tigresse qui met la main dessus en premier, et elle compte bien l'utiliser pour enfin capturer un Beasticon… Cette affaire ne sent pas bon ! + Jeunesse + Dessins Animés + + 0 . 14 . + + Tout public + + + + L'armure de Jade + La convention des héros + Gumball raconte l'histoire d'une famille de banlieue ordinaire vivant dans une ville extraordinaire. L'histoire est centrée sur la famille de Gumball un chat bleu optimiste et enthousiaste qui a le don de se mettre dans des situations cocasses. + Jeunesse + Dessins Animés + + 0 . 15 . + + Tout public + + + + Mystery Lane + L'attaque de la fourmi géante + Aucune description + Jeunesse + Dessins Animés + + 0 . 10 . + + Tout public + + + + Okoo-koo + Manon, Bouba, Julia et Sam, quatre jeunes animateurs, divertissent les enfants avec une pointe de pédagogie. + Jeunesse + Mag. Jeunesse + + + Tout public + + + + Mystery Lane + L'insaisissable Robin des animaux + Aucune description + Jeunesse + Dessins Animés + + 0 . 18 . + + Tout public + + + + Angelo la débrouille + Dark Angelo 3 : l'aube de l'injustice + Quand on a onze ans, la vie n'est pas tous les jours facile, surtout pour le pauvre Angelo, avec son petit frère qui lui empoisonne l'existence, sa grande sœur qui le traite comme un gamin, ses parents au temps libre agité. Mais Angelo a des dons d'anthropologue et a fait de l'étude des comportements son arme fatale pour se faire une place dans ce monde sans pitié... + Jeunesse + Dessins Animés + + 4 . 34 . + + Tout public + + + + Okoo-koo + Manon, Bouba, Julia et Sam, quatre jeunes animateurs, divertissent les enfants avec une pointe de pédagogie. + Jeunesse + Mag. Jeunesse + + + Tout public + + + + Angelo la débrouille + Dark Angelo 3 : l'aube de l'injustice + Quand on a onze ans, la vie n'est pas tous les jours facile, surtout pour le pauvre Angelo, avec son petit frère qui lui empoisonne l'existence, sa grande sœur qui le traite comme un gamin, ses parents au temps libre agité. Mais Angelo a des dons d'anthropologue et a fait de l'étude des comportements son arme fatale pour se faire une place dans ce monde sans pitié... + Jeunesse + Dessins Animés + + 4 . 35 . + + Tout public + + + + Les as de la jungle à la rescousse + Les Junglés + La jungle n'est pas toujours un endroit paisible. Les animaux qui la peuplent en savent quelque chose. Maurice, un manchot tigré, Batricia, une chauve-souris, Miguel, un gorille ou encore Gilbert, un tarsier, sont là pour assurer la sécurité de leurs amis. Pour les appeler, il suffit de tirer un signal d'alarme qui envoie de petits nuages de fumée au sommet d'un volcan. + Jeunesse + Dessins Animés + + 2 . 8 . + + Tout public + + + + Les as de la jungle à la rescousse + Une nuit en amphore + La jungle n'est pas toujours un endroit paisible. Les animaux qui la peuplent en savent quelque chose. Maurice, un manchot tigré, Batricia, une chauve-souris, Miguel, un gorille ou encore Gilbert, un tarsier, sont là pour assurer la sécurité de leurs amis. Pour les appeler, il suffit de tirer un signal d'alarme qui envoie de petits nuages de fumée au sommet d'un volcan. + Jeunesse + Dessins Animés + + 2 . 9 . + + Tout public + + + + Les as de la jungle à la rescousse + L'invasion des profanateurs d'agriculture + La jungle n'est pas toujours un endroit paisible. Les animaux qui la peuplent en savent quelque chose. Maurice, un manchot tigré, Batricia, une chauve-souris, Miguel, un gorille ou encore Gilbert, un tarsier, sont là pour assurer la sécurité de leurs amis. Pour les appeler, il suffit de tirer un signal d'alarme qui envoie de petits nuages de fumée au sommet d'un volcan. + Jeunesse + Dessins Animés + + 2 . 10 . + + Tout public + + + + Okoo-koo + Manon, Bouba, Julia et Sam, quatre jeunes animateurs, divertissent les enfants avec une pointe de pédagogie. + Jeunesse + Mag. Jeunesse + + + Tout public + + + + Les as de la jungle à la rescousse + Mon fils, ce héros + La jungle n'est pas toujours un endroit paisible. Les animaux qui la peuplent en savent quelque chose. Maurice, un manchot tigré, Batricia, une chauve-souris, Miguel, un gorille ou encore Gilbert, un tarsier, sont là pour assurer la sécurité de leurs amis. Pour les appeler, il suffit de tirer un signal d'alarme qui envoie de petits nuages de fumée au sommet d'un volcan. + Jeunesse + Dessins Animés + + 2 . 11 . + + Tout public + + + + Ninjago + Le procès des ninjas + Le procès des ninjas, défendus par Dareth, se termine très vite et nos héros sont envoyés à Kryptarium. Les ninjas tombent sur de vieux ennemis, dont Ronin, qui prépare sa vengeance. Lloyd reçoit la visite d'un mystérieux visiteur masqué qui lui transmet un message énigmatique de la part du Roi de Cristal. Le Roi Vangelis est invité à rejoindre le Conseil de ce dernier et s'évade de prison. + Jeunesse + Dessins Animés + + 13 . 6 . + + Tout public + + + + Ninjago + Le blues de Kryptarium + Nya se sent impuissante sans ses pouvoirs élémentaires, mais elle trouve l'inspiration en tombant sur les plans du robot du Samouraï X. À Kryptarium, Lloyd soupçonne le Roi de Cristal de rassembler leurs vieux ennemis et de vouloir libérer Pythor. Les ninjas s'évadent de leur cellule pour l'empêcher de s'échapper, mais après une course-poursuite chaotique, Pythor parvient à s'enfuir. + Jeunesse + Dessins Animés + + 13 . 7 . + + Tout public + + + + Dragons : les neuf royaumes + Suis l'éclair! + Les dragons ne sont plus rien d'autre qu'une légende. Un jour, une fissure lézarde la surface de la terre. Des scientifiques s'en vont l'étudier. Mais des enfants les ont devancés et découvre là des dragons qui se cachent. Ils décident de les protéger, et de maintenir coûte que coûte leur existence secrète. + Jeunesse + Dessins Animés + + 1 . 6 . + + Tout public + + + + Dragons : les neuf royaumes + Sauve qui feu + Les dragons ne sont plus rien d'autre qu'une légende. Un jour, une fissure lézarde la surface de la terre. Des scientifiques s'en vont l'étudier. Mais des enfants les ont devancés et découvre là des dragons qui se cachent. Ils décident de les protéger, et de maintenir coûte que coûte leur existence secrète. + Jeunesse + Dessins Animés + + 2 . 0 . + + Tout public + + + + Organisation Super Insolite + La voix + Chaque fois que quelque chose d'inhabituel se produit, ces deux agents enfants, Olive et Otto sont chargés de remettre les choses à leur place en se servant des concepts mathématiques. + Jeunesse + Série Jeunesse + + 1 . 18 . + + Tout public + + + + Organisation Super Insolite + Équipe à problèmes + Chaque fois que quelque chose d'inhabituel se produit, ces deux agents enfants, Olive et Otto sont chargés de remettre les choses à leur place en se servant des concepts mathématiques. + Jeunesse + Série Jeunesse + + 1 . 18 . + + Tout public + + + + Consomag + Sécurisation des téléphones mobiles : comment faire ? + Le magazine de l'Institut national de la consommation donne à chacun des conseils pratiques pour mieux consommer. + Magazine + Mag. Service + + 0 . 0 . + + Tout public + + + + Culturebox l'émission + Aucune description + Magazine + Mag. Musique + + + Tout public + + + + Outre-mer Street Art + De La Réunion à la Nouvelle-Calédonie + Le street art est présent massivement en Outre-mer. A Tahiti ou à La Réunion, les festivals se multiplient et on y expose les street artistes les plus reconnus. + Documentaire + Doc. Culture + + 0 . 0 . + + Tout public + + + + Outre-mer Street Art + De la Martinique à Mayotte + Ce programme part à la rencontre de sept artistes qui mélangent les genres et s'emparent de leurs régions insulaires pour donner une couleur singulière à leurs créations. + Documentaire + Doc. Culture + + 0 . 0 . + + Tout public + + + + Le pitch cinéma + Les films de cinéma vus par ceux qui ne les ont pas vus. + Magazine + Mag. Cinéma + + + Tout public + + + + Marilyn, femme d'aujourd'hui + Séquences inédites et archives rares brossent le portrait, soixante ans après sa disparition tragique, de Marilyn Monroe, une femme résolument moderne. + Documentaire + Doc. Culture + + + Tout public + + + + Le Rouge et le Noir + "Le Rouge et le Noir", grand ballet romantique de Pierre Lacotte, a été filmé au Palais Garnier lors de sa création en 2021. + Divertissement + Danse + + + Tout public + + + + Courant d'art + Ivan Othenin-Girard + Un gros plan sur le travail artistique d'Ivan Othenin-Girard, dont les oeuvres sont le plus souvent inspirées par les thèmes liés au monde astrologique. + Documentaire + Doc. Culture + + 0 . 0 . + + Tout public + + + + Culturebox l'émission + Aucune description + Magazine + Mag. Musique + + + Tout public + + + + Oggy Oggy + Mallow et le robot + Quand Mallow se blesse au cours d'un jeu, il est mis à l'écart. Oggy Oggy et Sporty lui offrent un robot pour l'occuper et continuer à jouer de leur côté... + Jeunesse + Dessins Animés + + 0 . 1 . + + Tout public + + + + Oggy Oggy + La voleuse de rêves + Curieux, Oggy Oggy a toujours hâte de vivre de nouvelles aventures avec ses amis. Sa maladresse le conduit parfois à faire des erreurs, mais ses idées géniales et farfelues gagnent toujours. + Jeunesse + Dessins Animés + + 1 . 23 . + + Tout public + + + + Oggy Oggy + L'amitié envolée + Curieux, Oggy Oggy a toujours hâte de vivre de nouvelles aventures avec ses amis. Sa maladresse le conduit parfois à faire des erreurs, mais ses idées géniales et farfelues gagnent toujours. + Jeunesse + Dessins Animés + + 1 . 22 . + + Tout public + + + + Simon + Disparu + Simon joue aux voitures avec Ferdinand mais il a soudain très envie de faire pipi. Lorsqu'il revient, Ferdinand est parti et la voiture de Simon a disparu. Persuadé que son copain la lui a chipée, Simon file chez Ferdinand qui habite juste à côté mais il ne trouve rien. En revenant chez lui, contrarié, Simon retrouve sa voiture dans les toilettes, là où il l'avait oubliée... + Jeunesse + Dessins Animés + + 0 . 20 . + + Tout public + + + + Simon + Bling Blang + Simon a trouvé une guitare dans le grenier. Eva, sa maman, propose de lui apprendre à en jouer, mais Simon préfère impressionner Ferdinand et Lou qui s'amusent dans le jardin. Les enfants décident de créer un groupe musical mais ils constatent rapidement qu'ils jouent très mal. Simon demande alors à sa maman quelques conseils qu'il va ensuite donner à ses copains... + Jeunesse + Dessins Animés + + 0 . 24 . + + Tout public + + + + Le village enchanté de Pinocchio + Le mauvais chapeau + C'est la fête ce soir en forêt. Problème : Pinocchio n'a pas répété la chorégraphie de la parade des Lutins (jonglage avec chapeau) : Folet congédie Pinocchio. + Jeunesse + Dessins Animés + + 0 . 5 . + + Tout public + + + + Le village enchanté de Pinocchio + Le poisson d'or + C'est le jour du Poisson d'or : la personne qui le pêchera pourra lui demander d'exaucer un voeu - celui de Pinocchio est que son nez ne le trahisse plus quand il ment. Mais tous ses amis, et Volpek en particulier, sont également décidés à voir leur voeu exaucé. Après avoir joué cavalier seul, les copains s'allient autour de Pinocchio contre Volpek qui triche... + Jeunesse + Dessins Animés + + 0 . 6 . + + Tout public + + + + Oui-Oui, enquêtes au pays des jouets + L'affaire des pockets disparus + Chaque aventure est l'occasion pour Oui-Oui d'élucider un mystère. Équipé de sa tablette "QuiQuandQuoi " et de son kit d'investigation composé d'une loupe, d'une lampe torche, de jumelles et de talkies-walkies, il propose aux enfants de mener une enquête et de récolter des indices… jusqu'à la résolution de l'affaire. + Jeunesse + Dessins Animés + + 1 . 0 . + + Tout public + + + + Oui-Oui, enquêtes au pays des jouets + L'affaire du monstre aux choux + Oui-Oui a troqué son taxi légendaire contre de nouveaux engins. Entouré de ses amis de toujours et de nouveaux compagnons, le lutin à grelot est amené à quitter Miniville pour explorer le pays des Jouets. + Jeunesse + Dessins Animés + + 1 . 1 . + + Tout public + + + + Oui-Oui, enquêtes au pays des jouets + L'affaire des arbres posés la tête en bas + Oui-Oui a troqué son taxi légendaire contre de nouveaux engins. Entouré de ses amis de toujours et de nouveaux compagnons, le lutin à grelot est amené à quitter Miniville pour explorer le pays des Jouets. + Jeunesse + Dessins Animés + + 1 . 6 . + + Tout public + + + + T'choupi + T'choupi photographe + T'choupi souhaite prendre des photos de tout ce qu'il voit. Impatient, il n'écoute pas vraiment les conseils de Papi'Cha... + Jeunesse + Dessins Animés + + 0 . 56 . + + Tout public + + + + T'choupi + T'choupi apprend à conduire + A bord de sa voiture décapotable, T'choupi roule comme un fou dans le jardin de ses grands-parents. Papi'Cha décide de lui apprendre à bien conduire... + Jeunesse + Dessins Animés + + 0 . 44 . + + Tout public + + + + T'choupi + T'choupi en avion + Toine emmène T'choupi faire son baptême de l'air. Le pingouin aperçoit sa maison depuis l'avion et fait la connaissance d'un parachutiste... + Jeunesse + Dessins Animés + + 0 . 59 . + + Tout public + + + + Hé, Oua-Oua + Le badge de rêve + Le gros chien Oua-Oua anime le Club des Ecureuils, un centre d'activités extrascolaires. Quand un problème se pose, il accourt avec ses amis, Tag le rhino, Betty la pieuvre, Rouly l'hippopotame, Youpi le crocodile et Nini la souris futée, pour le régler dans la bonne humeur. + Jeunesse + Dessins Animés + + 3 . 16 . + + Tout public + + + + Hé, Oua-Oua + Le badge Cirque + Le gros chien Oua-Oua anime le Club des Ecureuils, un centre d'activités extrascolaires. Quand un problème se pose, il accourt avec ses amis, Tag le rhino, Betty la pieuvre, Rouly l'hippopotame, Youpi le crocodile et Nini la souris futée, pour le régler dans la bonne humeur. + Jeunesse + Dessins Animés + + 0 . 32 . + + Tout public + + + + Tangranimo + Plus grand plus haut + Lors d'un concours de la tour de cubes de glace la plus haute, Géo croit pouvoir faire mieux qu'un dinosaure. + Jeunesse + Dessins Animés + + 0 . 32 . + + Tout public + + + + Ernest et Célestine + La potion d'hibernation + Dans sa maison délabrée, Ernest, un ours bougon au grand coeur, a recueilli Célestine, une petite souris orpheline et malicieuse. Les deux amis ont des caractères aussi différents que leur gabarit. Cela ne les empêche pas de vivre des aventures pleines de fantaisie. + Jeunesse + Dessins Animés + + 1 . 20 . + + Tout public + + + + Les contes de Masha + Le petit cheval bossu + Masha, complice joyeuse et impertinente de l'ours Michka, raconte à sa manière les grands contes classiques. + Jeunesse + Dessins Animés + + 0 . 25 . + + Tout public + + + + Masha et Michka + Golf à trois + Masha est une petite fille très curieuse et active qui vit près de la forêt. Elle entraîne son ami Michka, un gros ours qui aime le calme et le confort, dans des aventures passionnantes. Un lièvre, un panda, un cochon et plein d'autres animaux viennent les rejoindre dans leurs péripéties. Ensemble, ils se sortent des situations les plus délicates. + Jeunesse + Dessins Animés + + 2 . 13 . + + Tout public + + + + Masha et Michka + Ce hockey est OK + Masha est une petite fille très curieuse et active qui vit près de la forêt. Elle entraîne son ami Michka, un gros ours qui aime le calme et le confort, dans des aventures passionnantes. Un lièvre, un panda, un cochon et plein d'autres animaux viennent les rejoindre dans leurs péripéties. Ensemble, ils se sortent des situations les plus délicates. + Jeunesse + Dessins Animés + + 2 . 18 . + + Tout public + + + + Masha et Michka + Un quartet amélioré + Masha est une petite fille très curieuse et active qui vit près de la forêt. Elle entraîne son ami Michka, un gros ours qui aime le calme et le confort, dans des aventures passionnantes. Un lièvre, un panda, un cochon et plein d'autres animaux viennent les rejoindre dans leurs péripéties. Ensemble, ils se sortent des situations les plus délicates. + Jeunesse + Dessins Animés + + 2 . 15 . + + Tout public + + + + Simon + C'est qui le plus fort ? + Simon joue à cache-cache dans le jardin avec son amie Lou et son petit frère Gaspard. Lou n'arrive pas à trouver Simon qui a des règles du jeu bien à lui : il change en effet de cachette tout le temps. Lou s'en rend compte et adopte les méthodes de son ami. Simon est bien attrapé et Lou s'aperçoit qu'avec ces règles, le jeu est encore plus amusant... + Jeunesse + Dessins Animés + + 1 . 0 . + + Tout public + + + + Simon + Le trésor de Maman + Aucune description + Jeunesse + Dessins Animés + + 2 . 3 . + + Tout public + + + + Simon Superlapin + Le voleur de bonbons + Simon et sa petite bande de copains deviennent des super héros et se transforment en Superlapin, Super Lou, Super Ferdi et Capitaine Lapin. + Jeunesse + Dessins Animés + + 0 . 1 . + + Tout public + + + + Pompon Ours + Moi aussi je sais + Rita connait des choses extraordinaires sur les pommes de pin. Elle impressionne Gabi mais aussi Pompon qui, du coup, se souvient lui aussi de quelque chose d'extraordinaire : les montagnes poussent grâce à des cailloux-pousse-montagne ! Émerveillés, les trois amis partent alors à la recherche d'un de ces cailloux… + Jeunesse + Dessins Animés + + 1 . 33 . + + Tout public + + + + Pompon Ours + L'ourson papillon + Pompon aimerait être aussi grand que son papa, et vite ! Il décide donc de se fabriquer un cocon comme les papillons. + Jeunesse + Dessins Animés + + 1 . 10 . + + Tout public + + + + Bluey + A cheval ! + La série suit Bluey, un chiot anthropomorphe de six ans, Bouvier australien, caractérisé par son abondance d'énergie, son imagination et sa curiosité. + Jeunesse + Dessins Animés + + 0 . 8 . + + Tout public + + + + Bluey + Les petits bateaux + Bluey et Mackenzie sont ravis à l'idée de passer du temps avec Mia et Capitaine. Quand les deux plus âgés partent jouer sans eux, Calypso leur explique qu'il est parfois difficile de grandir. + Jeunesse + Dessins Animés + + 1 . 30 . + + Tout public + + + + Peppa Pig + Les jeux sur papier + Peppa est une fillette cochon un brin impertinente et quelques fois autoritaire. Elle vit avec ses parents et son petit frère George. Comme tous ses congénères, son passe-temps préféré est de sauter un peu partout dans les flaques de boue, de grogner et de rire. + Jeunesse + Dessins Animés + + 9 . 1 . + + Tout public + + + + Peppa Pig + Les verres + Peppa est une fillette cochon un brin impertinente et quelques fois autoritaire. Elle vit avec ses parents et son petit frère George. Comme tous ses congénères, son passe-temps préféré est de sauter un peu partout dans les flaques de boue, de grogner et de rire. + Jeunesse + Dessins Animés + + 9 . 11 . + + Tout public + + + + Peppa Pig + Le bureau de Peppa + Peppa est une fillette cochon un brin impertinente et quelques fois autoritaire. Elle vit avec ses parents et son petit frère George. Comme tous ses congénères, son passe-temps préféré est de sauter un peu partout dans les flaques de boue, de grogner et de rire. + Jeunesse + Dessins Animés + + 9 . 8 . + + Tout public + + + + Peppa Pig + Le petit martinet + Peppa est une fillette cochon un brin impertinente et quelques fois autoritaire. Elle vit avec ses parents et son petit frère George. Comme tous ses congénères, son passe-temps préféré est de sauter un peu partout dans les flaques de boue, de grogner et de rire. + Jeunesse + Dessins Animés + + 9 . 9 . + + Tout public + + + + Le Petit Prince et ses amis + La pagaille des étoiles + A bord de l'astérovaisseau, le Petit Prince emmène deux enfants, Charlotte et Elijah, à la rencontre de l'univers et de ses habitants pour leur fait vivre des aventures. + Jeunesse + Dessins Animés + + 0 . 21 . + + Tout public + + + + Le Petit Prince et ses amis + De toutes les couleurs + Aucune description + Jeunesse + Dessins Animés + + 0 . 22 . + + Tout public + + + + Billy, le hamster cowboy + L'appel de la plume + Aucune description + Jeunesse + Dessins Animés + + 0 . 12 . + + Tout public + + + + Edmond et Lucy + Les chevaliers du potager + Aujourd'hui, Edmond et Lucy sont en mission de défense du potager contre les envahisseurs et jouent aux chevaliers du potager ! Nos deux héros ouvrent l'œil, aucun vers de terre, insecte ou hérisson ne pourra rentrer ! Tiens donc, mais est ce tout à fait juste de considérer ces petites bêtes comme les ennemis du jardinier ? + Jeunesse + Dessins Animés + + 0 . 3 . + + Tout public + + + + Végétosaures + Cocodons en liberté + Au cours de l'ère du Croustillant Supérieur, le monde est dominé par les créatures les plus juteuses et les plus vitaminées qui ont jamais peuplé la terre : les plantureux végétosaures. Ginger, une jeune tricarrotops, vit de savoureuses aventures avec ses nouveaux amis, les petit pois Rex. + Jeunesse + Dessins Animés + + 1 . 16 . + + Tout public + + + + Contes Chrono + Le loup dans les bois + Une plongée dans l'univers des contes de fées ; des rebondissements nouveaux et surprenants agrémentent et revisitent de célèbres contes classiques. + Jeunesse + Dessins Animés + + 1 . 4 . + + Tout public + + + + Silence ça pousse, junior ! + La forêt et le compost + A partir d'expériences menées in situ avec Stéphane Marie dans le jardin de l'émission, les enfants découvrent le développement des végétaux, leurs besoins vitaux et leur mode de reproduction. + Magazine + Mag. Éducation + + 0 . 0 . + + Tout public + + + + SOS animaux orphelins + Un étrange petit chiot + Au HERD, Kanissa, une albinos de 10 mois, se remet d'une grave blessure. Au Riverside Wildlife, Rosie, une femelle babouin, est soignée pour une blessure. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + Silence, ça pousse ! + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Silence, ça pousse ! + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Vivre loin du monde + Croatie + Ben Fogle part dans les forêts de l'est de la Croatie, à la rencontre de Nikola Boric, un ancien entraîneur olympique qui vit désormais en ermite en pleine nature. + Documentaire + Doc. Société + + 10 . 0 . + + Tout public + + + + Pérou, le secret des lignes nazcas + Des centaines de géoglyphes, que l'on trouve au sud du Pérou, ont été tracées par le peuple Nazca et par le peuple qui l'a précédé, les Paracas. + Documentaire + Doc. Histoire + + + Tout public + + + + Le peuple du requin et moi + Les habitants de l'île d'Owarigi, dans le Pacifique Sud, côtoient les requins : certains les chassent, à défaut de poissons, mettant en danger l'équilibre des récifs. + Documentaire + Doc. Nature + + + Tout public + + + + Les plus beaux treks d'outre-mer + Tahiti + Le trek est une belle manière de découvrir la Polynésie autrement, côté terre, avec toujours la possibilité de plonger dans les eaux turquoise. + Documentaire + Doc. Évasion + + 0 . 0 . + + Tout public + + + + Destination 2024 + Paris accueillera en 2024 les XXXIIIe Jeux olympiques d'été. Zoom sur un champion en préparation. + Magazine + Mag. Sport + + + Tout public + + + + Les avions du bout du monde + Brésil, le gardien de l'Amazonie + Fin connaisseur de l'Amazonie, le pilote Fernando Bezerra participe aux activités de Greenpeace au Brésil en assurant des missions variées et vitales. + Documentaire + Doc. Découverte + + 3 . 0 . + + Tout public + + + + C'est bon à savoir + "C'est bon à savoir" décrypte les bénéfices pour la santé de la consommation des fruits et légumes et analyse leur mode de culture, sans oublier de parler d'environnement. Avec la complicité d'experts, ce programme revient quelques idées reçues. + Info-Météo + Information + + + Tout public + + + + C dans l'air + Caroline Roux (du lundi au jeudi) et Axel de Tarlé (le vendredi et samedi) décryptent en direct l'actualité en compagnie de quatre experts. En fin d'émission, ils répondent aux questions des téléspectateurs. + Info-Météo + Information + + + Tout public + + + + C l'hebdo + Aucune description + Magazine + Débat + + + Tout public + + + + Vu + "Vu " : le zapping quotidien, impertinent et libre, sur le monde de l'image. + Divertissement + + + Tout public + + + + C l'hebdo la suite + "C l'hebdo la suite", ce sont vingt minutes supplémentaires, au cours desquelles journalistes et chroniqueurs portent un regard original et pertinent sur l'actualité française et internationale de la semaine écoulée. + Magazine + Débat + + + Tout public + + + + Ma maison de A à Z + Poser une cloison atelier + Les différentes étapes de la construction, de l'aménagement et de la décoration d'une maison. + Magazine + Mag. Service + + 0 . 0 . + + Tout public + + + + Echappées belles + Envoûtante Ecosse + Entre coutumes insolites et paysages enchanteurs, l'Ecosse est un pays onirique et singulier. Au cours de son voyage, de Glasgow jusqu'au coeur du Parc national du Loch Lomond et des Trossachs, en passant par le village de pêcheurs de Tayvallich, Ismaël Khelifa constate que les Ecossais sont fiers de leurs traditions. + Magazine + Mag. Découverte + + 17 . 0 . + + Tout public + + + + 100 000 ans de beauté + Le sourire d'Eros + Aucune description + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Echappées belles + Vélomaritime : d'Etretat à Calais + Longue de 1500 kilomètres, la piste cyclable "Vélomaritime" offre une vue imprenable sur le littoral nord de la France et ses sites emblématiques tels qu'Etretat et la baie de Somme. Ce parcours aménagé propose une façon écologique de découvrir trois sites classés à l'Unesco, cinq "Grands Sites de France" et une cinquantaine de phares. + Magazine + Mag. Découverte + + 15 . 0 . + + Tout public + + + + La p'tite librairie + Malavita, de Tonino Benacquista + François Busnel propose chaque jour de découvrir ou redécouvrir une oeuvre française ou étrangère : roman, essai, grand classique ou encore bande dessinée. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Voyages au centre de la Terre : dans les pas de Jules Verne + En Islande et à Oman, des expéditions scientifiques dans les entrailles de la Terre font revivre les grands moments du "Voyage au centre de la Terre", de Jules Verne. + Documentaire + Doc. Sc. & Tech. + + + Tout public + + + + Afrique du Sud, paradis océanique + Le retour des géantes des mers + Gros plan sur la baleine à bosse, en suivant son périple des côtes de l'Antarctique au littoral africain et plus particulièrement son passage en Afrique du Sud. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + Les orphelins grizzlis & moi + Les premiers mois + Le documentariste Gordon Buchanan rejoint les Pazhetnov, une famille de biologistes russes pionnière dans la réintroduction d'oursons grizzlys dans la nature. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + La nuit France 5 + Magazine de reportages + Magazine + Mag. Société + + + Tout public + + + + Oggy Oggy + Un fruit délicieux + Policier se délecte d'un jus de fruit apparemment délicieux, sous les yeux d'Oggy Oggy. Alléché, celui-ci veut le goûter mais Policier refuse de partager... + Jeunesse + Dessins Animés + + 0 . 2 . + + Tout public + + + + Oggy Oggy + Livraison express + Oggy Oggy remplace Chaviatrice, postière aérienne. Il découvre que les clients sont très mécontents à cause de son retard. Pour aller plus vite, Oggy Oggy pousse son avion si fort qu'il tombe en panne alors qu'il lui reste encore des colis à livrer... + Jeunesse + Dessins Animés + + 0 . 3 . + + Tout public + + + + Oggy Oggy + Un cadeau pour le chat des bois + Curieux, Oggy Oggy a toujours hâte de vivre de nouvelles aventures avec ses amis. Sa maladresse le conduit parfois à faire des erreurs, mais ses idées géniales et farfelues gagnent toujours. + Jeunesse + Dessins Animés + + 1 . 24 . + + Tout public + + + + Oggy Oggy + Chapardages + Curieux, Oggy Oggy a toujours hâte de vivre de nouvelles aventures avec ses amis. Sa maladresse le conduit parfois à faire des erreurs, mais ses idées géniales et farfelues gagnent toujours. + Jeunesse + Dessins Animés + + 1 . 25 . + + Tout public + + + + Simon + Assistant docteur + Le docteur vient vacciner Simon et son petit frère Gaspard. Voyant que les enfants ont peur, il propose à Simon de devenir son assistant. Simon tient son rôle très sérieusement et le duo fonctionne si bien que Gaspard se détend et que le docteur peut lui faire son vaccin sans problème. Lorsque vient le tour de Simon, il n'a "même pas mal ! "... + Jeunesse + Dessins Animés + + 0 . 25 . + + Tout public + + + + Simon + Pas facile de choisir + Simon veut donner à Ferdinand un petit dinosaure en plastique mais Mamadou l'aimerait lui aussi : lequel de ses copains Simon va-t-il choisir ? + Jeunesse + Dessins Animés + + 0 . 31 . + + Tout public + + + + Le village enchanté de Pinocchio + Les deux Pinocchios + Pinocchio a promis d'aller à l'anniversaire de Léonie quand il se rappelle que la fée Bleue doit justement lui rendre visite au même moment. De peur de blesser son amie, le pantin tente d'être à deux endroits en même temps, multipliant les allers-retours entre la fête de Léonie et le goûter avec sa marraine... + Jeunesse + Dessins Animés + + 0 . 7 . + + Tout public + + + + Le village enchanté de Pinocchio + La cabane abandonnée + Pinocchio découvre une cabane abandonnée, mais Volpek se l'approprie et y attire toute la bande. Vexé, Pinocchio décide de construire sa propre cabane pour y attirer ses amis. Alors que les deux copains se défient, la véritable propriétaire de la cabane réapparaît : c'est Grilda, la sorcière de la forêt... + Jeunesse + Dessins Animés + + 0 . 8 . + + Tout public + + + + Oui-Oui, enquêtes au pays des jouets + L'affaire du départ de Tortillard + Oui-Oui a troqué son taxi légendaire contre de nouveaux engins. Entouré de ses amis de toujours et de nouveaux compagnons, le lutin à grelot est amené à quitter Miniville pour explorer le pays des Jouets. + Jeunesse + Dessins Animés + + 1 . 2 . + + Tout public + + + + Oui-Oui, enquêtes au pays des jouets + L'affaire de l'étrange conduite de Vroum + Oui-Oui a troqué son taxi légendaire contre de nouveaux engins. Entouré de ses amis de toujours et de nouveaux compagnons, le lutin à grelot est amené à quitter Miniville pour explorer le pays des Jouets. + Jeunesse + Dessins Animés + + 1 . 3 . + + Tout public + + + + Oui-Oui, enquêtes au pays des jouets + L'affaire de la fusée de Dinasaurus + Oui-Oui a troqué son taxi légendaire contre de nouveaux engins. Entouré de ses amis de toujours et de nouveaux compagnons, le lutin à grelot est amené à quitter Miniville pour explorer le pays des Jouets. + Jeunesse + Dessins Animés + + 1 . 4 . + + Tout public + + + + T'choupi + Les souris du grenier de Papi'Cha + T'choupi et Doudou lisent dans le grenier de Papi'Cha. Lorsqu'ils s'aperçoivent que des livres ont été grignotés par des souris, ils construisent un piège... + Jeunesse + Dessins Animés + + 0 . 57 . + + Tout public + + + + T'choupi + T'choupi à la pépinière + T'choupi et Malola se rendent à la pépinière. Là, ils font la connaissance de Lili, une horticultrice excentrique qui chante pour faire pousser ses plantes... + Jeunesse + Dessins Animés + + 0 . 55 . + + Tout public + + + + T'choupi + La cabane de T'choupi + T'choupi et Doudou construisent une cabane rien que pour eux... + Jeunesse + Dessins Animés + + 0 . 61 . + + Tout public + + + + Hé, Oua-Oua + Le badge Boîte en carton + Le gros chien Oua-Oua anime le Club des Ecureuils, un centre d'activités extrascolaires. Quand un problème se pose, il accourt avec ses amis, Tag le rhino, Betty la pieuvre, Rouly l'hippopotame, Youpi le crocodile et Nini la souris futée, pour le régler dans la bonne humeur. + Jeunesse + Dessins Animés + + 0 . 35 . + + Tout public + + + + Hé, Oua-Oua + Le badge accessoires + Le gros chien Oua-Oua anime le Club des Ecureuils, un centre d'activités extrascolaires. Quand un problème se pose, il accourt avec ses amis, Tag le rhino, Betty la pieuvre, Rouly l'hippopotame, Youpi le crocodile et Nini la souris futée, pour le régler dans la bonne humeur. + Jeunesse + Dessins Animés + + 3 . 13 . + + Tout public + + + + Tangranimo + La longue journée + Pour jouer plus longtemps, Kazu relance dans le ciel la fleur-soleil alors qu'elle devrait se coucher. Mais une journée si longue fatigue tout le monde ! + Jeunesse + Dessins Animés + + 0 . 34 . + + Tout public + + + + Ernest et Célestine + Le jeu du silence + Dans sa maison délabrée, Ernest, un ours bougon au grand coeur, a recueilli Célestine, une petite souris orpheline et malicieuse. Les deux amis ont des caractères aussi différents que leur gabarit. Cela ne les empêche pas de vivre des aventures pleines de fantaisie. + Jeunesse + Dessins Animés + + 1 . 15 . + + Tout public + + + + Les contes de Masha + La renarde, le coq et le chat + Masha, complice joyeuse et impertinente de l'ours Michka, raconte à sa manière les grands contes classiques. + Jeunesse + Dessins Animés + + 0 . 21 . + + Tout public + + + + Masha et Michka + La famille s'agrandit ! + Masha est une petite fille très curieuse et active qui vit près de la forêt. Elle entraîne son ami Michka, un gros ours qui aime le calme et le confort, dans des aventures passionnantes. Un lièvre, un panda, un cochon et plein d'autres animaux viennent les rejoindre dans leurs péripéties. Ensemble, ils se sortent des situations les plus délicates. + Jeunesse + Dessins Animés + + 2 . 16 . + + Tout public + + + + Masha et Michka + Une étoile céleste + Masha est une petite fille très curieuse et active qui vit près de la forêt. Elle entraîne son ami Michka, un gros ours qui aime le calme et le confort, dans des aventures passionnantes. Un lièvre, un panda, un cochon et plein d'autres animaux viennent les rejoindre dans leurs péripéties. Ensemble, ils se sortent des situations les plus délicates. + Jeunesse + Dessins Animés + + 2 . 17 . + + Tout public + + + + Masha et Michka + Le meilleur des médicaments + Masha est une petite fille très curieuse et active qui vit près de la forêt. Elle entraîne son ami Michka, un gros ours qui aime le calme et le confort, dans des aventures passionnantes. Un lièvre, un panda, un cochon et plein d'autres animaux viennent les rejoindre dans leurs péripéties. Ensemble, ils se sortent des situations les plus délicates. + Jeunesse + Dessins Animés + + 2 . 14 . + + Tout public + + + + Simon + J'ai fait une bêtise + Ce soir, les parents de Simon et Gaspard sortent et Marion, une baby-sitter, vient les garder. Les petits sont déçus et se font des idées fausses sur Marion, qui va devoir les apprivoiser. Mais la jeune fille est pleine de ressources. Aussi, le lendemain matin, Simon demande à ses parents si Marion revient les garder ce soir... + Jeunesse + Dessins Animés + + 1 . 2 . + + Tout public + + + + Simon + Je m'en occupe + Vêtu de son t-shirt rouge et de son pantalon bleu, Simon est un petit garçon plein d'entrain dont le quotidien est riche en leçons. Que ce soit à l'école, avec ses amis Ferdinand, Lou et Mamadou, avec son petit frère Gaspard et le reste de sa famille, Simon fait l'expérience des joies mais aussi des petites contrariétés de la vie. + Jeunesse + Dessins Animés + + 2 . 5 . + + Tout public + + + + Simon Superlapin + Attention au robot-moustique + Simon et sa petite bande de copains deviennent des super héros et se transforment en Superlapin, Super Lou, Super Ferdi et Capitaine Lapin. + Jeunesse + Dessins Animés + + 0 . 3 . + + Tout public + + + + Pompon Ours + Comme par magie + Pompon est un ourson espiègle, gai et joueur qui possède le précieux talent de faire de l'extra avec de l'ordinaire grâce à son imagination et sa créativité. + Jeunesse + Dessins Animés + + 0 . 23 . + + Tout public + + + + Pompon Ours + Le gri-gri magique + En âge d'ourson, Pompon a 6 ans. Il est espiègle, gai et joueur mais, surtout, il possède un talent incroyable et précieux qui fait la joie de sa meilleure amie Rita et de ses parents : il sait faire de l'extra avec de l'ordinaire… + Jeunesse + Dessins Animés + + 1 . 17 . + + Tout public + + + + Bluey + Le barbecue + Aucune description + Jeunesse + Dessins Animés + + 0 . 6 . + + Tout public + + + + Bluey + Le jeu du fast food + Pour Bluey et Bingo, il est l'heure de sortir du bain. Mais Papa a décidé de ne pas les obliger à le faire. Il se trouve alors embarqué dans un Jeu du Fast Food qui n'en finit plus. + Jeunesse + Dessins Animés + + 1 . 31 . + + Tout public + + + + Le Petit Prince et ses amis + Le miroir + A bord de l'astérovaisseau, le Petit Prince emmène deux enfants, Charlotte et Elijah, à la rencontre de l'univers et de ses habitants pour leur fait vivre des aventures. + Jeunesse + Dessins Animés + + 0 . 23 . + + Tout public + + + + Végétosaures + Le hoquet + Au cours de l'ère du Croustillant Supérieur, le monde est dominé par les créatures les plus juteuses et les plus vitaminées qui ont jamais peuplé la terre : les plantureux végétosaures. Ginger, une jeune tricarrotops, vit de savoureuses aventures avec ses nouveaux amis, les petit pois Rex. + Jeunesse + Dessins Animés + + 1 . 18 . + + Tout public + + + + Végétosaures + Bain à remous + Au cours de l'ère du Croustillant Supérieur, le monde est dominé par les créatures les plus juteuses et les plus vitaminées qui ont jamais peuplé la terre : les plantureux végétosaures. Ginger, une jeune tricarrotops, vit de savoureuses aventures avec ses nouveaux amis, les petit pois Rex. + Jeunesse + Dessins Animés + + 1 . 19 . + + Tout public + + + + Contes Chrono + Le hérisson perdu dans la forêt + Une plongée dans l'univers des contes de fées ; des rebondissements nouveaux et surprenants agrémentent et revisitent de célèbres contes classiques. + Jeunesse + Dessins Animés + + 1 . 8 . + + Tout public + + + + Un jour, une question + Pourquoi c'est grave le dopage ? + A quoi ça sert ? Ça veut dire quoi ? C'est qui ? Pourquoi c'est comme ça ? Les questions des enfants trouvent quotidiennement une réponse. + Jeunesse + + 8 . 1063 . + + Tout public + + + + La p'tite librairie + Comme un roman, de Daniel Pennac + François Busnel propose chaque jour de découvrir ou redécouvrir une oeuvre française ou étrangère : roman, essai, grand classique ou encore bande dessinée. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Silence, ça pousse ! + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Echappées belles + Surprenante Singapour + Tel un laboratoire à ciel ouvert, Singapour semble façonner le monde de demain à coups d'audaces et d'ingénierie. Ce temple de la finance et de la tech n'a pas pour autant vendu son âme au verre et au béton. Cette ville-jardin cosmopolite oeuvre depuis son indépendance, en 1965, à reverdir ses paysages. + Magazine + Mag. Découverte + + 16 . 0 . + + Tout public + + + + SOS animaux orphelins + Prendre son envol + Katou, l'une des soigneuses, dédie tout son temps à Flo : arrivée âgée d'à peine 3 jours, ce bébé babouin a assisté au massacre de sa famille par des chasseurs. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + C l'hebdo + Aucune description + Magazine + Débat + + + Tout public + + + + C Médiatique + Traitement de l'actualité et de la communication politique par les médias, portrait de la personnalité de la semaine et reportages, ce rendez-vous hebdomadaire est consacré aux programmes et aux différents contenus. Mélanie Taravant reçoit en plateau celles et ceux qui animent le débat médiatique. + Magazine + Mag. Société + + + Tout public + + + + Guermantes + Apprenant l'annulation de leur pièce, des comédiens adhèrent à l'idée du réalisateur, désireux d'adapter le scénario à la situation. Les répétitions se transforment en film, et le quotidien des acteurs marqués par la crise sanitaire et le confinement prend une place centrale dans l'oeuvre... + Film + Film Rires + + + Tout public + + + + Place au spectacle + Une invitation à la découverte d'un spectacle, que ce soit du théâtre, de la danse, ou encore de l'opéra. Gros plan sur les productions qui font l'événement. + Magazine + Mag. Culture + + + Tout public + + + + Des trains pas comme les autres + Danemark + Pays cerné par la mer, le Danemark compte de nombreuses îles, tunnels et ponts : les trains permettent néanmoins de découvrir ce pays où il fait bon vivre. + Documentaire + Doc. Évasion + + 9 . 0 . + + Tout public + + + + Apocalypse : Hitler attaque à l'ouest 1940 + Le piège + En 1940, neuf mois après le déclenchement de la Seconde Guerre mondiale, Hitler attaque à l'Ouest, la Belgique, les Pays-Bas, la France et la Grande-Bretagne. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + C'est bon à savoir + "C'est bon à savoir" décrypte les bénéfices pour la santé de la consommation des fruits et légumes et analyse leur mode de culture, sans oublier de parler d'environnement. Avec la complicité d'experts, ce programme revient quelques idées reçues. + Info-Météo + Information + + + Tout public + + + + En société + Aucune description + Magazine + Mag. Société + + + Tout public + + + + C politique + " C politique" propose, pendant une heure, d'échanger sur une question marquante de l'époque avec des intellectuels(elles), des acteurs(es) de terrain, des témoins, des citoyens(ennes)… Un forum de discussion autour de Thomas Snégaroff où tous les points de vue, les expériences pourront s'exprimer, trouver des réponses et des pistes pour agir. + Magazine + Mag. Politique + + + Tout public + + + + Ma maison de A à Z + Poser une porte à galandage + Les différentes étapes de la construction, de l'aménagement et de la décoration d'une maison. + Magazine + Mag. Service + + 0 . 0 . + + Tout public + + + + La fabrique du mensonge + Au coeur du déni climatique + Alors que l'implication des activités humaines dans le dérèglement climatique est avérée, la désinformation sur ce sujet fragilise la parole des scientifiques. + Documentaire + Doc. Société + + 2 . 0 . + + Tout public + + + + La fabrique du mensonge + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Les suppliques + A partir de 1941, les juifs sont fichés en France. Certains adressent des suppliques à l'administration pour se plaindre, sans savoir qu'ils écrivent à leurs bourreaux. + Documentaire + Doc. Histoire + + + Tout public + + + + L'oeil et la main + Evelyn Glennie, sons dessus dessous + Sourde profonde depuis l'âge de 8 ans, la célèbre percussionniste Evelyn Glennie écoute les vibrations du son avec chaque parcelle de son corps. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + Voyage à travers les couleurs + La Colombie multicolore + Une exploration de la Colombie, pays multicolore, en résonnance avec la diversité de ses habitants, à travers les quatre couleurs dominantes de ses paysages. + Documentaire + Doc. Découverte + + 0 . 0 . + + Tout public + + + + 13 novembre - l'audience est ouverte + Le 8 septembre 2021 s'ouvre le procès des attentats du 13 novembre 2015 : victimes, familles, policiers, procureurs, juges et avocats racontent leur quête de vérité et de justice. + Documentaire + Doc. Société + + + Tout public + + + + La nuit France 5 + Magazine de reportages + Magazine + Mag. Société + + + Tout public + + + + Oggy Oggy + L'inondation + Oggy Oggy veut remplir une mare pour un petit poisson, mais finit par détourner une rivière et inonder toute la ville. Dans un premier temps, il n'ose pas reconnaître son erreur, mais apprend qu'il faut l'admettre pour pouvoir la réparer... + Jeunesse + Dessins Animés + + 0 . 4 . + + Tout public + + + + Oggy Oggy + L'inondation + Oggy Oggy veut remplir une mare pour un petit poisson, mais finit par détourner une rivière et inonder toute la ville. Dans un premier temps, il n'ose pas reconnaître son erreur, mais apprend qu'il faut l'admettre pour pouvoir la réparer... + Série + Animation + + 0 . 4 . + + Tout public + + + + Oggy Oggy + Oggy Oggy maître-nageur + Curieux, Oggy Oggy a toujours hâte de vivre de nouvelles aventures avec ses amis. Sa maladresse le conduit parfois à faire des erreurs, mais ses idées géniales et farfelues gagnent toujours. + Série + Animation + + 0 . 28 . + + Tout public + + + + Oggy Oggy + Super Oggy Oggy + Curieux, Oggy Oggy a toujours hâte de vivre de nouvelles aventures avec ses amis. Sa maladresse le conduit parfois à faire des erreurs, mais ses idées géniales et farfelues gagnent toujours. + Série + Animation + + 1 . 26 . + + Tout public + + + + Oggy Oggy + Petit nuage + Curieux, Oggy Oggy a toujours hâte de vivre de nouvelles aventures avec ses amis. Sa maladresse le conduit parfois à faire des erreurs, mais ses idées géniales et farfelues gagnent toujours. + Série + Animation + + 1 . 27 . + + Tout public + + + + Simon + Ah ! Les poux + Simon et son petit frère Gaspard ont passé des vacances chez leurs grands-parents et Papa et Maman viennent les chercher. Quand Papa les appelle pour partir, les deux frères vont tout faire pour retarder le départ en cachant les sacs puis le doudou de Gaspard. En vain. Mais, au moment de partir, Papa a égaré les clés de la voiture. Les frères se prennent au jeu de la chasse aux clés, et c'est Simon qui les retrouve... + Série + Animation + + 0 . 34 . + + Tout public + + + + Simon + C'est nul d'être grand + A l'école, les enfants s'affrontent au tir à la corde. En équipe avec Sophie et Olivia, Simon perd contre l'équipe de Ferdinand. Il rouspète, Ferdinand avait la meilleure équipe. Du coup, Simon veut la revanche au foot et cette fois, il se met avec Lou et Mamadou. Ferdinand, qui sait bien qu'Olivia est très forte au foot, n'y voit aucun inconvénient. Et effectivement, il a encore la meilleure équipe ! Simon ne veut pas abandonner mais Lou et Mamadou ne veulent plus jouer car il ne fait jamais de passes. Simon parvient à les convaincre de reprendre le match... + Série + Animation + + 0 . 22 . + + Tout public + + + + Le village enchanté de Pinocchio + Mon père ce héros + A la veille de la journée des métiers, Volpek se moque de Pinocchio dont le père menuisier fabrique des tabourets. De peur d'être humilié, le pantin tente de dissuader son père de venir parler de son métier à l'école. Geppetto, qui a senti le malaise de son fils, lui a préparé une magnifique surprise... + Série + Animation + + 0 . 9 . + + Tout public + + + + Le village enchanté de Pinocchio + Leçons de bonnes manières + Pinocchio vit dans le Village Enchanté avec une joyeuse bande d'amis et ensemble, ils entreprennent les aventures de leurs vies tous les jours. Leurs aventures, désirs et rêves ne sont pas différents de ceux de tous les autres enfants du monde, bien que ce groupe rassemble les enfants de nombreux personnages célèbres de contes de fées, tels que la Belle au Bois Dormant, le Prince Charmant ou le Grand Méchant Loup. + Série + Animation + + 0 . 10 . + + Tout public + + + + Oui-Oui, enquêtes au Pays des jouets + L'affaire du mystérieux objet doré + Oui-Oui a troqué son taxi légendaire contre de nouveaux engins. Entouré de ses amis de toujours et de nouveaux compagnons, le lutin à grelot est amené à quitter Miniville pour explorer le pays des Jouets. + Série + Animation + + 1 . 7 . + + Tout public + + + + Oui-Oui, enquêtes au Pays des jouets + L'affaire du nouveau propulseur de Dinasaurus + Oui-Oui a troqué son taxi légendaire contre de nouveaux engins. Entouré de ses amis de toujours et de nouveaux compagnons, le lutin à grelot est amené à quitter Miniville pour explorer le pays des Jouets. + Série + Animation + + 1 . 5 . + + Tout public + + + + Oui-Oui, enquêtes au Pays des jouets + L'affaire de la clé volée + Oui-Oui a troqué son taxi légendaire contre de nouveaux engins. Entouré de ses amis de toujours et de nouveaux compagnons, le lutin à grelot est amené à quitter Miniville pour explorer le pays des Jouets. + Série + Animation + + 1 . 8 . + + Tout public + + + + T'choupi à l'école + L'un pour l'autre + Ce soir, Louis est invité chez T'choupi. Mais quand à table, T'choupi chausse les lunettes de Louis pour rigoler, Papa et Maman sont frappés par leur ressemblance. Alors, au matin, les deux copains s'amusent... à échanger leurs habits ! Mais à l'école, tout va de travers : pas si facile de se faire passer l'un pour l'autre ! + Dessin animé + Jeunesse + + 1 . 44 . + + Tout public + + + + T'choupi à l'école + La pierre qui rend fort + Aujourd'hui, c'est parcours sportif ! T'choupi est enthousiaste. Notamment face à un tout nouvel obstacle : un mur de varappe ! Mais trop confiant, T'choupi glisse et manque tomber... Il panique désormais à l'idée de regrimper. Le soir à la maison, Mamie, touchée, lui prête alors un caillou précieux qui rend fort ! De quoi aider T'choupi à reprendre confiance en lui. + Dessin animé + Jeunesse + + 1 . 45 . + + Tout public + + + + Végétosaures + La parade d'amitié + Ginger et les Petits-Pois-Rex persuadent une jeune Fraisosaure qu'elle peut exécuter une danse qui lui permettra de trouver une amie pour la vie. + Série + Animation + + 1 . 1 . + + Tout public + + + + Végétosaures + Ginger à la rescousse ! + Au cours de l'ère du Croustillant Supérieur, le monde est dominé par les créatures les plus juteuses et les plus vitaminées qui ont jamais peuplé la terre : les plantureux végétosaures. Ginger, une jeune tricarrotops, vit de savoureuses aventures avec ses nouveaux amis, les petit pois Rex. + Série + Animation + + 1 . 17 . + + Tout public + + + + Les triplés + La médaille de Toto + Quand on est trois, deux frères et une soeur du même âge, c'est bien mieux pour s'amuser et faire des bêtises, en bref on ne s'ennuie jamais. + Série + Animation + + 0 . 69 . + + Tout public + + + + Les triplés + La place dans le lit + Quand on est trois, deux frères et une soeur du même âge, c'est bien mieux pour s'amuser et faire des bêtises, en bref on ne s'ennuie jamais. + Série + Animation + + 0 . 70 . + + Tout public + + + + Bluey + Le xylophone magique + Bluey et Bingo retrouvent un xylophone magique qui a le pouvoir de pétrifier les gens. Elles s'en servent aux dépens de Papa, le figeant dans des positions drôles mais peu flatteuses... + Série + Animation + + 0 . 0 . + + Tout public + + + + Bluey + Ce que je préfère + Chacun leur tour, les Heeler se rappellent leurs choses favorites de la journée lors du dîner, mais quand Bluey se moque de ce qu'a dit sa soeur, l'humeur de Bingo s'assombrit. + Série + Animation + + 1 . 6 . + + Tout public + + + + Bluey + Bingo ! + Bingo doit jouer à la maison sans sa soeur, ce qui s'avère difficile pour elle. + Série + Animation + + 1 . 8 . + + Tout public + + + + Simon + On va à l'école + Simon et Maëlle font la course sur la plage. Le premier qui touche le rocher a gagné, mais ils le touchent en même temps et pensent donc tous deux être vainqueurs. Il faut refaire une course et demander à Gaspard d'être arbitre. Le petit est fier d'endosser ce rôle, cependant ni Simon ni Maëlle ne l'écoutent lors des deux courses suivantes. Ils se fâche alors et s'en va. Simon et Lou reviennent le chercher et promettent qu'ils ne diront plus rien. C'est lui le super arbitre... + Série + Animation + + 2 . 8 . + + Tout public + + + + Simon + J'ai envie de faire pipi + Vêtu de son t-shirt rouge et de son pantalon bleu, Simon est un petit garçon plein d'entrain dont le quotidien est riche en leçons. Que ce soit à l'école, avec ses amis Ferdinand, Lou et Mamadou, avec son petit frère Gaspard et le reste de sa famille, Simon fait l'expérience des joies mais aussi des petites contrariétés de la vie. + Série + Animation + + 2 . 7 . + + Tout public + + + + Simon Superlapin + La dispute des super héros + Simon et sa petite bande de copains deviennent des super héros et se transforment en Superlapin, Super Lou, Super Ferdi et Capitaine Lapin. + Série + Animation + + 0 . 5 . + + Tout public + + + + Billy, le hamster cowboy + Un trésor inestimable + Aucune description + Série + Animation + + 0 . 15 . + + Tout public + + + + Pompon Ours + Tout beau, tout propre + Pompon est un ourson espiègle, gai et joueur qui possède le précieux talent de faire de l'extra avec de l'ordinaire grâce à son imagination et sa créativité. + Série + Animation + + 0 . 0 . + + Tout public + + + + Pompon Ours + Le jouet préféré + En âge d'ourson, Pompon a 6 ans. Il est espiègle, gai et joueur mais, surtout, il possède un talent incroyable et précieux qui fait la joie de sa meilleure amie Rita et de ses parents : il sait faire de l'extra avec de l'ordinaire… + Série + Animation + + 1 . 0 . + + Tout public + + + + Masha et Michka + Il était une fois + Masha s'ennuie toute seule chez elle. Elle décide de sortir pour une petite promenade dans la forêt à la recherche d'amis... + Série + Animation + + 0 . 0 . + + Tout public + + + + Masha et Michka + Les jolies couleurs + Lors d'une balade en forêt, la petite Masha, qui adore s'amuser, a découvert la jolie maison de Michka, un bon gros ours qui se produisait autrefois dans un cirque. Elle l'entraîne dans des aventures mouvementées, lui qui aspire plutôt à la tranquillité... + Série + Animation + + 1 . 0 . + + Tout public + + + + Peppa Pig + Les flaques de boue + Peppa chausse ses bottes et emmène son frère George jouer dans les flaques de boue. Rien de plus rigolo, pour des cochons, que de se rouler dans la boue... + Série + Animation + + 0 . 0 . + + Tout public + + + + Peppa Pig + Le vent d'automne + Peppa et George s'occupent de Polly le perroquet en l'absence de leurs grands-parents, en vacances. Mais Polly profite de ce que les enfants sont partis chercher une glace pour prendre la poudre d'escampette... + Série + Animation + + 1 . 7 . + + Tout public + + + + Peppa Pig + La péniche + Peppa et sa famille vont au musée. Peppa aime bien la galerie des portraits des rois et des reines, alors que George préfère le hall des dinosaures. + Série + Animation + 4 . 17 . + + Tout public + + + + Bing + Le feu d'artifice + Bing est impatient d'assister au feu d'artifice. Mais les fusées qui explosent lui font un peu peur. Il regrette de ne pas avoircomme, son amie Sula, de cache-oreilles... + Série + Animation + + 0 . 0 . + + Tout public + + + + Bing + Le cadeau + C'est l'anniversaire de Sula et Bing veut lui faire un cadeau. Il finit par trouver une baguette magique lumineuse qui lui plait tellement qu'il aimerait bien la garder pour lui... + Série + Animation + + 0 . 26 . + + Tout public + + + + Yétili + Au feu Petit Pierre + "Au Yéti qui lit", une librairie de quartier, les deux petites souris Nina et Léon retrouvent Yétili, la mascotte de la boutique. Quand la librairie ferme, Yétili prend vie et c'est l'heure de l'histoire ! Ensemble, les trois amis lisent des livres et voyagent au pays des albums jeunesse. + Série + Jeunesse + + 1 . 45 . + + Tout public + + + + Oggy Oggy + Le bobo de Sporty + Curieux, Oggy Oggy a toujours hâte de vivre de nouvelles aventures avec ses amis. Sa maladresse le conduit parfois à faire des erreurs, mais ses idées géniales et farfelues gagnent toujours. + Série + Animation + + 1 . 0 . + + Tout public + + + + A vous de voir + "Modes d'emploi" en 2023 + En 2023, un salon national pour l'emploi uniquement dédié aux personnes aveugles ou malvoyantes a été organisé pour la première fois en France. + Documentaire + Société + + + Tout public + + + + Tous en scène pour le handicap + Un programme court consacré au handicap et au regard posé sur le handicap dans la société contemporaine. + Magazine + Services + + + Tout public + + + + Le magazine de la santé + Marina Carrère d'Encausse est accompagnée par la journaliste Maroussia Renard pour l'actualité du jour et par la journaliste Rym Ben Ameur qui relaie la voix des téléspectateurs. Chaque jour, plusieurs thèmes d'actualité sont abordés pour répondre aux préoccupations des téléspectateurs qui pourront réagir par sms au 41 555 et sur les réseaux sociaux #santéf5. Chaque jour, un chroniqueur différent viendra proposer d'autres infos et conseils bien être, santé, forme, beauté… + Sciences et technique + Santé + + + Tout public + + + + La p'tite librairie + Les sept contre Thèbes, par Eschyle + François Busnel propose chaque jour de découvrir ou redécouvrir une oeuvre française ou étrangère : roman, essai, grand classique ou encore bande dessinée. + Magazine + Culture + + + Tout public + + + + Vivre loin du monde + Oregon + Ben Fogle voyage en Oregon, dans le nord-ouest des Etats-Unis, pour rencontrer Dan Price, un ancien photographe professionnel passionné par la nature. + Documentaire + Nature + + 10 . 0 . + + Tout public + + + + La première année des bébés animaux + Vers l'indépendance + Au coeur des montagnes d'Ouganda, une famille de gorilles cherche sa nourriture parmi les hautes herbes. Elle garde jalousement un trésor : l'un des 50 bébés gorilles des montagnes actuellement recensés dans le monde. Cette petite a été baptisée Nyakabara. Elle est la fille du puissant dos argenté qui protège les treize membres de sa famille. A la frontière de l'Arctique, la péninsule d'Hornstrandir est la région la plus reculée d'Islande. Dans seulement quelques semaines, quand l'hiver long et rigoureux reviendra, cette vallée sera tapissée de neige et de glace. Fela est le seul renardeau blanc d'une portée de huit renards polaires. A tout juste quatre mois, il a presque atteint sa taille adulte. Il dépend pourtant de ses parents pour se nourrir. + Nature + Animalier + + 0 . 0 . + + Tout public + + + + Des trains pas comme les autres + Ethiopie + A Addis-Abeba, Philippe Gougler découvre des centaines de personnes réunies pour faire du sport. Il se rend au nord du pays, près d'Aterow, dans une région agricole où les fermiers doivent crier toute la journée pour éloigner des babouins qui chapardent leurs récoltes. + Documentaire + Découvertes + + 9 . 0 . + + Tout public + + + + Le magazine de la santé + Marina Carrère d'Encausse et Jimmy Mohamed sont à la présentation de cette saison : Jimmy Mohamed présente les lundis et mardis et Marina Carrère d'Encausse, les mercredis, jeudis et vendredis. Ils sont accompagnés par la journaliste Emma Strack pour l'actualité du jour et par la journaliste Maroussia Renard qui relaie la voix des téléspectateurs. Chaque jour, plusieurs thèmes d'actualité sont abordés pour répondre aux préoccupations des téléspectateurs qui pourront réagir par sms au 41 555 et sur les réseaux sociaux #santéf5. Chaque jour, un chroniqueur différent viendra proposer d'autres infos et conseils bien être, santé, forme, beauté… + Sciences et technique + Santé + + + Tout public + + + + Consomag + Dépannage à domicile : attention aux abus ! + Le magazine de l'Institut national de la consommation donne à chacun des conseils pratiques pour mieux consommer. + Art de vivre + Consommation + + + Tout public + + + + Prenez soin de vous + Vaincre la fatigue + Toujours épuisés, jamais reposés : près de deux tiers des Français se disent régulièrement fatigués. Manque d'énergie, essoufflement, perte de mémoire, sommeil perturbé : la fatigue, tout le monde l'a déjà ressentie, mais lorsqu'elle se prolonge, il faut agir car le manque d'énergie peut gâcher la vie. Heureusement, quel que soit notre âge, il existe des solutions pour faire le plein d'énergie. C'est ce que découvrent Eliette, Christian et Valérie grâce aux programmes très efficaces mis au point par Michel Cymes et son équipe d'experts dans ce nouveau numéro de "Prenez soin de vous". + Sciences et technique + Santé + + + Tout public + + + + Panthère des neiges de l'Himalaya + En hiver, la mort n'est jamais loin dans les montagnes tibétaines. Trois éleveurs suivent, pendant cinq ans, les faits et gestes de la panthère des neiges. + Nature + Animalier + + + Tout public + + + + L'invité de C dans l'air + Caroline Roux (du lundi au jeudi) et Axel de Tarlé (le vendredi) reçoivent chaque jour en direct une personnalité qui fait l'actualité. Hommes et femmes politiques, écrivains, philosophes, scientifiques ou économistes : 10 minutes de dialogue pour donner un éclairage en prise directe avec l'information du jour. + Magazine + Information + + + Tout public + + + + C dans l'air + Caroline Roux (du lundi au jeudi) et Axel de Tarlé (le vendredi et samedi) décryptent en direct l'actualité en compagnie de quatre experts. En fin d'émission, ils répondent aux questions des téléspectateurs. + Magazine + Information + + + Tout public + + + + C à vous + Dans ce rendez-vous de tous ceux qui font l'actualité politique, économique, sociétale et culturelle, les téléspectateurs de C à Vous retrouvent Anne-Elisabeth Lemoine entourée de Lorrain Sénéchal, Aurélie Casse, Patrick Cohen, Pierre Lescure, Mohamed Bouhafsi, Bertrand Chameroy et Émilie Tran Nguyen. + Magazine + Talk show + + 14 . 0 . + + Tout public + + + + Vu + "Vu " : le zapping quotidien, impertinent et libre, sur le monde de l'image. + Programme + Divertissement + + + Tout public + + + + C à vous la suite + Seconde partie. Le talk-show accueille la mini-fiction, \" Les radoteurs \", incarnée par le duo Stéphane De Groodt et Gilles Gaston-Dreyfus. + Magazine + Talk show + + 14 . 0 . + + Tout public + + + + Bleu, Blanc, Bouge + Olecio + "Bleu, Blanc, Bouge" met en lumière une innovation française issue d'un territoire. + Magazine + Services + + + Tout public + + + + Sur le front + Orages, inondations : sommes-nous prêts ? + Un Français sur quatre est menacé par les inondations. Les orages sont de plus en plus intenses et, pourtant, peu de gens ont pris la mesure de ce danger. Hugo Clément révèle les failles des prévisions météo. Ainsi, les alertes de vigilance météo sont lancées à la fin des épisodes orageux et non avant. Il fait découvrir le phénomène incroyable des laves torrentielles en montagne et part enfin à la rencontre de ceux qui se battent pour modifier l'urbanisme et laisser de l'espace pour que l'eau puisse s'écouler sans faire de victimes. + Magazine + Nature + + 0 . 34 . + + Tout public + + + + Sur le front + Pourquoi le train est-il toujours plus cher ? + En France, le prix des billets de train a augmenté de 5 0x0p+0lors qu'au même moment l'Espagne expérimente les trains régionaux gratuits. Pourquoi est-il souvent moins cher de voyager en avion plutôt qu'en train ? Pourquoi le vol Lyon-Marseille existe-t-il toujours ? Et pourquoi les marchandises voyagent-elles par camion au lieu d'être transportées par rail, bien moins polluant ? Hugo Clément enquête sur le paradoxe de la France, pays du TGV également doté d'un maillage de petites lignes extrêmement dense, mais dont certaines infrastructures ferroviaires sont dignes d'un autre siècle. + Magazine + Nature + + 0 . 27 . + + Tout public + + + + C ce soir + Quand les idées éclairent l'actualité et la complexité du monde… \" C Ce Soir \" propose un débat d'idées sur l'actualité politique et/ou sociale du jour. Karim Rissouli, du lundi au mercredi, puis Camille Diao, le jeudi, reçoivent des intellectuels, artistes et protagonistes au centre de l'actualité pour approfondir la réflexion. Avec deux chroniqueurs en alternance : Laure Adler et Arthur Chevallier. + Magazine + Talk show + + 3 . 0 . + + Tout public + + + + La p'tite librairie + Les sept contre Thèbes, par Eschyle + François Busnel propose chaque jour de découvrir ou redécouvrir une oeuvre française ou étrangère : roman, essai, grand classique ou encore bande dessinée. + Magazine + Culture + + + Tout public + + + + C dans l'air + Caroline Roux (du lundi au jeudi) et Axel de Tarlé (le vendredi et samedi) décryptent en direct l'actualité en compagnie de quatre experts. En fin d'émission, ils répondent aux questions des téléspectateurs. + Magazine + Information + + + Tout public + + + + C à vous + Dans ce rendez-vous de tous ceux qui font l'actualité politique, économique, sociétale et culturelle, les téléspectateurs de C à Vous retrouvent Anne-Elisabeth Lemoine entourée de Lorrain Sénéchal, Aurélie Casse, Patrick Cohen, Pierre Lescure, Mohamed Bouhafsi, Bertrand Chameroy et Émilie Tran Nguyen. + Magazine + Talk show + + 14 . 0 . + + Tout public + + + + Vu + "Vu " : le zapping quotidien, impertinent et libre, sur le monde de l'image. + Programme + Divertissement + + + Tout public + + + + C à vous la suite + Seconde partie. Le talk-show accueille la mini-fiction, \" Les radoteurs \", incarnée par le duo Stéphane De Groodt et Gilles Gaston-Dreyfus. + Magazine + Talk show + + 14 . 0 . + + Tout public + + + + La nuit France 5 + Magazine de reportages + Magazine + Information + + + Tout public + + + + Oggy Oggy + Super Mallow + Curieux, Oggy Oggy a toujours hâte de vivre de nouvelles aventures avec ses amis. Sa maladresse le conduit parfois à faire des erreurs, mais ses idées géniales et farfelues gagnent toujours. + Jeunesse + Dessins Animés + + 0 . 6 . + + Tout public + + + + Oggy Oggy + Oggy Oggy policier + Curieux, Oggy Oggy a toujours hâte de vivre de nouvelles aventures avec ses amis. Sa maladresse le conduit parfois à faire des erreurs, mais ses idées géniales et farfelues gagnent toujours. + Jeunesse + Dessins Animés + + 0 . 7 . + + Tout public + + + + Oggy Oggy + Le duel + Curieux, Oggy Oggy a toujours hâte de vivre de nouvelles aventures avec ses amis. Sa maladresse le conduit parfois à faire des erreurs, mais ses idées géniales et farfelues gagnent toujours. + Jeunesse + Dessins Animés + + 1 . 28 . + + Tout public + + + + Oggy Oggy + Les bonnes manières + Curieux, Oggy Oggy a toujours hâte de vivre de nouvelles aventures avec ses amis. Sa maladresse le conduit parfois à faire des erreurs, mais ses idées géniales et farfelues gagnent toujours. + Jeunesse + Dessins Animés + + 1 . 29 . + + Tout public + + + + Simon + Je suis plus ton copain + Simon joue au foot dans le jardin avec Mamadou et Ferdinand lorsqu'il glisse sur le ballon, ce qui fait rire ses copains. Vexé, Simon accuse Ferdinand de l'avoir fait exprès. Ferdinand s'en défend et Simon s'en va, fâché. Mais quand il découvre que les deux garçons construisent une fusée en carton, Simon a trop envie de retourner jouer avec eux... + Jeunesse + Dessins Animés + + 0 . 29 . + + Tout public + + + + Simon + La nuit chez Ferdinand + Simon va passer la nuit chez Ferdinand, son grand copain et voisin, c'est un peu différent de chez lui mais Simon est ravi. + Jeunesse + Dessins Animés + + 0 . 32 . + + Tout public + + + + Le village enchanté de Pinocchio + La vie en rose + Pinocchio convainc Folet de manquer l'école pour découvrir les premiers une nouvelle BD dont ils sont fans. Tous deux tombent sur Jodelle et Ortie qui se moquent d'eux. Pour se venger, Pinocchio leur teint magiquement les cheveux en rose. Contre toute attente, les deux pestes adorent cette couleur... + Jeunesse + Dessins Animés + + 0 . 11 . + + Tout public + + + + Le village enchanté de Pinocchio + Irrésistible cookie + Aucune description + Jeunesse + Dessins Animés + + 0 . 12 . + + Tout public + + + + Oui-Oui, enquêtes au pays des jouets + L'affaire de l'étoile tombée du ciel + Oui-Oui a troqué son taxi légendaire contre de nouveaux engins. Entouré de ses amis de toujours et de nouveaux compagnons, le lutin à grelot est amené à quitter Miniville pour explorer le pays des Jouets. + Jeunesse + Dessins Animés + + 1 . 10 . + + Tout public + + + + Oui-Oui, enquêtes au pays des jouets + L'affaire des papillons agaçants + Oui-Oui a troqué son taxi légendaire contre de nouveaux engins. Entouré de ses amis de toujours et de nouveaux compagnons, le lutin à grelot est amené à quitter Miniville pour explorer le pays des Jouets. + Jeunesse + Dessins Animés + + 1 . 11 . + + Tout public + + + + Oui-Oui, enquêtes au pays des jouets + L'affaire des jouets collés + Oui-Oui a troqué son taxi légendaire contre de nouveaux engins. Entouré de ses amis de toujours et de nouveaux compagnons, le lutin à grelot est amené à quitter Miniville pour explorer le pays des Jouets. + Jeunesse + Dessins Animés + + 1 . 12 . + + Tout public + + + + T'choupi à l'école + Les petits héros + Medhi apprend à T'choupi et ses copains les rudiments des ' premiers secours '. Les enfants adorent et se prennent aussitôt pour des infirmiers ! Ils forment même une patrouille qui arpente la cour dans l'espoir de sauver quelqu'un. Mais les enfants sont déçus, personne ne se fait mal... Jusqu'à ce que Medhi, qui fait le pitre, ne leur donne enfin l'occasion de s'exercer... + Jeunesse + Dessins Animés + + 1 . 47 . + + Tout public + + + + T'choupi à l'école + L'invitée surprise + Mehdi emmène les enfants dans le parcours sportif où la maman de T'choupi doit apporter un délicieux goûter. Seulement voilà : Maman arrive avec une invitée surprise... Fanny ! Les enfants sont enchantés... sauf T'choupi qui voudrait bien jouer avec ses copains ! La présence de sa petite sœur n'a de cesse de l'agacer, et ça ne va pas s'arranger sur le parcours sportif... + Jeunesse + Dessins Animés + + 1 . 48 . + + Tout public + + + + Végétosaures + La canicule + Quand un jeune Pastèquosuchus s'échoue sur la rive du lac pendant une canicule, Ginger et les Petits-Pois-Rex doivent trouver comment le remettre à l'eau. + Jeunesse + Dessins Animés + + 1 . 3 . + + Tout public + + + + Végétosaures + L'éclosion + Un bébé Avocadon plein d'énergie sort de son oeuf, et c'est Ginger et les Petits-Pois-Rex qui vont l'aider à rejoindre son troupeau. + Jeunesse + Dessins Animés + + 1 . 2 . + + Tout public + + + + Les triplés + Le chouchou de maman + Quand on est trois, deux frères et une soeur du même âge, c'est bien mieux pour s'amuser et faire des bêtises, en bref on ne s'ennuie jamais. + Jeunesse + Dessins Animés + + 0 . 71 . + + Tout public + + + + Les triplés + A triplés, triplés et demi + Quand on est trois, deux frères et une soeur du même âge, c'est bien mieux pour s'amuser et faire des bêtises, en bref on ne s'ennuie jamais. + Jeunesse + Dessins Animés + + 0 . 72 . + + Tout public + + + + Bluey + C'est papa qui nous emmène ! + C'est au tour de papa de préparer le petit déjeuner et d'emmener les enfants à l'école, mais Bluey et Bingo ne vont pas lui rendre la tâche facile pour être à l'heure. + Jeunesse + Dessins Animés + + 1 . 7 . + + Tout public + + + + Bluey + Papa bébé + Bingo est une citoyenne modèle… Elle prend tous les jours le train de papa pour déposer sa fille à la garderie et aller travailler comme vétérinaire. Bluey, quant à elle, préfère s'amuser ! + Jeunesse + Dessins Animés + + 1 . 12 . + + Tout public + + + + Bluey + Papa Robot + "Bob Bilby". C'est au tour de Bingo de s'occuper de Bob Bilby, l'animal de compagnie de Kindy. - "Le jeu d'espion". Bingo décide d'arrêter de jouer à un jeu et cela sème la zizanie. - "La livraison". Quand on doit patienter, cinq minutes peuvent paraître une éternité... + Jeunesse + Dessins Animés + + 0 . 3 . + + Tout public + + + + Simon + Des étoiles pour maman + Simon a invité Lou et Ferdinand à venir chez lui mais il décide tout sans demander leur avis ; lassés, ses copains refusent de continuer à jouer avec lui. + Jeunesse + Dessins Animés + + 1 . 4 . + + Tout public + + + + Simon + J'adore les surprises + Papa prépare un superbe gâteau pour l'anniversaire de Maman. Il faut que tout soit prêt pour lui en faire la surprise à son retour du bureau. Simon et son petit frère Gaspard lui ont promis de ranger leur chambre et de dresser une jolie table. Mais ils veulent aussi préparer une surprise pour Maman... + Jeunesse + Dessins Animés + + 1 . 3 . + + Tout public + + + + Simon Superlapin + Le méga trésor de billes + Simon et sa petite bande de copains deviennent des super héros et se transforment en Superlapin, Super Lou, Super Ferdi et Capitaine Lapin. + Jeunesse + Dessins Animés + + 0 . 6 . + + Tout public + + + + Billy, le hamster cowboy + Le chapeau du Sergent Cactus + Suzie et Billy rigolent en lisant une BD racontant l'histoire d'une fourmi, sergent de cavalerie, qui disparait sous son chapeau trop grand ! + Jeunesse + Dessins Animés + + 0 . 18 . + + Tout public + + + + Pompon Ours + La ballade des fourmis + Pompon est un ourson espiègle, gai et joueur qui possède le précieux talent de faire de l'extra avec de l'ordinaire grâce à son imagination et sa créativité. + Jeunesse + Dessins Animés + + 0 . 1 . + + Tout public + + + + Pompon Ours + Le voyage rêve + En âge d'ourson, Pompon a 6 ans. Il est espiègle, gai et joueur mais, surtout, il possède un talent incroyable et précieux qui fait la joie de sa meilleure amie Rita et de ses parents : il sait faire de l'extra avec de l'ordinaire… + Jeunesse + Dessins Animés + + 1 . 1 . + + Tout public + + + + Masha et Michka + Abracadabra + Par une triste journée d'automne, Michka s'installe confortablement dans son fauteuil devant un bon feu de cheminée et se plonge dans la lecture d'un roman à suspense... + Jeunesse + Dessins Animés + + 0 . 24 . + + Tout public + + + + Masha et Michka + Le balai magique + Macha joue au hockey et comme elle n'arrive pas à contenir le lièvre qui est vraiment un hockeyeur hors pair, elle troque sa crosse contre un balai magique. + Jeunesse + Dessins Animés + + 1 . 4 . + + Tout public + + + + Peppa Pig + A la recherche de Mr. Dinosaure + Lorsque monsieur Dinosaure, le doudou de George, disparaît, le petit cochon est angoissé. Papa Cochon et Peppa tentent de le retrouver... + Jeunesse + Dessins Animés + + 0 . 1 . + + Tout public + + + + Peppa Pig + Emilie Eléphant + Emilie Eléphant, une petite nouvelle, vient d'arriver à la garderie. Elle est assez timide... + Jeunesse + Dessins Animés + + 1 . 1 . + + Tout public + + + + Peppa Pig + L'arc en ciel + Mamie et Papy Cochon viennent pour un dîner avec maman et papa Cochon, mais Peppa et George sont trop fatigués pour aller au lit, jusqu'à ce qu'on leur racontent une histoire... + Jeunesse + Dessins Animés + + 2 . 1 . + + Tout public + + + + Bing + Au revoir + Bing trouve un ballon. Flop s'occupe de le gongler et le petit lapin découvre, émerveillé, qu'il peut faire toutes sortes de jeux. Mais les ballons sont fragiles, et une fois qu'ils ont éclaté, il ne reste plus qu'à les ranger dans la boîte à au revoir... + Jeunesse + Dessins Animés + + 0 . 1 . + + Tout public + + + + Bing + Le doudou chiffon + Avant de se coucher, Bing doit faire beaucoup de choses. Mais voilà que son morceau de tissu fétiche se salit en tombant dans les toilettes... + Jeunesse + Dessins Animés + + 0 . 31 . + + Tout public + + + + Yétili + Chut ! On a un plan + "Au Yéti qui lit", une librairie de quartier, les deux petites souris Nina et Léon retrouvent Yétili, la mascotte de la boutique. Quand la librairie ferme, Yétili prend vie et c'est l'heure de l'histoire ! Ensemble, les trois amis lisent des livres et voyagent au pays des albums jeunesse. + Jeunesse + Série Jeunesse + + 1 . 47 . + + Tout public + + + + Oggy Oggy + Télécommandé + Curieux, Oggy Oggy a toujours hâte de vivre de nouvelles aventures avec ses amis. Sa maladresse le conduit parfois à faire des erreurs, mais ses idées géniales et farfelues gagnent toujours. + Jeunesse + Dessins Animés + + 1 . 0 . + + Tout public + + + + Contes Chrono + La sorcière repentie + Une plongée dans l'univers des contes de fées ; des rebondissements nouveaux et surprenants agrémentent et revisitent de célèbres contes classiques. + Jeunesse + Dessins Animés + + 1 . 6 . + + Tout public + + + + SOS animaux orphelins + Retour à la vie sauvage + Au Vervet Monkey Foundation, Josie accompagne le processus de réhabilitation qui permettra aux orphelins arrivés bébés de retrouver la vie sauvage. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + Tous en scène pour le handicap + Aucune description + Magazine + Mag. Service + + + Tout public + + + + Le magazine de la santé + Aucune description + Magazine + Mag. Société + + + Tout public + + + + La p'tite librairie + Pour tout vous dire, par Joan Didion + François Busnel propose chaque jour de découvrir ou redécouvrir une oeuvre française ou étrangère : roman, essai, grand classique ou encore bande dessinée. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Mission astéroïdes + Ce documentaire s'intéresse aux astéroïdes et la façon dont les scientifiques les étudient et s'interrogent sur les ressources qu'ils possèdent. + Documentaire + Doc. Sc. & Tech. + + + Tout public + + + + Au bout c'est la mer + La Vistule (Pologne) + François Pécheux découvre la Pologne et ses habitants en naviguant le long de la Vistule, un fleuve de légende qui serpente sur plus de 1000 kilomètres. + Documentaire + Doc. Nature + + 3 . 0 . + + Tout public + + + + Le magazine de la santé + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Consomag + La fin du ticket de caisse systématique + Le magazine de l'Institut national de la consommation donne à chacun des conseils pratiques pour mieux consommer. + Magazine + Mag. Service + + 0 . 0 . + + Tout public + + + + Dans les pas du mammouth géant + A l'occasion de la restauration du squelette du mammouth de Durfort, une équipe scientifique relance les investigations autour de ce fossile extraordinaire. + Documentaire + Doc. Sc. & Tech. + + + Tout public + + + + Les merveilles du monde antique + Les trésors de Jordanie + L'historienne Bettany Hughes fait découvrir les plus grandes merveilles historiques et archéologiques de Jordanie, de Petra à la forteresse de Machéronte. + Documentaire + Doc. Histoire + + 1 . 0 . + + Tout public + + + + L'invité de C dans l'air + Caroline Roux (du lundi au jeudi) et Axel de Tarlé (le vendredi) reçoivent chaque jour en direct une personnalité qui fait l'actualité. Hommes et femmes politiques, écrivains, philosophes, scientifiques ou économistes : 10 minutes de dialogue pour donner un éclairage en prise directe avec l'information du jour. + Info-Météo + Information + + + Tout public + + + + C dans l'air + Caroline Roux (du lundi au jeudi) et Axel de Tarlé (le vendredi et samedi) décryptent en direct l'actualité en compagnie de quatre experts. En fin d'émission, ils répondent aux questions des téléspectateurs. + Info-Météo + Information + + + Tout public + + + + C à vous + Dans ce rendez-vous de tous ceux qui font l'actualité politique, économique, sociétale et culturelle, les téléspectateurs de C à Vous retrouvent Anne-Elisabeth Lemoine entourée de Lorrain Sénéchal, Aurélie Casse, Patrick Cohen, Pierre Lescure, Mohamed Bouhafsi, Bertrand Chameroy et Émilie Tran Nguyen. + Magazine + Débat + + + Tout public + + + + Vu + "Vu " : le zapping quotidien, impertinent et libre, sur le monde de l'image. + Divertissement + + + Tout public + + + + C à vous la suite + Seconde partie. Le talk-show accueille la mini-fiction, \" Les radoteurs \", incarnée par le duo Stéphane De Groodt et Gilles Gaston-Dreyfus. + Magazine + Débat + + + Tout public + + + + Bleu, Blanc, Bouge + Golden Eye, par Appolo + "Bleu, Blanc, Bouge" met en lumière une innovation française issue d'un territoire. + Magazine + Mag. Service + + 0 . 0 . + + Tout public + + + + Enquête de santé + Vaincre l'AVC + Chaque année, 140 000 personnes sont victimes d'un accident vasculaire cérébral (AVC) et un Français sur 5 sera touché au cours de sa vie. La prise en charge de cette urgence vitale est une course contre la montre où chaque minute compte. Comment reconnaître un AVC, comment en guérir et peut-on l'éviter ? + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + C ce soir + Aucune description + Magazine + Débat + + + Tout public + + + + Le pitch cinéma + Les films de cinéma vus par ceux qui ne les ont pas vus. + Magazine + Mag. Cinéma + + + Tout public + + + + La p'tite librairie + Pour tout vous dire, par Joan Didion + François Busnel propose chaque jour de découvrir ou redécouvrir une oeuvre française ou étrangère : roman, essai, grand classique ou encore bande dessinée. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + C dans l'air + Caroline Roux (du lundi au jeudi) et Axel de Tarlé (le vendredi et samedi) décryptent en direct l'actualité en compagnie de quatre experts. En fin d'émission, ils répondent aux questions des téléspectateurs. + Info-Météo + Information + + + Tout public + + + + C à vous + Dans ce rendez-vous de tous ceux qui font l'actualité politique, économique, sociétale et culturelle, les téléspectateurs de C à Vous retrouvent Anne-Elisabeth Lemoine entourée de Lorrain Sénéchal, Aurélie Casse, Patrick Cohen, Pierre Lescure, Mohamed Bouhafsi, Bertrand Chameroy et Émilie Tran Nguyen. + Magazine + Débat + + + Tout public + + + + Vu + "Vu " : le zapping quotidien, impertinent et libre, sur le monde de l'image. + Divertissement + + + Tout public + + + + C à vous la suite + Seconde partie. Le talk-show accueille la mini-fiction, \" Les radoteurs \", incarnée par le duo Stéphane De Groodt et Gilles Gaston-Dreyfus. + Magazine + Débat + + + Tout public + + + + La nuit France 5 + Magazine de reportages + Magazine + Mag. Société + + + Tout public + + + + Oggy Oggy + Oggy Oggy à la ferme + Curieux, Oggy Oggy a toujours hâte de vivre de nouvelles aventures avec ses amis. Sa maladresse le conduit parfois à faire des erreurs, mais ses idées géniales et farfelues gagnent toujours. + Jeunesse + Dessins Animés + + 0 . 8 . + + Tout public + + + + Oggy Oggy + La surprise des moutons + Curieux, Oggy Oggy a toujours hâte de vivre de nouvelles aventures avec ses amis. Sa maladresse le conduit parfois à faire des erreurs, mais ses idées géniales et farfelues gagnent toujours. + Jeunesse + Dessins Animés + + 0 . 29 . + + Tout public + + + + Oggy Oggy + Bazar à la plage + Curieux, Oggy Oggy a toujours hâte de vivre de nouvelles aventures avec ses amis. Sa maladresse le conduit parfois à faire des erreurs, mais ses idées géniales et farfelues gagnent toujours. + Jeunesse + Dessins Animés + + 1 . 34 . + + Tout public + + + + Oggy Oggy + Le pirate sans peur + Curieux, Oggy Oggy a toujours hâte de vivre de nouvelles aventures avec ses amis. Sa maladresse le conduit parfois à faire des erreurs, mais ses idées géniales et farfelues gagnent toujours. + Jeunesse + Dessins Animés + + 1 . 31 . + + Tout public + + + + Simon + Tout comme Papa + Ayant fabriqué des chevaux pour jouer aux chevaliers, Simon veut prouver à Gaspard qu'il peut tout faire comme Papa : passer l'aspirateur, préparer le dîner. + Jeunesse + Dessins Animés + + 0 . 30 . + + Tout public + + + + Simon + J'ai un dragon + Invités pour la soirée par les parents de Simon, des amis viennent avec leur fils Maxime qui n'a aucune envie d'être là. Simon l'emmène dans sa chambre pour jouer mais Maxime boude. Simon fait alors tout pour le dérider et y parvient. Les deux enfants s'entendent de mieux en mieux et finissent par se lancer dans une super bataille d'oreillers au grenier... + Jeunesse + Dessins Animés + + 0 . 36 . + + Tout public + + + + Le village enchanté de Pinocchio + La sorcière de l'année + Aucune description + Jeunesse + Dessins Animés + + 0 . 14 . + + Tout public + + + + Le village enchanté de Pinocchio + La peur du loup + Aucune description + Jeunesse + Dessins Animés + + 0 . 13 . + + Tout public + + + + Oui-Oui, enquêtes au pays des jouets + L'affaire de la banderole disparue + Chaque aventure est l'occasion pour Oui-Oui d'élucider un mystère. Équipé de sa tablette "QuiQuandQuoi " et de son kit d'investigation composé d'une loupe, d'une lampe torche, de jumelles et de talkies-walkies, il propose aux enfants de mener une enquête et de récolter des indices… jusqu'à la résolution de l'affaire. + Jeunesse + Dessins Animés + + 1 . 9 . + + Tout public + + + + Oui-Oui, enquêtes au pays des jouets + L'affaire de la course de cuillère gâchée + Chaque aventure est l'occasion pour Oui-Oui d'élucider un mystère. Équipé de sa tablette "QuiQuandQuoi " et de son kit d'investigation composé d'une loupe, d'une lampe torche, de jumelles et de talkies-walkies, il propose aux enfants de mener une enquête et de récolter des indices… jusqu'à la résolution de l'affaire. + Jeunesse + Dessins Animés + + 1 . 14 . + + Tout public + + + + Oui-Oui, enquêtes au pays des jouets + L'affaire des pirates désordonnés + Chaque aventure est l'occasion pour Oui-Oui d'élucider un mystère. Équipé de sa tablette "QuiQuandQuoi " et de son kit d'investigation composé d'une loupe, d'une lampe torche, de jumelles et de talkies-walkies, il propose aux enfants de mener une enquête et de récolter des indices… jusqu'à la résolution de l'affaire. + Jeunesse + Dessins Animés + + 1 . 13 . + + Tout public + + + + T'choupi à l'école + Vole, avion, vole ! + En forêt, T'choupi, Jeanne et Benoît trouvent un petit avion. Benoît décide qu'il est à lui, et à lui seul ! Pour calmer les esprits, Mehdi propose à T'choupi et Jeanne de fabriquer un autre avion. T'choupi et Jeanne construisent un très joli petit avion avec lequel ils s'amusent beaucoup ! Oubliant du coup Benoît qui se retrouve alors... tout triste et tout seul ! + Jeunesse + Dessins Animés + + 1 . 50 . + + Tout public + + + + T'choupi à l'école + Le papa pilote + Aucune description + Jeunesse + Dessins Animés + + 0 . 13 . + + Tout public + + + + Végétosaures + Balade sous-marine + Ginger et les Petits-Pois-Rex partent pour une aventure sous-marine dans une bulle créée par un Pastèquosuchus, mais la sortie dégénère avec l'arrivée des Bananaraptors. + Jeunesse + Dessins Animés + + 1 . 5 . + + Tout public + + + + Végétosaures + La chasse aux Chilipèdes + En poursuivant un Chilipède dans la forêt, Ciboule se perd. Pour en sortir, il va devoir se fier aux bruits émis par Ginger et les deux autres Petits-Pois-Rex. + Jeunesse + Dessins Animés + + 1 . 4 . + + Tout public + + + + Les triplés + Le pays des rêves + Aucune description + Jeunesse + Dessins Animés + + 0 . 73 . + + Tout public + + + + Les triplés + Maman fait une pause + Aucune description + Jeunesse + Dessins Animés + + 0 . 74 . + + Tout public + + + + Bluey + L'île au tapis + Bluey et Bingo vivent sur une île déserte dans le jardin, quand elles découvrent que papa s'est échoué sur la plage. + Jeunesse + Dessins Animés + + 1 . 9 . + + Tout public + + + + Bluey + Le meuble en kit + Tandis que papa et maman montent leur nouvelle balancelle en kit pour le jardin, Bluey et Bingo utilisent le carton d'emballage et le papier-bulle pour créer leur propre micro-civilisation. + Jeunesse + Dessins Animés + + 1 . 23 . + + Tout public + + + + Bluey + Reste en l'air + Bluey, Bingo et Maman jouent à "Reste en l'air" dans la maison avec leur dernier ballon mais quand Papa s'en mêle, le jeu devient mission impossible. + Jeunesse + Dessins Animés + + 0 . 2 . + + Tout public + + + + Simon + Tu le fais exprès Gaspard + Profitant d'une journée venteuse, Simon et Ferdinand essayent de faire voler un cerf-volant, mais Simon n'y parvient pas, au contraire de son copain. + Jeunesse + Dessins Animés + + 1 . 8 . + + Tout public + + + + Simon + L'anniversaire de Ferdinand + Aucune description + Jeunesse + Dessins Animés + + 2 . 9 . + + Tout public + + + + Simon Superlapin + Qui a volé la Lune ? + C'est la nuit chez Papi et Mamie, Simon et Gaspard ne veulent pas arrêter de jouer pour aller se coucher. Mais comme le leur dit Mamie, " on ne fait pas toujours ce qu'on veut "! Elle finit par les border, " bonne nuit mes lapins ". Mais les deux coquins se relèvent pour aller jouer à la lumière de la lune ! + Jeunesse + Dessins Animés + + 0 . 7 . + + Tout public + + + + Billy, le hamster cowboy + Les drôles de sifflets de Barbichette + Barbichette prête à Billy et Jean-Claude des appeaux qui permettent d'appeler plein d'animaux. Trop content, Billy essaye d'appeler un grand rapace. + Jeunesse + Dessins Animés + + 0 . 19 . + + Tout public + + + + Pompon Ours + Le shampoing à la soupe + Pompon revient d'une expédition en forêt avec, sur la tête, des nouvelles amies qui grattent. Catastrophe... Pompon a des puces !!! Il déteste plus que tout au monde l'horrible shampoing anti-puces qui sent si mauvais. Pour l'ourson, tous les subterfuges sont bons pour éviter ce supplice. + Jeunesse + Dessins Animés + + 0 . 2 . + + Tout public + + + + Pompon Ours + A l'ombre du cerisier + Gabi a avalé un noyau de cerise. Espiègle, Pompon s'en amuse : Gabi va se transformer en cerisier ! Avec Rita, il décide de prendre soin de Gabi pour accélérer la pousse du Gabicerisier. + Jeunesse + Dessins Animés + + 1 . 2 . + + Tout public + + + + Masha et Michka + On redécore la maison + Avec l'aide de Masha, Michka tente d'accrocher un tableau sur le mur du salon, mais il échoue. Il entreprend alors de grands travaux de rénovation. Masha montre des talents de décoratrice cachés... + Jeunesse + Dessins Animés + + 0 . 25 . + + Tout public + + + + Masha et Michka + Hep taxis + Masha est une petite fille très curieuse et active qui vit près de la forêt. Elle entraîne son ami Michka, un gros ours qui aime le calme et le confort, dans des aventures passionnantes. Un lièvre, un panda, un cochon et plein d'autres animaux viennent les rejoindre dans leurs péripéties. Ensemble, ils se sortent des situations les plus délicates. + Jeunesse + Dessins Animés + + 2 . 2 . + + Tout public + + + + Peppa Pig + Ma meilleure amie + Suzy vient passer l'après-midi chez Peppa. George n'est pas autorisé à se joindre à leurs "jeux de grandes filles", et il est bien triste. Peppa et Suzy jouent aux docteurs et aux infirmières. Le petit cochon est ravi lorsque les filles lui proposent de prendre le rôle du patient, surtout quand maman Cochon lui apporte des cookies... + Jeunesse + Dessins Animés + + 0 . 2 . + + Tout public + + + + Peppa Pig + Les vacances de Polly + Peppa et George s'occupent de Polly le perroquet en l'absence de leurs grands-parents, en vacances. Mais Polly profite de ce que les enfants sont partis chercher une glace pour prendre la poudre d'escampette... + Jeunesse + Dessins Animés + + 1 . 2 . + + Tout public + + + + Peppa Pig + La croisière de Polly + Peppa et George partent en excursion en bateau avec Grand-Père Cochon, mais ils doivent envoyer Polly Parrot chercher de l'aide lorsque leur bateau s'échoue... + Jeunesse + Dessins Animés + + 2 . 10 . + + Tout public + + + + Bing + La balançoire + Bing joue à la balançoire. Il compte ensuite jusqu'à dix afin de laisser sa place à son ami Pando. Mais Pando, lui, prend tout son temps pour compter et Bing s'impatiente... + Jeunesse + Dessins Animés + + 0 . 2 . + + Tout public + + + + Bing + Le cerceau + Sula donne un cours de hula hoop à Bing et ensemble ils découvrent qu'il existe bien des manières de jouer avec un cerceau. Même Charlie y trouve son compte... + Jeunesse + Dessins Animés + + 0 . 27 . + + Tout public + + + + Yétili + Marcel le champion + Chaque jour, Nina et Léon, deux petites souris, retrouvent Yétili, la mascotte de la librairie du quartier. Ensemble, ils lisent et voyagent au pays des albums. + Jeunesse + Série Jeunesse + + 1 . 48 . + + Tout public + + + + Oggy Oggy + Le poisson lumineux + Curieux, Oggy Oggy a toujours hâte de vivre de nouvelles aventures avec ses amis. Sa maladresse le conduit parfois à faire des erreurs, mais ses idées géniales et farfelues gagnent toujours. + Jeunesse + Dessins Animés + + 1 . 0 . + + Tout public + + + + Contes Chrono + Le jeune sorcier qui n'avait pas d'amis + Au fond des bois, un jeune sorcier rêve de se faire des amis. Heureusement, sa Grand-Mère est là ! + Jeunesse + Dessins Animés + + 1 . 7 . + + Tout public + + + + SOS animaux orphelins + Une nouvelle famille + A l'Umoya Khulula Wildlife Center, Emma nourrit une toute petite mangouste rayée arrivée la veille. Elle la présente ensuite à d'autres orphelins. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + Tous en scène pour le handicap + Aucune description + Magazine + Mag. Service + + + Tout public + + + + Le magazine de la santé + Aucune description + Magazine + Mag. Société + + + Tout public + + + + La p'tite librairie + La vie mode d'emploi, par Georges Perec + François Busnel propose chaque jour de découvrir ou redécouvrir une oeuvre française ou étrangère : roman, essai, grand classique ou encore bande dessinée. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Chine sauvage + Le Tibet, écosystème de l'extrême + Dominé par le plus vaste plateau du monde, avec l'Himalaya pour contrefort, le Tibet constitue le lieu le plus infranchissable de la planète. + Documentaire + Doc. Nature + + 1 . 0 . + + Tout public + + + + Chine sauvage + Les mille visages du Yunnan + La province du Yunnan, en Chine, abrite le plus grand nombre d'espèces animales du pays et prend un soin particulier de la biodiversité qui la compose. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + Des trains pas comme les autres + Géorgie + Le globe-trotter ferroviaire Philippe Gougler sillonne la Géorgie, de la Svanétie aux vignobles, en passant par Tbilissi et la cité troglodytique de Vardzia. + Documentaire + Doc. Évasion + + 9 . 0 . + + Tout public + + + + Le magazine de la santé + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Consomag + Entre un devis et un bon de commande, quelles sont les différences ? + Le magazine de l'Institut national de la consommation donne à chacun des conseils pratiques pour mieux consommer. + Magazine + Mag. Service + + 0 . 0 . + + Tout public + + + + Afrique du Sud, paradis océanique + A la recherche du dernier dinosaure + L'équipe de scientifiques de l'Angra Pequena part en expédition dans le but d'apercevoir le coelacanthe, un poisson préhistorique vieux de plusieurs millions d'années. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + L'oignon fait la force + Enquête sur un des condiments star de la cuisine française : l'oignon, consommé pour sa saveur légèrement sucrée qui rehausse n'importe quel plat. + Documentaire + Doc. Découverte + + + Tout public + + + + Merveilles de la vie sous-marine + Trouver un partenaire + Pour les animaux sous-marins, se lancer dans de grandes migrations ou modifier son apparence n'a qu'un but : se reproduire et préserver l'espèce. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + L'invité de C dans l'air + Caroline Roux (du lundi au jeudi) et Axel de Tarlé (le vendredi) reçoivent chaque jour en direct une personnalité qui fait l'actualité. Hommes et femmes politiques, écrivains, philosophes, scientifiques ou économistes : 10 minutes de dialogue pour donner un éclairage en prise directe avec l'information du jour. + Info-Météo + Information + + + Tout public + + + + C dans l'air + Caroline Roux (du lundi au jeudi) et Axel de Tarlé (le vendredi et samedi) décryptent en direct l'actualité en compagnie de quatre experts. En fin d'émission, ils répondent aux questions des téléspectateurs. + Info-Météo + Information + + + Tout public + + + + C à vous + Dans ce rendez-vous de tous ceux qui font l'actualité politique, économique, sociétale et culturelle, les téléspectateurs de C à Vous retrouvent Anne-Elisabeth Lemoine entourée de Lorrain Sénéchal, Aurélie Casse, Patrick Cohen, Pierre Lescure, Mohamed Bouhafsi, Bertrand Chameroy et Émilie Tran Nguyen. + Magazine + Débat + + + Tout public + + + + Vu + "Vu " : le zapping quotidien, impertinent et libre, sur le monde de l'image. + Divertissement + + + Tout public + + + + C à vous la suite + Seconde partie. Le talk-show accueille la mini-fiction, \" Les radoteurs \", incarnée par le duo Stéphane De Groodt et Gilles Gaston-Dreyfus. + Magazine + Débat + + + Tout public + + + + Bleu, Blanc, Bouge + "Bleu, Blanc, Bouge" met en lumière une innovation française issue d'un territoire. + Magazine + Mag. Service + + + Tout public + + + + La grande librairie + Augustin Trapenard convie des auteurs d'univers différents qui font l'actualité littéraire. + Magazine + Mag. Culture + + + Tout public + + + + C ce soir + Aucune description + Magazine + Débat + + + Tout public + + + + La p'tite librairie + La vie mode d'emploi, par Georges Perec + François Busnel propose chaque jour de découvrir ou redécouvrir une oeuvre française ou étrangère : roman, essai, grand classique ou encore bande dessinée. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + C dans l'air + Caroline Roux (du lundi au jeudi) et Axel de Tarlé (le vendredi et samedi) décryptent en direct l'actualité en compagnie de quatre experts. En fin d'émission, ils répondent aux questions des téléspectateurs. + Info-Météo + Information + + + Tout public + + + + C à vous + Dans ce rendez-vous de tous ceux qui font l'actualité politique, économique, sociétale et culturelle, les téléspectateurs de C à Vous retrouvent Anne-Elisabeth Lemoine entourée de Lorrain Sénéchal, Aurélie Casse, Patrick Cohen, Pierre Lescure, Mohamed Bouhafsi, Bertrand Chameroy et Émilie Tran Nguyen. + Magazine + Débat + + + Tout public + + + + Vu + "Vu " : le zapping quotidien, impertinent et libre, sur le monde de l'image. + Divertissement + + + Tout public + + + + C à vous la suite + Seconde partie. Le talk-show accueille la mini-fiction, \" Les radoteurs \", incarnée par le duo Stéphane De Groodt et Gilles Gaston-Dreyfus. + Magazine + Débat + + + Tout public + + + + La nuit France 5 + Magazine de reportages + Magazine + Mag. Société + + + Tout public + + + + Oggy Oggy + Mission étoile filante + Curieux, Oggy Oggy a toujours hâte de vivre de nouvelles aventures avec ses amis. Sa maladresse le conduit parfois à faire des erreurs, mais ses idées géniales et farfelues gagnent toujours. + Jeunesse + Dessins Animés + + 0 . 10 . + + Tout public + + + + Oggy Oggy + L'attaque du train + Curieux, Oggy Oggy a toujours hâte de vivre de nouvelles aventures avec ses amis. Sa maladresse le conduit parfois à faire des erreurs, mais ses idées géniales et farfelues gagnent toujours. + Jeunesse + Dessins Animés + + 0 . 11 . + + Tout public + + + + Oggy Oggy + Oggy Oggy musicien + Curieux, Oggy Oggy a toujours hâte de vivre de nouvelles aventures avec ses amis. Sa maladresse le conduit parfois à faire des erreurs, mais ses idées géniales et farfelues gagnent toujours. + Jeunesse + Dessins Animés + + 1 . 35 . + + Tout public + + + + Oggy Oggy + Le vilain petit fantôme + Curieux, Oggy Oggy a toujours hâte de vivre de nouvelles aventures avec ses amis. Sa maladresse le conduit parfois à faire des erreurs, mais ses idées géniales et farfelues gagnent toujours. + Jeunesse + Dessins Animés + + 1 . 33 . + + Tout public + + + + Simon + Copain obligatoire + Invités pour la soirée par les parents de Simon, des amis viennent avec leur fils Maxime qui n'a aucune envie d'être là. Simon l'emmène dans sa chambre pour jouer mais Maxime boude. Simon fait alors tout pour le dérider et y parvient. Les deux enfants s'entendent de mieux en mieux et finissent par se lancer dans une super bataille d'oreillers au grenier... + Jeunesse + Dessins Animés + + 0 . 33 . + + Tout public + + + + Simon + Tricheur + Simon joue à cache-cache dans le jardin avec son amie Lou et son petit frère Gaspard. Lou n'arrive pas à trouver Simon qui a des règles du jeu bien à lui : il change en effet de cachette tout le temps. Lou s'en rend compte et adopte les méthodes de son ami. Simon est bien attrapé et Lou s'aperçoit qu'avec ces règles, le jeu est encore plus amusant... + Jeunesse + Dessins Animés + + 0 . 37 . + + Tout public + + + + Le village enchanté de Pinocchio + Amour et chevalerie + Aucune description + Jeunesse + Dessins Animés + + 0 . 15 . + + Tout public + + + + Le village enchanté de Pinocchio + Une soirée d'enfer + Les adultes ont une réunion à la mairie. Alors que Lumignon pense passer une soirée pyjama chez Pinocchio, le pantin a prévu autre chose pour son ami : le rapprocher de Léonie dont l'ogre est "secrètement" amoureux. Les choses se compliquent quand Volpek tente de s'incruster. Les deux amis le fuient... + Jeunesse + Dessins Animés + + 0 . 16 . + + Tout public + + + + Oui-Oui, enquêtes au pays des jouets + L'affaire du cirque du pays des jouets + Chaque aventure est l'occasion pour Oui-Oui d'élucider un mystère. Équipé de sa tablette "QuiQuandQuoi " et de son kit d'investigation composé d'une loupe, d'une lampe torche, de jumelles et de talkies-walkies, il propose aux enfants de mener une enquête et de récolter des indices… jusqu'à la résolution de l'affaire. + Jeunesse + Dessins Animés + + 1 . 18 . + + Tout public + + + + Oui-Oui, enquêtes au pays des jouets + L'affaire de la malette de détective disparue + Chaque aventure est l'occasion pour Oui-Oui d'élucider un mystère. Équipé de sa tablette "QuiQuandQuoi " et de son kit d'investigation composé d'une loupe, d'une lampe torche, de jumelles et de talkies-walkies, il propose aux enfants de mener une enquête et de récolter des indices… jusqu'à la résolution de l'affaire. + Jeunesse + Dessins Animés + + 1 . 15 . + + Tout public + + + + Oui-Oui, enquêtes au pays des jouets + L'affaire de la valise disparue + Chaque aventure est l'occasion pour Oui-Oui d'élucider un mystère. Équipé de sa tablette \"QuiQuandQuoi \" et de son kit d'investigation composé d'une loupe, d'une lampe torche, de jumelles et de talkies-walkies, il propose aux enfants de mener une enquête et de récolter des indices… jusqu'à la résolution de l'affaire. + Jeunesse + Dessins Animés + + 1 . 30 . + + Tout public + + + + T'choupi à l'école + La danse de T'choupi + C'est le jour de la kermesse, et dans l'effervescence, T'choupi oublie Doudou au stand de troc des jouets. L'ourson est alors considéré comme un jouet à échanger. Quand T'choupi s'en aperçoit, il panique : et si Doudou avait disparu pour toujours ?... + Jeunesse + Dessins Animés + + 0 . 1 . + + Tout public + + + + T'choupi à l'école + A la queue leu-leu + Aujourd'hui, l'exercice proposé par Sybille à ses élèves consiste à replacer des queues d'animaux en carton sur leurs bons propriétaires. Après quelques hésitations, tous les élèves réussissent, sauf Louis qui pose une queue de loup sur un éléphant... + Jeunesse + Dessins Animés + + 0 . 2 . + + Tout public + + + + Végétosaures + L'hibernation + Ginger et les Petis-Pois-Rex réveillent accidentellement une Kiwimammouth en train d'hiberner et doivent ruser pour la fatiguer afin qu'elle se rendorme. + Jeunesse + Dessins Animés + + 1 . 6 . + + Tout public + + + + Végétosaures + Le voleur de lit + Un Mandarinodocus vole le lit de Ginger, et ses amis vont devoir lui trouver un ami pour le faire partir. + Jeunesse + Dessins Animés + + 1 . 7 . + + Tout public + + + + Les triplés + Du pareil au même + Aucune description + Jeunesse + Dessins Animés + + 0 . 75 . + + Tout public + + + + Les triplés + Le jour des farces + Aucune description + Jeunesse + Dessins Animés + + 0 . 76 . + + Tout public + + + + Bluey + L'hôpital + La série suit Bluey, un chiot anthropomorphe de six ans, Bouvier australien, caractérisé par son abondance d'énergie, son imagination et sa curiosité. + Jeunesse + Dessins Animés + + 0 . 1 . + + Tout public + + + + Bluey + C'est l'heure de dormir + Alors que maman finit de lui lire une histoire et lui souhaite bonne nuit en l'embrassant, Bingo lui promet que demain matin, elle se réveillera dans son propre lit. + Jeunesse + Dessins Animés + + 1 . 25 . + + Tout public + + + + Bluey + Le gecko collant + Bluey et Bingo ne partiront pas rejoindre leur amie Judo tant qu'un gecko en caoutchouc ne sera pas tombé du plafond où il est collé. + Jeunesse + Dessins Animés + + 1 . 11 . + + Tout public + + + + Simon + En route pour la ferme + En train de jouer dehors chez leurs grands-parents un jour de brume, Simon et Gaspard découvrent une vache dans le jardin. Mamie connaît bien Roussette qui se perd souvent. Il faut la ramener à la ferme mais les deux frères ne sont pas rassurés par cette énorme bête. Apeurée, la vache s'enfuit à nouveau. Simon finit par la retrouver et arrive à l'apprivoiser... + Jeunesse + Dessins Animés + + 1 . 7 . + + Tout public + + + + Simon + Papi Charles + Aucune description + Jeunesse + Dessins Animés + + 2 . 10 . + + Tout public + + + + Simon Superlapin + C'est quoi ces bruits bizarres ? + C'est la nuit chez Papi et Mamie. Simon et Gaspard se couchent et vont s'endormir quand des petits bruits bizarres se font entendre. C'est quoi, un monstre ?! Gaspard a peur, mais il faut aller voir ! Ni une ni deux, les deux frères s'imaginent que c'est une mission pour la bande de Superlapin. Les deux enfants se transforment en super héros et basculent dans leur monde imaginaire. + Jeunesse + Dessins Animés + + 0 . 10 . + + Tout public + + + + Billy, le hamster cowboy + Un renard dans les pattes + Aucune description + Jeunesse + Dessins Animés + + 0 . 10 . + + Tout public + + + + Pompon Ours + La mauvaise patte + Pompon est un ourson espiègle, gai et joueur qui possède le précieux talent de faire de l'extra avec de l'ordinaire grâce à son imagination et sa créativité. + Jeunesse + Dessins Animés + + 0 . 3 . + + Tout public + + + + Pompon Ours + Drôle d'animal + Un matin, Pompon se rend compte qu'il n'aime plus le miel. Catastrophé, il est persuadé qu'il se transforme en un autre animal... Un éléphant peut-être ? + Jeunesse + Dessins Animés + + 1 . 3 . + + Tout public + + + + Masha et Michka + A qui est la trace ? + La neige est tombée et couvre la nature d'un manteau blanc. Macha va rendre visite à son ami et veut identifier les empreintes laissées par un animal... + Jeunesse + Dessins Animés + + 0 . 3 . + + Tout public + + + + Masha et Michka + Ça pousse + Macha se demande pourquoi le cochon qu'elle nourrit grandit, alors qu'elle reste petite. De son côté, Michka cherche un engrais miracle pour ses plants de tulipes... + Jeunesse + Dessins Animés + + 1 . 3 . + + Tout public + + + + Peppa Pig + Polly le perroquet + Peppa rend visite à ses grands-parents. Elle a hâte de faire la connaissance de leur nouvel animal de compagnie, un perroquet. L'oiseau, appelé Polly, répète tout ce qu'il entend, sans discernement, à la plus grande joie des enfants... + Jeunesse + Dessins Animés + + 0 . 3 . + + Tout public + + + + Peppa Pig + Le zoo + Aucune description + Jeunesse + Dessins Animés + + 4 . 16 . + + Tout public + + + + Peppa Pig + Le jour de sortie de Teddy + Peppa et George emmènent leurs jouets préférés en pique-nique... + Jeunesse + Dessins Animés + + 1 . 3 . + + Tout public + + + + Peppa Pig + Le taxi de mademoiselle Rabbit + Aucune description + Jeunesse + Dessins Animés + + 4 . 2 . + + Tout public + + + + Bing + Les bottes de géant + Bing joue au géant avec son amie Sula. Lorsque la pluie a cessé, il la raccompagne chez elle et sur le chemin ils s'amusent à sauter dans les flaques d'eau... + Jeunesse + Dessins Animés + + 0 . 28 . + + Tout public + + + + Bing + Les cubes + Bing construit une tour avec des cubes. Coco, de son côté veut faire un arc-en-ciel. Les deux amis vont-ils réussir à jouer ensemble et à créer une magnifique tour arc-en-ciel ? + Jeunesse + Dessins Animés + + 0 . 3 . + + Tout public + + + + Yétili + La complainte de gecko + Chaque jour, Nina et Léon, deux petites souris, retrouvent Yétili, la mascotte de la librairie du quartier. Ensemble, ils lisent et voyagent au pays des albums. + Jeunesse + Série Jeunesse + + 3 . 54 . + + Tout public + + + + Expression directe + EELV + Organisations syndicales, partis politiques, mais aussi mouvements d'entrepreneurs prennent la parole. + Magazine + Mag. Politique + + 0 . 0 . + + Tout public + + + + SOS animaux orphelins + Eléphants solidaires et pangolins solitaires + Kanissa, la jeune albinos, vit désormais dans la réserve au sein d'une troupe. Emma et Katharine examinent deux pangolins mâles sauvés du marché noir. + Documentaire + Doc. Nature + + 0 . 0 . + + Tout public + + + + Tous en scène pour le handicap + Difficultés d'accès à l'emploi + Un programme court consacré au handicap et au regard posé sur le handicap dans la société contemporaine. + Magazine + Mag. Service + + 0 . 0 . + + Tout public + + + + Le magazine de la santé + Aucune description + Magazine + Mag. Société + + + Tout public + + + + La p'tite librairie + Feuilles d'herbe, par Walt Whitman + François Busnel propose chaque jour de découvrir ou redécouvrir une oeuvre française ou étrangère : roman, essai, grand classique ou encore bande dessinée. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + Les routes de l'impossible + Somaliland : le pays qui n'existe pas + Chaque jour, des dizaines de camions transitent par le Somaliland, Etat "fictif" qui permet de relier le port de Djibouti à la capitale éthiopienne Addis Abeba. + Documentaire + Doc. Découverte + + 5 . 0 . + + Tout public + + + + Enquête sur l'île des moaï + Les moaï, les mystérieuses statues de l'île de Pâques, permettent de mieux comprendre l'apogée et la chute de cette incroyable culture insulaire. + Documentaire + Doc. Sc. & Tech. + + + Tout public + + + + Des trains pas comme les autres + Géorgie + En Géorgie, le globe-trotter ferroviaire Philippe Gougler découvre notamment des rivières parfois gorgées de paillettes d'or et une bibliothèque sur rails. + Documentaire + Doc. Évasion + + 9 . 0 . + + Tout public + + + + Le magazine de la santé + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Consomag + Qu'est-ce que le dispositif "Oui pub" ? + Le magazine de l'Institut national de la consommation donne à chacun des conseils pratiques pour mieux consommer. + Magazine + Mag. Service + + 0 . 0 . + + Tout public + + + + 1945 la République des enfants perdus + Ce documentaire raconte comment Gabor Sztehlo, pasteur hongrois, a recueilli des jeunes durant la Seconde Guerre mondiale et les a laissé créer une République. + Documentaire + Doc. Histoire + + + Tout public + + + + Les routes de l'impossible + Tadjikistan : sueurs froides + Pour traverser les montagnes du Tadjikistan, il faut emprunter la Pamir Highway, deuxième plus haute autoroute du monde, sur 900 kilomètres à flanc de ravin. + Documentaire + Doc. Découverte + + 4 . 0 . + + Tout public + + + + Le beurre : du bonheur en motte ? + Composition, mode de cuisson, fabrication, risques pour la santé : gros plan sur les secrets du beurre, composant incontournable de la gastronomie française. + Documentaire + Doc. Découverte + + + Tout public + + + + L'invité de C dans l'air + Caroline Roux (du lundi au jeudi) et Axel de Tarlé (le vendredi) reçoivent chaque jour en direct une personnalité qui fait l'actualité. Hommes et femmes politiques, écrivains, philosophes, scientifiques ou économistes : 10 minutes de dialogue pour donner un éclairage en prise directe avec l'information du jour. + Info-Météo + Information + + + Tout public + + + + C dans l'air + Caroline Roux (du lundi au jeudi) et Axel de Tarlé (le vendredi et samedi) décryptent en direct l'actualité en compagnie de quatre experts. En fin d'émission, ils répondent aux questions des téléspectateurs. + Info-Météo + Information + + + Tout public + + + + C à vous + Dans ce rendez-vous de tous ceux qui font l'actualité politique, économique, sociétale et culturelle, les téléspectateurs de C à Vous retrouvent Anne-Elisabeth Lemoine entourée de Lorrain Sénéchal, Aurélie Casse, Patrick Cohen, Pierre Lescure, Mohamed Bouhafsi, Bertrand Chameroy et Émilie Tran Nguyen. + Magazine + Débat + + + Tout public + + + + Vu + "Vu " : le zapping quotidien, impertinent et libre, sur le monde de l'image. + Divertissement + + + Tout public + + + + C à vous la suite + Seconde partie. Le talk-show accueille la mini-fiction, \" Les radoteurs \", incarnée par le duo Stéphane De Groodt et Gilles Gaston-Dreyfus. + Magazine + Débat + + + Tout public + + + + Bleu, Blanc, Bouge + "Bleu, Blanc, Bouge" met en lumière une innovation française issue d'un territoire. + Magazine + Mag. Service + + + Tout public + + + + Science grand format + Une émission de télévision française présentant des documentaires sur les dernières découvertes scientifiques. + Magazine + Mag. Sc. & Tech. + + + Tout public + + + + L'univers + Le Soleil, notre étoile + A travers le projet de la mission d'exploration Parker Solar Probe, une découverte de l'importance du Soleil et de sa relation avec la Terre. + Documentaire + Doc. Sc. & Tech. + + 0 . 0 . + + Tout public + + + + L'univers + En quête de vie extraterrestre + De récentes missions comme Kepler et TESS, dédiées à la découverte d'exoplanètes montrent que la vie est possible ailleurs que sur la Terre. + Documentaire + Doc. Sc. & Tech. + + 0 . 0 . + + Tout public + + + + Expression directe + Les Républicains + Organisations syndicales, partis politiques, mais aussi mouvements d'entrepreneurs prennent la parole. + Magazine + Mag. Politique + + 0 . 0 . + + Tout public + + + + C ce soir + Aucune description + Magazine + Débat + + + Tout public + + + + La p'tite librairie + Feuilles d'herbe, par Walt Whitman + François Busnel propose chaque jour de découvrir ou redécouvrir une oeuvre française ou étrangère : roman, essai, grand classique ou encore bande dessinée. + Magazine + Mag. Culture + + 0 . 0 . + + Tout public + + + + C dans l'air + Caroline Roux (du lundi au jeudi) et Axel de Tarlé (le vendredi et samedi) décryptent en direct l'actualité en compagnie de quatre experts. En fin d'émission, ils répondent aux questions des téléspectateurs. + Info-Météo + Information + + + Tout public + + + + C à vous + Dans ce rendez-vous de tous ceux qui font l'actualité politique, économique, sociétale et culturelle, les téléspectateurs de C à Vous retrouvent Anne-Elisabeth Lemoine entourée de Lorrain Sénéchal, Aurélie Casse, Patrick Cohen, Pierre Lescure, Mohamed Bouhafsi, Bertrand Chameroy et Émilie Tran Nguyen. + Magazine + Débat + + + Tout public + + + + Vu + "Vu " : le zapping quotidien, impertinent et libre, sur le monde de l'image. + Divertissement + + + Tout public + + + + C à vous la suite + Seconde partie. Le talk-show accueille la mini-fiction, \" Les radoteurs \", incarnée par le duo Stéphane De Groodt et Gilles Gaston-Dreyfus. + Magazine + Débat + + + Tout public + + + + La nuit France 5 + Magazine de reportages + Magazine + Mag. Société + + + Tout public + + + + La matinale week-end + L'actualité à travers les JT, les invités et les experts en plateau, les chroniques sur les sujets du moment, les revues de presse et les reportages et interviews. + Magazine + Mag. Société + + + Tout public + + + + Le JT de 7h + Le JT de 7h de franceinfo est un journal télé diffusé tous les jours à 7h du matin. Retrouvez Samuel Étienne et Johanna Ghiglia à l'antenne pour faire un point sur l'actualité nationale et internationale du moment : la politique, l'économie et la culture... + Info-Météo + Information + + + Tout public + + + + La matinale week-end + L'actualité à travers les JT, les invités et les experts en plateau, les chroniques sur les sujets du moment, les revues de presse et les reportages et interviews. + Magazine + Mag. Société + + + Tout public + + + + L'invité politique + Un face-à-face avec celles et ceux qui sont au cœur de l'actualité. Dix minutes pour rebondir sur les faits mais aussi pour aller plus loin. + Magazine + + + Tout public + + + + La matinale week-end + L'actualité à travers les JT, les invités et les experts en plateau, les chroniques sur les sujets du moment, les revues de presse et les reportages et interviews. + Magazine + Mag. Société + + + Tout public + + + + 8.30 franceinfo + Le 8h30 franceinfo est le rendez-vous quotidien d'actualité politique, diffusé sur la chaîne franceinfo en simultané radio/télévision. + Magazine + Mag. Société + + + Tout public + + + + La matinale week-end + L'actualité à travers les JT, les invités et les experts en plateau, les chroniques sur les sujets du moment, les revues de presse et les reportages et interviews. + Magazine + Mag. Société + + + Tout public + + + + Les informés de l'éco + "Les informés de l'éco" est un rendez-vous sur l'actualité économique, proposé tous les samedis en simultané radio/télévision, présenté par Emmanuel Cugny et Jean-Rémy Baudot. + Magazine + Mag. Économie + + + Tout public + + + + L'info chez vous + A partir de 10h30, toute l'actualité en direct sur la chaîne franceinfo, avec des JT, des invités et des experts en plateau, des chroniques et l'actualité en région. + Magazine + Mag. Société + + + Tout public + + + + Arrêt sur info + Chaque samedi, plusieurs experts reviennent sur l'actualité forte de la semaine et décryptent, pour mieux la comprendre, son évolution chronologique. + Magazine + Mag. Société + + + Tout public + + + + L'info chez vous + A partir de 10h30, toute l'actualité en direct sur la chaîne franceinfo, avec des JT, des invités et des experts en plateau, des chroniques et l'actualité en région. + Magazine + Mag. Société + + + Tout public + + + + Vrai ou faux, l'émission + "Vrai ou faux" est le magazine qui aide à y voir plus clair dans la jungle des intox. + Magazine + Mag. Société + + + Tout public + + + + 12/13 info week-end + Aucune description + Info-Météo + Information + + + Tout public + + + + franceinfo: et tout est plus clair + L'émission "et tout est plus clair" décrypte l'actualité nationale et internationale en couvrant diverses champs d'études comme la politique, l'économie ou le 7ème art. + Magazine + Mag. Société + + + Tout public + + + + Le doc de l'info + Chaque semaine, :le doc de l'info propose un grand reportage-enquête autour d'un thème d'actualité. + Documentaire + Doc. Société + + + Tout public + + + + Arrêt sur info + Chaque samedi, plusieurs experts reviennent sur l'actualité forte de la semaine et décryptent, pour mieux la comprendre, son évolution chronologique. + Magazine + Mag. Société + + + Tout public + + + + Au cœur de l'info week-end + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Outremer.l'info + L'information ultramarine trouve sa place dans un format de 9 minutes. "Outremer.l'info" permet une couverture plus large et un suivi accru des Ultramarins vivant dans l'Hexagone. + Info-Météo + Information + + + Tout public + + + + franceinfo: et tout est plus clair + L'émission "et tout est plus clair" décrypte l'actualité nationale et internationale en couvrant diverses champs d'études comme la politique, l'économie ou le 7ème art. + Magazine + Mag. Société + + + Tout public + + + + Au cœur de l'info week-end + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Vive les Jeux ! + "Vive les Jeux !" est un magazine de la rédaction de franceinfo.tv consacré à l'actualité des Jeux de Paris 2024. C'est le compte à rebours pour les athlètes comme pour l'organisation. + Magazine + Mag. Sport + + + Tout public + + + + Le monde de Belliard + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Vrai ou faux, l'émission + "Vrai ou faux" est le magazine qui aide à y voir plus clair dans la jungle des intox. + Magazine + Mag. Société + + + Tout public + + + + Le monde de Belliard + Aucune description + Magazine + Mag. Société + + + Tout public + + + + 19/20 info week-end + Aucune description + Info-Météo + Information + + + Tout public + + + + L'interview culture + Chaque semaine, franceinfo reçoit une personnalité de la culture. Au programme : cinéma, musique, théâtre, danse, littérature et temps forts de l'actualité culturelle. + Magazine + + + Tout public + + + + franceinfo: et tout est plus clair + L'émission "et tout est plus clair" décrypte l'actualité nationale et internationale en couvrant diverses champs d'études comme la politique, l'économie ou le 7ème art. + Magazine + Mag. Société + + + Tout public + + + + Les informés du soir + "Les informés" est une émission d'information et de débat durant laquelle 4 invité(e)s commentent l'actualité et développent leurs points de vue. + Magazine + Débat + + + Tout public + + + + Le fil info soir week-end + Aucune description + Info-Météo + Information + + + Tout public + + + + Vrai ou faux, l'émission + "Vrai ou faux" est le magazine qui aide à y voir plus clair dans la jungle des intox. + Magazine + Mag. Société + + + Tout public + + + + Le fil info soir week-end + Aucune description + Info-Météo + Information + + + Tout public + + + + Drôle d'Europe + Caroline de Camaret présente un rendez-vous autour de la marche de l'Europe, en partenariat avec France 24. + Magazine + Mag. Société + + + Tout public + + + + Le fil info soir week-end + Aucune description + Info-Météo + Information + + + Tout public + + + + 23h info + Alexandra Uzan, du lundi au jeudi à partir de 22h, et Sorya Khaldoun, du vendredi au dimanche, à 23h, proposent un point sur l'actualité du moment. + Info-Météo + Information + + + Tout public + + + + France 24 + En direct toute l'actualité "France 24" : l'info en live, en images et en vidéos. Participez, commentez et partager avec Franceinfo en temps réel ! + Info-Météo + Information + + + Tout public + + + + La matinale week-end + L'actualité à travers les JT, les invités et les experts en plateau, les chroniques sur les sujets du moment, les revues de presse et les reportages et interviews. + Magazine + Mag. Société + + + Tout public + + + + Le JT de 7h + Le JT de 7h de franceinfo est un journal télé diffusé tous les jours à 7h du matin. Retrouvez Samuel Étienne et Johanna Ghiglia à l'antenne pour faire un point sur l'actualité nationale et internationale du moment : la politique, l'économie et la culture... + Info-Météo + Information + + + Tout public + + + + La matinale week-end + L'actualité à travers les JT, les invités et les experts en plateau, les chroniques sur les sujets du moment, les revues de presse et les reportages et interviews. + Magazine + Mag. Société + + + Tout public + + + + L'invité politique + Un face-à-face avec celles et ceux qui sont au cœur de l'actualité. Dix minutes pour rebondir sur les faits mais aussi pour aller plus loin. + Magazine + + + Tout public + + + + La matinale week-end + L'actualité à travers les JT, les invités et les experts en plateau, les chroniques sur les sujets du moment, les revues de presse et les reportages et interviews. + Magazine + Mag. Société + + + Tout public + + + + 8.30 franceinfo + Le 8h30 franceinfo est le rendez-vous quotidien d'actualité politique, diffusé sur la chaîne franceinfo en simultané radio/télévision. + Magazine + Mag. Société + + + Tout public + + + + La matinale week-end + L'actualité à travers les JT, les invités et les experts en plateau, les chroniques sur les sujets du moment, les revues de presse et les reportages et interviews. + Magazine + Mag. Société + + + Tout public + + + + Les informés de l'Europe + Chaque dimanche, en simultané radio/télévision, un tour d'horizon de l'actualité européenne avec François Beaudonnet et des invités. + Magazine + Débat + + + Tout public + + + + L'info chez vous + A partir de 10h30, toute l'actualité en direct sur la chaîne franceinfo, avec des JT, des invités et des experts en plateau, des chroniques et l'actualité en région. + Magazine + Mag. Société + + + Tout public + + + + Correspondants + Chaque dimanche, des journalistes étrangers, correspondants en France pour leur média, apportent une vision différente de l'actualité politique française. + Magazine + Mag. Société + + + Tout public + + + + L'info chez vous + A partir de 10h30, toute l'actualité en direct sur la chaîne franceinfo, avec des JT, des invités et des experts en plateau, des chroniques et l'actualité en région. + Magazine + Mag. Société + + + Tout public + + + + Vrai ou faux, l'émission + "Vrai ou faux" est le magazine qui aide à y voir plus clair dans la jungle des intox. + Magazine + Mag. Société + + + Tout public + + + + franceinfo: et tout est plus clair + L'émission "et tout est plus clair" décrypte l'actualité nationale et internationale en couvrant diverses champs d'études comme la politique, l'économie ou le 7ème art. + Magazine + Mag. Société + + + Tout public + + + + Questions politiques + Une heure pour revenir avec une personnalité politique sur les principaux thèmes qui ont fait l'actualité de la semaine et commenter les grands faits de société. Le dimanche de 12h à 13h, présenté par Carine Bécard diffusé simultanément sur franceinfo et france inter. + Magazine + Mag. Politique + + + Tout public + + + + franceinfo: et tout est plus clair + L'émission "et tout est plus clair" décrypte l'actualité nationale et internationale en couvrant diverses champs d'études comme la politique, l'économie ou le 7ème art. + Magazine + Mag. Société + + + Tout public + + + + INAttendu + ":INAttendu" est un magazine d'approfondissement historique, proposé par franceinfo en partenariat avec l'INA, qui revisite l'actualité contemporaine grâce à des images d'archives. + Magazine + Mag. Société + + + Tout public + + + + Correspondants + Chaque dimanche, des journalistes étrangers, correspondants en France pour leur média, apportent une vision différente de l'actualité politique française. + Magazine + Mag. Société + + + Tout public + + + + Au cœur de l'info week-end + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Outremer.l'info + L'information ultramarine trouve sa place dans un format de 9 minutes. "Outremer.l'info" permet une couverture plus large et un suivi accru des Ultramarins vivant dans l'Hexagone. + Info-Météo + Information + + + Tout public + + + + Au cœur de l'info week-end + Aucune description + Magazine + Mag. Société + + + Tout public + + + + La faute à l'Europe + Chaque semaine, depuis le Parlement européen, Yann-Antony Noghès et ses chroniqueurs reçoivent ceux qui font l'Europe, décryptent l'actualité communautaire et racontent les coulisses des grandes négociations qui engagent notre avenir à tous. + Magazine + Mag. Politique + + + Tout public + + + + Le monde de Belliard + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Vrai ou faux, l'émission + "Vrai ou faux" est le magazine qui aide à y voir plus clair dans la jungle des intox. + Magazine + Mag. Société + + + Tout public + + + + Le monde de Belliard + Aucune description + Magazine + Mag. Société + + + Tout public + + + + 19/20 info week-end + Aucune description + Info-Météo + Information + + + Tout public + + + + Drôle d'Europe + Caroline de Camaret présente un rendez-vous autour de la marche de l'Europe, en partenariat avec France 24. + Magazine + Mag. Société + + + Tout public + + + + franceinfo: et tout est plus clair + L'émission "et tout est plus clair" décrypte l'actualité nationale et internationale en couvrant diverses champs d'études comme la politique, l'économie ou le 7ème art. + Magazine + Mag. Société + + + Tout public + + + + Les informés du soir + "Les informés" est une émission d'information et de débat durant laquelle 4 invité(e)s commentent l'actualité et développent leurs points de vue. + Magazine + Débat + + + Tout public + + + + Le fil info soir week-end + Aucune description + Info-Météo + Information + + + Tout public + + + + Le doc de l'info + Chaque semaine, :le doc de l'info propose un grand reportage-enquête autour d'un thème d'actualité. + Documentaire + Doc. Société + + + Tout public + + + + franceinfo: et tout est plus clair + L'émission "et tout est plus clair" décrypte l'actualité nationale et internationale en couvrant diverses champs d'études comme la politique, l'économie ou le 7ème art. + Magazine + Mag. Société + + + Tout public + + + + L'interview culture + Chaque semaine, franceinfo reçoit une personnalité de la culture. Au programme : cinéma, musique, théâtre, danse, littérature et temps forts de l'actualité culturelle. + Magazine + + + Tout public + + + + Le fil info soir week-end + Aucune description + Info-Météo + Information + + + Tout public + + + + 23h info + Alexandra Uzan, du lundi au jeudi à partir de 22h, et Sorya Khaldoun, du vendredi au dimanche, à 23h, proposent un point sur l'actualité du moment. + Info-Météo + Information + + + Tout public + + + + France 24 + En direct toute l'actualité "France 24" : l'info en live, en images et en vidéos. Participez, commentez et partager avec Franceinfo en temps réel ! + Info-Météo + Information + + + Tout public + + + + France 24 + En direct toute l'actualité "France 24" : l'info en live, en images et en vidéos. Participez, commentez et partager avec Franceinfo en temps réel ! + Magazine + Information + + + Tout public + + + + La matinale + L'actualité à travers les JT, les invités et les experts en plateau, les chroniques sur les sujets du moment, les revues de presse, et les reportages et interviews. + Magazine + Information + + + Tout public + + + + Le JT de 7h + Le JT de 7h de franceinfo est un journal télé diffusé tous les jours à 7h du matin. Retrouvez Samuel Étienne et Johanna Ghiglia à l'antenne pour faire un point sur l'actualité nationale et internationale du moment : la politique, l'économie et la culture... + Information + Journal + + + Tout public + + + + La matinale + L'actualité à travers les JT, les invités et les experts en plateau, les chroniques sur les sujets du moment, les revues de presse, et les reportages et interviews. + Magazine + Information + + + Tout public + + + + L'invité politique + Un face-à-face avec celles et ceux qui sont au coeur de l'actualité. Dix minutes pour rebondir sur les faits mais aussi pour aller plus loin. + Magazine + Interview + + + Tout public + + + + La matinale + L'actualité à travers les JT, les invités et les experts en plateau, les chroniques sur les sujets du moment, les revues de presse, et les reportages et interviews. + Magazine + Information + + + Tout public + + + + 8.30 franceinfo + Le 8h30 franceinfo est le rendez-vous quotidien d'actualité politique, diffusé sur la chaîne franceinfo en simultané radio/télévision. + Magazine + Information + + Tout public + + + + Le journal + Retrouvez toutes les actualités ici : dernières nouvelles en France sur la santé, l'économie, la société ou la culture. Soyez également au courant de ce qui se passe dans le monde. + Information + Journal + + Tout public + + + + Les informés du matin + "Les informés du matin" est une émission d'information, diffusée sur franceinfo en simultané radio/télévision du lundi au vendredi. Trente minutes pour décrypter, éclairer et approfondir les grandes actualités de la matinée à travers les regards croisés de quatre spécialistes de franceinfo. + Magazine + Débat + + Tout public + + + + L'info s'éclaire + Du lundi au vendredi de 9h30 à 10h20, en direct, invités et experts décryptent l'actualité du jour dans l'émission ": l'info s'éclaire", présentée par Axel de Tarlé. + Magazine + Information + + + Tout public + + + + L'invité politique + Un face-à-face avec celles et ceux qui sont au coeur de l'actualité. Dix minutes pour rebondir sur les faits mais aussi pour aller plus loin. + Magazine + Interview + + + Tout public + + + + L'info chez vous + A partir de 10h30, toute l'actualité en direct sur la chaîne franceinfo, avec des JT, des invités et des experts en plateau, des chroniques et l'actualité en région. + Magazine + Information + + + Tout public + + + + 12/13 info + Au programme, des invités et experts en plateau et des chroniques sur l'actualité internationale, politique, économique, sociétale ou encore environnementale. + Information + Journal + + + Tout public + + + + L'info s'éclaire + Du lundi au vendredi de 9h30 à 10h20, en direct, invités et experts décryptent l'actualité du jour dans l'émission ": l'info s'éclaire", présentée par Axel de Tarlé. + Magazine + Information + + + Tout public + + + + Outremer.l'info + L'information ultramarine trouve sa place dans un format de 9 minutes. "Outremer.l'info" permet une couverture plus large et un suivi accru des Ultramarins vivant dans l'Hexagone. + Information + Journal + + + Tout public + + + + Au cœur de l'info + ":au coeur de l'info", c'est le rendez-vous de l'après-midi entre 14h et 17h pour tout voir, tout savoir et tout comprendre de l'actualité. + Magazine + Information + + + Tout public + + + + Tout et son contraire + Aucune description + Magazine + Interview + + + Tout public + + + + Au cœur de l'info + ":au coeur de l'info", c'est le rendez-vous de l'après-midi entre 14h et 17h pour tout voir, tout savoir et tout comprendre de l'actualité. + Magazine + Information + + + Tout public + + + + Le monde de Loison + ":le monde de Loison", c'est l'info qui prend le temps du décryptage et de la diversité des points de vue, pour proposer la palette de compréhension la plus riche possible. + Magazine + Information + + + Tout public + + + + 19/20 info + Au programme, des invités et des experts en plateau, des chroniques sur l'actualité de la journée et la chronique "Vrai ou Faux". + Information + Journal + + + Tout public + + + + Les informés du soir + "Les informés" est une émission d'information et de débat durant laquelle 4 invité(e)s commentent l'actualité et développent leurs points de vue. + Magazine + Débat + + + Tout public + + + + Planète info + Le rendez-vous quotidien sur l'environnement, avec des exemples pratiques pour tenter d'appréhender ensemble les bouleversements de notre planète. Parole aux scientifiques, aux artistes, aux associations, et plus encore. + Magazine + Information + + + Tout public + + + + Vrai ou faux, l'émission + "Vrai ou faux" est le magazine qui aide à y voir plus clair dans la jungle des intox. + Magazine + Information + + Tout public + + + + L'invité éco + L'interview économique de franceinfo, diffusée en simultanée radio/télévision. + Magazine + Information + + + Tout public + + + + Planète info + Le rendez-vous quotidien sur l'environnement, avec des exemples pratiques pour tenter d'appréhender ensemble les bouleversements de notre planète. Parole aux scientifiques, aux artistes, aux associations, et plus encore. + Magazine + Information + + + Tout public + + + + 23h info + Alexandra Uzan, du lundi au jeudi à partir de 22h, et Sorya Khaldoun, du vendredi au dimanche, à 23h, proposent un point sur l'actualité du moment. + Information + Journal + + + Tout public + + + + France 24 + En direct toute l'actualité "France 24" : l'info en live, en images et en vidéos. Participez, commentez et partager avec Franceinfo en temps réel ! + Magazine + Information + + + Tout public + + + + La matinale + L'actualité à travers les JT, les invités et les experts en plateau, les chroniques sur les sujets du moment, les revues de presse, et les reportages et interviews. + Magazine + Mag. Société + + + Tout public + + + + Le JT de 7h + Le JT de 7h de franceinfo est un journal télé diffusé tous les jours à 7h du matin. Retrouvez Samuel Étienne et Johanna Ghiglia à l'antenne pour faire un point sur l'actualité nationale et internationale du moment : la politique, l'économie et la culture... + Info-Météo + Information + + + Tout public + + + + La matinale + L'actualité à travers les JT, les invités et les experts en plateau, les chroniques sur les sujets du moment, les revues de presse, et les reportages et interviews. + Magazine + Mag. Société + + + Tout public + + + + L'invité politique + Un face-à-face avec celles et ceux qui sont au cœur de l'actualité. Dix minutes pour rebondir sur les faits mais aussi pour aller plus loin. + Magazine + + + Tout public + + + + La matinale + L'actualité à travers les JT, les invités et les experts en plateau, les chroniques sur les sujets du moment, les revues de presse, et les reportages et interviews. + Magazine + Mag. Société + + + Tout public + + + + 8.30 franceinfo + Le 8h30 franceinfo est le rendez-vous quotidien d'actualité politique, diffusé sur la chaîne franceinfo en simultané radio/télévision. + Magazine + Mag. Société + + + Tout public + + + + Le journal + Retrouvez toutes les actualités ici : dernières nouvelles en France sur la santé, l'économie, la société ou la culture. Soyez également au courant de ce qui se passe dans le monde. + Info-Météo + Information + + + Tout public + + + + Les informés du matin + "Les informés du matin" est une émission d'information, diffusée sur franceinfo en simultané radio/télévision du lundi au vendredi. Trente minutes pour décrypter, éclairer et approfondir les grandes actualités de la matinée à travers les regards croisés de quatre spécialistes de franceinfo. + Magazine + Débat + + + Tout public + + + + L'info s'éclaire + Du lundi au vendredi de 9h30 à 10h20, en direct, invités et experts décryptent l'actualité du jour dans l'émission ": l'info s'éclaire", présentée par Axel de Tarlé. + Magazine + Mag. Société + + + Tout public + + + + L'invité politique + Un face-à-face avec celles et ceux qui sont au cœur de l'actualité. Dix minutes pour rebondir sur les faits mais aussi pour aller plus loin. + Magazine + + + Tout public + + + + L'info chez vous + A partir de 10h30, toute l'actualité en direct sur la chaîne franceinfo, avec des JT, des invités et des experts en plateau, des chroniques et l'actualité en région. + Magazine + Mag. Société + + + Tout public + + + + 12/13 info + Au programme, des invités et experts en plateau et des chroniques sur l'actualité internationale, politique, économique, sociétale ou encore environnementale. + Info-Météo + Information + + + Tout public + + + + L'info s'éclaire + Du lundi au vendredi de 9h30 à 10h20, en direct, invités et experts décryptent l'actualité du jour dans l'émission ": l'info s'éclaire", présentée par Axel de Tarlé. + Magazine + Mag. Société + + + Tout public + + + + Outremer.l'info + L'information ultramarine trouve sa place dans un format de 9 minutes. "Outremer.l'info" permet une couverture plus large et un suivi accru des Ultramarins vivant dans l'Hexagone. + Info-Météo + Information + + + Tout public + + + + Au cœur de l'info + ":au cœur de l'info", c'est le rendez-vous de l'après-midi entre 14h et 17h pour tout voir, tout savoir et tout comprendre de l'actualité. + Magazine + Mag. Société + + + Tout public + + + + Tout et son contraire + Aucune description + Magazine + + + Tout public + + + + Au cœur de l'info + ":au cœur de l'info", c'est le rendez-vous de l'après-midi entre 14h et 17h pour tout voir, tout savoir et tout comprendre de l'actualité. + Magazine + Mag. Société + + + Tout public + + + + Le monde de Loison + ":le monde de Loison", c'est l'info qui prend le temps du décryptage et de la diversité des points de vue, pour proposer la palette de compréhension la plus riche possible. + Magazine + Mag. Société + + + Tout public + + + + 19/20 info + Au programme, des invités et des experts en plateau, des chroniques sur l'actualité de la journée et la chronique "Vrai ou Faux". + Info-Météo + Information + + + Tout public + + + + Les informés du soir + "Les informés" est une émission d'information et de débat durant laquelle 4 invité(e)s commentent l'actualité et développent leurs points de vue. + Magazine + Débat + + + Tout public + + + + Planète info + Le rendez-vous quotidien sur l'environnement, avec des exemples pratiques pour tenter d'appréhender ensemble les bouleversements de notre planète. Parole aux scientifiques, aux artistes, aux associations, et plus encore. + Magazine + Mag. Société + + + Tout public + + + + Le doc de l'info + Chaque semaine, :le doc de l'info propose un grand reportage-enquête autour d'un thème d'actualité. + Documentaire + Doc. Société + + + Tout public + + + + L'invité éco + L'interview économique de franceinfo, diffusée en simultanée radio/télévision. + Magazine + Mag. Économie + + + Tout public + + + + Planète info + Le rendez-vous quotidien sur l'environnement, avec des exemples pratiques pour tenter d'appréhender ensemble les bouleversements de notre planète. Parole aux scientifiques, aux artistes, aux associations, et plus encore. + Magazine + Mag. Société + + + Tout public + + + + 23h info + Alexandra Uzan, du lundi au jeudi à partir de 22h, et Sorya Khaldoun, du vendredi au dimanche, à 23h, proposent un point sur l'actualité du moment. + Info-Météo + Information + + + Tout public + + + + France 24 + En direct toute l'actualité "France 24" : l'info en live, en images et en vidéos. Participez, commentez et partager avec Franceinfo en temps réel ! + Info-Météo + Information + + + Tout public + + + + La matinale + L'actualité à travers les JT, les invités et les experts en plateau, les chroniques sur les sujets du moment, les revues de presse, et les reportages et interviews. + Magazine + Mag. Société + + + Tout public + + + + Le JT de 7h + Le JT de 7h de franceinfo est un journal télé diffusé tous les jours à 7h du matin. Retrouvez Samuel Étienne et Johanna Ghiglia à l'antenne pour faire un point sur l'actualité nationale et internationale du moment : la politique, l'économie et la culture... + Info-Météo + Information + + + Tout public + + + + La matinale + L'actualité à travers les JT, les invités et les experts en plateau, les chroniques sur les sujets du moment, les revues de presse, et les reportages et interviews. + Magazine + Mag. Société + + + Tout public + + + + L'invité politique + Un face-à-face avec celles et ceux qui sont au cœur de l'actualité. Dix minutes pour rebondir sur les faits mais aussi pour aller plus loin. + Magazine + + + Tout public + + + + La matinale + L'actualité à travers les JT, les invités et les experts en plateau, les chroniques sur les sujets du moment, les revues de presse, et les reportages et interviews. + Magazine + Mag. Société + + + Tout public + + + + 8.30 franceinfo + Le 8h30 franceinfo est le rendez-vous quotidien d'actualité politique, diffusé sur la chaîne franceinfo en simultané radio/télévision. + Magazine + Mag. Société + + + Tout public + + + + Le journal + Retrouvez toutes les actualités ici : dernières nouvelles en France sur la santé, l'économie, la société ou la culture. Soyez également au courant de ce qui se passe dans le monde. + Info-Météo + Information + + + Tout public + + + + Les informés du matin + "Les informés du matin" est une émission d'information, diffusée sur franceinfo en simultané radio/télévision du lundi au vendredi. Trente minutes pour décrypter, éclairer et approfondir les grandes actualités de la matinée à travers les regards croisés de quatre spécialistes de franceinfo. + Magazine + Débat + + + Tout public + + + + L'info s'éclaire + Du lundi au vendredi de 9h30 à 10h20, en direct, invités et experts décryptent l'actualité du jour dans l'émission ": l'info s'éclaire", présentée par Axel de Tarlé. + Magazine + Mag. Société + + + Tout public + + + + L'invité politique + Un face-à-face avec celles et ceux qui sont au cœur de l'actualité. Dix minutes pour rebondir sur les faits mais aussi pour aller plus loin. + Magazine + + + Tout public + + + + L'info chez vous + A partir de 10h30, toute l'actualité en direct sur la chaîne franceinfo, avec des JT, des invités et des experts en plateau, des chroniques et l'actualité en région. + Magazine + Mag. Société + + + Tout public + + + + 12/13 info + Au programme, des invités et experts en plateau et des chroniques sur l'actualité internationale, politique, économique, sociétale ou encore environnementale. + Info-Météo + Information + + + Tout public + + + + L'info s'éclaire + Du lundi au vendredi de 9h30 à 10h20, en direct, invités et experts décryptent l'actualité du jour dans l'émission ": l'info s'éclaire", présentée par Axel de Tarlé. + Magazine + Mag. Société + + + Tout public + + + + Outremer.l'info + L'information ultramarine trouve sa place dans un format de 9 minutes. "Outremer.l'info" permet une couverture plus large et un suivi accru des Ultramarins vivant dans l'Hexagone. + Info-Météo + Information + + + Tout public + + + + Au cœur de l'info + ":au cœur de l'info", c'est le rendez-vous de l'après-midi entre 14h et 17h pour tout voir, tout savoir et tout comprendre de l'actualité. + Magazine + Mag. Société + + + Tout public + + + + Tout et son contraire + Aucune description + Magazine + + + Tout public + + + + Au cœur de l'info + ":au cœur de l'info", c'est le rendez-vous de l'après-midi entre 14h et 17h pour tout voir, tout savoir et tout comprendre de l'actualité. + Magazine + Mag. Société + + + Tout public + + + + Le monde de Loison + ":le monde de Loison", c'est l'info qui prend le temps du décryptage et de la diversité des points de vue, pour proposer la palette de compréhension la plus riche possible. + Magazine + Mag. Société + + + Tout public + + + + 19/20 info + Au programme, des invités et des experts en plateau, des chroniques sur l'actualité de la journée et la chronique "Vrai ou Faux". + Info-Météo + Information + + + Tout public + + + + Les informés du soir + "Les informés" est une émission d'information et de débat durant laquelle 4 invité(e)s commentent l'actualité et développent leurs points de vue. + Magazine + Débat + + + Tout public + + + + Planète info + Le rendez-vous quotidien sur l'environnement, avec des exemples pratiques pour tenter d'appréhender ensemble les bouleversements de notre planète. Parole aux scientifiques, aux artistes, aux associations, et plus encore. + Magazine + Mag. Société + + + Tout public + + + + La faute à l'Europe + Chaque semaine, depuis le Parlement européen, Yann-Antony Noghès et ses chroniqueurs reçoivent ceux qui font l'Europe, décryptent l'actualité communautaire et racontent les coulisses des grandes négociations qui engagent notre avenir à tous. + Magazine + Mag. Politique + + + Tout public + + + + L'invité éco + L'interview économique de franceinfo, diffusée en simultanée radio/télévision. + Magazine + Mag. Économie + + + Tout public + + + + Planète info + Le rendez-vous quotidien sur l'environnement, avec des exemples pratiques pour tenter d'appréhender ensemble les bouleversements de notre planète. Parole aux scientifiques, aux artistes, aux associations, et plus encore. + Magazine + Mag. Société + + + Tout public + + + + 23h info + Alexandra Uzan, du lundi au jeudi à partir de 22h, et Sorya Khaldoun, du vendredi au dimanche, à 23h, proposent un point sur l'actualité du moment. + Info-Météo + Information + + + Tout public + + + + France 24 + En direct toute l'actualité "France 24" : l'info en live, en images et en vidéos. Participez, commentez et partager avec Franceinfo en temps réel ! + Info-Météo + Information + + + Tout public + + + + La matinale + L'actualité à travers les JT, les invités et les experts en plateau, les chroniques sur les sujets du moment, les revues de presse, et les reportages et interviews. + Magazine + Mag. Société + + + Tout public + + + + Le JT de 7h + Le JT de 7h de franceinfo est un journal télé diffusé tous les jours à 7h du matin. Retrouvez Samuel Étienne et Johanna Ghiglia à l'antenne pour faire un point sur l'actualité nationale et internationale du moment : la politique, l'économie et la culture... + Info-Météo + Information + + + Tout public + + + + La matinale + L'actualité à travers les JT, les invités et les experts en plateau, les chroniques sur les sujets du moment, les revues de presse, et les reportages et interviews. + Magazine + Mag. Société + + + Tout public + + + + L'invité politique + Un face-à-face avec celles et ceux qui sont au cœur de l'actualité. Dix minutes pour rebondir sur les faits mais aussi pour aller plus loin. + Magazine + + + Tout public + + + + La matinale + L'actualité à travers les JT, les invités et les experts en plateau, les chroniques sur les sujets du moment, les revues de presse, et les reportages et interviews. + Magazine + Mag. Société + + + Tout public + + + + 8.30 franceinfo + Le 8h30 franceinfo est le rendez-vous quotidien d'actualité politique, diffusé sur la chaîne franceinfo en simultané radio/télévision. + Magazine + Mag. Société + + + Tout public + + + + Le journal + Retrouvez toutes les actualités ici : dernières nouvelles en France sur la santé, l'économie, la société ou la culture. Soyez également au courant de ce qui se passe dans le monde. + Info-Météo + Information + + + Tout public + + + + Les informés du matin + "Les informés du matin" est une émission d'information, diffusée sur franceinfo en simultané radio/télévision du lundi au vendredi. Trente minutes pour décrypter, éclairer et approfondir les grandes actualités de la matinée à travers les regards croisés de quatre spécialistes de franceinfo. + Magazine + Débat + + + Tout public + + + + L'info s'éclaire + Du lundi au vendredi de 9h30 à 10h20, en direct, invités et experts décryptent l'actualité du jour dans l'émission ": l'info s'éclaire", présentée par Axel de Tarlé. + Magazine + Mag. Société + + + Tout public + + + + L'invité politique + Un face-à-face avec celles et ceux qui sont au cœur de l'actualité. Dix minutes pour rebondir sur les faits mais aussi pour aller plus loin. + Magazine + + + Tout public + + + + L'info chez vous + A partir de 10h30, toute l'actualité en direct sur la chaîne franceinfo, avec des JT, des invités et des experts en plateau, des chroniques et l'actualité en région. + Magazine + Mag. Société + + + Tout public + + + + 12/13 info + Au programme, des invités et experts en plateau et des chroniques sur l'actualité internationale, politique, économique, sociétale ou encore environnementale. + Info-Météo + Information + + + Tout public + + + + L'info s'éclaire + Du lundi au vendredi de 9h30 à 10h20, en direct, invités et experts décryptent l'actualité du jour dans l'émission ": l'info s'éclaire", présentée par Axel de Tarlé. + Magazine + Mag. Société + + + Tout public + + + + Outremer.l'info + L'information ultramarine trouve sa place dans un format de 9 minutes. "Outremer.l'info" permet une couverture plus large et un suivi accru des Ultramarins vivant dans l'Hexagone. + Info-Météo + Information + + + Tout public + + + + Au cœur de l'info + ":au cœur de l'info", c'est le rendez-vous de l'après-midi entre 14h et 17h pour tout voir, tout savoir et tout comprendre de l'actualité. + Magazine + Mag. Société + + + Tout public + + + + Tout et son contraire + Aucune description + Magazine + + + Tout public + + + + Au cœur de l'info + ":au cœur de l'info", c'est le rendez-vous de l'après-midi entre 14h et 17h pour tout voir, tout savoir et tout comprendre de l'actualité. + Magazine + Mag. Société + + + Tout public + + + + Le monde de Loison + ":le monde de Loison", c'est l'info qui prend le temps du décryptage et de la diversité des points de vue, pour proposer la palette de compréhension la plus riche possible. + Magazine + Mag. Société + + + Tout public + + + + 19/20 info + Au programme, des invités et des experts en plateau, des chroniques sur l'actualité de la journée et la chronique "Vrai ou Faux". + Info-Météo + Information + + + Tout public + + + + Les informés du soir + "Les informés" est une émission d'information et de débat durant laquelle 4 invité(e)s commentent l'actualité et développent leurs points de vue. + Magazine + Débat + + + Tout public + + + + Planète info + Le rendez-vous quotidien sur l'environnement, avec des exemples pratiques pour tenter d'appréhender ensemble les bouleversements de notre planète. Parole aux scientifiques, aux artistes, aux associations, et plus encore. + Magazine + Mag. Société + + + Tout public + + + + Vive les Jeux ! + "Vive les Jeux !" est un magazine de la rédaction de franceinfo.tv consacré à l'actualité des Jeux de Paris 2024. C'est le compte à rebours pour les athlètes comme pour l'organisation. + Magazine + Mag. Sport + + + Tout public + + + + L'invité éco + L'interview économique de franceinfo, diffusée en simultanée radio/télévision. + Magazine + Mag. Économie + + + Tout public + + + + Planète info + Le rendez-vous quotidien sur l'environnement, avec des exemples pratiques pour tenter d'appréhender ensemble les bouleversements de notre planète. Parole aux scientifiques, aux artistes, aux associations, et plus encore. + Magazine + Mag. Société + + + Tout public + + + + 23h info + Alexandra Uzan, du lundi au jeudi à partir de 22h, et Sorya Khaldoun, du vendredi au dimanche, à 23h, proposent un point sur l'actualité du moment. + Info-Météo + Information + + + Tout public + + + + France 24 + En direct toute l'actualité "France 24" : l'info en live, en images et en vidéos. Participez, commentez et partager avec Franceinfo en temps réel ! + Info-Météo + Information + + + Tout public + + + + Moka + Le conte de la carte des anciens + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 33 . + + Tout public + + + + Moka + La marque des héros + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 34 . + + Tout public + + + + Moka + La technique secrète de Tamarok + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 36 . + + Tout public + + + + Moka + Le sac des mille et un trésors + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 37 . + + Tout public + + + + Moka + Le territoire des taupes terrifiantes + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 38 . + + Tout public + + + + Moka + L'héritier de l'impératrice des glaces + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 39 . + + Tout public + + + + Moka + Le pic du vertige ultime + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 40 . + + Tout public + + + + Moka + L'orgueil de la naufragée + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 41 . + + Tout public + + + + Manger, bouger, dormir + Bien démarrer la journée + Marcus mange n'importe quoi, reste des heures sur son canapé, et dort trop peu. Toute son éducation est à refaire. Il est là pour sensibiliser les enfants à une bonne hygiène de vie grâce à des comportements alimentaires, des activités physiques et une bonne qualité de sommeil. + Magazine + Mag. Éducation + + 1 . 2 . + + Tout public + + + + Les Octonauts + Les octonauts et les patineurs des mers + Les Octonauts suivent un banc de plancton, mais Kwazii s'ennuie et souhaite partir à l'aventure. Il va pouvoir partir en mission lors du sauvetage de patineurs des mers... + Jeunesse + Dessins Animés + + 2 . 10 . + + Tout public + + + + Les Octonauts + Les Octonauts et les poissons-grenouilles + Les crues empêchent les poissons grenouilles de se réfugier chez eux. Les Octonauts doivent donc leur trouver un nouvel habitat... + Jeunesse + Dessins Animés + + 2 . 11 . + + Tout public + + + + Les Octonauts + Les octonauts et le phoque + Nora, un poisson Remora, a disparu. Les Octonauts appellent à la rescousse un vieil ami, le détéctive Harry, un phoque qui a beaucoup d'instinct... + Jeunesse + Dessins Animés + + 2 . 12 . + + Tout public + + + + Les Octonauts + Les octonauts et les oursons d'eau + Les Octonauts découvrent une pierre parlante, Franck, qui se trouve être en réalité un ourson d'eau. Dans un tunnel de lave, ce dernier va donner une leçon de vie à Pesso... + Jeunesse + Dessins Animés + + 2 . 1 . + + Tout public + + + + Zig & Sharko + Des tifs à gogo ! + Marina a les cheveux fourchus et se pose un masque capillaire miracle. Le lendemain, Marina a une chevelure incroyablement longue, tout bonnement impossible à coiffer sans l'aide d'un professionnel. Et pour ça, Zig est dans la place... + Jeunesse + Dessins Animés + + 1 . 45 . + + Tout public + + + + Zig & Sharko + Marina à la ferme + Marina s'est lancée dans l'élevage de vers à soie. Le truc, c'est qu'il y a un animal bizarre dans le troupeau : Zig s'est en effet déguisé en chenille et c'est une belle bête... + Jeunesse + Dessins Animés + + 1 . 44 . + + Tout public + + + + Zig & Sharko + Le toutou à son papa + Marina veut un chien et justement Zig passe par là. La hyène ne fait pas la fine bouche : pour être proche de la sirène, Zig est prêt à tout. Même jouer le toutou à son papa pour Sharko ?... + Jeunesse + Dessins Animés + + 1 . 43 . + + Tout public + + + + Baby Shark : l'aventure sous l'eau + Un artiste ne baisse jamais les nageoires + Baby et ses amis montent une comédie musicale pour redonner le sourire à Diva. + Jeunesse + Dessins Animés + + 0 . 8 . + + Tout public + + + + Baby Shark : l'aventure sous l'eau + Détective Baby Shark + Baby Shark et William sont deux meilleurs amis qui habitent à Carnivore-les-bains. En jouant et en chantant, ils sont prêts pour une nouvelle aventure chaque jour. + Jeunesse + Dessins Animés + + 0 . 8 . + + Tout public + + + + Spidey et ses amis extraordinaires + La chasse aux citrouilles pourries + Lorsque le Bouffon Vert gâche la chasse aux citrouilles de l'équipe Spidey, nos héros n'ont d'autre choix que de déjouer ses plans ignobles. + Jeunesse + Dessins Animés + + 0 . 18 . + + Tout public + + + + Spidey et ses amis extraordinaires + Attaque en trompe-l'œil + Quand le Bouffon Vert repeint les œuvres d'art du musée, Miles arrive à la rescousse ! + Jeunesse + Dessins Animés + + 0 . 15 . + + Tout public + + + + Les Sisters + Parfum de princesse + Aucune description + Jeunesse + Dessins Animés + + 1 . 47 . + + Tout public + + + + Les Sisters + Poussée de nadonnaissance + Marine se retrouve avec le même bouton que Wendy sur la figure et se demande si elle n'est pas en train de devenir une "adonaissante". + Jeunesse + Dessins Animés + + 1 . 48 . + + Tout public + + + + Les Sisters + Mon journal qu'à moi + Wendy en a ras le bol que Marine lui pique son journal intime sans arrêt. Maxence lui souffle une idée géniale: et si la pestouille avait son propre journal intime? La grande Sister offre alors son premier journal à Marine... La pestouille est ravie mais bien vite se demande ce qu'elle pourrait bien écrire dedans... Des petits secrets sur sa grande Sister, bien sûr ! + Jeunesse + Dessins Animés + + 1 . 49 . + + Tout public + + + + Les Sisters + Un selfie avec Joy-D + Marine et Wendy, sont à la fois les meilleures amies et les pires ennemies - typiquement des soeurs ! Elles conçoivent des stratagèmes pour obtenir ce qu'elles veulent, ce qui provoque des situations folles et surtout beaucoup de rires. + Jeunesse + Dessins Animés + + 1 . 51 . + + Tout public + + + + Bienvenue chez les Loud + L'ordre selon Lynn + Lynn se chamaille avec Liam lorsqu'il doit l'aider à surveiller le collège. + Jeunesse + Dessins Animés + + 5 . 21 . + + Tout public + + + + Bienvenue chez les Loud + La journée boule de neige + C'est la journée ' boules de neige '. Les Loud doivent survivre à une Lynn survoltée. + Jeunesse + Dessins Animés + + 5 . 22 . + + Tout public + + + + Bienvenue chez les Loud + Perte de repaire + Leni et ses amis se mettent à aller chez Gus. Lincoln et sa bande entrent en conflit pour reprendre le contrôle de leur repaire. + Jeunesse + Dessins Animés + + 4 . 15 . + + Tout public + + + + Bienvenue chez les Loud + Le septième membre + Lucy est jalouse de Lola, qui a rejoint le club des Croque-morts. + Jeunesse + Dessins Animés + + 4 . 15 . + + Tout public + + + + Bienvenue chez les Loud + Beaucoup de pouces pour rien + Les enfants aident leur père à démasquer le mystérieux client qui note mal son restaurant en ligne. + Jeunesse + Dessins Animés + + 4 . 16 . + + Tout public + + + + Bienvenue chez les Loud + Royal News a le blues + L'équipe de Royal News cède aux demandes de Chandler, qui leur a acheté du nouveau matériel. + Jeunesse + Dessins Animés + + 4 . 16 . + + Tout public + + + + Monster High - Un lycée pas comme les autres + Casse-tête et loup-garou + La mère de Clawdeen a disparu et la jeune fille aimerait apprendre la vérité sur cette disparition. Dans ce but, Clawdeen ouvre un portail dans les catacombes. Une créature venue d'une autre dimension terrorise Monster High et Clawdeen trouve un allié surprenant. + Jeunesse + Dessins Animés + + 0 . 5 . + + Tout public + + + + Hôtel Transylvanie : la série + Aïe, aïe, ail ! + Aucune description + Jeunesse + Dessins Animés + + 0 . 26 . + + Tout public + + + + Hôtel Transylvanie : la série + Les ailes de la discorde + Dracula aimerait que sa fille le trouve cool. Pour l'impressionner, il accepte de faire la pub d'un produit assez navrant qu'il fait baptiser "Les Aéroglisses Mavis". En fait, des ailes artificielles pas très cool justement. + Jeunesse + Dessins Animés + + 0 . 14 . + + Tout public + + + + Garfield & Cie + Ciao chat ! + Dès qu'Odie lèche quelqu'un, cette personne fait le chien. En plus, c'est contagieux. Seul Garfield est immunisé... + Jeunesse + Dessins Animés + + 1 . 23 . + + Tout public + + + + Garfield & Cie + Chardonneret du bonheur + Garfield doit empêcher un oisillon bleu égaré de trouver refuge dans l'estomac de Harry... + Jeunesse + Dessins Animés + + 1 . 24 . + + Tout public + + + + Garfield & Cie + Le chatoyant Eddie + Qu'est-ce qui peut bien tracasser Eddie Gourmand ? Garfield va le découvrir grâce à une nouvelle invention : il va entrer dans sa tête... + Jeunesse + Dessins Animés + + 1 . 25 . + + Tout public + + + + Garfield & Cie + Télé à chat + Les articles présentés sur "Allô j'achète !", la chaîne de télé-achat, sont loin d'être aussi formidables en vrai qu'à l'écran. Jon, Odie et Garfield ont été arnaqués... + Jeunesse + Dessins Animés + + 1 . 26 . + + Tout public + + + + ALVINNN!!! et les Chipmunks + Les blagues de Papa + Dave n'étant pas très drôle, Alvin s'inquiète de le voir présenter une vente aux enchères pendant laquelle il devra raconter des blagues. + Jeunesse + Dessins Animés + + 3 . 18 . + + Tout public + + + + ALVINNN!!! et les Chipmunks + L'élu + Alvin joue en douce au nouveau jeu en réalité virtuelle de Simon et se retrouve transporté dans un monde qui a besoin d'un héros à tout prix. + Jeunesse + Dessins Animés + + 3 . 19 . + + Tout public + + + + ALVINNN!!! et les Chipmunks + Le dernier jour de l'été + Alvin ayant passé son été à jouer à un jeu vidéo, il tente de rattraper le temps perdu en faisant, en une journée, toutes les activités qu'il avait prévues. + Jeunesse + Dessins Animés + + 3 . 20 . + + Tout public + + + + Spidey et ses amis extraordinaires + Une situation collante ! + Quand Peter se colle à Gwen avec sa nouvelle formule de toile, les deux doivent rapidement réagir. + Jeunesse + Dessins Animés + + 0 . 21 . + + Tout public + + + + Spidey et ses amis extraordinaires + Rhinoctopus + Déçue que l'équipe Spidey l'ait empêchée de mener à bien un braquage, Octopus jette ses tentacules. Une aubaine pour Rhino. + Jeunesse + Dessins Animés + + 0 . 22 . + + Tout public + + + + Kingdom Force + Sabre, le chat géant + Le docteur Sabre se sert de la potion pousse-pousse inventée par Dalilah pour devenir immense, et il sème une pagaille que seul un gros matou géant peut semer ! + Jeunesse + Dessins Animés + + 0 . 24 . + + Tout public + + + + Kingdom Force + Le trésor de l'Anopolis + La Force des Royaumes a pour mission de protéger la clé du maire Griffomiel, mais que sont-ils censés faire si elle semble avoir été volée par l'un d'eux ?! + Jeunesse + Dessins Animés + + 0 . 25 . + + Tout public + + + + Kingdom Force + Balance Norvyn hors du train + Arthur est coincé à bord d'un train contrôlé par Cyborg et c'est aux héros de la Force des Royaumes d'intervenir. Mais le train transporte tous les objets technologiques qu'ils ont dû affronter dans le passé, des objets que Cyborg compte bien utiliser contre eux ! + Jeunesse + Dessins Animés + + 0 . 25 . + + Tout public + + + + Dragons, les gardiens du ciel : le retour des héros + L'incroyable Bourboul + Bourboul trouve enfin un cristal qui augmente ses pouvoirs et fait de lui le plus fort de tous les Gardiens du Ciel !Alors, quand Axel Finke dit avoir vu un dragon s'écraser sur le flanc du volcan de l'île du Volcan, "L'incroyable Bourboul" se lance dans une mission sauvetage mais... ses nouveaux pouvoirs ne sont peut-être pas ce qu'ils semblent être... + Jeunesse + Dessins Animés + + 1 . 0 . + + Tout public + + + + Sonic Boom + Robot contre robot + Qui s'y frotte s'y pique e suis un hérisson bleu, je suis rapide, je suis la mascotte d'un jeu vidéo. Je suis ? Sonic évidemment. + Jeunesse + Dessins Animés + + 0 . 45 . + + Tout public + + + + Sonic Boom + Chiot choupinou copinous + Le hérisson Sonic, courageux et très rapide, est le chef d'un groupe de rebelles qui se bat pour la liberté. Il multiplie les aventures avec ses meilleurs amis, mais aussi ses ennemis. + Jeunesse + Dessins Animés + + 0 . 46 . + + Tout public + + + + Sonic Boom + Des exemples à ne pas suivre + Le hérisson Sonic, courageux et très rapide, est le chef d'un groupe de rebelles qui se bat pour la liberté. Il multiplie les aventures avec ses meilleurs amis, mais aussi ses ennemis. + Jeunesse + Dessins Animés + + 0 . 48 . + + Tout public + + + + Les Sisters + Souriez, vous êtes piégés ! + Pour gagner un hoverboard, les Sisters doivent prendre la photo la plus rigolote d'une personne proche. Elles se choisissent mutuellement et cherchent à se piéger dans des attitudes ridicules... Mais elles sont aussi fortes l'une que l'autre à ce petit jeu et leurs parents, exaspérés, confisquent les appareils photos. Marine va chercher du renfort auprès de sa copine Loulou... + Jeunesse + Dessins Animés + + 0 . 48 . + + Tout public + + + + Les Sisters + La guerre des pestouilles + Marine se fâche avec ses copines Nath et Loulou qui l'accusent de tricher aux jeux vidéos. Marine est toute triste, se sent seule et ne lâche plus Wendy. Pour avoir la paix, Wendy tente de la réconcilier avec ses copines... mais parvient seulement à se fâcher avec Maxence. Aïe ! Pour le coup, c'est Marine et ses copines qui vont tenter de réconcilier les amoureux + Jeunesse + Dessins Animés + + 0 . 49 . + + Tout public + + + + Les Sisters + Merci pour les bêtises + Comme dans de nombreuses fratries, Marine et Wendy s'adorent et se détestent tout à la fois. Agée de 8 ans, la première s'intéresse de très près à la vie de sa soeur aînée, déjà adolescente. + Jeunesse + Dessins Animés + + 0 . 50 . + + Tout public + + + + Les Sisters + La plus pire des deux + Comme dans de nombreuses fratries, Marine et Wendy s'adorent et se détestent tout à la fois. Agée de 8 ans, la première s'intéresse de très près à la vie de sa soeur aînée, déjà adolescente. + Jeunesse + Dessins Animés + + 0 . 51 . + + Tout public + + + + Les Sisters + Le plusse beau métier du monde + Quand elle sera grande, Marine voudrait être "nainfermière", comme maman. Mais pour ça, il faut qu'elle s'entraîne à soigner les gens dès maintenant. Le problème, c'est que personne ne fait l'effort d'être malade dans cette maison ! Bon, ben si c'est comme ça, Marine va les aider un peu... + Jeunesse + Dessins Animés + + 1 . 0 . + + Tout public + + + + Les filles de Dad + La disparition + Bébérénice se met à pleurer et tempêter de manière incontrôlée, ce qui met les nerfs de toute la famille à toute épreuve. La cause ? Pinpin, son doudou adoré a disparu... Pendant que Roxane se jette à corps perdu à sa recherche, Ondine tente de lui en fabriquer un nouveau... + Jeunesse + Dessins Animés + + 0 . 16 . + + Tout public + + + + Les filles de Dad + Panda café + Panda débarque au Cookie Café pour son premier jour mais elle déchante rapidement : il faut préparer un bon café et être aimable avec les clients. + Jeunesse + Dessins Animés + + 0 . 14 . + + Tout public + + + + Bienvenue chez les Loud + En solo + Vous vous êtes toujours demandé comment survivre au sein d'une famille nombreuse ? Lincoln Loud, qui a 11 ans et 10 soeurs, vous donne ses tuyaux + Jeunesse + Dessins Animés + + 4 . 5 . + + Tout public + + + + Bienvenue chez les Loud + Le champion de la bouse + Vous êtes-vous déjà demandé ce que c'est que de grandir dans une grande famille ? Lincoln Loud, onze ans, donne aux téléspectateurs un aperçu sur la façon de survivre au chaos d'une immense maison, surtout en tant que seul garçon vivant avec ses dix soeurs ! + Jeunesse + Dessins Animés + + 4 . 7 . + + Tout public + + + + Bienvenue chez les Loud + Ne t'en va pas, Clyde ! + Clyde a l'opportunité d'aller étudier la cuisine à Paris. Ses amis font tout pour qu'il reste à Royal Woods . + Jeunesse + Dessins Animés + + 5 . 1 . + + Tout public + + + + Jamie a des tentacules + Amour, gloire et chabadabada + Aucune description + Jeunesse + Dessins Animés + + 2 . 20 . + + Tout public + + + + Jamie a des tentacules + Jamie recolle les morceaux + Pourchassé par les Vloks, Jamie, le prince de la planète Blarb, s'exile sur Terre, où il se lie d'amitié avec Nerdy, le fils du couple qui l'a recueilli. + Jeunesse + Dessins Animés + + 2 . 21 . + + Tout public + + + + Jamie a des tentacules + Adieu la Terre + Pourchassé par les Vloks, Jamie, le prince de la planète Blarb, s'exile sur Terre, où il se lie d'amitié avec Nerdy, le fils du couple qui l'a recueilli. + Jeunesse + Dessins Animés + + 2 . 22 . + + Tout public + + + + Totally Spies + Abominables décorations ! + De célèbres designers d'intérieur ont disparu un peu partout dans le monde. Jerry met les filles sur l'enquête. Celles-ci découvrent que les endroits où travaillaient les designers sont à présent truffés de déco ultra-kitsch... + Jeunesse + Dessins Animés + + 5 . 13 . + + Tout public + + + + Totally Spies + À L'abordage ! + Lorsque Jerry prévient les filles qu'une fois de plus, elles vont embarquer à bord du WOOHPtanic, Sam, Clover et Alex sont ravies, et imaginent pouvoir profiter des installations grand luxe du navire une fois que leur patron aura terminé la présentation de ses gadgets... + Jeunesse + Dessins Animés + + 5 . 14 . + + Tout public + + + + Mission Gulliverse + Aucune description + Divertissement + Jeu + + + Tout public + + + + La grande vidéo party + Aucune description + Jeunesse + Mag. Jeunesse + + + Tout public + + + + La grande vidéo party + Pour faire le plein de bonne humeur, Ariane Brodier accompagne les téléspectateurs au plus près des tendances actuelles, Elle a sélectionné des images surprenantes et inédites issues du web. Les animaux les plus fous, les plus belles chutes livrées directement à domicile, les meilleurs et les pires chanteurs du moment, des canulars en couple ou entre amis. + Jeunesse + Mag. Jeunesse + + + Tout public + + + + La grande vidéo party + Toujours plus proche des tendances actuelles, Ariane Brodier a sélectionné des images surprenantes et inédites issues du web. Les animaux les plus fous, les plus belles chutes livrées directement à domicile, les meilleurs et les pires chanteurs du moment, des canulars en couple ou entre amis : "La Grande Vidéo Party", c'est du rire pour toute la famille. + Jeunesse + Mag. Jeunesse + + + Tout public + + + + Totally Spies + Astro mais pas trop ! + Pour se venger d'avoir été renvoyée, Cosmo, une scientifique entreprend de supprimer la gravité terrestre à l'aide d'un appareil de sa conception. Les filles doivent l'arrêter avant que les habitants de la Terre ne soient en apesanteur... + Jeunesse + Dessins Animés + + 5 . 19 . + + Tout public + + + + Totally Spies + Dirigeable en déroute + Jerry convoque les filles et leur demande d'escorter trois méchants vers une île-forteresse où ils seront enfermés. Mais les malfaiteurs fomentent une mutinerie destinée à libérer les prisonniers de l'île et à y abandonner les Spy Girls... + Jeunesse + Dessins Animés + + 5 . 20 . + + Tout public + + + + Baskup + Le secret de la pyramide + Les High 5 sont en Egypte pour affronter les Anubis Champions. Le terrain se trouve au milieu d'une ancienne pyramide et une aura de magie enveloppe l'endroit. Pour s'assurer la victoire, les High 5 s'enfoncent dans les tréfonds de la pyramide, d'où ils pourraient ne jamais ressortir... + Jeunesse + Dessins Animés + + 1 . 6 . + + Tout public + + + + Baskup + Les présumés coupables + Léo et Mimi, deux joueurs des Reggae Kings, sont victimes d'une mauvaise blague des Black Pirates. En représailles, Mimi entraîne Léo dans une expédition punitive à l'issue de laquelle le bateau des Pirates est coulé. Léo est pris et est suspendu... + Jeunesse + Dessins Animés + + 1 . 18 . + + Tout public + + + + Le geste écolo de Gulli + Respectez la forêt + Gullia te donne des conseils simples et efficaces pour protéger ta planète. + Magazine + Mag. Société + + 0 . 22 . + + Tout public + + + + Baskup + Capitaine Stella + L'équipe va, une nouvelle fois, affronter l'équipe la plus "frime" du tournoi : le Venice band. Mais à son arivée, surprise le coach Benny a remplacé Lenny et Kenny par deux des pompom girls de l'équipe. Tony décide de leur donner une leçon... + Jeunesse + Dessins Animés + + 0 . 18 . + + Tout public + + + + Baskup + Le retour des cowboyz + Les High 5 reçoivent les Cowboyz, la meilleure équipe du tournoi. Jeff Profitt, l'un des recruteurs de la fédération professionnelle, vient également assister au match... + Jeunesse + Dessins Animés + + 0 . 19 . + + Tout public + + + + Madagascar : la savane en délire + Le plus beau jour de Melman + Melman trouve une fleur porte-bonheur et est convaincu qu'aujourd'hui sera son meilleur jour de tous les temps! Mais lorsqu'une série d'événements malchanceux menace de ruiner sa journée, il est confronté au choix de se noyer dans ses peines ou de " prendre le contrôle de la journée"! + Jeunesse + Dessins Animés + + 0 . 1 . + + Tout public + + + + Bienvenue chez les Casagrandes + Un Noël très Casagrandesque + Ronnie Anne est pressée de vivre un Noël parfait, mais les visites impromptues des voisins retardent la Nochebuena de ses rêves. + Jeunesse + Dessins Animés + + 1 . 3 . + + Tout public + + + + Objectif Blake! + Objectif Turbo ! + Blake et Mitch veulent gagner une course de traîneaux pour remporter un prestigieux grand prix : avoir une rue à leurs noms... + Jeunesse + Dessins Animés + + 0 . 46 . + + Tout public + + + + Moka + La criminelle des grands terriers + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 42 . + + Tout public + + + + Moka + Les pilleurs de pierres précieuses + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 43 . + + Tout public + + + + Moka + Raccourci pour les abîmes + Cerise connaît un super raccourci vers sa prochaine destination avec Moka. Mais plus ils avancent, plus il est clair qu'elle s'est trompée et qu'elle les met dans le pétrin. Saura-t-elle reconnaître qu'elle a eu tort ?... + Jeunesse + Dessins Animés + + 0 . 44 . + + Tout public + + + + Moka + La farouche chevauchée de gnous + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 45 . + + Tout public + + + + Moka + La forêt enchantée de Gunma + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 46 . + + Tout public + + + + Moka + Les sinistres sentiers de l'amnésie + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 47 . + + Tout public + + + + Moka + La colère de Richie le conquérant + Cerise rend visite au phasme qu'elle a formé au combat et découvre qu'il est maintenant à la tête d'une armée, bien décidé à conquérir le monde. Cerise veut l'arrêter, mais la violence peut-elle arranger les choses ?... + Jeunesse + Dessins Animés + + 0 . 48 . + + Tout public + + + + Moka + La Boussole de Tous les Dangers + Moka trouve une boussole censée indiquer la direction de l'aventure, et se décide à la suivre en dépit du bon sens. Sans Cerise pour le protéger, on pourrait croire que la boussole le guide droit dans la gueule du loup... + Jeunesse + Dessins Animés + + 0 . 49 . + + Tout public + + + + Moka + L'inébranlable barrage de la justice + Moka découvre ce qu'est la justice et s'improvise arbitre chez des castors en colère. Mais être juge, c'est beaucoup de responsabilités pour quelqu'un d'aussi jeune... + Jeunesse + Dessins Animés + + 0 . 50 . + + Tout public + + + + Manger, bouger, dormir + La bougeotte + Sortie de classe, Marcus profite de la récréation pour se dépenser. + Magazine + Mag. Éducation + + 1 . 3 . + + Tout public + + + + Les Octonauts + Les octonauts et la méduse à crinière de lion + Léo, une méduse à crinière de lion, se retrouve coincé dans les turbines de l'Octocapsule. Les Octonauts doivent l'aider à s'en libérer, car des amis poissons de Léo risquent de se faire manger... + Jeunesse + Dessins Animés + + 2 . 13 . + + Tout public + + + + Les Octonauts + Les octonauts et les crabes rouges + Des crabes rouges se sont perdus dans la mer et ont très froid. Shellington tente de les capturer, mais ils se défendent vigoureusement. Heureusement, des iguanes marins vont venir aider les Octonauts... + Jeunesse + Dessins Animés + + 2 . 14 . + + Tout public + + + + Les Octonauts + Les octonauts et l'éponge de mer + Pesso trouve une éponge de mer bien malade. Il découvre avec les Octonauts qu'un poux de baleine s'est installé dans l'éponge. Mais celui-ci doit vite retourner sur une baleine, car il met en péril sa vie et celle de l'éponge... + Jeunesse + Dessins Animés + + 2 . 15 . + + Tout public + + + + Les Octonauts + Les octonauts et le récif artificiel + Les Octonauts découvrent un récif de corail où tous les poissons et êtres vivants vivent en harmonie. Mais après avoir été touché par les courants, ce havre de paix est dévasté. Les Octonauts, pour protéger ses habitants, décident d'en recréer un, entièrement artificiel... + Jeunesse + Dessins Animés + + 2 . 3 . + + Tout public + + + + Zig & Sharko + Rebelle attitude + En fouillant dans une caisse, Zig retombe sur un vieux skate et sa vue rappelle à nos héros de vieux souvenirs. Il se revoit avec Bernie, Sharko et Marina ados qui ne pensaient alors qu'à enchaîner les figures de skate... + Jeunesse + Dessins Animés + + 1 . 50 . + + Tout public + + + + Zig & Sharko + Sable émouvant + Lors d'une poursuite, Zig, Sharko et Marina tombent dans les entrailles de la terre. Pour Marina, c'est l'occasion de retrouver un souvenir émouvant de son enfance, pour Sharko, c'est l'angoisse absolue, et pour Zig, un cadre original pour passer à table... + Jeunesse + Dessins Animés + + 1 . 49 . + + Tout public + + + + Zig & Sharko + On se fait un film ? + Sharko vient proposer à Marina un truc romantique et serein : une soirée dvd. Sauf que Zig et Bernie ont posé un écriteau "Cinéma" sur le château. La soirée en amoureux ne va pas être de tout repos, c'est le moins qu'on puisse dire... + Jeunesse + Dessins Animés + + 1 . 48 . + + Tout public + + + + Zig & Sharko + Echoués ! + Il fait très chaud, il n'y a plus d'eau sur le bateau ni même dans la mer, c'est la catastrophe. La sirène et ses amis partent en expédition pour remonter jusqu'à la source tarie et comprendre ce qui s'est passé... + Jeunesse + Dessins Animés + + 2 . 26 . + + Tout public + + + + Baby Shark : l'aventure sous l'eau + Baby Shark, le maire + Baby Shark et William sont deux meilleurs amis qui habitent à Carnivore-les-bains. En jouant et en chantant, ils sont prêts pour une nouvelle aventure chaque jour. + Jeunesse + Dessins Animés + + 0 . 9 . + + Tout public + + + + Baby Shark : l'aventure sous l'eau + Coule ou flotte + Baby Shark et William sont deux meilleurs amis qui habitent à Carnivore-les-bains. En jouant et en chantant, ils sont prêts pour une nouvelle aventure chaque jour. + Jeunesse + Dessins Animés + + 0 . 9 . + + Tout public + + + + Spidey et ses amis extraordinaires + Un casse à la casse de Jerry + Spidey laisse Hulk traîner au quartier général mais l'idée tourne rapidement au désastre. + Jeunesse + Dessins Animés + + 1 . 8 . + + Tout public + + + + Spidey et ses amis extraordinaires + L'ogre vert des égouts + Peter Parker (alias Spidey), Gwen Stacy (alias Ghost Spider) et Miles Morales (dit Miles) forment une nouvelle équipe de héros et se lancent dans de nombreuses aventures. Ils vont lutter contre de redoutables ennemis. Le but ? Sauver le monde, bien évidemment ! + Jeunesse + Dessins Animés + + 0 . 19 . + + Tout public + + + + Les Sisters + Joy de toi + Marine gagne une journée à la maison avec la star du moment, le beau Joy D. Mais Wendy, complètement gaga de la star, cherche à se l'accaparer. + Jeunesse + Dessins Animés + + 0 . 1 . + + Tout public + + + + Les Sisters + La vie secrète des adonnaissants + Wendy veut passer une soirée tranquille avec Maxence en l'absence des parents, mais Marine a invité ses copines Nath et Loulou à la maison. Pour s'en débarrasser, Wendy invente une histoire pour leur faire peur : Flop, le nain de jardin de la voisine est une créature démoniaque... + Jeunesse + Dessins Animés + + 0 . 2 . + + Tout public + + + + Les Sisters + Doudou la chance + Toute la bande de copains de Wendy est persuadée que le doudou préféré de Marine porte chance. Seule Wendy n'y croit pas un seul instant, mais les évènements tendent à lui démontrer qu'elle a tort! Tout le monde veut désormais s'arracher le doudou porte bonheur... + Jeunesse + Dessins Animés + + 0 . 3 . + + Tout public + + + + Les Sisters + Plâtrées + À force de faire la cascadeuse en rollers, Marine a une jambe dans le plâtre. Sa grande Sister est aux petits soins pour elle, mais Marine profite lourdement de la situation pour faire de sa Sister une esclave entièrement dévouée à son service... Wendy craque ! Jusqu'au moment où elle se casse la jambe à son tour... + Jeunesse + Dessins Animés + + 0 . 4 . + + Tout public + + + + Bienvenue chez les Loud + Championne malgré elle + Après son parcours de golf parfait, Lori devient la star de l'université. + Jeunesse + Dessins Animés + + 5 . 16 . + + Tout public + + + + Bienvenue chez les Loud + Faits d'hiver + L'équipe de Royal News tente de prouver la présence d'un monstre des neiges à Royal Woods. + Jeunesse + Dessins Animés + + 5 . 22 . + + Tout public + + + + Bienvenue chez les Loud + Dans la tête de Lily Loud + Pour mettre fin aux cauchemars de Lily, Lisa invente une machine pour entrer dans ses rêves. + Jeunesse + Dessins Animés + + 4 . 18 . + + Tout public + + + + Bienvenue chez les Loud + Pour le meilleur et pour la paire + Les deux paires d'amis en lice pour le titre de meilleurs amis du collège sèment la zizanie dans le groupe. + Jeunesse + Dessins Animés + + 4 . 19 . + + Tout public + + + + Bienvenue chez les Loud + Dans la tête de Lily Loud + Pour mettre fin aux cauchemars de Lily, Lisa invente une machine pour entrer dans ses rêves. + Jeunesse + Dessins Animés + + 4 . 18 . + + Tout public + + + + Bienvenue chez les Casagrandes + Joue-la comme Abuelo + Hector devient le porte-bonheur de son équipe de foot préférée mais la chance tourne. + Jeunesse + Dessins Animés + + 2 . 0 . + + Tout public + + + + Bienvenue chez les Casagrandes + Les pièces du malheur + Alors que les Casagrandes préparent la cérémonie de mariage de Paco, ils doivent à tout prix retrouver las arras que Sergio a perdus ! + Jeunesse + Dessins Animés + + 2 . 9 . + + Tout public + + + + Hôtel Transylvanie : la série + Pouce toujours + Aucune description + Jeunesse + Dessins Animés + + 0 . 27 . + + Tout public + + + + Hôtel Transylvanie : la série + Fuite de cerveau + Aucune description + Jeunesse + Dessins Animés + + 0 . 15 . + + Tout public + + + + Transformers Earth Spark + L'heure de Prime + Mo se sent impuissante quand l'état de Robby empire. Elle souhaite n'avoir jamais touché la Pierre de Braise. Quintus Prime prouve à notre jeune héroïne que le monde est meilleur grâce à elle. + Jeunesse + Dessins Animés + + 0 . 21 . + + Tout public + + + + Beyblade Burst + Le plus enflammé des combats ! + Aucune description + Jeunesse + Dessins Animés + + 6 . 8 . + + Tout public + + + + ALVINNN!!! et les Chipmunks + Mais où est passée miss Croner ? + Madame Croner est en désaccord avec Madame Miller. Elle met en scène sa disparition pour se venger. + Jeunesse + Dessins Animés + + 4 . 7 . + + Tout public + + + + ALVINNN!!! et les Chipmunks + Le voyageur du temps + Simon affirme à Alvin que le voyage dans le temps est impossible, jusqu'à ce qu'un homme du futur arrive dans leur maison. + Jeunesse + Dessins Animés + + 4 . 7 . + + Tout public + + + + ALVINNN!!! et les Chipmunks + Le tyran des toilettes + Miss Smith félicite Simon pour ses bonnes notes et Derek décide de le tyranniser en l'empêchant d'accéder aux toilettes. + Jeunesse + Dessins Animés + + 4 . 8 . + + Tout public + + + + Hôtel Transylvanie + Pour protéger sa fille Mavis des risques présentés par les humains, le comte Dracula a ouvert un hôtel destiné exclusivement aux monstres. Mais Mavis s'y ennuie et pour la retenir, Dracula organise une fête, en invitant tous les monstres de son carnet d'adresses. Un jeune humain arrive par hasard... + Film + Film Animation + + + Tout public + + + + Jurassic World : La Colo du Crétacé + La Casa de Kenji + Kenji emmène les ados chez son père pour rassembler du matériel, mais ils ont vite de la compagnie sur place. Sammy se pose des questions sur la vie chez elle + Jeunesse + Dessins Animés + + 2 . 2 . + + Tout public + + + + Jurassic World : La Colo du Crétacé + Petite futée + Six adolescents participent à un camp de vacances de l'autre côté d'Isla Nublar. Ils doivent s'unir pour survivre lorsque les dinosaures se mettent à ravager l'île... + Jeunesse + Dessins Animés + + 2 . 3 . + + Tout public + + + + Les Sisters + Rhume fiction + Marine fait semblant d'être malade pour ne pas aller à l'école. Wendy décide de faire la même chose pour sécher l'interrogation de maths au collège... + Jeunesse + Dessins Animés + + 1 . 1 . + + Tout public + + + + Les Sisters + Pestouilles puissance trois + Il n'y a pas école demain et Marine va passer toute la journée avec sa Sister préférée. Mais Wendy a prévu un tout autre programme... + Jeunesse + Dessins Animés + + 1 . 2 . + + Tout public + + + + Les Sisters + Télé Sisters + Marine a inscrit la famille à l'émission de télé-réalité "Ma famille trop bien", dans laquelle les spectateurs votent pour le membre de la famille le plus sympa... + Jeunesse + Dessins Animés + + 1 . 3 . + + Tout public + + + + Les Sisters + Planches en vrac + Marine et Wendy apprennent que la star Joy D donne une séance de dédicaces à Pom-les-bains. Malheureusement, les parents ne peuvent pas les y emmener... + Jeunesse + Dessins Animés + + 1 . 4 . + + Tout public + + + + Les Sisters + La bobocléose + Cet après-midi, Wendy a invité Maxence à regarder un film en amoureux. Pendant ce temps, Marine va visionner une émission sur la tablette de sa grande sister... + Jeunesse + Dessins Animés + + 1 . 5 . + + Tout public + + + + Les filles de Dad + Un sentiquoi ? + Panda est vraiment bizarre en ce moment. Elle n'arrive plus à travailler, elle est sympa, souriante. Qu'est-ce qu'il lui arrive !? + Jeunesse + Dessins Animés + + 0 . 33 . + + Tout public + + + + Les filles de Dad + En musique ! + Ondine organise un concert sur le toit de l'immeuble. Mais elle chante si mal que ses copains trouvent des excuses pour ne pas jouer avec elle. + Jeunesse + Dessins Animés + + 0 . 29 . + + Tout public + + + + Bienvenue chez les Loud + La magie de la magie + Les amis de Lincoln veulent l'empêcher de faire un numéro de magie au concours de talent du collège. + Jeunesse + Dessins Animés + + 4 . 7 . + + Tout public + + + + Bienvenue chez les Loud + Ennuis de bus + Lincoln et ses amis cherchent un autre moyen d'aller à l'école depuis des grands les embêtent dans le bus. + Jeunesse + Dessins Animés + + 4 . 8 . + + Tout public + + + + Bienvenue chez les Loud + Coup double + Lola et Lana affrontent Cheryl et Meryl pour être les égéries des glaces de Chez Tatie Pam. + Jeunesse + Dessins Animés + + 5 . 1 . + + Tout public + + + + Jamie a des tentacules + Jamie le maudit + Pourchassé par les Vloks, Jamie, le prince de la planète Blarb, s'exile sur Terre, où il se lie d'amitié avec Nerdy, le fils du couple qui l'a recueilli. + Jeunesse + Dessins Animés + + 2 . 23 . + + Tout public + + + + Jamie a des tentacules + Bébé Blarb + Pourchassé par les Vloks, Jamie, le prince de la planète Blarb, s'exile sur Terre, où il se lie d'amitié avec Nerdy, le fils du couple qui l'a recueilli. + Jeunesse + Dessins Animés + + 2 . 24 . + + Tout public + + + + Totally Spies + Trent se rebelle + Alors que les filles sont occupées à appréhender un scorpion méchant et ridicule, Trent les surprend sans le vouloir et assiste à la scène... + Jeunesse + Dessins Animés + + 5 . 15 . + + Tout public + + + + Totally Spies + La chute du skateur + Jerry apprend que plusieurs merveilles du monde subissent des phénomènes étranges : par exemple, le Grand Canyon et l'Everest se retrouvent "bétonnés"... + Jeunesse + Dessins Animés + + 5 . 16 . + + Tout public + + + + Malcolm + La petite évasion + Afin de retrouver sa petite amie, Francis s'évade de l'école militaire. Craignant la fureur de ses parents, il demande à Malcolm de porter une lettre à sa dulcinée sans dévoiler leur secret. Mais c'est compter sans la vigilance de leur mère... + Série + Série Rires + + 0 . 6 . + + Tout public + + + + Malcolm + Panique au pique-nique + La famille participe au pique-nique de la classe de Malcolm. Celui-ci ne veut pas y aller parce qu'il doit faire un numéro et ne veut pas faire mauvaise figure devant les siens, surtout devant Francis, qui est à la maison pour le week-end. Lois essaie sans succès de s'intégrer aux autres parents et Hal sert de la viande du barbecue alors que les organisateurs ont voté pour un repas végétarien... + Série + Série Rires + + 0 . 7 . + + Tout public + + + + D'un Noël à l'autre + Pendant des années, les parents d'Olivia Anderson et ceux de Jeff passaient les vacances de Noël à Hawaï. C'est là qu'à l'adolescence, leurs deux enfants ont échangé leur premier baiser. Lorsqu'ils se revoient au même endroit vingt ans plus tard, Olivia et Jeff retrouvent leur ancienne alchimie, mais des circonstances les poussent à être séparés de nouveau... + Film + Film Passion + + + Tout public + + + + Sur un air de Noël + Tout oppose Lindsey, chanteuse, et Wes, pianiste, à part la musique. Alors qu'ils se produisent dans le même club, le courant ne passe pas jusqu'à ce qu'ils découvrent qu'ils sont originaires de la même région. Lindsey et Wes décident alors de faire le voyage ensemble en voiture pour rentrer chez eux... + Film + Film Passion + + + Tout public + + + + Tiny House : mini maison sur mesure + Brian Morris, Georgie + A Trenton, en Géorgie, Brian a tenté de concevoir sa propre mini-maison. L'exercice n'est pas moins compliqué que lorsqu'il s'y livre pour d'autres. + Documentaire + Doc. Société + + 1 . 0 . + + Tout public + + + + Tiny House : mini maison sur mesure + Vince et Sam, New Jersey + Vince et Sam veulent une mini-maison qui correspond à leur style de vie amusant. Ils adorent faire de l'escalade et faire de la randonnée avec leur chien. + Documentaire + Doc. Société + + 1 . 0 . + + Tout public + + + + Totally Spies + Télé danger + Lorsqu'un présentateur est enlevé en pleine émission, les filles sont envoyées sur le terrain. Quelqu'un veut obliger cet homme à exécuter une terrifiante cascade et à braver la mort devant toute une foule de spectateurs... + Jeunesse + Dessins Animés + + 5 . 22 . + + Tout public + + + + Totally Spies + Espionnes en solo + Jerry informe Sam, Clover et Alex qu'elles ne travailleront désormais plus en équipe mais en solo : elles sont sous le choc mais n'ont pas le temps de s'apesantir puisqu'elles sont envoyées chacune en mission... + Jeunesse + Dessins Animés + + 5 . 23 . + + Tout public + + + + Baskup + Girl power + L'équipe féminine des Amazones rencontre l'équipe des High 5. Les joueuses comptent appliquer leur stratégie habituelle contre leurs adversaire : semer la zizanie dans l'autre équipe. Ce match opposant les filles contre les garçons s'annonce délicat. Les Amazones sont redoutables... + Jeunesse + Dessins Animés + + 1 . 7 . + + Tout public + + + + Baskup + Les mirages de Dubai + L'équipe locale des Dubai Wonders est, à l'image de la ville qu'elle représente, prompte au luxe et aux excès. Son coach, un sheik richissime, est prêt à tout pour gagner, même à corrompre les joueurs adverses... + Jeunesse + Dessins Animés + + 1 . 22 . + + Tout public + + + + Le geste écolo de Gulli + La publicité dans la boîte à lettre + Gullia te donne des conseils simples et efficaces pour protéger ta planète. + Magazine + Mag. Société + + 0 . 23 . + + Tout public + + + + Baskup + Cas de conscience + Lors d'un match contre les Mayas, Stella et Léo profitent de leur superstition en inventant une fausse légende et faussent complètement l'issue du match. Rongés par la culpabilité, les High 5 vont partir à la recherche des mayas à travers le pays... + Jeunesse + Dessins Animés + + 0 . 20 . + + Tout public + + + + Baskup + Stars locales + Même contre une équipe de robots, les High 5 sont toujours au top... + Jeunesse + Dessins Animés + + 0 . 22 . + + Tout public + + + + Madagascar : la savane en délire + Tout le monde aime les lions de mer + L'enfance des héros de Madagascar Alex le lion, Marty le zèbre, Melman la girafe et Gloria l'hippo dans un zoo de Central Park. + Jeunesse + Dessins Animés + + 0 . 2 . + + Tout public + + + + Bienvenue chez les Loud + Le Père Flipël + Flip reçoit la visite de trois fantômes, dans une version revue et corrigée du conte ' Un chant de Noël '. + Jeunesse + Dessins Animés + + 4 . 6 . + + Tout public + + + + Objectif Blake! + Objectif Western ! + Alors qu'ils visitent une authentique vieille ville de l'ouest, Blake et Mitch assistent à un bal sur le thème du western. Mais ils découvrent alors les Extracureuils déguisés en cow-boys... + Jeunesse + Dessins Animés + + 0 . 48 . + + Tout public + + + + Objectif Blake! + Objectif Moyen Âge ! + Après avoir été inspirés par un festival médiéval ringard, Blake et Mitch enfilent des armures et se donnent des noms de chevalier. Mais quand ils sont défiés par les chevaliers extracureuils, ils doivent trouver le courage de remporter la joute finale... + Jeunesse + Dessins Animés + + 0 . 49 . + + Tout public + + + + Moka + Le repos de la garde royale + Cerise n'en peut plus, elle a besoin de repos ! Une journée dans les sources chaudes des singes des neiges devrait faire l'affaire. Mais pour Moka, le calme et le silence n'existent pas... + Jeunesse + Dessins Animés + + 0 . 51 . + + Tout public + + + + Moka + La bête du bois des ombres + Moka remonte le moral à un grand méchant loup que sa mauvaise réputation rend triste. Grâce au gentil prince, le loup retrouve le sourire... et l'appétit... + Jeunesse + Dessins Animés + + 0 . 52 . + + Tout public + + + + Moka + La bête du bois des ombres + Moka remonte le moral à un grand méchant loup que sa mauvaise réputation rend triste. Grâce au gentil prince, le loup retrouve le sourire... et l'appétit... + Série + Animation + + 0 . 52 . + + Tout public + + + + Moka + L'épique équipe de Cerise et Moka + Cerise veut du calme, et Moka veut des gros monstres. Si chacun n'en fait qu'à sa tête sur le chemin à prendre, la destination est la même pour les deux : un bon gros désastre. Seul un travail d'équipe va les tirer de là ! + Série + Animation + + 0 . 53 . + + Tout public + + + + Moka + La chasse de la grande duchesse + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Série + Animation + + 0 . 54 . + + Tout public + + + + Moka + Le retour de la fille rebelle + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Série + Animation + + 0 . 55 . + + Tout public + + + + Moka + L'acharnement de la perdante + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Série + Animation + + 0 . 56 . + + Tout public + + + + Moka + Les coquilles du cauchemar + Moka a fait un cauchemar avec des escargots, et il est maintenant terrifié par les cornus à coquilles. Pourtant les petits rampants n'ont vraiment pas l'air méchant... + Série + Animation + + 0 . 57 . + + Tout public + + + + Moka + La fugitive et la garde déchue + Quand Arja est accusée de vol, Cerise veut la livrer personnellement à la justice. Moka est outré : on fait pas ça à une copine. Mais Arja n'est pas 1000nnête sur ce coup... + Série + Animation + + 0 . 72 . + + Tout public + + + + Moka + L'indomptable diable de Tassie + Moka décide de s'occuper d'un bébé perdu qui est un animal féroce. Cerise veut abandonner la terreur miniature, mais Moka pense qu'elle a juste besoin d'amour... + Série + Animation + + 0 . 59 . + + Tout public + + + + Mes tubes en signes + "Tout oublier" Angèle + Luca Gelberg, accompagné par des enfants, eux aussi malentendants, vont interpréter les musiques du moment en langue des signes pour faire chanter et danser toute la famille ! 10 clips inédits de 10 musiques entrainantes à découvrir uniquement sur Gulli. + Programme + Divertissement + + 3 . 0 . + + Tout public + + + + Les chansons de Cocomelon + Joyeux anniversaire + Dans CoComelon, JJ et ses frères et soeurs vivent des aventures amusantes et réalistes - qu'ils aillent à la crèche ou restent à la maison, il y a toujours quelque chose de nouveau à apprendre ou à explorer, et une inspiration sans fin pour tirer le meilleur parti des moments de jeu avec les amis et la famille. + Série + Animation + + 0 . 78 . + + Tout public + + + + Les chansons de Cocomelon + L'heure du coucher + Rejoingez J.J. accompagné de sa famille et de ses amis pour apprendre l'alphabet, les chiffres, les cris des animaux et bien plus, en s'amusant avec de nouvelles chansons et comptines entraînantes. + Série + Animation + + 0 . 0 . + + Tout public + + + + Les chansons de Cocomelon + À la neige + Dans CoComelon, JJ et ses frères et soeurs vivent des aventures amusantes et réalistes - qu'ils aillent à la crèche ou restent à la maison, il y a toujours quelque chose de nouveau à apprendre ou à explorer, et une inspiration sans fin pour tirer le meilleur parti des moments de jeu avec les amis et la famille. + Série + Animation + + 0 . 17 . + + Tout public + + + + Les chansons de Cocomelon + Si tôt dans la matinée + Dans CoComelon, JJ et ses frères et soeurs vivent des aventures amusantes et réalistes - qu'ils aillent à la crèche ou restent à la maison, il y a toujours quelque chose de nouveau à apprendre ou à explorer, et une inspiration sans fin pour tirer le meilleur parti des moments de jeu avec les amis et la famille. + Série + Animation + + 0 . 12 . + + Tout public + + + + Cry Babies, larmes magiques : la série + BatBaby + Wandy aimerait être un super-héros pour aider les autres. Alors Wandy décide de devenir ... Batbaby ! Wandy fait beaucoup d'efforts pour aider les autres Cry Babies Magic Tears, mais tout est un peu trop calme et les autres bébés n'ont pas vraiment besoin de l'aide de Batbaby. Wandy décide donc de créer des petits problèmes pour les résoudre ensuite en tant que Batbaby, mais ... cela ne va pas se passer comme prévu ! Comment finira cette super histoire Cry Babies Magic Tears ? + Série + Animation + + 2 . 0 . + + Tout public + + + + Cry Babies, larmes magiques : la série + Voyage à Tropical Island - 2ème Partie + Sidney se réveille sur l'île Tropicale et découvre les habitants de l'île : Les Shiny Shells! Ils lui montrent où ils vivent et ce qu'ils font, mais bien que Sidney trouve l'endroit magnifique, ses amis lui manquent beaucoup et elle aimerait qu'ils soient là pour en profiter avec elle. Ce que Sidney ne sait pas, c'est qu'Ella, Fancy et Lady naviguent pour la retrouver et avec l'aide d'un bébé très spécial : Lora le pirate, elles seront bientôt là pour s'amuser à la fête des tropiques. + Série + Animation + + 5 . 1 . + + Tout public + + + + Idéfix et les Irréductibles + Le glaive de Camulogène + Abraracourcix et sa femme Bonemine, en vacances à Lutèce, découvrent qu'Anglaigus a récupéré le glaive d'un grand chef gaulois, qu'il compte offrir au général Labiénus. Sacrilège pour Abraracourcix, qui vole le glaive et s'enfuit en embarquant Bonemine avec lui. Idéfix leur vient en aide pour échapper à la légion canine, mais la situation se tend au sein du couple. Ils réconcilieront au dernier moment, avant que le glaive ne se perde suite à une intervention de Voldenuix... + Série + Animation + + 0 . 44 . + + Tout public + + + + Idéfix et les Irréductibles + Le pacte des potions + Isolé à son insu par les romains qui bloquent l'accès à sa hutte dans la forêt, le druide Amnésix croit que les lutéciens ne veulent plus de ses potions. Anglaigus lui propose alors opportunément un pacte : lui faire fabriquer des "potions romaines" au palais de la Louve ! Découvrant le plan des romains, Idéfix tente de le saborder mais son intervention fait empirer les choses quand une des potions romaines d'Amnésix se transforme en arme !!! Heureusement, nos héros pourront faire découvrir la vérité au druide et empêcher une catastrophe. + Série + Animation + + 0 . 42 . + + Tout public + + + + Idéfix et les Irréductibles + La folie des grandeurs + Handicapé par sa petite taille, Idéfix n'arrive pas à arrêter l'énorme machine que les Romains utilisent pour déraciner un arbre où vit une famille de mulots. Déprimé, notre héros accepte de goûter une potion de Voldenuix qui devrait le rendre plus grand... + Série + Animation + + 0 . 37 . + + Tout public + + + + Madagascar : la savane en délire + Une journée pleine de piquant + Lorsqu'une portée de hérissons est temporairement relocalisée dans le refuge Alex, Marty, Melman et Gloria deviennent leurs 'baby sitters'. Les bébés font rapidement des ravages - et pire encore, Alex doit sacrifier son projet de séance photo pour la couverture de la brochure du zoo lorsque les bébés trouvent le tunnel secret et se faufilent pour une aventure urbaine à eux ! Après une chasse aux hérissons à l'échelle de la ville, notre gang - avec un nouveau sens des responsabilités - trouve finalement les hérissons et apprend que les bébés peuvent être beaucoup de travail, mais aussi beaucoup de plaisir. Et Alex obtient la couverture parfaite pour la brochure - entouré des adorables couvertures pour bébés ! + Série + Animation + + 1 . 3 . + + Tout public + + + + Les Sisters + Joy de toi + Marine gagne une journée à la maison avec la star du moment, le beau Joy D. Mais Wendy, complètement gaga de la star, cherche à se l'accaparer. + Dessin animé + Jeunesse + + 0 . 1 . + + Tout public + + + + Les Sisters + La vie secrète des adonnaissants + Wendy veut passer une soirée tranquille avec Maxence en l'absence des parents, mais Marine a invité ses copines Nath et Loulou à la maison. Pour s'en débarrasser, Wendy invente une histoire pour leur faire peur : Flop, le nain de jardin de la voisine est une créature démoniaque... + Dessin animé + Jeunesse + + 0 . 2 . + + Tout public + + + + Les Sisters + Doudou la chance + Toute la bande de copains de Wendy est persuadée que le doudou préféré de Marine porte chance. Seule Wendy n'y croit pas un seul instant, mais les évènements tendent à lui démontrer qu'elle a tort! Tout le monde veut désormais s'arracher le doudou porte bonheur... + Dessin animé + Jeunesse + + 0 . 3 . + + Tout public + + + + Moka + Koushka et les lionnes guerrières + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Série + Animation + + 0 . 0 . + + Tout public + + + + Moka + Mouton dans la brume + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Série + Animation + + 0 . 1 . + + Tout public + + + + Moka + La baie du péril + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Série + Animation + + 0 . 2 . + + Tout public + + + + Moka + Le blizzard de l'oubli + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Série + Animation + + 0 . 3 . + + Tout public + + + + Gabby et la maison magique + La soucoupe volante + Dans sa boîte aux lettres super mimi, Gabby trouve une soucoupe volante qui décolle quand Sacha s'endort à l'intérieur. Gabby, Pandy et la Fée Minette doivent ramener la soucoupe au Jardin de contes de fées avant que Charlie mette la patte dessus ! + Série + Animation + 0 . 0 . + + Tout public + + + + Les chansons de Cocomelon + L'animal de compagnie dort à la maison + Rejoingez J.J. accompagné de sa famille et de ses amis pour apprendre l'alphabet, les chiffres, les cris des animaux et bien plus, en s'amusant avec de nouvelles chansons et comptines entraînantes. + Série + Animation + + 0 . 153 . + + Tout public + + + + Les chansons de Cocomelon + On a perdu notre hamster + Dans CoComelon, JJ et ses frères et soeurs vivent des aventures amusantes et réalistes - qu'ils aillent à la crèche ou restent à la maison, il y a toujours quelque chose de nouveau à apprendre ou à explorer, et une inspiration sans fin pour tirer le meilleur parti des moments de jeu avec les amis et la famille. + Série + Animation + + 0 . 150 . + + Tout public + + + + Cry Babies, larmes magiques : la série + Martin et le mystère des bottes folles + Bienvenue à Storyland ! Chaque épisode met en avant un conte oublié. Les Cry Babies Magic Tears rencontrent les habitants de Storyland ; ils vont vivre ensemble des aventures fantastiques, le livre magique des contes réécrivant les contes pour qu'ils ne les oublient jamais ! + Série + Animation + + 3 . 7 . + + Tout public + + + + Cry Babies, larmes magiques : la série + Les étoiles ont disparu + Il n'y a plus d'étoiles dans le ciel !!! Elodie annonce à tous les Cry Babies qu'une équipe courageuse doit se rendre sur la planète Tear pour résoudre le problème ! Hannah est la pilote idéale pour cette mission. + Série + Animation + + 5 . 6 . + + Tout public + + + + VIP Pets + Je veux intégrer la VIP Hair Academy - 1ère Partie + Lorsque Fabia prend le wagon avec Fabio pour savoir si elle a été acceptée à la Vip Hair Academy, les VIP Pets le font tomber en panne pour empêcher Fabia de partir. Elle doit trouver un moyen de se rendre à l'académie, rapidement ! Pendant ce temps, quelqu'un recherche les Vip Pets... + Série + Animation + + 3 . 0 . + + Tout public + + + + VIP Pets + Je veux intégrer la VIP Hair Academy - 2ème Partie + Fabia, Giselle, Mia, Lexie, Chloe et Hailey visitent la Vip Hair Academy, mais il s'avère que la directrice, Miss Beckett, est très exigeante et que toutes les filles ne sont pas acceptées. Comment vont-elles convaincre Beckett qu'elles méritent toutes une place à l'académie ? + Série + Animation + + 3 . 1 . + + Tout public + + + + Wazup + Le magazine quotidien des 6-12 ans à la pointe de l'info culturelle ! 4min30 pour s'informer sur les tendances, les expositions, les sorties ciné, livres, spectacles, musique, mode... Le Wazup ?, c'est le meilleur de l'actu pour les enfants avec en prime des bonus inédits sur Gulli.fr. + Magazine + Jeunesse + + 9 . 40 . + + Tout public + + + + Garfield & Cie + Lasagne et castagne + Du fin fond de la galaxie, un vaisseau mère en forme de cocotte-minute abrite d'étranges personnages, des lasagnes de l'espace, qui rêvent de conquête et veulent envahir la planète Terre... + Dessin animé + Jeunesse + + 0 . 0 . + + Tout public + + + + Garfield & Cie + Quand les souris dansent + Garfield ne mange pas de souris. Tant qu'elles sont discrètes, il les accepte sous son toit, et elles mènent la belle vie au nez et à la barbe de son maître, Jon... + Dessin animé + Jeunesse + + 0 . 1 . + + Tout public + + + + Garfield & Cie + Razzia sur la pizza + Garfield se moque d'Odie parce qu'il rêve qu'il d'être un super-héros. Celui-ci est vexé et boude dans son coin. Mais quand Garfield se trouve réellement en danger, son compagnon à quatre pattes met sa rancune de côté et vole au secours de son meilleur ami... + Dessin animé + Jeunesse + + 0 . 2 . + + Tout public + + + + Garfield & Cie + Maman Garfield + Garfield trouve un nid rempli d'oeufs qu'il croit abandonnés. Cela fait bien longtemps qu'il a cessé de chasser les oiseaux. Sur un coup de tête, il décide de les couver. Qu'a-t-il donc en tête pour se montrer aussi prévenant ?... + Dessin animé + Jeunesse + + 0 . 3 . + + Tout public + + + + Les minijusticiers + Supersnurfl : Igor + Igor rêve d'être pompier. Mais il paraît que les hommes du feu n'engagent pas les morveux. Or Igor a beau se moucher douze fois de suite, il a toujours le nez qui coule... + Série + Animation + + 0 . 2 . + + Tout public + + + + Les minijusticiers + Superinvisible + Olivier est tellement discret que personne ne le remarque. On le bouscule, on le percute comme s'il n'existait pas. Il prend la défense de Petit Louis qui s'est fait voler son goûter par Lucien. Mais Lucien ne le voit pas, le renverse et lui marche dessus... + Série + Animation + + 0 . 4 . + + Tout public + + + + Les minijusticiers + Superpudepied + Gaspard pue des pieds. Sa soeur Vanessa a honte de lui et fait comme si elle ne le connaissait pas. Devenu Superpudépié, Gaspard vient en aide à Vanessa. + Série + Animation + + 0 . 19 . + + Tout public + + + + Les minijusticiers + Superoui + Superoui prend sa revanche en faisant faire aux autres ce qu'ils lui demandent d'habitude. Quand Jimmy perche son freesbee dans le marronnier et qu'il demande à Jérôme de le récupérer, Superoui dit oui et c'est Jimmy qui s'y colle... + Série + Animation + + 0 . 6 . + + Tout public + + + + Les minijusticiers + Supercriquitue + Tous les camarades de Bertrand se moquent de sa voix de fausset. Bertrand admire Jimmy qui a une belle voix. Ce dernier, très farceur, manigance pour que Bertrand passe au tableau réciter la poésie et avoir la honte de sa vie. Devenu Supercriequitue, il prend sa revanche sur Jimmy... + Série + Animation + + 0 . 10 . + + Tout public + + + + Les minijusticiers + Superlatchatche + Edouard-Charles-Alexandre est incapable de dire son prénom jusqu'au bout. Alors qu'il raconte une blague, ses camarades s'endorment avant la fin. Devenu Superlatchache, il épate tout le monde lors du spectacle de poésie avec son phrasé envoûtant... + Série + Animation + + 0 . 7 . + + Tout public + + + + Idéfix et les Irréductibles + Une Ibère dans la ville + Labienus a le coup de foudre pour Tortilla, la nièce ibère de Padgachix. Le général la ramène au palais où son fort tempérament n'est pas du goût de Monalisa. + Série + Animation + + 0 . 5 . + + Tout public + + + + Idéfix et les Irréductibles + Labienus tu m'auras pas ! + Goudurix, jeune chanteur gaulois rebelle à l'occupation romaine, est de passage à Lutèce. Les Romains veulent l'arrêter, mais les Irréductibles veillent. + Série + Animation + + 0 . 1 . + + Tout public + + + + Idéfix et les Irréductibles + La baballe de Chevrotine + Nos héros récupèrent la balle de Chevrotine, la chienne du grand chef gaulois vaincu à Lutèce. Ignorant la valeur historique de ce précieux objet, Turbine l'emmène dehors pour jouer et se la fait voler par la légion canine ! Monalisa en hérite et ne la lâche plus. Idéfix et ses copains vont devoir s'introduire dans le palais de la Louve, de nuit, pour reprendre la précieuse baballe. + Série + Animation + + 0 . 12 . + + Tout public + + + + Zig & Sharko + Un grand pas pour Marina, Volet 1 + Nostalgiques, Marina et Sharko décident de retourner sur leur île, au grand bonheur de Zig et Bernie. Sur la plage, la sirène rencontre une bande d'humains et trouve une paire de claquettes qui va lui donner très envie d'avoir des jambes... + Série + Animation + + 3 . 0 . + + Tout public + + + + Zig & Sharko + Un grand pas pour Marina, Volet 2 + Marina expérimente ses nouvelles jambes et découvre qu'elles sont magiques. Comme elle a beaucoup de mal à maîtriser ses gambettes, Zig en profite pour essayer de la croquer tandis que Sharko doit redoubler d'efforts pour la protéger... + Série + Animation + + 3 . 1 . + + Tout public + + + + Zig & Sharko + Vernis mon beau vernis + Marina a les ongles sales. Bernie lui propose une manucure que Marina décline. Sharko lui, est très intéressé et se fait faire les ongles. Fan de sa manucure, Sharko a peur de l'abîmer. Une crainte que met à profit Zig pour tenter d'avaler la sirène. + Série + Animation + + 3 . 3 . + + Tout public + + + + Zig & Sharko + En roue libre + Marina veut apprendre à faire du patin avec Sharko qui s'avère être un professeur exigeant... pour ne pas dire pénible ! Zig sur ses rollers à propulsion, attire la sirène dans des défis fous, bien plus drôles que ceux du requin. + Série + Animation + + 3 . 10 . + + Tout public + + + + Zig & Sharko + Dans la boîte + Sharko en a marre de glisser sur les claquettes magiques de Marina. Il voudrait qu'elle les range dans une boîte à chaussures. La sirène résiste, tandis que Zig essaye de capturer les sandales pour utiliser le pouvoir des jambes magiques. + Série + Animation + + 3 . 2 . + + Tout public + + + + Zig & Sharko + Miniatures + Zig trouve dans la carlingue un pistolet au design futuriste et coloré. Il appuie sur la gâchette et hop, il rétrécit Bernie. Voilà qui va l'aider pour réduire Sharko en friture et attraper la sirène... + Série + Animation + + 1 . 39 . + + Tout public + + + + Zig & Sharko + L'envahisseur + Un Alien débarque sur la plage. Sa mission : récupérer Marina, incognito. Sauf qu'il est grillé par Bernie alors l'Alien fait un truc d'Alien : il prend l'apparence du Bernard l'ermite et enferme l'original dans le vaisseau... + Série + Animation + + 1 . 40 . + + Tout public + + + + Zig & Sharko + Papa poule + Un oeuf est seul sur la plage. Marina prend aussitôt les choses en main : il faut le couver et mener à bien la gestation. Elle confie cette tâche à Zig qui s'avère parfaitement incompétent. Sharko hérite donc de la lourde charge de mener l'oeuf à son terme... + Série + Animation + + 1 . 41 . + + Tout public + + + + Wazup + Le magazine quotidien des 6-12 ans à la pointe de l'info culturelle ! 4min30 pour s'informer sur les tendances, les expositions, les sorties ciné, livres, spectacles, musique, mode... Le Wazup ?, c'est le meilleur de l'actu pour les enfants avec en prime des bonus inédits sur Gulli.fr. + Magazine + Jeunesse + + 9 . 40 . + + Tout public + + + + Bob l'éponge + La Crousti-Cabane + Mr. Krabs transforme son restaurant en prison pour que Plancton y purge sa peine, mais le crime ne paie qu'un temps. + Dessin animé + Jeunesse + + 11 . 2 . + + Tout public + + + + Bob l'éponge + Le Camping-carananas + Bob et Patrick transforment l'Ananas en Camping-carananas et emmènent Carlo dans un road trip bien mérité. + Dessin animé + Jeunesse + + 11 . 243 . + + Tout public + + + + Bob l'éponge + Le chum avarié de Plankton + Plankton est submergé par du chum avarié; il convainc Bob de l'aider à le disperser un peu partout en ville. + Dessin animé + Jeunesse + + 11 . 4 . + + Tout public + + + + L'agence galactique + L'œuf + L'Agence Galactique a trouvé un oeuf légendaire, censé exaucer le souhait de celui qui le cajole au moment où il éclot. Au départ, seul K croit à la légende mais très vite, le reste de l'équipage se met à convoiter l'oeuf afin d'obtenir un voeu. C'est la zizanie ! La convoitise pousse nos amis à se disputer et à se mettre en danger. Chacun va devoir renoncer à son désir le plus fou pour que l'Agence se tire d'affaire et retrouve son harmonie. + Série + Animation + + 0 . 26 . + + Tout public + + + + L'agence galactique + Le flux postal + Zed attend son nouveau shampoing avec impatience mais il s'avère qu'il est coincé au Flux Postal, la poste wash-mashienne. Dany apprend que son vieux pote Fency travaille là-bas. Pas étonnant que ça bugue, c'est un gros boulet ! Dany prend les choses en mains, mais se faisant, il met tellement la pression à Fency que le shampoing se retrouve envoyé par erreur sur Ki'chling. + Série + Animation + + 0 . 27 . + + Tout public + + + + Bienvenue chez les Casagrandes + Un vlog en vogue + Sa passion pour les jouets entraîne Carl dans une carrière de vlogueur. + Dessin animé + Jeunesse + + 1 . 4 . + + Tout public + + + + Bienvenue chez les Casagrandes + Crise artistique + Les oeuvres de Frida ayant eu une mauvaise critique, les enfants tentent d'en faire monter les prix pour lui remonter le moral. + Dessin animé + Jeunesse + + 1 . 4 . + + Tout public + + + + Bienvenue chez les Casagrandes + Camping au cimetière + Les enfants essaient de battre un vieux record en restant toute la nuit au cimetière. + Dessin animé + Jeunesse + + 1 . 0 . + + Tout public + + + + Bienvenue chez les Casagrandes + Voyage de rattrapage + Ronnie Anne et ses primos essaient de gagner un voyage autour du monde pour Maria. + Dessin animé + Jeunesse + + 1 . 5 . + + Tout public + + + + Les Sisters + Le plusse beau métier du monde + Quand elle sera grande, Marine voudrait être "nainfermière", comme maman. Mais pour ça, il faut qu'elle s'entraîne à soigner les gens dès maintenant. Le problème, c'est que personne ne fait l'effort d'être malade dans cette maison ! Bon, ben si c'est comme ça, Marine va les aider un peu... + Dessin animé + Jeunesse + + 1 . 0 . + + Tout public + + + + Les Sisters + Rhume fiction + Marine fait semblant d'être malade pour ne pas aller à l'école. Wendy décide de faire la même chose pour sécher l'interrogation de maths au collège... + Dessin animé + Jeunesse + + 1 . 1 . + + Tout public + + + + Les Sisters + Pestouilles puissance trois + Il n'y a pas école demain et Marine va passer toute la journée avec sa Sister préférée. Mais Wendy a prévu un tout autre programme... + Dessin animé + Jeunesse + + 1 . 2 . + + Tout public + + + + Les Sisters + Télé Sisters + Marine a inscrit la famille à l'émission de télé-réalité "Ma famille trop bien", dans laquelle les spectateurs votent pour le membre de la famille le plus sympa... + Dessin animé + Jeunesse + + 1 . 3 . + + Tout public + + + + Les Sisters + Planches en vrac + Marine et Wendy apprennent que la star Joy D donne une séance de dédicaces à Pom-les-bains. Malheureusement, les parents ne peuvent pas les y emmener... + Dessin animé + Jeunesse + + 1 . 4 . + + Tout public + + + + Les filles de Dad + Journal en cavale + Ondine écrit son journal intime pendant un pique-nique. Roxane lit ce qu'Ondine a écrit sur les membres de la famille, l'ambiance tourne à l'orage. + Série + Animation + + 0 . 18 . + + Tout public + + + + Les filles de Dad + Le couple à la dérive + Le père de Dad a une nouvelle fois oublié son anniversaire de mariage. Mamie Michelle est très fâchée! Papi Michel va virve chez son fils. + Série + Animation + + 0 . 36 . + + Tout public + + + + Bienvenue chez les Loud + Une chambre pour Mamie + Lincoln et Clyde se disputent la dernière chambre de la maison de retraite pour leurs mamies. + Dessin animé + Jeunesse + + 4 . 8 . + + Tout public + + + + Bienvenue chez les Loud + Le farceur d'avril + Puisque Luan est enfermée dans la cave, alors qui est l'auteur de toutes ces farces en ce premier avril ? + Dessin animé + Jeunesse + + 4 . 11 . + + Tout public + + + + Bienvenue chez les Loud + Critiques chroniques + Lincoln persuade M. Bolhofner, de jouer avec les Papapops pour pouvoir changer de place en cours. + Dessin animé + Jeunesse + + 5 . 4 . + + Tout public + + + + Jamie a des tentacules + Prince Nerdy + Jamie et Nerdy se chafouinent. Nerdy étant jaloux de Jamie qui est Prince : Pfff ! n'importe qui peut être prince... Quand le roi et la reine Blarb demandent à leur fils, malgré la menace qui pèse sur lui de bien vouloir venir les remplacer quelques jours pour qu'ils partent en vacances, Jamie a l'idée de proposer Nerdy : pour lui prouver que rien n'est simple et surtout pas être Prince. Contre toute attente Nerdy excelle dans son rôle de prince à tel point que les parents de Jamie le laissent sur le trône. Jamie se retrouve mis de côté et l'a un peu mauvaise. Mais quand les Vloks décident de dévorer Nerdy puisqu'il est le nouveau prince, Jamie ne se résout pas à l'abandonner à son sort. + Série + Animation + + 2 . 35 . + + Tout public + + + + Jamie a des tentacules + Super Paraffine + Paraffine, Nerdy et Jamie regardent un film avec une super héroïne à laquelle Paraffine s'identifie totalement... ce qui fait bien marrer les deux garçons qui lui balancent ses 4 vérités : t'es plutôt super relou ! Paraffine décide de leur prouver sa valeur. Quand Contact et Gratchett tentent d'enlever Jamie, Paraffine intervient mais au lieu de sauver l'ami de son frère, elle facilite la tâche aux deux Vloks. Le Général Vlok la repère et veut absolument en faire son alliée, l'invitant à la dégustation de Jamie. Mais Paraffine n'a pas l'âme d'une super-villaine et quand elle réalise que son frère lui aussi va être dévoré par les Vloks, elle décide de le sauver... et Jamie avec. Finalement Paraffine sera quand même un peu une super héroïne ! + Série + Animation + + 2 . 29 . + + Tout public + + + + Totally Spies + Qui est qui ? + Lors d'une visite de routine à la Prison du WOOHP, Jerry fait une expérience pour le moins inattendue : le docteur Gray utilise un gadget de sa fabrication pour échanger son corps avec celui de Jerry... + Dessin animé + Jeunesse + + 5 . 17 . + + Tout public + + + + Totally Spies + Poudre de clowns + Dans plusieurs pays, on retrouve des gens arborant un maquillage de clown délirant qui se comportent comme des professionnels du cirque... + Dessin animé + Jeunesse + + 5 . 18 . + + Tout public + + + + Wazup + Le magazine quotidien des 6-12 ans à la pointe de l'info culturelle ! 4min30 pour s'informer sur les tendances, les expositions, les sorties ciné, livres, spectacles, musique, mode... Le Wazup ?, c'est le meilleur de l'actu pour les enfants avec en prime des bonus inédits sur Gulli.fr. + Magazine + Jeunesse + + 9 . 40 . + + Tout public + + + + Malcolm + Le liquidateur + La famille décide de passer quelques jours de détente dans un parc aquatique. Dewey étant malade, Lois engage une baby-sitter pour s'occuper de lui... + Série + Comédie + + 0 . 15 . + + Tout public + + + + Malcolm + Embouteillage + La famille de Malcolm est bloquée dans un embouteillage provoqué par Hal. Les enfants qui meurent de faim décident d'attaquer un marchand de glace ambulant. Pendant ce temps, Dewey, le seul à être resté à la maison avec une baby-sitter parvient à s'échapper. La grande aventure commence, Dewey se retrouve dans un champ à faire la conversation à un épouvantail. + Série + Comédie + + 1 . 0 . + + Tout public + + + + Un Noël de star + Addison Tate est la principale du collège de la petite ville de Mission City. Cette année, Noël aura un goût amer. En effet, l'établissement est menacé de fermeture en raison de coupes budgétaires. Afin de sauver son école et mobiliser des donateurs, Addison fait alors appel à Dylan Davidson, son premier amour devenu star de cinéma, pour faire la mise en scène du spectacle de Noël. Elle compte là-dessus pour changer la donne... + Téléfilm + Drame + + + Tout public + + + + Le bel inconnu de Noël + Amalie est une journaliste en mal d'inspiration pour son article de Noël. Après avoir quitté son petit ami qui lui a fait la demande en mariage la moins romantique possible, elle reçoit une déclaration d'amour anonyme en provenance de son village natal. Elle y retourne pour trouver l'auteur de la lettre. Qui de Joseph, déjà fiancé, Will, le benêt du village, Sander, le menteur né, ou Ian, un père veuf, peut bien être le mystérieux admirateur ?... + Téléfilm + Drame + + + Tout public + + + + Tiny House : mini maison sur mesure + Jeremie et Lindsay, Tennessee + Lindsay est une boulangère fantastique qui a besoin d'un espace de cuisine fonctionnel. Jeremy mesure 1m83, va-t-il trouver sa place dans une petite maison ? + Documentaire + Téléréalité + + 1 . 0 . + + Tout public + + + + Totally Spies + Poudre de clowns + Dans plusieurs pays, on retrouve des gens arborant un maquillage de clown délirant qui se comportent comme des professionnels du cirque... + Dessin animé + Jeunesse + + 5 . 18 . + + Tout public + + + + Totally Spies + Totalement Versailles + Nous revoici à Versailles où Sam, Clover et Alex, bien que saines et sauves, ont compris que quelque chose clochait. Non seulement elles ont été attaquées par un être mystérieux qui laisse de drôles d'empreintes de pas, mais elles découvrent aussi que plusieurs étudiants de leur classe ont disparu ! Lorsque Jerry les informe que la clé manquante a un lien avec Versailles, les filles ont encore plus de soupçons. Finalement, elles comprennent ce qui se trame, car après avoir fui une statue du château qui les poursuivait, elles se retrouvent prisonnières avec le reste de leur classe dans le donjon, sous le château. + Dessin animé + Jeunesse + + 5 . 25 . + + Tout public + + + + Totally Spies + Le lycée éternel + C'est la remise des diplômes au lycée. Mais Chest en a décidé autrement et capture ses camarades dans une reproduction du lycée pour qu'ils y restent à vie... + Dessin animé + Jeunesse + + 4 . 0 . + + Tout public + + + + Baskup + Kung fu basket + Les High 5 partent en Chine affronter les Sichuan Shaolins dans leur monastère du panda. C'est l'occasion pour Mike d'en apprendre plus sur ses origines... + Série + Animation + + 1 . 8 . + + Tout public + + + + Baskup + Trou de mémoire + Rudy a répondu à la convocation du centre de formation, tandis que les autres High 5 jouent la finale contre les Pirates. Le jury chargé de se prononcer sur l'intégration de Rudy compte un membre insolite : Slim, le coach des Pirates... + Série + Animation + + 1 . 25 . + + Tout public + + + + Le geste écolo de Gulli + Sacs de course + Gullia te donne des conseils simples et efficaces pour protéger ta planète. + Magazine + Nature + + 0 . 24 . + + Tout public + + + + Baskup + Le coach + A la veille de la rencontre contre les Tikids, Rudy ne comprend pas les décisions du coach... + Série + Animation + + 0 . 23 . + + Tout public + + + + Baskup + Toujours au top + C'est la finale de la BASKUP ! Les HIGH5 vont affronter la pire équipe du tournoi, les horribles REPTILES et leur tactique de défense impénétrable : le CONSTRICTOR. Mais quelque chose de plus grave se trame en coulisse. SLIM a piégé Léo. Il a même une vidéo compromettante qui pourrait le mettre gravement dans l'embarras. Maintenant, Slim menace Stella de livrer la vidéo de son petit frère à la police si elle ne fait pas perdre son équipe lors de la finale. Le match est dans quelques heures. Stella va devoir choisir entre son petit frère et ses amis... + Série + Animation + + 0 . 24 . + + Tout public + + + + Madagascar : la savane en délire + Le lac des hippos + Lorsque Gloria se faufile dans le NY Ballet pour auditionner pour "le lac des cygnes" et est rejetée (pas pour sa danse, mais parce qu'elle est un hippopotame), la confiance de Gloria en elle-même est mise à l'épreuve. Avec l'aide de ses amis, Gloria apprend qu'elle n'a pas besoin de quelqu'un d'autre pour décider qu'elle est une étoile - elle en est déjà une, peu importe ce que l'on pense! + Série + Animation + + 0 . 3 . + + Tout public + + + + Spidey et ses amis extraordinaires + Un Noël tentaculaire + Le Docteur Octopus menace de saboter Noël en volant tous les cadeaux. + Série + Animation + + 0 . 24 . + + Tout public + + + + Objectif Blake ! + Objectif atteint ! + Blake réalise enfin son rêve d'aller au camp de l'Espace, qui se révèle être décevant. Mais il doit réagir quand les Extracureuils arrivent... + Série + Animation + + 0 . 51 . + + Tout public + + + + Bienvenue chez les Casagrandes + Le grand refroidissement + Une vague de chaleur descend sur la ville, Ronnie-Anne et sa famille décident d'investir dans un climatiseur. + Dessin animé + Jeunesse + + 0 . 13 . + + Tout public + + + + Moka + L'étrange affaire des pierres debout + Le détective Moka mène l'enquête : qui est le monstre qui a fait tomber les pierres debout ? Pour Cerise, pas de mystère, puisque c'est elle qui a commis la gaffe... + Série + Animation + + 0 . 60 . + + Tout public + + + + Moka + Zita de la tribu des fennecs + Moka tombe amoureux d'une petite fennec aussi mordue d'aventure que lui ! Il se demande bien comment lui déclarer sa flamme ! Pour Cerise, c'est très mignon, mais un couple aussi casse-cou ne présage rien de bon... + Série + Animation + + 0 . 61 . + + Tout public + + + + Moka + L'incessante quête des brindilles + Cerise demande à Moka de chercher des brindilles pour le feu, mais Moka est sans cesse distrait, ce qui agace Cerise : quand on commence une tâche, il faut la finir... + Jeunesse + Dessins Animés + + 0 . 62 . + + Tout public + + + + Moka + Les pépins du prince Pastèque + Moka avale des pépins de pastèque et Cerise plaisante qu'il va lui-même devenir pastèque ! Mais lui prend ça très au sérieux. Et il entend bien vivre sa vie comme un véritable fruit parmi les fruits. + Jeunesse + Dessins Animés + + 0 . 63 . + + Tout public + + + + Moka + Arja contre le baby-sitting de l'horreur + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 71 . + + Tout public + + + + Moka + L'incroyable pouvoir de Moka + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 75 . + + Tout public + + + + Moka + Les cerises de l'angoisse + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 66 . + + Tout public + + + + Moka + L'extraordinaire rencontre du destin + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 73 . + + Tout public + + + + Moka + La Maîtresse du Bambou Sacré + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 68 . + + Tout public + + + + Les chansons de Cocomelon + Chez le docteur + Rejoignez J.J. accompagné de sa famille et de ses amis pour apprendre l'alphabet, les chiffres, les cris des animaux et bien plus, en s'amusant avec de nouvelles chansons et comptines entraînantes. + Jeunesse + Dessins Animés + + 0 . 30 . + + Tout public + + + + Les chansons de Cocomelon + Ma maitresse est la meilleure + Dans CoComelon, JJ et ses frères et sœurs vivent des aventures amusantes et réalistes - qu'ils aillent à la crèche ou restent à la maison, il y a toujours quelque chose de nouveau à apprendre ou à explorer, et une inspiration sans fin pour tirer le meilleur parti des moments de jeu avec les amis et la famille. + Jeunesse + Dessins Animés + + 0 . 147 . + + Tout public + + + + Les chansons de Cocomelon + C'est l'heure de laver la voiture + Dans CoComelon, JJ et ses frères et sœurs vivent des aventures amusantes et réalistes - qu'ils aillent à la crèche ou restent à la maison, il y a toujours quelque chose de nouveau à apprendre ou à explorer, et une inspiration sans fin pour tirer le meilleur parti des moments de jeu avec les amis et la famille. + Jeunesse + Dessins Animés + + 0 . 70 . + + Tout public + + + + Les chansons de Cocomelon + La chanson du bobo + Dans CoComelon, JJ et ses frères et sœurs vivent des aventures amusantes et réalistes - qu'ils aillent à la crèche ou restent à la maison, il y a toujours quelque chose de nouveau à apprendre ou à explorer, et une inspiration sans fin pour tirer le meilleur parti des moments de jeu avec les amis et la famille. + Jeunesse + Dessins Animés + + 0 . 83 . + + Tout public + + + + Cry Babies, larmes magiques : la série + Le meilleur animal de compagnie + Les Cry Babies Magic Tears et leurs amis du Monde Fantasy essayent de décider quel est le meilleur de leurs animaux de compagnie. Mais comme ils ne parviennent pas à se mettre d'accord, ils décident de mettre en place un circuit d'entrainement. Lequel des animaux de compagnie des Cry Babies Magic Tears saura faire le plus de choses? + Jeunesse + Dessins Animés + + 2 . 1 . + + Tout public + + + + Cry Babies, larmes magiques : la série + Piégé dans le jeu + Lena n'arrête pas de jouer sur la tablette. Soudain, des mots magiques sont prononcés et... Lena se retrouve piégée dans le jeu! La pauvre Léna a besoin d'aide! Les autres Cry Babies Magic Tears sauront-ils comment l'aider à sortir du jeu? Lena restera-t-elle piégée dans le jeu pour toujours? + Jeunesse + Dessins Animés + + 2 . 2 . + + Tout public + + + + Idéfix et les Irréductibles + Urgences Poulerotix + Amnésix doit entrer dans Lutèce pour soigner d'urgence Poulérotix. Mais la potion d'invisibilité qu'il avait préparée a été altérée par Voldenuix. + Jeunesse + Dessins Animés + + 0 . 39 . + + Tout public + + + + Idéfix et les Irréductibles + Canigus, ils en veulent toujours plus + La tête d'Idéfix est partout sur les murs de Rome comme mascotte d'une marque romaine de nourriture pour animaux. Les conséquences sont désagréables et immédiates pour lui. + Jeunesse + Dessins Animés + + 0 . 45 . + + Tout public + + + + Idéfix et les Irréductibles + La fête de Toutatis + Nouvelle interdiction romaine : les Gaulois ne peuvent pas fêter Toutatis. Idéfix et ses amis vont se battre pour que la fête gauloise ait lieu comme chaque année. Mais leur tentative de récupérer la statuette de Toutatis se solde par un échec spectaculaire quand elle finit brisée en mille morceaux. + Jeunesse + Dessins Animés + + 0 . 46 . + + Tout public + + + + Madagascar : la savane en délire + Mission cupcake + L'enfance des héros de Madagascar Alex le lion, Marty le zèbre, Melman la girafe et Gloria l'hippo dans un zoo de Central Park. + Jeunesse + Dessins Animés + + 1 . 4 . + + Tout public + + + + Les Sisters + Plâtrées + À force de faire la cascadeuse en rollers, Marine a une jambe dans le plâtre. Sa grande Sister est aux petits soins pour elle, mais Marine profite lourdement de la situation pour faire de sa Sister une esclave entièrement dévouée à son service... Wendy craque ! Jusqu'au moment où elle se casse la jambe à son tour... + Jeunesse + Dessins Animés + + 0 . 4 . + + Tout public + + + + Les Sisters + Déconnectées + Marine et Wendy passent toutes leurs journées devant leurs écrans de smartphone ou de jeu vidéo. Les parents parient entre eux que leurs filles ne pourront jamais tenir une journée sans. Pari tenu, écrans confisqués ! Dur pour les Sisters, mais elles tiennent bon et ce sont les parents qui font tout pour les faire craquer ! + Jeunesse + Dessins Animés + + 0 . 5 . + + Tout public + + + + Les Sisters + Namour galactique + En regardant un film de science fiction, Marine se persuade que Maxence est un extraterrestre déguisé en humain qui veut enlever sa Sister et l'emmener sur sa planète. Elle fera tout pour la sauver et ira même jusqu'à enlever l'affreux ' nécrateresse ', sans se douter que c'est le pauvre Maxence qui porte un déguisement ! + Jeunesse + Dessins Animés + + 0 . 6 . + + Tout public + + + + Moka + Le trésor caché de l'oasis + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 4 . + + Tout public + + + + Moka + L'inéluctable envol de l'albatros + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 5 . + + Tout public + + + + Moka + La maladie du malheur + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 6 . + + Tout public + + + + Moka + A la poursuite du fruit du héros + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 7 . + + Tout public + + + + Gabby et la maison magique + Le hoquet de Gabby + Félins mignons, créations rigolotes et magie colorée ! Rejoignez Gabby, une passionnée de chats, et son acolyte Pandy pour une série d'aventures animées. + Jeunesse + Dessins Animés + + 0 . 1 . + + Tout public + + + + Les chansons de Cocomelon + Joyeux anniversaire + Dans CoComelon, JJ et ses frères et sœurs vivent des aventures amusantes et réalistes - qu'ils aillent à la crèche ou restent à la maison, il y a toujours quelque chose de nouveau à apprendre ou à explorer, et une inspiration sans fin pour tirer le meilleur parti des moments de jeu avec les amis et la famille. + Jeunesse + Dessins Animés + + 0 . 78 . + + Tout public + + + + Les chansons de Cocomelon + L'heure du coucher + Rejoingez J.J. accompagné de sa famille et de ses amis pour apprendre l'alphabet, les chiffres, les cris des animaux et bien plus, en s'amusant avec de nouvelles chansons et comptines entraînantes. + Jeunesse + Dessins Animés + + 0 . 0 . + + Tout public + + + + Cry Babies, larmes magiques : la série + Peter et les lucioles cachées + Bienvenue à Storyland ! Chaque épisode met en avant un conte oublié. Les Cry Babies Magic Tears rencontrent les habitants de Storyland ; ils vont vivre ensemble des aventures fantastiques, le livre magique des contes réécrivant les contes pour qu'ils ne les oublient jamais ! + Jeunesse + Dessins Animés + + 3 . 8 . + + Tout public + + + + Cry Babies, larmes magiques : la série + Pinocchio, quel nez ! + Bienvenue à Storyland ! Chaque épisode met en avant un conte oublié. Les Cry Babies Magic Tears rencontrent les habitants de Storyland ; ils vont vivre ensemble des aventures fantastiques, le livre magique des contes réécrivant les contes pour qu'ils ne les oublient jamais ! + Jeunesse + Dessins Animés + + 3 . 9 . + + Tout public + + + + VIP Pets + La mode des Glams Gems est arrivée + Dans cette nouvelle saison, les VIP Pets vont découvrir une zone méconnue de Glam City : Cattown ! Là, ils rencontreront les chats, des animaux de compagnie avec des look incroyables. Au début, les chats et les chiens ne s'entendent pas, mais... ils découvriront qu'ils ont plus en commun qu'ils ne le pensent. + Jeunesse + Dessins Animés + + 2 . 0 . + + Tout public + + + + VIP Pets + Bienvenue à Cattown + Dans cette nouvelle saison, les VIP Pets vont découvrir une zone méconnue de Glam City : Cattown ! Là, ils rencontreront les chats, des animaux de compagnie avec des look incroyables. Au début, les chats et les chiens ne s'entendent pas, mais... ils découvriront qu'ils ont plus en commun qu'ils ne le pensent. + Jeunesse + Dessins Animés + + 2 . 1 . + + Tout public + + + + Wazup + Le magazine quotidien des 6-12 ans à la pointe de l'info culturelle ! 4min30 pour s'informer sur les tendances, les expositions, les sorties ciné, livres, spectacles, musique, mode... Le Wazup ?, c'est le meilleur de l'actu pour les enfants avec en prime des bonus inédits sur Gulli.fr. + Jeunesse + Mag. Jeunesse + + + Tout public + + + + Garfield & Cie + Comme chat et chien + Une loi est entrée en vigueur et elle concerne tous les chiens de la ville : celui qui sortira sans une médaille à son collier se verra jeter à la fourrière sans autre forme de procès... + Jeunesse + Dessins Animés + + 0 . 4 . + + Tout public + + + + Garfield & Cie + Félin pour l'autre + Jon revient du supermarché où il a acheté une brosse pour ses animaux. Garfield n'en a cure, car il sait faire sa toilette lui-même... + Jeunesse + Dessins Animés + + 0 . 5 . + + Tout public + + + + Garfield & Cie + La farce du dindon + Jon a gagné une dinde à la loterie. Il décide de la préparer pour le dîner de ce soir, auquel il a convié Liz. Seul problème, la dinde est livrée vivante... + Jeunesse + Dessins Animés + + 0 . 7 . + + Tout public + + + + Garfield & Cie + Agent content + Ichabod, un cousin éloigné, laisse en héritage une fortune colossale à Jon et son frère Donatien, mais il y a une condition : passer une nuit entière dans son manoir hanté... + Jeunesse + Dessins Animés + + 0 . 9 . + + Tout public + + + + Les Minijusticiers + Superprout + Tout le monde le surnomme Greg "prout-prout". Il sait bien que son odeur gène, mais il ne peut faire autrement. Pourtant, une fois devenu Superprout, il peut faire des bonds phénoménaux grâce à ses flatulences... + Jeunesse + Dessins Animés + + 0 . 11 . + + Tout public + + + + Les Minijusticiers + Supermini + Yvon est si petit qu'on le surnomme l'accoudoir. Tout le monde se moque de lui. Devenu Supermini, il peut réduire tous les objets à sa taille... + Jeunesse + Dessins Animés + + 0 . 0 . + + Tout public + + + + Les Minijusticiers + Superchamboultou + Tout le monde fuit René qui, dès qu'il fait un geste, provoque une catastrophe. Devenu Superchamboultou, il parvient à se faire inviter aux Jeux olympiques organisés chez Jimmy... + Jeunesse + Dessins Animés + + 0 . 15 . + + Tout public + + + + Les Minijusticiers + Supertomate + Marie rougit à la moindre émotion, et ses camarades se moquent régulièrement d'elle. Devenue Supertomate, elle a maintenant le pouvoir de repeindre tout ce qu'elle veut. + Jeunesse + Dessins Animés + + 0 . 12 . + + Tout public + + + + Les Minijusticiers + Superlunettes + Eliette en a assez que tout le monde se moque de son look mais, sans lunettes, elle voit tout flou. Lorsque ses camarades les lui volent pour s'amuser, elle se cogne partout et tombe à l'eau. Devenue Superlunettes, elle peut voir à travers les murs et les objets. L'heure de la revanche a sonné... + Jeunesse + Dessins Animés + + 0 . 20 . + + Tout public + + + + Les Minijusticiers + Supertic + Carmen et Jimmy se moquent des tics de Yoann. Lorsqu'ils se retrouvent devant la classe pour présenter leur exposé, Yohann, devenu Supertic, fait tout un tas de gestes que Carmen et Jimmy ne peuvent pas s'empêcher de répéter à l'identique... + Jeunesse + Dessins Animés + + 0 . 16 . + + Tout public + + + + Idéfix et les Irréductibles + Une affaire corsée + Les fromages corses sont interdits à Lutèce par les Romains. Et le fier fromager corse qui refuse de se laisser faire se retrouve emprisonné. Idéfix et ses amis vont faire équipe avec le chien du fromager corse pour sauver son maître. + Jeunesse + Dessins Animés + + 0 . 2 . + + Tout public + + + + Idéfix et les Irréductibles + Turbine encrassée + Lors d'une course-poursuite à très grande vitesse, Turbine se prend un tas de charbon. Elle se retrouve avec le poil noirci et une toux inextinguible. Pour la ménager, Idéfix ne veut plus monter sur le dos de son amie. Inquiète et vexée, Turbine se tourne vers Voldenuix et ses potions imprévisibles pour arrêter de tousser. + Jeunesse + Dessins Animés + + 0 . 3 . + + Tout public + + + + Idéfix et les Irréductibles + Le hibou de marbre + Alors que Voldenuix transporte une poudre magique pour son maître Amnésix, il s'en retrouve recouvert et se transforme en statue de marbre en plein vol ! Il tombe pile sur la tête du général Labienus, qui délire et le prend pour un envoyé des dieux quand il s'aperçoit que la statue émet des sons ! Il ne peut plus s'en passer et la consulte pour tout. + Jeunesse + Dessins Animés + + 0 . 4 . + + Tout public + + + + Zig & Sharko + Dans la boîte + Sharko en a marre de glisser sur les claquettes magiques de Marina. Il voudrait qu'elle les range dans une boîte à chaussures. La sirène résiste, tandis que Zig essaye de capturer les sandales pour utiliser le pouvoir des jambes magiques. + Jeunesse + Dessins Animés + + 3 . 2 . + + Tout public + + + + Zig & Sharko + Cher papa + Marina veut montrer les claquettes à son père, mais elle craint sa réaction. Quand ce dernier débarque pour lui demander de le remplacer sur le trône, la sirène va tout faire pour qu'il ne voit pas les claquettes, peu habituées à la discrétion... + Jeunesse + Dessins Animés + + 3 . 5 . + + Tout public + + + + Zig & Sharko + Des claquettes pas nettes + Marina marche sur un tas d'algues malodorantes et ses claquettes puent tellement que Zig n'arrive plus à approcher d'elle... et Sharko non plus ! Comme Marina refuse de laver ses claquettes, Zig et Sharko doivent s'allier pour leur donner un bain ! + Jeunesse + Dessins Animés + + 3 . 9 . + + Tout public + + + + Zig & Sharko + Jamais sans mes claquettes + Marina refuse de quitter ses claquettes pour entrer dans un restaurant chic, alors que Sharko accepte de se plier à la règle. Voyant ça, Zig impose toutes sortes d'interdictions au requin, dans le but de l'éloigner de la sirène... + Jeunesse + Dessins Animés + + 3 . 16 . + + Tout public + + + + Zig & Sharko + Un grand pas pour Marina, Volet 1 + Nostalgiques, Marina et Sharko décident de retourner sur leur île, au grand bonheur de Zig et Bernie. Sur la plage, la sirène rencontre une bande d'humains et trouve une paire de claquettes qui va lui donner très envie d'avoir des jambes... + Jeunesse + Dessins Animés + + 3 . 0 . + + Tout public + + + + Zig & Sharko + Perdus dans la jungle + A fond dans leur course-poursuite, Zig et Sharko finissent par se perdre dans la jungle. Et face à cet univers dur et inquiétant qu'est la nature sauvage, les deux ennemis vont devoir mettre de côté leurs antagonismes pour mieux s'entraider... + Jeunesse + Dessins Animés + + 1 . 42 . + + Tout public + + + + Zig & Sharko + Là-haut sur la montagne + Marina est prise d'une nouvelle lubie : gravir le volcan jusqu'au sommet. Sharko n'est pas enthousiaste mais Zig se présente en guide de montagne tyrolien prêt à affronter la montagne. Sharko va devoir se mettre à l'alpinisme... + Jeunesse + Dessins Animés + + 1 . 46 . + + Tout public + + + + Zig & Sharko + Les chauffards de la plage + Sharko a un super plan romantique : Marina et lui, une superbe voiture luxueuse et confortable qui les emmène pique-niquer en tête à tête devant un panorama digne des plus belles couvertures de romans de gare. Sauf que Zig et Bernie s'en mêlent... + Jeunesse + Dessins Animés + + 1 . 30 . + + Tout public + + + + Wazup + Le magazine quotidien des 6-12 ans à la pointe de l'info culturelle ! 4min30 pour s'informer sur les tendances, les expositions, les sorties ciné, livres, spectacles, musique, mode... Le Wazup ?, c'est le meilleur de l'actu pour les enfants avec en prime des bonus inédits sur Gulli.fr. + Jeunesse + Mag. Jeunesse + + + Tout public + + + + Bob l'éponge + Amitié dans le marais + Boule de gras doit passer l'après-midi avec Patrick qui l'emmène dans son lieu préféré : le marais. + Jeunesse + Dessins Animés + + 11 . 5 . + + Tout public + + + + Bob l'éponge + Le tour de magie de Bob + Bob l'éponge a appris un tour de magie, mais il ne trouve pas son public. + Jeunesse + Dessins Animés + + 11 . 5 . + + Tout public + + + + Bob l'éponge + Temps orageux + Bob doit protéger son nouvel ami, le petit nuage orageux, d'un journaliste météo enragé. + Jeunesse + Dessins Animés + + 11 . 4 . + + Tout public + + + + Bienvenue chez les Casagrandes + Des coupes qui décoiffent + Peu douée pour la coiffure, Carlota s'exerce avec le grand maître de la tondeuse en personne : CJ ! + Jeunesse + Dessins Animés + + 1 . 5 . + + Tout public + + + + Bienvenue chez les Casagrandes + Maman malgré lui + Ronnie Anne et Sid donnent un coup de main à Casey et son père dans leur camion restaurant afin de pouvoir assister au concert de Yoon Kwon. + Jeunesse + Dessins Animés + + 1 . 7 . + + Tout public + + + + Bienvenue chez les Casagrandes + Concert à tout prix + Ronnie Anne et Sid donnent un coup de main à Casey et son père dans leur camion restaurant afin de pouvoir assister au concert de Yoon Kwon. + Jeunesse + Dessins Animés + + 1 . 7 . + + Tout public + + + + Bienvenue chez les Casagrandes + La chasse au trésor + Quand ils découvrent une carte au trésor, les Casagrandes partent à la recherche de l'or de Pancho Villa. + Jeunesse + Dessins Animés + + 1 . 6 . + + Tout public + + + + Les Sisters + La bobocléose + Cet après-midi, Wendy a invité Maxence à regarder un film en amoureux. Pendant ce temps, Marine va visionner une émission sur la tablette de sa grande sister... + Jeunesse + Dessins Animés + + 1 . 5 . + + Tout public + + + + Les Sisters + La baby-Sister + Wendy est ravie : elle va pouvoir se faire de l'argent de poche en gardant la petite nièce de madame Georgette tout en passant l'après midi avec son Maxence... + Jeunesse + Dessins Animés + + 1 . 6 . + + Tout public + + + + Les Sisters + Monsieur Pimpin + Marine rêve de posséder Monsieur Pimpin, un lapin en peluche qu'elle a vu dans une pub à la télé. Ses parents acceptent de lui offrir, mais sous condition... + Jeunesse + Dessins Animés + + 1 . 7 . + + Tout public + + + + Les Sisters + La reine du silence + Agacée par sa pipelette de sister, Wendy dit à Marine qu'elle lui donnera sa tablette si elle arrive à se taire pendant une journée entière... + Jeunesse + Dessins Animés + + 1 . 8 . + + Tout public + + + + Les Sisters + Ma vie rêvée à Pomme-les-Bains + Wendy a été choisie par un webzine pour incarner "l'adolescente de la semaine". Toute la journée, elle sera suivie, photographiée, interviewée par un photographe et une journaliste. + Jeunesse + Dessins Animés + + 1 . 9 . + + Tout public + + + + Les filles de Dad + Wifi et compagnie + Internet est en panne. Paniquée, Ondine, qui doit enregistrer son sacro-saint tuto, a l'idée du siècle. Elle veut foncer au Cookie café pour profiter du wifi. + Jeunesse + Dessins Animés + + 0 . 26 . + + Tout public + + + + Les filles de Dad + La vie est une tombola + Ondine a beaucoup de chance : elle a gagné le micro de ses rêves à une tombola en ligne. Mais au moment d'aller chercher le lot, elle perd le ticket gagnant. + Jeunesse + Dessins Animés + + 0 . 28 . + + Tout public + + + + Bienvenue chez les Loud + Maman au collège + Rita se fait passer pour une collégienne et devient la meilleure amie de Leni, Luna et Luan. + Jeunesse + Dessins Animés + + 4 . 11 . + + Tout public + + + + Bienvenue chez les Loud + Mauvais calcul + Lisa fait cours à sa classe de CP et découvre qu'il ne suffit pas d'avoir des connaissances pour enseigner. + Jeunesse + Dessins Animés + + 4 . 9 . + + Tout public + + + + Bienvenue chez les Loud + La petite bête + Papa Loud démonte la maison à la recherche du criquet qui gâche sa journée de tranquillité + Jeunesse + Dessins Animés + + 5 . 5 . + + Tout public + + + + Jamie a des tentacules + Le monde marche sur la tête + En voulant utiliser le transpondeur Nerdy inverse la rotation de la terre. Cela à pour effet immédiat de transformer tous les comportements de ses occupants... A l'exception de Nerdy, qui se retrouve obligé de composer avec les caractères contrariés de chacun. Dans une confusion extrême tout finira par rentrer dans l'ordre. + Jeunesse + Dessins Animés + + 2 . 36 . + + Tout public + + + + Jamie a des tentacules + La dédicace de Falfatrax + Pourchassé par les Vloks, Jamie, le prince de la planète Blarb, s'exile sur Terre, où il se lie d'amitié avec Nerdy, le fils du couple qui l'a recueilli. + Jeunesse + Dessins Animés + + 2 . 30 . + + Tout public + + + + Totally Spies + Astro mais pas trop ! + Pour se venger d'avoir été renvoyée, Cosmo, une scientifique entreprend de supprimer la gravité terrestre à l'aide d'un appareil de sa conception. Les filles doivent l'arrêter avant que les habitants de la Terre ne soient en apesanteur... + Jeunesse + Dessins Animés + + 5 . 19 . + + Tout public + + + + Totally Spies + Dirigeable en déroute + Jerry convoque les filles et leur demande d'escorter trois méchants vers une île-forteresse où ils seront enfermés. Mais les malfaiteurs fomentent une mutinerie destinée à libérer les prisonniers de l'île et à y abandonner les Spy Girls... + Jeunesse + Dessins Animés + + 5 . 20 . + + Tout public + + + + Wazup + Le magazine quotidien des 6-12 ans à la pointe de l'info culturelle ! 4min30 pour s'informer sur les tendances, les expositions, les sorties ciné, livres, spectacles, musique, mode... Le Wazup ?, c'est le meilleur de l'actu pour les enfants avec en prime des bonus inédits sur Gulli.fr. + Jeunesse + Mag. Jeunesse + + + Tout public + + + + Malcolm + Embouteillage + La famille de Malcolm est bloquée dans un embouteillage provoqué par Hal. Les enfants qui meurent de faim décident d'attaquer un marchand de glace ambulant. Pendant ce temps, Dewey, le seul à être resté à la maison avec une baby-sitter parvient à s'échapper. La grande aventure commence, Dewey se retrouve dans un champ à faire la conversation à un épouvantail. + Série + Série Rires + + 1 . 0 . + + Tout public + + + + Malcolm + Il n'y a pas d'heure pour Halloween + Malcolm n'est pas du tout content. Il a en effet appris qu'il ne pourrait pas participer à la grande fête de Halloween en compagnie de tous ses amis. N'y a-t-il vraiment aucune solution pour qu'il soit de la partie ?... + Série + Série Rires + + 1 . 1 . + + Tout public + + + + Le Parc des merveilles + La petite June a inventé un parc aux attractions incroyables, dirigé par des animaux : il y a Boomer, l'ours d'accueil, Steve, un hérisson responsable de la sécurité et Peanut, un créateur des manèges. Ce parc fabuleux n'a pas d'existence réelle jusqu'à ce que June découvre un parc d'attractions désaffecté... + Film + Film Animation + + + Tout public + + + + Transformers Earth Spark + Secret défense + Schloder, de Ghost, pourchasse Twitch après l'avoir prise pour un Decepticon, pendant que Dot réalise que les intentions de son employeur ne sont pas claires. + Jeunesse + Dessins Animés + + 0 . 4 . + + Tout public + + + + Transformers Earth Spark + Les traditions + Robby refuse de participer à la chasse au Wakwak alors Bumblebee y va à sa place. Twitch, désireuse d'avoir ses propres traditions, rencontre Wheelljack. + Jeunesse + Dessins Animés + + 0 . 5 . + + Tout public + + + + Transformers Earth Spark + La famille et les amis + Les Terrans ont soudainement un comportement très étrange, possiblement lié à l'appréhension de Robby et Mo face à leur premier jour dans leur nouvelle école. + Jeunesse + Dessins Animés + + 0 . 6 . + + Tout public + + + + Transformers Earth Spark + Le leurre + Lors d'une mission pour neutraliser trois Cassette-Bots/Mini-Cassette, Megatron et Optimus prime ne sont pas d'accord sur la façon de traiter les Decepticons. + Jeunesse + Dessins Animés + + 0 . 7 . + + Tout public + + + + Totally Spies + Le retour de Géraldine + Quelqu'un a dérobé une puce électronique capable de contrôler les esprits. Les Spies enquêtent et Clover s'inscrit dans un club à la fac. Elle se rend compte que la présidente manipule ses adhérentes... + Jeunesse + Dessins Animés + + 4 . 5 . + + Tout public + + + + Totally Spies + Des gymnastes d'enfer + Les Spies se retrouvent à Paris avec Jerry. Elles enquêtent sur des gymnastes roumaines qui ont un comportement bizarre : Nadia leur coach leur administre en fait de l'ADN de singe pour qu'elles soient championnes du monde... + Jeunesse + Dessins Animés + + 4 . 7 . + + Tout public + + + + Totally Spies + Un cours diabolique + Les Spies s'inscrivent à un cours d'espionnage et ont pour exercice de voler une machine. Mais ce cours est truqué et leur professeur vole cet appareil qui à le pouvoir de changer les proportions de la Terre... + Jeunesse + Dessins Animés + + 4 . 2 . + + Tout public + + + + Totally Spies + Super mamie + Les Spies doivent escorter "Mamie", une criminelle, lors de son transfert de prison. Celle-ci s'évade et tente de cambrioler une banque avec ses anciens complices. Mais les Spies l'arrêtent. Clover tombe amoureuse d'un garçon qui partage ses passions... + Jeunesse + Dessins Animés + + 4 . 3 . + + Tout public + + + + Baskup + Coup de tonnerre à Bollywood + En Inde, les High 5 rencontrent les Bollywood Masalas. Rudy tombe sous le charme de leur capitaine, la jolie Sally, avec qui il vit une courte idylle... + Jeunesse + Dessins Animés + + 1 . 2 . + + Tout public + + + + Baskup + Moteur... action ! + Les Bollywood Masalas sont de retour pour jouer un match à San Antonio. Ils ont amené avec eux toute une équipe de tournage ! Et ils proposent même aux High 5 de jouer dans leur prochain film. Mia se voit déjà devenir une star... + Jeunesse + Dessins Animés + + 1 . 3 . + + Tout public + + + + Le geste écolo de Gulli + Les cartes de voeux + Gullia te donne des conseils simples et efficaces pour protéger ta planète. + Magazine + Mag. Société + + 0 . 25 . + + Tout public + + + + Baskup + Toujours au top + C'est la finale de la Baskup. Les High 5 vont affronter la pire équipe du tournoi, les horribles Reptiles et leur tactique de défense impénétrable : le Constrictor... + Jeunesse + Dessins Animés + + 0 . 25 . + + Tout public + + + + Baskup + La remplaçante + C'est l'heure du match retour contre les puissants Luchadores. Mais en tentant de reproduire les cascades de l'équipe mexicaine, Mia chute et se foule la cheville. Elle cède sa place le temps d'un match. Mike fait appel à leur amie Selena, mais la jalousie titille Mia... + Jeunesse + Dessins Animés + + 1 . 5 . + + Tout public + + + + Madagascar : la savane en délire + Meilleurs fans pour la vie + Le gang se dirige vers le jour "des meilleurs fans" au Giraffe Stadium de New York. Lorsque le comportement d'Alex finit par blesser les sentiments de Marty, il apprend que la seule équipe qui compte est celle qui est composée de ses amis + Jeunesse + Dessins Animés + + 0 . 4 . + + Tout public + + + + Zig & Sharko + Opération Père Noël + Zig se déguise en Père Noël pour croquer Marina, mais Sharko n'est pas dupe et se débarrasse de l'usurpateur. La sirène oblige alors le squale à remplacer la hyène... + Jeunesse + Dessins Animés + + 2 . 32 . + + Tout public + + + + Objectif Blake! + Objectif Cerveau + Les Extracureuils utilisent un permutateur de cerveaux pour transférer le cerveau de Blake dans un poulpe et celui de Mitch dans un pingouin... + Jeunesse + Dessins Animés + + 0 . 1 . + + Tout public + + + + Bienvenue chez les Casagrandes + Le nouveau colocataire + Quand l'appartement de Vito est inondé, les enfants font de leur mieux pour l'accueillir. + Jeunesse + Dessins Animés + + 0 . 15 . + + Tout public + + + + Moka + L'amie du fond des âges + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 69 . + + Tout public + + + + Moka + La crise de l'écrasante couronne + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 70 . + + Tout public + + + + Moka + Les évadés de Xanakan + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 69 . + + Tout public + + + + Moka + Les sanglots de l'insensible rhino + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 70 . + + Tout public + + + + Moka + Le chercheur d'âme soeur + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 73 . + + Tout public + + + + Moka + La malédiction des paresseux parjures + Moka est accueilli par des paresseux qui lui sont totalement dévoués. Cerise trouve ça excessif... Et s'ils étaient victimes d'une terrible malédiction ? Difficile pour Moka d'entendre qu'il n'est pas normal d'être vénéré... + Jeunesse + Dessins Animés + + 0 . 74 . + + Tout public + + + + Moka + La chute du roi Gator + Koushka est de retour avec un plan machiavélique qui transforme le roi Gator en oeuf ! A défaut de pouvoir sauver le trône, Moka et ses amis pourront-ils sauver le père de Moka ? + Jeunesse + Dessins Animés + + 0 . 75 . + + Tout public + + + + Moka + Kushka 1er: L'élu des anciens + Moka et Cerise cherchent un moyen de ramener le roi Gator à la normale, et de chasser Koushka du trône. Mais même une prophétie des Anciens ne semble pas redonner l'espoir nécessaire à Moka. Saura-il faire face à son destin ?... + Jeunesse + Dessins Animés + + 0 . 76 . + + Tout public + + + + Moka + Kushka 1er : L'union des héros + Cerise et Moka tentent de chasser Koushka du trône en détruisant le Sceptre des Anciens. Mais sont-ils de taille à affronter le lion géant ? Il va falloir faire appel au pouvoir de l'amitié... + Jeunesse + Dessins Animés + + 0 . 77 . + + Tout public + + + + Les chansons de Cocomelon + Les grimaces + Rejoignez J.J. accompagné de sa famille et de ses amis pour apprendre l'alphabet, les chiffres, les cris des animaux et bien plus, en s'amusant avec de nouvelles chansons et comptines entraînantes. + Jeunesse + Dessins Animés + + 0 . 62 . + + Tout public + + + + Les chansons de Cocomelon + On s'amuse à la plage + Rejoignez J.J. accompagné de sa famille et de ses amis pour apprendre l'alphabet, les chiffres, les cris des animaux et bien plus, en s'amusant avec de nouvelles chansons et comptines entraînantes. + Jeunesse + Dessins Animés + + 0 . 5 . + + Tout public + + + + Les chansons de Cocomelon + Comptons les moutons + Dans CoComelon, JJ et ses frères et sœurs vivent des aventures amusantes et réalistes - qu'ils aillent à la crèche ou restent à la maison, il y a toujours quelque chose de nouveau à apprendre ou à explorer, et une inspiration sans fin pour tirer le meilleur parti des moments de jeu avec les amis et la famille. + Jeunesse + Dessins Animés + + 0 . 32 . + + Tout public + + + + Les chansons de Cocomelon + La chanson de mon corps + Dans CoComelon, JJ et ses frères et sœurs vivent des aventures amusantes et réalistes - qu'ils aillent à la crèche ou restent à la maison, il y a toujours quelque chose de nouveau à apprendre ou à explorer, et une inspiration sans fin pour tirer le meilleur parti des moments de jeu avec les amis et la famille. + Jeunesse + Dessins Animés + + 0 . 148 . + + Tout public + + + + Cry Babies, larmes magiques : la série + Goodnight Coney + Coney se prépare pour une soirée pyjama pour montrer son nouveau pyjama à ses amis. Mais alors qu'elle part en parler aux autres Cry Babies Magic Tears, elle marche sous une échelle et Sasha lui dit que cela porte malheur. La soirée pyjama va t-elle bien se passer ou les Cry Babies devront-ils aider Coney à se débarrasser de la malchance ? + Jeunesse + Dessins Animés + + 2 . 3 . + + Tout public + + + + Cry Babies, larmes magiques : la série + La plus énorme blague + L'eau de la rivière a changé de couleur... Elle est violette maintenant! Serait-ce une blague des Cry Babies Magic Tears du monde Fantasy? Si c'est le cas, les Cry Babies ne se laisseront pas faire... Attention, Cry Babies: on verra bien qui rira le dernier! + Jeunesse + Dessins Animés + + 2 . 4 . + + Tout public + + + + Idéfix et les Irréductibles + Pas de saucisses pour Padgachix + A Lutèce, Idéfix et ses amis animaux, Turbine la chienne, Baratine une chatte, le pigeon Asmatix et les autres, luttent contre les envahisseurs romains. A la Louve, un palais fortifié, le général Labienus et sa chatte Monalisa ont pour mission d'achever la transformation de la ville en cité romaine. + Jeunesse + Dessins Animés + + 0 . 48 . + + Tout public + + + + Idéfix et les Irréductibles + Des miettes et des jeux + A Lutèce, Idéfix et ses amis animaux, Turbine la chienne, Baratine une chatte, le pigeon Asmatix et les autres, luttent contre les envahisseurs romains. A la Louve, un palais fortifié, le général Labienus et sa chatte Monalisa ont pour mission d'achever la transformation de la ville en cité romaine. + Jeunesse + Dessins Animés + + 0 . 49 . + + Tout public + + + + Idéfix et les Irréductibles + Graine d'irréductible + A Lutèce, Idéfix et ses amis animaux, Turbine la chienne, Baratine une chatte, le pigeon Asmatix et les autres, luttent contre les envahisseurs romains. A la Louve, un palais fortifié, le général Labienus et sa chatte Monalisa ont pour mission d'achever la transformation de la ville en cité romaine. + Jeunesse + Dessins Animés + + 0 . 50 . + + Tout public + + + + Madagascar : la savane en délire + Les ratons squatteurs + Aucune description + Jeunesse + Dessins Animés + + 1 . 5 . + + Tout public + + + + Les Sisters + Dans la peau de ma sister + Wendy n'aurait jamais dû promettre à Marine de lui donner son ancien smartphone, puisque c'est Maxence qui en hérite finalement. Pour se venger, Marine s'empare du nouveau téléphone de Wendy, de sa chambre et même de ses copines... + Jeunesse + Dessins Animés + + 0 . 8 . + + Tout public + + + + Les Sisters + La blonde, ma sister et moi + Wendy est déprimée parce qu'elle a un gros bouton sur le front, mais Marine croit que sa sister déprime à cause d'une blonde qu'elle a vu au bras de Maxence. + Jeunesse + Dessins Animés + + 0 . 9 . + + Tout public + + + + Les Sisters + L'année sympathique + La mère de Marine et Wendy a décidé de prendre une année sabbatique. D'abord réjouies, les deux soeurs trouvent rapidement leur mère trop envahissante. + Jeunesse + Dessins Animés + + 0 . 10 . + + Tout public + + + + Les Sisters + L'échange + Marine trouve un petit mot dans son sac, qu'elle croit avoir été écrit par un namoureux mystère. Mais Marine ne veut surtout pas d'un amoureux, et Wendy va lui prêter main forte pour découvrir qui est l'auteur du message... + Jeunesse + Dessins Animés + + 0 . 11 . + + Tout public + + + + Les Sisters + Interdit aux moins de 12 ans + Complexée à cause de ses bagues aux dents et victime de moqueries, Monique refuse de sourire. Devenue Superdentdefer, elle prend sa revanche... + Jeunesse + Dessins Animés + + 0 . 12 . + + Tout public + + + + Les Sisters + L'animal de Loulou + Comme dans de nombreuses fratries, Marine et Wendy s'adorent et se détestent tout à la fois. Agée de 8 ans, la première s'intéresse de très près à la vie de sa soeur aînée, déjà adolescente. + Jeunesse + Dessins Animés + + 0 . 14 . + + Tout public + + + + Les Sisters + Cadeau connection + Comme dans de nombreuses fratries, Marine et Wendy s'adorent et se détestent tout à la fois. Agée de 8 ans, la première s'intéresse de très près à la vie de sa soeur aînée, déjà adolescente. + Jeunesse + Dessins Animés + + 0 . 15 . + + Tout public + + + + Bienvenue chez les Loud + Pour le meilleur et pour la paire + Les deux paires d'amis en lice pour le titre de meilleurs amis du collège sèment la zizanie dans le groupe. + Jeunesse + Dessins Animés + + 4 . 19 . + + Tout public + + + + Bienvenue chez les Loud + L'arche de Lana + Lana a du mal à trouver un toit pour les animaux exotiques du refuge avant leur départ. + Jeunesse + Dessins Animés + + 4 . 19 . + + Tout public + + + + Bienvenue chez les Loud + Ce qui manque à Lori + Lori fait une visite surprise à sa famille parce qu'elle pense manquer plein de choses + Jeunesse + Dessins Animés + + 4 . 20 . + + Tout public + + + + Bienvenue chez les Loud + Mon ami Mick + Après avoir enjolivé ses liens d'amitié avec Mick Swagger, Luna doit le convaincre de jouer dans son lycée. + Jeunesse + Dessins Animés + + 4 . 20 . + + Tout public + + + + Bienvenue chez les Loud + Fausse famille + Ayant honte de sa famille, Lola se fait passer pour une McBride pour impressionner sa nouvelle amie./ + Jeunesse + Dessins Animés + + 4 . 21 . + + Tout public + + + + Hôtel Transylvanie : la série + Monter sur ses grands cheveux + Médusa revient à l'Hôtel Transylvanie et Mavis veut tout faire pour que son séjour se passe bien. Dans son empressement elle balance Médusa dans le panier à linge sale... + Jeunesse + Dessins Animés + + 0 . 0 . + + Tout public + + + + Hôtel Transylvanie : la série + En avant la musique ! + Klaus a un problème inavouable et demande de l'aide à sa cousine Mavis... + Jeunesse + Dessins Animés + + 0 . 16 . + + Tout public + + + + Hôtel Transylvanie : la série + Médecin malgré lui + Le docteur Gilman s'avère être un imposteur... + Jeunesse + Dessins Animés + + 0 . 33 . + + Tout public + + + + Pokémon, les voyages + Le chemin le plus fréquenté ! + Départ pour un grand voyage à travers différentes régions du Monde Pokémon. Les personnages emblématiques accueillent et forment les nouveaux joueurs aux combats. + Série + + 24 . 46 . + + Tout public + + + + Idéfix et les Irréductibles + Fluctuat n-hic ! Mergitur + Une mystérieuse épidémie de hoquet pousse les Romains à imposer une quarantaine sur tout Lutèce. Idéfix cherche l'aide du druide Amnésix, qui vit en forêt. + Jeunesse + Dessins Animés + + 0 . 0 . + + Tout public + + + + Idéfix et les Irréductibles + Idéfix et la soupe à la romaine + Le cuisinier du palais étant malade, Anglaigus réquisitionne Poulérotix et Pomdofine pour préparer un festin pour le général Labienus. Idéfix ruine les plats. + Jeunesse + Dessins Animés + + 0 . 6 . + + Tout public + + + + Idéfix et les Irréductibles + Les Irréductibles font leur cirque + Les amis croisent un lion emprisonné en route pour le cirque où il sera l'attraction principale des nouveaux jeux romains. Idéfix tente de libérer l'animal. + Jeunesse + Dessins Animés + + 0 . 7 . + + Tout public + + + + Zig & Sharko + Comme chien et chat + En observant Marina câliner ses claquettes, Bernie a l'idée de déguiser Zig en chat : Marina et Sharko craquent aussitôt pour le mignon chaton. Seules les claquettes ont vu Zig enfiler son costume ! Et quand elles le chassent, elles se font gronder ! + Jeunesse + Dessins Animés + + 3 . 26 . + + Tout public + + + + Zig & Sharko + Essayer c'est adopter + Marina prête ses claquettes à Sharko. Le requin y prend goût et ne veut plus les lui rendre. Zig profite que la sirène soit sans ses jambes magiques pour essayer de la manger... + Jeunesse + Dessins Animés + + 3 . 27 . + + Tout public + + + + Zig & Sharko + La fuite de trop + Zig provoque des fuites d'eau à répétition dans la salle des machines. Marina veut absolument les réparer et s'acharne sans demander l'aide de Sharko, jusqu'au moment où tout le réseau casse, créant une inondation dans tout le bateau. + Jeunesse + Dessins Animés + + 3 . 29 . + + Tout public + + + + Zig & Sharko + Super vigie + Lors d'une intervention de sauvetage, Sharko trébuche. Marina, grâce à ses jambes magiques sauve la situation. Zig et Bernie se mettent alors à saboter les interventions de Sharko pour appâter la sirène. Marina prend peu à peu la place de Sharko... + Jeunesse + Dessins Animés + + 3 . 7 . + + Tout public + + + + Zig & Sharko + Un grand pas pour Marina, Volet 2 + Marina expérimente ses nouvelles jambes et découvre qu'elles sont magiques. Comme elle a beaucoup de mal à maîtriser ses gambettes, Zig en profite pour essayer de la croquer tandis que Sharko doit redoubler d'efforts pour la protéger... + Jeunesse + Dessins Animés + + 3 . 1 . + + Tout public + + + + Polly Pocket + Gourmandises et délices + Alors que Nicolas rencontre quelques difficultés avec sa nouvelle chaîne de pâtisserie en ligne, Polly et lui se rendent dans un monde invisible, niché dans un distributeur à boissons, et y découvrent une communauté d'experts chocolatiers en pleine crise ! Pour sauver leur monde de la catastrophe, les deux amis s'associent à une cheffe libre d'esprit pour élaborer une nouvelle recette délicieuse. + Jeunesse + Dessins Animés + + 4 . 5 . + + Tout public + + + + Polly Pocket + Les grenouilles gargouilles + En voyage de classe à Cosmo City, Polly et ses amis se rendent à la bibliothèque et apprennent que beaucoup de livres y ont mystérieusement disparu, y compris ceux de la série de livres d'enquête préférée de Polly, qu'elle a hâte de faire découvrir à Bella. Les quatre amis se lancent dans une aventure mini pour trouver le coupable ! + Jeunesse + Dessins Animés + + 4 . 6 . + + Tout public + + + + Barbie, une touche de magie + Un roman captivant + Chelsea fait le vœu que Elvy, une créature magique qui cherche sa licorne dans un livre, devienne réelle. Barbie et Barbie cherchent Drue Charles, une autrice qui a des indices sur l'endroit d'où peut venir Peggy. + Jeunesse + Dessins Animés + + 0 . 7 . + + Tout public + + + + L.O.L. Surprise! House of Surprises + La grosse surprise de Royal Bee + Royal Bee surprend sa BFF en achetant leur restaurant préféré pour le transformer en un vrai lieu de divertissement. Ce projet s'annonce riche en rebondissements ! + Jeunesse + Série Jeunesse + + 0 . 0 . + + Tout public + + + + BFF by Cry Babies + Big Dreams, l'émission de télé ! + Les BFF se réunissent pour relever un nouveau défi : participer à une compétition télévisée de talents appelée 'Big Dreams'. Il est temps de rejoindre une nouvelle académie et de s'entraîner pour les performances de gala ! Tout cela sous la direction des directrices de l'académie et de leurs nouvelles compagnes : Elodie et Sidney. + Jeunesse + Dessins Animés + + 1 . 0 . + + Tout public + + + + BFF by Cry Babies + Votez pour Rym ! + Dreamy emmène son animal de compagnie Rym à l'académie car elle ne veut pas qu'il soit seul à la maison, mais la directrice découvre la situation et menace de l'envoyer dans un refuge pour animaux : pas de licornes dans leur bâtiment ! Les BFF devront trouver comment faire en sorte que l'adorable licorne Rym puisse rester, et le public de l'émission jouera un rôle très important. + Jeunesse + Dessins Animés + + 1 . 1 . + + Tout public + + + + Enchantimals - la ville enchantée + Hors de l'océan et dans la ville ! Quand la Forêt Enchantée se transforme par magie en une métropole animée, les Enchantimals explorent un tout nouveau monde d'aventures, rencontrent de nouveaux amis et célèbrent leurs étincelles ! + Film + Film Animation + + + Tout public + + + + Tara Duncan + La voiture + Cal veut un nouveau moyen de transport et supplie l'Impératrice d'en faire un pour le Magic Gang, mais Magister en entend parler et élabore un nouveau plan pour kidnapper Tara et ses amis. + Jeunesse + Dessins Animés + + 0 . 29 . + + Tout public + + + + Tara Duncan + Jeune Galant + Galla est malade. Pour lui permettre de se reposer, Tara emprunte un Pégase aux écuries impériales pour jouer au Polo Céleste, mais Magister profite de la situation pour la piéger. + Jeunesse + Dessins Animés + + 0 . 28 . + + Tout public + + + + Les Sisters + Le doudou de la fortune + Wendy apprend qu'un vieux milliardaire nostalgique de son enfance est prêt à dépenser une fortune pour acheter Puduk, le lapin en peluche de Marine... + Jeunesse + Dessins Animés + + 1 . 10 . + + Tout public + + + + Les Sisters + Le gros lot + Le gros lot de la tombola de l'école est une tablette que Marine veut absolument gagner. Wendy voit là l'occasion de ne plus devoir partager la sienne... + Jeunesse + Dessins Animés + + 1 . 11 . + + Tout public + + + + Les Sisters + Ma trop bien nouvelle Sister + Wendy doit garder Marine, mais Wendy et Maxence fêtent aujourd'hui leur millième SMS, alors pas question que la pestouille vienne s'incruster dans cette journée... + Jeunesse + Dessins Animés + + 1 . 12 . + + Tout public + + + + Les Sisters + Les grandes sisters + Les Sisters en ont assez des corvées. Marine et Wendy aimeraient bien être comme les parents : ne rien faire et donner des ordres... + Jeunesse + Dessins Animés + + 1 . 13 . + + Tout public + + + + Les Sisters + La colo sans crampon + Marine découvre que Wendy va partir en colonie à la montagne avec sa copine Sammie. Au programme : kayak, piscine, équitation... + Jeunesse + Dessins Animés + + 1 . 14 . + + Tout public + + + + Les filles de Dad + L'horrible examen d'EPS + C'est dimanche et Roxane est super stressée : le lendemain elle a un contrôle sur l'histoire du basket. Si elle n'a pas envie de le rater, elle n'arrive pas pour autant à réviser. Bientôt son angoisse se propage à toute la famille... + Jeunesse + Dessins Animés + + 0 . 32 . + + Tout public + + + + Les filles de Dad + Tristement célèbre + Alors qu'Ondine se retrouve à faire la couverture d'un magazine local, elle s'imagine déjà devenir une star, de quoi faire vivre à ses soeurs un véritable enfer. Il n'y a que lorsqu'elle comprendra que toute celle célébrité, n'est que très locale, qu'elle redescendra les pieds sur terre. + Jeunesse + Dessins Animés + + 0 . 25 . + + Tout public + + + + Bienvenue chez les Loud + Élection-choc + Leni affronte le maire aux élections tout au long d'une campagne sans merci. + Jeunesse + Dessins Animés + + 4 . 9 . + + Tout public + + + + Bienvenue chez les Loud + Zach contre-attaque + Zach fait croire que des extraterrestres ont atterri à Royal Woods et sème la panique dans la ville. + Jeunesse + Dessins Animés + + 4 . 10 . + + Tout public + + + + Bienvenue chez les Loud + Championne malgré elle + Après son parcours de golf parfait, Lori devient la star de l'université. + Jeunesse + Dessins Animés + + 5 . 16 . + + Tout public + + + + Jamie a des tentacules + Jamie fait une boulette + Aucune description + Jeunesse + Dessins Animés + + 2 . 37 . + + Tout public + + + + Jamie a des tentacules + Le roi de la Galaxie + Aucune description + Jeunesse + Dessins Animés + + 2 . 31 . + + Tout public + + + + Totally Spies + La loi de la jungle + Une nature luxuriante mais agressive se met à envahir divers endroits de la planète, ce qui pousse Jerry à rappeler les filles parties en vacances afin qu'elles aillent voir ce qu'il en est... + Jeunesse + Dessins Animés + + 5 . 21 . + + Tout public + + + + Totally Spies + Télé danger + Lorsqu'un présentateur est enlevé en pleine émission, les filles sont envoyées sur le terrain. Quelqu'un veut obliger cet homme à exécuter une terrifiante cascade et à braver la mort devant toute une foule de spectateurs... + Jeunesse + Dessins Animés + + 5 . 22 . + + Tout public + + + + Wazup + Le magazine quotidien des 6-12 ans à la pointe de l'info culturelle ! 4min30 pour s'informer sur les tendances, les expositions, les sorties ciné, livres, spectacles, musique, mode... Le Wazup ?, c'est le meilleur de l'actu pour les enfants avec en prime des bonus inédits sur Gulli.fr. + Jeunesse + Mag. Jeunesse + + + Tout public + + + + Malcolm + Il n'y a pas d'heure pour Halloween + Malcolm n'est pas du tout content. Il a en effet appris qu'il ne pourrait pas participer à la grande fête de Halloween en compagnie de tous ses amis. N'y a-t-il vraiment aucune solution pour qu'il soit de la partie ?... + Série + Série Rires + + 1 . 1 . + + Tout public + + + + Malcolm + Joyeux anniversaire, Loïs! + Lois fête son anniversaire et espère recevoir un joli cadeau de ses enfants. Mais elle découvre qu'ils ont préféré dépenser l'argent destiné à son présent pour s'acheter des confiseries... + Série + Série Rires + + 1 . 2 . + + Tout public + + + + Noël en escarpins + Chaque année, la grand-mère de Noëlle lui offre une paire de chaussures lui ayant appartenu qui auraient des pouvoirs magiques. Mais depuis une mauvaise expérience passée, Noëlle n'y croit plus. Jusqu'au jour où elle rencontre le charmant John Reid, tout en étant chaussée de magnifiques escarpins roses... + Film + Film Passion + + + Tout public + + + + D'un Noël à l'autre + Pendant des années, les parents d'Olivia Anderson et ceux de Jeff passaient les vacances de Noël à Hawaï. C'est là qu'à l'adolescence, leurs deux enfants ont échangé leur premier baiser. Lorsqu'ils se revoient au même endroit vingt ans plus tard, Olivia et Jeff retrouvent leur ancienne alchimie, mais des circonstances les poussent à être séparés de nouveau... + Film + Film Passion + + + Tout public + + + + Tiny House : mini maison sur mesure + Josh et Shelly, Californie + Josh et Shelley font venir John et Zack pour leur construire une mini-maison transformable avec un espace de divertissement intérieur/extérieur. + Documentaire + Doc. Société + + 1 . 0 . + + Tout public + + + + Tiny House : mini maison sur mesure + Jenna et James, Arkansas + Un couple de l'Arkansas est sur le point d'emménager dans une maison de 80m2 alors qu'ils se préparent à se marier et à prendre la route ensemble. + Documentaire + Doc. Société + + 1 . 0 . + + Tout public + + + + Totally Spies + Le clan des diaboliques + Quelqu'un a dérobé une puce électronique capable de contrôler les esprits. Les Spies enquêtent et Clover s'inscrit dans un club à la fac. Elle se rend compte que la présidente manipule ses adhérentes... + Jeunesse + Dessins Animés + + 4 . 6 . + + Tout public + + + + Baskup + Avis de tempête + Les High 5 affrontent les Black Pirates sur leur bateau. Le terrible Sim, coach de l'équipe adverse, kidnappe l'ensemble des joueurs et impose un match en pleine mer. Une tempête se lève et de hautes vagues viennent bientôt se fracasser contre le navire chancelant... + Jeunesse + Dessins Animés + + 1 . 9 . + + Tout public + + + + Baskup + Girl power + L'équipe féminine des Amazones rencontre l'équipe des High 5. Les joueuses comptent appliquer leur stratégie habituelle contre leurs adversaire : semer la zizanie dans l'autre équipe. Ce match opposant les filles contre les garçons s'annonce délicat. Les Amazones sont redoutables... + Jeunesse + Dessins Animés + + 1 . 7 . + + Tout public + + + + Le geste écolo de Gulli + Protéger la qualité de l'eau + Gullia te donne des conseils simples et efficaces pour protéger ta planète. + Magazine + Mag. Société + + 0 . 26 . + + Tout public + + + + Baskup + Kung fu basket + Les High 5 partent en Chine affronter les Sichuan Shaolins dans leur monastère du panda. C'est l'occasion pour Mike d'en apprendre plus sur ses origines... + Jeunesse + Dessins Animés + + 1 . 8 . + + Tout public + + + + Baskup + Avis de tempête + Les High 5 affrontent les Black Pirates sur leur bateau. Le terrible Sim, coach de l'équipe adverse, kidnappe l'ensemble des joueurs et impose un match en pleine mer. Une tempête se lève et de hautes vagues viennent bientôt se fracasser contre le navire chancelant... + Jeunesse + Dessins Animés + + 1 . 9 . + + Tout public + + + + Madagascar : la savane en délire + Le Gloriasaure + Le gang prévoit de fêter l'anniversaire de Melman lors d'une exposition sur l'espace mettant en vedette un véhicule spatial cool! Mais quand Gloria trouve un appareil de jeu portable et devient obsédée par le jeu, elle rate des moments spéciaux avec ses amis et doit apprendre la valeur de vivre dans l'instant. + Jeunesse + Dessins Animés + + 0 . 5 . + + Tout public + + + + Garfield & Cie + Chahut de Noël + La douce saison des cantiques et des dindes aux marrons est de retour. Garfield, toujours à l'affût d'une occasion d'obtenir des sucreries, veut chanter devant les portes des voisins... + Jeunesse + Dessins Animés + + 0 . 37 . + + Tout public + + + + Bienvenue chez les Casagrandes + La malédiction + L'astrologue préféré de Rosa annonce qu'une malédiction pèse sur Great Lakes City. + Jeunesse + Dessins Animés + + 0 . 18 . + + Tout public + + + + Moka + Koushka et les lionnes guerrières + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 0 . + + Tout public + + + + Moka + Mouton dans la brume + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 1 . + + Tout public + + + + Moka + La baie du péril + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 2 . + + Tout public + + + + Moka + Le blizzard de l'oubli + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 3 . + + Tout public + + + + Moka + Le trésor caché de l'oasis + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 4 . + + Tout public + + + + Moka + L'inéluctable envol de l'albatros + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 5 . + + Tout public + + + + Moka + La maladie du malheur + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 6 . + + Tout public + + + + Moka + A la poursuite du fruit du héros + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 7 . + + Tout public + + + + Moka + La légendaire armure des anciens + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 8 . + + Tout public + + + + C'est bon signe + La musique + Alors qu'ils recherchent Clovis, qui s'est fait enlever, Zak et CeCe se font piéger sous la forme d'esprits, tandis que deux êtres de la mer des étoiles, Zite, occupent leurs corps. Les Zitéens sèment le chaos sur Marituga, et, pire encore, Zak et CeCe pourraient être condamnés à rester des esprits pour toujours s'ils ne chassent pas les êtres de leurs corps avant minuit... + Jeunesse + + 0 . 10 . + + Tout public + + + + Les chansons de Cocomelon + Les assouplissements du matin + Rejoignez J.J. accompagné de sa famille et de ses amis pour apprendre l'alphabet, les chiffres, les cris des animaux et bien plus, en s'amusant avec de nouvelles chansons et comptines entraînantes. + Jeunesse + Dessins Animés + + 0 . 43 . + + Tout public + + + + Les chansons de Cocomelon + Comme j'aime les montagnes + Rejoignez J.J. accompagné de sa famille et de ses amis pour apprendre l'alphabet, les chiffres, les cris des animaux et bien plus, en s'amusant avec de nouvelles chansons et comptines entraînantes. + Jeunesse + Dessins Animés + + 0 . 135 . + + Tout public + + + + Les chansons de Cocomelon + La dent de lait + Rejoignez J.J. accompagné de sa famille et de ses amis pour apprendre l'alphabet, les chiffres, les cris des animaux et bien plus, en s'amusant avec de nouvelles chansons et comptines entraînantes. + Jeunesse + Dessins Animés + + 0 . 37 . + + Tout public + + + + Les chansons de Cocomelon + Un petit nid douillet + Rejoignez J.J. accompagné de sa famille et de ses amis pour apprendre l'alphabet, les chiffres, les cris des animaux et bien plus, en s'amusant avec de nouvelles chansons et comptines entraînantes. + Jeunesse + Dessins Animés + + 0 . 44 . + + Tout public + + + + Cry Babies, larmes magiques : la série + La tiare de Tina + Ce sont les grandes vacances dans le quartier Ailé et les Cry Babies Magic Tears sont super excités ! Candy porte toujours une belle couronne pour l'occasion. Cette fois, Candy emprunte la tiare de Tina, mais ... elle la perd ! Qu'est-ce qui aurait bien pu arriver à la tiare ? Quelqu'un aurait-il pu la voler ? Cammy pourra-t-elle résoudre ce mystère ? + Jeunesse + Dessins Animés + + 2 . 5 . + + Tout public + + + + Cry Babies, larmes magiques : la série + Babynaute, le bébé de l'espace + Wandy invente l'histoire d'un bébé astronaute perdu dans l'espace. Lorsque les autres Cry Babies Magic Tears découvrent que tout ceci n'est qu'un mensonge, ils décident de donner une leçon à Wandy pour lui montrer que mentir n'est pas bien. Le plan des Cry Babies Magic Tears fonctionnera-t-il pour que Wandy apprenne cette importante leçon ? + Jeunesse + Dessins Animés + + 2 . 6 . + + Tout public + + + + Idéfix et les Irréductibles + Une Ibère dans la ville + Labienus a le coup de foudre pour Tortilla, la nièce ibère de Padgachix. Le général la ramène au palais où son fort tempérament n'est pas du goût de Monalisa. + Jeunesse + Dessins Animés + + 0 . 5 . + + Tout public + + + + Idéfix et les Irréductibles + Labienus tu m'auras pas ! + Goudurix, jeune chanteur gaulois rebelle à l'occupation romaine, est de passage à Lutèce. Les Romains veulent l'arrêter, mais les Irréductibles veillent. + Jeunesse + Dessins Animés + + 0 . 1 . + + Tout public + + + + Idéfix et les Irréductibles + La baballe de Chevrotine + Nos héros récupèrent la balle de Chevrotine, la chienne du grand chef gaulois vaincu à Lutèce. Ignorant la valeur historique de ce précieux objet, Turbine l'emmène dehors pour jouer et se la fait voler par la légion canine ! Monalisa en hérite et ne la lâche plus. Idéfix et ses copains vont devoir s'introduire dans le palais de la Louve, de nuit, pour reprendre la précieuse baballe. + Jeunesse + Dessins Animés + + 0 . 12 . + + Tout public + + + + Madagascar : la savane en délire + Alex et le mastodonte + Quand Alex se rend compte qu'il est trop petit pour grimper sur sa nouvelle "scène", il se sent trop petit pour ses rêves, jusqu'à ce qu'il entende parler d'un nouveau grand huit à Coney Island et se demande s'il peut y aller + Jeunesse + Dessins Animés + + 2 . 0 . + + Tout public + + + + Les Sisters + Crise de croissance + Wendy n'arrive plus à rentrer dans son jean préféré. Super nouvelle pour Marine qui veut récupérer le jean trop classe de sa Sister. Mais non : Wendy a décidé de faire un régime ! Marine va tout faire pour l'en empêcher... + Jeunesse + Dessins Animés + + 0 . 17 . + + Tout public + + + + Les Sisters + Populaire + Comme dans de nombreuses fratries, Marine et Wendy s'adorent et se détestent tout à la fois. Agée de 8 ans, la première s'intéresse de très près à la vie de sa soeur aînée, déjà adolescente. + Jeunesse + Dessins Animés + + 0 . 18 . + + Tout public + + + + Les Sisters + Quelle soirée ! + Comme dans de nombreuses fratries, Marine et Wendy s'adorent et se détestent tout à la fois. Agée de 8 ans, la première s'intéresse de très près à la vie de sa soeur aînée, déjà adolescente. + Jeunesse + Dessins Animés + + 0 . 19 . + + Tout public + + + + Moka + La légendaire armure des anciens + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 8 . + + Tout public + + + + Moka + L'insondable cratère des souvenirs + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 9 . + + Tout public + + + + Moka + Les glorieux guerriers de Bouckenberg + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 10 . + + Tout public + + + + Moka + L'implacable avancée de la tortue + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 11 . + + Tout public + + + + Gabby et la maison magique + L'école des chats + Dans sa boîte aux lettres super mimi, Gabby trouve une soucoupe volante qui décolle quand Sacha s'endort à l'intérieur. Gabby, Pandy et la Fée Minette doivent ramener la soucoupe au Jardin de contes de fées avant que Charlie mette la patte dessus ! + Jeunesse + Dessins Animés + + 0 . 28 . + + Tout public + + + + Les chansons de Cocomelon + À la neige + Dans CoComelon, JJ et ses frères et sœurs vivent des aventures amusantes et réalistes - qu'ils aillent à la crèche ou restent à la maison, il y a toujours quelque chose de nouveau à apprendre ou à explorer, et une inspiration sans fin pour tirer le meilleur parti des moments de jeu avec les amis et la famille. + Jeunesse + Dessins Animés + + 0 . 17 . + + Tout public + + + + Les chansons de Cocomelon + Si tôt dans la matinée + Rejoignez J.J. accompagné de sa famille et de ses amis pour apprendre l'alphabet, les chiffres, les cris des animaux et bien plus, en s'amusant avec de nouvelles chansons et comptines entraînantes. + Jeunesse + Dessins Animés + + 0 . 12 . + + Tout public + + + + Cry Babies, larmes magiques : la série + Les parfums de la forêt de Barbapapa - 1ère partie + Les Cry Babies Magic Tears partent en excursion. Avec le van de Koali, ils partent à la recherche du trésor de la tétine Jones en suivant les indices d'une carte. + Jeunesse + Dessins Animés + + 4 . 0 . + + Tout public + + + + Cry Babies, larmes magiques : la série + Les parfums de la forêt de Barbapapa - 2ème partie + Les Cry Babies Magic Tears partent en excursion. Avec le van de Koali, ils partent à la recherche du trésor de la tétine Jones en suivant les indices d'une carte. + Jeunesse + Dessins Animés + + 4 . 1 . + + Tout public + + + + VIP Pets + Challenge accepté + Les Pets les plus chics qui ont une grande passion pour ses cheveux. Rejoignez-vous avec eux pour avoir milles d'aventures ensemble! + Jeunesse + Dessins Animés + + 2 . 2 . + + Tout public + + + + VIP Pets + La séance photo la plus cool + Les Pets les plus chics qui ont une grande passion pour ses cheveux. Rejoignez-vous avec eux pour avoir milles d'aventures ensemble! + Jeunesse + Dessins Animés + + 2 . 3 . + + Tout public + + + + Wazup + Le magazine quotidien des 6-12 ans à la pointe de l'info culturelle ! 4min30 pour s'informer sur les tendances, les expositions, les sorties ciné, livres, spectacles, musique, mode... Le Wazup ?, c'est le meilleur de l'actu pour les enfants avec en prime des bonus inédits sur Gulli.fr. + Jeunesse + Mag. Jeunesse + + + Tout public + + + + Garfield & Cie + Ma vie de chien + Ichabod, un cousin éloigné, laisse en héritage une fortune colossale à Jon et son frère Donatien, mais il y a une condition : passer une nuit entière dans son manoir hanté... + Jeunesse + Dessins Animés + + 0 . 11 . + + Tout public + + + + Garfield & Cie + Nermal s'incruste + Le maître de Nermal étant parti en vacances, Jon hébèrge le chaton pendant une semaine. C'est un enfer pour Garfield, qui ne peut pas supporter ses caprices de star... + Jeunesse + Dessins Animés + + 0 . 12 . + + Tout public + + + + Garfield & Cie + Cherche Pooky désespérément + Quelqu'un a trébuché sur Odie, et le plat de lasagnes qu'il portait a atterri sur Pooky, le nounours préféré de Garfield... + Jeunesse + Dessins Animés + + 0 . 13 . + + Tout public + + + + Garfield & Cie + Qui mange qui ? + Les aventures mouvementées de Garfield, le célèbre chat plus que jamais paresseux. Cela ne l'empêche pas de vivre de folles aventures, parfois malgré lui, aux côtés de son souffre-douleur mais néanmoins fidèle ami Odie, et de son maître, ou plutôt dévoué serviteur de lasagnes, Jon. + Jeunesse + Dessins Animés + + 0 . 15 . + + Tout public + + + + Les Minijusticiers + Superdendfer + Complexée à cause de ses bagues aux dents et victime de moqueries, Monique refuse de sourire. Devenue Superdentdefer, elle prend sa revanche... + Jeunesse + Dessins Animés + + 0 . 3 . + + Tout public + + + + Les Minijusticiers + Superquilouche + Zoé louche, elle voit tout en double. Tous ses camarades se moquent d'elle, surtout le Grand Dédé. Devenue Superquilouche, elle peut multiplier tout ce qu'elle veut en deux, quatre ou six exemplaires... + Jeunesse + Dessins Animés + + 0 . 13 . + + Tout public + + + + Les Minijusticiers + Superboutonneux + A cause de ses boutons, Théo ne peut pas jouer dans le film tourné par ses camarades. Devenu Superboutonneux, il va sauver ses amis aux prises avec Gros Loup et sa bande, et décrocher ainsi le premier rôle... + Jeunesse + Dessins Animés + + 0 . 17 . + + Tout public + + + + Les Minijusticiers + Superfeuilledechou + A cause de ses oreilles décollées, Tony subit les moqueries incessantes de ses camarades. Devenu Superfeuilledechou, il peut tout entendre à des kilomètres et notamment démasquer des tricheurs tels que Gros Loup et le Grand Dédé... + Jeunesse + Dessins Animés + + 0 . 5 . + + Tout public + + + + Les Minijusticiers + Supergropif + Enrico et ses amis veulent faire la course jusqu'au sommet d'une colline escarpée. Mais, à cause de son gros nez, Enrico ne parvient pas à l'escalader et tombe. Tout le monde se moque de lui. Devenu Supergropif, il peut voler en soufflant l'air par le nez et protéger ses amis d'un violent orage... + Jeunesse + Dessins Animés + + 0 . 21 . + + Tout public + + + + Les Minijusticiers + Superfort + Parce qu'il est incapable de se défendre, Petit Louis est la risée de tous. Lorsqu'il affirme que Sacha a triché lors d'un concours de bras de fer, celui-ci lui vole ses figurines Tokémonde. Devenu Superfort, Petit Louis prend sa revanche sur Sacha... + Jeunesse + Dessins Animés + + 0 . 14 . + + Tout public + + + + Idéfix et les Irréductibles + Roucoulez jeunesse + Le Moulin de Lutèce qui produit la farine avec laquelle on fait le pain cher à Asmatix va être démantelé par les Romains ! Le vieux pigeon ne va pas les laisser faire. + Jeunesse + Dessins Animés + + 0 . 8 . + + Tout public + + + + Idéfix et les Irréductibles + Lutèce II + Anglaigus trouve un ingénieux plan de romanisation : remplacer les commerces lutéciens par des livraisons romaines à domicile. Idéfix doit mettre fin à l'hégémonie romaine qui ne tarde pas à se mettre en place, sinon Poulérotix et Pomdofine, les maîtres du bouledogue Padgachix, fermeront boutique et quitteront Lutèce pour toujours. + Jeunesse + Dessins Animés + + 0 . 9 . + + Tout public + + + + Idéfix et les Irréductibles + Le réveil de Lutèce + Chaque matin, le coq Sinfonix réveille Lutèce ainsi que Monalisa. Cette dernière fomente un plan machiavélique pour se débarrasser du coq, qui va finir dans les casseroles du cuisinier de la Louve ! Idéfix et ses amis doivent sauver Sinfonix avant qu'il ne finisse en plan à la casserole ! + Jeunesse + Dessins Animés + + 0 . 13 . + + Tout public + + + + Zig & Sharko + Moustigre + Zig demande à la fée sardine de le transformer en moustique pour faire fuir le requin et pouvoir croquer la sirène. Sauf que Marina n'est pas du genre à se laisser impressionner : elle enfile ses claquettes aux mains pour aplatir le moustique !! + Jeunesse + Dessins Animés + + 3 . 11 . + + Tout public + + + + Zig & Sharko + Zig à la baguette + Zig achète une baguette en kit à la Fée Sardine : il compte utiliser la magie pour capturer Marina ! Mais la baguette ne fonctionne pas très bien, et les sorts de Zig se retournent contre l'apprenti sorcier. + Jeunesse + Dessins Animés + + 3 . 6 . + + Tout public + + + + Zig & Sharko + Chevauchée sous les tropiques + Marina rêve de chevaucher un cheval comme dans les westerns. Pour faire plaisir à la sirène, Sharko et Zig s'allient et revêtent un costume d'équidé sans le lui dire. Marina vit une vraie vie de cowgirl, mais finit par réaliser que Sharko lui manque. + Jeunesse + Dessins Animés + + 3 . 8 . + + Tout public + + + + Zig & Sharko + Ça vole haut + Marina casse malencontreusement le fil du cerf-volant de Sharko qui s'envole. Elle le lui ramènera, promis ! Un étrange vaisseau-nuage, piloté par Zig et Bernie, lui sert alors de planche de surf du ciel et l'aide à courser le cerf-volant. + Jeunesse + Dessins Animés + + 3 . 17 . + + Tout public + + + + Zig & Sharko + Vernis mon beau vernis + Marina a les ongles sales. Bernie lui propose une manucure que Marina décline. Sharko lui, est très intéressé et se fait faire les ongles. Fan de sa manucure, Sharko a peur de l'abîmer. Une crainte que met à profit Zig pour tenter d'avaler la sirène. + Jeunesse + Dessins Animés + + 3 . 3 . + + Tout public + + + + Zig & Sharko + Les nièces débarquent + Zig est enthousiaste à l'idée d'accueillir ses cousines et de leur montrer son territoire. Mais il s'aperçoit qu'elles lorgnent la sirène avec appétit... + Jeunesse + Dessins Animés + + 1 . 31 . + + Tout public + + + + Zig & Sharko + Le roi des animaux + Des lézards géants débarquent sur la plage pour protéger Zig de toute agression. Pour eux, la hyène est au sommet de la pyramide hiérarchique des animaux et mérite le respect ! Zig est ravi mais ses protecteurs ont une autre idée derrière la tête... + Jeunesse + Dessins Animés + + 1 . 32 . + + Tout public + + + + Zig & Sharko + Les touristes + Un couple de touristes débarque en bateau sur la plage. Pour Marina, c'est un grand bonheur : enfin de nouveaux visages ! Mais les touristes se raidissent de peur en voyant un requin. Marina décide de déguiser Sharko pour le rendre tout mignon... + Jeunesse + Dessins Animés + + 1 . 34 . + + Tout public + + + + Wazup + Le magazine quotidien des 6-12 ans à la pointe de l'info culturelle ! 4min30 pour s'informer sur les tendances, les expositions, les sorties ciné, livres, spectacles, musique, mode... Le Wazup ?, c'est le meilleur de l'actu pour les enfants avec en prime des bonus inédits sur Gulli.fr. + Jeunesse + Mag. Jeunesse + + + Tout public + + + + Bob l'éponge + Chez Bob l'éponge + Bob l'éponge est une éponge de mer qui vit avec son escargot de compagnie, Gary, dans un ananas... Bob l'éponge travaille au Crabe Croustillant et adore son travail ! Il est sacrément optimiste mais se débrouille toujours pour s'attirer des ennuis... + Jeunesse + Dessins Animés + + 9 . 4 . + + Tout public + + + + Bob l'éponge + Plankton prend la porte + Bob l'éponge est une éponge de mer qui vit avec son escargot de compagnie, Gary, dans un ananas... Bob l'éponge travaille au Crabe Croustillant et adore son travail ! Il est sacrément optimiste mais se débrouille toujours pour s'attirer des ennuis... + Jeunesse + Dessins Animés + + 9 . 208 . + + Tout public + + + + Bob l'éponge + Assurance-vie + Bob l'éponge est une éponge de mer qui vit avec son escargot de compagnie, Gary, dans un ananas... Bob l'éponge est sacrément optimiste mais se débrouille toujours pour s'attirer des ennuis... + Jeunesse + Dessins Animés + + 9 . 209 . + + Tout public + + + + L'agence galactique + Le secret + Grâce à un gadget, K donne vie à de la pâte à coller qu'il prénomme Gluette. Il l'emmène avec lui en mission dans le salon de coiffure de Stacy et Lindsay. Mais avoir la responsabilité de Gluette est bien plus compliqué qu'il n'y paraît... K doit assumer ! + Jeunesse + Dessins Animés + + 0 . 4 . + + Tout public + + + + L'agence galactique + La grippe spatiale + Un virus e?lectrivore s'est introduit dans Toaster pour dévorer tous ses circuits électriques. Au bord du blackout, Toaster n'a plus aucune possibilité?? de changer sa trajectoire vers Electric City, LA ville de l'électricité. Si l'Agence Galactique ne parvient pas a? éliminer le virus a? temps, c'est la catastrophe assurée... + Jeunesse + Dessins Animés + + 0 . 5 . + + Tout public + + + + Bienvenue chez les Casagrandes + Plan de vol + Frida et Carlos font un tour en avion, mais Carl et CJ veulent aussi être de la partie. + Jeunesse + Dessins Animés + + 1 . 6 . + + Tout public + + + + Bienvenue chez les Casagrandes + Des entrées entre amis + Ronnie Anne gagne deux entrées pour Lactoland, mais elle doit choisir entre Sid et Lincoln pour l'accompagner + Jeunesse + Dessins Animés + + 1 . 8 . + + Tout public + + + + Bienvenue chez les Casagrandes + Traitement de défaveur + Le père de Ronnie Anne sort avec sa professeure. Sid aide son amie à les faire rompre. + Jeunesse + Dessins Animés + + 1 . 8 . + + Tout public + + + + Bienvenue chez les Casagrandes + Le soulèvement des machines + Ronnie-Anne et ses cousins modifient le robot de Sid pour qu'il fasse les corvées à leur place. + Jeunesse + Dessins Animés + + 1 . 9 . + + Tout public + + + + Les Sisters + SOS journal intime + Pour empêcher sa sister de le lire, Wendy cache son journal intime dans un vieux vase mis au rebut dans le garage. Mais Marine vend le vase à Maxence... + Jeunesse + Dessins Animés + + 1 . 15 . + + Tout public + + + + Les Sisters + Chat suffit + Marine trouve un petit chat dans la rue et le ramène à la maison sans en parler à ses parents. Elle parvient à convaincre sa grande sister de l'aider à le cacher... + Jeunesse + Dessins Animés + + 1 . 17 . + + Tout public + + + + Les Sisters + Y'en a là-dedans + Marine répond sans aucune erreur aux questions d'un jeu à la radio. Ignorant qu'il s'agit d'une rediffusion, Wendy est épatée par l'intelligence de sa soeur. + Jeunesse + Dessins Animés + + 1 . 18 . + + Tout public + + + + Les Sisters + Panique à bord + Alors qu'elles se disputent encore et foncent se dénoncer mutuellement à papa et maman, Marine et Wendy surprennent une conversation : les parents vont se séparer... + Jeunesse + Dessins Animés + + 1 . 19 . + + Tout public + + + + Les Sisters + La p'tite Sisteronite + Wendy n'arrête pas d'éternuer, de se gratter et même d'avoir des boutons dès que Marine s'approche d'elle. Serait-elle devenue allergique à la pestouille ?... + Jeunesse + Dessins Animés + + 1 . 20 . + + Tout public + + + + Les filles de Dad + La course de poussettes + Pour rabaisser Dad, Lapraline vante les vertus d'un sport où il excelle. Roxane pousse son père pour qu'il batte son voisin, sans succès ! + Jeunesse + Dessins Animés + + 0 . 21 . + + Tout public + + + + Les filles de Dad + Une chambre à soi + Quand Bérénice crève son ballon de basket collector, c'en est trop pour Roxane. Pourquoi c'est elle qui doit partager sa chambre et non pas Ondine ou Panda ? Les deux grandes se défendent : leurs chambres aussi ont des défauts. Les trois sœurs décident alors d'échanger de chambre. + Jeunesse + Dessins Animés + + 0 . 24 . + + Tout public + + + + Bienvenue chez les Loud + Seul en scène + Clyde est sûr d'avoir le rôle de soliste dans le club de chant, mais c'est Lincoln qui est choisi. + Jeunesse + Dessins Animés + + 4 . 10 . + + Tout public + + + + Bienvenue chez les Loud + La peur de vomir + Lynn essaie de gagner du temps alors que ses amies veulent tester le nouveau grand huit de Lactoland. Lola et Monsieur Grognard trouvent un diamant et se battent pour savoir qui va le surveiller. + Jeunesse + Dessins Animés + + 4 . 12 . + + Tout public + + + + Bienvenue chez les Loud + Vol de scoops + L'équipe de Royal News tente de découvrir comment Katherine Mulligan vole leurs scoops. + Jeunesse + Dessins Animés + + 5 . 6 . + + Tout public + + + + Jamie a des tentacules + Cervelle de Vlok en vrac + Pourchassé par les Vloks, Jamie, le prince de la planète Blarb, s'exile sur Terre, où il se lie d'amitié avec Nerdy, le fils du couple qui l'a recueilli. + Jeunesse + Dessins Animés + + 2 . 38 . + + Tout public + + + + Jamie a des tentacules + Un général en exil + Pourchassé par les Vloks, Jamie, le prince de la planète Blarb, s'exile sur Terre, où il se lie d'amitié avec Nerdy, le fils du couple qui l'a recueilli. + Jeunesse + Dessins Animés + + 2 . 32 . + + Tout public + + + + Totally Spies + Totalement Versailles + Lorsque Sam, Clover et Alex apprennent qu'elles, ainsi que toute la classe de stylisme du Professeur Plunkett, ont gagné un voyage à Versailles et sont invitées à un défilé de mode présentant les habits de Marie Antoinette + Jeunesse + Dessins Animés + + 5 . 24 . + + Tout public + + + + Totally Spies + Totalement Versailles + Aucune description + Jeunesse + Dessins Animés + + 5 . 25 . + + Tout public + + + + Wazup + Le magazine quotidien des 6-12 ans à la pointe de l'info culturelle ! 4min30 pour s'informer sur les tendances, les expositions, les sorties ciné, livres, spectacles, musique, mode... Le Wazup ?, c'est le meilleur de l'actu pour les enfants avec en prime des bonus inédits sur Gulli.fr. + Jeunesse + Mag. Jeunesse + + + Tout public + + + + Malcolm + Joyeux anniversaire, Loïs! + Lois fête son anniversaire et espère recevoir un joli cadeau de ses enfants. Mais elle découvre qu'ils ont préféré dépenser l'argent destiné à son présent pour s'acheter des confiseries... + Série + Série Rires + + 1 . 2 . + + Tout public + + + + Malcolm + Dîner en ville + Alors que les parents sortent dîner avec les Kenarban, Malcolm et ses frères se lancent dans une nouvelle série d'entourloupes. Pendant ce temps, des filles chahuteuses ont organisé une soirée à l'école de Francis... + Série + Série Rires + + 1 . 3 . + + Tout public + + + + Le grand jeu des années Club Dorothée + Aucune description + Divertissement + Jeu + + + Tout public + + + + Les Chevaliers du Zodiaque + La légende des héros renaît + A Athènes, deux adversaires, Seyar et Koros, s'affrontent au cours d'un grand duel. Le vainqueur du combat se verra remettre l'armure sacrée de Pégase... + Série + + 0 . 0 . + + Tout public + + + + Les Chevaliers du Zodiaque + Que brûlent les météores de Pégase ! + Seyar est attendu au Japon pour participer avec d'anciens camarades à un grand tournoi organisé par Saori Kido, la petite-fille du créateur de l'événement... + Série + + 0 . 1 . + + Tout public + + + + Les Chevaliers du Zodiaque + Hyôga, le Chevalier des terres glacées + Le tournoi se poursuit mais tous les participants ne sont pas encore arrivés au Coliséum. Il manque notamment Ikki, le chevalier du Phoenix... + Série + + 0 . 2 . + + Tout public + + + + Les Chevaliers du Zodiaque + Un poing et un bouclier invincibles + Après avoir vaincu ses premiers adversaires avec brio, Seyar s'apprête à présent à affronter le redoutable chevalier du Dragon, Shiryu... + Série + + 0 . 3 . + + Tout public + + + + Les Chevaliers du Zodiaque + Le Cosmos de l'amitié, une miraculeuse résurrection + Dans le cadre du grand tournoi organisé au Coliséum, les chevaliers Seyar et Shiryu s'apprêtent à se battre à mains nues pour se départager... + Série + + 0 . 4 . + + Tout public + + + + Les Chevaliers du Zodiaque + Phénix, le guerrier qui a vu l'enfer + Au Coliséum, les prochains adversaires à devoir s'affronter sont Shun, le mystérieux chevalier d'Andromède, et Jabu, le chevalier de la Licorne... + Série + + 0 . 5 . + + Tout public + + + + Totally Spies + Pizzaïolos d'enfer + Les Spies décident de prendre des vacances en Italie. Sur leur route, elles réconcilient deux frères pizzaïolos qui se font la guerre, chacun estimant être le meilleur cuisinier. Elles se rendent compte après coup qu'ils sont responsables du rapt de tous les pizzaïolos d'Italie... + Jeunesse + Dessins Animés + + 4 . 8 . + + Tout public + + + + Totally Spies + Une mode d'enfer ! + Toujours à Paris, les Spies enquêtent sur les enlèvements de plusieurs critiques de mode. Le principal suspect s'appelle Yves Mont-Blanc, un créateur... + Jeunesse + Dessins Animés + + 4 . 9 . + + Tout public + + + + Baskup + Pas de cadeau pour les High 5 + Les High 5 reçoivent les Santa Crew, une équipe qui ressemble étrangement à celle du Père Noël. Leur coach, Klaus Santa, a la manie d'offrir des cadeaux à tour de bras... + Jeunesse + Dessins Animés + + 1 . 10 . + + Tout public + + + + Baskup + Amis ou ennemis + Au moment d'affronter les Pow Wows pour le match retour, les High 5 découvrent avec stupéfaction que leur terrain est occupé par trois singes et un dresseur, qui refusent de quitter les lieux... + Jeunesse + Dessins Animés + + 1 . 11 . + + Tout public + + + + Le geste écolo de Gulli + Arrêt en voiture + Gullia te donne des conseils simples et efficaces pour protéger ta planète. + Magazine + Mag. Société + + 0 . 27 . + + Tout public + + + + Baskup + La momie + Les High 5 visitent le muséum de San Antonio, où se tient une grande exposition sur l'Egypte antique. Mike est terrorisé par la momie qui y est présentée et qui serait maudite... + Jeunesse + Dessins Animés + + 1 . 12 . + + Tout public + + + + Baskup + Le retour des Kosmos + Avant chaque rencontre, les Kosmos ont pour habitude d'offrir à leurs adversaires des pâtisseries kazakhes. Mais les gourmandises se révèlent être un cadeau empoisonné. Léo, Mike et Rudy ne sont pas en état de jouer le match... + Jeunesse + Dessins Animés + + 1 . 13 . + + Tout public + + + + Madagascar : la savane en délire + Un Halloween dent-hologie + Après avoir entendu des rumeurs effrayantes sur le nouveau résident du refuge UNE CHAUVE SOURIS VAMPIRE - Marty est déterminé à protéger ses amis du nouveau venu. Mais quand la chauve-souris l'aide à se sortir d'une situation difficile, Marty apprend qu'il vaut mieux connaître quelqu'un plutôt que de le juger sur de faux stéréotypes. + Jeunesse + Dessins Animés + + 0 . 6 . + + Tout public + + + + Taffy + Le miracle de Noël + C'est la belle nuit de Noël, et Bentley a réussi à chasser Taffy de la maison après lui avoir retiré son noeud devant Mme Millesous. Aidés de ses amis Mish et Mash, ils se font passer pour les fantômes des Noël passés, présents, et futurs, et viennent hanter la conscience de Bentley. Traumatisé, le pauvre chien part à la recherche de Taffy pour faire amende honorable et le ramener au manoir... + Jeunesse + Dessins Animés + + 0 . 9 . + + Tout public + + + + Objectif Blake! + Objectif Quenottes ! + Les Extracureuils tentent de lancer aux trousses de Blake un alien monstrueux, mais l'extraterrestre en question se révèle être un mignon bébé. Par la force des choses, Blake et Mitch deviennent ses parents adoptifs... + Jeunesse + Dessins Animés + + 0 . 19 . + + Tout public + + + + Bienvenue chez les Casagrandes + Mystère au parc + Ronnie Anne et ses amis font la lumière sur un vol mystérieux. + Jeunesse + Dessins Animés + + 1 . 1 . + + Tout public + + + + Moka + L'insondable cratère des souvenirs + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 9 . + + Tout public + + + + Moka + Les glorieux guerriers de Bouckenberg + Petit croco naïf et intrépide, Moka, le fils du roi de la savane, décide de partir explorer son vaste royaume. Cerise, une courageuse rhinocéros de la garde royale, part avec lui pour assurer sa protection. Mais à son grand désespoir, l'insatiable curiosité de Moka et son attitude impulsive les mettent sans arrêt dans des situations impossibles. + Jeunesse + Dessins Animés + + 0 . 10 . + + Tout public + + + + Les matins LCI week-end + Info, complicité, proximité et surtout un maître-mot : la bonne humeur. En compagnie de leurs chroniqueurs, Christophe Beaugrand et Anne-Chloé Bottet délivrent un cocktail idéal pour commencer la journée bien informé. Avec Nicolas Domenach pour la politique, Karima Charni pour la culture, Matthieu Karmann pour décrypter les dessous de l'actu et Catherine André à l'économie. + Magazine + Mag. Société + + + Tout public + + + + Le temps de l'info + Guillaume Cérin reçoit les spécialistes des grands enjeux internationaux, politiques, économiques et sociétaux. + Magazine + Mag. Société + + + Tout public + + + + LCI Midi week-end + Retour sur les grands faits d'actualités du jour, mis en perspective et confrontés aux divers points de vue des journalistes de la chaîne, le tout emmené par Solenn Riou. + Magazine + Mag. Société + + + Tout public + + + + Impact Positif + Sylvia Amicone présente le podcast de celles et ceux qui ont un impact positif sur la société et sur le monde, qu'ils soient entrepreneurs, citoyens, grands groupes, étudiants ou encore associations. + Magazine + Mag. Société + + + Tout public + + + + Le Club info + Trois heures pour prendre le temps de l'analyse et du débat avec une équipe composée d'experts sur des questions clés de l'actualité. Les éditorialistes de LCI apportent leur expertise dans leurs domaines de prédilection comme la politique, l'économie, les relations internationales, l'environnement ou encore les affaires judiciaires, autour de Marie-Aline Meliyi. + Magazine + Mag. Société + + + Tout public + + + + En toute franchise + Emmanuel Ostian décrypte et analyse l'actualité avec son plateau d'experts réguliers, géopoliticiens, militaires, diplomates ou grands reporters. + Magazine + Mag. Politique + + + Tout public + + + + Le 20H de Darius Rochebin + Darius Rochebin propose de grands entretiens au cœur de l'actualité, nourris de rappels historiques et des informations de toute la rédaction de LCI. L'émission s'appuie également sur des entretiens récurrents menés par des experts tels que Sylvie Bermann et Xavier Tytelman. + Magazine + Mag. Société + + + Tout public + + + + 22H Darius Rochebin avec Alexia Mayer + Darius Rochebin ouvre la discussion avec un large panel d'experts et d'éditorialistes. Le débat est rythmé par les explications et les éclairages d'Alexia Mayer sur les temps forts de l'actualité. + Magazine + Mag. Société + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Les matins LCI week-end + Info, complicité, proximité et surtout un maître-mot : la bonne humeur. En compagnie de leurs chroniqueurs, Christophe Beaugrand et Anne-Chloé Bottet délivrent un cocktail idéal pour commencer la journée bien informé. Avec Nicolas Domenach pour la politique, Karima Charni pour la culture, Matthieu Karmann pour décrypter les dessous de l'actu et Catherine André à l'économie. + Magazine + Mag. Société + + + Tout public + + + + Le temps de l'info + Guillaume Cérin reçoit les spécialistes des grands enjeux internationaux, politiques, économiques et sociétaux. + Magazine + Mag. Société + + + Tout public + + + + L'événement du dimanche + Une heure d'entretien sans concession avec les ministres, les chefs de partis, les leaders d'opinion, les grands patrons durant laquelle toutes les questions seront posées afin de prendre le temps d'aller plus loin. Marie Chantrait est notamment entourée de François Lenglet, Ruth Elkrief, François Clemenceau et Nicolas Domenach. + Magazine + Mag. Société + + + Tout public + + + + LCI Midi week-end + Retour sur les grands faits d'actualités du jour, mis en perspective et confrontés aux divers points de vue des journalistes de la chaîne, le tout emmené par Solenn Riou. + Magazine + Mag. Société + + + Tout public + + + + Le Club info + Trois heures pour prendre le temps de l'analyse et du débat avec une équipe composée d'experts sur des questions clés de l'actualité. Les éditorialistes de LCI apportent leur expertise dans leurs domaines de prédilection comme la politique, l'économie, les relations internationales, l'environnement ou encore les affaires judiciaires, autour de Marie-Aline Meliyi. + Magazine + Mag. Société + + + Tout public + + + + Le 18H de Darius Rochebin + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Le 20H de Darius Rochebin + Darius Rochebin propose de grands entretiens au cœur de l'actualité, nourris de rappels historiques et des informations de toute la rédaction de LCI. L'émission s'appuie également sur des entretiens récurrents menés par des experts tels que Sylvie Bermann et Xavier Tytelman. + Magazine + Mag. Société + + + Tout public + + + + 22H Darius Rochebin avec Alexia Mayer + Darius Rochebin ouvre la discussion avec un large panel d'experts et d'éditorialistes. Le débat est rythmé par les explications et les éclairages d'Alexia Mayer sur les temps forts de l'actualité. + Magazine + Mag. Société + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Programme + Programme indéterminé + + + Tout public + + + + Le 6-9 + Aucune description + Magazine + Information + + + Tout public + + + + L'invité d'Adrien Gindre + Du lundi au vendredi à 8h30, Adrien Gindre, chef du service politique TF1-LCI, reçoit une personnalité au coeur de l'actualité. + Magazine + Information + + + Tout public + + + + Le temps de l'info + Elizabeth Martichoux propose un rendez-vous pointu sur les questions nationales et internationales, ponctué par les encadrés pédagogiques de Jade Partouche. L'économie n'est pas en reste avec Claire Fournier, la politique avec Julien Arnaud, les sujets internationaux avec Xavier de Giacomini, sans oublier l'info du jour décortiquée par Benjamin Cruard. Paola Puerari coprésente la dernière heure de l'émission avec son ton original et son regard singulier. + Magazine + Information + + + Tout public + + + + LCI midi + Deux heures d'info et de débats pour tout savoir à la mi-journée. + Magazine + Information + + + Tout public + + + + Le Club Le Chatelier + Une équipe composée d'experts et d'éditorialistes discutent des principaux sujets d'actualité. + Magazine + Information + + + Tout public + + + + 24 Heures Pujadas + L'émission est divisée en deux parties : d'abord quatre invités récurrents selon le jour de la semaine débattent de trois sujets du jour, avec la participation tous les mardis de Caroline Fourest et de Robert Ménard, un mercredi sur deux. Au préalable sont développés les "Indispensables", un exposé fouillé des faits du jour. Ensuite place aux "Partis pris", portés par de grandes signatures telles que François Lenglet, Abnousse Shalmani et Pascal Perri, rejoints aussi par Ruth Elkrief. Chacun est invité à livrer son point de vue sur un sujet du moment. + Magazine + Information + + + Tout public + + + + Un oeil sur le monde + Dès 20h00, l'interview des grands acteurs de la scène internationale sur LCI. Les meilleurs experts de la géopolitique et des relations internationales se succèdent pour évoquer les grands enjeux internationaux. Parmi eux, Pierre Servent, Didier François, Catherine Jentile de Canecaude, Magali Barthes et le général Grégoire de Saint-Quentin. + Magazine + Information + + + Tout public + + + + Brunet, Broussouloux et compagnie + Eric Brunet et Emilie Broussouloux sont accompagnés des meilleurs éditorialistes pour décrypter et débattre des grands enjeux du moment sans concession, ni langue de bois. Parmi eux Anne Nivat, Renaud Pila, Alla Poedie, Didier François, Yves Thréard, Guillaume Roquette et Gallagher Fenwick. + Magazine + Information + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Programme + Programme indéterminé + + + Tout public + + + + Le 6-9 avec Jean-Baptiste Boursier + Aucune description + Magazine + Mag. Société + + + Tout public + + + + L'invité d'Adrien Gindre + Du lundi au vendredi à 8h30, Adrien Gindre, chef du service politique TF1-LCI, reçoit une personnalité au cœur de l'actualité. + Magazine + Mag. Société + + + Tout public + + + + Le temps de l'info + Aucune description + Magazine + Mag. Société + + + Tout public + + + + LCI Midi + Deux heures d'info et de débats pour tout savoir à la mi-journée. + Magazine + Mag. Société + + + Tout public + + + + Le Club Le Chatelier + Une équipe composée d'experts et d'éditorialistes discutent des principaux sujets d'actualité. + Magazine + Mag. Société + + + Tout public + + + + 24 Heures Pujadas + Débats, reportages et interviews permettent d'approfondir l'actualité avec au sommaire un débat, un sujet politique ou économique et enfin la science, l'international ou la société. + Magazine + Mag. Société + + + Tout public + + + + Un œil sur le monde + Dès 20h00, l'interview des grands acteurs de la scène internationale sur LCI. Les meilleurs experts de la géopolitique et des relations internationales se succèdent pour évoquer les grands enjeux internationaux. Parmi eux, Pierre Servent, Didier François, Catherine Jentile de Canecaude, Magali Barthes et le général Grégoire de Saint-Quentin. + Magazine + Mag. Société + + + Tout public + + + + Brunet, Broussouloux et compagnie + Eric Brunet et Emilie Broussouloux sont accompagnés des meilleurs éditorialistes pour décrypter et débattre des grands enjeux du moment sans concession, ni langue de bois. Parmi eux Anne Nivat, Renaud Pila, Alla Poedie, Didier François, Yves Thréard, Guillaume Roquette et Gallagher Fenwick. + Magazine + Mag. Société + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Le 6-9 avec Jean-Baptiste Boursier + Aucune description + Magazine + Mag. Société + + + Tout public + + + + L'invité d'Adrien Gindre + Du lundi au vendredi à 8h30, Adrien Gindre, chef du service politique TF1-LCI, reçoit une personnalité au cœur de l'actualité. + Magazine + Mag. Société + + + Tout public + + + + Le temps de l'info + Aucune description + Magazine + Mag. Société + + + Tout public + + + + LCI Midi + Deux heures d'info et de débats pour tout savoir à la mi-journée. + Magazine + Mag. Société + + + Tout public + + + + Le Club Le Chatelier + Une équipe composée d'experts et d'éditorialistes discutent des principaux sujets d'actualité. + Magazine + Mag. Société + + + Tout public + + + + 24 Heures Pujadas + Débats, reportages et interviews permettent d'approfondir l'actualité avec au sommaire un débat, un sujet politique ou économique et enfin la science, l'international ou la société. + Magazine + Mag. Société + + + Tout public + + + + Un œil sur le monde + Dès 20h00, l'interview des grands acteurs de la scène internationale sur LCI. Les meilleurs experts de la géopolitique et des relations internationales se succèdent pour évoquer les grands enjeux internationaux. Parmi eux, Pierre Servent, Didier François, Catherine Jentile de Canecaude, Magali Barthes et le général Grégoire de Saint-Quentin. + Magazine + Mag. Société + + + Tout public + + + + Brunet, Broussouloux et compagnie + Eric Brunet et Emilie Broussouloux sont accompagnés des meilleurs éditorialistes pour décrypter et débattre des grands enjeux du moment sans concession, ni langue de bois. Parmi eux Anne Nivat, Renaud Pila, Alla Poedie, Didier François, Yves Thréard, Guillaume Roquette et Gallagher Fenwick. + Magazine + Mag. Société + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Le 6-9 avec Jean-Baptiste Boursier + Aucune description + Magazine + Mag. Société + + + Tout public + + + + L'invité d'Adrien Gindre + Du lundi au vendredi à 8h30, Adrien Gindre, chef du service politique TF1-LCI, reçoit une personnalité au cœur de l'actualité. + Magazine + Mag. Société + + + Tout public + + + + Le temps de l'info + Aucune description + Magazine + Mag. Société + + + Tout public + + + + LCI Midi + Deux heures d'info et de débats pour tout savoir à la mi-journée. + Magazine + Mag. Société + + + Tout public + + + + Le Club Le Chatelier + Une équipe composée d'experts et d'éditorialistes discutent des principaux sujets d'actualité. + Magazine + Mag. Société + + + Tout public + + + + 24 Heures Pujadas + Débats, reportages et interviews permettent d'approfondir l'actualité avec au sommaire un débat, un sujet politique ou économique et enfin la science, l'international ou la société. + Magazine + Mag. Société + + + Tout public + + + + Un œil sur le monde + Dès 20h00, l'interview des grands acteurs de la scène internationale sur LCI. Les meilleurs experts de la géopolitique et des relations internationales se succèdent pour évoquer les grands enjeux internationaux. Parmi eux, Pierre Servent, Didier François, Catherine Jentile de Canecaude, Magali Barthes et le général Grégoire de Saint-Quentin. + Magazine + Mag. Société + + + Tout public + + + + Brunet, Broussouloux et compagnie + Eric Brunet et Emilie Broussouloux sont accompagnés des meilleurs éditorialistes pour décrypter et débattre des grands enjeux du moment sans concession, ni langue de bois. Parmi eux Anne Nivat, Renaud Pila, Alla Poedie, Didier François, Yves Thréard, Guillaume Roquette et Gallagher Fenwick. + Magazine + Mag. Société + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + L'Equipe du soir + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe du soir + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe Moteur : Top Gear + A suivre divers documentaires, reportages ou émissions concernant le monde de l'auto/moto et de tous les véhicules à moteur. + Magazine + Mag. Société + + + Tout public + + + + Avant-course + WEC championnat du monde d'endurance 8 heures de Bahreïn + Aucune description + Magazine + Mag. Sport + + 0 . 0 . + + Tout public + + + + Championnat du monde d'endurance FIA : 8 Heures de Bahreïn + Aucune description + Sport + Sport Mécanique + + + Tout public + + + + Cyclo-cross : Championnats d'Europe + Aucune description + Sport + Cyclisme + + + Tout public + + + + Championnat du monde d'endurance FIA : 8 Heures de Bahreïn + Aucune description + Sport + Sport Mécanique + + + Tout public + + + + Cyclo-cross : Championnats d'Europe + Aucune description + Sport + Cyclisme + + + Tout public + + + + Judo : Championnats d'Europe + Aucune description + Sport + Sport De Combat + + + Tout public + + + + Handball : Match amical + Aucune description + Sport + + + Tout public + + + + Avant-match Ligue 2 + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Football : Ligue 2 BKT + Aucune description + Sport + Football + + + Tout public + + + + Football : Copa Libertadores + Aucune description + Sport + Football + + + Tout public + + + + MMA : UFC Classiques + Aucune description + Magazine + Mag. Sport + + + + -16 + + + + MMA : UFC Classiques + Aucune description + Magazine + Mag. Sport + + + + -16 + + + + Sports de force + Aucune description + Sport + + + Tout public + + + + Sports de force + Aucune description + Sport + + + Tout public + + + + L'Equipe Moteur : Top Gear + A suivre divers documentaires, reportages ou émissions concernant le monde de l'auto/moto et de tous les véhicules à moteur. + Magazine + Mag. Société + + + Tout public + + + + L'Equipe Moteur : Top Gear + A suivre divers documentaires, reportages ou émissions concernant le monde de l'auto/moto et de tous les véhicules à moteur. + Magazine + Mag. Société + + + Tout public + + + + L'Equipe Moteur : Top Gear + A suivre divers documentaires, reportages ou émissions concernant le monde de l'auto/moto et de tous les véhicules à moteur. + Magazine + Mag. Société + + + Tout public + + + + L'Equipe Moteur : Top Gear + A suivre divers documentaires, reportages ou émissions concernant le monde de l'auto/moto et de tous les véhicules à moteur. + Magazine + Mag. Société + + + Tout public + + + + L'Equipe Moteur : Top Gear + A suivre divers documentaires, reportages ou émissions concernant le monde de l'auto/moto et de tous les véhicules à moteur. + Magazine + Mag. Société + + + Tout public + + + + Cyclo-cross : Championnats d'Europe + Aucune description + Sport + Cyclisme + + + Tout public + + + + Cyclo-cross : Championnats d'Europe + Aucune description + Sport + Cyclisme + + + Tout public + + + + Cyclo-cross : Championnats d'Europe + Aucune description + Sport + Cyclisme + + + Tout public + + + + Judo : Championnats d'Europe + Aucune description + Sport + Sport De Combat + + + Tout public + + + + Athlétisme : Marathon de New York + Aucune description + Sport + Athlétisme + + + Tout public + + + + Basket-ball : avant-match + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Basket-ball : Betclic Elite + Aucune description + Sport + Basketball + + + Tout public + + + + Fléchettes : Coupe du monde + Aucune description + Sport + + + Tout public + + + + L'Equipe du soir + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe du soir + La prolongation + Aucune description + Magazine + Mag. Sport + + 0 . 0 . + + Tout public + + + + L'Equipe du soir + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe du soir + La prolongation + Aucune description + Magazine + Mag. Sport + + 0 . 0 . + + Tout public + + + + L'Equipe du soir + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe du soir + La prolongation + Aucune description + Magazine + Mag. Sport + + 0 . 0 . + + Tout public + + + + L'Equipe du soir + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe du soir + 2023/2024. Un talk sportif qui pose les questions, provoque les duels et distribue les cartons. Chaque jour, journalistes, chroniqueurs et invités sur le plateau de la chaîne sportive revisitent l'actualité de tous les sports. Au menu, des débats souvent passionnés et des points de vue sans concession sur celles et ceux qui font le sport en France et à l'étranger. + Sport + Multisports + + + Tout public + + + + L'Equipe du soir + La prolongation + 2023/2024. Un talk sportif qui pose les questions, provoque les duels et distribue les cartons. Chaque jour, journalistes, chroniqueurs et invités sur le plateau de la chaîne sportive revisitent l'actualité de tous les sports. Au menu, des débats souvent passionnés et des points de vue sans concession sur celles et ceux qui font le sport en France et à l'étranger. + Sport + Multisports + + + Tout public + + + + L'Equipe du soir + 2023/2024. Un talk sportif qui pose les questions, provoque les duels et distribue les cartons. Chaque jour, journalistes, chroniqueurs et invités sur le plateau de la chaîne sportive revisitent l'actualité de tous les sports. Au menu, des débats souvent passionnés et des points de vue sans concession sur celles et ceux qui font le sport en France et à l'étranger. + Sport + Multisports + + + Tout public + + + + L'Equipe du soir + La prolongation + 2023/2024. Un talk sportif qui pose les questions, provoque les duels et distribue les cartons. Chaque jour, journalistes, chroniqueurs et invités sur le plateau de la chaîne sportive revisitent l'actualité de tous les sports. Au menu, des débats souvent passionnés et des points de vue sans concession sur celles et ceux qui font le sport en France et à l'étranger. + Sport + Multisports + + + Tout public + + + + L'Equipe du soir + 2023/2024. Un talk sportif qui pose les questions, provoque les duels et distribue les cartons. Chaque jour, journalistes, chroniqueurs et invités sur le plateau de la chaîne sportive revisitent l'actualité de tous les sports. Au menu, des débats souvent passionnés et des points de vue sans concession sur celles et ceux qui font le sport en France et à l'étranger. + Sport + Multisports + + + Tout public + + + + L'Equipe du soir + La prolongation + 2023/2024. Un talk sportif qui pose les questions, provoque les duels et distribue les cartons. Chaque jour, journalistes, chroniqueurs et invités sur le plateau de la chaîne sportive revisitent l'actualité de tous les sports. Au menu, des débats souvent passionnés et des points de vue sans concession sur celles et ceux qui font le sport en France et à l'étranger. + Sport + Multisports + + + Tout public + + + + L'Equipe Moteur : Top Gear + A suivre divers documentaires, reportages ou émissions concernant le monde de l'auto/moto et de tous les véhicules à moteur. + Loisirs + Automobilisme + + + Tout public + + + + L'Equipe Moteur : Top Gear + A suivre divers documentaires, reportages ou émissions concernant le monde de l'auto/moto et de tous les véhicules à moteur. + Loisirs + Automobilisme + + + Tout public + + + + L'Equipe Moteur : Top Gear + A suivre divers documentaires, reportages ou émissions concernant le monde de l'auto/moto et de tous les véhicules à moteur. + Loisirs + Automobilisme + + + Tout public + + + + L'Equipe Moteur : Top Gear + A suivre divers documentaires, reportages ou émissions concernant le monde de l'auto/moto et de tous les véhicules à moteur. + Loisirs + Automobilisme + + + Tout public + + + + Cyclisme sur piste : Ligue des champions + Ligue des champions 2023. 3e étape. Retransmission de la Ligue des champions de cyclisme sur piste, une compétition organisée par l'UCI. Fruit d'une collaboration entre l'Union Internationale de cyclisme et Eurosport, cette Champions League a été créée afin de réinventer le cyclisme sur piste avec cette nouvelle formule. Elle se déroule sur plusieurs manches, dans différents vélodromes, avec à la clé de chaque manche des points qui s'accumulent pour être en tête du classement en fin de saison. + Cyclisme + Cyclisme sur piste + + + Tout public + + + + L'Equipe de choc + 2023/2024. Entourés de chroniqueurs, France Pierron, Bertrand Latour, Julien Aliane et Pierre Bouby se sont donné pour mission de divertir, informer et débattre de football, beaucoup, mais des autres sports un peu aussi. + Sport + Multisports + + + Tout public + + + + L'Equipe de Greg + 2023/2024. Entouré de quatre consultants et chroniqueurs de la chaîne, Grégory Ascher mène son équipe comme un vrai chef. Avec son humour potache, l'ambiance est toujours joyeuse sur le plateau. Avec de nombreuses images, et des débats souvent enflammés, les arguments fusent et le ton peut vite monter mais Greg et son équipe d'experts de la discipline feront vite redescendre la pression pour la plus grande joie des téléspectateurs. + Sport + Multisports + + + Tout public + + + + Deux super-flics + Deux petits escrocs sans envergure, Wilbur Walsh et Matt Kirby, hantent le port de Miami. Ils cherchent à se faire embaucher par un redoutable chef de gang, le Balafré. A défaut, ils se lient d'amitié. Ensemble, ils envisagent de commettre un hold-up qui tourne à la méprise et leur vaut de signer, éberlués, leur fiche d'engagement dans les locaux de la police. Les voici revêtus de l'uniforme réglementaire et prêts à affronter les criminels de tout poil. Quelques bagarres et un bon nombre de voitures cabossées plus loin, ils ont solidement établi leur réputation d'enquêteurs musclés. Un sombre trafic de drogue les lance sur la piste du Balafré... + Film + Comédie + + + Tout public + + + + L'Equipe du soir + 2023/2024. Un talk sportif qui pose les questions, provoque les duels et distribue les cartons. Chaque jour, journalistes, chroniqueurs et invités sur le plateau de la chaîne sportive revisitent l'actualité de tous les sports. Au menu, des débats souvent passionnés et des points de vue sans concession sur celles et ceux qui font le sport en France et à l'étranger. + Sport + Multisports + + + Tout public + + + + L'Equipe du soir + 2023/2024. Un talk sportif qui pose les questions, provoque les duels et distribue les cartons. Chaque jour, journalistes, chroniqueurs et invités sur le plateau de la chaîne sportive revisitent l'actualité de tous les sports. Au menu, des débats souvent passionnés et des points de vue sans concession sur celles et ceux qui font le sport en France et à l'étranger. + Sport + Multisports + + + Tout public + + + + L'Equipe du soir + 2023/2024. Un talk sportif qui pose les questions, provoque les duels et distribue les cartons. Chaque jour, journalistes, chroniqueurs et invités sur le plateau de la chaîne sportive revisitent l'actualité de tous les sports. Au menu, des débats souvent passionnés et des points de vue sans concession sur celles et ceux qui font le sport en France et à l'étranger. + Sport + Multisports + + + Tout public + + + + L'Equipe du soir + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe du soir + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe du soir + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe Moteur : Top Gear + A suivre divers documentaires, reportages ou émissions concernant le monde de l'auto/moto et de tous les véhicules à moteur. + Magazine + Mag. Société + + + Tout public + + + + L'Equipe Moteur : Top Gear + A suivre divers documentaires, reportages ou émissions concernant le monde de l'auto/moto et de tous les véhicules à moteur. + Magazine + Mag. Société + + + Tout public + + + + L'Equipe Moteur : Top Gear + A suivre divers documentaires, reportages ou émissions concernant le monde de l'auto/moto et de tous les véhicules à moteur. + Magazine + Mag. Société + + + Tout public + + + + L'Equipe Moteur : Top Gear + A suivre divers documentaires, reportages ou émissions concernant le monde de l'auto/moto et de tous les véhicules à moteur. + Magazine + Mag. Société + + + Tout public + + + + L'Equipe de choc + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe de Greg + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe de choc + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe de Greg + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Sans limite + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe du soir + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe du soir + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe du soir + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe du soir + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe du soir + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe du soir + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe Moteur : Top Gear + A suivre divers documentaires, reportages ou émissions concernant le monde de l'auto/moto et de tous les véhicules à moteur. + Magazine + Mag. Société + + + Tout public + + + + L'Equipe Moteur : Top Gear + A suivre divers documentaires, reportages ou émissions concernant le monde de l'auto/moto et de tous les véhicules à moteur. + Magazine + Mag. Société + + + Tout public + + + + L'Equipe Moteur : Top Gear + A suivre divers documentaires, reportages ou émissions concernant le monde de l'auto/moto et de tous les véhicules à moteur. + Magazine + Mag. Société + + + Tout public + + + + L'Equipe Moteur : Top Gear + A suivre divers documentaires, reportages ou émissions concernant le monde de l'auto/moto et de tous les véhicules à moteur. + Magazine + Mag. Société + + + Tout public + + + + L'Equipe de choc + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe de Greg + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe de choc + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe de Greg + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Sécurité rapprochée + Matt Weston, agent de la CIA, doit surveiller une maison à Cape Town, en Afrique du Sud, destinée à servir de planque à Tobin Frost, un ancien agent double de la CIA. Capturé après dix ans de cavale, Frost est désormais sous sa protection. Bientôt, un commando d'hommes armés arrive pour l'éliminer... + Film + Film Suspense + + + Tout public + + + + L'Equipe du soir + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe du soir + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe du soir + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe du soir + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe du soir + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe du soir + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe Moteur : Top Gear + A suivre divers documentaires, reportages ou émissions concernant le monde de l'auto/moto et de tous les véhicules à moteur. + Magazine + Mag. Société + + + Tout public + + + + L'Equipe Moteur : Top Gear + A suivre divers documentaires, reportages ou émissions concernant le monde de l'auto/moto et de tous les véhicules à moteur. + Magazine + Mag. Société + + + Tout public + + + + L'Equipe Moteur : Top Gear + A suivre divers documentaires, reportages ou émissions concernant le monde de l'auto/moto et de tous les véhicules à moteur. + Magazine + Mag. Société + + + Tout public + + + + L'Equipe Moteur : Top Gear + A suivre divers documentaires, reportages ou émissions concernant le monde de l'auto/moto et de tous les véhicules à moteur. + Magazine + Mag. Société + + + Tout public + + + + L'Equipe actu + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe de choc + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe de Greg + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Basket-ball : Qualifications à l'EuroBasket féminin 2025 + Aucune description + Sport + Basketball + + + Tout public + + + + Basket-ball : après-match + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe du soir + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe du soir + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + L'Equipe du soir + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Séance à l'Assemblée nationale + Budget de la sécu : Débat sur les motions de censure + Les temps forts à l'Assemblée nationale. Abonnez-vous à la chaîne YouTube LCP : https://bit.ly/2XGSAH5 Suivez-nous sur les réseaux ! Twitter : https://twitter.com/lcp Facebook : https://fr-fr.facebook.com/LCP Instagram : https://www.instagram.com/lcp_an/ Retrouvez nous sur notre site : https://www.lcp.fr/ #LCP #AssembléeNationale + Magazine + Mag. Politique + + 0 . 17 . + + Tout public + + + + Séance à l'Assemblée nationale + Budget de la sécu : Débat sur les motions de censure + Les temps forts à l'Assemblée nationale. Abonnez-vous à la chaîne YouTube LCP : https://bit.ly/2XGSAH5 Suivez-nous sur les réseaux ! Twitter : https://twitter.com/lcp Facebook : https://fr-fr.facebook.com/LCP Instagram : https://www.instagram.com/lcp_an/ Retrouvez nous sur notre site : https://www.lcp.fr/ #LCP #AssembléeNationale + Magazine + Mag. Politique + + 0 . 17 . + + Tout public + + + + Extra Local + Marie Brette reçoit un invité pour faire le point sur l'actualité des régions en compagnie de trois éditorialistes de la presse quotidienne régionale. + Magazine + Mag. Politique + + + Tout public + + + + Histoires de timbres + Les campagnes nationales + Depuis le 1er janvier 1849, la Poste a émis plus de 4 600 timbres. À partir d'archives, de tableaux et de gravures, cette collection remonte le temps avec ces petites vignettes. + Documentaire + Doc. Découverte + + 0 . 0 . + + Tout public + + + + Elémentaire + Deux fois par mois, Denis Olivennes revient en compagnie de deux invités sur un fait marquant de l'actualité pour donner aux téléspectateurs des clés pour comprendre. + Info-Météo + Information + + + Tout public + + + + Ici l'Europe + Le magazine hebdomadaire de Public Sénat consacré à l'actualité institutionnelle européenne, et ses rapports avec les institutions de la Ve République. + Magazine + Mag. Politique + + + Tout public + + + + Parlement hebdo + Parlement Hebdo, c'est le tour d'horizon complet d'une semaine au Parlement. Chaque vendredi, Kathia Gilder (LCP-Assemblée nationale) et Alexandre Poussart (Public Sénat) passent en revue les événements et les discussions - en séance ou en commission - qui ont animé les débats. Une mise en perspective analysée en plateau par une personnalité politique. + Magazine + Mag. Politique + + + Tout public + + + + L'habit ne fait pas le politique + Najat Vallaud-Belkacem remonte les bretelles + Aucune description + Magazine + Mag. Politique + + 0 . 11 . + + Tout public + + + + Etat de santé + Endométriose : les femmes prennent la parole + Aussi aiguës qu'elles soient, les douleurs de règles ont longtemps été banalisées par les hommes, qui ne les subissent pas. Longtemps perçues comme anodines et négligeables par les médecins mais aussi par les patientes elles-mêmes qui les minimisaient, ces douleurs sont l'un des principaux symptômes de l'endométriose. + Magazine + Mag. Société + + 0 . 4 . + + Tout public + + + + Le journal de la Défense + En rythme et en musique ! + Les armées comptent 11 formations musicales avec des professionnels choisis pour la plupart d'entre eux, après avoir étudié plusieurs années dans les plus prestigieux conservatoires. Une sélection exigeante, mais nécessaire, qui permet aux armées de dénicher les talents qui deviendront les ambassadeurs de l'institution. + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Le journal de la Défense + Formation sécurité civile + Des spécialistes des interventions d'urgence et de la gestion de crise sont mobilisés sur les catastrophes : les sapeurs-sauveteurs de la sécurité civile. + Magazine + Mag. Société + + 0 . 1 . + + Tout public + + + + Histoires de timbres + L'histoire de la poste + Depuis le 1er janvier 1849, la Poste a émis plus de 4 600 timbres. À partir d'archives, de tableaux et de gravures, cette collection remonte le temps avec ces petites vignettes. + Documentaire + Doc. Découverte + + 0 . 0 . + + Tout public + + + + La faute à l'Europe + Faut-il pénaliser les clients des prostitués en Europe ? + Aucune description + Magazine + Mag. Politique + + 0 . 4 . + + Tout public + + + + Conspirations ? + Les chemtrails + Aucune description + Magazine + Mag. Découverte + + 0 . 9 . + + Tout public + + + + Le grand journal des territoires + Ce JT est réalisé en collaboration avec l'ensemble des chaînes de télévisions locales (le syndicat Locales Tv qui regroupe 50 chaines TNT réparties dans toute la France) et les rédactions des grands groupes de la Presse Quotidienne Régionale. Présenté par Cyril Viguier \" Le Grand JT des Territoires \" mobilise 200 journalistes en proximité qui remontent des reportages de tous les territoires. + Magazine + Mag. Société + + + Tout public + + + + L'habit ne fait pas le politique + Jack Lang casse les codes + Le 17 avril 1985, Jack Lang, le Ministre de la Culture, répond à une question sur les travaux du Grand Louvre. Il porte une veste à col Mao qu'il avait commandé à Thierry Mugler, après avoir été impressionné par les tenues officielles lors d'un voyage 1 en Inde. Jack Lang est à l'origine avec Pierre Bergé de la création de l'Institut français de la Mode fondé en 1986. + Magazine + Mag. Politique + + 0 . 3 . + + Tout public + + + + Vers des transports durables + La ville sans voiture, c'est l'un des défis à relever dans l'aménagement de l'espace urbain. De Barcelone à Copenhague, tour d'horizon des approches pionnières. + Documentaire + Doc. Société + + + Tout public + + + + DébatDoc + Quelle mobilité dans les villes de demain ? + Afin de lutter contre la congestion routière et la pollution, des villes comme Copenhague, Paris ou Singapour réinventent la mobilité de leurs habitants. + Magazine + Débat + + 0 . 45 . + + Tout public + + + + Hors séance + Les fresques de la bibliothèque de l'Assemblée nationale + Aucune description + Magazine + Mag. Politique + + 0 . 1 . + + Tout public + + + + Politiques, à table ! + Aucune description + Magazine + Mag. Politique + + + Tout public + + + + Tous en scène pour le handicap + Un programme court consacré au handicap et au regard posé sur le handicap dans la société contemporaine. + Magazine + Mag. Service + + + Tout public + + + + LCP le mag + Voyage dans la France des déserts médicaux + Un tiers des Français vit dans un désert médical et partout sur le territoire, le manque de généralistes est criant. Certains maires rivalisent d'inventivité pour attirer, quoi qu'il en coûte, des praticiens. Eloise Benoist, une généraliste de 34 ans, cherche un lieu de vie pour s'installer avec son conjoint et ses deux enfants, et ouvrir son cabinet. + Magazine + Mag. Politique + + 0 . 0 . + + Tout public + + + + Conspirations ? + Le grand remplacement + Aucune description + Magazine + Mag. Découverte + + 0 . 7 . + + Tout public + + + + Rembob'INA + René Goscinny : la création dans tous ses états + Aucune description + Magazine + Mag. Société + + 0 . 3 . + + Tout public + + + + Histoires de timbres + Les hommes oubliés + Depuis le 1er janvier 1849, la Poste a émis plus de 4 600 timbres. À partir d'archives, de tableaux et de gravures, cette collection remonte le temps avec ces petites vignettes. + Documentaire + Doc. Découverte + + 0 . 0 . + + Tout public + + + + Circo + Louis Boyard, un député engagé pour les étudiants + C'est une partie essentielle du travail parlementaire qui est de nouveau mise en lumière à travers ce reportage où les journalistes de la rédaction suivent un député dans sa circonscription pour expliquer son travail sur le terrain. C'est aussi un voyage sur un territoire, avec ses enjeux locaux, et une rencontre avec ses habitants. Suivez votre député sur LCP ! + Magazine + Mag. Politique + + 0 . 2 . + + Tout public + + + + Circo + Inaki Echaniz, un député en croisade pour le logement + Député socialiste des Pyrénées-Atlantiques, Inaki Echaniz alerte depuis des mois sur la crise du logement. Avec l'essor d'Airbnb et des autres plateformes de locations en ligne, les propriétaires préfèrent louer ou vendre aux touristes plutôt qu'aux habitants à l'année. Pour inverser la tendance, le député basco-béarnais propose de changer la loi. + Magazine + Mag. Politique + + 0 . 1 . + + Tout public + + + + Ici l'Europe + Le magazine hebdomadaire de Public Sénat consacré à l'actualité institutionnelle européenne, et ses rapports avec les institutions de la Ve République. + Magazine + Mag. Politique + + + Tout public + + + + Extra Local + Marie Brette reçoit un invité pour faire le point sur l'actualité des régions en compagnie de trois éditorialistes de la presse quotidienne régionale. + Magazine + Mag. Politique + + + Tout public + + + + Pourvu que ça dure + Plastique : la bombe à retardement + Sécheresses extrêmes, nappes phréatiques au plus bas et robinets à secs : l'été 2022 marque plus que jamais un tournant. Comment a-t-on pu en arriver là et faudra-t-il désormais s'habituer à manquer d'eau ? Réponses avec l'hydrologue Emma Haziza Et puis co + Magazine + Mag. Économie + + 0 . 1 . + + Tout public + + + + Sénat en action + Chaque mois, les journalistes de Public Sénat, au cœur de l'actualité parlementaire, s'immergent dans les coulisses du Sénat pour montrer le travail des 348 élus de la chambre haute, l'élaboration d'une loi et son application sur le terrain. Auditions, commissions d'enquête, projet de loi, Sénat en action est une plongée inédite au cœur du Sénat. + Info-Météo + Information + + + Tout public + + + + Et maintenant ? + Un débat de près d'une heure sur l'actualité politique et les dossiers en cours de discussion au Sénat. + Magazine + Mag. Politique + + + Tout public + + + + Forces Spéciales, la guerre autrement + Une poignée d'hommes issus de l'armée appartiennent au petit cercle des Forces spéciales. Leur caractéristique : penser la guerre autrement. + Documentaire + Doc. Histoire + + + Tout public + + + + Proviseure : le rôle principal + Une directrice d'école maternelle, une proviseure de lycée technique et une principale d'un collège général racontent leur travail quotidien. + Documentaire + Doc. Société + + + Tout public + + + + Un monde en doc + Interroger la société, ses fractures, ses espoirs, c'est l'objectif de l'émission de débats "Un monde en doc". Rebecca Fitoussi anime la discussion avec des spécialistes pendant une demi-heure pour débattre et mettre en perspective une oeuvre diffusée juste avant. + Magazine + Débat + + + Tout public + + + + Tous en scène + Lieux culturels peu accessibles Ariane Brodier + Dans chaque épisode de ce programme court, une célébrité évoque un problème social. + Documentaire + Doc. Découverte + + 0 . 0 . + + Tout public + + + + Harcèlement scolaire, les Indiens contre-attaquent + Emmanuelle Piquet, thérapeute spécialiste de la question du harcèlement et de la souffrance à l'école, a élaboré pour les jeunes une stratégie de défense. + Documentaire + Doc. Société + + + Tout public + + + + Tous en scène + Difficultés d'accès à l'emploi Arnaud Demanche + Dans chaque épisode de ce programme court, une célébrité évoque un problème social. + Documentaire + + 0 . 0 . + + Tout public + + + + Grandir malgré tout + Dans un centre spécialisé, à Flavigny-sur-Moselle, près de Nancy, l'équipe médicale s'occupe d'adolescents dont la vie a basculé après un accident. + Documentaire + Doc. Société + + + Tout public + + + + Au bonheur des livres + Chaque semaine, Denis Olivennes reçoit deux auteurs : romanciers, essayistes ou, biographes pour parler de leur travail. Egalement au programme, une séquence dédiée aux lecteurs et une sélection d'ouvrages à ne pas manquer. + Magazine + Mag. Culture + + + Tout public + + + + Elémentaire + Deux fois par mois, Denis Olivennes revient en compagnie de deux invités sur un fait marquant de l'actualité pour donner aux téléspectateurs des clés pour comprendre. + Info-Météo + Information + + + Tout public + + + + Sénat en action + Chaque mois, les journalistes de Public Sénat, au cœur de l'actualité parlementaire, s'immergent dans les coulisses du Sénat pour montrer le travail des 348 élus de la chambre haute, l'élaboration d'une loi et son application sur le terrain. Auditions, commissions d'enquête, projet de loi, Sénat en action est une plongée inédite au cœur du Sénat. + Info-Météo + Information + + + Tout public + + + + Proviseure : le rôle principal + Une directrice d'école maternelle, une proviseure de lycée technique et une principale d'un collège général racontent leur travail quotidien. + Documentaire + Doc. Société + + + Tout public + + + + Un monde en doc + Interroger la société, ses fractures, ses espoirs, c'est l'objectif de l'émission de débats "Un monde en doc". Rebecca Fitoussi anime la discussion avec des spécialistes pendant une demi-heure pour débattre et mettre en perspective une oeuvre diffusée juste avant. + Magazine + Débat + + + Tout public + + + + Au bonheur des livres + Chaque semaine, Denis Olivennes reçoit deux auteurs : romanciers, essayistes ou, biographes pour parler de leur travail. Egalement au programme, une séquence dédiée aux lecteurs et une sélection d'ouvrages à ne pas manquer. + Magazine + Mag. Culture + + + Tout public + + + + Un monde, un regard + Francis Huster + Passé par les institutions les plus prestigieuses, le Cours Florent, le Conservatoire national ou la Comédie-Française, le comédien, réalisateur et metteur en scène Francis Huster ne s'est refusé aucun rôle, aucun projet, aucune opportunité. Seul le plaisir de jouer, de réaliser, de mettre en scène, lui importe. + Magazine + Mag. Politique + + 0 . 5 . + + Tout public + + + + Extra Local + Marie Brette reçoit un invité pour faire le point sur l'actualité des régions en compagnie de trois éditorialistes de la presse quotidienne régionale. + Magazine + Mag. Politique + + + Tout public + + + + Au bonheur des livres + Chaque semaine, Denis Olivennes reçoit deux auteurs : romanciers, essayistes ou, biographes pour parler de leur travail. Egalement au programme, une séquence dédiée aux lecteurs et une sélection d'ouvrages à ne pas manquer. + Magazine + Mag. Culture + + + Tout public + + + + Manger, c'est voter + En Seine-et-Marne avec Pierre Cuypers + A la découverte des les spécialités gastronomiques d'un terroir de France en compagnie d'un parlementaire élu de cette région. + Magazine + Mag. Découverte + + 5 . 2 . + + Tout public + + + + L'autre police - La force de la proximité + Pour sortir de la spirale violences policières / violences envers la police, certains proposent un autre modèle de police : la police de proximité. + Documentaire + Doc. Société + + + Tout public + + + + Le grand journal des territoires + Ce JT est réalisé en collaboration avec l'ensemble des chaînes de télévisions locales (le syndicat Locales Tv qui regroupe 50 chaines TNT réparties dans toute la France) et les rédactions des grands groupes de la Presse Quotidienne Régionale. Présenté par Cyril Viguier \" Le Grand JT des Territoires \" mobilise 200 journalistes en proximité qui remontent des reportages de tous les territoires. + Magazine + Mag. Société + + + Tout public + + + + La faute à l'Europe + Faut-il pénaliser les clients des prostitués en Europe ? + Aucune description + Magazine + Mag. Politique + + 0 . 4 . + + Tout public + + + + Au bonheur des livres + Chaque semaine, Denis Olivennes reçoit deux auteurs : romanciers, essayistes ou, biographes pour parler de leur travail. Egalement au programme, une séquence dédiée aux lecteurs et une sélection d'ouvrages à ne pas manquer. + Magazine + Mag. Culture + + + Tout public + + + + Harcèlement scolaire, les Indiens contre-attaquent + Emmanuelle Piquet, thérapeute spécialiste de la question du harcèlement et de la souffrance à l'école, a élaboré pour les jeunes une stratégie de défense. + Documentaire + Doc. Société + + + Tout public + + + + Proviseure : le rôle principal + Une directrice d'école maternelle, une proviseure de lycée technique et une principale d'un collège général racontent leur travail quotidien. + Documentaire + Doc. Société + + + Tout public + + + + Un monde en doc + Interroger la société, ses fractures, ses espoirs, c'est l'objectif de l'émission de débats "Un monde en doc". Rebecca Fitoussi anime la discussion avec des spécialistes pendant une demi-heure pour débattre et mettre en perspective une oeuvre diffusée juste avant. + Magazine + Débat + + + Tout public + + + + Et maintenant ? + Un débat de près d'une heure sur l'actualité politique et les dossiers en cours de discussion au Sénat. + Magazine + Mag. Politique + + + Tout public + + + + Sénat en action + Chaque mois, les journalistes de Public Sénat, au cœur de l'actualité parlementaire, s'immergent dans les coulisses du Sénat pour montrer le travail des 348 élus de la chambre haute, l'élaboration d'une loi et son application sur le terrain. Auditions, commissions d'enquête, projet de loi, Sénat en action est une plongée inédite au cœur du Sénat. + Info-Météo + Information + + + Tout public + + + + France-Allemagne, un couple en thérapie + Soixante ans après la signature du traité de l'Élysée, qui ouvrait une ère inédite de coopération entre les deux pays, comment le tandem franco-allemand se porte-t-il ? + Documentaire + Doc. Société + + + Tout public + + + + Tous en scène + Manque d'aide à domicile Regis Mailhot + Aucune description + Documentaire + + 0 . 0 . + + Tout public + + + + Un monde, un regard + Francis Huster + Passé par les institutions les plus prestigieuses, le Cours Florent, le Conservatoire national ou la Comédie-Française, le comédien, réalisateur et metteur en scène Francis Huster ne s'est refusé aucun rôle, aucun projet, aucune opportunité. Seul le plaisir de jouer, de réaliser, de mettre en scène, lui importe. + Magazine + Mag. Politique + + 0 . 5 . + + Tout public + + + + Politiques, à table ! + Aucune description + Magazine + Mag. Politique + + + Tout public + + + + Tous en scène pour le handicap + Un programme court consacré au handicap et au regard posé sur le handicap dans la société contemporaine. + Magazine + Mag. Service + + + Tout public + + + + Si la France savait + Alain Juppé + L'ancien Premier ministre Alain Juppé raconte avec une grande liberté de ton les principales étapes d'un parcours qui l'a conduit au coeur de Matignon. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Si la France savait + Laurent Fabius + Portrait de Laurent Fabius, ancien Premier ministre de Mitterrand et ministre des Affaires étrangères de Hollande, souvent pris dans la tourmente de l'Histoire. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Si la France savait + Jean-Pierre Raffarin + Premier ministre de Jacques Chirac en 2002, Jean-Pierre Raffarin démissionne en 2005 suite au référendum sur le traité constitutionnel européen. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Si la France savait + Edith Cresson + Retour sur le parcours politique d'Edîth Cresson, première femme Premier ministre de France, en poste sous la présidence de François Mitterrand. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + L'abécédaire + Les commissions permanentes à l'Assemblée + Les commissions permanentes à l'Assemblée + Magazine + Mag. Éducation + + 0 . 0 . + + Tout public + + + + Le journal de la Défense + Rencontre avec les experts de la DGA + Créée à l'initiative du président de la République, le général de Gaulle, en 1961, la Direction générale de l'armement (DGA) permet à l'armée française de bénéficier de technologies de pointe. + Magazine + Mag. Société + + 0 . 8 . + + Tout public + + + + Le journal de la Défense + Escadrilles Air Jeunesse : prendre son envol + Quatre adolescents intègrent les Escadrilles Air Jeunesse, un dispositif de l'armée de l'Air où se mêlent activités aéronautiques, culturelles et sportives. + Magazine + Mag. Société + + 0 . 11 . + + Tout public + + + + Histoires de timbres + La nation représentée + Depuis le 1er janvier 1849, la Poste a émis plus de 4 600 timbres. À partir d'archives, de tableaux et de gravures, cette collection remonte le temps avec ces petites vignettes. + Documentaire + Doc. Découverte + + 0 . 0 . + + Tout public + + + + Etat de santé + La santé numérique tiendra-t-elle ses promesses ? + La e-santé est en pleine explosion, boostée par la crise sanitaire. Sa croissance économique est estimée à 160 0.000000e+00ntre 2019 et 2023. Avec son développement, de belles avancées sont promises aux patients et aux soignants : une meilleure prise en charge des maladies chroniques, une réponse aux déserts médicaux, une meilleure gestion hospitalière ou encore des diagnostics plus fiables. + Magazine + Mag. Société + + 0 . 5 . + + Tout public + + + + L'abécédaire + Les modes de scrutin dans l'hémicycle + Les modes de scrutin dans l'hémicycle + Magazine + Mag. Éducation + + 0 . 0 . + + Tout public + + + + Rembob'INA + La Cloche tibétaine, une série télé d'aventure avec Coluche (1974) + Pour réaliser "La Cloche tibétaine", Michel Wyn s'est inspiré de la véritable histoire de "La Croisière jaune", une expédition organisée par André Citroën en 1931 en Asie centrale. Au programme de ce "Rembob'Ina" : le cinquième épisode de la série, considéré comme le plus spectaculaire. "Le toit du monde" retrace le premier franchissement automobile de l'Himalaya. + Magazine + Mag. Société + + 0 . 2 . + + Tout public + + + + L'habit ne fait pas le politique + Sibeth Ndiaye, haut les couleurs ! + Aucune description + Magazine + Mag. Politique + + 0 . 0 . + + Tout public + + + + Les grands entretiens de Mazarine Mitterrand Pingeot + La philosophie du vivant + Thierry Hoquet déploie sa pensée pour interroger notre condition humaine et ses contradictions. Penser le cyborg bouscule notre vision du monde traditionnellement fondée sur des dualismes fondamentaux, comme celles de la nature et de la technique ou du masculin et du féminin. Cette figure philosophique hybride interroge. + Magazine + + 0 . 12 . + + Tout public + + + + Ces idées qui gouvernent le monde + La laïcité menacée + Présenté par Emile MALET L'actualité dévoile chaque jour un monde qui s'agite, se déchire, s'attire, se confronte... Loin de l'enchevêtrement de ces images en continu, Emile Malet invite à regarder l'actualité autrement... avec le concours d'esprits éclectiques, sans ornières idéologiques pour mieux appréhender ces idées qui gouvernent le monde. + Magazine + Mag. Politique + + 0 . 4 . + + Tout public + + + + L'habit ne fait pas le politique + Martin Nadaud, un député en blouse + A l'aube de la proclamation de la IIème République, Martin Nadaud, un maçon de la Creuse, est élu député à l'Assemblée nationale. En bon représentant des couches populaires, il se présente dans l'hémicycle en blouse de travail. Les députés conservateurs crient à la provocation. + Magazine + Mag. Politique + + 0 . 2 . + + Tout public + + + + Les derniers tirailleurs + Soldats loyaux à la France, les tirailleurs sénégalais et guinéens connaissant un triste sort lors de la chute de l'empire colonial : retour sur une histoire tragique. + Documentaire + Doc. Histoire + + + Tout public + + + + DébatDoc + Les tirailleurs sénégalais aux oubliettes de l'Histoire ? + Aucune description + Magazine + Débat + + 0 . 6 . + + Tout public + + + + Conspirations ? + Les signes cachés du pouvoir + Aucune description + Magazine + Mag. Découverte + + 0 . 4 . + + Tout public + + + + Proviseure : le rôle principal + Une directrice d'école maternelle, une proviseure de lycée technique et une principale d'un collège général racontent leur travail quotidien. + Documentaire + Doc. Société + + + Tout public + + + + Un monde en doc + Interroger la société, ses fractures, ses espoirs, c'est l'objectif de l'émission de débats "Un monde en doc". Rebecca Fitoussi anime la discussion avec des spécialistes pendant une demi-heure pour débattre et mettre en perspective une oeuvre diffusée juste avant. + Magazine + Débat + + + Tout public + + + + Au bonheur des livres + Chaque semaine, Denis Olivennes reçoit deux auteurs : romanciers, essayistes ou, biographes pour parler de leur travail. Egalement au programme, une séquence dédiée aux lecteurs et une sélection d'ouvrages à ne pas manquer. + Magazine + Mag. Culture + + + Tout public + + + + Un monde, un regard + Francis Huster + Passé par les institutions les plus prestigieuses, le Cours Florent, le Conservatoire national ou la Comédie-Française, le comédien, réalisateur et metteur en scène Francis Huster ne s'est refusé aucun rôle, aucun projet, aucune opportunité. Seul le plaisir de jouer, de réaliser, de mettre en scène, lui importe. + Magazine + Mag. Politique + + 0 . 5 . + + Tout public + + + + Extra Local + Marie Brette reçoit un invité pour faire le point sur l'actualité des régions en compagnie de trois éditorialistes de la presse quotidienne régionale. + Magazine + Mag. Politique + + + Tout public + + + + Extra Local + Marie Brette reçoit un invité pour faire le point sur l'actualité des régions en compagnie de trois éditorialistes de la presse quotidienne régionale. + Information + Politique + + + Tout public + + + + Au bonheur des livres + Chaque semaine, Denis Olivennes reçoit deux auteurs : romanciers, essayistes ou, biographes pour parler de leur travail. Egalement au programme, une séquence dédiée aux lecteurs et une sélection d'ouvrages à ne pas manquer. + Magazine + Culture + + + Tout public + + + + Manger, c'est voter + En Seine-et-Marne avec Pierre Cuypers + A la découverte des les spécialités gastronomiques d'un terroir de France en compagnie d'un parlementaire élu de cette région. + Magazine + Découvertes + + 5 . 2 . + + Tout public + + + + L'autre police - La force de la proximité + Pour sortir de la spirale violences policières / violences envers la police, certains proposent un autre modèle de police : la police de proximité. En Belgique, on la pratique depuis 20 ans. En France, elle n'a existé que quelques années, mais on recommence à l'évoquer comme une solution pour une police plus consensuelle. Tour d'horizon de l'idée de police de proximité au passé, au présent et au futur. + Documentaire + Société + + + Tout public + + + + Bonjour chez vous ! + Un rendez-vous quotidien avec l'actualité qui concerne tous les Français. Au programme : des débats, des reportages en région et un regard sur l'actualité politique et parlementaire. + Information + Politique + + 0 . 40 . + + Tout public + + + + Tous en scène + Difficultés d'accès aux soins Anne Roumanoff + Dans chaque épisode de ce programme court, une célébrité évoque un problème social. + Documentaire + Société + + + Tout public + + + + Séance à l'Assemblée nationale + Les temps forts à l'Assemblée nationale. + Magazine + Débat parlementaire + + 0 . 0 . + + Tout public + + + + Audition à l'Assemblée nationale + Budget 2024 : audition de Philippe Vigier sur les crédits de l'outre-mer + C'est l'un des ministères \" gagnants \" du projet de loi de finances pour 2024, en débat au Parlement jusqu'à fin décembre. \" Cette année encore, comme c'est le cas depuis 2017, les crédits du ministère des Outre-mer sont en hausse. Cela montre une volonté forte d'agir pour les Outre-mer et leurs habitants \", s'est réjoui Philippe Vigier lors de La présentation de son ministère, en progression de 7 0.000000e+00n 2024 (autorisations d'engagement). Le gouvernement met la priorité sur la vie quotidienne des ultramarins, le logement social, le développement économique et la création d'emplois. La crise de l'eau, devenue alarmante à Mayotte, et qui sévit aussi en Guadeloupe, en raison d'une sécheresse historique, sera aussi au centre de l'attention. Retrouvez cette audition, et les questions des députés, en intégralité sur LCP Assemblée nationale. + Magazine + Débat parlementaire + + 0 . 16 . + + Tout public + + + + La politique et moi + Pourquoi s'engage-t-on en politique ? Comment tombe-t-on dans le grand chaudron de l'Assemblée ? Chaque jour, Clément Méric, dans un entretien en tête à tête de 13 minutes, interroge un parlementaire sur les personnalités, les évènements - historiques ou personnels - qui l'ont conduit à choisir la vie publique. Car on ne naît pas politique, on le devient ! + Information + Politique + + 0 . 8 . + + Tout public + + + + La politique et moi + Maud Gatel, députée Démocrate de Paris, a d'abord travaillé dans l'ombre de Marielle de Sarnez, avant de conseiller des grands patrons sur leurs stratégies de communication. Elle se consacre désormais à 100% à la politique. + Information + Politique + + 0 . 9 . + + Tout public + + + + Histoires de timbres + Les états généraux + En 1971, la poste célèbre l'ouverture des états généraux, le 5 mai 1789. C'est la monarchie française qui à partir du XIVe siècle a instauré cette tradition. + Documentaire + Découvertes + + 1 . 0 . + + Tout public + + + + 100% Sénat + 100% Sénat + Le magazine entièrement consacré à l'actualité de la "chambre haute" de la Ve République française. + Magazine + Information + + 0 . 37 . + + Tout public + + + + Bonjour chez vous ! + Un rendez-vous quotidien avec l'actualité qui concerne tous les Français. Au programme : des débats, des reportages en région et un regard sur l'actualité politique et parlementaire. + Information + Politique + + 0 . 40 . + + Tout public + + + + LCP le mag + Voyage dans la France des déserts médicaux + Un tiers des Français vit dans un désert médical et partout sur le territoire, le manque de généralistes est criant. Certains maires rivalisent d'inventivité pour attirer, quoi qu'il en coûte, des praticiens. Eloise Benoist, une généraliste de 34 ans, cherche un lieu de vie pour s'installer avec son conjoint et ses deux enfants, et ouvrir son cabinet. + Information + Politique + + 0 . 0 . + + Tout public + + + + LCP le mag + Violences urbaines : la vie d'après + Le 27 juin 2023, la mort à Nanterre du jeune Nahel lors d'un contrôle de Police a provoqué un embrasement général. Pendant six nuits consécutives, des épisodes de violence urbaine très intenses se sont succédé dans plus de 500 communes françaises. Au-delà des grandes métropoles, les émeutes ont touché des villes de taille beaucoup plus modeste, qui n'avaient jamais fait face à ce type d'événement, comme Montargis, sous-préfecture du Loiret, et Vaulx-en-Velin, commune de l'agglomération lyonnaise. + Information + Politique + + 0 . 1 . + + Tout public + + + + L'habit ne fait pas le politique + Martin Nadaud, un député en blouse + A l'aube de la proclamation de la IIème République, Martin Nadaud, un maçon de la Creuse, est élu député à l'Assemblée nationale. En bon représentant des couches populaires, il se présente dans l'hémicycle en blouse de travail. Les députés conservateurs crient à la provocation. + Information + Politique + + 0 . 2 . + + Tout public + + + + L'habit ne fait pas le politique + Najat Vallaud-Belkacem remonte les bretelles + En 2015, Najat Vallaud-Belkacem a été la victime du sexisme de Jean-Paul Brighelli. Délégué national à l'instruction publique de "Debout la France" de Nicolas Dupont-Aignan, ce dernier voit dans le soutien-gorge de la ministre un \" écran de fumée pour faire oublier la faiblesse de ses propos sur l'éducation \". Il se trouve que Mr Brighelli avait en fait confondu un débardeur en dentelles à une bretelle de soutien-gorge ! + Information + Politique + + 0 . 11 . + + Tout public + + + + Circo + Louis Boyard, un député engagé pour les étudiants + C'est une partie essentielle du travail parlementaire qui est de nouveau mise en lumière à travers ce reportage où les journalistes de la rédaction suivent un député dans sa circonscription pour expliquer son travail sur le terrain. C'est aussi un voyage sur un territoire, avec ses enjeux locaux, et une rencontre avec ses habitants. Suivez votre député sur LCP ! + Information + Politique + + 0 . 2 . + + Tout public + + + + Circo + Sur le littoral basque et dans la Vallée d'Aspe, deux zones très touristiques, les habitants n'arrivent plus à se loger à cause du manque de biens disponibles et des prix exorbitants. Député socialiste des Pyrénées-Atlantiques, Inaki Echaniz alerte depuis des mois sur la crise du logement. Avec l'essor d'Airbnb et des autres plateformes de locations en ligne, les propriétaires préfèrent louer ou vendre aux touristes plutôt qu'aux habitants à l'année. Dans certaines communes, il y a plus de 50 0e résidences secondaires. Pour inverser la tendance, le député basco-béarnais propose de changer la loi. C'est une partie essentielle du travail parlementaire qui est de nouveau mise en lumière à travers ce reportage où les journalistes de la rédaction suivent un député dans sa circonscription pour expliquer son travail sur le terrain. + Information + Politique + + 0 . 1 . + + Tout public + + + + L'abécédaire + Motion de censure + La motion de censure + Société + Education + + + Tout public + + + + Le grand journal des territoires + Ce JT est réalisé en collaboration avec l'ensemble des chaînes de télévisions locales (le syndicat Locales Tv qui regroupe 50 chaines TNT réparties dans toute la France) et les rédactions des grands groupes de la Presse Quotidienne Régionale. Présenté par Cyril Viguier \" Le Grand JT des Territoires \" mobilise 200 journalistes en proximité qui remontent des reportages de tous les territoires. + Magazine + Information + + 0 . 7 . + + Tout public + + + + Histoires de timbres + La semeuse + En 1903, le ministère des Postes décide d'utiliser la semeuse sur le timbre alors qu'elle figure depuis déjà six ans sur la monnaie. + Documentaire + Découvertes + + + Tout public + + + + 100% Sénat + Le magazine entièrement consacré à l'actualité de la "chambre haute" de la Ve République française. + Magazine + Information + + 0 . 38 . + + Tout public + + + + Sens public + Les sujets d'actualité et les grandes questions qui animent la société sont débattus par les invités de Thomas Hugues. Experts, personnalités politiques ou observateurs, ils analysent les problématiques et confrontent leurs idées afin d'offrir à chacun les clés pour comprendre les enjeux du moment. + Information + Politique + + 0 . 36 . + + Tout public + + + + Politiques, à table ! + Un déjeuner partagé avec une personnalité politique ! Loin des codes classiques de l'interview, LCP-Assemblée nationale a concocté un nouveau programme aux petits oignons pour croquer la politique autrement. Avec la complicité de Jean-Pierre Montanay, Brigitte Boucher mettra son grain de sel dans cette cuisine pour passer le politique sur le gril. \" Cuisine et Confidences \"... Quel rapport l'invité politique entretient-il avec la gastronomie ? Sa gourmandise, ses talents ? Les orientations culinaires de ce boulimique de la politique ? Mais aussi \" Les pieds dans le plat \"... pour aborder les sujets d'actualité. Et enfin \" La face cachée de nos assiettes \"... ou comment le contenu de nos assiettes en dit long sur notre société face à ses nouveaux enjeux. + Information + Politique + + 0 . 5 . + + Tout public + + + + Les sentinelles de l'oubli + Les monuments aux morts de 1914-1918 forment un musée invisible qui a fini par se confondre avec les paysages de France. Une sculpture arrête le regard : ici un soldat monte à l'assaut, ailleurs une jeune femme pleure dans un champ devant un casque. C'est le projet artistique le plus ample peut-être depuis les cathédrales, un grand chantier qui s'étend des années 20 aux années 30. + Documentaire + Société + + + Tout public + + + + DébatDoc + Les sentinelles de l'oubli + Les monuments aux morts font partie intégrante de l'histoire de la Première guerre mondiale. Dans les années 1920 c'est à travers ces monuments qu'on tente de se souvenir, des milliers de monuments apparaissent alors en France. Aujourd'hui ils font partie de notre paysage, pourtant si nous nous y intéressons de plus près ils nous révèlent les horreurs de la guerre, les traumatismes et nous mettent face à la thématique de la mort. A quoi servent ces monuments et quel rapport avec nous avec? Comment nous racontent-ils l'histoire d'une boucherie, celle de la Première guerre mondiale? Pour en débattre, Jérôme Prieur, documentariste et réalisateur du documentaire et Annette Becker, historienne et professeur émérite à l'Université de Paris-Nanterre. LCP fait la part belle à l'écriture documentaire en prime time. + Magazine + Débat + + 0 . 14 . + + Tout public + + + + Histoires de timbres + Charte européenne de l'eau + Depuis le 1er janvier 1849, la Poste a émis plus de 4 600 timbres. À partir d'archives audiovisuelles, de tableaux et de gravures, cette collection remonte le temps avec ces petites vignettes, comme porte d'entrée pour raconter l'histoire de France. + Documentaire + Découvertes + + + Tout public + + + + Sens public + Les sujets d'actualité et les grandes questions qui animent la société sont débattus par les invités de Thomas Hugues. Experts, personnalités politiques ou observateurs, ils analysent les problématiques et confrontent leurs idées afin d'offrir à chacun les clés pour comprendre les enjeux du moment. + Information + Politique + + 0 . 36 . + + Tout public + + + + Tous en scène pour le handicap + Un programme court consacré au handicap et au regard posé sur le handicap dans la société contemporaine. + Magazine + Services + + 0 . 10 . + + Tout public + + + + Politiques, à table ! + Un déjeuner partagé avec une personnalité politique ! Loin des codes classiques de l'interview, LCP-Assemblée nationale a concocté un nouveau programme aux petits oignons pour croquer la politique autrement. Avec la complicité de Jean-Pierre Montanay, Brigitte Boucher mettra son grain de sel dans cette cuisine pour passer le politique sur le gril. \" Cuisine et Confidences \"... Quel rapport l'invité politique entretient-il avec la gastronomie ? Sa gourmandise, ses talents ? Les orientations culinaires de ce boulimique de la politique ? Mais aussi \" Les pieds dans le plat \"... pour aborder les sujets d'actualité. Et enfin \" La face cachée de nos assiettes \"... ou comment le contenu de nos assiettes en dit long sur notre société face à ses nouveaux enjeux. + Information + Politique + + 0 . 5 . + + Tout public + + + + Le corps du dictateur + Le corps du dictateur + Un dictateur ne meurt jamais comme tout le monde. Son corps devient alors d'enjeux de pouvoir qui conduisent à des situations tout à fait particulières. Des cas de figure multiples qui démontrent l'incroyable -et nocif- pouvoir que recèle toujours l'enveloppe charnelle des tyrans, même morts. Film historique en même temps que réflexion sur la manipulation des peuples, "Le corps du dictateur" aborde l'Histoire au travers d'histoires qui pourraient parfois sembler sorties de la tête de scénaristes de fiction. Car la postérité des dictateurs, qu'ils aient été fascistes, communistes ou nationalistes, donne toujours lieu à des événements extrêmes. + Documentaire + Histoire + + + Tout public + + + + DébatDoc + Dictateurs : quelle vie après la mort ? + Un dictateur ne meurt jamais comme tout le monde et ne meurt jamais vraiment. Son corps devient alors l'objet d'enjeux de pouvoir qui conduisent à des situations tout à fait particulières. Des cas de figure multiples démontrent l'incroyable pouvoir que recèle toujours l'enveloppe charnelle des tyrans. La postérité des dictateurs, qu'ils aient été fascistes, communistes ou nationalistes, donne toujours lieu à des événements extrêmes. Célébration ou relégation, glorification ou occultation, vénération ou disparition. Que faire du cadavre d'un dictateur ? Comment gérer un tel héritage empoisonné ? + Magazine + Débat + + 0 . 40 . + + Tout public + + + + Histoires de timbres + Le coq + Depuis le 1er janvier 1849, la Poste a émis plus de 4 600 timbres. À partir d'archives audiovisuelles, de tableaux et de gravures, cette collection remonte le temps avec ces petites vignettes, comme porte d'entrée pour raconter l'histoire de France. + Documentaire + Découvertes + + + Tout public + + + + Audition à l'Assemblée nationale + Budget 2024 : audition de Philippe Vigier sur les crédits de l'outre-mer + C'est l'un des ministères \" gagnants \" du projet de loi de finances pour 2024, en débat au Parlement jusqu'à fin décembre. \" Cette année encore, comme c'est le cas depuis 2017, les crédits du ministère des Outre-mer sont en hausse. Cela montre une volonté forte d'agir pour les Outre-mer et leurs habitants \", s'est réjoui Philippe Vigier lors de La présentation de son ministère, en progression de 7 0.000000e+00n 2024 (autorisations d'engagement). Le gouvernement met la priorité sur la vie quotidienne des ultramarins, le logement social, le développement économique et la création d'emplois. La crise de l'eau, devenue alarmante à Mayotte, et qui sévit aussi en Guadeloupe, en raison d'une sécheresse historique, sera aussi au centre de l'attention. Retrouvez cette audition, et les questions des députés, en intégralité sur LCP Assemblée nationale. + Magazine + Débat parlementaire + + 0 . 16 . + + Tout public + + + + Séance à l'Assemblée nationale + Les temps forts à l'Assemblée nationale. + Magazine + Débat parlementaire + + 0 . 0 . + + Tout public + + + + Audition à l'Assemblée nationale + Travail, emploi, formation : audition d'Olivier Dussopt sur le budget 2024 + Le traditionnel marathon budgétaire d'automne se poursuit. Olivier Dussopt, ministre du Travail, du Plein emploi et de l'Insertion, est auditionné par la commission des Affaires sociales de l'Assemblée nationale sur les crédits alloués par le projet de loi de finances pour 2024 à son ministère. Ce budget, en hausse de 1,7 milliards d'euros, doit notamment contribuer à la mise en oeuvre de France Travail, qui a pour nouvelle mission d'accompagner les bénéficiaires du RSA, au soutien de la formation des demandeurs d'emploi ainsi qu'au développement de l'apprentissage. Le gouvernement table sur une amélioration de la situation sur le marché du travail, espérant réduire les dépenses liées aux politiques de l'emploi. Une audition à voir ou revoir sur LCP Assemblée nationale. + Magazine + Débat parlementaire + + 0 . 15 . + + Tout public + + + + Séance à l'Assemblée nationale + Les temps forts à l'Assemblée nationale. + Magazine + Débat parlementaire + + 0 . 0 . + + Tout public + + + + L'habit ne fait pas le politique + Patrice Carvalho, un député en bleu de travail + Le 12 juin 1997, Patrice Carvalho, ouvrier et député de l'Oise, se rend à l'Assemblée nationale... en bleu de travail. A son arrivée, il est attendue par une nuée de journalistes et des ouvriers de l'Assemblée. Les huissiers tentent de lui barrer le passage mais Patrice Carvalho arrivera bien à rentrer dans sa tenue d'ouvrier. + Information + Politique + + 0 . 6 . + + Tout public + + + + L'habit ne fait pas le politique + Cécile Duflot, en robe de combat + Le 17 juillet 2012, Cécile Duflot répond à une question d'un député sur le projet de Grand Paris, dans une robe années 50, très cintrée à la taille. Dès sa prise de parole, les députés de l'opposition la huent et elle est victime de réflexions sexistes. Pour eux, cette liberté vestimentaire féminine n'est sans doute pas encore acceptable. + Information + Politique + + 0 . 9 . + + Tout public + + + + 100% Sénat + Le magazine entièrement consacré à l'actualité de la "chambre haute" de la Ve République française. + Magazine + Information + + 0 . 37 . + + Tout public + + + + Sens public + Les sujets d'actualité et les grandes questions qui animent la société sont débattus par les invités de Thomas Hugues. Experts, personnalités politiques ou observateurs, ils analysent les problématiques et confrontent leurs idées afin d'offrir à chacun les clés pour comprendre les enjeux du moment. + Magazine + Mag. Politique + + + Tout public + + + + Bonjour chez vous ! + Un rendez-vous quotidien avec l'actualité qui concerne tous les Français. Au programme : des débats, des reportages en région et un regard sur l'actualité politique et parlementaire. + Magazine + Mag. Politique + + + Tout public + + + + Tous en scène + Regard sur le handicap Ben + Dans chaque épisode de ce programme court, une célébrité évoque un problème social. + Documentaire + + 0 . 0 . + + Tout public + + + + Séance à l'Assemblée nationale + Les temps forts à l'Assemblée nationale. + Magazine + Mag. Politique + + + Tout public + + + + La politique et moi + Eva Sas + Eva Sas, députée écologiste de Paris, est devenue verte sans être écologiste à ses débuts. Elle se décrit comme à la fois utopiste et réaliste, un cocktail étonnant dans le paysage politique. + Magazine + Mag. Politique + + 0 . 12 . + + Tout public + + + + La politique et moi + Aucune description + Magazine + Mag. Politique + + + Tout public + + + + L'abécédaire + Loi constitutionnelle + La loi constitutionnelle + Magazine + Mag. Éducation + + 0 . 0 . + + Tout public + + + + 100% Sénat + Le magazine entièrement consacré à l'actualité de la "chambre haute" de la Ve République française. + Info-Météo + Information + + + Tout public + + + + Bonjour chez vous ! + Un rendez-vous quotidien avec l'actualité qui concerne tous les Français. Au programme : des débats, des reportages en région et un regard sur l'actualité politique et parlementaire. + Magazine + Mag. Politique + + + Tout public + + + + Questions au gouvernement + Aucune description + Magazine + Mag. Politique + + + Tout public + + + + Questions au gouvernement + Les députés interrogent les ministres sur l'actualité en exclusivité sur LCP-Assemblée nationale. + Magazine + Mag. Politique + + + Tout public + + + + Questions au gouvernement + Tous les mardis, de 17h à 17h30, LCP-Assemblée nationale prolonge la séance des Questions au Gouvernement en invitant des députés pour analyser les échanges intervenus dans l'hémicycle. + Magazine + Mag. Politique + + + Tout public + + + + Circo + Louis Boyard, un député engagé pour les étudiants + C'est une partie essentielle du travail parlementaire qui est de nouveau mise en lumière à travers ce reportage où les journalistes de la rédaction suivent un député dans sa circonscription pour expliquer son travail sur le terrain. C'est aussi un voyage sur un territoire, avec ses enjeux locaux, et une rencontre avec ses habitants. Suivez votre député sur LCP ! + Magazine + Mag. Politique + + 0 . 2 . + + Tout public + + + + Circo + Inaki Echaniz, un député en croisade pour le logement + Député socialiste des Pyrénées-Atlantiques, Inaki Echaniz alerte depuis des mois sur la crise du logement. Avec l'essor d'Airbnb et des autres plateformes de locations en ligne, les propriétaires préfèrent louer ou vendre aux touristes plutôt qu'aux habitants à l'année. Pour inverser la tendance, le député basco-béarnais propose de changer la loi. + Magazine + Mag. Politique + + 0 . 1 . + + Tout public + + + + Sens public + Les sujets d'actualité et les grandes questions qui animent la société sont débattus par les invités de Thomas Hugues. Experts, personnalités politiques ou observateurs, ils analysent les problématiques et confrontent leurs idées afin d'offrir à chacun les clés pour comprendre les enjeux du moment. + Magazine + Mag. Politique + + + Tout public + + + + Ça vous regarde + Ça vous regarde, votre rendez-vous quotidien qui prend le pouls de la société : un débat, animé par Myriam Encaoua, en prise directe avec l'actualité politique, parlementaire, sociale ou économique. Un carrefour d'opinions où ministres, députés, élus locaux, experts et personnalités de la société civile font entendre leur voix. + Info-Météo + Information + + + Tout public + + + + Kamala Harris, une ambition américaine + Récit de l'irrésistible ascension d'une femme politique charismatique, qui a su "briser les barrières" pour devenir la première vice-présidente des Etats-Unis. + Documentaire + Doc. Société + + + Tout public + + + + DébatDoc + LCP fait la part belle à l'écriture documentaire en prime time. Ce rendez-vous offre une approche différenciée des réalités politiques, économiques, sociales ou mondiales....autant de thématiques qui invitent à prolonger le documentaire à l'occasion d'un débat animé par Jean-Pierre Gratien, en présence de parlementaires, acteurs de notre société et experts. + Magazine + Débat + + + Tout public + + + + Sens public + Les sujets d'actualité et les grandes questions qui animent la société sont débattus par les invités de Thomas Hugues. Experts, personnalités politiques ou observateurs, ils analysent les problématiques et confrontent leurs idées afin d'offrir à chacun les clés pour comprendre les enjeux du moment. + Magazine + Mag. Politique + + + Tout public + + + + Tous en scène pour le handicap + Aucune description + Magazine + Mag. Service + + + Tout public + + + + Ça vous regarde + Ça vous regarde, votre rendez-vous quotidien qui prend le pouls de la société : un débat, animé par Myriam Encaoua, en prise directe avec l'actualité politique, parlementaire, sociale ou économique. Un carrefour d'opinions où ministres, députés, élus locaux, experts et personnalités de la société civile font entendre leur voix. + Info-Météo + Information + + + Tout public + + + + Le roman de Lula + En 2022, Luiz Inácio "Lula" da Silva était réélu Président du Brésil. Une revanche pour un homme qui a subi un procès politique qui lui a valu de la prison. + Documentaire + Doc. Société + + + Tout public + + + + DébatDoc + Brésil : retour gagnant pour Lula ? + Aucune description + Magazine + Débat + + 0 . 13 . + + Tout public + + + + Questions au gouvernement + Les députés interrogent les ministres sur l'actualité en exclusivité sur LCP-Assemblée nationale. + Magazine + Mag. Politique + + + Tout public + + + + Circo + Louis Boyard, un député engagé pour les étudiants + C'est une partie essentielle du travail parlementaire qui est de nouveau mise en lumière à travers ce reportage où les journalistes de la rédaction suivent un député dans sa circonscription pour expliquer son travail sur le terrain. C'est aussi un voyage sur un territoire, avec ses enjeux locaux, et une rencontre avec ses habitants. Suivez votre député sur LCP ! + Magazine + Mag. Politique + + 0 . 2 . + + Tout public + + + + Circo + Inaki Echaniz, un député en croisade pour le logement + Député socialiste des Pyrénées-Atlantiques, Inaki Echaniz alerte depuis des mois sur la crise du logement. Avec l'essor d'Airbnb et des autres plateformes de locations en ligne, les propriétaires préfèrent louer ou vendre aux touristes plutôt qu'aux habitants à l'année. Pour inverser la tendance, le député basco-béarnais propose de changer la loi. + Magazine + Mag. Politique + + 0 . 1 . + + Tout public + + + + 100% Sénat + Le magazine entièrement consacré à l'actualité de la "chambre haute" de la Ve République française. + Info-Météo + Information + + + Tout public + + + + Sens public + Les sujets d'actualité et les grandes questions qui animent la société sont débattus par les invités de Thomas Hugues. Experts, personnalités politiques ou observateurs, ils analysent les problématiques et confrontent leurs idées afin d'offrir à chacun les clés pour comprendre les enjeux du moment. + Magazine + Mag. Politique + + + Tout public + + + + Bonjour chez vous ! + Un rendez-vous quotidien avec l'actualité qui concerne tous les Français. Au programme : des débats, des reportages en région et un regard sur l'actualité politique et parlementaire. + Magazine + Mag. Politique + + + Tout public + + + + Tous en scène + Une vie sans imprévu Sam Karmann + Aucune description + Documentaire + + 0 . 0 . + + Tout public + + + + Séance à l'Assemblée nationale + Les temps forts à l'Assemblée nationale. + Magazine + Mag. Politique + + + Tout public + + + + Circo + C'est une partie essentielle du travail parlementaire qui est de nouveau mise en lumière à travers ce reportage où les journalistes de la rédaction suivent un député dans sa circonscription pour expliquer son travail sur le terrain. C'est aussi un voyage sur un territoire, avec ses enjeux locaux, et une rencontre avec ses habitants. Suivez votre député sur LCP ! + Magazine + Mag. Politique + + + Tout public + + + + Circo + Inaki Echaniz, un député en croisade pour le logement + Député socialiste des Pyrénées-Atlantiques, Inaki Echaniz alerte depuis des mois sur la crise du logement. Avec l'essor d'Airbnb et des autres plateformes de locations en ligne, les propriétaires préfèrent louer ou vendre aux touristes plutôt qu'aux habitants à l'année. Pour inverser la tendance, le député basco-béarnais propose de changer la loi. + Magazine + Mag. Politique + + 0 . 1 . + + Tout public + + + + 100% Sénat + 100% Sénat + Le magazine entièrement consacré à l'actualité de la "chambre haute" de la Ve République française. + Info-Météo + Information + + 0 . 40 . + + Tout public + + + + Bonjour chez vous ! + Un rendez-vous quotidien avec l'actualité qui concerne tous les Français. Au programme : des débats, des reportages en région et un regard sur l'actualité politique et parlementaire. + Magazine + Mag. Politique + + + Tout public + + + + Questions au gouvernement + L'émission se déroule en deux étapes : une interview politique précède la diffusion des questions des groupes parlementaires et des réponses des membres du gouvernement. + Magazine + Mag. Politique + + + Tout public + + + + 100% Sénat + Le magazine entièrement consacré à l'actualité de la "chambre haute" de la Ve République française. + Info-Météo + Information + + + Tout public + + + + 100% Sénat + Le magazine entièrement consacré à l'actualité de la "chambre haute" de la Ve République française. + Info-Météo + Information + + + Tout public + + + + Sens public + Les sujets d'actualité et les grandes questions qui animent la société sont débattus par les invités de Thomas Hugues. Experts, personnalités politiques ou observateurs, ils analysent les problématiques et confrontent leurs idées afin d'offrir à chacun les clés pour comprendre les enjeux du moment. + Magazine + Mag. Politique + + + Tout public + + + + Ça vous regarde + Ça vous regarde, votre rendez-vous quotidien qui prend le pouls de la société : un débat, animé par Myriam Encaoua, en prise directe avec l'actualité politique, parlementaire, sociale ou économique. Un carrefour d'opinions où ministres, députés, élus locaux, experts et personnalités de la société civile font entendre leur voix. + Info-Météo + Information + + + Tout public + + + + Les réseaux de la colère + Ce documentaire interroge le cocktail toxique qui nourrit la haine sur les réseaux sociaux, à travers des portraits croisés d'usagers et des archives. + Documentaire + Doc. Société + + + Tout public + + + + DébatDoc + Laïcité : les enseignants en première ligne + Aucune description + Magazine + Débat + + 0 . 35 . + + Tout public + + + + Sens public + Les sujets d'actualité et les grandes questions qui animent la société sont débattus par les invités de Thomas Hugues. Experts, personnalités politiques ou observateurs, ils analysent les problématiques et confrontent leurs idées afin d'offrir à chacun les clés pour comprendre les enjeux du moment. + Magazine + Mag. Politique + + + Tout public + + + + Tous en scène pour le handicap + Aucune description + Magazine + Mag. Service + + + Tout public + + + + Ça vous regarde + Ça vous regarde, votre rendez-vous quotidien qui prend le pouls de la société : un débat, animé par Myriam Encaoua, en prise directe avec l'actualité politique, parlementaire, sociale ou économique. Un carrefour d'opinions où ministres, députés, élus locaux, experts et personnalités de la société civile font entendre leur voix. + Info-Météo + Information + + + Tout public + + + + Vers des transports durables + La ville sans voiture, c'est l'un des défis à relever dans l'aménagement de l'espace urbain. De Barcelone à Copenhague, tour d'horizon des approches pionnières. + Documentaire + Doc. Société + + + Tout public + + + + DébatDoc + Quelle mobilité dans les villes de demain ? + Afin de lutter contre la congestion routière et la pollution, des villes comme Copenhague, Paris ou Singapour réinventent la mobilité de leurs habitants. + Magazine + Débat + + 0 . 45 . + + Tout public + + + + Séance à l'Assemblée nationale + Les temps forts à l'Assemblée nationale. + Magazine + Mag. Politique + + + Tout public + + + + Séance à l'Assemblée nationale + Les temps forts à l'Assemblée nationale. + Magazine + Mag. Politique + + + Tout public + + + + 100% Sénat + Le magazine entièrement consacré à l'actualité de la "chambre haute" de la Ve République française. + Info-Météo + Information + + + Tout public + + + + Sens public + Les sujets d'actualité et les grandes questions qui animent la société sont débattus par les invités de Thomas Hugues. Experts, personnalités politiques ou observateurs, ils analysent les problématiques et confrontent leurs idées afin d'offrir à chacun les clés pour comprendre les enjeux du moment. + Magazine + Mag. Politique + + + Tout public + + + + Bonjour chez vous ! + Un rendez-vous quotidien avec l'actualité qui concerne tous les Français. Au programme : des débats, des reportages en région et un regard sur l'actualité politique et parlementaire. + Magazine + Mag. Politique + + + Tout public + + + + Tous en scène + Difficultés d'accès à l'emploi Arnaud Demanche + Dans chaque épisode de ce programme court, une célébrité évoque un problème social. + Documentaire + + 0 . 0 . + + Tout public + + + + Séance à l'Assemblée nationale + Les temps forts à l'Assemblée nationale. + Magazine + Mag. Politique + + + Tout public + + + + La politique et moi + Pourquoi s'engage-t-on en politique ? Comment tombe-t-on dans le grand chaudron de l'Assemblée ? Chaque jour, Clément Méric, dans un entretien en tête à tête de 13 minutes, interroge un parlementaire sur les personnalités, les évènements - historiques ou personnels - qui l'ont conduit à choisir la vie publique. Car on ne naît pas politique, on le devient ! + Magazine + Mag. Politique + + + Tout public + + + + La politique et moi + Philippe Ballard + D'autres présentateurs de JT se sont engagés en politique avant lui, mais Philippe Ballard est le premier à l'avoir fait sous les couleurs du Rassemblement national. Porte-parole du RN, il siège désormais à l'Assemblée. + Magazine + Mag. Politique + + 0 . 15 . + + Tout public + + + + 100% Sénat + Le magazine entièrement consacré à l'actualité de la "chambre haute" de la Ve République française. + Info-Météo + Information + + + Tout public + + + + Bonjour chez vous ! + Un rendez-vous quotidien avec l'actualité qui concerne tous les Français. Au programme : des débats, des reportages en région et un regard sur l'actualité politique et parlementaire. + Magazine + Mag. Politique + + + Tout public + + + + Etat de santé + La santé numérique tiendra-t-elle ses promesses ? + La e-santé est en pleine explosion, boostée par la crise sanitaire. Sa croissance économique est estimée à 160 0.000000e+00ntre 2019 et 2023. Avec son développement, de belles avancées sont promises aux patients et aux soignants : une meilleure prise en charge des maladies chroniques, une réponse aux déserts médicaux, une meilleure gestion hospitalière ou encore des diagnostics plus fiables. + Magazine + Mag. Société + + 0 . 5 . + + Tout public + + + + 100% Sénat + 100% Sénat + Le magazine entièrement consacré à l'actualité de la "chambre haute" de la Ve République française. + Info-Météo + Information + + 0 . 90 . + + Tout public + + + + Séance à l'Assemblée nationale + Les temps forts à l'Assemblée nationale. + Magazine + Mag. Politique + + + Tout public + + + + En direct du Sénat + Aucune description + Magazine + Mag. Politique + + + Tout public + + + + Sens public + Les sujets d'actualité et les grandes questions qui animent la société sont débattus par les invités de Thomas Hugues. Experts, personnalités politiques ou observateurs, ils analysent les problématiques et confrontent leurs idées afin d'offrir à chacun les clés pour comprendre les enjeux du moment. + Magazine + Mag. Politique + + + Tout public + + + + Ça vous regarde + Ça vous regarde, votre rendez-vous quotidien qui prend le pouls de la société : un débat, animé par Myriam Encaoua, en prise directe avec l'actualité politique, parlementaire, sociale ou économique. Un carrefour d'opinions où ministres, députés, élus locaux, experts et personnalités de la société civile font entendre leur voix. + Info-Météo + Information + + + Tout public + + + + Génération 2008 : qui seront-ils demain ? + Pour ce troisième épisode, les cinq jeunes collégiens sont en 4e. Chaque personnalité s'affirme. La question de l'orientation commence à se poser. + Documentaire + Doc. Société + + + Tout public + + + + DébatDoc + Dans la tête des 13-14 ans + Aucune description + Magazine + Débat + + 0 . 24 . + + Tout public + + + + Sens public + Les sujets d'actualité et les grandes questions qui animent la société sont débattus par les invités de Thomas Hugues. Experts, personnalités politiques ou observateurs, ils analysent les problématiques et confrontent leurs idées afin d'offrir à chacun les clés pour comprendre les enjeux du moment. + Magazine + Mag. Politique + + + Tout public + + + + Tous en scène pour le handicap + Un programme court consacré au handicap et au regard posé sur le handicap dans la société contemporaine. + Magazine + Mag. Service + + + Tout public + + + + Ça vous regarde + Ça vous regarde, votre rendez-vous quotidien qui prend le pouls de la société : un débat, animé par Myriam Encaoua, en prise directe avec l'actualité politique, parlementaire, sociale ou économique. Un carrefour d'opinions où ministres, députés, élus locaux, experts et personnalités de la société civile font entendre leur voix. + Info-Météo + Information + + + Tout public + + + + Georges Marchais, l'homme qui avait choisi son camp + Georges Marchais a pris la tête du Parti communiste français en 1972. Vingt-cinq ans après sa mort, portrait d'une personnalité étonnante de la Ve République. + Documentaire + Doc. Société + + + Tout public + + + + DébatDoc + Georges Marchais : un héritage encombrant ? + Aucune description + Magazine + Débat + + 0 . 34 . + + Tout public + + + + Séance à l'Assemblée nationale + Les temps forts à l'Assemblée nationale. + Magazine + Mag. Politique + + + Tout public + + + + Séance à l'Assemblée nationale + Les temps forts à l'Assemblée nationale. + Magazine + Mag. Politique + + + Tout public + + + + 100% Sénat + Le magazine entièrement consacré à l'actualité de la "chambre haute" de la Ve République française. + Info-Météo + Information + + + Tout public + + + + M6 Music + Avec M6 Music, découvrez les meilleurs tubes de la Pop. De quoi passer une nuit torride, ou alors de se réveiller le matin avec un plein d'énergie... + Musique + Clips + + + Tout public + + + + Les aventures de Paddington + Paddington et la ferme pédagogique + Paddington a hâte de voir l'inauguration de la ferme pédagogique de la ville, mais les animaux s'échappent parce que la barrière est restée ouverte. Seront-ils retrouvés à temps ? + Jeunesse + Dessins Animés + + 1 . 9 . + + Tout public + + + + Les aventures de Paddington + La cueillette de Paddington + Toujours curieux et plein de gentillesse, Paddington découvre de nouveaux lieux et se fait de nouveaux amis, comme Baaz, un inventeur-recycleur, ou les nouvelles voisines Yasmin Kamali et sa fille Toq. + Jeunesse + Dessins Animés + + 1 . 8 . + + Tout public + + + + Petronix : les défenseurs des animaux + Mission : S.O.S. famille d'éléphants + MacTrapp invente un nouveau jeu afin de capturer un éléphanteau avec l'aide, involontaire, des Petronix. Impatient, Pup-E tombe droit dans le piège. + Jeunesse + Dessins Animés + + 0 . 32 . + + Tout public + + + + Petronix : les défenseurs des animaux + Mission : S.O.S. guépard du Sahara + MacTrapp vole un guépard pour son zoo. Déterminée à aller plus, Jia demande à Matt d'améliorer ses bottes, qu'elle pousse au-delà des limites. + Jeunesse + Dessins Animés + + 0 . 33 . + + Tout public + + + + ALVINNN!!! et les Chipmunks + La malédiction de Macbeth + Les Chipmunks sont sollicités pour jouer dans la pièce de l'école. Quand ils découvrent qu'elle est associée à une malédiction, ils refusent. + Jeunesse + Dessins Animés + + 4 . 4 . + + Tout public + + + + ALVINNN!!! et les Chipmunks + Zeela la grande + La jalousie naît entre les robots de Simon et de Jeannette, Gizmo et Zeela. Un accident montre cependant que Gizmo a grand coeur. + Jeunesse + Dessins Animés + + 4 . 4 . + + Tout public + + + + Presto! Le manoir magique + Les menottes de Lorenzo + Lorenzo expose ses accessoires célèbres au salon. Vincent et Dylan se disputent au sujet de ceux-ci. + Jeunesse + Dessins Animés + + 0 . 20 . + + Tout public + + + + Presto! Le manoir magique + La gaffe d'anniversaire + Pour son anniversaire, Lisa offre à Dylan un billet pour assister à un concert de son groupe préféré. Mais Dylan se retrouve collé. + Jeunesse + Dessins Animés + + 0 . 21 . + + Tout public + + + + Absolument stars + Une émission qui traite de l'actualité people et musicale. Elle permet de faire découvrir les dessous du show business avec des clips, des interviews de stars, des reportages, les sorties cinéma et DVD, l'agenda spectacle, la météo et l'horoscope. + Magazine + Mag. Société + + + Tout public + + + + Vacances : on a échangé nos maisons + Aucune description + Documentaire + Doc. Société + + + Tout public + + + + 66 minutes : grand format + Les restos routiers font de la résistance + Reportages, portraits, enquêtes, 66 Minutes : grand format explore l'actualité avec un reportage sur un fait divers, un phénomène de société ou un événement de l'actualité internationale. + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Météo + Les prévisions météo sur M6 c'est, par tous les temps, un vrai moment de fun, car la bonne humeur ne dépend ni du soleil, ne de la pluie, ni de l'épais brouillard, ni de la froidure,... + Info-Météo + Information + + + Tout public + + + + Le 12.45 + Retrouvez toute l'actualité de la mi-journée. + Info-Météo + Information + + + Tout public + + + + Scènes de ménages + Votre couple vous désole ? Vous vous lamentez de vivre seul ? Scènes de Ménages va vous aider à relativiser ! + Série + Série Rires + + + Tout public + + + + Chasseurs d'appart' + 3 agents immobiliers se transforment en chasseurs d'appart' pour trouver des biens à des clients dans des secteurs qu'ils ne connaissent pas forcément. Tous les jours, les agents auront un client à qui ils devront présenter un bien… et un seul bien. + Divertissement + Jeu + + + Tout public + + + + Météo + Les prévisions météo sur M6 c'est, par tous les temps, un vrai moment de fun, car la bonne humeur ne dépend ni du soleil, ne de la pluie, ni de l'épais brouillard, ni de la froidure,... + Info-Météo + Information + + + Tout public + + + + Le 19.45 + Le journal de M6. + Info-Météo + Information + + + Tout public + + + + Scènes de ménages + Votre couple vous désole ? Vous vous lamentez de vivre seul ? Scènes de Ménages va vous aider à relativiser ! + Série + Série Rires + + + Tout public + + + + 9-1-1: Lone Star + Réchauffement ambiant + Les chefs Strand et Vega, ainsi que les membres de la 126, sont appelés à intervenir dans une fête foraine lorsque des orages violents se déplaçant rapidement frappent Austin. La nouvelle passion d'Owen pour la moto l'amène en terrain dangereux. Un secret du passé de Carlos pourrait s'opposer à son bonheur. + Série + Série Passion + + 3 . 0 . + + + -10 + + + + 9-1-1: Lone Star + Nouveau désastre + Strand et la 126e se précipitent au secours d'une femme coincée dans un mobil-home que son ex a pris en otage. Après une altercation avec son ancien ennemi juré, le sergent O'Brien, Owen est interrogé par le FBI. TK et Carlos rencontrent Iris Blake. + Série + Série Passion + + 3 . 1 . + + Tout public + + + + 9-1-1: Lone Star + Celui qui criait au loup + Alors qu'Owen est entraîné dans l'enquête du FBI sur le gang de motards, O'Brien lui fait une confession. Ryder et la 126 répondent à l'appel d'un homme prétendant que sa petite amie a glissé sur le flanc d'une falaise. Carlos cherche une amie disparue et met sa propre vie en danger. + Série + Série Passion + + 3 . 2 . + + + -10 + + + + 9-1-1: Lone Star + Jour de neige + La tempête de neige qui s'abat sur Austin provoque de nombreux accidents. Owen est confronté aux conséquences de la fermeture de la caserne 126. Pendant ce temps, Tommy, K.T. et Nancy, trouvent leurs marques au sein de l'entreprise qu'ils viennent de rejoindre. Judd et Grace s'apprêtent à accueillir leur bébé... + Série + Série Passion + + 2 . 0 . + + + -10 + + + + 9-1-1: Lone Star + Sauvetages à haut risque + A Austin, les habitants doivent faire face à des températures glaciales et à d'abondantes chutes de neige. Tandis que Tommy, T.K. et Gillian se précipitent au secours d'un jeune garçon tombé dans un étang gelé, Owen met tout en oeuvre pour sauver un homme laissé pour mort dans les collines enneigées... + Série + Série Passion + + 2 . 1 . + + + -10 + + + + Météo + Les prévisions météo sur M6 c'est, par tous les temps, un vrai moment de fun, car la bonne humeur ne dépend ni du soleil, ne de la pluie, ni de l'épais brouillard, ni de la froidure,... + Info-Météo + Information + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + M6 Music + Avec M6 Music, découvrez les meilleurs tubes de la Pop. De quoi passer une nuit torride, ou alors de se réveiller le matin avec un plein d'énergie... + Musique + Clips + + + Tout public + + + + Les aventures de Paddington + Paddington pizzaiolo + Simi rend visite à son oncle Baaz. Celui-ci veut lui faire une surprise en préparant une pizza. Mais ce n'est pas facile quand on est entouré d'animaux affamés... + Jeunesse + Dessins Animés + + 1 . 10 . + + Tout public + + + + Les aventures de Paddington + Les nouveaux voisins de Paddington + Toujours curieux et plein de gentillesse, Paddington découvre de nouveaux lieux et se fait de nouveaux amis, comme Baaz, un inventeur-recycleur, ou les nouvelles voisines Yasmin Kamali et sa fille Toq. + Jeunesse + Dessins Animés + + 1 . 12 . + + Tout public + + + + Petronix : les défenseurs des animaux + Mission: S.O.S. paon bleu + A l'aide du Mac Gorgeous 3 000, un miroir au pouvoir hypnotique qui embellit la réalité, MacTrap parvient à attirer un paon bleu et le capturer. Mais ce gadget pourrait bien se montrer redoutable contre les Petronix… + Jeunesse + Dessins Animés + + 0 . 34 . + + Tout public + + + + Petronix : les défenseurs des animaux + Mission: S.O.S. chien chanteur + Quand Ringmaster capture des chiens chanteurs de Nouvelle-Guinée pour les enrôler de force dans sa chorale, Matt pousse Jia à se surpasser avec son pianophone. + Jeunesse + Dessins Animés + + 0 . 35 . + + Tout public + + + + ALVINNN!!! et les Chipmunks + Dave Junior + Dave est frappé par un rayon qui le fait rajeunir. Devenu un adolescent, il fait des misères à Alvin. + Jeunesse + Dessins Animés + + 4 . 5 . + + Tout public + + + + ALVINNN!!! et les Chipmunks + Docteur Dodo + Pour devenir plus productif, Simon invente une machine qui lui évite de dormir. Mais fonctionne-t-elle vraiment ? + Jeunesse + Dessins Animés + + 4 . 5 . + + Tout public + + + + Presto! Le manoir magique + Le manoir hanté + Les enfants, qui jouent à se faire peur, entendent des bruits étranges dans le manoir et aperçoivent une ombre étrange. + Jeunesse + Dessins Animés + + 0 . 22 . + + Tout public + + + + Presto! Le manoir magique + Nica se dédouble + Nica accepte, à contre-coeur, d'assister Lisa et Violette pour les journées Portes Ouvertes. Elle se retrouve en fâcheuse posture. + Jeunesse + Dessins Animés + + 0 . 23 . + + Tout public + + + + M6 Boutique + Retrouvez les dernières innovations et des offres exclusives en matière de bijoux, beauté, cuisine, maison. + Magazine + Mag. TV-Achat + + + Tout public + + + + Turbo + Magazine des conducteurs et de leurs automobiles, Turbo présente les nouvelles tendances sociologiques, économiques et écologiques. + Magazine + Mag. Société + + + Tout public + + + + Turbo + Magazine des conducteurs et de leurs automobiles, Turbo présente les nouvelles tendances sociologiques, économiques et écologiques. + Magazine + Mag. Société + + + Tout public + + + + Sport 6 + Retrouvez chaque semaine toute l'actualité et les résultats du sport dans Sport 6. En 6 minutes, priorités aux images : les temps forts de l'actualité et les résultats sportifs sont décryptés pour tout connaître des faits marquants de la semaine. + Magazine + Mag. Sport + + + Tout public + + + + Météo + Les prévisions météo sur M6 c'est, par tous les temps, un vrai moment de fun, car la bonne humeur ne dépend ni du soleil, ne de la pluie, ni de l'épais brouillard, ni de la froidure,... + Info-Météo + Information + + + Tout public + + + + Le 12.45 + Retrouvez toute l'actualité de la mi-journée. + Info-Météo + Information + + + Tout public + + + + Recherche appartement ou maison + Spéciale challenge + Après le concours lancé lors de la 100e de l'émission, Stéphane Plaza vient en aide aux lauréats. A Paris, il aide Laurine à trouver un appartement. Mathieu Beyer aide Cyrielle et Maxime à trouver une maison à Strasbourg et Antoine Blandin accompagne Carole et David dans leurs recherches en Vendée. + Divertissement + + 14 . 1 . + + Tout public + + + + Maison à vendre + Marion / Rose et Marc + Au sommaire : "Marion". Cette professeure des écoles qui habite dans les Yvelines voudrait déménager pour ne plus vivre dans la ville où elle enseigne. - "Rose et Marc". Le couple souhaite vendre la demeure familiale pour investir dans une maison d'hôtes en Seine-et-Marne, région où il vit déjà. + Magazine + Mag. Société + + 12 . 4 . + + Tout public + + + + 66 minutes + Reportages, portraits, enquêtes, 66 Minutes explore l'actualité de la semaine avec des reportages sur des faits divers, des phénomènes de société ou des événements de l'actualité internationale. + Magazine + Mag. Société + + + Tout public + + + + 66 minutes : grand format + Reportages, portraits, enquêtes, 66 Minutes : grand format explore l'actualité avec un reportage sur un fait divers, un phénomène de société ou un événement de l'actualité internationale. + Magazine + Mag. Société + + + Tout public + + + + Météo + Les prévisions météo sur M6 c'est, par tous les temps, un vrai moment de fun, car la bonne humeur ne dépend ni du soleil, ne de la pluie, ni de l'épais brouillard, ni de la froidure,... + Info-Météo + Information + + + Tout public + + + + Le 19.45 + Le journal de M6. + Info-Météo + Information + + + Tout public + + + + Sport 6 + Retrouvez chaque semaine toute l'actualité et les résultats du sport dans Sport 6. En 6 minutes, priorités aux images : les temps forts de l'actualité et les résultats sportifs sont décryptés pour tout connaître des faits marquants de la semaine. + Magazine + Mag. Sport + + + Tout public + + + + E=M6 + e=m6 est LE magazine scientifique familial par excellence pour apprendre de manière ludique au travers d'expériences visuelles, de témoignages, de décryptages de spécialistes qui répondent aux questions que tout le monde se pose… + Magazine + Mag. Sc. & Tech. + + + Tout public + + + + Capital + Dérèglement climatique, érosion du littoral : quand la nature présente la facture + Erosion du littoral, sécheresse : et si nos maisons ne valaient plus rien ? Comment se prémunir contre les catastrophes naturelles ? Pompes à chaleur, radiateurs révolutionnaires, des nouvelles solutions pour se chauffer moins cher ? Comment faire baisser ses factures énergétiques ? Maison, appartement : comment se loger sans polluer, ni se ruiner ? Des solutions existent pour mieux se loger. + Magazine + Mag. Économie + + 0 . 0 . + + Tout public + + + + Enquête exclusive + Quand la France vend des armes : enquête sur une industrie très secrète + Depuis la guerre en Ukraine, la plupart des pays du monde se sont lancés dans une nouvelle course aux armements. En 2023, les dépenses militaires dépasseront 2000 milliards d'euros à l'échelle planétaire. Une aubaine pour la France, 2e exportateur d'armes derrière les Etats-Unis et devant la Russie. + Info-Météo + Information + + 0 . 0 . + + Tout public + + + + Enquête exclusive + Cimenterie Lafarge : la multinationale, Daesh et les espions + C'est l'une des affaires d'espionnage les plus rocambolesques de ces dernières années. Lafarge, alors leader mondial du ciment, est aujourd'hui poursuivie pour complicité de financement du terrorisme et de crime contre l'humanité. Enquête sur une entreprise française qui s'est retrouvée en zone grise. + Info-Météo + Information + + 7 . 13 . + + Tout public + + + + Enquête exclusive + BRI de Paris : au cœur de l'antigang + Prise d'otages, braquages, démantèlement de réseaux de trafiquants de drogue, arrestation de terroristes, la Brigade de Recherche et d'Intervention (BRI) de Paris est la seule unité en France à intervenir sur les situations à haut risque et à mener des enquêtes de police judiciaire au long cours. + Info-Météo + Information + + 6 . 18 . + + + -10 + + + + Météo + Les prévisions météo sur M6 c'est, par tous les temps, un vrai moment de fun, car la bonne humeur ne dépend ni du soleil, ne de la pluie, ni de l'épais brouillard, ni de la froidure,... + Info-Météo + Information + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Programme + Programme indéterminé + + + Tout public + + + + M6 Music + Avec M6 Music, découvrez les meilleurs tubes de la Pop. De quoi passer une nuit torride, ou alors de se réveiller le matin avec un plein d'énergie... + Musique + Clips + + + Tout public + + + + Incroyables transformations + Des experts de la mode ont créé une agence pas comme les autres pour venir en aide à des clients qui se plaignent du look de l'un de leurs proches, qu'il est urgent de changer ! Mais pour nos experts, pas de soucis, car aucun look ne les arrête… + Programme + Divertissement + + + Tout public + + + + Incroyables transformations + Des experts de la mode ont créé une agence pas comme les autres pour venir en aide à des clients qui se plaignent du look de l'un de leurs proches, qu'il est urgent de changer ! Mais pour nos experts, pas de soucis, car aucun look ne les arrête… + Programme + Divertissement + + + Tout public + + + + Incroyables transformations + Des experts de la mode (Charla Carter, Léa Djadja et Nicolas Waldorf) ont créé une agence pas comme les autres pour venir en aide à des clients qui se plaignent du look de l'un de leurs proches, qu'il est urgent de changer ! Mais pour nos experts, pas de soucis, car aucun look ne les arrête… + Programme + Divertissement + + + Tout public + + + + M6 Boutique + Retrouvez les dernières innovations et des offres exclusives en matière de bijoux, beauté, cuisine, maison. + Services + Télé-achat + + + Tout public + + + + Ça peut vous arriver + Julien Courbet va tout tenter pour résoudre vos problèmes mais aussi apporter des infos juridiques et conseils spécifiques. La parole est donnée à toutes les parties pour que toutes les situations litigieuses trouvent un dénouement positif ! + Art de vivre + Consommation + + + Tout public + + + + Ça peut vous arriver chez vous + Julien Courbet, entouré d'avocats et d'experts, tente de résoudre vos problèmes mais aussi apporter des infos juridiques et conseils spécifiques. Des envoyés spéciaux sillonnent les régions, recueillent les témoignages et illustrent les cas en images. + Art de vivre + Consommation + + + Tout public + + + + Météo + Les prévisions météo sur M6 c'est, par tous les temps, un vrai moment de fun, car la bonne humeur ne dépend ni du soleil, ne de la pluie, ni de l'épais brouillard, ni de la froidure,... + Services + Météo + + + Tout public + + + + Le 12.45 + Retrouvez toute l'actualité de la mi-journée. + Information + Journal + + + Tout public + + + + Météo + Les prévisions météo sur M6 c'est, par tous les temps, un vrai moment de fun, car la bonne humeur ne dépend ni du soleil, ne de la pluie, ni de l'épais brouillard, ni de la froidure,... + Services + Météo + + + Tout public + + + + Scènes de ménages + Votre couple vous désole ? Vous vous lamentez de vivre seul ? Scènes de Ménages va vous aider à relativiser ! + Série + Comédie + + + Tout public + + + + Un jour, un doc + Grands débats de société, nouvelles tendances, retour sur des évènements marquants et des faits divers hors normes, ou encore récits de vie des people et des têtes couronnées, \" Un jour, un doc \" propose tous les après-midis une grande variété de documentaires et de sujets qui font vibrer le coeur des Français. Chaque jour, partez à la découverte d'histoires et de personnages incroyables en France ou à l'étranger. + Magazine + Information + + + Tout public + + + + Un jour, un doc + Grands débats de société, nouvelles tendances, retour sur des évènements marquants et des faits divers hors normes, ou encore récits de vie des people et des têtes couronnées, \" Un jour, un doc \" propose tous les après-midis une grande variété de documentaires et de sujets qui font vibrer le coeur des Français. Chaque jour, partez à la découverte d'histoires et de personnages incroyables en France ou à l'étranger. + Magazine + Information + + + Tout public + + + + Un jour, un doc + Grands débats de société, nouvelles tendances, retour sur des évènements marquants et des faits divers hors normes, ou encore récits de vie des people et des têtes couronnées, \" Un jour, un doc \" propose tous les après-midis une grande variété de documentaires et de sujets qui font vibrer le coeur des Français. Chaque jour, partez à la découverte d'histoires et de personnages incroyables en France ou à l'étranger. + Magazine + Information + + + Tout public + + + + Un jour, un doc + Grands débats de société, nouvelles tendances, retour sur des évènements marquants et des faits divers hors normes, ou encore récits de vie des people et des têtes couronnées, \" Un jour, un doc \" propose tous les après-midis une grande variété de documentaires et de sujets qui font vibrer le coeur des Français. Chaque jour, partez à la découverte d'histoires et de personnages incroyables en France ou à l'étranger. + Magazine + Information + + + Tout public + + + + Le château de mes rêves + Qui n'a jamais rêvé de la vie de château ? 12 familles sans fortune personnelle ont sauté le pas et sont devenus châtelains ! Mais ce rêve a un prix, et ces châtelains d'un nouveau genre ont tout abandonné pour changer de vie et ouvrir des chambres d'hôtes, organiser des mariages ou monter des événements prodigieux, seul moyen pour eux de financer et d'entretenir ses domaines hors du commun ! Venez partager le quotidien hors norme de ces nouveaux châtelains ! + Magazine + Société + + 1 . 180 . + + Tout public + + + + Objectif Top chef + Semaine finale : les quarts de finale + Trois candidats s'affrontent pour accéder à la demi-finale. Emmanuel Renaut, Pascal Barbot et Stéphanie Le Quellec les mettent au défi sur les grands classiques de la cuisine. Dans la seconde, les deux candidats restants s'affrontent sur des thèmes imposés. + Art de vivre + Gastronomie + + 8 . 0 . + + Tout public + + + + Météo + Les prévisions météo sur M6 c'est, par tous les temps, un vrai moment de fun, car la bonne humeur ne dépend ni du soleil, ne de la pluie, ni de l'épais brouillard, ni de la froidure,... + Services + Météo + + + Tout public + + + + Le 19.45 + Le journal de M6. + Information + Journal + + + Tout public + + + + Direct dans votre poche + Zoom sur des moyens astucieux pour optimiser son pouvoir d'achat et améliorer son quotidien en faisant des économies. + Art de vivre + Consommation + + Tout public + + + + Scènes de ménages + José et Liliane, Raymond, Emma et Fabien, Camille et Philippe, Léo et Leslie, Jalil et Louise ainsi que Christine et Gilbert sont de retour pour une 15e saison inédite qui promet de joyeux moments ! + Série + Comédie + + + Tout public + + + + L'amour est dans le pré + Emission 12 + Cette 18e saison 2023 de "L'amour est dans le pré" approche tout doucement de sa conclusion. Dans ce nouvel épisode, Karine Le Marchand fait le point avec un certain nombre de candidats pour savoir s'ils maintiennent leurs choix initiaux ou si, au contraire, ils doutent de la relation qu'ils ont noué. Chez les agricultrices, la situation est sensiblement la même. Anaïs, Christine et Perrine sont face à des choix cruciaux. Comment les candidats ont vécu ces dernières semaines et comment ils abordent cette ultime phase de l'émission ? Eléments de réponse au cours de ce numéro de "ADP", peut-être riche en révélations ! + Programme + Téléréalité + + 17 . 11 . + + Tout public + + + + L'amour est dans le pré + Emission 12 + Les relations avec l'être recherché et éventuellement aimé n'est pas forcément de tout repos. Si au début, tout peut sembler idyllique, il arrive parfois que des tensions sous-jacentes apparaissent au cours de l'émission et des différents parcours de vie. Où en sont les différents candidats ? Karine Le Marchand fait le tour des candidats et prend la température à ce stade de "L'amour est dans le pré". Qui semble heureux ? Qui commence à avoir des doutes ? Comment va se dérouler la suite des événements ? + Programme + Téléréalité + + 17 . 11 . + + Tout public + + + + L'amour vu du pré + Emission 14 + Pour la 5e saison, les agriculteurs des éditions précédentes se retrouvent sur les canapés de "L'amour vu du pré". Jadis à la place des 13 célibataires, ils commenteront leurs aventures amoureuses avec tout l'humour, l'émotion et la bienveillance qui les caractérisent. Et pour l'occasion, la famille s'agrandit de façon spectaculaire avec une multitude de nouveaux participants. Dans "L'amour vu du pré", c'est tout l'univers de "ADP" vu sous un autre angle qui se dévoile au cours de ce numéro joyeux et divertissant. + Programme + Divertissement + + 4 . 13 . + + Tout public + + + + Et si on se rencontrait ? + Cette troisième saison fait découvrir d'incroyables histoires d'amour de couples qui ont craqué virtuellement l'un pour l'autre, et qui se rencontrent pour la première fois en vrai. C'est au château de Serans, dans l'Oise, que ces amoureux virtuels vont passer du fantasme à la réalité. Au programme : de l'amour bien sûr, avec des coups de foudre dès le premier regard et des baisers passionnés au bout de quelques minutes en face-à-face, mais aussi d'énormes déceptions. + Programme + Divertissement + + 2 . 0 . + + Tout public + + + + Et si on se rencontrait ? + Découverte de ces incroyables histoires d'amour de ces couples qui ont craqué virtuellement l'un pour l'autre, et qui se rencontrent pour la première fois en vrai. Cette fois, c'est au château de Serans, dans l'Oise, que ces amoureux virtuels vont passer du fantasme à la réalité. Au programme : de l'amour bien sûr, avec des coups de foudre dès le premier regard et des baisers passionnés au bout de quelques minutes en face-à-face, mais aussi d'énormes déceptions. Une chose est sûre, le passage du virtuel au réel ne laisse pas de marbre les candidats qui doivent bien souvent s'adapter à la réalité de la situation. + Programme + Divertissement + + 2 . 6 . + + Tout public + + + + Météo + Les prévisions météo sur M6 c'est, par tous les temps, un vrai moment de fun, car la bonne humeur ne dépend ni du soleil, ne de la pluie, ni de l'épais brouillard, ni de la froidure,... + Services + Météo + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Programme + Programme indéterminé + + + Tout public + + + + M6 Music + Avec M6 Music, découvrez les meilleurs tubes de la Pop. De quoi passer une nuit torride, ou alors de se réveiller le matin avec un plein d'énergie... + Musique + Clips + + + Tout public + + + + Incroyables transformations + Des experts de la mode (Charla Carter, Léa Djadja et Nicolas Waldorf) ont créé une agence pas comme les autres pour venir en aide à des clients qui se plaignent du look de l'un de leurs proches, qu'il est urgent de changer ! Mais pour nos experts, pas de soucis, car aucun look ne les arrête… + Divertissement + + + Tout public + + + + Incroyables transformations + Des experts de la mode ont créé une agence pas comme les autres pour venir en aide à des clients qui se plaignent du look de l'un de leurs proches, qu'il est urgent de changer ! Mais pour nos experts, pas de soucis, car aucun look ne les arrête… + Divertissement + + + Tout public + + + + Incroyables transformations + Angélique - Marie-France - Céline + Des experts de la mode (Charla Carter, Léa Djadja et Nicolas Waldorf) ont créé une agence pas comme les autres pour venir en aide à des clients qui se plaignent du look de l'un de leurs proches, qu'il est urgent de changer ! Mais pour nos experts, pas de soucis, car aucun look ne les arrête… + Divertissement + + 0 . 0 . + + Tout public + + + + M6 Boutique + Retrouvez les dernières innovations et des offres exclusives en matière de bijoux, beauté, cuisine, maison. + Magazine + Mag. TV-Achat + + + Tout public + + + + Ça peut vous arriver + Julien Courbet va tout tenter pour résoudre vos problèmes mais aussi apporter des infos juridiques et conseils spécifiques. La parole est donnée à toutes les parties pour que toutes les situations litigieuses trouvent un dénouement positif ! + Magazine + Mag. Service + + + Tout public + + + + Ça peut vous arriver chez vous + Julien Courbet, entouré d'avocats et d'experts, tente de résoudre vos problèmes mais aussi apporter des infos juridiques et conseils spécifiques. Des envoyés spéciaux sillonnent les régions, recueillent les témoignages et illustrent les cas en images. + Magazine + Mag. Service + + + Tout public + + + + Météo + Les prévisions météo sur M6 c'est, par tous les temps, un vrai moment de fun, car la bonne humeur ne dépend ni du soleil, ne de la pluie, ni de l'épais brouillard, ni de la froidure,... + Info-Météo + Information + + + Tout public + + + + Le 12.45 + Retrouvez toute l'actualité de la mi-journée. + Info-Météo + Information + + + Tout public + + + + Météo + Les prévisions météo sur M6 c'est, par tous les temps, un vrai moment de fun, car la bonne humeur ne dépend ni du soleil, ne de la pluie, ni de l'épais brouillard, ni de la froidure,... + Info-Météo + Information + + + Tout public + + + + Scènes de ménages + Votre couple vous désole ? Vous vous lamentez de vivre seul ? Scènes de Ménages va vous aider à relativiser ! + Série + Série Rires + + + Tout public + + + + Un jour, un doc + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Un jour, un doc + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Un jour, un doc + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Un jour, un doc + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Le château de mes rêves + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Objectif Top Chef + Semaine finale : les quarts de finale + Trois candidats s'affrontent pour accéder à la demi-finale. Emmanuel Renaut, Pascal Barbot et Stéphanie Le Quellec les mettent au défi sur les grands classiques de la cuisine. Dans la seconde, les deux candidats restants s'affrontent sur des thèmes imposés. + Magazine + Mag. Société + + 8 . 0 . + + Tout public + + + + Météo + Les prévisions météo sur M6 c'est, par tous les temps, un vrai moment de fun, car la bonne humeur ne dépend ni du soleil, ne de la pluie, ni de l'épais brouillard, ni de la froidure,... + Info-Météo + Information + + + Tout public + + + + Le 19.45 + Le journal de M6. + Info-Météo + Information + + + Tout public + + + + Direct dans votre poche + Zoom sur des moyens astucieux pour optimiser son pouvoir d'achat et améliorer son quotidien en faisant des économies. + Magazine + Mag. Service + + + Tout public + + + + Scènes de ménages + José et Liliane, Raymond, Emma et Fabien, Camille et Philippe, Léo et Leslie, Jalil et Louise ainsi que Christine et Gilbert sont de retour pour une 15e saison inédite qui promet de joyeux moments ! + Série + Série Rires + + + Tout public + + + + La France a un incroyable talent + Emission 3 : les auditions + Les auditions continuent. Parmi les concurrents en lice, Alexis, 13 ans, et Eros, 17 ans, comptent parmi la 7e génération d'artistes de la famille du cirque Arlette Gruss. Inscrite à l'initiative de son petit-fils, Monica, 84 ans, monte pour la première fois sur scène et interprète "Mon Dieu" d'Edith Piaf. + Divertissement + + 17 . 2 . + + Tout public + + + + La France a un incroyable talent + Emission 3 : les auditions + Pour cette troisième soirée d'auditions, les candidats ont toujours pour objectif de décrocher un minimum de 3 "oui", à moins d'espérer éblouir un juré et d'obtenir son Golden-Buzzer, synonyme d'accès en demi-finale, ou de faire l'unanimité et de décrocher le Platinium Buzzer, qui garantit d'être présent en finale. + Divertissement + + 17 . 2 . + + Tout public + + + + La France a un incroyable talent, ça continue + Emission 3 + Dans les coulisses de l'émission, Juju Fitcats part à la rencontre des artistes marquants. Elle dévoile également des images inédites des talents et du jury. Cette émission permet aussi de prendre des nouvelles des candidats emblématiques de la saison 17 et de découvrir les déclinaisons étrangères du programme. + Divertissement + + 17 . 2 . + + Tout public + + + + Les incroyables talents de la musique + Une sélection des meilleurs chanteurs et artistes vocaux passés sur la scène de La France a un incroyable talent ! Revivez le parcours fabuleux des meilleurs chanteurs et artistes vocaux. Durant leur passage, ils ont su faire vibrer le jury et le public grâce à leur voix extraordinaire… L'occasion de redécouvrir aussi d'anciens talents sortis depuis de l'anonymat. + Musique + + + Tout public + + + + Les incroyables talents de la musique + Une sélection des meilleurs chanteurs et artistes vocaux passés sur la scène de "La France a un incroyable talent". L'émission revient sur leurs parcours et leurs prestations lors de l'émission. Durant leur passage, ils ont su faire vibrer le jury et le public grâce à leur voix extraordinaire. C'est aussi l'occasion de redécouvrir d'anciens talents sortis depuis de l'anonymat. + Musique + + + Tout public + + + + Météo + Les prévisions météo sur M6 c'est, par tous les temps, un vrai moment de fun, car la bonne humeur ne dépend ni du soleil, ne de la pluie, ni de l'épais brouillard, ni de la froidure,... + Info-Météo + Information + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + M6 Music + Avec M6 Music, découvrez les meilleurs tubes de la Pop. De quoi passer une nuit torride, ou alors de se réveiller le matin avec un plein d'énergie... + Musique + Clips + + + Tout public + + + + Incroyables transformations + Des experts de la mode (Charla Carter, Léa Djadja et Nicolas Waldorf) ont créé une agence pas comme les autres pour venir en aide à des clients qui se plaignent du look de l'un de leurs proches, qu'il est urgent de changer ! Mais pour nos experts, pas de soucis, car aucun look ne les arrête… + Divertissement + + + Tout public + + + + Incroyables transformations + Des experts de la mode (Charla Carter, Léa Djadja et Nicolas Waldorf) ont créé une agence pas comme les autres pour venir en aide à des clients qui se plaignent du look de l'un de leurs proches, qu'il est urgent de changer ! Mais pour nos experts, pas de soucis, car aucun look ne les arrête… + Divertissement + + + Tout public + + + + Incroyables transformations + Des experts de la mode (Charla Carter, Léa Djadja et Nicolas Waldorf) ont créé une agence pas comme les autres pour venir en aide à des clients qui se plaignent du look de l'un de leurs proches, qu'il est urgent de changer ! Mais pour nos experts, pas de soucis, car aucun look ne les arrête… + Divertissement + + + Tout public + + + + Ça peut vous arriver + Julien Courbet va tout tenter pour résoudre vos problèmes mais aussi apporter des infos juridiques et conseils spécifiques. La parole est donnée à toutes les parties pour que toutes les situations litigieuses trouvent un dénouement positif ! + Magazine + Mag. Service + + + Tout public + + + + Ça peut vous arriver + Julien Courbet va tout tenter pour résoudre vos problèmes mais aussi apporter des infos juridiques et conseils spécifiques. La parole est donnée à toutes les parties pour que toutes les situations litigieuses trouvent un dénouement positif ! + Magazine + Mag. Service + + + Tout public + + + + Ça peut vous arriver chez vous + Julien Courbet, entouré d'avocats et d'experts, tente de résoudre vos problèmes mais aussi apporter des infos juridiques et conseils spécifiques. Des envoyés spéciaux sillonnent les régions, recueillent les témoignages et illustrent les cas en images. + Magazine + Mag. Service + + + Tout public + + + + Météo + Les prévisions météo sur M6 c'est, par tous les temps, un vrai moment de fun, car la bonne humeur ne dépend ni du soleil, ne de la pluie, ni de l'épais brouillard, ni de la froidure,... + Info-Météo + Information + + + Tout public + + + + Le 12.45 + Retrouvez toute l'actualité de la mi-journée. + Info-Météo + Information + + + Tout public + + + + Météo + Les prévisions météo sur M6 c'est, par tous les temps, un vrai moment de fun, car la bonne humeur ne dépend ni du soleil, ne de la pluie, ni de l'épais brouillard, ni de la froidure,... + Info-Météo + Information + + + Tout public + + + + Scènes de ménages + Votre couple vous désole ? Vous vous lamentez de vivre seul ? Scènes de Ménages va vous aider à relativiser ! + Série + Série Rires + + + Tout public + + + + Un jour, un doc + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Un jour, un doc + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Un jour, un doc + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Un jour, un doc + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Le château de mes rêves + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Objectif Top Chef + Semaine finale : les quarts de finale + Trois candidats s'affrontent pour accéder à la demi-finale. Emmanuel Renaut, Pascal Barbot et Stéphanie Le Quellec les mettent au défi sur les grands classiques de la cuisine. Dans la seconde, les deux candidats restants s'affrontent sur des thèmes imposés. + Magazine + Mag. Société + + 8 . 0 . + + Tout public + + + + Météo + Les prévisions météo sur M6 c'est, par tous les temps, un vrai moment de fun, car la bonne humeur ne dépend ni du soleil, ne de la pluie, ni de l'épais brouillard, ni de la froidure,... + Info-Météo + Information + + + Tout public + + + + Le 19.45 + Le journal de M6. + Info-Météo + Information + + + Tout public + + + + Direct dans votre poche + Zoom sur des moyens astucieux pour optimiser son pouvoir d'achat et améliorer son quotidien en faisant des économies. + Magazine + Mag. Service + + + Tout public + + + + Scènes de ménages + José et Liliane, Raymond, Emma et Fabien, Camille et Philippe, Léo et Leslie, Jalil et Louise ainsi que Christine et Gilbert sont de retour pour une 15e saison inédite qui promet de joyeux moments ! + Série + Série Rires + + + Tout public + + + + Le meilleur pâtissier + Goûter d'enfance + Les sept aspirants au titre replongent en enfance avec douceur et gourmandise. Premier défi : transformer le clafoutis familial en un dessert cinq étoiles. Ensuite, à partir d'un simple dessin, les candidats doivent réaliser un cartoon cake. Enfin, ils doivent donner vie aux créations de sept enfants. + Divertissement + Jeu + + 11 . 8 . + + Tout public + + + + Le meilleur pâtissier + Goûter d'enfance + Retour en enfance pour les sept pâtissiers avec un clafoutis à sublimer, un cartoon cake à réaliser à partir d'un simple dessin et enfin des gâteaux improbables sortis tout droit de l'imagination fertile d'enfants. + Divertissement + Jeu + + 11 . 8 . + + Tout public + + + + Le meilleur pâtissier : la cuisine secrète de Mercotte + Emission 9 + Le gagnant du 8e face-à-face affronte le neuvième éliminé de cette saison 12 du Meilleur Pâtissier dans un duel sur la recette signature de Christophe Renou, Meilleur Ouvrier de France : le fraisier roulé. Alors, qui gagnera cet ultime défi et réintégrera le concours lors de la dixième semaine de compétition ? Au programme également, toutes les indiscrétions et les coulisses de l'émission. + Divertissement + Jeu + + 0 . 8 . + + Tout public + + + + Le meilleur pâtissier : la cuisine secrète de Mercotte + Emission 8 + Le gagnant du septième face-à-face va affronter le huitième éliminé de cette saison 12 du "Meilleur pâtissier". Ils devront se battre sur un des défis emblématiques de Cyril Lignac tiré au sort : le "Merveilleux" réalisé en saison 7 du concours ! Alors, qui gagnera ce huitième défi lors de ce numéro ? + Divertissement + Jeu + + 0 . 7 . + + Tout public + + + + Le meilleur pâtissier : la cuisine secrète de Mercotte + Emission 7 + Le gagnant du sixième face-à-face se mesure au septième éliminé de cette saison 12 du Meilleur Pâtissier sur le Paris-Brest, réalisé en saison 3 et en saison 7 du concours. Alors, qui gagnera ce septième défi et se rapprochera un peu plus du but ultime, réintégrer le concours en 10e semaine de compétition ? + Divertissement + Jeu + + 0 . 6 . + + Tout public + + + + Météo + Les prévisions météo sur M6 c'est, par tous les temps, un vrai moment de fun, car la bonne humeur ne dépend ni du soleil, ne de la pluie, ni de l'épais brouillard, ni de la froidure,... + Info-Météo + Information + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + M6 Music + Avec M6 Music, découvrez les meilleurs tubes de la Pop. De quoi passer une nuit torride, ou alors de se réveiller le matin avec un plein d'énergie... + Musique + Clips + + + Tout public + + + + Incroyables transformations + Des experts de la mode (Charla Carter, Léa Djadja et Nicolas Waldorf) ont créé une agence pas comme les autres pour venir en aide à des clients qui se plaignent du look de l'un de leurs proches, qu'il est urgent de changer ! Mais pour nos experts, pas de soucis, car aucun look ne les arrête… + Divertissement + + + Tout public + + + + Incroyables transformations + Des experts de la mode (Charla Carter, Léa Djadja et Nicolas Waldorf) ont créé une agence pas comme les autres pour venir en aide à des clients qui se plaignent du look de l'un de leurs proches, qu'il est urgent de changer ! Mais pour nos experts, pas de soucis, car aucun look ne les arrête… + Divertissement + + + Tout public + + + + Incroyables transformations + Des experts de la mode (Charla Carter, Léa Djadja et Nicolas Waldorf) ont créé une agence pas comme les autres pour venir en aide à des clients qui se plaignent du look de l'un de leurs proches, qu'il est urgent de changer ! Mais pour nos experts, pas de soucis, car aucun look ne les arrête… + Divertissement + + + Tout public + + + + M6 Boutique + Retrouvez les dernières innovations et des offres exclusives en matière de bijoux, beauté, cuisine, maison. + Magazine + Mag. TV-Achat + + + Tout public + + + + Ça peut vous arriver + Julien Courbet va tout tenter pour résoudre vos problèmes mais aussi apporter des infos juridiques et conseils spécifiques. La parole est donnée à toutes les parties pour que toutes les situations litigieuses trouvent un dénouement positif ! + Magazine + Mag. Service + + + Tout public + + + + Ça peut vous arriver chez vous + Julien Courbet, entouré d'avocats et d'experts, tente de résoudre vos problèmes mais aussi apporter des infos juridiques et conseils spécifiques. Des envoyés spéciaux sillonnent les régions, recueillent les témoignages et illustrent les cas en images. + Magazine + Mag. Service + + + Tout public + + + + Météo + Les prévisions météo sur M6 c'est, par tous les temps, un vrai moment de fun, car la bonne humeur ne dépend ni du soleil, ne de la pluie, ni de l'épais brouillard, ni de la froidure,... + Info-Météo + Information + + + Tout public + + + + Le 12.45 + Retrouvez toute l'actualité de la mi-journée. + Info-Météo + Information + + + Tout public + + + + Météo + Les prévisions météo sur M6 c'est, par tous les temps, un vrai moment de fun, car la bonne humeur ne dépend ni du soleil, ne de la pluie, ni de l'épais brouillard, ni de la froidure,... + Info-Météo + Information + + + Tout public + + + + Scènes de ménages + Votre couple vous désole ? Vous vous lamentez de vivre seul ? Scènes de Ménages va vous aider à relativiser ! + Série + Série Rires + + + Tout public + + + + Un jour, un doc + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Un jour, un doc + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Un jour, un doc + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Un jour, un doc + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Le château de mes rêves + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Objectif Top Chef + Semaine finale : la demi-finale + Trois candidats s'affrontent pour accéder à la finale. Ils tentent de faire mieux que Juan Arbelaez et Yoann Conte afin de marquer le plus de points. + Magazine + Mag. Société + + 8 . 0 . + + Tout public + + + + Météo + Les prévisions météo sur M6 c'est, par tous les temps, un vrai moment de fun, car la bonne humeur ne dépend ni du soleil, ne de la pluie, ni de l'épais brouillard, ni de la froidure,... + Info-Météo + Information + + + Tout public + + + + Le 19.45 + Le journal de M6. + Info-Météo + Information + + + Tout public + + + + Direct dans votre poche + Zoom sur des moyens astucieux pour optimiser son pouvoir d'achat et améliorer son quotidien en faisant des économies. + Magazine + Mag. Service + + + Tout public + + + + Scènes de ménages + José et Liliane, Raymond, Emma et Fabien, Camille et Philippe, Léo et Leslie, Jalil et Louise ainsi que Christine et Gilbert sont de retour pour une 15e saison inédite qui promet de joyeux moments ! + Série + Série Rires + + + Tout public + + + + Cauchemar en cuisine + Bertholène + A Bertholène, dans l'Aveyron Emmanuel a repris le seul restaurant du village il y a six ans. Aujourd'hui les clients ont déserté l'établissement. + Documentaire + Doc. Société + + 10 . 0 . + + Tout public + + + + Un chef au bout du monde avec Philippe Etchebest + Les îles Marquises + Après trente ans à parcourir les cuisines de France, le chef Philippe Etchebest part explorer l'un des archipels les plus isolés au monde : les îles Marquises. + Documentaire + Doc. Découverte + + 0 . 0 . + + Tout public + + + + Cauchemar en cuisine + Notre-Dame-de-Vaulx + En Isère, à Notre-Dame-de-Vaulx, Philippe Etchebest se porte au secours de Béatrice et Patrice, dont le restaurant est au bord de la faillite. + Documentaire + Doc. Société + + 10 . 0 . + + Tout public + + + + Météo + Les prévisions météo sur M6 c'est, par tous les temps, un vrai moment de fun, car la bonne humeur ne dépend ni du soleil, ne de la pluie, ni de l'épais brouillard, ni de la froidure,... + Info-Météo + Information + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Télé-achat + Le magazine de télé-achat de TMC. + Magazine + Mag. TV-Achat + + + Tout public + + + + H + Une histoire de mec formidable + Aymé entreprend de séduire Sabine, une cardiologue. Tout paraît aller pour le mieux, jusqu'à l'arrivée de Julien, un nouveau brancardier. Au grand dam d'Aymé, celui-ci jouit immédiatement d'une incroyable popularité. Jamel et Sabri, quant à eux, décident de concourir pour le Prix Nobel... + Série + Série Rires + + 1 . 10 . + + Tout public + + + + H + Une histoire de champignons + Sabri s'est découvert une passion pour la cuisine. Il concocte une omelette aux champignons pour Aymé, mais la dernière bouchée passe plutôt mal. + Série + Série Rires + + 1 . 11 . + + + -10 + + + + H + Une histoire de cousine + Après la mise en place des 35 heures, Jamel se voit contraint de partager son poste de standardiste avec une femme, pour respecter le principe de parité. Considérant que ses responsabilités ne peuvent pas se partager, le petit malin décide de pistonner sa "cousine" Nadia, c'est-à-dire lui-même déguisé en femme... + Série + Série Rires + + 1 . 12 . + + + -10 + + + + H + Une histoire de cousine + Sabri s'entretient avec un nouveau patient qui prétend être gagné par la malchance depuis qu'il porte sa nouvelle montre. Perplexe, Sabri propose de porter cette montre afin d'en avoir le coeur net. A peine l'a-t-il ajustée à son poignet qu'il se cogne. Strauss s'inquiète au sujet de son contrôle fiscal... + Série + Série Rires + + 1 . 13 . + + + -10 + + + + H + Une histoire de chasse + Strauss propose à Sabri de l'accompagner lors d'un week-end de chasse. Jamel, de son côté, a commis une "toute petite faute" qui pourrait lui valoir un blâme. + Série + Série Rires + + 1 . 14 . + + Tout public + + + + C'Cauet Le meilleur + Episode 154 + Chaque semaine, retour en images sur les meilleurs moments de l'émission de radio que Cauet anime avec toute sa bande de chroniqueurs sur NRJ. + Divertissement + + 0 . 7 . + + + -10 + + + + C'Cauet Le meilleur + Episode 155 + Suite au succès incontesté de l'émission radio de Cauet sur NRJ, le meilleur de \" C'Cauet \" arrive enfin dans votre télé. Retrouvez, en images, les meilleurs moments de Cauet et de toute sa bande de chroniqueurs. Canular, jeu en tout genre et surtout toutes vos stars préférées comme vous ne les avez jamais vues ! Un seul mot d'ordre, se marrer. + Divertissement + + 0 . 0 . + + + -10 + + + + The Big Bang Theory + La fusée russe à réaction + Sheldon est vexé quand Leonard se rend à une soirée avec des acteurs de Star Trek. De son côté, Bernadette veut empêcher Howard de se transporter dans l'espace... + Série + Série Rires + + 4 . 4 . + + Tout public + + + + The Big Bang Theory + Une mère envahissante + Sheldon apprend que sa mère va passer quelques jours chez lui. Une fois installée, elle lui annonce qu'elle n'a pas l'intention de lui préparer ses repas. + Série + Série Rires + + 4 . 5 . + + Tout public + + + + The Big Bang Theory + Le dilemme de Léonard + Sheldon essaie de se placer dans l'esprit d'Halloween et tente d'effrayer ses amis. Pendant ce temps, un artiste de BD s'intéresse à Leonard... + Série + Série Rires + + 4 . 6 . + + Tout public + + + + The Big Bang Theory + Problème d'isolation + Amy est blessée quand Bernadette et Penny vont faire leurs courses de demoiselles d'honneur sans elle. Elle s'adresse alors à Sheldon pour trouver du réconfort. + Série + Série Rires + + 4 . 7 . + + Tout public + + + + The Big Bang Theory + La phobie de Sheldon + Sheldon fait tout pour surmonter sa peur maladive des oiseaux. De leur côté, Leonard et Penny tentent de sortir ensemble comme de simples amis. + Série + Série Rires + + 4 . 8 . + + Tout public + + + + The Big Bang Theory + La quadruple négation + Quand Stuart propose à Amy de sortir avec lui, Sheldon se dit qu'il est temps de passer aux choses sérieuses avec elle. Le groupe se passionne pour un jeu. + Série + Série Rires + + 4 . 9 . + + Tout public + + + + The Big Bang Theory + Le bourreau de Léonard + Leonard est obligé d'affronter l'homme qui l'a autrefois martyrisé pendant sa scolarité, Jimmy Speckerman. C'est alors que Penny se remet en question... + Série + Série Rires + + 4 . 10 . + + Tout public + + + + The Big Bang Theory + Princesse Amy + Penny décide d'aider Sheldon qui est empêtré dans sa relation avec Amy. De son côté, Howard a du mal à accepter le dégoût de Bernadette pour les enfants... + Série + Série Rires + + 4 . 11 . + + Tout public + + + + The Big Bang Theory + L'hypothèse de recombinaison + Leonard et Penny se plaisent à l'idée de revivre leur romance depuis le début. Pendant ce temps, Sheldon essaie sans succès d'acheter un souvenir de Star Trek... + Série + Série Rires + + 4 . 12 . + + Tout public + + + + The Big Bang Theory + Démarrage du béta test + Leonard et Penny trouvent une méthode pour optimiser leurs sorties en amoureux. Raj trouve enfin une voix à qui parler : celle, virtuelle, de son téléphone... + Série + Série Rires + + 4 . 13 . + + Tout public + + + + The Big Bang Theory + Le contrat d'amitié + Leonard n'est plus qu'une connaissance pour Sheldon quand il rejette leur pacte de colocation. De son côté, Howard se cherche un nom d'astronaute. + Série + Série Rires + + 4 . 14 . + + Tout public + + + + The Big Bang Theory + L'enfer des vacances + L'université contraint Sheldon à prendre quelques jours de vacances. Une situation inattendue et un brin déconcertante, qui l'amène à traîner dans le laboratoire d'Amy. De son côté, Bernadette impose ses conditions à Howard... + Série + Série Rires + + 4 . 15 . + + Tout public + + + + The Big Bang Theory + La guerre du bureau + Sheldon parvient à coiffer Barry Kripke au poteau et obtient un poste convoité à l'université. De son côté, Amy fait un bien étrange cadeau à Penny... + Série + Série Rires + + 4 . 16 . + + Tout public + + + + The Big Bang Theory + La transformation du loup-garou + Sheldon devient fou quand il ne peut pas obtenir une coupe de cheveux de son coiffeur favori, qui est malade. Howard a bien du mal avec son entraînement... + Série + Série Rires + + 4 . 17 . + + Tout public + + + + The Big Bang Theory + Le vortex du week-end + Les quatre garçons décident de s'organiser un week-end entre hommes, consacré exclusivement aux jeux vidéo. Amy n'apprécie pas ce projet : elle avait l'intention de présenter Sheldon à sa famille. Ce dernier doit trouver un compromis, afin de satisfaire Amy, sans pour autant oublier ses amis... + Série + Série Rires + + 4 . 18 . + + Tout public + + + + The Big Bang Theory + Le dysfonctionnement du téléporteur + Raj se résout à demander de l'aide à ses parents pour trouver la femme de sa vie. Sheldon entend des voix : il croit que sa figurine de Spock lui parle. + Série + Série Rires + + 4 . 19 . + + Tout public + + + + The Big Bang Theory + La vengeance d'Howard + Howard a la chance de pouvoir travailler avec le scientifique de génie Stephen Hawking. Sheldon veut aussi rencontrer le savant. Howard en profite pour satisfaire une petite vengeance... + Série + Série Rires + + 4 . 20 . + + Tout public + + + + The Big Bang Theory + Alcool, sexe et mensonges + Deux semaines avant le mariage entre Bernadette et Howard, Raj organise l'enterrement de vie de garçon de son ami Howard. Ce dernier annonce qu'il n'y aura pas de strip-teaseuse pour ne pas froisser Bernadette. Mais certaines révélations faites au cours de la soirée pourraient bien menacer le mariage... + Série + Série Rires + + 4 . 21 . + + Tout public + + + + The Big Bang Theory + L'accélération du lancement + La mission de Howard dans l'espace est avancée, ce qui pose des problèmes pour l'organisation du mariage. Amy use de psychologie pour se rapprocher de Sheldon... + Série + Série Rires + + 4 . 22 . + + Tout public + + + + The Big Bang Theory + Un mariage express + Bernadette annonce à tous qu'elle souhaite se marier avant le départ en mission de Howard. Les préparatifs commencent dans la hâte et la précipitation. + Série + Série Rires + + 4 . 23 . + + Tout public + + + + The Big Bang Theory + Un rendez-vous fluctuant + Même dans sa navette spatiale, Howard doit gérer les disputes de sa mère et de sa femme. Seul célibataire de la troupe, Raj se sent abandonné. Il tente de remédier à son isolement en s'invitant au dîner romantique qu'ont prévu Sheldon et Amy. Mais la jeune femme apprécie peu la situation... + Série + Série Rires + + 5 . 0 . + + Tout public + + + + The Big Bang Theory + Les fluctuations du découplement + Lors d'une soirée entre filles, Penny avoue à Amy et Bernadette qu'elle n'est pas sûre de ses sentiments pour Leonard. Elle songe même à le quitter. Amy révèle accidentellement cette information à Sheldon, qui supplie Penny de changer d'avis. De son côté, Stuart est invité à participer aux soirées de la bande. Sheldon, d'abord réticent, lui demande de se comporter de la même façon qu'Howard... + Série + Série Rires + + 5 . 1 . + + Tout public + + + + The Big Bang Theory + Le mal de l'espace + Sheldon embauche une assistance, Alex. La jeune femme est particulièrement séduisante et ne manque pas de rendre Amy jalouse. Alex s'est en réalité entichée de Leonard. Penny, contrariée, essaie discrètement de savoir ce qu'en pense le garçon. De son côté, Howard apprend que son séjour dans l'espace est prolongé. Complètement paniqué, il demande à Bernadette de venir le sauver... + Série + Série Rires + + 5 . 2 . + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Télé-achat + Le magazine de télé-achat de TMC. + Magazine + Mag. TV-Achat + + + Tout public + + + + Modern Family + Dans de beaux draps + Claire et Phil fêtent leur anniversaire. Pour leur faire plaisir, les enfants leur apportent leur petit déjeuner au lit. Mais ils les surprennent dans une position plutôt gênante. Par ailleurs, Mitch et Cam souhaitent pouvoir manger dans le nouveau restaurant à la mode qui vient d'ouvrir dans le quartier... + Série + Série Rires + + 1 . 12 . + + Tout public + + + + Modern Family + Le retour de Mister Clive + Afin de pimenter leur Saint-Valentin, Claire et Phil endossent les rôles qu'ils avaient adoptés pour cette fête l'année passée. Jay se laisse lui aussi aller au romantisme. Il prépare une surprise à Gloria mais rien ne se passe comme prévu. Par ailleurs, un admirateur secret s'immisce entre Cameron et Mitchell. Ils n'arrivent pas à se mettre d'accord : lequel d'entre eux est vraiment concerné ?... + Série + Série Rires + + 1 . 13 . + + Tout public + + + + Modern Family + Rencontre du 2ème type + DeDe Pritchett, la mère de Mitch et de Claire, doit bientôt arriver. Cette visite angoisse Claire, ce qui s'aggrave lorsqu'elle voit que sa mère n'est pas venue seule. Elle est accompagnée de Robbie, l'ancien petit copain de lycée de Claire. DeDe est également là pour assister à l'anniversaire de Lily... + Série + Série Rires + + 1 . 14 . + + Tout public + + + + Modern Family + Non je ne regrette rien + Claire et Phil se sont vivement disputés. Gloria donne des conseils à Phil tandis que Jay s'occupe de Claire. Jay a de quoi, lui aussi, avoir quelques regrets. Il a offert un appareil de karaoké à Gloria, mais celle-ci chante comme une casserole. Il ne sait pas comment le lui annoncer, de peur de la vexer. Par ailleurs, Cameron prépare un grand événement. Il demande de l'aide à Mitchell et Luke... + Série + Série Rires + + 1 . 15 . + + Tout public + + + + Modern Family + Deux singes et un panda + Claire tente d'apaiser les relations entre Haley et Alex tandis que Phil s'offre une journée de détente au spa. Par ailleurs, Jay a des préoccupations quelque peu morbides. Il a pris rendez-vous aux pompes funèbres afin de préparer son enterrement. Cette initiative attriste Gloria, qui prend conscience que Jay mourra sans doute avant elle. De son côté, Cam projette d'écrire un livre... + Série + Série Rires + + 1 . 16 . + + Tout public + + + + Modern Family + Une soirée très gay + Luke se lie d'amitié avec un voisin grincheux qui effraie Claire et Phil. Jay, quant à lui, parvient à éviter le concert de musique classique auquel veulent l'emmener Gloria et Manny. Il s'immisce dans la soirée "garçons" organisée dans un restaurant par Cameron et Mitchell avec certains de leurs amis. Il surprend son fils par son attitude. Pendant ce temps, Haley garde Lily... + Série + Série Rires + + 1 . 17 . + + Tout public + + + + Modern Family + Voyage musical autour du monde + Cameron a pris la direction artistique et musicale du spectacle de l'école de Luke et Manny. Il s'investit avec beaucoup de zèle dans cet événement et demande à Mitchell de le soutenir. Par ailleurs, Jay reçoit la visite de son frère. Les deux hommes n'ont pas l'habitude de se voir... + Série + Série Rires + + 1 . 18 . + + Tout public + + + + Modern Family + Tuteurs nés + Mitchell et Cameron s'inquiètent de l'avenir de leur petite fille. Ils se demandent à qui confier Lily en cas de malheur. Les deux papas pensent évidemment aux membres de leur famille. Avant d'arrêter leur choix, ils les observent secrètement. Pendant ce temps, Claire décide d'emmener Luke chez un psychologue, sans en avertir Phil... + Série + Série Rires + + 1 . 19 . + + Tout public + + + + Modern Family + L'amour en mère + Pour la fête des mères, Claire et Gloria emmènent les enfants faire une randonnée. Mais l'excursion est loin de les ravir. A force de plaintes, les deux mères décident de continuer seules leur promenade. Pendant ce temps, Jay et Phil cuisinent tandis que Cameron s'interroge sur son rôle dans sa famille... + Série + Série Rires + + 1 . 20 . + + Tout public + + + + Modern Family + Phil la menace + Claire et Phil décident d'échanger leurs rôles. Claire sera le gentil flic et Phil le méchant. A lui de se montrer strict avec les enfants et de faire régner la discipline. Pendant ce temps, Jay accepte de donner des conseils à un ami de Gloria. De son côté, Cameron est cloué au lit par la grippe... + Série + Série Rires + + 1 . 21 . + + Tout public + + + + Modern Family + Le ciboulot de la promo + Alex doit prononcer un discours de fin de cycle scolaire avant sa rentrée au lycée l'an prochain. Toute la famille a prévu de se rendre à la cérémonie. Mais Jay doit cacher les effets d'une intervention esthétique ratée, Cameron ne supporte plus l'humour de Mitchell, et Phil se dispute avec Claire... + Série + Série Rires + + 1 . 22 . + + Tout public + + + + Modern Family + Ohé du bateau ! + C'est l'anniversaire de Jay. Il aimerait bien passer ce jour particulier à la pêche mais sa famille, qui lui prépare une fête, ne lui laisse pas de répit. Au lieu d'être seul sur un lac, Jay doit aider Claire et Mitchell, coincés dans le jardin de leur ancienne maison. Un chien les empêche de repartir... + Série + Série Rires + + 1 . 23 . + + Tout public + + + + Modern Family + Chapeau de cow-boy et bottes de cuir + Toute la famille part en week-end dans un ranch. Hank, qui les accueille, leur donne des surnoms et serre Gloria d'un peu trop près. Mitchell veut affirmer son côté masculin et Phil prouver à Jay qu'il peut être un vrai cow-boy... + Série + Série Rires + + 2 . 0 . + + Tout public + + + + Modern Family + À tort ou à raison + Mitchell et Cameron s'apprêtent à annoncer à toute la famille qu'ils vont adopter un deuxième enfant, mais ils s'aperçoivent que Lily n'est pas prête à accueillir un petit frère. Jay et Gloria ne sont pas d'accord sur la façon de punir Manny pour avoir volé un collier... + Série + Série Rires + + 2 . 1 . + + Tout public + + + + Modern Family + Sur la corde raide + Phil et Luke apprennent le funambulisme tandis que Claire doit gérer une dispute entre Alex et Haley. Mitchell accompagne Cameron dans un régime draconien, et Gloria ne supporte plus les attentions de Jay envers son chien... + Série + Série Rires + + 2 . 2 . + + Tout public + + + + Modern Family + Porte-à-porte + Toute la famille fait du porte-à-porte : Claire récolte des signatures pour une pétition afin d'installer un panneau de signalisation, Jay aide Manny à devenir un bon vendeur à l'occasion d'une collecte de fonds pour l'école, tandis que Gloria et Cameron sont à la recherche du chien... + Série + Série Rires + + 2 . 3 . + + Tout public + + + + Mon oncle Charlie + Dans l'intérêt de l'enfant + Jake ne cache plus qu'il en a vraiment assez des disputes constantes entre Charlie et Alan. Comprenant qu'ils ne parviendront pas à apaiser leur relation, il leur fait part de sa décision de ne plus habiter avec eux. Charlie et Alan tentent alors de faire des efforts pour que Jake revienne... + Série + Série Rires + + 6 . 4 . + + Tout public + + + + Mon oncle Charlie + Donne-moi ton pouce + Depuis trop longtemps, Chelsea souffre du dos. Lorsqu'elle mentionne l'intensité des douleurs qui gâchent son quotidien, Alan lui suggère de recourir à la chirurgie esthétique. En effet, ne suffit-il pas de faire réduire la conséquente poitrine de Chelsea pour régler le problème ? Charlie feint d'être d'accord. Que va décider la jeune femme ?... + Série + Série Rires + + 6 . 5 . + + Tout public + + + + Mon oncle Charlie + Non souillé par la saleté + Soulagée, Evelyn peut enfin confirmer à Chelsea que son mariage pourra avoir lieu comme elle le souhaite. Mais alors que la date fatidique approche, Charlie commence à se rendre compte qu'il va bientôt devenir un homme marié. Alan ne le rassure pas en lui rappelant tout ce à quoi il va devoir renoncer... + Série + Série Rires + + 6 . 6 . + + Tout public + + + + Mon oncle Charlie + Ouaf ouaf, miaou, meuh + Gail, une jeune amie de Chelsea, est invitée à rester à la maison. La jeune fille n'est guère en forme et n'a pas le moral. Elle vient en effet tout juste de rompre avec son compagnon. Personne ne comprend pourquoi il l'a quittée : tout le monde est enthousiasmé par le caractère de cette charmante personne - même Berta. Petit à petit, Charlie se sent très attiré par Gail... + Série + Série Rires + + 6 . 7 . + + Tout public + + + + Mon oncle Charlie + La laque pour cheveux du capitaine Terry + A son grand étonnement, Chelsea est très affectée d'apprendre que son ex-mari va se remarier. Très vite, son entourage réalise qu'elle ne parvient pas à échapper à la déprime. De son côté, Alan décide de prendre des comprimés afin de lutter contre sa calvitie naissante... + Série + Série Rires + + 6 . 8 . + + Tout public + + + + Mon oncle Charlie + On devrait plutôt les appeler les "salles de boules" + Chelsea parvient à convaincre Charlie qu'il doit prendre des cours de danse avant leur mariage. Finalement, Charlie en vient à se dire qu'épouser Chelsea peut être une bonne chose. Mais lorsqu'il découvre que sa promise est propriétaire de plusieurs immeubles, il se demande pourquoi elle veut se marier avec lui, si ce n'est pas pour l'argent... + Série + Série Rires + + 6 . 9 . + + Tout public + + + + Mon oncle Charlie + Je vous préviens, c'est cochon + Alan est aux fourneaux et prépare le traditionnel dîner de Noël. Céleste, la petite amie de Jake, a quitté la ville pour les fêtes. Charlie conseille à son neveu de sortir avec une autre fille. Alan le lui déconseille. Mais Jake suit l'avis de Charlie. Céleste ne manque pas de le surprendre avec une autre... + Série + Série Rires + + 6 . 10 . + + Tout public + + + + Mon oncle Charlie + Les blagues de pétomanes, les tartes et céleste + Comprenant que la séduction est tout un art, Jake décide de tout faire pour plaire à sa dulcinée. Sans tarder, il essaie de composer alors des chansons d'amour. Mais exprimer ses sentiments de manière poétique n'est pas une mince affaire. L'élue de son coeur sera-t-elle sensible aux mots qu'il aura choisis ? + Série + Série Rires + + 6 . 11 . + + Tout public + + + + Mon oncle Charlie + Ouais ! Pas de polype ! + Pour éviter une visite chez les parents de Chelsea, Charlie décide se trouver une excuse. La seule solution imparable qu'il trouve le contraint à accepter de subir une coloscopie. Sans hésiter, il se plie à cet examen plutôt désagréable. A son retour à la maison, une surprise l'attend... + Série + Série Rires + + 6 . 12 . + + Tout public + + + + Mon oncle Charlie + Grossier et totalement déplacé + Alan est en prison après avoir causé une bagarre dans un bar. L'avocat chargé de sa défense ne laisse pas Chelsea indifférente, au grand dam de Charlie... + Série + Série Rires + + 6 . 13 . + + Tout public + + + + Mon oncle Charlie + A tes ordres capitaine égoïste + Lorsque Chelsea rentre aux petites lueurs du jour, Charlie lui fait une scène. Il laisse éclater sa jalousie et lui lance que Brad est parfait pour elle. Chelsea quitte alors la maison et se réfugie chez un ami pendant plusieurs jours. Charlie, anéanti, commence à boire. Mais Chelsea le rappelle... + Série + Série Rires + + 6 . 14 . + + Tout public + + + + Ma meilleure ennemie de Noël + Trish et Diana sont les reines de Noël de la ville de North Pole. Chaque année, elles participent au concours de décoration de maisons. A neuf reprises, elles ont remporté le Renne d'Or, le trophée destiné aux vainqueurs . Mais cette année, quelques jours avant Noël, les deux meilleures amies se disputent... + Film + Film Passion + + + Tout public + + + + Le bal masque de noel + Au cours d'un bal masqué donné par Peter, un célèbre homme d'affaire plutôt réservé, Julieanne est prise pour sa patronne. Elle décide de maintenir la supercherie jusqu'à Noël et tente de le recruter comme client. Mais Peter a de plus en plus envie de passer du temps en compagnie de Julieanne... + Film + Film Passion + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Programme + Programme indéterminé + + + Tout public + + + + Téléachat + Le magazine de télé-achat de TMC. + Services + Télé-achat + + + Tout public + + + + Parents mode d'emploi + Isa et Gaby Martinet, un couple de quadragénaires, parents de trois enfants, s'efforcent d'être à la hauteur de leur tâche, tout en jonglant avec leurs devoirs conjugaux. Au programme, des désaccords, des ratés, des découragements et des ruses inavouables pour parvenir à leurs fins. + Série + Comédie + + Tout public + + + + Clem + En mémoire de ton sourire + Après l'agression dont il s'est rendu coupable, Valentin se rend à la police. Clem remue ciel et terre pour le défendre. Parallèlement, elle est convaincue de détenir l'identité du coupable de son accident de voiture. Les obstacles s'enchaînent et la jeune femme comprend que sans sa tribu elle ne pourra réussir à sauver Valentin... + Série + Comédie + 8 . 5 . + + Tout public + + + + Clem + Je suis là + La vie sourit enfin à Clem qui trouve un nouveau travail de magasinière dans une usine locale et entame une romance avec Fred, sans se douter qu'il est lié à la mort de sa mère. Valentin, lui, se pose des questions sur son couple avec Izia. Est-ce la bonne personne pour sa première fois ? De son côté, Adrian, nouveau père célibataire, a la joie de retrouver son fils mais sans emploi les factures s'accumulent vite et il doit faire des choix. Par ailleurs, Salomé, jeune interne et pompier volontaire au bord du burn out, doit affronter des épreuves difficiles. Pendant ce temps, Marie-France et Michel font face aux premiers tumultes de l'adolescence de Victoire tout en accueillant Izia sous leur toit... + Série + Comédie + 9 . 0 . + + Tout public + + + + Clem + Mon amour + Le compte à rebours est lancé : Clem doit vite trouver la cause de l'empoisonnement. Val est aussi déterminé qu'elle et tombe sous le charme d'une jeune activiste écologiste. En plein tumulte, Clem, combattive, sait qu'elle peut compter sur Fred. Mais qui est-il vraiment ?... + Série + Comédie + 9 . 1 . + + Tout public + + + + Clem + Je ne lâcherai pas + La tribu se resserre autour du drame de l'empoisonnement d'Emma. Tout en menant son enquête, Clem rêve d'une nouvelle vie avec Fred, pour elle et ses enfants. Mais Fred est bientôt rattrapé par ses mensonges. Pendant ce temps, Valentin, lui, s'engage de plus en plus dans l'écologie auprès de Clara, s'éloignant ainsi d'Izia et de Joris... + Série + Comédie + 9 . 2 . + + Tout public + + + + The Middle + Chasse à l'homme + Brick ne comprend pas pourquoi son camarade juif est devenu un homme lors de sa Bar Miztvah alors que lui est toujours considéré comme un adolescent. Il demande conseil à ses parents puis aux collègues de son père. De son côté, Sue prend conscience qu'elle ne sait pas flirter. Axl emménage dans un camping-car... + Série + Comédie + + 6 . 15 . + + Tout public + + + + The Middle + Les dents de sagesse + Frankie profite des vacances de printemps de Sue et d'Axl pour leur faire enlever leurs dents de sagesse. Sous le coup des anesthésiants, Axl avoue à sa soeur qu'il l'aime. Frankie est contente d'avoir ses enfants malades à la maison car elle va pouvoir les chouchouter. Mais Brad vient lui voler la vedette... + Série + Comédie + + 6 . 16 . + + Tout public + + + + The Middle + Des vacances à la Donahue + Ayant gagné un peu d'argent, Mike offre à sa famille un week-end dans le Kentucky. Frankie propose d'y aller avec les Donahue pour avoir des gens à qui parler. Sue réussit à décrocher un boulot d'été dans un autre Etat. Son père refuse qu'elle parte mais comprend que sa fille est devenue une femme... + Série + Comédie + + 6 . 17 . + + Tout public + + + + The Middle + La honte + Sue est secrètement amoureuse de son professeur d'histoire et le harcèle malgré elle. Son professeur le lui fait remarquer et, prise de honte, Sue décide de ne plus se présenter à son cours. De son côté, Frankie regrette l'époque où Mike et elle sortaient avec les parents des amis d'Axl... + Série + Comédie + + 6 . 18 . + + Tout public + + + + The Middle + Le papier millimétré + Brick demande à sa mère de lui acheter du papier millimétré pour le lendemain. Frankie, trop fatiguée pour ressortir, utilise le code de Nancy pour acheter le papier sur Internet et se le faire livrer en un jour. Axl annonce à son père qu'il veut quitter l'équipe de football et Sue présente son nouveau petit copain à sa mère... + Série + Comédie + + 6 . 19 . + + Tout public + + + + The Middle + Le lanaï + Avec l'aide de ses employés, Mike construit à Frankie une belle terrasse pour qu'elle puisse se reposer au soleil pendant l'été. Mais c'est sans compter sur les nouveaux voisins, dont les trois enfants passent leur temps dans le jardin à jouer et à hurler. Sue et Lexie ont tiré le gros lot : la plus belle chambre de la résidence. Malheureusement, les occupantes actuelles ne semblent pas décidées à plier bagage... + Série + Comédie + + 6 . 20 . + + Tout public + + + + Big Bang Theory + Le catalyseur dramaturgique + Pour améliorer ses talents d'instructeur, Sheldon demande à Penny de lui donner des cours de comédie. Pendant ce temps, Raj se met à fantasmer sur Bernadette... + Série + Comédie + + 3 . 13 . + + Tout public + + + + Big Bang Theory + L'effet bienfait + Pour assurer l'avenir de leur école, Sheldon demande à Leonard de devenir l'ami d'un bienfaiteur potentiel, qui pourra faire de généreux dons... + Série + Comédie + + 3 . 14 . + + Tout public + + + + Big Bang Theory + L'équation de la cohabitation + Bernadette demande instamment à Howard de choisir entre sa mère et elle. Penny, de son côté, n'apprécie guère que Leonard revoie la soeur de Raj. + Série + Comédie + + 3 . 15 . + + Tout public + + + + Big Bang Theory + L'origine du toast + Sheldon est inquiet : il vient de comprendre, lors d'une discussion à l'appartement de Raj, que Leonard est le véritable centre d'intérêt de tous ses amis. + Série + Comédie + + 3 . 16 . + + Tout public + + + + Big Bang Theory + Prestidigitation et approximation + Howard réalise un tour de cartes avec la complicité de Raj, Penny et Leonard. Sheldon tente désespérément de comprendre comment il a pu le réaliser. Priya trouve que Penny est un peu trop présente dans la vie de Leonard, elle lui demande de prendre ses distances avec son ex. + Série + Comédie + + 3 . 17 . + + Tout public + + + + Big Bang Theory + L'intrusion de Zarnecki + Tout le groupe d'amis est mobilisé pour découvrir quelle est la personne qui a piraté le compte sécurisé de Sheldon pour jouer en ligne à "World of Warcraft". De son côté, Priya, la soeur de Raj, commence à être véritablement agacée par le comportement puéril de Leonard. Elle ne supporte plus certaines de ces réactions. + Série + Comédie + + 3 . 18 . + + Tout public + + + + Big Bang Theory + Commérages et herbes aromatiques + Sheldon et Amy mènent une expérience secrète qui vise à propager des rumeurs au sein du groupe. La relation entre Howard et Bernadette passe un nouveau cap... + Série + Comédie + + 3 . 19 . + + Tout public + + + + H + Une histoire de mec formidable + Aymé se sent l'âme d'un Roméo survolté et entreprend de séduire Sabine, une cardiologue. Tout paraît aller pour le mieux, jusqu'à l'arrivée de Julien, un nouveau brancardier. Au grand dam d'Aymé, très agacé, celui-ci jouit immédiatement d'une incroyable popularité. Jamel et Sabri, quant à eux, décident de concourir pour le Prix Nobel, ni plus ni moins. Jamel prétend en effet avoir mis au point une pilule qui fait rajeunir. Sabri, pour son plus grand malheur, lui sert de cobaye... + Série + Comédie + 1 . 10 . + + Tout public + + + + H + Une histoire de théâtre + Clara a déniché un appartement à louer : une aubaine, tant le montant du loyer est dérisoire. Seul hic : le propriétaire, fervent défenseur des valeurs morales traditionnelles et notamment familiales, exige qu'il soit loué à un couple. Ni une ni deux : Aymé endossera le rôle du futur mari. Sabri, quant à lui, joue dans une pièce de théâtre : sa prestation est catastrophique, mais personne n'ose le lui avouer... + Série + Comédie + 1 . 16 . + + + -10 + + + + Crimes + Pyrénées : sur la piste du tueur + "Piège en mer à Hossegor". Florine, la trentaine, vit à Saint-Vincent-de-Tyrosse, dans les Landes. Le mardi 11 octobre 2011, ses parents, André et Monique, se rendent au commissariat. Depuis près de 24 heures, leur fille leur envoie des messages étranges mais ne répond pas aux appels. "Règlement de compte à Bompas". Laurent vit à Bompas, une commune de la Région Occitanie. Il s'occupait d'une radio à Bézier et poursuit sa carrière sur Perpignan. Mais son nouveau travail se passe mal et Laurent se retrouve au chômage. Commence alors pour lui une descente aux enfers. Il s'isole, donne peu de nouvelles à sa fille, et sombre dans l'alcool. "Guet-apens mortel à Perpignan". Erika, 17 ans, vit à Perpignan. Elle a un parcours de vie assez chaotique. En conflit avec Saïda, sa maman, elle a été placée en foyer. + Magazine + Société + + 0 . 2 . + + + -10 + + + + Crimes + Crimes en Bourgogne + Au sommaire : "Qui a tué Christelle ?". Le 18 décembre 1986, Christelle, une adolescente de 16 ans, est retrouvée poignardée de 33 coups de couteau, dans un local à vélo de la cité des Charmilles, au Creusot. Des témoins évoquent un homme blond aperçu non loin de la scène de crime. - "Le tueur somnambule". Le 3 octobre 2008, à Cluny, un jeune homme découvre sa mère baignant dans son sang dans sa chambre. Le médecin légiste dépêché sur place est formel : elle est morte sous des coups d'une rare sauvagerie. - "Rendez-vous mortel". Le 22 mars 1999, Dominique Têtu, ouvrier à Chalon-sur-Saône, ne se présente pas à son poste à l'usine. Deux jours plus tard, ce père aimant manque toujours à l'appel et sa famille est sans nouvelle. Françoise, sa soeur, décide alors de mener l'enquête. + Magazine + Société + + 2 . 0 . + + + -10 + + + + Crimes + Crimes dans la Somme + "Deux victimes pour un tueur". Le 6 juillet 2002, Patricia, une serveuse de 18 ans, a disparu à la sortie de son travail. Son corps est découvert le surlendemain. Quelques semaines plus tard, le corps de Christelle, 18 ans, est découvert sous une camionnette. Les deux jeunes femmes ont été assassinées avec la même sauvagerie. "Mystérieux tueur". Le 6 décembre 2011, le corps d'Alexandre, 24 ans, est retrouvé dans un ancien marais près d'Amiens. Il a été tué de deux balles. La police fait le rapprochement avec la mort de Julien, disparu dans des circonstances similaires neuf mois plus tôt. "Chronique d'un drame annoncé". Le 9 décembre 2007, à Ochancourt, Isabelle célèbre les 20 ans sa fille. Mais la fête vire au cauchemar. Sous les yeux des enfants, Bruno, son ex-compagnon, tue Isabelle et blesse mortellement Sandrine, sa nièce. + Magazine + Société + + 2 . 4 . + + + -10 + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Programme + Programme indéterminé + + + Tout public + + + + Télé-achat + Le magazine de télé-achat de TMC. + Magazine + Mag. TV-Achat + + + Tout public + + + + Parents mode d'emploi + Isa et Gaby Martinet, un couple de quadragénaires, parents de trois enfants, s'efforcent d'être à la hauteur de leur tâche, tout en jonglant avec leurs devoirs conjugaux. Au programme, des désaccords, des ratés, des découragements et des ruses inavouables pour parvenir à leurs fins. + Série + Série Rires + + + Tout public + + + + Clem + Je suis là + Clem trouve un nouveau travail dans une usine locale et entame une romance avec Fred, sans se douter qu'il est lié à la mort de sa mère. Alors que la vie lui sourit enfin, un proche de Clem développe des symptômes inquiétants et tombe malade... + Série + Série Rires + + 9 . 0 . + + Tout public + + + + Clem + Mon amour + Le compte à rebours est lancé : Clem doit vite trouver la cause de l'empoisonnement. Val est aussi déterminé qu'elle et tombe sous le charme d'une jeune activiste écologiste. En plein tumulte, Clem, combattive, sait qu'elle peut compter sur Fred. Mais qui est-il vraiment ?... + Série + Série Rires + + 9 . 1 . + + Tout public + + + + Clem + Je ne lâcherai pas + La tribu se resserre autour du drame de l'empoisonnement d'Emma. Tout en menant son enquête, Clem rêve d'une nouvelle vie avec Fred, pour elle et ses enfants. Mais Fred est bientôt rattrapé par ses mensonges. Pendant ce temps, Valentin, lui, s'engage de plus en plus dans l'écologie auprès de Clara, s'éloignant ainsi d'Izia et de Joris... + Série + Série Rires + + 9 . 2 . + + Tout public + + + + Clem + Ma bataille + Val a bien grandi. Elle vit même sa toute première fois. Clem, de son côté, doit maintenant se battre seule et sur tous les fronts. Licenciée d'Ozra, quittée par Fred du jour au lendemain, elle reste combative et décide d'affronter les responsables de l'empoisonnement d'Emma grâce à une alliée inattendue... + Série + Série Rires + + 9 . 3 . + + Tout public + + + + The Middle + Des vacances à la Donahue + Ayant gagné un peu d'argent, Mike offre à sa famille un week-end dans le Kentucky. Frankie propose d'y aller avec les Donahue pour avoir des gens à qui parler. Sue réussit à décrocher un boulot d'été dans un autre Etat. Son père refuse qu'elle parte mais comprend que sa fille est devenue une femme... + Série + Série Rires + + 6 . 17 . + + Tout public + + + + The Middle + La honte + Sue est secrètement amoureuse de son professeur d'histoire et le harcèle malgré elle. Son professeur le lui fait remarquer et, prise de honte, Sue décide de ne plus se présenter à son cours. De son côté, Frankie regrette l'époque où Mike et elle sortaient avec les parents des amis d'Axl... + Série + Série Rires + + 6 . 18 . + + Tout public + + + + The Middle + Le papier millimétré + Brick demande à sa mère de lui acheter du papier millimétré pour le lendemain. Frankie, trop fatiguée pour ressortir, utilise le code de Nancy pour acheter le papier sur Internet et se le faire livrer en un jour. Axl annonce à son père qu'il veut quitter l'équipe de football et Sue présente son nouveau petit copain à sa mère... + Série + Série Rires + + 6 . 19 . + + Tout public + + + + The Middle + Le lanaï + Avec l'aide de ses employés, Mike construit à Frankie une belle terrasse pour qu'elle puisse se reposer au soleil. Mais c'est sans compter sur les nouveaux voisins, dont les trois enfants passent leur temps dans le jardin à hurler. Sue et Lexie ont tiré le gros lot : la plus belle chambre de la résidence... + Série + Série Rires + + 6 . 20 . + + Tout public + + + + The Middle + L'anti-fête des mères + Excédée par les cadeaux de fête des mères qui ne lui plaisent pas, Frankie impose une "anti-fête des mères" à sa famille : un jour sans cadeau où elle va simplement pouvoir se détendre. Cependant, lorsqu'un inconnu lui propose de payer ses courses parce qu'elle a oublié son porte-monnaie, Frankie a une idée : demander à ses proches de faire une bonne action... + Série + Série Rires + + 6 . 21 . + + Tout public + + + + The Middle + La géolocalisation + Mike et Frankie ne supportent plus que Sue et Axl rentrent tard la nuit après avoir fait la fête, et en ont assez de se faire du souci pour eux. Mike impose un couvre-feu à 22 heures, mais il n'est pas respecté. Frankie a alors l'idée de géolocaliser ses enfants grâce à leurs téléphones portables... + Série + Série Rires + + 6 . 22 . + + Tout public + + + + The Big Bang Theory + L'équation de la cohabitation + Bernadette demande instamment à Howard de choisir entre sa mère et elle. Penny, de son côté, n'apprécie guère que Leonard revoie la soeur de Raj. + Série + Série Rires + + 3 . 15 . + + Tout public + + + + The Big Bang Theory + L'origine du toast + Sheldon est inquiet : il vient de comprendre, lors d'une discussion à l'appartement de Raj, que Leonard est le véritable centre d'intérêt de tous ses amis. + Série + Série Rires + + 3 . 16 . + + Tout public + + + + The Big Bang Theory + Prestidigitation et approximation + Howard réalise un tour de cartes avec la complicité de Raj, Penny et Leonard. Sheldon tente désespérément de comprendre comment il a pu le réaliser. Priya trouve que Penny est un peu trop présente dans la vie de Leonard, elle lui demande de prendre ses distances avec son ex. + Série + Série Rires + + 3 . 17 . + + Tout public + + + + The Big Bang Theory + L'intrusion de Zarnecki + Tout le groupe d'amis est mobilisé pour découvrir quelle est la personne qui a piraté le compte sécurisé de Sheldon pour jouer en ligne à "World of Warcraft". De son côté, Priya, la soeur de Raj, commence à être véritablement agacée par le comportement puéril de Leonard. Elle ne supporte plus certaines de ces réactions. + Série + Série Rires + + 3 . 18 . + + Tout public + + + + The Big Bang Theory + Commérages et herbes aromatiques + Sheldon et Amy mènent une expérience secrète qui vise à propager des rumeurs au sein du groupe. La relation entre Howard et Bernadette passe un nouveau cap... + Série + Série Rires + + 3 . 19 . + + Tout public + + + + The Big Bang Theory + La dissection de l'accord + Sheldon voit son contrat de colocation remis en question par Priya, qui utilise ses talents de juriste pour y voir les faiblesses et rendre la vie facile à Leonard, Raj et Howard. Sheldon fuit son appartement pour rejoindre la soirée entre filles de Penny, Bernadette et Amy, où cette dernière montre un nouveau visage. + Série + Série Rires + + 3 . 20 . + + Tout public + + + + The Big Bang Theory + Le gnou dans la bergerie + Amy et Penny profitent que Bernadette soit invitée à une soirée entre couples pour tenter de détruire le couple Priya et Leonard. Chassé de chez lui pour la soirée, Raj déprime, et souhaite essayer sous la surveillance de Sheldon, délaissé lui aussi, des médicaments contre son anxiété sociale. Ceux-ci finissent par fonctionner un peu trop bien. + Série + Série Rires + + 3 . 21 . + + Tout public + + + + H + Une histoire de chasse + Strauss propose à Sabri de l'accompagner lors d'un week-end de chasse. Jamel, de son côté, a commis une "toute petite faute" qui pourrait lui valoir un blâme. + Série + Série Rires + + 1 . 14 . + + Tout public + + + + H + Une histoire de poste + Sabri est la malheureuse victime d'un hold-up. Loin de s'inquiéter, il est persuadé qu'il s'agit, en réalité, d'une énième mauvaise blague de Jamel et d'Aymé. Mais cette méprise leur vaut de se retrouver au commissariat de police. Après avoir giflé l'inspectrice, Strauss les rejoint bientôt... + Série + Série Rires + + 1 . 17 . + + + -10 + + + + Jason Bourne, l'héritage + Du programme Treadstone, dont Jason Bourne était le cobaye, est né "Outcome". Aaron Cross est l'un des agents de ce groupe, qui a pour objectif de former des hommes capables d'assurer des missions à haut risque. Mais Jason Bourne, en dévoilant une partie de cette organisation, les a condamnés à mort... + Film + Film Action + + + + -10 + + + + Premier contact + Une forme noire, gigantesque, lévite verticalement au-dessus de la Terre. Les extraterrestres ont débarqué et n'ont pour l'instant montré aucune agressivité. A la demande des forces armées, Louise Banks, experte en linguistique, s'introduit avec des spécialistes au sein de l'un de leurs douze vaisseaux... + Film + Film Sc.Fiction + + + Tout public + + + + Apocalypse Revolution + Le 21 septembre 2013, un satellite de télécommunications explose sur la Porte de Brandebourg à Berlin. Trente minutes plus tard, partout dans le monde, les satellites tombent un à un, provoquant une situation inédite où toute communication est impossible. Une expérience scientifique est à l'origine de ce chaos... + Film + Film Frisson + + + + -10 + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Télé-achat + Le magazine de télé-achat de TMC. + Magazine + Mag. TV-Achat + + + Tout public + + + + Parents mode d'emploi + Isa et Gaby Martinet, un couple de quadragénaires, parents de trois enfants, s'efforcent d'être à la hauteur de leur tâche, tout en jonglant avec leurs devoirs conjugaux. Au programme, des désaccords, des ratés, des découragements et des ruses inavouables pour parvenir à leurs fins. + Série + Série Rires + + + Tout public + + + + Clem + Mon amour + Le compte à rebours est lancé : Clem doit vite trouver la cause de l'empoisonnement. Val est aussi déterminé qu'elle et tombe sous le charme d'une jeune activiste écologiste. En plein tumulte, Clem, combattive, sait qu'elle peut compter sur Fred. Mais qui est-il vraiment ?... + Série + Série Rires + + 9 . 1 . + + Tout public + + + + Clem + Je ne lâcherai pas + La tribu se resserre autour du drame de l'empoisonnement d'Emma. Tout en menant son enquête, Clem rêve d'une nouvelle vie avec Fred, pour elle et ses enfants. Mais Fred est bientôt rattrapé par ses mensonges. Pendant ce temps, Valentin, lui, s'engage de plus en plus dans l'écologie auprès de Clara, s'éloignant ainsi d'Izia et de Joris... + Série + Série Rires + + 9 . 2 . + + Tout public + + + + Clem + Ma bataille + Val a bien grandi. Elle vit même sa toute première fois. Clem, de son côté, doit maintenant se battre seule et sur tous les fronts. Licenciée d'Ozra, quittée par Fred du jour au lendemain, elle reste combative et décide d'affronter les responsables de l'empoisonnement d'Emma grâce à une alliée inattendue... + Série + Série Rires + + 9 . 3 . + + Tout public + + + + Clem + Pour la vérité + Bien que menacée par Ozra, Clem ne lâche rien : Emma risque de perdre ses reins. C'est alors que ses anciens collègues lui viennent en aide et brandissent à leur tour le poing. Toute dévouée à son combat, Clem va enfin découvrir la vérité sur l'accident qui l'a privée de sa mère. Une révélation et un soulagement pour la jeune femme... + Série + Série Rires + + 9 . 4 . + + Tout public + + + + Clem + Pour te sauver + La vérité sur la mort de Caro permettra-t-elle à Clem de sauver Fred ? Le renfort de la tribu dans son combat contre Ozra suffira-t-il à sauver Emma à temps ? Clem et Val vont devoir accepter de ne pas gagner tous les combats… + Série + Série Rires + + 9 . 5 . + + Tout public + + + + Les secrets du paranormal + "Les OVNI du pentagone : une menace sous surveillance". "La plantation Myrtle : l'hôtel maudit de Louisiane". "Le Mothman, l'ombre qui annonçait la mort". "Le mystère du monstre du Loch Ness". "L'inquiétant Chupacabra de Porto-Rico". "L'histoire vraie d'Elizabeth Bathory, la femme vampire". + Magazine + Mag. Découverte + + + + -10 + + + + Les secrets du paranormal + Gros plan sur les inquiétantes prophéties de Nostradamus, sur une prise d'otage miraculeuse dans le Wyoming en mai 1986, sur l'exorcisme de Maurice Theriault, qui a révélé de terrifiants phénomènes surnaturels ou encore sur l'affaire des masques de plomb, fait divers paranormal qui agite le Brésil depuis cinquante ans. + Magazine + Mag. Découverte + + + + -10 + + + + H + Une histoire d'amnésie + Le professeur Strauss a besoin d'argent. Il effectue des interventions de chirurgie esthétique en secret : celle de Clara a des conséquences inattendues. + Série + Série Rires + + 1 . 8 . + + + -10 + + + + H + Une histoire de frère + Pour Jamel, la famille c'est sacré, hormis dans certains cas bien précis. Aussi, lorsqu'il apprend de la bouche de Clara que son frère Mourhad, admis dans le service pour une banale entorse, est homosexuel, Jamel refuse tout de go de le présenter à l'ensemble de ses collègues. Aymé, quant à lui, retrouve Christelle, une ex-amie qu'il n'a pas vue depuis six ans... + Série + Série Rires + + 1 . 9 . + + + -10 + + + + H + Une histoire de champignons + Sabri s'est découvert une passion pour la cuisine. Il concocte une omelette aux champignons pour Aymé, mais la dernière bouchée passe plutôt mal. + Série + Série Rires + + 1 . 11 . + + + -10 + + + + H + Une histoire de père + Désiré, le père d'Aymé, est hospitalisé dans le service de son fils. Ce dernier ne se réjouit guère, les relations qu'il entretient avec son géniteur étant plutôt tendues. Ses pressentiments ne tardent pas à se confirmer. L'intraitable Désiré ne manque en effet pas une occasion de se moquer de lui... + Série + Série Rires + + 1 . 15 . + + + -10 + + + + H + Une histoire de show-biz + Richard Gotainer doit être hospitalisé pour une artérite. Le professeur Strauss hésite, il se demande s'il doit, oui ou non, l'amputer. De leur côté, Jamel, Aymé et Sabri imaginent ce qu'ils pourraient s'offrir s'ils écrivaient un tube. Chacun, dans son sommeil, rêve à ce que pourrait être sa réussite... + Série + Série Rires + + 1 . 18 . + + + -10 + + + + Naked and Afraid : 21 jours pour survivre + Croatie : Mickael et Bénédicte + Mickael et Bénédicte doivent survivre au coeur de la forêt primaire de Croatie. Dans cet environnement, ils vont affronter les orages, le froid, et lutter contre l'hypothermie. + Documentaire + Doc. Évasion + + 0 . 0 . + + Tout public + + + + Naked and Afraid : 21 jours pour survivre + Croatie : Pascal et Léa + Pascal et Léa ne se connaissent pas mais vont tenter de passer trois semaines ensemble dans la forêt primaire croate, sur les bords d'un fleuve agité. + Documentaire + Doc. Évasion + + 0 . 0 . + + Tout public + + + + Naked and Afraid : 21 jours pour survivre + Colombie : Emmanuelle et Kevin + Emmanuelle et Kevin, ne se connaissent pas mais vont tenter une expérience extrême. Chacun va déployer sa propre tactique pour tenter d'arriver au terme de cette aventure. + Documentaire + Doc. Évasion + + 0 . 0 . + + Tout public + + + + Naked and Afraid : 21 jours pour survivre + Colombie : Stéphanie et Steven + Stéphanie, 35 ans, et Steven, 32 ans, ne se connaissent pas mais vont tenter une expérience extrême : survivre trois semaines, nus, au coeur de la jungle colombienne. + Documentaire + Doc. Évasion + + 0 . 0 . + + Tout public + + + + Naked and Afraid : 21 jours pour survivre + Colombie : Marie et Olivier + Marie, une téléopératrice de 45 ans, et Olivier, un maçon de 31 ans, passent trois semaines dans la jungle colombienne sans eau, ni nourriture, ni vêtement. + Documentaire + Doc. Évasion + + 0 . 0 . + + Tout public + + + + Naked and Afraid : 21 jours pour survivre + Colombie : Pascale et Eddy + En Colombie, Pascale et Eddy vont devoir survivre seuls pendant trois semaines au milieu d'une jungle qui abrite une des faunes les plus dangereuses de la planète. + Documentaire + Doc. Évasion + + 0 . 0 . + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Télé-achat + Le magazine de télé-achat de TMC. + Magazine + Mag. TV-Achat + + + Tout public + + + + Parents mode d'emploi + Isa et Gaby Martinet, un couple de quadragénaires, parents de trois enfants, s'efforcent d'être à la hauteur de leur tâche, tout en jonglant avec leurs devoirs conjugaux. Au programme, des désaccords, des ratés, des découragements et des ruses inavouables pour parvenir à leurs fins. + Série + Série Rires + + + Tout public + + + + Clem + Je ne lâcherai pas + La tribu se resserre autour du drame de l'empoisonnement d'Emma. Tout en menant son enquête, Clem rêve d'une nouvelle vie avec Fred, pour elle et ses enfants. Mais Fred est bientôt rattrapé par ses mensonges. Pendant ce temps, Valentin, lui, s'engage de plus en plus dans l'écologie auprès de Clara, s'éloignant ainsi d'Izia et de Joris... + Série + Série Rires + + 9 . 2 . + + Tout public + + + + Clem + Ma bataille + Val a bien grandi. Elle vit même sa toute première fois. Clem, de son côté, doit maintenant se battre seule et sur tous les fronts. Licenciée d'Ozra, quittée par Fred du jour au lendemain, elle reste combative et décide d'affronter les responsables de l'empoisonnement d'Emma grâce à une alliée inattendue... + Série + Série Rires + + 9 . 3 . + + Tout public + + + + Clem + Pour la vérité + Bien que menacée par Ozra, Clem ne lâche rien : Emma risque de perdre ses reins. C'est alors que ses anciens collègues lui viennent en aide et brandissent à leur tour le poing. Toute dévouée à son combat, Clem va enfin découvrir la vérité sur l'accident qui l'a privée de sa mère. Une révélation et un soulagement pour la jeune femme... + Série + Série Rires + + 9 . 4 . + + Tout public + + + + Clem + Pour te sauver + La vérité sur la mort de Caro permettra-t-elle à Clem de sauver Fred ? Le renfort de la tribu dans son combat contre Ozra suffira-t-il à sauver Emma à temps ? Clem et Val vont devoir accepter de ne pas gagner tous les combats… + Série + Série Rires + + 9 . 5 . + + Tout public + + + + The Middle + La honte + Sue est secrètement amoureuse de son professeur d'histoire et le harcèle malgré elle. Son professeur le lui fait remarquer et, prise de honte, Sue décide de ne plus se présenter à son cours. De son côté, Frankie regrette l'époque où Mike et elle sortaient avec les parents des amis d'Axl... + Série + Série Rires + + 6 . 18 . + + Tout public + + + + The Middle + Le papier millimétré + Brick demande à sa mère de lui acheter du papier millimétré pour le lendemain. Frankie, trop fatiguée pour ressortir, utilise le code de Nancy pour acheter le papier sur Internet et se le faire livrer en un jour. Axl annonce à son père qu'il veut quitter l'équipe de football et Sue présente son nouveau petit copain à sa mère... + Série + Série Rires + + 6 . 19 . + + Tout public + + + + The Middle + Le lanaï + Avec l'aide de ses employés, Mike construit à Frankie une belle terrasse pour qu'elle puisse se reposer au soleil. Mais c'est sans compter sur les nouveaux voisins, dont les trois enfants passent leur temps dans le jardin à hurler. Sue et Lexie ont tiré le gros lot : la plus belle chambre de la résidence... + Série + Série Rires + + 6 . 20 . + + Tout public + + + + The Middle + L'anti-fête des mères + Excédée par les cadeaux de fête des mères qui ne lui plaisent pas, Frankie impose une "anti-fête des mères" à sa famille : un jour sans cadeau où elle va simplement pouvoir se détendre. Cependant, lorsqu'un inconnu lui propose de payer ses courses parce qu'elle a oublié son porte-monnaie, Frankie a une idée : demander à ses proches de faire une bonne action... + Série + Série Rires + + 6 . 21 . + + Tout public + + + + The Middle + La géolocalisation + Mike et Frankie ne supportent plus que Sue et Axl rentrent tard la nuit après avoir fait la fête, et en ont assez de se faire du souci pour eux. Mike impose un couvre-feu à 22 heures, mais il n'est pas respecté. Frankie a alors l'idée de géolocaliser ses enfants grâce à leurs téléphones portables... + Série + Série Rires + + 6 . 22 . + + Tout public + + + + The Middle + The Show Must Go On + Brick s'est inscrit pour faire un numéro de chant lors de la remise des diplômes de son collège, puisqu'il ne pourra pas faire de discours, n'étant pas le major de sa promotion. Mais le collège lui annonce qu'il y a trop d'inscrits et procède à un tirage au sort des élèves qui pourront monter sur scène... + Série + Série Rires + + 6 . 23 . + + Tout public + + + + The Big Bang Theory + Prestidigitation et approximation + Howard réalise un tour de cartes avec la complicité de Raj, Penny et Leonard. Sheldon tente désespérément de comprendre comment il a pu le réaliser. Priya trouve que Penny est un peu trop présente dans la vie de Leonard, elle lui demande de prendre ses distances avec son ex. + Série + Série Rires + + 3 . 17 . + + Tout public + + + + The Big Bang Theory + L'intrusion de Zarnecki + Tout le groupe d'amis est mobilisé pour découvrir quelle est la personne qui a piraté le compte sécurisé de Sheldon pour jouer en ligne à "World of Warcraft". De son côté, Priya, la soeur de Raj, commence à être véritablement agacée par le comportement puéril de Leonard. Elle ne supporte plus certaines de ces réactions. + Série + Série Rires + + 3 . 18 . + + Tout public + + + + The Big Bang Theory + Commérages et herbes aromatiques + Sheldon et Amy mènent une expérience secrète qui vise à propager des rumeurs au sein du groupe. La relation entre Howard et Bernadette passe un nouveau cap... + Série + Série Rires + + 3 . 19 . + + Tout public + + + + The Big Bang Theory + La dissection de l'accord + Sheldon voit son contrat de colocation remis en question par Priya, qui utilise ses talents de juriste pour y voir les faiblesses et rendre la vie facile à Leonard, Raj et Howard. Sheldon fuit son appartement pour rejoindre la soirée entre filles de Penny, Bernadette et Amy, où cette dernière montre un nouveau visage. + Série + Série Rires + + 3 . 20 . + + Tout public + + + + The Big Bang Theory + Le gnou dans la bergerie + Amy et Penny profitent que Bernadette soit invitée à une soirée entre couples pour tenter de détruire le couple Priya et Leonard. Chassé de chez lui pour la soirée, Raj déprime, et souhaite essayer sous la surveillance de Sheldon, délaissé lui aussi, des médicaments contre son anxiété sociale. Ceux-ci finissent par fonctionner un peu trop bien. + Série + Série Rires + + 3 . 21 . + + Tout public + + + + The Big Bang Theory + Un long épisode de fiançailles + Howard et Bernadette préparent leur mariage, mais tous deux ont échoué dans leurs tentatives pour annoncer à leurs parents ce grand bouleversement... + Série + Série Rires + + 3 . 22 . + + Tout public + + + + The Big Bang Theory + La colocataire en transmutation + Bernadette obtient son doctorat. Toute sa bande d'amis se demande bien pourquoi Howard n'a pas atteint ce niveau de formation et d'engagement... + Série + Série Rires + + 3 . 23 . + + Tout public + + + + H + Une histoire de théâtre + Clara a déniché un appartement à louer : une véritable aubaine, tant le montant du loyer est dérisoire. Seul hic : le propriétaire, fervent défenseur des valeurs morales traditionnelles et notamment familiales, exige qu'il soit loué à un couple. Ni une ni deux : Aymé jouera le rôle du futur mari... + Série + Série Rires + + 1 . 16 . + + + -10 + + + + H + Une histoire de cobaye + Afin d'arrondir ses fins de mois, Jamel envisage de participer à un test sur un médicament. Néanmoins, craignant des effets secondaires, il préfère se désister. A son insu, Aymé devient son cobaye. De son côté, Sabri achète une marionnette de ventriloque, pour constater amèrement qu'elle ne parle pas... + Série + Série Rires + + 1 . 19 . + + Tout public + + + + Les secrets du paranormal + "Flammes tueuses : l'effrayant phénomène de la combustion spontanée". "Shining : l'histoire vraie de l'hôtel maléfique". "Doris Bither : la californienne victime de terribles forces invisibles". "Zone 51 : surprenantes révélations sur l'endroit le plus secret au monde". "Triangle maudit : la terrible forêt dont personne ne revient jamais". + Magazine + Mag. Découverte + + + + -10 + + + + Les secrets du paranormal + Gros plan sur les inquiétantes prophéties de Nostradamus, sur une prise d'otage miraculeuse dans le Wyoming en mai 1986, sur l'exorcisme de Maurice Theriault, qui a révélé de terrifiants phénomènes surnaturels ou encore sur l'affaire des masques de plomb, fait divers paranormal qui agite le Brésil depuis cinquante ans. + Magazine + Mag. Découverte + + + + -10 + + + + Les secrets du paranormal + "Les OVNI du pentagone : une menace sous surveillance". "La plantation Myrtle : l'hôtel maudit de Louisiane". "Le Mothman, l'ombre qui annonçait la mort". "Le mystère du monstre du Loch Ness". "L'inquiétant Chupacabra de Porto-Rico". "L'histoire vraie d'Elizabeth Bathory, la femme vampire". + Magazine + Mag. Découverte + + + + -10 + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Petits plats en équilibre + Sauté de porc aux mirabelles + Chaque jour, Laurent Mariotte propose des recettes simples et savoureuses pour profiter des ingrédients de saison, en donnant la part belle aux produits locaux. + Magazine + Mag. Société + + 23 . 3 . + + Tout public + + + + Nicky Larson + Un mariage de raison + Nicky Larson est criblé de dettes. Tous ses biens, son arme de service y comprise, ont été hypothéqués... + Série + + 2 . 2 . + + + -10 + + + + Nicky Larson + Petit jeu dangereux + Nicky Larson reçoit une bien curieuse demande de la part d'une jeune fille nommée Aiko Kamimura... + Série + + 2 . 3 . + + + -10 + + + + TFX infos + Regardez le dernier journal télévisé avec une sélection des actualités préparée par la rédaction de TFX. + Info-Météo + Information + + + Tout public + + + + Nicky Larson + Petit jeu dangereux + Aiko Kamimura et son oncle ont conclu un accord : Si Aiko ne parvient pas à résoudre elle-même l'affaire qui lui a été confiée, elle sera contrainte d'abandonner ce métier trop dangereux... + Série + + 2 . 4 . + + + -10 + + + + Nicky Larson + Mammouth est jaloux + Mammouth contacte Nicky Larson afin qu'il lui rende un service... + Série + + 2 . 5 . + + + -10 + + + + Nicky Larson + La belle océanographe + Aline, une océanographe, est poursuivie par des gangsters pour des raisons qu'elle ignore. Elle demande à Nicky de la protéger et d'éclaircir cette affaire. + Série + + 2 . 6 . + + + -10 + + + + Nicky Larson + Une élève douée + Hitomi Takano est une jeune lycéenne de 19 ans, passionnée par les séries policières et plus particulièrement les héros détectives, à tel point qu'elle rêve d'en devenir un. Elle croise par hasard Nicky Larson en pleine opération de filature... + Série + + 2 . 7 . + + + -10 + + + + Nicky Larson + Sale temps + Kei Amamiya est une présentatrice météo très populaire, au point qu'elle ne peut circuler dans la rue sans qu'une horde de fans ne lui demande un autographe. Mais son succès suscite énormément de jalousie de la part d'une certaine personne, qui n'hésite pas à lui envoyer des lettres de menaces... + Série + + 2 . 8 . + + + -10 + + + + Nicky Larson + Un Noël très blanc + Aucune description + Série + + 2 . 9 . + + + -10 + + + + Nicky Larson + Un Noël très blanc + Juste après s'être enfuis à nouveau pour échapper aux griffes de la famille Umino, Tsubaki Yamaoka et Kazukiko sont pris en chasse par des hommes armés, qui ont non seulement pour objectif de séparer les deux amoureux, mais également de les supprimer... + Série + + 2 . 10 . + + + -10 + + + + Familles nombreuses : la vie en XXL + Ce docu-réalité suit le quotidien exceptionnel de plusieurs familles nombreuses. Avec ces familles tout est XXL ! Partagez le quotidien de ces familles nombreuses où tout se vit en plus grand ! + Divertissement + + + Tout public + + + + Familles nombreuses : la vie en XXL + Ce docu-réalité suit le quotidien exceptionnel de plusieurs familles nombreuses. Avec ces familles tout est XXL ! Partagez le quotidien de ces familles nombreuses où tout se vit en plus grand ! + Divertissement + + + Tout public + + + + Familles nombreuses : la vie en XXL + Ce docu-réalité suit le quotidien exceptionnel de plusieurs familles nombreuses. Avec ces familles tout est XXL ! Partagez le quotidien de ces familles nombreuses où tout se vit en plus grand ! + Divertissement + + + Tout public + + + + Familles nombreuses : la vie en XXL + Ce docu-réalité suit le quotidien exceptionnel de plusieurs familles nombreuses. Avec ces familles tout est XXL ! Partagez le quotidien de ces familles nombreuses où tout se vit en plus grand ! + Divertissement + + + Tout public + + + + Familles nombreuses : la vie en XXL + Ce docu-réalité suit le quotidien exceptionnel de plusieurs familles nombreuses. Avec ces familles tout est XXL ! Partagez le quotidien de ces familles nombreuses où tout se vit en plus grand ! + Divertissement + + + Tout public + + + + Familles nombreuses : la vie en XXL + Ce docu-réalité suit le quotidien exceptionnel de plusieurs familles nombreuses. Avec ces familles tout est XXL ! Partagez le quotidien de ces familles nombreuses où tout se vit en plus grand ! + Divertissement + + + Tout public + + + + Familles nombreuses : la vie en XXL + Ce docu-réalité suit le quotidien exceptionnel de plusieurs familles nombreuses. Avec ces familles tout est XXL ! Partagez le quotidien de ces familles nombreuses où tout se vit en plus grand ! + Divertissement + + + Tout public + + + + Familles nombreuses : la vie en XXL + Ce docu-réalité suit le quotidien exceptionnel de plusieurs familles nombreuses. Avec ces familles tout est XXL ! Partagez le quotidien de ces familles nombreuses où tout se vit en plus grand ! + Divertissement + + + Tout public + + + + Familles nombreuses : la vie en XXL + Ce docu-réalité suit le quotidien exceptionnel de plusieurs familles nombreuses. Avec ces familles tout est XXL ! Partagez le quotidien de ces familles nombreuses où tout se vit en plus grand ! + Divertissement + + + Tout public + + + + Familles nombreuses : la vie en XXL + Ce docu-réalité suit le quotidien exceptionnel de plusieurs familles nombreuses. Avec ces familles tout est XXL ! Partagez le quotidien de ces familles nombreuses où tout se vit en plus grand ! + Divertissement + + + Tout public + + + + Familles nombreuses : la vie en XXL + Ce docu-réalité suit le quotidien exceptionnel de plusieurs familles nombreuses. Avec ces familles tout est XXL ! Partagez le quotidien de ces familles nombreuses où tout se vit en plus grand ! + Divertissement + + + Tout public + + + + Familles nombreuses : la vie en XXL + Ce docu-réalité suit le quotidien exceptionnel de plusieurs familles nombreuses. Avec ces familles tout est XXL ! Partagez le quotidien de ces familles nombreuses où tout se vit en plus grand ! + Divertissement + + + Tout public + + + + Familles nombreuses : la vie en XXL + Ce docu-réalité suit le quotidien exceptionnel de plusieurs familles nombreuses. Avec ces familles tout est XXL ! Partagez le quotidien de ces familles nombreuses où tout se vit en plus grand ! + Divertissement + + + Tout public + + + + Familles nombreuses : la vie en XXL + Ce docu-réalité suit le quotidien exceptionnel de plusieurs familles nombreuses. Avec ces familles tout est XXL ! Partagez le quotidien de ces familles nombreuses où tout se vit en plus grand ! + Divertissement + + + Tout public + + + + Familles nombreuses : la vie en XXL + Ce docu-réalité suit le quotidien exceptionnel de plusieurs familles nombreuses. Avec ces familles tout est XXL ! Partagez le quotidien de ces familles nombreuses où tout se vit en plus grand ! + Divertissement + + + Tout public + + + + Familles nombreuses : la vie en XXL + Ce docu-réalité suit le quotidien exceptionnel de plusieurs familles nombreuses. Avec ces familles tout est XXL ! Partagez le quotidien de ces familles nombreuses où tout se vit en plus grand ! + Divertissement + + + Tout public + + + + Familles nombreuses : la vie en XXL + Ce docu-réalité suit le quotidien exceptionnel de plusieurs familles nombreuses. Avec ces familles tout est XXL ! Partagez le quotidien de ces familles nombreuses où tout se vit en plus grand ! + Divertissement + + + Tout public + + + + Familles nombreuses : la vie en XXL + Ce docu-réalité suit le quotidien exceptionnel de plusieurs familles nombreuses. Avec ces familles tout est XXL ! Partagez le quotidien de ces familles nombreuses où tout se vit en plus grand ! + Divertissement + + + Tout public + + + + Petits plats en équilibre + Chaque jour, Laurent Mariotte propose des recettes simples et savoureuses pour profiter des ingrédients de saison, en donnant la part belle aux produits locaux. + Magazine + Mag. Société + + + Tout public + + + + Chroniques criminelles + Dans un petit village de la Marne, coincé entre deux bases militaires, le sergent Julien Thévenet, mécanicien sur le Rafale, est découvert mort dans son garage, une pioche posée sur son torse. L'enquête explore toutes les pistes. La violence du crime laisse à penser que l'assassin lui en voulait personnellement. + Magazine + Mag. Société + + + + -10 + + + + Chroniques criminelles + Le 6 avril 2017, dans le village de Durrenbach, près de Strasbourg, les pompiers sont appelés pour éteindre un incendie qui s'est déclaré chez Béatrice Bowe, une veuve de 60 ans. Quand ils pénètrent dans la maison, ils trouvent le corps de Béatrice qui gît sur le sol, poignardé plus de trente fois. + Magazine + Mag. Société + + + + -10 + + + + Programmes de la nuit + Retrouvez tous vos programmes de nuit. + Autre + + + Tout public + + + + Petits plats en équilibre + Sablé à la figue + Chaque jour, Laurent Mariotte propose des recettes simples et savoureuses pour profiter des ingrédients de saison, en donnant la part belle aux produits locaux. + Magazine + Mag. Société + + 23 . 4 . + + Tout public + + + + Very bad blagues + La famille + Retour de la série mythique du Palmashow : Very Bad Blagues. + Divertissement + + 2 . 24 . + + Tout public + + + + Very bad blagues + Soirée + Retour de la série mythique du Palmashow : Very Bad Blagues. + Divertissement + + 2 . 0 . + + Tout public + + + + TFX infos + Regardez le dernier journal télévisé avec une sélection des actualités préparée par la rédaction de TFX. + Info-Météo + Information + + + Tout public + + + + Very bad blagues + Métiers + Retour de la série mythique du Palmashow : Very Bad Blagues. + Divertissement + + 2 . 1 . + + Tout public + + + + Very bad blagues + Métiers bis + Retour de la série mythique du Palmashow : Very Bad Blagues. + Divertissement + + 2 . 2 . + + Tout public + + + + Very bad blagues + Commerces et affiliés + Retour de la série mythique du Palmashow : Very Bad Blagues. + Divertissement + + 2 . 3 . + + Tout public + + + + Very bad blagues + Les vacances, l'été et le sud + Retour de la série mythique du Palmashow : Very Bad Blagues. + Divertissement + + 2 . 4 . + + Tout public + + + + Very bad blagues + L'école et les études + Retour de la série mythique du Palmashow : Very Bad Blagues. + Divertissement + + 2 . 5 . + + Tout public + + + + Very bad blagues + Amour & couple + Retour de la série mythique du Palmashow : Very Bad Blagues. + Divertissement + + 2 . 6 . + + Tout public + + + + Friends + Celui qui se faisait épiler + Pour les besoins de la série dans laquelle il joue, Joey doit se faire épiler les sourcils. Monica accompagne Phoebe au restaurant karaoké où Mike joue du piano, et se laisse bientôt convaincre de monter sur scène. Or, Monica ne porte pas de soutien-gorge. Sa prestation est très remarquée. De son côté, Ross décide d'aller de l'avant après avoir surpris Rachel en train d'embrasser Gavin... + Série + Série Rires + + 8 . 12 . + + Tout public + + + + Friends + Celui qui se faisait poser un lapin + Joey et Phoebe conspirent pour que Rachel et Ross se remettent définitivement ensemble. Alors qu'elle garde Emma, Monica se rend compte qu'elle est en pleine période d'ovulation. Elle n'a alors qu'une idée fixe : un tête-à-tête romantique avec son mari. Une situation difficile à réaliser avec un bébé qui crie dès qu'on le laisse seul... + Série + Série Rires + + 8 . 13 . + + Tout public + + + + Friends + Celui qui se faisait agresser + Lors d'une audition pour un rôle important, Joey joue de manière "originale" afin d'impressionner un comédien prétentieux. Pendant ce temps, Ross comprend certains événements de son enfance. Enfin, Chandler, toujours sans emploi, s'apprête, en désespoir de cause, à accepter un stage dans une manufacture de chaussures... + Série + Série Rires + + 8 . 14 . + + Tout public + + + + Friends + Celui qui prêtait de l'argent + Phoebe demande à Mike d'emménager avec elle et envisage même déjà le mariage. Monica et Chandler ont quelques soucis financiers. Monica va demander discrètement à Joey de l'aider. Lorsque Chandler va, lui aussi, solliciter son ami pour qu'il lui prête de l'argent, Joey se trahit et tente de rattraper le coup en affirmant que Monica destinait l'argent à une opération de chirurgie esthétique... + Série + Série Rires + + 8 . 15 . + + Tout public + + + + Friends + Celui qui envoyait des e-mails + Ross et Chandler s'affrontent dans une rivalité sans merci sur Internet. Leur but : ternir la réputation de l'autre sur le site web des anciens élèves de leur école. Chandler va jusqu'à prétendre que Ross est mort et enterré. Pendant ce temps, Phoebe demande à Monica de l'empêcher de ressortir avec son ex, et Joey essaie de reprendre à Emma sa peluche favorite... + Série + Série Rires + + 8 . 16 . + + Tout public + + + + Friends + Celui qui devait gagner à la loterie + Monica veut remporter le gros lot mis en jeu lors d'une loterie exceptionnelle. A cette occasion, elle demande à tous ses amis d'acheter des billets afin d'augmenter ses chances. Tous font des projets et se demandent déjà de quelle façon ils vont pouvoir partager la somme si jamais ils gagnent... + Série + Série Rires + + 8 . 17 . + + Tout public + + + + Friends + Celui qui piquait dans les hôtels + Joey est nerveux : il doit jouer le rôle d'un amoureux enflammé. Aussi accepte-t-il que Rachel vienne l'encourager sur le plateau. Chandler prépare une surprise à Monica : un week-end romantique dans le Vermont. Mais celle-ci, débordée par son travail, ne peut y aller, et le billet n'est pas remboursable... + Série + Série Rires + + 8 . 18 . + + Tout public + + + + Friends + Celui qui allait à une soirée privée + Comme tous les ans, Joey organise pour ses collègues une soirée "Des jours et des vies", et il essaie de le faire en cachette de ses amis. Mais, surprenant un message téléphonique, Rachel évente le secret. Cette découverte sur son colocataire la trouble d'autant plus qu'elle vient de faire un rêve étrange... + Série + Série Rires + + 8 . 19 . + + Tout public + + + + Friends + Ceux qui faisaient un test de fécondité + Monica et Chandler, qui espèrent en vain avoir un bébé, ont pris un rendez-vous à l'hôpital afin d'effectuer un test de fécondité. Alors qu'ils s'y rendent, ils rencontrent Janice, l'ancienne petite amie de Chandler. De leur côté, Rachel et Phoebe se querellent à propos d'une chaîne de salons de massages... + Série + Série Rires + + 8 . 20 . + + Tout public + + + + Friends + Celui qui avait besoin d'un donneur + Monica et Chandler sont tristes de ne pas pouvoir avoir d'enfant, mais ils se mettent à envisager d'autres solutions. En l'occurence, ils pensent avoir trouvé une idée lorsqu'ils reçoivent chez eux la visite d'un séduisant collègue de travail de Chandler, Zach, qui serait un donneur de sperme potentiel... + Série + Série Rires + + 8 . 21 . + + Tout public + + + + Friends + Ceux qui allaient à la Barbade + Euphorique à l'idée de faire un discours pendant le congrès de paléontologie qui se déroule sur l'île de la Barbade, Ross se débrouille pour procurer un laisser-passer à chacun de ses amis. Mais sur place, il ne fait pas beau, personne ne demande d'autographe à Joey, et Rachel se sent seule... + Série + Série Rires + + 8 . 22 . + + Tout public + + + + Friends + Celui qui n'arrivait pas à se confier + Monica débat de sa nouvelle coupe de cheveux avec Chandler et Phoebe. Installés dans leur chambre d'hôtel aux murs peu épais, ils entendent soudain des voix dans les chambres voisines et reconnaissent celles de Ross et Charlie, puis celles de Rachel et Joey. Dès lors, ils se collent aux murs... + Série + Série Rires + + 9 . 0 . + + Tout public + + + + Friends + Celui qui allait très bien + Par hasard, Ross surprend Rachel et Joey en train de s'embrasser. Parvenant à dissimuler son émoi, il affirme que tout va bien et les invite à dîner avec Charlie. Le repas tourne au cauchemar. Phoebe, quant à elle, reçoit la visite de son frère, qui lui fait part de ses angoisses à propos des triplés... + Série + Série Rires + + 9 . 1 . + + Tout public + + + + Friends + Celui qui avait décidé de bronzer + Ross découvre que Monica s'est fait un joli hâle grâce à un autobronzant. Il décide d'améliorer le sien, mais a du mal à se familiariser avec la machine à UV. De leur côté, Rachel et Joey passent leur première soirée en tête-à-tête. Quant à Monica et Phoebe, elles essaient d'éviter une amie très ennuyeuse... + Série + Série Rires + + 9 . 2 . + + Tout public + + + + Star Academy + Aucune description + Divertissement + + + Tout public + + + + Star Academy + Lieu emblématique de l'aventure Star Ac', c'est au château de Dammarie-les-Lys, situé au sud de Paris, que les élèves vivent et suivent une formation dans laquelle rigueur et discipline permettent à chacun d'entre eux de développer leur sens artistique. Au château, les cours sont dispensés par les meilleurs professeurs de chant, de danse et d'expression scénique. + Divertissement + + + Tout public + + + + Petits plats en équilibre + Chaque jour, Laurent Mariotte propose des recettes simples et savoureuses pour profiter des ingrédients de saison, en donnant la part belle aux produits locaux. + Magazine + Mag. Société + + + Tout public + + + + Geostorm + La Terre était menacée par plusieurs catastrophes naturelles de très grande envergure. Les dirigeants des grandes puissances ont décidé de coopérer pour mettre en place un réseau complexe de satellites destiné à contrôler le climat et à protéger les populations. Mais le dispositif s'enraye... + Film + Film Frisson + + + + -10 + + + + Robin des Bois + Au XIIIe siècle, le roi Richard d'Angleterre meurt en France. Un noble de son armée tombe dans une embuscade alors qu'il rapportait sa couronne à Londres. C'est finalement un déserteur, Robin, qui va mener à bien sa mission, se faisant passer pour le noble défunt, Robert Loxley de Nottingham... + Film + Film Action + + + + -10 + + + + Programmes de la nuit + Programmes de nuit + Retrouvez tous vos programmes de nuit. + Autre + + 0 . 0 . + + Tout public + + + + Programmes de la nuit + Programmes de nuit + Retrouvez tous vos programmes de nuit. + Programme + Programme indéterminé + + + Tout public + + + + Petits plats en équilibre + Empanadas au canard + Chaque jour, Laurent Mariotte propose des recettes simples et savoureuses pour profiter des ingrédients de saison, en donnant la part belle aux produits locaux. + Art de vivre + Gastronomie + + 23 . 5 . + + Tout public + + + + Mamans & célèbres + Dix célèbres femmes, stars des réseaux sociaux, sont aujourd'hui devenues influenceuses mais avant tout mamans ! Pour la première fois, elles nous ouvrent les portes de leur quotidien pour découvrir les coulisses de leur vie de stars mais aussi leur vie de mamans ! + Programme + Téléréalité + + 8 . 45 . + + Tout public + + + + Mamans & célèbres + Dix célèbres femmes, stars des réseaux sociaux, sont aujourd'hui devenues influenceuses mais avant tout mamans ! Pour la première fois, elles nous ouvrent les portes de leur quotidien pour découvrir les coulisses de leur vie de stars mais aussi leur vie de mamans ! + Programme + Téléréalité + + 8 . 46 . + + Tout public + + + + Mamans & célèbres + Dix célèbres femmes, stars des réseaux sociaux, sont aujourd'hui devenues influenceuses mais avant tout mamans ! Pour la première fois, elles nous ouvrent les portes de leur quotidien pour découvrir les coulisses de leur vie de stars mais aussi leur vie de mamans ! + Programme + Téléréalité + + 8 . 47 . + + Tout public + + + + TFX infos + Regardez le dernier journal télévisé avec une sélection des actualités préparée par la rédaction de TFX. + Information + Journal + + 0 . 309 . + + Tout public + + + + Mamans & célèbres + Dix célèbres femmes, stars des réseaux sociaux, sont aujourd'hui devenues influenceuses mais avant tout mamans ! Pour la première fois, elles nous ouvrent les portes de leur quotidien pour découvrir les coulisses de leur vie de stars mais aussi leur vie de mamans ! + Programme + Téléréalité + + 8 . 48 . + + Tout public + + + + Mamans & célèbres + Dix célèbres femmes, stars des réseaux sociaux, sont aujourd'hui devenues influenceuses mais avant tout mamans ! Pour la première fois, elles nous ouvrent les portes de leur quotidien pour découvrir les coulisses de leur vie de stars mais aussi leur vie de mamans ! + Programme + Téléréalité + + 8 . 49 . + + Tout public + + + + Mamans & célèbres + Dix célèbres femmes, stars des réseaux sociaux, sont aujourd'hui devenues influenceuses mais avant tout mamans ! Pour la première fois, elles nous ouvrent les portes de leur quotidien pour découvrir les coulisses de leur vie de stars mais aussi leur vie de mamans ! + Programme + Téléréalité + + 8 . 50 . + + Tout public + + + + Grey's Anatomy + Tous accros + Les médecins du Grace Hospital prennent en charge les victimes d'une explosion dans un immeuble. Parmi les blessés se trouve un bébé de 18 mois suivi par Alex. Ce dernier tente de découvrir les raisons de l'accident. Alors que Cristina échange les cadeaux reçus pour son mariage contre des opérations, Jane Burke se rend à l'hôpital pour la rencontrer et récupérer les effets de son fils. Désemparée à l'idée de la revoir, Cristina fait tout pour l'éviter. Lexie veut avoir une discussion avec sa demi-soeur mais Meredith n'y tient pas vraiment. Quant à Callie, la nouvelle chef des internes, elle est dépassée par les événements... + Série + Drame + + 3 . 1 . + + Tout public + + + + Grey's Anatomy + Paroles, paroles + Meredith doit superviser le premier acte chirurgical de Lexie, ce qui ne l'enchante guère. De son côté, Alex se voit attribuer un nouvel interne, bien plus âgé que lui. Une patiente atteinte d'un cancer de la langue apprend que son opération pourrait l'empêcher de parler. Mark propose d'utiliser une technique novatrice mais il n'a jamais pratiqué ce type d'intervention. Quant à George, ses prouesses impressionnent ses condisciples qui ignorent toujours qu'il a redoublé son internat. A la surprise de l'ensemble du personnel, un homme âgé, dans le coma depuis un an, se réveille soudainement... + Série + Drame + + 3 . 2 . + + Tout public + + + + Grey's Anatomy + Prêtes à tout + Informée de la liaison entre Izzie et George, Callie demande à sa rivale de la retrouver à la cafétéria. La rumeur d'un duel se répand à travers tout l'hôpital et les paris vont bon train. La nièce de Richard est à nouveau hospitalisée en raison d'une récidive de son cancer. Les différents traitements ont épuisé la jeune fille qui refuse de se battre une fois de plus. Sa mère et sa tante supplient Richard de la convaincre de changer d'avis. Excédé par les manières cavalières de Cristina envers ses internes, Derek lui apprend à devenir un meilleur enseignant. Une ancienne patiente revient... + Série + Drame + + 3 . 3 . + + + -10 + + + + Grey's Anatomy + A jamais réunis + C'est le soir d'Halloween et, comme chaque année, les médecins se préparent à un défilé de blessures plus rocambolesques les unes que les autres. Parmi les patients, un homme exige de se faire amputer d'un pied pourtant sain. Un refus catégorique lui est opposé, mais il insiste. Sur ces entrefaites arrive un patient qui s'est coupé le doigt en sculptant une citrouille avec une tronçonneuse. Alors que Meredith est hantée par le souvenir de sa mère, Alex reçoit la visite d'une ancienne patiente. Quant à Callie, elle révèle à tous les internes la relation entre George et Izzie... + Série + Drame + + 3 . 4 . + + + -10 + + + + Grey's Anatomy + Epreuve de force + Toujours en froid avec sa femme, le Chef propose une soirée entre hommes à ses collègues. Cristina et Izzie se disputent pour participer à une intervention chirurgicale délicate avec le docteur Hahn. Deux femmes, qui se sont blessées lors d'un concours pour gagner la robe de mariage dont elles rêvent, refusent de lâcher l'objet de leur convoitise. Un homme a miraculeusement survécu à une chute de plus de 3000 mètres alors que son parachute ne s'était pas ouvert. Son cas attire tout l'hôpital : aussi impressionnant que fut son accident, il n'a besoin que d'une appendicectomie... + Série + Drame + + 3 . 5 . + + Tout public + + + + Quatre mariages pour une lune de miel + Rebecca et Maxime + Quatre jeunes femmes vont mettre en compétition le plus beau jour de leur vie, celui qu'elles attendent depuis des années : leur mariage ! Elles ne se connaissent pas mais ont accepté ce jour-là de se faire juger par les autres. A chaque épisode, alors que l'une d'entre elles se fait passer la bague au doigt, les trois autres, invitées à la cérémonie et à la soirée, vont devoir noter le mariage sur plusieurs critères : la robe, l'ambiance, le repas et la décoration de chaque mariage auquel elles assistent. Au fil de la semaine, Elodie Villemus, professionnelle de la conception et de l'organisation de mariages, suivra et commentera chaque mariage, du lundi au jeudi, et attribuera une note pour chacun des critères de la compétition : la robe, la décoration, le repas et l'ambiance. + Programme + Téléréalité + + 19 . 8 . + + Tout public + + + + Quatre mariages pour une lune de miel + Reveal + Quatre jeunes femmes vont mettre en compétition le plus beau jour de leur vie, celui qu'elles attendent depuis des années : leur mariage ! Elles ne se connaissent pas mais ont accepté ce jour-là de se faire juger par les autres. A chaque épisode, alors que l'une d'entre elles se fait passer la bague au doigt, les trois autres, invitées à la cérémonie et à la soirée, vont devoir noter le mariage sur plusieurs critères : la robe, l'ambiance, le repas et la décoration de chaque mariage auquel elles assistent. Au fil de la semaine, Elodie Villemus, professionnelle de la conception et de l'organisation de mariages, suivra et commentera chaque mariage, du lundi au jeudi, et attribuera une note pour chacun des critères de la compétition : la robe, la décoration, le repas et l'ambiance. + Programme + Téléréalité + + + Tout public + + + + Quatre mariages pour une lune de miel + Sofia et Abraham + Nouveaux rebondissements dans \" 4 Mariages Pour Une Lune de Miel \" ! À découvrir une finale totalement revisitée, propice aux règlements de compte. La découverte des notes les yeux dans les yeux. Grande nouveauté : pour la première fois dans l'histoire du programme, la finale fait sa révolution. Terminé la découverte des notes en couple, chacun de son côté ! Les quatre mariées se retrouveront désormais tous les vendredis pour un rendez-vous exceptionnel autour d'une table d'honneur pour découvrir ensemble les notes et les commentaires de leurs concurrentes sur leurs propres mariages. Un véritable temps fort de la semaine où les langues vont pouvoir se délier ! Entre explications intenses, émotions fortes et échanges houleux… Avec cette nouvelle mise en scène, les mariées ne seront pas au bout de leurs surprises. + Programme + Téléréalité + + 13 . 25 . + + Tout public + + + + Star Academy, la quotidienne + Retrouvez tous les jours \" La Quotidienne \" ! L'occasion de revenir sur les moments forts de la journée des académiciens. + Programme + Téléréalité + + 10 . 0 . + + Tout public + + + + Petits plats en équilibre + Du lundi 13 au vendredi 17 novembre, embarquez pour une semaine culinaire unique sur TF1. Petits Plats en Equilibre, le rendez-vous quotidien présenté par Laurent Mariotte, fête ses 15 ans d'existence et de succès d'audience. Pour marquer cet anniversaire gourmand et télévisuel, Laurent Mariotte nous prépare un menu d'automne aux petits oignons avec des recettes de saison savoureuses, originales, accessibles pour le porte-monnaie de chacun, à refaire chez soi sans modération. A la carte de cette semaine spéciale : rôti de porc au lait, tourte de champignons, spirale de pommes de terre à la Javanaise, pâtes au citron. + Art de vivre + Gastronomie + + + Tout public + + + + Appels d'urgence + Emeutes, bagarres : la tension monte pour la police municipale de Beauvais + La ville de Beauvais, à 100 km au nord de Paris, est connue des touristes du monde entier pour sa splendide cathédrale. Mais pour ses 60 000 habitants, Beauvais est l'exemple parfait de ces villes moyennes confrontées à la délinquance au quotidien. On y déplore huit crimes ou délits commis chaque jour en moyenne. Pour y faire face, cinquante agents de la police municipale traquent jour et nuit le moindre trouble à la tranquillité publique. Le centre-ville est le théâtre de bagarres en tout genre liées à l'alcool, à des soirées très arrosées, à des rixes entre automobilistes ou entre petits trafiquants de drogues. Les interventions musclées se multiplient lors des week-ends ou à l'occasion de grands rassemblements très agités comme la fête de la musique, particulièrement mouvementée. + Magazine + Société + + 23 . 1003 . + + + -10 + + + + Appels d'urgence + Pompiers de l'Allier : missions chocs sur la route de tous les dangers + Toutes les 19 minutes, les 2000 pompiers de l'Allier partent en intervention, souvent pour des missions hors normes durant lesquelles ils doivent se débrouiller seuls, loin de tout. Récemment, les pompiers ont dû extraire un cheval de 500 kg qui se noyait dans la vase et le matériel de dégagement ne suffisait pas, secourir des randonneurs blessés dans une gorge difficile d'accès et l'hélicoptère n'était pas disponible, ou encore faire face à une exceptionnelle attaque de frelons asiatiques à la piqûre mortelle chez certaines victimes allergiques. + Magazine + Société + + 23 . 1004 . + + Tout public + + + + Appels d'urgence + Gendarmes du Nord : des délinquants pas bienvenus chez les Ch'tis + A la périphérie de Lille, les gendarmes sont sur la brèche en raison des bagarres entre voisins pour tapages nocturnes, des rivalités entre bandes de jeunes et des soirées un peu trop alcoolisées. Entre deux interventions, ils traquent également les voleurs de voitures et les bandes de cambrioleurs afin d'éviter les règlements de compte qui dégénèrent. Les produits de contrebande, de stupéfiants et les bijoux dérobés provoquent des tensions y compris dans certains quartiers résidentiels. "Appels d'urgence" a suivi le quotidien de ces brigades de choc. + Magazine + Société + + 19 . 619 . + + + -10 + + + + Appels d'urgence + Squat, stups, cambriolages : au coeur du flagrant délit avec la BAC d'Avignon + Réputée pour son célèbre pont, son Palais des papes et son festival, la ville d'Avignon attire chaque année des milliers de touristes. Pourtant, Avignon est aussi classée parmi les villes les plus dangereuses de France. Pour faire face à la délinquance, la Brigade anti-criminalité est en première ligne. Pendant trois mois, les équipes ont suivi le quotidien de ces policiers d'élite, surentraînés et spécialistes du flagrant délit. Après un nouveau règlement de compte qui a fait deux morts, ils ont décidé de frapper un grand coup au coeur des cités sensibles afin de traquer les dealers, avec, à la clé, des saisies spectaculaires de cocaïne et de résine de cannabis. L'autre préoccupation de la BAC, ce sont les cambriolages en hausse. Entre courses-poursuites et interpellations musclées, leurs interventions se révèlent souvent délicates. + Magazine + Société + + 22 . 10 . + + Tout public + + + + Programmes de la nuit + Retrouvez tous vos programmes de nuit. + Programme + Programme indéterminé + + + Tout public + + + + Petits plats en équilibre + Dorade au citron confit + Chaque jour, Laurent Mariotte propose des recettes simples et savoureuses pour profiter des ingrédients de saison, en donnant la part belle aux produits locaux. + Magazine + Mag. Société + + 23 . 6 . + + Tout public + + + + Mamans & célèbres + Dix célèbres femmes, stars des réseaux sociaux, sont aujourd'hui devenues influenceuses mais avant tout mamans ! Pour la première fois, elles nous ouvrent les portes de leur quotidien pour découvrir les coulisses de leur vie de stars mais aussi leur vie de mamans ! + Divertissement + + + Tout public + + + + Mamans & célèbres + Dix célèbres femmes, stars des réseaux sociaux, sont aujourd'hui devenues influenceuses mais avant tout mamans ! Pour la première fois, elles nous ouvrent les portes de leur quotidien pour découvrir les coulisses de leur vie de stars mais aussi leur vie de mamans ! + Divertissement + + + Tout public + + + + Mamans & célèbres + Dix célèbres femmes, stars des réseaux sociaux, sont aujourd'hui devenues influenceuses mais avant tout mamans ! Pour la première fois, elles nous ouvrent les portes de leur quotidien pour découvrir les coulisses de leur vie de stars mais aussi leur vie de mamans ! + Divertissement + + + Tout public + + + + TFX infos + Regardez le dernier journal télévisé avec une sélection des actualités préparée par la rédaction de TFX. + Info-Météo + Information + + + Tout public + + + + Mamans & célèbres + Dix célèbres femmes, stars des réseaux sociaux, sont aujourd'hui devenues influenceuses mais avant tout mamans ! Pour la première fois, elles nous ouvrent les portes de leur quotidien pour découvrir les coulisses de leur vie de stars mais aussi leur vie de mamans ! + Divertissement + + + Tout public + + + + Mamans & célèbres + Dix célèbres femmes, stars des réseaux sociaux, sont aujourd'hui devenues influenceuses mais avant tout mamans ! Pour la première fois, elles nous ouvrent les portes de leur quotidien pour découvrir les coulisses de leur vie de stars mais aussi leur vie de mamans ! + Divertissement + + + Tout public + + + + Mamans & célèbres + Dix célèbres femmes, stars des réseaux sociaux, sont aujourd'hui devenues influenceuses mais avant tout mamans ! Pour la première fois, elles nous ouvrent les portes de leur quotidien pour découvrir les coulisses de leur vie de stars mais aussi leur vie de mamans ! + Divertissement + + + Tout public + + + + Grey's Anatomy + Paroles, paroles + Meredith doit superviser le premier acte chirurgical de Lexie, ce qui ne l'enchante guère. De son côté, Alex se voit attribuer un interne plus âgé que lui. Une patiente atteinte d'un cancer de la langue apprend que son opération pourrait l'empêcher de parler. Mark propose d'utiliser une technique novatrice... + Série + Série Passion + + 3 . 2 . + + Tout public + + + + Grey's Anatomy + Prêtes à tout + Informée de la liaison entre Izzie et George, Callie demande à sa rivale de la retrouver à la cafétéria. La rumeur d'un duel se répand à travers tout l'hôpital et les paris vont bon train. La nièce de Richard est à nouveau hospitalisée en raison d'une récidive de son cancer. Une ancienne patiente revient... + Série + Série Passion + + 3 . 3 . + + + -10 + + + + Grey's Anatomy + A jamais réunis + Halloween réserve de nombreuses surprises aux médecins de Seattle : Alex reçoit la visite d'une ancienne patiente et Meredith ne cesse de repenser à sa mère. Alors qu'un homme exige de se faire amputer, un patient qui s'est coupé le doigt en sculptant une citrouille avec une tronçonneuse arrive à l'hôpital... + Série + Série Passion + + 3 . 4 . + + + -10 + + + + Grey's Anatomy + Epreuve de force + Alors que le Chef propose une soirée entre hommes à ses collègues, Cristina et Izzie se disputent pour participer à une intervention chirurgicale délicate. Deux femmes, qui se sont blessées lors d'un concours pour gagner le mariage de leur rêve, refusent de lâcher l'objet de leur convoitise... + Série + Série Passion + + 3 . 5 . + + Tout public + + + + Grey's Anatomy + Attraction physique + La relation entre George et Izzie est mise à l'épreuve. Richard et Derek ont pris l'habitude de dîner régulièrement ensemble avant de regarder un film. Callie demande à Bailey de l'aider à organiser le planning du service : en effet, la jeune femme préférerait se consacrer aux opérations... + Série + Série Passion + + 3 . 6 . + + + -10 + + + + Quatre mariages pour une lune de miel + Reveal + Aucune description + Divertissement + + 0 . 0 . + + Tout public + + + + Quatre mariages pour une lune de miel + Sofia et Abraham + Aucune description + Divertissement + + 0 . 0 . + + Tout public + + + + Quatre mariages pour une lune de miel + Jihanne et Benjamin + Aucune description + Divertissement + + 0 . 0 . + + Tout public + + + + Star Academy, la quotidienne + Aucune description + Divertissement + + + Tout public + + + + Petits plats en équilibre + Chaque jour, Laurent Mariotte propose des recettes simples et savoureuses pour profiter des ingrédients de saison, en donnant la part belle aux produits locaux. + Magazine + Mag. Société + + + Tout public + + + + Le transporteur III + Un redoutable homme d'affaires du nom de Johnson fait pression sur Frank Martin pour qu'il reprenne le volant. Le transporteur, qui se retrouve avec un bracelet explosif au poignet, est forcé de convoyer deux gros sacs et une jeune Ukrainienne, depuis Marseille jusqu'à Odessa, au bord de la mer Noire... + Film + Film Action + + + + -10 + + + + Le transporteur 2 + A Miami, le gouvernement fédéral mène une lutte sans merci contre les narcotrafiquants. Pour protéger le fils d'un des fonctionnaires qui les combat, il a été fait appel à Frank Martin, l'as du volant. Mais un mercenaire parvient à enlever l'enfant, et Frank est soupçonné de complicité... + Film + Film Action + + + + -10 + + + + Programmes de la nuit + Programmes de nuit + Retrouvez tous vos programmes de nuit. + Autre + + 0 . 0 . + + Tout public + + + + Petits plats en équilibre + Chaud-froid de mirabelles caramel + Chaque jour, Laurent Mariotte propose des recettes simples et savoureuses pour profiter des ingrédients de saison, en donnant la part belle aux produits locaux. + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Mamans & célèbres + Aucune description + Divertissement + + + Tout public + + + + Mamans & célèbres + Dix célèbres femmes, stars des réseaux sociaux, sont aujourd'hui devenues influenceuses mais avant tout mamans ! Pour la première fois, elles nous ouvrent les portes de leur quotidien pour découvrir les coulisses de leur vie de stars mais aussi leur vie de mamans ! + Divertissement + + + Tout public + + + + Mamans & célèbres + Dix célèbres femmes, stars des réseaux sociaux, sont aujourd'hui devenues influenceuses mais avant tout mamans ! Pour la première fois, elles nous ouvrent les portes de leur quotidien pour découvrir les coulisses de leur vie de stars mais aussi leur vie de mamans ! + Divertissement + + + Tout public + + + + TFX infos + Regardez le dernier journal télévisé avec une sélection des actualités préparée par la rédaction de TFX. + Info-Météo + Information + + + Tout public + + + + Mamans & célèbres + Dix célèbres femmes, stars des réseaux sociaux, sont aujourd'hui devenues influenceuses mais avant tout mamans ! Pour la première fois, elles nous ouvrent les portes de leur quotidien pour découvrir les coulisses de leur vie de stars mais aussi leur vie de mamans ! + Divertissement + + + Tout public + + + + Mamans & célèbres + Dix célèbres femmes, stars des réseaux sociaux, sont aujourd'hui devenues influenceuses mais avant tout mamans ! Pour la première fois, elles nous ouvrent les portes de leur quotidien pour découvrir les coulisses de leur vie de stars mais aussi leur vie de mamans ! + Divertissement + + + Tout public + + + + Mamans & célèbres + Dix célèbres femmes, stars des réseaux sociaux, sont aujourd'hui devenues influenceuses mais avant tout mamans ! Pour la première fois, elles nous ouvrent les portes de leur quotidien pour découvrir les coulisses de leur vie de stars mais aussi leur vie de mamans ! + Divertissement + + + Tout public + + + + Clap ! + Clap, votre programme consacré à l'actualité du cinéma, des séries américaines et de la fiction française. + Magazine + Mag. Culture + + + Tout public + + + + Grey's Anatomy + Prêtes à tout + Informée de la liaison entre Izzie et George, Callie demande à sa rivale de la retrouver à la cafétéria. La rumeur d'un duel se répand à travers tout l'hôpital et les paris vont bon train. La nièce de Richard est à nouveau hospitalisée en raison d'une récidive de son cancer. Une ancienne patiente revient... + Série + Série Passion + + 3 . 3 . + + + -10 + + + + Grey's Anatomy + A jamais réunis + Halloween réserve de nombreuses surprises aux médecins de Seattle : Alex reçoit la visite d'une ancienne patiente et Meredith ne cesse de repenser à sa mère. Alors qu'un homme exige de se faire amputer, un patient qui s'est coupé le doigt en sculptant une citrouille avec une tronçonneuse arrive à l'hôpital... + Série + Série Passion + + 3 . 4 . + + + -10 + + + + Grey's Anatomy + Epreuve de force + Alors que le Chef propose une soirée entre hommes à ses collègues, Cristina et Izzie se disputent pour participer à une intervention chirurgicale délicate. Deux femmes, qui se sont blessées lors d'un concours pour gagner le mariage de leur rêve, refusent de lâcher l'objet de leur convoitise... + Série + Série Passion + + 3 . 5 . + + Tout public + + + + Grey's Anatomy + Attraction physique + La relation entre George et Izzie est mise à l'épreuve. Richard et Derek ont pris l'habitude de dîner régulièrement ensemble avant de regarder un film. Callie demande à Bailey de l'aider à organiser le planning du service : en effet, la jeune femme préférerait se consacrer aux opérations... + Série + Série Passion + + 3 . 6 . + + + -10 + + + + Grey's Anatomy + Retour au lycée + Un accident impliquant un bus scolaire provoque un afflux d'adolescents aux urgences. Alors que Meredith revoit son père, Derek sort avec une de ses collègues. Cristina jubile en apprenant qu'elle réintègre l'équipe de cardiologie sous la houlette de Hahn, qu'elle tente en vain d'impressionner... + Série + Série Passion + + 3 . 7 . + + Tout public + + + + Quatre mariages pour une lune de miel + Sofia et Abraham + Aucune description + Divertissement + + 13 . 25 . + + Tout public + + + + Quatre mariages pour une lune de miel + Jihanne et Benjamin + Aucune description + Divertissement + + 13 . 26 . + + Tout public + + + + Quatre mariages pour une lune de miel + Gloire et Aldrin + Aucune description + Divertissement + + 13 . 27 . + + Tout public + + + + Star Academy, la quotidienne + Aucune description + Divertissement + + + Tout public + + + + Petits plats en équilibre + Chaque jour, Laurent Mariotte propose des recettes simples et savoureuses pour profiter des ingrédients de saison, en donnant la part belle aux produits locaux. + Magazine + Mag. Société + + + Tout public + + + + Cleaners les experts du ménage + Léone & Audrey / Michèle + A Toulouse, Léone rêve secrètement de retrouver un appartement aussi bien entretenu que celui de sa voisine Audrey. Maman de sept enfants, elle a totalement baissé les bras. A Marseille, Michèle est passionnée de chaussures. Elle espère que l'équipe pourra l'aider à trier et organiser tout son trésor, + Divertissement + + 0 . 0 . + + Tout public + + + + Cleaners les experts du ménage + Marie-Florette et Christophe + Christophe est propriétaire d'un garage dans lequel il fait des réparations mais aussi de la création et de la customisation d'objets en tout genre. Mais Christophe est désorganisé. De son côté, Marie-Florette a grandi dans une maison aux moyens aisés et n'a jamais appris à s'occuper des tâches ménagères. + Divertissement + + 2 . 5 . + + Tout public + + + + Programmes de la nuit + Programmes de nuit + Retrouvez tous vos programmes de nuit. + Autre + + 0 . 0 . + + Tout public + + + + Petits plats en équilibre + Mes oeufs au four + Chaque jour, Laurent Mariotte propose des recettes simples et savoureuses pour profiter des ingrédients de saison, en donnant la part belle aux produits locaux. + Magazine + Mag. Société + + 23 . 8 . + + Tout public + + + + Mamans & célèbres + Dix célèbres femmes, stars des réseaux sociaux, sont aujourd'hui devenues influenceuses mais avant tout mamans ! Pour la première fois, elles nous ouvrent les portes de leur quotidien pour découvrir les coulisses de leur vie de stars mais aussi leur vie de mamans ! + Divertissement + + + Tout public + + + + Mamans & célèbres + Dix célèbres femmes, stars des réseaux sociaux, sont aujourd'hui devenues influenceuses mais avant tout mamans ! Pour la première fois, elles nous ouvrent les portes de leur quotidien pour découvrir les coulisses de leur vie de stars mais aussi leur vie de mamans ! + Divertissement + + + Tout public + + + + Mamans & célèbres + Dix célèbres femmes, stars des réseaux sociaux, sont aujourd'hui devenues influenceuses mais avant tout mamans ! Pour la première fois, elles nous ouvrent les portes de leur quotidien pour découvrir les coulisses de leur vie de stars mais aussi leur vie de mamans ! + Divertissement + + + Tout public + + + + TFX infos + Regardez le dernier journal télévisé avec une sélection des actualités préparée par la rédaction de TFX. + Info-Météo + Information + + + Tout public + + + + Mamans & célèbres + Dix célèbres femmes, stars des réseaux sociaux, sont aujourd'hui devenues influenceuses mais avant tout mamans ! Pour la première fois, elles nous ouvrent les portes de leur quotidien pour découvrir les coulisses de leur vie de stars mais aussi leur vie de mamans ! + Divertissement + + + Tout public + + + + Mamans & célèbres + Dix célèbres femmes, stars des réseaux sociaux, sont aujourd'hui devenues influenceuses mais avant tout mamans ! Pour la première fois, elles nous ouvrent les portes de leur quotidien pour découvrir les coulisses de leur vie de stars mais aussi leur vie de mamans ! + Divertissement + + + Tout public + + + + Mamans & célèbres + Dix célèbres femmes, stars des réseaux sociaux, sont aujourd'hui devenues influenceuses mais avant tout mamans ! Pour la première fois, elles nous ouvrent les portes de leur quotidien pour découvrir les coulisses de leur vie de stars mais aussi leur vie de mamans ! + Divertissement + + + Tout public + + + + Grey's Anatomy + A jamais réunis + Halloween réserve de nombreuses surprises aux médecins de Seattle : Alex reçoit la visite d'une ancienne patiente et Meredith ne cesse de repenser à sa mère. Alors qu'un homme exige de se faire amputer, un patient qui s'est coupé le doigt en sculptant une citrouille avec une tronçonneuse arrive à l'hôpital... + Série + Série Passion + + 3 . 4 . + + + -10 + + + + Grey's Anatomy + Epreuve de force + Alors que le Chef propose une soirée entre hommes à ses collègues, Cristina et Izzie se disputent pour participer à une intervention chirurgicale délicate. Deux femmes, qui se sont blessées lors d'un concours pour gagner le mariage de leur rêve, refusent de lâcher l'objet de leur convoitise... + Série + Série Passion + + 3 . 5 . + + Tout public + + + + Grey's Anatomy + Attraction physique + La relation entre George et Izzie est mise à l'épreuve. Richard et Derek ont pris l'habitude de dîner régulièrement ensemble avant de regarder un film. Callie demande à Bailey de l'aider à organiser le planning du service : en effet, la jeune femme préférerait se consacrer aux opérations... + Série + Série Passion + + 3 . 6 . + + + -10 + + + + Grey's Anatomy + Retour au lycée + Un accident impliquant un bus scolaire provoque un afflux d'adolescents aux urgences. Alors que Meredith revoit son père, Derek sort avec une de ses collègues. Cristina jubile en apprenant qu'elle réintègre l'équipe de cardiologie sous la houlette de Hahn, qu'elle tente en vain d'impressionner... + Série + Série Passion + + 3 . 7 . + + Tout public + + + + Grey's Anatomy + Chacun sa croix… + Deux ambulances entrent en collision juste devant l'hôpital. Meredith et Richard s'occupent des deux hommes encore prisonniers de l'un dess deux véhicules. Rebecca est de retour. De son côté, le mari de Miranda en a plus qu'assez que son épouse ne soit jamais à la maison depuis sa montée en grade... + Série + Série Passion + + 3 . 8 . + + + -10 + + + + Quatre mariages pour une lune de miel + Jihanne et Benjamin + Aucune description + Divertissement + + 13 . 26 . + + Tout public + + + + Quatre mariages pour une lune de miel + Gloire et Aldrin + Aucune description + Divertissement + + 13 . 27 . + + Tout public + + + + Quatre mariages pour une lune de miel + Ali et Nour + Aucune description + Divertissement + + 0 . 0 . + + Tout public + + + + Star Academy, la quotidienne + Aucune description + Divertissement + + + Tout public + + + + Petits plats en équilibre + Chaque jour, Laurent Mariotte propose des recettes simples et savoureuses pour profiter des ingrédients de saison, en donnant la part belle aux produits locaux. + Magazine + Mag. Société + + + Tout public + + + + Star Wars Episode IV : Un nouvel espoir + L'univers est tombé sous la coupe de l'Empire galactique. La princesse Leia Organa, qui les combat avec l'aide de quelques rares rebelles, s'empare des plans d'une station spatiale, "L'Etoile de la mort", la nouvelle arme suprême de l'Empire. Las ! Elle est faite prisonnière par Dark Vador et ses soldats... + Film + Film Sc.Fiction + + + Tout public + + + + Chroniques criminelles + L'affaire Odile Touche : Les secrets du journal intime + Le 25 mai 2007, à Roost-Warendin, petite commune du nord de la France, Odile Touche, mère de famille sans histoires, est assassinée chez elle. La jeune femme a été violée et étranglée. L'enquête s'oriente vers un cambriolage mais, très vite, cette piste s'effondre. Le journal intime de la victime livre une autre version du drame. + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Programmes de la nuit + Programmes de nuit + Retrouvez tous vos programmes de nuit. + Autre + + 0 . 0 . + + Tout public + + + + Engagez-vous ! + Traces de vies + Aucune description + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + Les plus grands mystères de l'Histoire + L'arche d'alliance + L'arche d'alliance est sans doute l'un des plus grands mystères de l'histoire de l'humanité. Elle est censée avoir renfermé les 10 commandements donnés à Moise. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + 100 jours avec la police des Ardennes + Meurtre, émeute, chauffard : alerte à Charleville-Mézières + Pour veiller sur les 47 000 habitants de Charleville-Mézières, dans les Ardennes, une police municipale de 33 agents se relaie jour et nuit. + Documentaire + Doc. Société + + 0 . 0 . + + + -10 + + + + 100 jours avec les gendarmes d'Aix-en-Provence + Agressions, fêtes illégales, délits routiers : les forces de l'ordre sur le qui-vive + Entre fous du volant, drogue et violences familiales, les forces de l'ordre sont en alerte à Aix-en-Provence, à quelques kilomètres de la Méditerranée. + Documentaire + Doc. Société + + 0 . 0 . + + + -10 + + + + 100 jours avec les gendarmes de Bretagne + Ivrognes, retrait de permis, tentative de meurtre : alerte en Bretagne + Pendant plusieurs semaines, les gendarmes de la compagnie de Lorient ainsi que les hommes de la brigade d'Auray ont partagé leur quotidien. + Documentaire + Doc. Société + + 0 . 0 . + + + -10 + + + + Flic story + Police municipale d'Argelès-sur-Mer + Lors de la saison estivale, la police d'Argelès-sur-Mer doit faire face aux incidents tels que conduite en état d'ivresse, bagarres, noyades, vols et violences. + Documentaire + Doc. Société + + 0 . 0 . + + + -10 + + + + Retour à l'instinct primaire + La vie, la vraie + Deux survivalistes, Kim Shelton, 22 ans, et Shane Lewis, 40 ans, bravent la terrible jungle du Costa Rica, ses pluies torrentielles et ses serpents venimeux. + Documentaire + Doc. Évasion + + 2 . 0 . + + Tout public + + + + Retour à l'instinct primaire + L'île aux requins + Abandonnés nus sur l'île d'Andros, cinq finalistes de "Retour à l'instinct primaire" dépassent leurs limites pour survivre 14 jours sur cette île déserte. + Documentaire + Doc. Évasion + + 4 . 0 . + + Tout public + + + + Retour à l'instinct primaire + L'île aux requins + Les cinq finalistes continuent leurs aventures. Ils vont être obligés de s'aventurer dans les eaux des Bahamas, en prenant le risque d'affronter les requins. + Documentaire + Doc. Évasion + + 4 . 0 . + + Tout public + + + + Agriculteurs, au coeur du monde rural + Au plus près des animaux + Douze familles d'agriculteurs ouvrent les portes de leurs fermes, mais aussi de leurs cœurs. Leurs métiers sont divers, mais tous vivent de leurs terres. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + Retour à l'instinct primaire + Débutants et vétérans + Des vétérans expérimentés servent de mentors à deux nouveaux arrivants. Au bout de dix jours, ils doivent trouver un moyen de coopérer dans cette terre hostile. + Documentaire + Doc. Évasion + + 7 . 0 . + + Tout public + + + + Retour à l'instinct primaire + Débutants et vétérans + Des vétérans expérimentés servent de mentors à deux nouveaux arrivants. Au bout de dix jours, ils doivent trouver un moyen de coopérer dans cette terre hostile. + Documentaire + Doc. Évasion + + 7 . 0 . + + Tout public + + + + Retour à l'instinct primaire + Une histoire de famille + Dans un défi sans précédent, les soeurs jumelles Amber et Serena, ainsi que les frères Warren et Thomas, sont lâchés dans la savane africaine. + Documentaire + Doc. Évasion + + 5 . 0 . + + Tout public + + + + Retour à l'instinct primaire + Une histoire de famille + Amber, Serena, Warren et Thomas doivent faire front pour se protéger efficacement des dangers de la savane. Mais pour se faire, il faut s'entendre. + Documentaire + Doc. Évasion + + 5 . 0 . + + Tout public + + + + Programmes de la nuit + Le meilleur de la passion automobile : les courses, les plus beaux modèles, les nouveautés. + Autre + + + Tout public + + + + Major Crimes + En première ligne + Un ancien détenu livre un message, signé Phillip Stroh, à l'auteur des lettres de menaces. Peu après, son corps est retrouvé par la brigade dans un ruisseau. Il a été enroulé dans une housse de canapé en plastique. Les enquêteurs découvrent un lien possible avec d'autres morts, identiques. Les victimes étaient toutes passées par la case prison... + Série + Série Suspense + + 1 . 17 . + + + -10 + + + + Major Crimes + En première ligne + L'auteur des lettres anonymes qui menace la vie de Rusty n'ayant pas été arrêté, ce dernier s'installe chez Provenza pour ne pas mettre en danger sa sécurité. + Série + Série Suspense + + 1 . 18 . + + + -10 + + + + Major Crimes + Envolés + Ben Logan et ses deux enfants disparaissent et des taches de sang sont trouvées dans la chambre de sa fille. Cynthia, la mère, était absente au moment de la disparition. La brigade met au jour des secrets de famille troublants. Le père avait rendez-vous avec un avocat spécialiste des divorces... + Série + Série Suspense + + 2 . 0 . + + + -10 + + + + Major Crimes + Remise en liberté + Provenza prend un jour de congé pour rendre service à Rusty, dont la mère, Sharon Beck, est dans un centre de désintoxication. Rusty l'a revue plusieurs fois, mais tarde à le dire à Sharon Raydor. La mère de Rusty veut présenter ses excuses au capitaine Raydor pour avoir abandonné son enfant... + Série + Série Suspense + + 2 . 1 . + + Tout public + + + + Faites entrer l'accusé + Trois hommes et un magot (affaire Gauvin/Dubois) + A 71 ans, Francine Véran-Raspini gérait d'une main de fer sa petite fortune immobilière avec son fils de 47 ans, Marc. Ils ont été tués en mars 2002. Les auteurs du crime sont un père et son fils, les Gauvin, qui voulaient s'emparer de leur fortune. Mais le butin du vol est trop maigre et les Gauvin décident de falsifier des chèques avec un complice. + Magazine + Mag. Société + + 11 . 0 . + + + -10 + + + + Faites entrer l'accusé + Sylvain Schrutt : un gendre insoupçonnable + Emeline était encore une adolescente quand elle a découvert sa mère, Ghislaine Leclerc, morte au pied de son lit, le 28 août 2010, à Volesvres, en Saône-et-Loire. Cette chef d'entreprise de 57 ans a été surprise alors qu'elle était sur le point de se coucher. Qui a tué cette mère de famille, si proche de ses trois filles ? + Magazine + Mag. Société + + 1 . 0 . + + + -10 + + + + Faites entrer l'accusé + Florian Varin, le violeur à la gueule d'ange + Il a fait sept victimes entre décembre 2011 et novembre 2012. Toujours selon le même mode opératoire : Florian Varin demandait "un câlin" à ces femmes, quitte à le prendre de force. Sept femmes ont été agressées sexuellement ou violées par cet homme. + Magazine + Mag. Société + + 23 . 3 . + + + -10 + + + + Faites entrer l'accusé + André Bamberski, promesse à Kalinka + Kalinka, 15 ans, a été retrouvée morte dans la maison du nouveau mari de sa mère, en Allemagne, en 1982. Ce dernier, le docteur Krombach a bien tenté de réanimer l'adolescente. Mais ses explications confuses ont intrigué. André Bamberski, le père de Kalinka, a juré de venger la mort de sa fille. + Magazine + Mag. Société + + 14 . 9 . + + + -10 + + + + Ink Master + Guerre en couleur + Certains magasins perdent leur sang-froid alors qu'ils s'affrontent au cours d'un éprouvant tatouage éliminatoire. + Documentaire + Doc. Société + + 8 . 0 . + + + -10 + + + + Ink Master + À main levée + Les ateliers s'effondrent alors que la tension entre les coéquipiers s'intensifie. + Documentaire + Doc. Société + + 8 . 0 . + + + -10 + + + + Ink Master + Tatouage à tour de rôle + L'un des vétérans les plus tristement célèbres de la compétition revient pour secouer le jeu. + Documentaire + Doc. Société + + 8 . 0 . + + + -10 + + + + Ink Master + Les fantômes du passé + Un défi flash émotionnel fait pleurer les artistes ; l'Alliance devient une cible lorsqu'une paire de vétérans à l'épreuve des balles revient pour s'affronter pour le titre. + Documentaire + Doc. Société + + 8 . 0 . + + + -10 + + + + Ink Master + Pin-up et crise d'angoisse + Aucune description + Documentaire + Doc. Société + + 8 . 0 . + + + -10 + + + + Faites entrer l'accusé + Le crime presque parfait de Georges Pierru et Grit Bergmann + Un couple a bien failli commettre le crime parfait, le 26 septembre 2011, à Eze, près de Monaco. Quand le corps de Drost Notthoff, un industriel allemand, a été retrouvé pendu dans le salon, tout portait à croire qu'il s'était suicidé. Fait étrange : Grit Bergmann, son ex-compagne, et son nouveau conjoint ont rendu visite à la victime la veille. + Magazine + Mag. Société + + 23 . 6 . + + + -10 + + + + Faites entrer l'accusé + Patrice Uzan l'arme fatale + En janvier 2011, un couple de retraités est retrouvé mort, dans son pavillon. En avril 2011, un bijoutier est abattu lors d'un braquage. La gendarmerie enquête sur la première affaire. La PJ travaille sur l'autre, sans savoir que les deux affaires sont liées par le même mode opératoire. Toutes les victimes ont été abattues avec la même arme. + Magazine + Mag. Société + + 23 . 5 . + + + -10 + + + + Faites entrer l'accusé + Edith Scaravetti et le mort du mur + En 2014, Laurent Baca disparaît. Déjà condamné pour des petites affaires de drogue, il aurait participé à un go-fast et n'en serait jamais revenu selon sa compagne. Mais des mois plus tard, c'est dans son propre grenier que le corps du père de famille est retrouvé. Face à cette découverte, Edith Scaravetti avoue son crime. + Magazine + Mag. Société + + 23 . 4 . + + + -10 + + + + Programmes de la nuit + Vêtus d'habits de fourrure aux couleurs vives, et tous dotés d'une personnalité différente, les Oddbods sont sept drôles de personnages qui ne manquent ni de vitalité, ni d'imagination. Ils passent leur temps à chahuter et à se jouer des tours au fil des épisodes. + Autre + + + Tout public + + + + Programmes de la nuit + Aucune description + Magazine + Autre + + Tout public + + + + Charles matin + Aux côtés d'une équipe de journalistes, le présentateur offre un regard quotidien sur l'actualité. Ce programme place l'information au centre de ses débats. + Information + Journal + + 0 . 220 . + + Tout public + + + + Apolline matin + Apolline de Malherbe donne rendez-vous aux auditeurs de RMC et téléspectateurs de RMC Découverte pour une nouvelle matinale d' info : " Apolline matin ". Explications, débats et bonne humeur pour tout savoir, tout comprendre et se faire sa propre opinion. Tous les jours, dès 6h, ceux qui font l'actualité répondent aux questions d'Apolline de Malherbe et aux auditeurs/télespectateurs. + Magazine + Information + + 2 . 300 . + + Tout public + + + + Les grandes gueules + Autour d'Alain Marschall et d'Olivier Truchot, la bande des grandes gueules accueille tout au long de l'année des nouveaux intervenants représentatifs de la diversité de la société française et aborde sans tabou tous les sujets de société qui font l'actualité. + Magazine + Talk show + + 7 . 50 . + + Tout public + + + + Estelle midi : on ne va pas se mentir + Estelle Denis arrive aux commandes d'un rendez-vous d'opinions et de débats. Chaque jour, elle reçoit des invités qui apportent leurs point de vue sur l'actualité. + Magazine + Talk show + + 1 . 50 . + + Tout public + + + + Enquête prioritaire + Ados et dérapages + Peggy L, brigadier fraîchement arrivée à la Brigade Criminelle de Lens, se voit confier une enquête particulièrement délicate : le viol supposé d'une jeune femme par un adolescent. Au cours de son enquête, elle découvre que la victime présuméelui a menti. Mais alors, a-t-elle été réellement violée ? Pourquoi n'a-t-elle pas dit la vérité ? L'adolescent est-il aussi innocent qu'il le prétend ? Les policiers de la brigade criminelle tentent de déceler les contradictions de leurs récits. + Magazine + Société + + 0 . 174 . + + + -10 + + + + Enquête prioritaire + Attaques à main armée + Un bar-tabac du centre-ville de Mulhouse est victime d'une attaque violente pour quelques cartouches de cigarettes et quelques centaines d'euros. Les policiers de la brigade criminelle ont enquêté avec succès sur de nombreux vols à main armée dans les commerces de la ville. Mais cette fois, ils n'ont que peu d'éléments pour retrouver le braqueur. Deux enquêteurs rapprochent l'affaire d'un autre braquage non élucidé et remontent la piste. + Magazine + Société + + 0 . 0 . + + + -10 + + + + Ink Master - Le meilleur tatoueur + Le diable est dans les détails + Les outils sont chauds, mais la compétition est rude, car les artistes s'affrontent pour prendre le contrôle du défi flash. La bataille s'intensifie. + Documentaire + Téléréalité + + 10 . 0 . + + + -10 + + + + Ink Master - Le meilleur tatoueur + Le pouvoir des fleurs + Avec seulement six artistes restants, le pouvoir de contrôler le jeu est primordial. Les artistes doivent collaborer pour créer des tatouages puissants. + Documentaire + Téléréalité + + 10 . 0 . + + + -10 + + + + Ink Master - Le meilleur tatoueur + Un bon coup de crayon + Il n'y a nulle part où se cacher lorsque les artistes sont mis à l'épreuve dans "un portrait de précision". L'un d'entre eux rate la cible et est renvoyé. + Documentaire + Téléréalité + + 10 . 0 . + + + -10 + + + + Ink Master - Le meilleur tatoueur + L'heure de vérité + Il reste quatre artistes, mais seuls trois d'entre eux se qualifient pour la finale. Cleen et Christian sont à deux doigts de régler leurs comptes. + Documentaire + Téléréalité + + 10 . 0 . + + + -10 + + + + Triangle des Bermudes : les mystères engloutis + Un trou noir au fond de l'océan + L'équipe fait appel à un sous-marin perfectionné pour sonder l'une des parties les plus profondes et les plus sombres du triangle des Bermudes, à la recherche d'un navire légendaire disparu en 1921. D'énormes bulles se forment-elles au fond du triangle des Bermudes, entraînant la chute de navires et d'avions au fond de l'océan ? Au fond de l'océan, le Triangle des Bermudes livre l'un de ses secrets. + Documentaire + Histoire + + 0 . 0 . + + Tout public + + + + Triangle des Bermudes : les mystères engloutis + L'arme secrète du Pentagone + L'équipe engage l'un des navires de recherche les plus avancés de la planète pour fouiller les profondeurs à la recherche d'une arme secrète perdue de l'arsenal du Pentagone : un avion espion top secret qui a disparu dans le Triangle des Bermudes. Les avions et les navires sont-ils victimes d'une terrifiante tempête océanique appelée "grain blanc" ? + Documentaire + Histoire + + 0 . 0 . + + Tout public + + + + Triangle des Bermudes : les mystères engloutis + Le mystère de l'USS Cyclops + Une équipe d'élite enquête sur les mystères du Triangle des Bermudes à l'aide d'une carte secrète élaborée depuis des décennies. Dans le volet de ce documentaire, ils tentent de percer le mystère des raisons pour lesquelles 27 aviateurs et membres d'équipage de l'US Navy ont disparu sans laisser de traces la même nuit en 1945. En recherchant les épaves des avions perdus, ils découvrent un champ de débris comme ils n'en ont jamais vu et qui a des implications historiques. + Documentaire + Histoire + + 0 . 0 . + + Tout public + + + + Triangle des Bermudes : les mystères engloutis + Enquête en eaux profondes + L'équipe fait appel à des équipements spéciaux pour rechercher deux gros avions de l'armée de l'air qui ont disparu sans laisser de traces avec des dizaines de personnes à bord. Malgré des recherches massives, rien n'a jamais été retrouvé. Les avions entrent-ils en collision avec de mystérieux UAP dont la réalité est désormais reconnue par l'US Navy ? Pour enquêter, l'équipe se lance dans l'une des plongées les plus éprouvantes de son histoire, affrontant des profondeurs extrêmes et des courants qui menacent de l'emporter. + Documentaire + Histoire + + 0 . 0 . + + Tout public + + + + Programmes de la nuit + Aucune description + Magazine + Autre + + Tout public + + + + Charles matin + Aux côtés d'une équipe de journalistes, le présentateur offre un regard quotidien sur l'actualité. Ce programme place l'information au centre de ses débats. + Info-Météo + Information + + + Tout public + + + + Apolline matin + Apolline de Malherbe donne rendez-vous aux auditeurs de RMC et téléspectateurs de RMC Découverte pour une nouvelle matinale d' info : " Apolline matin ". Explications, débats et bonne humeur pour tout savoir, tout comprendre et se faire sa propre opinion. Tous les jours, dès 6h, ceux qui font l'actualité répondent aux questions d'Apolline de Malherbe et aux auditeurs/télespectateurs. + Magazine + Mag. Société + + + Tout public + + + + Les grandes gueules + Autour d'Alain Marschall et d'Olivier Truchot, la bande des grandes gueules accueille tout au long de l'année des nouveaux intervenants représentatifs de la diversité de la société française et aborde sans tabou tous les sujets de société qui font l'actualité. + Magazine + Débat + + + Tout public + + + + Estelle midi : on ne va pas se mentir + Estelle Denis arrive aux commandes d'un rendez-vous d'opinions et de débats. Chaque jour, elle reçoit des invités qui apportent leurs point de vue sur l'actualité. + Magazine + Débat + + + Tout public + + + + Enquête prioritaire + Guyane, crack et narcotrafic + Venus des pays voisins producteurs de drogue, comme le Surinam, la Colombie, le Pérou ou la Bolivie, les narcotrafiquants convergent vers la Guyane. Un objectif : profiter de l'aéroport de Cayenne pour inonder l'Europe avec des passeurs de drogue qui prennent tous les risques. Mais aussi vendre sur place une drogue "low cost", le crack. + Magazine + Mag. Société + + 0 . 0 . + + + -10 + + + + 100 jours avec les gendarmes des Alpes + Drogue, alcool, vitesse : mobilisation générale contre les chauffards + Pour veiller sur les 90 000 personnes qui habitent la région d'Albertville, 250 gendarmes divisés en neuf brigades territoriales sont au service de la population. + Documentaire + Doc. Société + + 0 . 0 . + + + -10 + + + + Ink Master + Le pouvoir des fleurs + Avec seulement six artistes restants, le pouvoir de contrôler le jeu est primordial. Les artistes doivent collaborer pour créer des tatouages puissants. + Documentaire + Doc. Société + + 10 . 0 . + + + -10 + + + + Ink Master + Un bon coup de crayon + Il n'y a nulle part où se cacher lorsque les artistes sont mis à l'épreuve dans "un portrait de précision". L'un d'entre eux rate la cible et est renvoyé. + Documentaire + Doc. Société + + 10 . 0 . + + + -10 + + + + Ink Master + L'heure de vérité + Il reste quatre artistes, mais seuls trois d'entre eux se qualifient pour la finale. Cleen et Christian sont à deux doigts de régler leurs comptes. + Documentaire + Doc. Société + + 10 . 0 . + + + -10 + + + + Ink Master + La finale + Christian et Cleen reviennent pour régler la question une fois pour toutes. La bataille s'achève lorsque les trois meilleurs artistes révèlent leurs tatouages. + Documentaire + Doc. Société + + 10 . 0 . + + + -10 + + + + Affaire Jubillar : le crime vraiment parfait + Cédric Jubillar est soupçonné d'avoir tué son épouse, Delphine Jubillar, disparue en décembre 2020. Mais aucune preuve irréfutable n'accuse le mari à ce jour. + Documentaire + Doc. Société + + + Tout public + + + + Jubillar, pour le meilleur et pour le pire + Le 11 février 2022, Cédric Jubillar a dû répondre aux juges d'instruction qui l'ont mis en examen pour le meurtre de son épouse Delphine. + Documentaire + Doc. Société + + + Tout public + + + + Qui est vraiment Cédric Jubillar ? + L'époux de Delphine Jubillar, Cédric Jubillar, soupçonné du meurtre de son épouse disparue depuis décembre 2020, continue de clamer son innocence. + Documentaire + + + Tout public + + + + Programmes de la nuit + Vêtus d'habits de fourrure aux couleurs vives, et tous dotés d'une personnalité différente, les Oddbods sont sept drôles de personnages qui ne manquent ni de vitalité, ni d'imagination. Ils passent leur temps à chahuter et à se jouer des tours au fil des épisodes. + Autre + + + Tout public + + + + Charles matin + Aux côtés d'une équipe de journalistes, le présentateur offre un regard quotidien sur l'actualité. Ce programme place l'information au centre de ses débats. + Info-Météo + Information + + + Tout public + + + + Apolline matin + Apolline de Malherbe donne rendez-vous aux auditeurs de RMC et téléspectateurs de RMC Découverte pour une nouvelle matinale d' info : " Apolline matin ". Explications, débats et bonne humeur pour tout savoir, tout comprendre et se faire sa propre opinion. Tous les jours, dès 6h, ceux qui font l'actualité répondent aux questions d'Apolline de Malherbe et aux auditeurs/télespectateurs. + Magazine + Mag. Société + + + Tout public + + + + Les grandes gueules + Autour d'Alain Marschall et d'Olivier Truchot, la bande des grandes gueules accueille tout au long de l'année des nouveaux intervenants représentatifs de la diversité de la société française et aborde sans tabou tous les sujets de société qui font l'actualité. + Magazine + Débat + + + Tout public + + + + Estelle midi : on ne va pas se mentir + Estelle Denis arrive aux commandes d'un rendez-vous d'opinions et de débats. Chaque jour, elle reçoit des invités qui apportent leurs point de vue sur l'actualité. + Magazine + Débat + + + Tout public + + + + Enquête prioritaire + Police du Sud : un quotidien sous haute tension + Dans l'Hérault, à Vias, une quinzaine de policiers municipaux veille activement sur une population qui donne parfois du fil à retordre aux forces de l'ordre. Agressions, bagarres à la sortie des boîtes de nuit, vols, conduite sous l'emprise de l'alcool, les policiers sont confrontés à une délinquance protéiforme. + Magazine + Mag. Société + + 0 . 0 . + + + -10 + + + + Enquête prioritaire + Sécurité routière, délinquance hors du commun + Vitesse excessive, conduite sous l'emprise de l'alcool ou de drogues : les comportements dangereux sont à l'origine de deux accidents sur trois. Pour les CRS qui patrouillent sur les autoroutes très fréquentées de la région parisienne, c'est une priorité. En ville aussi, la traque aux chauffards s'intensifie. + Magazine + Mag. Société + + 0 . 0 . + + + -10 + + + + Ink Master + Un bon coup de crayon + Il n'y a nulle part où se cacher lorsque les artistes sont mis à l'épreuve dans "un portrait de précision". L'un d'entre eux rate la cible et est renvoyé. + Documentaire + Doc. Société + + 10 . 0 . + + + -10 + + + + Ink Master + L'heure de vérité + Il reste quatre artistes, mais seuls trois d'entre eux se qualifient pour la finale. Cleen et Christian sont à deux doigts de régler leurs comptes. + Documentaire + Doc. Société + + 10 . 0 . + + + -10 + + + + Ink Master + La finale + Christian et Cleen reviennent pour régler la question une fois pour toutes. La bataille s'achève lorsque les trois meilleurs artistes révèlent leurs tatouages. + Documentaire + Doc. Société + + 10 . 0 . + + + -10 + + + + Ink Master + L'encre de vérité + Avec leurs mentors, des équipes de tatoueurs masculins et féminins s'affrontent, mais une seule personne remportera le titre convoité de maître de l'encre. + Documentaire + Doc. Société + + 11 . 0 . + + + -10 + + + + Flic story + Police nationale de Nîmes + Pour assurer la tranquillité des Nîmois comme des touristes, près de 300 policiers et une unité spécialisée sont prêts à protéger la ville. + Documentaire + Doc. Société + + 0 . 0 . + + + -10 + + + + Flic story + Police municipale d'Argelès-sur-Mer + Les policiers d'Argelès-sur-Mer ne s'arrêtent jamais, une intervention en chassant une autre : rixe sur la plage, accident de scooters mais aussi cambriolage. + Documentaire + Doc. Société + + 0 . 0 . + + + -10 + + + + Flic story + Police municipale d'Argelès-sur-Mer + L'été, les policiers d'Argelès-sur-Mer sont surchargés de travail. L'alcool coule à flot, multipliant ainsi les agressions et les comportements dangereux. + Documentaire + Doc. Société + + 0 . 0 . + + + -10 + + + + Programmes de la nuit + Vêtus d'habits de fourrure aux couleurs vives, et tous dotés d'une personnalité différente, les Oddbods sont sept drôles de personnages qui ne manquent ni de vitalité, ni d'imagination. Ils passent leur temps à chahuter et à se jouer des tours au fil des épisodes. + Autre + + + Tout public + + + + Charles matin + Aux côtés d'une équipe de journalistes, le présentateur offre un regard quotidien sur l'actualité. Ce programme place l'information au centre de ses débats. + Info-Météo + Information + + + Tout public + + + + Apolline matin + Apolline de Malherbe donne rendez-vous aux auditeurs de RMC et téléspectateurs de RMC Découverte pour une nouvelle matinale d' info : " Apolline matin ". Explications, débats et bonne humeur pour tout savoir, tout comprendre et se faire sa propre opinion. Tous les jours, dès 6h, ceux qui font l'actualité répondent aux questions d'Apolline de Malherbe et aux auditeurs/télespectateurs. + Magazine + Mag. Société + + + Tout public + + + + Les grandes gueules + Autour d'Alain Marschall et d'Olivier Truchot, la bande des grandes gueules accueille tout au long de l'année des nouveaux intervenants représentatifs de la diversité de la société française et aborde sans tabou tous les sujets de société qui font l'actualité. + Magazine + Débat + + + Tout public + + + + Estelle midi : on ne va pas se mentir + Estelle Denis arrive aux commandes d'un rendez-vous d'opinions et de débats. Chaque jour, elle reçoit des invités qui apportent leurs point de vue sur l'actualité. + Magazine + Débat + + + Tout public + + + + Mission protection + Trafics de drogue : la police contre-attaque ! + Des unités de police spécialisées luttent activement contre le trafic de stupéfiants, considéré comme le premier marché criminel en France. + Documentaire + Doc. Découverte + + 11 . 0 . + + + -10 + + + + Mission protection + Dangers de l'hiver et excès de l'été, les forces de l'ordre face aux conduites à risques des vacances + Que ce soit sous le soleil estival ou par temps hivernal, les forces de l'ordre sont confrontées à un fléau qui persiste sur les routes : les chauffards. + Documentaire + Doc. Découverte + + 12 . 0 . + + + -10 + + + + Enquête prioritaire + Stups, go fast et filatures + Depuis plusieurs années, la brigade des stupéfiants de Montpellier a fort à faire. La ville est devenue une plaque tournante du trafic de drogue entre l'Espagne, l'Italie et le nord de l'Europe. Arrivés du Maroc, en passant par l'Espagne, les trafiquants utilisent la technique dite du "go fast". Comment font les enquêteurs pour les arrêter ? + Magazine + Mag. Société + + 5 . 0 . + + + -10 + + + + Football : Ligue Europa + Aucune description + Sport + Football + + + Tout public + + + + Les rois des Legos + Une passion envahissante + La France compte près de 70 associations reconnues sur les Legos. Pour Romain, Jérôme et Sébastien, c'est définitivement une passion envahissante. + Documentaire + Doc. Découverte + + 0 . 0 . + + Tout public + + + + Les rois des Legos + Les rois de la construction + Edward, Eric et Steve sont des génies de la construction. A l'aide des Legos, ils recréent des bâtiments emblématiques de la pop culture ou de leurs villes. + Documentaire + Doc. Découverte + + 0 . 0 . + + Tout public + + + + Programmes de la nuit + Vêtus d'habits de fourrure aux couleurs vives, et tous dotés d'une personnalité différente, les Oddbods sont sept drôles de personnages qui ne manquent ni de vitalité, ni d'imagination. Ils passent leur temps à chahuter et à se jouer des tours au fil des épisodes. + Autre + + + Tout public + + + + Très très bon + L'équipe de Très Très Bon vous dégote toutes les bonnes adresses qui vont régaler vos papilles. + Magazine + Mag. Société + + + Tout public + + + + Très très bon + L'équipe de Très Très Bon vous dégote toutes les bonnes adresses qui vont régaler vos papilles. + Magazine + Mag. Société + + + Tout public + + + + Très très bon + L'équipe de Très Très Bon vous dégote toutes les bonnes adresses qui vont régaler vos papilles. + Magazine + Mag. Société + + + Tout public + + + + Caméra café + Caméra café nous plonge de manière insolite dans le monde implacable de l'entreprise. Confidences, rumeurs, conflits, coups de gueule ou coups de cœur, il se passe toujours quelque chose devant la machine à café ! + Série + Série Rires + + + Tout public + + + + Kaamelott + Ve siècle, île de Bretagne. Le royaume de Kaamelott s'organise autour de son souverain, le roi Arthur. Entouré de ses fidèles chevaliers de la Table Ronde, il s'attelle à la mission que les dieux lui ont confiée : rechercher le Saint Graal ! + Série + Série Rires + + + Tout public + + + + Les têtes brûlées + Le commando + Le colonel Hutton et ses parachutistes séjournent quelques jours à Vella La Cava avant de mener à bien une importante mission : sauter sur une île tenue par les Japonais. D'abord traités sans ménagement par Hutton et ses troupes, les hommes de Boyington sont finalement réquisitionnés pour couvrir l'opération... + Série + Série Action + + 0 . 10 . + + Tout public + + + + Les têtes brûlées + Triangle infernal + L'escadron de Boyington bénéficie de quelques jours de repos. Bragg rencontre Annie Shafter, une ancienne camarade de classe, désormais lieutenant-infirmière, qui vient juste d'arriver pour une mission dans le Sud Pacifique. Bragg la présente au groupe et, tout de suite, Casey tombe sous son charme... + Série + Série Action + + 0 . 12 . + + Tout public + + + + Les têtes brûlées + Cinq pour un as + French a la surprise de voir arriver son père, directeur de journal, accompagné de deux reporters. Membre des Têtes Brûlées, French a déjà abattu quatre avions ennemis et, en présence de son père, en ajoute un cinquième à son tableau de chasse. Le journaliste voit en son fils un véritable héros... + Série + Série Action + + 0 . 17 . + + Tout public + + + + Très très bon + L'équipe de Très Très Bon vous dégote toutes les bonnes adresses qui vont régaler vos papilles. + Magazine + Mag. Société + + + Tout public + + + + Très très bon + L'équipe de Très Très Bon vous dégote toutes les bonnes adresses qui vont régaler vos papilles. + Magazine + Mag. Société + + + Tout public + + + + Très très bon + L'équipe de Très Très Bon vous dégote toutes les bonnes adresses qui vont régaler vos papilles. Des gastronomiques aux bouis-bouis en passant par la street-food, la pâtisserie, la découverte des vins ou les gestes parfaits en cuisine, découvrez chaque semaine le meilleur de la gastronomie. + Magazine + Mag. Société + + + Tout public + + + + La grande histoire des Bodin's + Retour sur l'histoire des Bodin's, un duo populaire créé en 1994 par Vincent Dubois et Jean-Christian Fraiscinet qui a séduit des millions de spectateurs + Documentaire + Doc. Culture + + + Tout public + + + + Les Bodin's: Retour au pays + Aucune description + Divertissement + Spectacle + + + Tout public + + + + Les Bodin's, mère et fils + Marie, 87 ans, élève seule son grand fils Christian, un vieux garçon un peu benêt qui passe son CAP de charpentier pour la 38e fois. Tous deux passent leur temps entre la cuisine, l'église du village et leurs balades dans la campagne en vélomoteur. + Divertissement + Théâtre + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Gordon Ramsay : les recettes du chef 3 étoiles + Silence, ça cuit + Gordon Ramsay nous dévoile les secrets de ses petits plats... + Documentaire + Doc. Découverte + + 0 . 0 . + + Tout public + + + + Gordon Ramsay : les recettes du chef 3 étoiles + C'est dimanche, on brunche + Pour commencer le week-end en beauté, rien de tel qu'un brunch. Gordon Ramsay réinterprète quelques classiques, comme le sandwich au rosbif et ses fameux crumpets. + Documentaire + Doc. Découverte + + 0 . 0 . + + Tout public + + + + Gordon Ramsay : les recettes du chef 3 étoiles + Y a quoi à la télé ce soir ? + Gordon Ramsay explique comment améliorer ses compétences culinaires : choisir les bons ingrédients et les bons récipients, mais surtout, avoir confiance en soi. + Documentaire + Doc. Découverte + + 0 . 0 . + + Tout public + + + + Très très bon + L'équipe de Très Très Bon vous dégote toutes les bonnes adresses qui vont régaler vos papilles. Des gastronomiques aux bouis-bouis en passant par la street-food, la pâtisserie, la découverte des vins ou les gestes parfaits en cuisine, découvrez chaque semaine le meilleur de la gastronomie. + Magazine + Mag. Société + + + Tout public + + + + Très très bon + L'équipe de Très Très Bon vous dégote toutes les bonnes adresses qui vont régaler vos papilles. Des gastronomiques aux bouis-bouis en passant par la street-food, la pâtisserie, la découverte des vins ou les gestes parfaits en cuisine, découvrez chaque semaine le meilleur de la gastronomie. + Magazine + Mag. Société + + + Tout public + + + + Le Grand Jury + Olivier Bost, chef du service politique de RTL, est aux commandes de l'émission politique de référence du week-end. Accompagnés de journalistes de M6 et du Figaro, ils reçoivent chaque semaine une personnalité politique qui répond aux questions des Français sur l'actualité du moment. + Info-Météo + Information + + + Tout public + + + + Capitaine Marleau + Entre vents et marées + Christian de Kersaint-Gilly est abattu de deux balles dans la poitrine sur son domaine, en Bretagne. Dépêchée sur les lieux du drame, le capitaine Marleau en vient à soupçonner l'épouse du défunt, Joséphine de Kersaint-Gilly. Le domaine était convoité par des promoteurs désireux d'y bâtir un complexe de luxe. + Série + Série Suspense + + 0 . 0 . + + Tout public + + + + Capitaine Marleau + Entre vents et marées + Etienne Quemener et Vincent Salmon ne convoitent pas seulement le domaine breton. Ils s'intéressent aussi au hangar où Cécile Prigent, la soeur d'Etienne, entrepose son chalutier. En dépit du déséquilibre des forces, Céline est prête à se battre coûte que coûte pour sauver son bien et résister au projet de marina. + Série + Série Suspense + + 0 . 0 . + + Tout public + + + + Le zapping de la télé + Un résumé de tout ce qui buzze à la télé, le meilleur comme le pire ! Retrouvez les pépites télévisuelles qu'il ne fallait pas rater : les moments dont tout le monde a parlé, les séquences fortes, émouvantes, insolites ou drôles. La crème de la crème ! + Divertissement + + + Tout public + + + + Cauchemar en cuisine + Le Pantaleone + A Denver, Pete, le propriétaire du "Pantaleone", clame que sa pizza est la meilleure de la ville, mais Gordon Ramsay lui affirme que c'est loin d'être le cas. + Documentaire + Doc. Société + + 6 . 0 . + + Tout public + + + + Cauchemar en cuisine + Le Bella Luna + A Easton, en Pennsylvanie, Gordon vole au secours de Rosario Scollo et de ses deux fils, qui ont ouvert un restaurant italien qui ne marche pas. + Documentaire + Doc. Société + + 6 . 0 . + + Tout public + + + + Cauchemar en cuisine : Costa del Nightmares + Le Deck + Gordon Ramsay se rend à Capbreton, dans le Sud-Ouest de la France, pour aider deux résidents anglais, Tim et Debbie Wall, à sauver leur restaurant "Le Deck". + Documentaire + Doc. Société + + 6 . 0 . + + Tout public + + + + Cauchemar en cuisine : Costa del Nightmares + Le Granada Divino + Gordon Ramsay se rend dans le village de Gaucin, en Andalousie, pour aider l'architecte Milan Varmuza et sa femme Gina à sauver leur restaurant "Le Granada Divino". + Documentaire + Doc. Société + + 6 . 0 . + + Tout public + + + + Les tyrans de l'histoire + Hitler + Ce documentaire retrace l'ascension d'Adolf Hitler, de l'élève en échec scolaire au Führer tyrannique de la Seconde Guerre mondiale et ses millions de morts. + Documentaire + Doc. Société + + 0 . 0 . + + + -10 + + + + Les tyrans de l'histoire + Mussolini + Derrière toutes les gesticulations de Benito Mussolini se cache un personnage sombre, pétri de violence et de brutalité. C'est l'histoire d'Il Duce ! + Documentaire + Doc. Société + + 0 . 0 . + + + -10 + + + + Pouvoir et propagande du IIIe Reich + Les armes de la propagande + Le 30 janvier 1933, Hitler accède au pouvoir. Très vite, grâce à une propagande active, il impose à l'Allemagne tous les symboles et les idéaux des nazis. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Pouvoir et propagande du IIIe Reich + Promesses et désillusions + Hitler a pour projet de remilitariser le pays, ce qui implique de restaurer sa puissance industrielle. Il mobilise alors ingénieurs et concepteurs. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Pouvoir et propagande du IIIe Reich + La guerre à tout prix + En 1940, l'Allemagne semble imbattable. C'est le char d'assaut qui donne à Hitler une longueur d'avance sur les Alliés. Sa production est confiée à l'entreprise Henschel. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Programme + Programme indéterminé + + + Tout public + + + + Caméra café + Caméra café nous plonge de manière insolite dans le monde implacable de l'entreprise. Confidences, rumeurs, conflits, coups de gueule ou coups de coeur, il se passe toujours quelque chose devant la machine à café ! + Série + Comédie + + + Tout public + + + + Kaamelott + Ve siècle, île de Bretagne. Le royaume de Kaamelott s'organise autour de son souverain, le roi Arthur. Entouré de ses fidèles chevaliers de la Table Ronde, il s'attelle à la mission que les dieux lui ont confiée : rechercher le Saint Graal ! + Série + Comédie + + + Tout public + + + + NCIS : Nouvelle-Orléans + Ce n'est qu'un au revoir + Dwayne Pride, touché par plusieurs balles, git au sol, entre la vie et la mort. Se tenant aux côtés de son coéquipier, LaSalle hésite d'abord à se précipiter à la poursuite de la tueuse. Mais lorsque Sebastian le rejoint et prend les choses en main et qu'il voit Amelia Parsons sauter du balcon de Pride, LaSalle se lance à ses trousses. Malheureusement, celle-ci parvient à lui échapper. Toute l'équipe se bat pour sauver Pride et pour retrouver la criminelle en fuite... + Série + Policier + + 4 . 0 . + + + -10 + + + + NCIS : Nouvelle-Orléans + Un lourd tribut + Ginny Young, l'assistante de Pride, a été victime d'une tentative d'enlèvement. Au cours de l'enquête, le NCIS découvre des preuves qui pourraient mettre en cause un homme qui a prélevé des organes sur plusieurs victimes. Pride se tourne vers son ami Calvin Atkins, pour avoir des conseils médicaux et spirituels, alors qu'il est toujours en train de se remettre de sa blessure... + Série + Policier + + 4 . 5 . + + + -10 + + + + NCIS : Nouvelle-Orléans + L'ennemi invisible + Pride essaie de se remettre de la mort de son père, Cassius Pride, à laquelle il a assisté impuissant. L'équipe du NCIS est sous le choc. Ils étaient tous très proches de lui. Aussi vont-ils remuer ciel et terre pour éliminer le groupe d'anciens agents des services secrets responsable de sa mort. + Série + Policier + + 4 . 10 . + + Tout public + + + + NCIS : Nouvelle-Orléans + Panier de crabes + Plusieurs meurtres attirent l'attention du NCIS, qui commence une enquête. Toutes les victimes appartenaient à une entreprise de construction et de produits chimiques qui aurait mis au point un procédé révolutionnaire pour renforcer les digues et protéger les océans. Parallèlement, des éléments d'une mission de Hannah à Oman sont utilisées contre elle, alors qu'elle recherche toujours son ancien partenaire. + Série + Policier + + 4 . 14 . + + Tout public + + + + NCIS : Nouvelle-Orléans + Aie confiance + Un médecin de la Marine est mort. Tammy est convaincue qu'un escroc a commis ce meurtre, avec délit de fuite qui plus est, même si tous les éléments attestent du contraire. Pendant ce temps, à l'insu de Hannah, son mari, Ryan Porter, apporte à Pride de nouvelles informations sur Apollyon, le réseau d'espionnage clandestin responsable du meurtre de son père... + Série + Policier + + 4 . 20 . + + Tout public + + + + NCIS : Los Angeles + Duos explosifs + Hunter et l'équipe s'occupent d'une affaire délicate : un officier de la marine, expert en explosifs, le sergent Marcos, a été tué au volant du 4x4 du propriétaire d'un club lugubre, Winslow, sur une autoroute de Los Angeles. Hunter demande à Sam d'opérer sous couverture en tant qu'expert en explosifs pour enquêter sur ce dossier. Elle impose aussi une réorganisation des duos au sein de l'équipe. Sam se retrouve alors avec Marty et Callen collabore avec Kensi. L'ambiance au sein du NCIS se dégrade. De son côté, Sam continue d'enquêter sous couverture. Il remonte une piste sérieuse qui le conduit à interroger un ami du sergent Marcos... + Série + Policier + + 2 . 2 . + + + -10 + + + + NCIS : Los Angeles + Le baiser de Judas + Sam retourne au Soudan pour aider un agent de la CIA à achever une mission qui dévoile la présence de l'organisation terroriste Al-Qaïda dans le pays. Sur place, un corps est retrouvé, dont la description correspond à celle de Sam. Callen se rend au Soudan pour découvrir, soulagé, qu'il ne s'agit pas de son partenaire mais d'un agent de la CIA. De leur côté, Kensi et Deeks essayent de trouver la source de la fuite au sein de la CIA. Ils espèrent la démasquer avant que l'identité de Sam ne soit compromise... + Série + Policier + + 2 . 8 . + + + -10 + + + + NCIS : Los Angeles + Un Noël electromagnétique + L'équipe du NCIS doit localiser un appareil classé secret défense, qui a été volé au coeur d'un institut de recherche. L'équipe est sur le qui-vive et ne néglige aucune piste dans cette affaire : cet appareil est en effet tellement puissant qu'il pourrait détruire à lui seul toute la ville de Los Angeles. De son côté, Sam est à la recherche d'un cadeau de Noël pour sa fille. Il veut marquer le coup et tente de lui trouver quelque chose qui lui ferait plaisir. Quant à Eric, il fait la connaissance pour la première fois des parents de Nell... + Série + Policier + + 2 . 10 . + + + -10 + + + + NCIS : Los Angeles + Nos charmants voisins + Inlassablement, Kensi et Deeks poursuivent leur lutte contre le crime. Le Service d'enquête criminel de la Marine les charge d'une affaire complexe et dangereuse. Les deux agents doivent enquêter sous couverture. Ne reculant devant rien, ils se font passer pour un jeune couple marié. Pas à pas, ils tentent d'identifier les membres d'une cellule d'agents dormants. Quelles sont les intentions de ces individus d'origine russe ? Tous se sont discrètement installés dans une banlieue calme de Los Angeles... + Série + Policier + + 2 . 21 . + + + -10 + + + + La revue de presse + L'actualité chahutée façon Paris Première par Jérôme de Verdière et sa bande, on ne s'en lasse pas et cela fait 16 ans que ça dure ! Depuis le Grand Point Virgule, humour mordant, esprit perturbateur et répliques qui piquent sortent du placard pour rhabiller l'actualité. Avec Jérôme de Verdière à la présentation, accompagné de Jacques Mailhot, Bernard Mabille, Philippe Chevallier, Régis Mailhot, Stéphane Rose, Karine Dubernet, Giroud & Stotz, Thierry Rocher, Florence Brunold et Michel Guidoni, sans oublier les caricaturistes Alex et Deligne. + Spectacle + Humour + + + Tout public + + + + La revue de presse + L'actualité chahutée façon Paris Première par Jérôme de Verdière et sa bande, on ne s'en lasse pas et cela fait 16 ans que ça dure ! Depuis le Grand Point Virgule, humour mordant, esprit perturbateur et répliques qui piquent sortent du placard pour rhabiller l'actualité. Avec Jérôme de Verdière à la présentation, accompagné de Jacques Mailhot, Bernard Mabille, Philippe Chevallier, Régis Mailhot, Stéphane Rose, Karine Dubernet, Giroud & Stotz, Thierry Rocher, Florence Brunold et Michel Guidoni, sans oublier les caricaturistes Alex et Deligne. + Spectacle + Humour + + + Tout public + + + + Bernard Mabille sous toutes les coutures + Grâce à sa faconde rabelaisienne et sa vision caustique de l'actualité, Bernard Mabille est depuis 30 ans le pilier incontournable de l'humour à la télévision, du "Quotidien de Paris" aux "Grosses Têtes", de la "Revue de Presse" au "Canapé du dimanche". Si sa plume à la Audiard fut d'abord mise au service de Thierry Le Luron, puis d'Anne Roumanoff, Mabille se produit également seul en scène. Avec le témoignage de ses amis et collègues : Anne Roumanoff, Laurent Gerra, Michel Drucker, Philippe Chevallier, Willy Rovelli, Didier Porte, Olivier De Benoist, Franz-Olivier Giesberg, Jack Lang, André Santini et Jérôme de Verdière. + Documentaire + Culture + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Programme + Programme indéterminé + + + Tout public + + + + Caméra café + Caméra café nous plonge de manière insolite dans le monde implacable de l'entreprise. Confidences, rumeurs, conflits, coups de gueule ou coups de cœur, il se passe toujours quelque chose devant la machine à café ! + Série + Série Rires + + + Tout public + + + + Kaamelott + Ve siècle, île de Bretagne. Le royaume de Kaamelott s'organise autour de son souverain, le roi Arthur. Entouré de ses fidèles chevaliers de la Table Ronde, il s'attelle à la mission que les dieux lui ont confiée : rechercher le Saint Graal ! + Série + Série Rires + + + Tout public + + + + NCIS : Nouvelle-Orléans + Nouvelle recrue + Pride se remet doucement de ses blessures. Le reste de l'équipe enquête sur un criminel qui, dans le passé, fabriquait des bombes pour l'IRA. Les supérieurs de Pride lui proposent un nouveau poste. L'agent Hannah Khoury est nommée comme remplaçante, ce qui ne plaît pas à l'équipe... + Série + Série Suspense + + 4 . 1 . + + Tout public + + + + NCIS : Nouvelle-Orléans + La famille + Alors qu'elle enquête sur un meurtre, l'équipe du NCIS place un informateur en garde à vue. Pride demande à son frère de l'aider à gagner la confiance de quelqu'un. + Série + Série Suspense + + 4 . 7 . + + + -10 + + + + NCIS : Nouvelle-Orléans + Virus X + L'équipe du NCIS enquête sur la disparition d'un scientifique qui transporte une arme biologique mortelle après une fusillade de masse dans son laboratoire. Pendant ce temps, Gregorio et Sebastian se chamaillent à propos de leurs habitudes respectives en tant que nouveaux colocataires. De plus, Hannah retourne à la Nouvelle-Orléans plus tôt que prévu après un congé personnel. + Série + Série Suspense + + 4 . 12 . + + + -10 + + + + NCIS : Nouvelle-Orléans + Survivre + Un terroriste insaisissable refait surface, prêt à tout pour se venger d'Hannah. La jeune femme est donc placée sous protection avec sa famille. Pendant ce temps, l'équipe du NCIS fait de son mieux afin de localiser et neutraliser le suspect avant que celui-ci ne parvienne à ses fins. + Série + Série Suspense + + 4 . 15 . + + + -10 + + + + NCIS : Nouvelle-Orléans + La théorie du chaos + L'équipe du NCIS apprend qu'une tentative d'attentat doit se dérouler dans un musée militaire. Celui-ci accueille plusieurs milliers de personnes chaque jour. Il faut agir au plus vite afin de déjouer les plans des terroristes et ainsi sauver les visiteurs... + Série + Série Suspense + + 4 . 21 . + + + -10 + + + + NCIS : Los Angeles + Sous surveillance + Nell part en mission d'infiltration afin d'élucider le meurtre d'un chercheur rattaché au département de la Défense. Pendant ce temps, Callen, Sam et l'équipe sont réveillés au milieu de la nuit par le signal de détresse de Hetty. Tous les membres réagissent immédiatement pour la retrouver... + Série + Série Suspense + + 2 . 11 . + + Tout public + + + + NCIS : Los Angeles + À l'aveugle + En enquêtant sur le meurtre de deux employés d'une armurerie, le NCIS apprend que l'agent Renko agit sous couverture dans cet établissement et qu'il doit rapidement être évacué pour sa sécurité. Alors qu'ils remontent une filière de trafic d'armes, Callen et son équipe sont confrontés au "Caméléon"... + Série + Série Suspense + + 2 . 22 . + + + -10 + + + + NCIS : Los Angeles + À l'aveugle + Les agents du NCIS ont arrêté "le Caméléon" mais lors de son interrogatoire, ce dernier joue au chat et à la souris avec eux. Il leur révèle qu'il détient un agent de la NSA, Atley, qui a eu accès à des informations sur le programme nucléaire iranien. Il propose de le relâcher en échange de sa libération... + Série + Série Suspense + + 2 . 23 . + + + -10 + + + + NCIS : Los Angeles + À l'aveugle + Callen a été libéré de prison. Mais il est suspendu de ses fonctions au sein du NCIS après avoir tiré sur le Caméléon. Quant à Hetty, elle donne sa démission et profite de sa nouvelle vie de retraitée. En paralèlle, l'équipe d'enquêteurs du NCIS s'interroge sur la filature de Callen menée par les Iraniens... + Série + Série Suspense + + 3 . 0 . + + + -10 + + + + Le cercle rouge + Le placide commissaire Mattei traque sans relâche un prisonnier évadé, Vogel, dont il avait la garde. Celui-ci croise par hasard la route de Corey, un truand qui vient de sortir de prison. Les deux gangsters projettent alors le casse d'une bijouterie avec la complicité d'un ex-flic alcoolique... + Film + Film Suspense + + + Tout public + + + + Le miroir à deux faces + Marie-José, affligée d'un visage disgracieux, n'a jamais attiré beaucoup de soupirants. Elle rencontre, avec la complicité de ses parents, Pierre Tardivet, un brave garçon. La jeune femme avait espéré épouser son patron, Gérard Durieux, mais celui-ci lui a préféré sa soeur, Véronique, plus jolie... + Film + Film Passion + + + Tout public + + + + Piaf intime + Retour sur l'émouvant parcours d'Edith Piaf, chanteuse populaire à la voix unique, dont la vie est devenue partie intégrante de l'identité française. + Documentaire + Doc. Musique + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Caméra café + Caméra café nous plonge de manière insolite dans le monde implacable de l'entreprise. Confidences, rumeurs, conflits, coups de gueule ou coups de cœur, il se passe toujours quelque chose devant la machine à café ! + Série + Série Rires + + + Tout public + + + + Kaamelott + Ve siècle, île de Bretagne. Le royaume de Kaamelott s'organise autour de son souverain, le roi Arthur. Entouré de ses fidèles chevaliers de la Table Ronde, il s'attelle à la mission que les dieux lui ont confiée : rechercher le Saint Graal ! + Série + Série Rires + + + Tout public + + + + NCIS : Nouvelle-Orléans + Immunité diplomatique + Alors que l'équipe enquête sur le meurtre d'un officier du renseignement de la Marine tué au cours d'une conférence pour les diplomates étrangers, le témoin clé se rapproche de Sebastian. Pride arrive en retard alors que c'est son premier jour à l'agence. Il pense qu'il va avoir du mal à s'adapter à son nouveau travail et à ses nouveaux collègues... + Série + Série Suspense + + 4 . 2 . + + Tout public + + + + NCIS : Nouvelle-Orléans + Chiens de berger + L'explosion d'une voiture dans le quartier français a provoqué la mort de plusieurs personnes et de nombreux blessés. L'équipe interroge un professeur et ancien membre d'une organisation étudiante de protestation. Tammy, quant à elle, découvre un secret sur la vie personnelle d'Hannah... + Série + Série Suspense + + 4 . 6 . + + Tout public + + + + NCIS : Nouvelle-Orléans + Le compte est bon + Après les nouvelles assignations des agents, Dwayne Pride n'est désormais plus agent spécial de la branche sud-est et retourne dans son bureau de La Nouvelle-Orléans. Toute l'équipe se démène en menant l'enquête sur la disparition d'un quartier-maître dans un village reculé... + Série + Série Suspense + + 4 . 16 . + + Tout public + + + + NCIS : Nouvelle-Orléans + La rivière Styx + Pride et LaSalle se rendent en Ossétie du Sud, déchirée par la guerre, pour retrouver l'agent spécial du FBI, Raymond Isler, qui a été kidnappé au cours d'une mission ratée visant à appréhender le dirigeant d'Apollyon, le réseau d'espionnage clandestin responsable du meurtre du père de Pride... + Série + Série Suspense + + 4 . 22 . + + + -10 + + + + NCIS : Nouvelle-Orléans + La rivière Styx + Après avoir suivi Apollyon, un réseau d'espionnage souterrain meurtrier, en Ossétie du Sud, Pride est séparé de l'équipe et fait face à un grave danger. De plus, afin de le sauver, l'équipe du NCIS doit localiser une taupe qui transmet des informations à Apollyon... + Série + Série Suspense + + 4 . 23 . + + + -10 + + + + NCIS : Los Angeles + Cyber-attaque + Dennis Calder, dont le programme informatique a été utilisé pour une cyber-attaque contre le Département de la Défense, a été enlevé. Son chauffeur a été tué pendant l'opération. De son côté, Callen supporte mal que Lauren lui cache des informations en lien avec son passé, contenues dans le dossier Comescu... + Série + Série Suspense + + 2 . 1 . + + + -10 + + + + NCIS : Los Angeles + Reconnaissance de dette + Lors d'une opération conjointe entre la police de Los Angeles et le NCIS afin d'empêcher une vente illégale de matériel militaire, Deeks abat un homme non armé. Le temps que l'enquête interne soit menée, il est transféré au sein des forces de l'ordre. Kensi a du mal à se séparer de son coéquipier... + Série + Série Suspense + + 2 . 9 . + + + -10 + + + + NCIS : Los Angeles + L'ennemi de mon ennemi + Jada Khaled est finalement appelée à témoigner devant le tribunal criminel. Mais le véhicule la transportant est pris dans une embuscade. L'équipe du NCIS est appelée. Les agents doivent traquer les responsables pour sauver Jada et pour assurer la réussite de leur enquête. Comment Sam fera-t-il face ?... + Série + Série Suspense + + 2 . 12 . + + + -10 + + + + NCIS : Los Angeles + Les recrues + L'équipe du NCIS mène des investigations sur la mort du sergent Adam Davis, tué en Afghanistan lors d'une attaque de drone sur un site de production de bombes. Ils découvrent que Davis venait juste de démissionner, et s'interrogent sur les raisons de son retour dans le pays. Ils partent sur place... + Série + Série Suspense + + 3 . 1 . + + + -10 + + + + Capitaine Marleau + La nuit de la lune rousse + Jeanne Dewaere, 40 ans, directrice d'un parc zoologique, détruit les indices qui prouvent que sa jeune protégée, Manon, est mêlée à une affaire de vandalisme qui a mal tourné et causé la mort de deux personnes. Jeanne veut à tout prix éviter à Manon la case prison. Jeanne est une ancienne détenue... + Série + Série Suspense + + 0 . 5 . + + Tout public + + + + Capitaine Marleau + Les mystères de la foi + Une jeune Espagnole met fin à ses jours. La victime semblait liée à une abbesse charismatique, qui officie dans une abbaye bénédictine. La capitaine Marleau, chargée de l'enquête, bénéficie de l'aide du père Vincent, un jeune prêtre séduisant. Ce qui n'empêche pas le mystère de s'épaissir... + Série + Série Suspense + + 0 . 2 . + + Tout public + + + + Capitaine Marleau + Philippe Muir + Derrière des manières décalées, le capitaine Marleau a l'instinct du chasseur. Un jour, le corps d'une femme assassinée est retrouvé dans l'entreprise de transports de Philippe Muir. Tout semble jouer en sa défaveur. En effet, ce n'est pas la première femme qui meurt dans son entourage proche... + Série + Série Suspense + + 0 . 0 . + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Caméra café + Caméra café nous plonge de manière insolite dans le monde implacable de l'entreprise. Confidences, rumeurs, conflits, coups de gueule ou coups de cœur, il se passe toujours quelque chose devant la machine à café ! + Série + Série Rires + + + Tout public + + + + Kaamelott + Ve siècle, île de Bretagne. Le royaume de Kaamelott s'organise autour de son souverain, le roi Arthur. Entouré de ses fidèles chevaliers de la Table Ronde, il s'attelle à la mission que les dieux lui ont confiée : rechercher le Saint Graal ! + Série + Série Rires + + + Tout public + + + + NCIS : Nouvelle-Orléans + Les liens du sang + Cassius Pride, le père de Dwayne, se retrouve au beau milieu d'une affaire du NCIS, qui concerne le casse d'un casino très populaire. Malgré plusieurs années d'enquête, celle-ci n'a jamais été résolue. Pride est amené à faire la connaissance d'un membre de sa famille, dont il ignorait complètement l'existence jusqu'à présent... + Série + Série Suspense + + 4 . 4 . + + + -10 + + + + NCIS : Nouvelle-Orléans + Compte à rebours + Pride se fait kidnapper alors qu'il est en train de faire du sport. Les ravisseurs lui annoncent avoir pris plusieurs personnes de son entourage en otage. Ils lui ordonnent ce qu'il doit faire et comment, sous peine d'exécuter ses proches. Pride ne tarde pas à comprendre que les ravisseurs prennent les choses très au sérieux. Il est complètement manipulé et n'a pas vraiment le choix... + Série + Série Suspense + + 4 . 9 . + + + -10 + + + + NCIS : Nouvelle-Orléans + Théories du complot + L'équipe de Pride enquête sur le meurtre d'un informateur d'Oliver Crane, le journaliste et spécialiste des théories du complot. Liam Sommers, l'ancien partenaire d'Hannah, revient lui rendre visite pour lui donner des informations importantes sur une de ses anciennes affaires. + Série + Série Suspense + + 4 . 13 . + + + -10 + + + + NCIS : Nouvelle-Orléans + En pleine lumière + L'équipe du NCIS enquête sur le meurtre d'un ancien marine, qui était un ami proche de Patton. Le malheureux a été sauvagement abattu lors d'une fusillade en voiture. Le pauvre Patton a assisté, impuissant, à la scène. Aussi, l'enquête se révèle-t-elle particulièrement difficile, même avec Patton sur la touche. + Série + Série Suspense + + 4 . 17 . + + Tout public + + + + NCIS : Nouvelle-Orléans + Une décision de trop + Alors qu'il rendait visite à sa mère, qui souffre de la maladie d'Alzheimer, Pride est rappelé auprès de son équipe et obligé de suspendre Hannah pour avoir enfreint le protocole lors d'une enquête conjointe avec le FBI. + Série + Série Suspense + + 5 . 0 . + + + -10 + + + + NCIS : Los Angeles + L'opération Comescu + Un individu, qui se faisait passer pour un ancien marine, a été transformé en torche humaine. Cette mort impressionnante met Callen et ses coéquipiers sur la piste d'une ancienne affaire concernant un vol de matériel radioactif. Au cours de l'enquête, l'équipe apprend, non sans stupeur, la démission de Hetty... + Série + Série Suspense + + 1 . 22 . + + + -10 + + + + NCIS : Los Angeles + L'opération Comescu + La démission soudaine et inexpliquée de Hetty surprend l'équipe. Callen et ses collègues tentent de découvrir les véritables raisons de cette décision, dans l'espoir de la faire changer d'avis. Hetty, en mission à Prague, est en difficulté. Elle fait appel au directeur Vance, qui lui refuse toute aide... + Série + Série Suspense + + 1 . 23 . + + + -10 + + + + NCIS : Los Angeles + Lange, H. + Callen, Sam, Kensi et Marty sont en Roumanie pour venir en aide à Hetty dans le cadre de l'opération Comescu. Sur place, Callen se souvient avoir grandi là et vu sa mère se faire tuer sous ses yeux. Pendant qu'Hetty s'entretient avec Alexa Comescu, l'équipe affronte le reste de la famille... + Série + Série Suspense + + 2 . 0 . + + + -10 + + + + NCIS : Los Angeles + Le cinquième homme + Une explosion dans un restaurant provoque la mort de quatre personnes qui participaient à une réunion secrète. L'équipe tente d'élucider l'affaire. Les victimes étaient toutes à l'origine d'un projet confidentiel visant à recruter des élites. Durant l'enquête, Kensi se prend d'affection pour un adolescent... + Série + Série Suspense + + 3 . 2 . + + + -10 + + + + Pulp Fiction + A Los Angeles, deux tueurs à gages, Vincent et Jules, exécutent un contrat pour Marsellus, un caïd de la ville. Au cours de la même journée, ils vont croiser bon nombre de personnes qui ont, pour beaucoup, des liens les unes avec les autres. A l'exemple de Butch, un boxeur que Marsellus connaît... + Film + Film Suspense + + + + -12 + + + + Matriarch + Après un accident de voiure qui les laisse perdus dans la campagne écossaise Rachel et Matt Hopkins trouvent refuge pour une nuit, chez des fermiers. Au cours de la soirée, Rachel et Matt découvrent de plus que leur fille supposée est Ellie Adams, une enfant portée disparue quelques années plus tôt... + Film + Film Horreur + + + + -12 + + + + L'histoire du film d'horreur par Eli Roth + Les maisons du mal + Eli Roth évoque le sujet des maisons de l'enfer, remplies de spectres ou de psychopathes. Toutes ces maisons bousculent les illusions de confort et de sécurité. + Documentaire + Doc. Culture + + 1 . 0 . + + + -16 + + + + L'histoire du film d'horreur par Eli Roth + Les sorcières + L'archétype de la sorcière maléfique est le reflet de ce que la religion dit à la société qu'une femme ne devrait pas être. C'est la puissance féminine inavouable. + Documentaire + Doc. Culture + + 1 . 0 . + + + -16 + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Juger Pétain + Acte 1 + Grâce à un procédé de modélisation sonore associé aux minutes officielles, retour sur le procès du maréchal Pétain, qui se tint entre juillet et août 1945. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + La guerre des trônes, la véritable histoire de l'Europe + Le jeu des alliances (1461-1483) + Louis XI est un fin stratège : sur l'échiquier européen, il est surnommé l'"universelle araigne" tant il est maître dans l'art de tisser des pièges à ses ennemis. + Documentaire + + 0 . 0 . + + Tout public + + + + La guerre des trônes, la véritable histoire de l'Europe + Le roi et l'empereur (1515-1558) + Au début de la Renaissance, Charles Quint est en passe de devenir l'homme le plus puissant d'Europe, mais François Ier convoite aussi le trône impérial. + Documentaire + + 0 . 0 . + + Tout public + + + + Les routes de l'esclavage + 476-1375 : Au-delà du désert + Une histoire de la traite négrière au travers de ses circuits et de ses territoires : ce premier volet débute avec la chute de l'empire romain, en 476. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Les routes de l'esclavage + 1375-1620 : Pour tout l'or du monde + A l'issue des croisades, l'Europe se tourne vers l'Afrique et importe massivement des esclaves. A partir de 1516, se met en place le commerce triangulaire. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Damian Lewis : Jeux d'espions + Le cheval de Troie + Aucune description + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Damian Lewis : Jeux d'espions + Un traître parfait + Aucune description + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Inside Christie's + Aucune description + Documentaire + Doc. Société + + + Tout public + + + + Inside Christie's + Aucune description + Documentaire + Doc. Société + + + Tout public + + + + Beuve-Méry / De Gaulle, le monde contre le président + Le militaire et le journaliste, le fondateur de la Ve République et celui du journal Le Monde : deux hommes que tout devrait rapprocher mais que tout a séparé. + Documentaire + Doc. Histoire + + + Tout public + + + + Gene Kelly, vivre et danser + Acteur, danseur, chanteur, chorégraphe et réalisateur, Gene Kelly a révolutionné la comédie musicale hollywoodienne en imposant son look et son style de danse. + Documentaire + Doc. Culture + + + Tout public + + + + L'ascension des nazis : le front de l'Est + Le front intérieur + Aucune description + Documentaire + Doc. Histoire + + 1 . 0 . + + Tout public + + + + L'ascension des nazis : le front de l'Est + Stalingrad + Cette série documentaire décrit l'avancée des troupes et le déroulement des batailles entre la Wehrmacht et l'Armée rouge, sur le front de l'Est. + Documentaire + Doc. Histoire + + 1 . 0 . + + Tout public + + + + Les routes de l'esclavage + 1620-1788 : Du sucre à la révolte + La guerre du sucre qui se joue en Atlantique multiplie les routes de l'esclavage ; tandis que la terreur s'intensifie, certains dénoncent cette barbarie. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Les routes de l'esclavage + 1789-1888 : Les nouvelles frontières de l'esclavage + A Londres, Paris et Washington, le courant abolitionniste gagne du terrain. Mais l'Europe, en pleine révolution industrielle, a plus que jamais besoin de bras. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + American Pickers, la brocante made in USA + Gros nounours + Dans l'Iowa, Mike et Frank, deux brocanteurs, se rendent dans plusieurs lieux repérés par Danielle, leur assistante, à la recherche de bonnes affaires. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + American Pickers, la brocante made in USA + Pick your battle + Aucune description + Documentaire + Doc. Société + + 15 . 0 . + + Tout public + + + + American Pickers, la brocante made in USA + Eyes on the Prize + Aucune description + Documentaire + Doc. Société + + 14 . 0 . + + Tout public + + + + American Pickers, la brocante made in USA + Big Tennessee welcome + Aucune description + Documentaire + Doc. Société + + 14 . 0 . + + Tout public + + + + American Pickers, la brocante made in USA + The Doctor Is Waiting + Aucune description + Documentaire + Doc. Société + + 14 . 0 . + + Tout public + + + + American Pickers, la brocante made in USA + Le tonnerre + Dans l'Etat de Virginie, Mike et Frank découvrent une moto de légende ; ils ont ensuite accès à une cave dans laquelle se trouve une objet rare et ancien. + Documentaire + Doc. Société + + 6 . 0 . + + Tout public + + + + American Pickers, la brocante made in USA + Les voitures Auburn + Mike prend un pari sur une voiture de la marque Auburn datant de 1935, avant de se rendre dans l'Etat de l'Iowa, pour acheter une Harley Davidson. + Documentaire + Doc. Société + + 6 . 0 . + + Tout public + + + + La guerre du N°5 + Avec le parfum de légende N°5, Coco Chanel a révolutionné le secteur ; l'histoire de son oeuvre la plus parfaite, celle d'une lutte, est digne d'un film noir. + Documentaire + Doc. Histoire + + + Tout public + + + + Lutèce, l'enfance de Paris + De nouvelles techniques de reconstitutions en 3D permettent aujourd'hui de reconstituer une partie des grands sites du Paris antique, à l'époque appelé Lutèce. + Documentaire + Doc. Histoire + + + Tout public + + + + Toilettes sans tabou + A l'heure où un tiers de l'humanité reste privée de sanitaires décents, ce film recense les innovations en cours et détricote les préjugés sur les WC. + Documentaire + Doc. Découverte + + + Tout public + + + + Design + Le fauteuil Barcelona + Le fauteuil Barcelona a été conçu en 1929 par l'architecte Mies Van Der Rohe à l'occasion de l'Exposition internationale de Barcelone. + Documentaire + Doc. Culture + + 8 . 0 . + + Tout public + + + + Interruption des programmes + Vêtus d'habits de fourrure aux couleurs vives, et tous dotés d'une personnalité différente, les Oddbods sont sept drôles de personnages qui ne manquent ni de vitalité, ni d'imagination. Ils passent leur temps à chahuter et à se jouer des tours au fil des épisodes. + Autre + + + Tout public + + + + Juger Pétain + Acte 2 + Retour sur le procès du maréchal Pétain, qui se tint en juillet et août 1945, en associant un prodédé de modélisation sonore aux minutes du procès. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + La guerre des trônes, la véritable histoire de l'Europe + Jeu de dames (1542-1559) + Au milieu de la Renaissance, le roi de France Henri II s'arroge les droits sur la couronne d'Ecosse en fiançant Mary Stuart, cinq ans, à son fils héritier. + Documentaire + + 1 . 0 . + + Tout public + + + + La guerre des trônes, la véritable histoire de l'Europe + Au nom de Dieu (1559-1561) + La montée du protestantisme annonce les guerres de religion en Europe ; alors qu'il célèbre une alliance, le roi de France Henri II meurt lors d'un tournoi. + Documentaire + + 1 . 0 . + + Tout public + + + + American Pickers, la brocante made in USA + Texas Pick'em + Aucune description + Documentaire + Doc. Société + + 14 . 0 . + + Tout public + + + + American Pickers, la brocante made in USA + Texas Treasures + Aucune description + Documentaire + Doc. Société + + 14 . 0 . + + Tout public + + + + American Pickers, la brocante made in USA + Bubba Gump Picks + Aucune description + Documentaire + Doc. Société + + 14 . 0 . + + Tout public + + + + American Pickers, la brocante made in USA + Jouets pour grands enfants + Dans un garage de Californie, Mike tente l'impossible pour acquérir un bateau vintage ; les deux chineurs s'intéressent ensuite à une petite voiture BMW. + Documentaire + Doc. Société + + 6 . 0 . + + Tout public + + + + Notre-Dame de Paris, le chantier du siècle + La quête de la hauteur + Dès le lendemain de l'incendie de Notre-Dame, des groupes de travail se constituent pour enrichir les connaissances sur l'édifice et contribuer à sa restauration. + Documentaire + Doc. Découverte + + 0 . 0 . + + Tout public + + + + Notre-Dame de Paris, le chantier du siècle + L'harmonie des forces + Lors de l'incendie de Notre-Dame, la flèche s'est brisée sur les voûtes, perturbant la stabilité de l'édifice. Pourtant, la cathédrale ne s'est pas effondrée. + Documentaire + Doc. Découverte + + 0 . 0 . + + Tout public + + + + Notre-Dame de Paris, le chantier du siècle + La fabrique du sacré + Avant d'entamer la pose d'un gigantesque échafaudage de plus de 96 mètres de haut, les architectes doivent s'assurer de la solidité des fondations. + Documentaire + Doc. Découverte + + 0 . 0 . + + Tout public + + + + Milliardaires, le règne des geeks + 2007 - 2013 : un nouveau monde + Elon Musk fabrique des voitures électriques et des fusées, mais la crise financière de 2009 le met à l'épreuve. Tesla sort d'une situation délicate. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + Milliardaires, le règne des geeks + 2016 - ... : la nouvelle course à l'espace + Depuis le début des années 2000, Elon Musk, à travers SpaceX, et Jeff Bezos, par le biais de Blue Origin, s'affrontent dans une course à la conquête de l'espace. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + Navires de légende + Géants des mers + Grâce au bombardier-torpilleur Avenger et aux chasseurs Wildcat, les forces aéronavales américaines prennent l'avantage sur les Japonais, en juin 1942. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Navires de légende + Le fabuleux destin du cuirassé Texas + Avec dix canons de 180 mm, seize de 127 mm et quatre lance-torpilles, notamment, l'armement du cuirassier Texas a fait la différence lors du Débarquement. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Cléopâtre, à la recherche du tombeau disparu + Cléopâtre, la reine meurtrière + La cour de Cléopâtre, à Alexandrie, est un véritable nid de serpents. La reine va devoir éliminer tous ses ennemis, y compris au sein de sa propre famille. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Cléopâtre, à la recherche du tombeau disparu + La chute de Cléopâtre et Marc Antoine + La rivalité entre Marc Antoine, l'amant et allié romain de Cléopâtre, et Octave déclenche l'une des plus grandes batailles navales du monde antique. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + American Pickers, la brocante made in USA + Un super scooter + Mike se rend avec Frank dans l'Illinois, achète une enseigne publicitaire, un vieux vélo, et surtout, un triporteur Vespa, pièce rare et convoitée. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + American Pickers, la brocante made in USA + The great pick off + Aucune description + Documentaire + Doc. Société + + 15 . 0 . + + Tout public + + + + Les grandes maisons du luxe + Versace + Gianni Versace, styliste de génie formé à la confection dans le modeste atelier de sa mère, fonde en 1978 une petite entreprise avec l'aide de son frère Santo. + Documentaire + Doc. Culture + + 0 . 0 . + + Tout public + + + + Les grandes maisons du luxe + Gucci + La marque Gucci naît en 1921, à Florence, grâce à Guccio Gucci. En 1994, le styliste Tom Ford propulse la marque sur le devant de la scène internationale. + Documentaire + Doc. Culture + + 0 . 0 . + + Tout public + + + + Birka, les mystères d'un chef viking + En 1880, sur l'île de Björkö en Suède des archéologues ont mis au jour une mystérieuse tombe Viking à Birka. Le défunt était-il un homme ou une femme ? + Documentaire + Doc. Histoire + + + Tout public + + + + Ces villes qui ont fait l'histoire + Aigues-Mortes + Aigues-Mortes a été bâtie en Camargue vers 1240 par Louis IX, futur Saint Louis, qui voulait en faire le grand port du royaume de France en Méditerranée. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Ces villes qui ont fait l'histoire (Aigues-Mortes) S1 (1/3) + «Aigues-Mortes»Aigues-Mortes a été bâtie en Camargue vers 1240 par Louis IX, futur Saint Louis, qui voulait en faire le grand port du royaume de France en Méditerranée. + Doc Histoire + + + + Ces villes qui ont fait l'histoire + Nîmes, la Rome française + Nîmes porte la marque de l'urbanisme romain et a été gouvernée, comme Rome, par une curie dont les membres, ainsi que les magistrats, étaient élus par le peuple. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Ces villes qui ont fait l'histoire (Nîmes, la Rome française) S1 (2/3) + «Nîmes, la Rome française»Nîmes porte la marque de l'urbanisme romain et a été gouvernée, comme Rome, par une curie dont les membres, ainsi que les magistrats, étaient élus par le peuple. + Doc Histoire + + + + Les tueurs de la République + Frappes ciblées + Au sein d'une cellule de la Direction générale de la Sécurité extérieure (DGSE), des agents sont entraînés pour mener à bien des exécutions ciblées. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + Les tueurs de la République (Frappes ciblées) S1 (n°2) + «Frappes ciblées»Au sein d'une cellule de la Direction générale de la Sécurité extérieure (DGSE), des agents sont entraînés pour mener à bien des exécutions ciblées. + Documentaire + + + + Design + La chaise Rietveld + La chaise de Rietveld, emblématique de son créateur et du mouvement De Stijl, a été conçue comme un retour aux sources d'un meuble s'imbriquant dans l'espace. + Documentaire + Doc. Culture + + 6 . 0 . + + Tout public + + + + Design (La chaise Rietveld) S7 (2/5) + «La chaise Rietveld»La chaise de Rietveld, emblématique de son créateur et du mouvement De Stijl, a été conçue comme un retour aux sources d'un meuble s'imbriquant dans l'espace. + Documentaire + + + + Interruption des programmes + Vêtus d'habits de fourrure aux couleurs vives, et tous dotés d'une personnalité différente, les Oddbods sont sept drôles de personnages qui ne manquent ni de vitalité, ni d'imagination. Ils passent leur temps à chahuter et à se jouer des tours au fil des épisodes. + Autre + + + Tout public + + + + Navires de légende (Géants des mers) S1 (1/4) + «Géants des mers»Grâce au bombardier-torpilleur Avenger et aux chasseurs Wildcat, les forces aéronavales américaines prennent l'avantage sur les Japonais, en juin 1942. + Doc Histoire + + + + Navires de légende (Le fabuleux destin du cuirassé Texas) S1 (4/4) + «Le fabuleux destin du cuirassé Texas»Avec dix canons de 180 mm, seize de 127 mm et quatre lance-torpilles, notamment, l'armement du cuirassier Texas a fait la différence lors du Débarquement. + Doc Histoire + + + + Les bases secrètes des nazis (Le complexe de Peenemünde) S2 (1/8) + «Le complexe de Peenemünde»Peenemünde, petit port de la Baltique situé près de la frontière polonaise, doit sa notoriété au régime nazi. Celui-ci y développa les redoutables missiles V2. + Doc Histoire + + + + Les bases secrètes des nazis (La forteresse d'Oder-Warta-Bogen) S2 (2/8) + «La forteresse d'Oder-Warta-Bogen»La construction de la forteresse d'Oder-War-Bogen débute en 1934. Il s'agit d'un complexe de fortifications qui devait protéger la frontière orientale. + Doc Histoire + + + + Dans le secret des codes (Les codes secrets de la mafia) S1 (n°1) + «Les codes secrets de la mafia»Elizebeth Friedman, la première femme cryptanalyste, a réussi à déchiffrer la machine Enigma, utilisée par les Allemands pendant la Seconde Guerre mondiale. + Doc Sciences + + + + Dans le secret des codes (Le code du zodiaque) S1 (n°2) + «Le code du zodiaque»Entre 1960 et 1970, un serial killer sévit en Californie. Il envoie des lettres chiffrées à la police. Il faudra des années à décrypter tous les cryptogrammes. + Doc Sciences + + + + Colisée, une histoire monumentale (Le martyr) S1 (5/8) + «Le martyr»Vers 107 après Jésus-Christ, alors que le christianisme se diffuse dans l'Empire romain, l'évêque d'Antioche est amené à Rome pour être tué au Colisée. + Doc Histoire + + + + Colisée, une histoire monumentale (Le scientifique) S1 (6/8) + «Le scientifique»Excellent en chirurgie et en fabrication de médicaments, Galien étudie la peste antonine à Rome. Remarqué par Marc Aurèle, Galien devient son médecin personne. + Doc Histoire + + + + Theodore Roosevelt (De Teddy à Roosevelt) S1 (1/2) + «De Teddy à Roosevelt»Theodore Roosevelt est né en 1858 dans une famille fortunée new-yorkaise. Ses ambitions vont le mener jusqu'à devenir président des Etats-Unis. + Doc Histoire + + + + L'histoire des sitcoms (Amis pour la vie) S1 (3/8) + «Amis pour la vie»Les personnages détestables et l'humour noir et souvent absurde de "Seinfeld" ont influencé d'autres sitcoms parfois classiques comme "Friends". + Doc Société + + + + L'histoire des sitcoms (Il faut de tout pour faire un monde) S1 (8/8) + «Il faut de tout pour faire un monde»A partir des années 1970, les sitcoms abordent la question raciale à la fois sérieusement et avec humour. La première à le faire est "All in the Family". + Doc Société + + + + Les secrets de l'Arche d'Alliance (Subtilisée par Rome) S1 (n°1) + «Subtilisée par Rome»Des documents suggèrent que l'Arche d'Alliance contenant les Tables de la Loi données par Dieu à Moïse aurait été dérobées par des légions romaines. + Doc Histoire + + + + Les secrets de l'Arche d'Alliance (Dans les entrailles de Jérusalem) S1 (n°2) + «Dans les entrailles de Jérusalem»Des experts ont avancé que l'arche d'alliance, perdue depuis des siècles, n'aurait jamais quitté Jérusalem. Elle serait ensevelie dans la vieille ville. + Doc Histoire + + + + Faites entrer l'accusé S18 + Le 1er décembre 2005, Franck Renard Payen retrouve l'une de ses amies, Dominique Aubry, 57 ans, pendue dans sa péniche de Neuilly. Depuis la mort de son mari, quelques mois plus tôt, elle semblait très déprimée et abusait d'alcool et d'anxiolytiques. Au point de se suicider ? Sa famille n'y croit pas et porte plainte. Car l'enjeu est gros : un héritage de quatorze millions d'euros. Et, ni la mère, ni le frère de Dominique ne figurent sur le testament. A leur place, Dominique Aubry a désigné l'un de ses jeunes favoris. L'homme qui dînait avec la veuve, le soir de sa mort et qui l'a découverte pendue. + Mag Société + + + + American Pickers, la brocante made in USA (Un château au milieu d'une ferme) S1 (3/12) + «Un château au milieu d'une ferme»Chez un fermier de l'Ohio, Mike et Frank achètent une fontaine à soda, un distributeur de cigarettes, des piquets de clôture et des panneaux publicitaires. + Doc Société + + + + American Pickers, la brocante made in USA (Pick like a honey badger) S16 (5/24) + «Pick like a honey badger»De la côte Est à la côte Ouest des Etats-Unis, Mike et Frank rencontrent de nouveaux personnages mémorables et repèrent des pièces intéressantes. + Doc Société + + + + Mission Méditerranée, le musée des abysses + Entre les côtes italiennes et tunisiennes, se trouve une vaste aire de hauts-fonds : le banc des Esquerquis. Des experts internationaux explorent la zone. + Documentaire + + + + Cléopâtre, à la recherche du tombeau disparu (Cléopâtre, la reine meurtrière) S1 (n°3) + «Cléopâtre, la reine meurtrière»La cour de Cléopâtre, à Alexandrie, est un véritable nid de serpents. La reine va devoir éliminer tous ses ennemis, y compris au sein de sa propre famille. + Doc Histoire + + + + Cléopâtre, à la recherche du tombeau disparu (La chute de Cléopâtre et Marc Antoine) S1 (n°4) + «La chute de Cléopâtre et Marc Antoine»La rivalité entre Marc Antoine, l'amant et allié romain de Cléopâtre, et Octave déclenche l'une des plus grandes batailles navales du monde antique. + Doc Histoire + + + + Damian Lewis : Jeux d'espions (L'homme qui sauva le monde) S1 (3/8) + «L'homme qui sauva le monde»Haut cadre du KGB, Oleg Gordievsky a fourni aux services secrets britanniques, pendant plus de dix ans, des informations cruciales sur l'espionnage soviétique et ses réseaux. + Doc Histoire + + + + Navires de légende + Duel dans le Pacifique + Construit de 1937 à 1941, le Yamato, plus lourd cuirassé du monde, devait constituer un rempart pour l'empire nippon face à la flotte américaine du Pacifique. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Navires de légende + La bataille de Tsushima + Avec dix canons de 180 mm, seize de 127 mm et quatre lance-torpilles, notamment, l'armement du cuirassier Texas a fait la différence lors du Débarquement. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + L'histoire des sitcoms + Sex & the Sitcom + Les sitcoms permettent parfois de faire évoluer les mentalités, par exemple concernant les droits des femmes et de la communauté homosexuelle, ou le patriarcat. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + Les bases secrètes des nazis + La ville souterraine secrète d'Hitler + En Pologne, se trouve un complexe de plusieurs réseaux souterrains qui aurait abrité plus de 27 000 personnes lors des bombardements alliés. + Documentaire + Doc. Histoire + + 1 . 0 . + + Tout public + + + + Les bases secrètes des nazis + Le complexe de Wlodarz + Cachée dans une forêt en Pologne, une structure surnommée le piège à mouches ou le Stonehenge d'Hitler n'a toujours pas livré ses secrets aux historiens. + Documentaire + Doc. Histoire + + 1 . 0 . + + Tout public + + + + Dans le secret des codes + Le super-code japonais + Après l'attaque dévastatrice de Pearl Harbor, un officier de marine américain féru de mots croisés s'efforce de décoder les messages de l'ennemi japonais. + Documentaire + Doc. Sc. & Tech. + + 0 . 0 . + + Tout public + + + + Dans le secret des codes + Le mystère de l'écriture minoenne + Percer les mystères du système d'écriture de la civilisation antique minoenne a mobilisé de nombreux archéologues pendant près de cinquante ans. + Documentaire + Doc. Sc. & Tech. + + 0 . 0 . + + Tout public + + + + Colisée, une histoire monumentale + L'Empereur Commode + Commode devient empereur en 180 après Jésus-Christ. Au lieu de protéger les frontières de l'empire romain, il préfère retourner à Rome et vivre dans le luxe. + Documentaire + Doc. Histoire + + 0 . 0 . + + + -10 + + + + Colisée, une histoire monumentale + La fin d'une ère + En 401 après J.-C., un sénateur organise des jeux somptueux qui vont connaître un échec cuisant. Les combats de gladiateurs sont interdits des années plus tard. + Documentaire + Doc. Histoire + + 0 . 0 . + + + -10 + + + + Theodore Roosevelt + L'homme dans l'arène + Plus jeune président de toute l'histoire américaine, Theodore Roosevelt symbolise l'émergence de la puissance des Etats-Unis au début du XXe siècle et incarne une ère progressiste. + Documentaire + Doc. Histoire + + 0 . 0 . + + + -10 + + + + L'histoire des sitcoms + Freaks, Geeks & Loosers + Avec la course à l'espace, dans les années 1960, la première sitcom avec un extraterrestre "Mon Martien favori", a fait rire de très nombreux foyers américains. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + Les secrets de l'Arche d'Alliance + Jérémie, le prophète perdu + Une équipe d'archéologues enquête sur des sites sacrés et des tombes anciennes pour retracer le parcours possible de l'arche d'alliance des Hébreux. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Les secrets de l'Arche d'Alliance + L'Arche et ses pouvoirs : mythe ou réalité ? + Les experts se penchent sur les écrits anciens qui décrivent la force surpuissante, capable de tuer ceux qui l'ouvrent, de l'arche d'alliance. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Faites entrer l'accusé + Sylviane Fabre, la colère d'une femme blessée + En mai 2011, la gendarmerie retrouve le corps de Colette Deromme près des gorges du Verdon. Visiblement, la mère de famille a été étranglée. Les gendarmes cherchent un homme, mais c'est une femme qui se cache derrière le crime : Sylviane Fabre, la plus proche des amies de Colette, la soeur de son ex-mari. + Magazine + Mag. Société + + 17 . 2 . + + + -10 + + + + American Pickers, la brocante made in USA + Une pompe introuvable + Dans le Nord-Est de l'Iowa, Mike et Frank achètent un bidon d'huile, un vélo, une pompe à essence, une lampe torche et des enjoliveurs de Pontiac des années 50. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + American Pickers, la brocante made in USA + Rock'n'roll heaven + Aucune description + Documentaire + Doc. Société + + 9 . 0 . + + Tout public + + + + Dallas, une journée particulière + Le secret d'Etat le mieux gardé ou la plus grande conspiration des Etats-Unis : cinquante ans après, l'assassinat de John Kennedy demeure un drame fondateur. + Documentaire + Doc. Société + + + Tout public + + + + Tchernobyl, les dossiers secrets + Situation critique + Avant la catastrophe de 1986, plusieurs accidents s'étaient produits à Tchernobyl, mais les dirigeants soviétiques avaient choisi d'ignorer ces informations. + Documentaire + Doc. Histoire + + 0 . 0 . + + + -10 + + + + Tchernobyl, les dossiers secrets + Retombées + Après la catastrophe de Tchernobyl, les archives secrètes déclassifiées du KGB attestent des manoeuvres des autorités pour cacher l'ampleur de la catastrophe. + Documentaire + Doc. Histoire + + 0 . 0 . + + + -10 + + + + Les Kennedy : secrets et tragédies + Puissance et richesse + Joseph Kennedy a reporté ses ambitions sur son fils Joe junior, et à sa mort prématurée pendant la Seconde Guerre mondiale, sur son fils cadet, Jack. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Les Kennedy : secrets et tragédies + Le chemin vers le pouvoir + Populaire, John F Kennedy devient le plus jeune président des Etats-Unis jamais élu : il devra s'appuyer sur son frère Bob, nommé ministre de la Justice. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Planète Archéo + Faire parler les sites + Menacés par les pillages, les guerres, l'environnement, les sites archéologiques sont livrés à une course contre la montre. Comment découvrir sans détruire ? + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Planète Archéo + Faire parler l'invisible + Aucune description + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Design + La brique Lego + En 2009, la brique Lego, inventée par le Danois Ole Kirk, a fêté ses 50 ans et ses 320 milliards d'éléments vendus depuis 1949 : découverte. + Documentaire + Doc. Culture + + 6 . 0 . + + Tout public + + + + Interruption des programmes + Vêtus d'habits de fourrure aux couleurs vives, et tous dotés d'une personnalité différente, les Oddbods sont sept drôles de personnages qui ne manquent ni de vitalité, ni d'imagination. Ils passent leur temps à chahuter et à se jouer des tours au fil des épisodes. + Autre + + + Tout public + + + + Les légendes de l'aviation de guerre + Spitfire, un symbole britannique + Les avions les plus marquants de l'histoire de l'aviation militaire. Chaque épisode présente une de ces merveilles de technologie et analyse ses performances. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Les légendes de l'aviation de guerre + Lancaster, le bombardier de la raf + Les avions les plus marquants de l'histoire de l'aviation militaire. Chaque épisode présente une de ces merveilles de technologie et analyse ses performances. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + L'histoire des sitcoms + Casser les codes + Les Etats-Unis des années 1960, les sitcoms permettent aux téléspectateurs d'évoquer des questions de société et répondent à leur grand besoin d'évasion. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + L'histoire des sitcoms + La lutte des classes + Gros plan sur un genre télévisuel né en 1950 et qui a toujours su séduire un public nouveau, en adaptant sa narration aux moeurs de chaque époque. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + Les bases secrètes des nazis + Les ruines d'Hydrierwerke Politz + Près de la ville de Pölitz, aujourd'hui en Pologne, se trouvent les ruines d'un des plus gros sites de production de carburant synthétique de l'Allemagne nazie. + Documentaire + Doc. Histoire + + 1 . 0 . + + Tout public + + + + Les bases secrètes des nazis + Le château de Ksiaz + En Pologne, le château de Ksiaz a servi de point de départ du Projet Riese, sorte de ligne de défense qui devait relier différentes citadelles entre elles. + Documentaire + Doc. Histoire + + 1 . 0 . + + Tout public + + + + Dans le secret des codes + L'affaire EncroChat + Des enquêteurs ont réussi à démanteler un réseau de communications chiffrées baptisé EncroChat qui a alimenté en smartphones sécurisés de nombreux criminels. + Documentaire + Doc. Sc. & Tech. + + 0 . 0 . + + Tout public + + + + Dans le secret des codes + Le code de la guerre froide + Aucune description + Documentaire + Doc. Sc. & Tech. + + 0 . 0 . + + Tout public + + + + Pompéi, la vie secrète des riches romains + Sous l'égide de l'archéologue Paolo Mighetto, une équipe examine un nouveau quartier de Pompéi et enquête sur la vie des Romains aisés juste avant l'éruption. + Documentaire + Doc. Histoire + + + Tout public + + + + Pompéi, la vie secrète des riches romains + En 2022, une équipe d'archéologues examine les villas de Pompéi. Somptueuses demeures, celles-ci étaient souvent construites pour de riches Romains. + Documentaire + Doc. Histoire + + + Tout public + + + + Milliardaires, le règne des geeks + 1994-2001 : la ruée vers l'or + Avant de devenir l'un des hommes les plus riches du monde, Jeff Bezos a connu des débuts difficiles au lancement de sa vaste boutique en ligne. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + Milliardaires, le règne des geeks + 1997-2008 : don't be evil + Des archives rarement diffusées montrent, à l'université de Stanford, Larry Page et Sergey Brin évoquant leurs rêves et la création de Google. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + Les secrets de l'Arche d'Alliance + Sur les traces des templiers + Les experts enquêtent sur l'ordre des Templiers, des moines-soldats chargés de défendre les pèlerins de Terre sainte, réputés posséder l'arche d'alliance. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Les secrets de l'Arche d'Alliance + Perdue en Afrique ? + Certains avancent que l'arche d'Alliance a été dérobée par le fils du roi Salomon et emmenée en Ethiopie. L'équipe d'archéologues suit cette autre piste. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Faites entrer l'accusé + Tony Meilhon : la mauvaise rencontre de Laëtitia + Laëtitia Perrais a 18 ans lorsqu'elle croise la route de Tony Meilhon. Il vient de sortir de prison où il a déjà passé onze ans. Laëtitia Perrais, quant à elle, a passé une enfance difficile en famille d'accueil. En janvier 2011, à Pornic, elle est retrouvée poignardée, étranglée et démembrée. + Magazine + Mag. Société + + 17 . 0 . + + + -10 + + + + American Pickers, la brocante made in USA + Le retour du disjoncteur + Dans l'Iowa, Mike et Frank rencontrent un fermier de 92 ans qui possède une mine d'objets et dans l'Ohio, un collectionneur hésite à se séparer d'un juke-box. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + American Pickers, la brocante made in USA + Raiders of the lost pick + De la côte Est à la côté Ouest, les deux sympathiques... + Documentaire + Doc. Société + + 15 . 0 . + + Tout public + + + + Abraham Lincoln + Président en guerre + Fin 1860, en réaction à l'élection de Lincoln, la Caroline du Sud fait sécession avec dix autres Etats esclavagistes du Sud. Lincoln lance un appel aux armes. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Abraham Lincoln + Railsplitter + Premier président républicain et vainqueur de la guerre de Sécession, Abraham Lincoln, abolit l'esclavage et oeuvra à renforcer l'unité des Etats-Unis. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Comment Hitler a perdu la guerre du pétrole + 1939, début de la Seconde Guerre mondiale : après six semaines de combats, les réserves allemandes de pétrole sont épuisées. Pour gagner la guerre, Hitler lorgne sur l'Azerbaïdjan. + Documentaire + Doc. Histoire + + + Tout public + + + + T4, un médecin sous le nazisme + A travers l'histoire de la compromission d'un médecin pendant le nazisme, ce film raconte les étapes de l'extermination des handicapés entre 1939 et 1945. + Documentaire + Doc. Histoire + + + + -10 + + + + Le procès d'Auschwitz, la fin du silence + En 1947, les Alliés ouvrent le procès des camps de la mort à Cracovie. Plus de quinze ans plus tard débute à Francfort le "Second Procès d'Auschwitz". + Documentaire + Doc. Histoire + + + Tout public + + + + Design + Le téléviseur Algol + Le téléviseur Algol n°11, créé en 1964 par Marco Zanuso et Richard Sapper, se distingue par sa coque plastique moulée et ses couleurs vives. + Documentaire + Doc. Culture + + 5 . 0 . + + Tout public + + + + Interruption des programmes + Vêtus d'habits de fourrure aux couleurs vives, et tous dotés d'une personnalité différente, les Oddbods sont sept drôles de personnages qui ne manquent ni de vitalité, ni d'imagination. Ils passent leur temps à chahuter et à se jouer des tours au fil des épisodes. + Autre + + + Tout public + + + + Les légendes de l'aviation de guerre + Me-109 : le chasseur épique de la Luftwaffe + Les avions les plus marquants de l'histoire de l'aviation militaire. Chaque épisode présente une de ces merveilles de technologie et analyse ses performances. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Les légendes de l'aviation de guerre + Heinkel he-111 : l'arme fatale des allemands + Les avions les plus marquants de l'histoire de l'aviation militaire. Chaque épisode présente une de ces merveilles de technologie et analyse ses performances. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Milliardaires, le règne des geeks + 2007 - 2013 : un nouveau monde + Elon Musk fabrique des voitures électriques et des fusées, mais la crise financière de 2009 le met à l'épreuve. Tesla sort d'une situation délicate. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + Notre-Dame de Paris, le chantier du siècle + La quête de la hauteur + Dès le lendemain de l'incendie de Notre-Dame, des groupes de travail se constituent pour enrichir les connaissances sur l'édifice et contribuer à sa restauration. + Documentaire + Doc. Découverte + + 0 . 0 . + + Tout public + + + + Notre-Dame de Paris, le chantier du siècle + L'harmonie des forces + Lors de l'incendie de Notre-Dame, la flèche s'est brisée sur les voûtes, perturbant la stabilité de l'édifice. Pourtant, la cathédrale ne s'est pas effondrée. + Documentaire + Doc. Découverte + + 0 . 0 . + + Tout public + + + + Les bases secrètes des nazis + Le château d'Ordensburg Vogelsang + L'Ordensburg Vogelsang est construit dans l'Eifel, du côté de la frontière belge, en 1936. Il s'agit d'un camp de formation pour cadres nazis. + Documentaire + Doc. Histoire + + 1 . 0 . + + Tout public + + + + Les bases secrètes des nazis + Le château de Wewelsburg + En 1933, Himmler, tout-puissant chef des SS et le responsable de la sécurité du Reich, prend le contrôle du château de Wewelsburg, près d'Hanovre. + Documentaire + Doc. Histoire + + 1 . 0 . + + Tout public + + + + Dans le secret des codes + Le code qui a gagné la Grande Guerre + Durant la Première Guerre mondiale, le déchiffrage d'un télégramme envoyé par les Allemands, a permis à la Grande-Bretagne de sortir d'une période difficile. + Documentaire + Doc. Sc. & Tech. + + 0 . 0 . + + Tout public + + + + Dans le secret des codes + Le code de l'humanité + En 1953, le généticien américain James Watson et le physicien britannique Francis Crick décrivent la structure en trois dimensions de l'ADN. + Documentaire + Doc. Sc. & Tech. + + 0 . 0 . + + Tout public + + + + Cléopâtre, à la recherche du tombeau disparu + Cléopâtre, la conquête du Trône d'Égypte + Cléopâtre naît en 69 avant J.-C. à Alexandrie, dans la puissante dynastie des Ptolémées. En rivalité avec son frère Ptolémée XIII, elle s'allie à Jules César. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Cléopâtre, à la recherche du tombeau disparu + Alexandrie, le mausolée de Cléopâtre + Cléopâtre parvient à maintenir l'indépendance de son pays grâce à un pacte conclu avec César : l'Egypte fournit du blé à Rome, qui promet de protéger le pays. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Milliardaires, le règne des geeks + 2016 - ... : la nouvelle course à l'espace + Depuis le début des années 2000, Elon Musk, à travers SpaceX, et Jeff Bezos, par le biais de Blue Origin, s'affrontent dans une course à la conquête de l'espace. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + Khéops, mystérieuses découvertes + Une mission internationale a eu l'autorisation de sonder, en 2015, à l'aide de technologies non invasives, la pyramide de Khéops, dernière demeure du pharaon. + Documentaire + Doc. Sc. & Tech. + + + Tout public + + + + Faites entrer l'accusé + Bruay-en-Artois, le notaire et le petit juge + En 1972, dans le nord de la France, Brigitte Dewèvre, une fille de mineur âgée de 16 ans est assassinée. L'un des policiers chargé de reprendre l'enquête a accepté de raconter comment il a identifié un autre homme et comment cet homme, finalement acquitté, est passé aux aveux. + Magazine + Mag. Société + + 16 . 0 . + + + -10 + + + + American Pickers, la brocante made in USA + La taupe + Mike et Frank repèrent une grange bourrée d'objets dont le propriétaire connaît bien la valeur, avant d'explorer le repaire d'un excellent brocanteur. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + American Pickers, la brocante made in USA + Pick this way + De la côte Est à la côté Ouest, les deux sympathiques... + Documentaire + Doc. Société + + 15 . 0 . + + Tout public + + + + Navires de légende + Duel dans le Pacifique + Construit de 1937 à 1941, le Yamato, plus lourd cuirassé du monde, devait constituer un rempart pour l'empire nippon face à la flotte américaine du Pacifique. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Navires de légende + La bataille de Tsushima + Avec dix canons de 180 mm, seize de 127 mm et quatre lance-torpilles, notamment, l'armement du cuirassier Texas a fait la différence lors du Débarquement. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Navires de légende + Géants des mers + Grâce au bombardier-torpilleur Avenger et aux chasseurs Wildcat, les forces aéronavales américaines prennent l'avantage sur les Japonais, en juin 1942. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Navires de légende + Le fabuleux destin du cuirassé Texas + Avec dix canons de 180 mm, seize de 127 mm et quatre lance-torpilles, notamment, l'armement du cuirassier Texas a fait la différence lors du Débarquement. + Documentaire + Doc. Histoire + + 0 . 0 . + + Tout public + + + + Le mythe Gandhi + Un portrait de Gandhi, leader de la non-violence et symbole de l'indépendance de l'Inde, devenu une icône planétaire et qui reste une source d'inspiration. + Documentaire + Doc. Histoire + + + Tout public + + + + Robert Mitchum, le mauvais garçon d'Hollywood + Par son naturel, Robert Mitchum a conquis le public et les plus grands cinéastes tels Stanley Donen, Edward Dmytryk ou encore Richard Fleischer. + Documentaire + Doc. Cinéma + + + Tout public + + + + Lutèce, l'enfance de Paris + De nouvelles techniques de reconstitutions en 3D permettent aujourd'hui de reconstituer une partie des grands sites du Paris antique, à l'époque appelé Lutèce. + Documentaire + Doc. Histoire + + + Tout public + + + + Design + Le fauteuil Paimio + Imaginé pour le sanatorium finlandais de Paimio, en 1931, le fauteuil conçu par l'architecte Alvar Aalto révolutionne l'ergonomie des sièges de repos. + Documentaire + Doc. Culture + + 0 . 0 . + + Tout public + + + + Interruption des programmes + Vêtus d'habits de fourrure aux couleurs vives, et tous dotés d'une personnalité différente, les Oddbods sont sept drôles de personnages qui ne manquent ni de vitalité, ni d'imagination. Ils passent leur temps à chahuter et à se jouer des tours au fil des épisodes. + Autre + + + Tout public + + + + La grande histoire des châteaux forts + En voyageant de châteaux en châteaux, des confins de l'Espagne aux montagnes suisses, ce document retrace mille ans de construction militaire médiévale. + Documentaire + Doc. Histoire + + + Tout public + + + + Guédelon : comment construire un château fort + Il y a 25 ans, quelques aventuriers se sont lancés dans un pari audacieux : construire un tel château en n'utilisant que les techniques du Moyen-Âge. + Documentaire + Doc. Sc. & Tech. + + + Tout public + + + + Pêche à haut risque + La dernière course + Les capitaines du Pinwheel et du FV-Tuna.Com, qui se disputaient la première place, découvrent qu'ils doivent également compter avec le Hot Tuna. + Documentaire + Doc. Découverte + + 7 . 0 . + + Tout public + + + + Pêche à haut risque + Un retour en force + Alors que la compétition entre les capitaines Tyler McLaughlin, du Pin Wheel, et Dave Carraro, du FV Tunas, se poursuit, un troisième homme guette. + Documentaire + Doc. Découverte + + 2 . 0 . + + Tout public + + + + Pêche à haut risque + Echec et mat + Au cours de la deuxième semaine de pêche au thon, la lutte est acharnée entre les équipages, chacun espérant remporter la compétition et le chèque du vainqueur. + Documentaire + Doc. Découverte + + 2 . 0 . + + Tout public + + + + Pêche à haut risque + En pleine tempête + Une tempête approche des côtes de la Nouvelle-Angleterre : certains pêcheurs de Gloucester rentrent plus tôt tandis que d'autres tentent de l'affronter. + Documentaire + Doc. Découverte + + 2 . 0 . + + Tout public + + + + Pêche à haut risque + Opération T.U.N.A. + La saison de la pêche bat son plein depuis quatre semaines : à Gloucester, sur tous les bateaux, les équipages tentent désespérément d'attraper du thon rouge. + Documentaire + Doc. Découverte + + 2 . 0 . + + Tout public + + + + Pêche à haut risque + Combat acharné + C'est la cinquième semaine de pêche, et toute la flotte se dispute la meilleure place : l'ambiance se dégrade alors que les équipages rivalisent. + Documentaire + Doc. Découverte + + 2 . 0 . + + Tout public + + + + Pêche à haut risque + Mission pêche + A Gloucester, la course pour remporter le titre du bateau de pêcheurs ayant rapporté le plus de gains est lancée : le navire Hot Tuna attire l'attention. + Documentaire + Doc. Découverte + + 2 . 0 . + + Tout public + + + + Direct Quinté + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Occasions à saisir + Ford Transit + Mike a enfin mis la main sur une voiture qui lui échappe depuis des décennies : un Ford Transit Mark 1. Elvis est aux anges jusqu'à ce qu'il se rende compte de ce qu'il doit faire. + Documentaire + Doc. Découverte + + 16 . 0 . + + Tout public + + + + Occasions à saisir + Jaguar S-Type R + Mike Brewer est de retour pour partir à la recherche de voitures mythiques à restaurer, avant de les mettre entre les mains expertes de Ant Anstead, son mécanicien touche-à-tout. + Documentaire + Doc. Découverte + + 16 . 0 . + + Tout public + + + + Occasions à saisir + Lotus Europa + Mike renvoie Elvis à ses débuts en F1 en s'attaquant à un modèle de légende : une Lotus Europa, considérée comme la première voiture de sport à moteur central produite en série. + Documentaire + Doc. Découverte + + 16 . 0 . + + Tout public + + + + Occasions à saisir + Mitsubishi Shogun + Les mécanos dégotent une Mitsubishi Shogun. Si Elvis peut s'occuper de la rouille, il améliorera ses capacités tout-terrain en la surélevant et en ajoutant des accessoires. + Documentaire + Doc. Découverte + + 16 . 0 . + + Tout public + + + + Occasions à saisir + MGB Roadster + L'équipe est déterminée à marquer le 60e anniversaire de MGB avec style en rachetant et en retapant un bolide de collection. Mais les améliorations ne sont pas données. + Documentaire + Doc. Découverte + + 16 . 0 . + + Tout public + + + + 100 jours avec la police d'Occitanie + Stupéfiants, vol, chauffards : pas de répit pour les policiers de Toulouse + Avec 100 000 étudiants qui vivent et font la fête toute l'année dans la ville de Toulouse, les agents de police sont en vigilance constante. + Documentaire + Doc. Société + + 0 . 0 . + + + -10 + + + + 100 jours avec la police de la route + Alcool, délit de fuite, course-poursuite : haro sur la délinquance routière + Excès de vitesse, conduite en état d'ébriété ou sous l'emprise de drogues, les infractions au code de la route sont à l'origine d'accidents mortels. + Documentaire + Doc. Société + + 0 . 0 . + + + -10 + + + + 100 jours avec la police des Ardennes + Rodéos urbains, ivresse, stupéfiants : la police sous haute tension + Au coeur de la ville Charleville-Mézières ou sur les routes alentour, les policiers doivent sans cesse faire du rappel à l'ordre et sévir en cas d'infractions. + Documentaire + Doc. Société + + 0 . 0 . + + + -10 + + + + Programme de la nuit + Le meilleur de la passion automobile : les courses, les plus beaux modèles, les nouveautés. + Autre + + + Tout public + + + + Rome : l'armée des bâtisseurs + Redoutable outil de conquête durant l'Antiquité, la légion romaine a su faire preuve d'excellence dans tous les domaines. + Documentaire + Doc. Histoire + + + Tout public + + + + Le Colisée, une mégastructure romaine + Le Colisée de Rome, véritable merveille architecturale, est le symbole de la puissance perdue de la Rome antique. Il fut érigé en 12 ans, sous Vespasien, à la fin du Ier siècle. + Documentaire + Doc. Histoire + + + Tout public + + + + Le Panthéon de Rome : mégastructure antique + Admiré, copié mais jamais égalé, le Panthéon de Rome est un monument emblématique mais aussi un vrai miracle architectural. Sa coupole approche les 5 000 tonnes. + Documentaire + Doc. Culture + + + Tout public + + + + Venise : les défis hors normes des bâtisseurs + Edifiée il y a plus de 1500 ans sur une lagune marécageuse, la ville de Venise défie assauts de la mer. Retour sur les défis relevés par ses bâtisseurs. + Documentaire + Doc. Sc. & Tech. + + + Tout public + + + + 100 jours avec les dépanneurs de l'autoroute + Intervention d'outre-tombe + Au sommaire : un camion-citerne rempli de produits chimiques, couché sur l'autoroute ; un camion qui a quitté la route ; un poids lourd qui s'est échoué sur un muret de béton. + Documentaire + Doc. Sc. & Tech. + + 1 . 0 . + + Tout public + + + + 100 jours avec les dépanneurs de l'autoroute + Le camion dans la prairie + Au sommaire : un camion frigorifique renversé ; un poids lourd percuté de plein fouet par une voiture ; un semi-remorque plié en portefeuille sur l'autoroute. + Documentaire + Doc. Sc. & Tech. + + 1 . 0 . + + Tout public + + + + 100 jours avec les dépanneurs de l'autoroute + Ça sent le sapin + À quelques jours de Noël, les dépanneuses auront encore à faire face à de nombreux accidents et à prendre tous les risques pour sauver des vies. + Documentaire + Doc. Sc. & Tech. + + 1 . 0 . + + Tout public + + + + 100 jours avec les dépanneurs de l'autoroute + Le grand saut + Les dépanneurs vont se donner bien du mal pour désembourber un énorme semi-remorque de 25 tonnes qui a emprunté par erreur une petite route bien trop étroite. + Documentaire + Doc. Sc. & Tech. + + 1 . 0 . + + Tout public + + + + Direct Quinté + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Wheeler Dealers France + Jeep Cherokee + Quand il tombe sur une version XJ Limited haut-de-gamme de 1988 de la Jeep Cherokee avec un moteur 6 cylindres de 4,0 L, Gerry ne peut pas résister. + Documentaire + Doc. Découverte + + 6 . 0 . + + Tout public + + + + Wheeler Dealers France + Simca Vedette Chambord + Gerry a trouvé le moyen de concilier son amour des voitures américaines avec son goût pour le luxe royal. Il ramène une Simca Vedette Chambord de 1960. + Documentaire + Doc. Découverte + + 5 . 0 . + + Tout public + + + + Wheeler Dealers France + Porsche 218 + Aurélien ne devrait pas être surpris de voir Gerry revenir avec une Porsche. Pourtant, cette fois, il ne s'agit pas d'une voiture mais d'un tracteur. + Documentaire + Doc. Découverte + + 6 . 0 . + + Tout public + + + + Wheeler Dealers France + Mercedes 500 Sl + Gerry a craqué pour une Mercedes 500 SL dotée d'un gros V8 de 231 ch, et de quelques problèmes mécaniques. Beaucoup de travail attend donc Aurélien. + Documentaire + Doc. Découverte + + 6 . 0 . + + Tout public + + + + Australie, la ruée vers l'or + Tim Bates + Paul Mackie et son équipe doivent se battre pour sortir une équipe de chercheurs d'or débutants de la pénurie d'or qui sévit depuis trois ans. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + Australie, la ruée vers l'or + Les Gibsons + Aucune description + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + Australie, la ruée vers l'or + Mousson à l'horizon + Dans la région tropicale du Queensland du Nord, Jacqui et Andrew doivent faire face à un revers majeur lorsque ce dernier se blesse au bras. + Documentaire + Doc. Société + + 7 . 0 . + + Tout public + + + + Australie, la ruée vers l'or + Fin de saison extrême + Au cours de la dernière semaine, les Ferals sont confrontés à des températures extrêmes. Un membre de l'équipe est victime d'un coup de chaleur. + Documentaire + Doc. Société + + 7 . 0 . + + Tout public + + + + Programme de la nuit + Vêtus d'habits de fourrure aux couleurs vives, et tous dotés d'une personnalité différente, les Oddbods sont sept drôles de personnages qui ne manquent ni de vitalité, ni d'imagination. Ils passent leur temps à chahuter et à se jouer des tours au fil des épisodes. + Autre + + + Tout public + + + + Programme de la nuit + Aucune description + Magazine + Autre + + Tout public + + + + Good Morning Business + Informations, opinion et liberté d'expression sur les thèmes d'actualité. Intervention des invités en plateau et des auditeurs à l'antenne autour des thèmes d'actualité. Diffusion en simultané sur RMC et RMC Découverte. + Magazine + Information + + 0 . 569 . + + Tout public + + + + Chercheurs d'opale + Un retour explosif ! + C'est le début d'une toute nouvelle saison minière ! Les Bushmen font appel à un expert en explosifs pour s'attaquer à la roche la plus dure de Grawin. Une toute nouvelle équipe apporte une technologie de pointe sur les terres d'opale, ce qui pourrait bien tout changer ! + Documentaire + Téléréalité + + 5 . 0 . + + Tout public + + + + Chercheurs d'opale + Le chantier de tous les dangers + Les Cheals entreprennent les fouilles les plus dangereuses de leur histoire. Les Bushmen mettent à l'épreuve un débutant pour faire fonctionner leur foreuse d'exploration, mais les choses ne se passent pas comme ils l'espéraient... + Documentaire + Téléréalité + + 5 . 0 . + + Tout public + + + + Chercheurs d'opale + L'ange de Yowah + Les chercheurs d'Opale travaillent ensemble sous terre pour la première fois dans une mine légendaire. Les Mooka Boys sont contraints de travailler dans la mine abandonnée du défunt père de Leif. + Documentaire + Téléréalité + + 5 . 0 . + + Tout public + + + + Chercheurs d'opale + Forces de la nature + Leur opale s'étant révélée trop fragile pour être vendue, les Digi Diggers doivent trouver un nouvel emplacement. Les Bushmen découvrent que leur nouvelle concession a été pillée par des voleurs d'opale. + Documentaire + Téléréalité + + 5 . 0 . + + Tout public + + + + Chercheurs d'opale + La loi des séries + Chez les Opal Whispers, Sofia et Isaac sont contraints de laisser derrière eux un riche filon d'opale dans une mine au bord de l'effondrement. Ils doivent lutter pour laver des tonnes de poussière d'opale. Les Cheal, Chris et ses fils Rory et Oscar, sont empêchés de se rendre à leur mine par des inondations dévastatrices. Oscar embourbe son camion dans une boue épaisse en essayant d'atteindre la concession. + Documentaire + Téléréalité + + 5 . 0 . + + Tout public + + + + Direct Quinté + 2023. Découvrez du lundi au dimanche la plus grande course de chevaux disputée chaque jour en France, commentée et analysée par des signatures prestigieuses du monde des courses. + Sport + Hippisme + + 1 . 229 . + + Tout public + + + + Australie, la ruée vers l'or + Nouveaux venus + Paul Mackie décide d'unir ses forces à celles de la patronne de la mine, Melanie Wood, et de son partenaire, Alex Stead, pour former les Gold Devils, une nouvelle équipe disposant de plus de deux millions de dollars en machines lourdes et de cent kilomètres carrés de terrain vierge riche en or à prospecter. Le trio s'est fixé l'objectif d'une saison de mille onces d'or. Dans le Victoria, l'installation de Brent Shannon sur le site historique de Catto's Paddock n'a toujours pas livré les pépites monstrueuses sur lesquelles l'équipe de Poséidon comptait. + Documentaire + Téléréalité + + 7 . 0 . + + Tout public + + + + Australie, la ruée vers l'or + La chance tourne + Les Dust Devils se battent contre d'autres pannes mécaniques. Un métal étrange continue de s'infiltrer dans leur or et met en péril l'avenir de leurs opérations. Le travail acharné de Rob et Turbo porte ses fruits. Ils tombent enfin sur une parcelle riche en or. Mais l'arrivée de nouveaux braconniers sur leur concession menace de réduire à néant tous leurs efforts. + Documentaire + Téléréalité + + 5 . 0 . + + Tout public + + + + Australie, la ruée vers l'or + Travail de nuit + Après avoir conclu un marché avec le magnat de l'exploitation minière Kim North, les Ferals sont tenus de livrer la marchandise, faute de quoi Kim trouvera une autre équipe pour exploiter sa lucrative concession. Lorsqu'un accident de véhicule à quatre roues les prive d'un homme, ils sont contraints de travailler tardivement pour ramener les plus grosses pépites qu'ils aient jamais trouvées. + Documentaire + Téléréalité + + 7 . 0 . + + Tout public + + + + Australie, la ruée vers l'or + Au coeur de la forêt tropicale + Le projet Phoenix des Gold Devils étant hors service, Paul Mackie se rend à la concession isolée de Desert King pour une mission de poussée et de détection. Il prévoit d'utiliser un bulldozer de 90 tonnes pour enlever les broussailles et mettre à nu le sol riche en or. Après un début frustrant, la persévérance de Paul est récompensée par la découverte d'une série de grosses pépites. + Documentaire + Téléréalité + + 7 . 0 . + + Tout public + + + + Wheeler Dealers France + Lamborghini Gallardo + La marque Lamborghini a toujours fait rêver les passionnés et la Gallardo ne déroge pas à la règle. Ses performances sont à mettre à l'actif de son V10 de 500 ch. Mais comme d'habitude, si Gerry a fait une bonne affaire, c'est qu'il y a pas mal de boulot à réaliser sur cette magnifique italienne. + Documentaire + Découvertes + + 7 . 0 . + + Tout public + + + + Wheeler Dealers France + Jeep Cherokee + La Jeep Cherokee a été le premier 4x4 à s'attribuer le titre de SUV : Sports Utility Vehicle, autrement dit un véhicule à la fois pratique comme un utilitaire et dynamique comme une sportive. Quand il tombe sur une version XJ Limited haut-de-gamme de 1988 avec un moteur 6 cylindres de 4,0 L, Gerry ne peut pas résister. Néanmoins, il y a beaucoup de travail. + Documentaire + Découvertes + + 6 . 0 . + + Tout public + + + + Wheeler Dealers France + Jaguar Xk150 + Gerry doit remettre d'aplomb une Jaguar XK 150 de 1958 pour une occasion spéciale : le mariage de sa fille. Si le chantier ne semble pas insurmontable, il reste néanmoins complexe, car s'occuper d'une voiture qui a plus de 60 ans n'est jamais chose aisée. Boîte de vitesses automatique défectueuse, freinage très difficile, moteur qui tourne mal, voiture capricieuse : tout va mal sur ce modèle. + Documentaire + Découvertes + + 7 . 0 . + + Tout public + + + + Franky Zapata : les défis fous de l'homme volant + Franky Zapata a réalisé un vol étonnant sur les Champs-Elysées, devant le Président de la République, lors du défilé du 14 juillet 2019. Un moment d'accomplissement pour cet ancien champion du monde de jet-ski, après dix années d'inventions majeures, toutes guidées par un seul rêve : voler dans les airs en toute liberté. Surnommé "l'homme volant" grâce à son un système d'aviation personnel, il a ensuite combiné une formule 1 avec un drone pour créer la toute première voiture volante au monde. Celle-ci est propulsée par dix turbines et capable de transporter près de deux cents kilos de charge dans les airs. Aujourd'hui, il se lance dans un nouveau défi : la création du premier appareil volant destiné au grand public. + Documentaire + Action + + + Tout public + + + + De l'ISS à la Lune : le monde de Thomas Pesquet + Partir vers les étoiles, c'est un rêve presque inaccessible, mais pour Thomas Pesquet c'est une réalité. L'astronaute explique le quotidien en apesanteur : comment on dort, comment on se lave, ce qui se passe dans le corps. Dans la Station spatiale internationale, Thomas Pesquet et ses collègues doivent également conduire des centaines d'expériences scientifiques et entretenir les lieux. + Documentaire + Sciences et technique + + + Tout public + + + + Programme de la nuit + Aucune description + Magazine + Autre + + Tout public + + + + Good Morning Business + Informations, opinion et liberté d'expression sur les thèmes d'actualité. Intervention des invités en plateau et des auditeurs à l'antenne autour des thèmes d'actualité. Diffusion en simultané sur RMC et RMC Découverte. + Magazine + Mag. Économie + + + Tout public + + + + Chercheurs d'opale + Le chantier de tous les dangers + Aucune description + Documentaire + Doc. Société + + 5 . 0 . + + Tout public + + + + Chercheurs d'opale + L'ange de Yowah + Aucune description + Documentaire + Doc. Société + + 5 . 0 . + + Tout public + + + + Chercheurs d'opale + Forces de la nature + Aucune description + Documentaire + Doc. Société + + 5 . 0 . + + Tout public + + + + Chercheurs d'opale + La loi des séries + Chez les Opal Whispers, Sofia et Isaac sont contraints de laisser derrière eux un riche filon d'opale dans une mine au bord de l'effondrement. + Documentaire + Doc. Société + + 5 . 0 . + + Tout public + + + + Chercheurs d'opale + Des conditions dantesques + Les Digi Diggers se débarrassent de l'équipement solaire de leur bus pour alimenter leur mine, mais des coups de vent détruisent ces panneaux solaires vitaux. + Documentaire + Doc. Société + + 5 . 0 . + + Tout public + + + + Direct Quinté + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Australie, la ruée vers l'or + La chance tourne + Les Dust Devils se battent contre d'autres pannes mécaniques. Un métal étrange continue de s'infiltrer dans leur or et met en péril l'avenir de leurs opérations. + Documentaire + Doc. Société + + 5 . 0 . + + Tout public + + + + Australie, la ruée vers l'or + Travail de nuit + Après avoir conclu un marché avec le magnat Kim North, les Ferals sont tenus de livrer la marchandise, faute de quoi Kim trouvera une autre équipe. + Documentaire + Doc. Société + + 7 . 0 . + + Tout public + + + + Australie, la ruée vers l'or + Au coeur de la forêt tropicale + Le projet Phoenix des Gold Devils étant hors service, Paul Mackie se rend à la concession isolée de Desert King pour une mission de poussée et de détection. + Documentaire + Doc. Société + + 7 . 0 . + + Tout public + + + + Australie, la ruée vers l'or + Disparition inquiétante + Dans la région accidentée de Pilbara, les Ferals rencontrent de près un serpent mortel et se battent pour trouver de l'or dans un environnement hostile. + Documentaire + Doc. Société + + 7 . 0 . + + Tout public + + + + Wheeler Dealers France + Opel Gt + Aujourd'hui, l'équipe s'attaque à la première sportive de la marque Opel, la GT. Semblable à une petite Corvette, elle représente un mélange étonnant qui n'a pas échappé à Gerry. + Documentaire + Doc. Découverte + + 5 . 0 . + + Tout public + + + + Wheeler Dealers France + Matra Bagheera + Aurélien et Gerry s'attaquent à une icône du design seventies made in France, la Matra Bagheera. Elle est devenue en 50 ans un véritable collector. + Documentaire + Doc. Découverte + + 7 . 0 . + + Tout public + + + + Wheeler Dealers France + BMW M3 E30 + Difficile de trouver une voiture plus mythique et adulée que la BMW M3 E30. Gerry en a trouvé un exemplaire à 55 000 euros. Mais à ce prix là, il y a forcément du boulot à prévoir. + Documentaire + Doc. Découverte + + 6 . 0 . + + Tout public + + + + Wheeler Dealers France + BMW M5 E60 + Aucune description + Documentaire + Doc. Découverte + + 7 . 0 . + + Tout public + + + + Wheeler Dealers France + Tracteur Massey Ferguson + Le tracteur Massey Ferguson Type 35 de 1959 a été produit à plusieurs centaines de milliers d'exemplaires. Celui trouvé par Gerry accuse le poids des années. + Documentaire + Doc. Découverte + + 7 . 0 . + + Tout public + + + + Wheeler Dealers France + Saviem TP3 + Gerry débarque à l'atelier avec un Saviem TP3. C'est à la base un véhicule militaire, rustique, doté d'un moteur increvable et d'une transmission intégrale. + Documentaire + Doc. Découverte + + 7 . 0 . + + Tout public + + + + Programme de la nuit + Vêtus d'habits de fourrure aux couleurs vives, et tous dotés d'une personnalité différente, les Oddbods sont sept drôles de personnages qui ne manquent ni de vitalité, ni d'imagination. Ils passent leur temps à chahuter et à se jouer des tours au fil des épisodes. + Autre + + + Tout public + + + + Good Morning Business + Informations, opinion et liberté d'expression sur les thèmes d'actualité. Intervention des invités en plateau et des auditeurs à l'antenne autour des thèmes d'actualité. Diffusion en simultané sur RMC et RMC Découverte. + Magazine + Mag. Économie + + + Tout public + + + + Chercheurs d'opale + L'ange de Yowah + Aucune description + Documentaire + Doc. Société + + 5 . 0 . + + Tout public + + + + Chercheurs d'opale + Forces de la nature + Aucune description + Documentaire + Doc. Société + + 5 . 0 . + + Tout public + + + + Chercheurs d'opale + La loi des séries + Chez les Opal Whispers, Sofia et Isaac sont contraints de laisser derrière eux un riche filon d'opale dans une mine au bord de l'effondrement. + Documentaire + Doc. Société + + 5 . 0 . + + Tout public + + + + Chercheurs d'opale + Des conditions dantesques + Les Digi Diggers se débarrassent de l'équipement solaire de leur bus pour alimenter leur mine, mais des coups de vent détruisent ces panneaux solaires vitaux. + Documentaire + Doc. Société + + 5 . 0 . + + Tout public + + + + Chercheurs d'opale + Une aiguille dans une botte de foin + Les Mooka Boys parviennent enfin à rendre leur foreuse d'exploration opérationnelle après deux ans de travail, mais un investisseur potentiel menace de se retirer. + Documentaire + Doc. Société + + 5 . 0 . + + Tout public + + + + Direct Quinté + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Australie, la ruée vers l'or + Travail de nuit + Après avoir conclu un marché avec le magnat Kim North, les Ferals sont tenus de livrer la marchandise, faute de quoi Kim trouvera une autre équipe. + Documentaire + Doc. Société + + 7 . 0 . + + Tout public + + + + Australie, la ruée vers l'or + Au coeur de la forêt tropicale + Le projet Phoenix des Gold Devils étant hors service, Paul Mackie se rend à la concession isolée de Desert King pour une mission de poussée et de détection. + Documentaire + Doc. Société + + 7 . 0 . + + Tout public + + + + Australie, la ruée vers l'or + Disparition inquiétante + Dans la région accidentée de Pilbara, les Ferals rencontrent de près un serpent mortel et se battent pour trouver de l'or dans un environnement hostile. + Documentaire + Doc. Société + + 7 . 0 . + + Tout public + + + + Australie, la ruée vers l'or + Seuls au monde + Jacqui et Andrew sont à la recherche de gros diamants et s'enfoncent dans la région reculée de Palmer River, dans le Queensland. Ils découvrent une série de pépites. + Documentaire + Doc. Société + + 7 . 0 . + + Tout public + + + + Wheeler Dealers France + BMW M3 E30 + Difficile de trouver une voiture plus mythique et adulée que la BMW M3 E30. Gerry en a trouvé un exemplaire à 55 000 euros. Mais à ce prix là, il y a forcément du boulot à prévoir. + Documentaire + Doc. Découverte + + 6 . 0 . + + Tout public + + + + Wheeler Dealers France + Marcadier Barzoï + Acheter une voiture en kit, il fallait oser, mais Gerry l'a fait avec cette Marcadier Barzoï. Une petite voiture française ultra légère, produite dans les années 60-70. + Documentaire + Doc. Découverte + + 7 . 0 . + + Tout public + + + + Wheeler Dealers France + Porsche 218 + Aurélien ne devrait pas être surpris de voir Gerry revenir avec une Porsche. Pourtant, cette fois, il ne s'agit pas d'une voiture mais d'un tracteur. + Documentaire + Doc. Découverte + + 6 . 0 . + + Tout public + + + + Travaux XXL : un étage en plus + Défis à tous les étages + Aucune description + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + Travaux XXL : un étage en plus + Complication sur les toits + En région parisienne, les combles d'une maison familiale doivent être réhabilités. Dans la région toulousaine, une maison des années 2000 va gagner un étage. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + Travaux XXL : un étage en plus + Des charpentiers face à l'épreuve + À Toulouse, une famille a fait appel à Laurent et ses équipes, car elle manque de place. Il faut une chambre pour accueillir la famille et une autre chambre pour leurs enfants. + Documentaire + Doc. Société + + 0 . 0 . + + Tout public + + + + Programme de la nuit + Vêtus d'habits de fourrure aux couleurs vives, et tous dotés d'une personnalité différente, les Oddbods sont sept drôles de personnages qui ne manquent ni de vitalité, ni d'imagination. Ils passent leur temps à chahuter et à se jouer des tours au fil des épisodes. + Autre + + + Tout public + + + + Good Morning Business + Informations, opinion et liberté d'expression sur les thèmes d'actualité. Intervention des invités en plateau et des auditeurs à l'antenne autour des thèmes d'actualité. Diffusion en simultané sur RMC et RMC Découverte. + Magazine + Mag. Économie + + + Tout public + + + + Chercheurs d'opale + Forces de la nature + Aucune description + Documentaire + Doc. Société + + 5 . 0 . + + Tout public + + + + Chercheurs d'opale + La loi des séries + Chez les Opal Whispers, Sofia et Isaac sont contraints de laisser derrière eux un riche filon d'opale dans une mine au bord de l'effondrement. + Documentaire + Doc. Société + + 5 . 0 . + + Tout public + + + + Chercheurs d'opale + Des conditions dantesques + Les Digi Diggers se débarrassent de l'équipement solaire de leur bus pour alimenter leur mine, mais des coups de vent détruisent ces panneaux solaires vitaux. + Documentaire + Doc. Société + + 5 . 0 . + + Tout public + + + + Chercheurs d'opale + Une aiguille dans une botte de foin + Les Mooka Boys parviennent enfin à rendre leur foreuse d'exploration opérationnelle après deux ans de travail, mais un investisseur potentiel menace de se retirer. + Documentaire + Doc. Société + + 5 . 0 . + + Tout public + + + + Chercheurs d'opale + Première vente + Angel risque de faire une chute mortelle dans d'immenses vides situés juste sous la surface, tandis que l'équipe met involontairement à jour des puits cachés. + Documentaire + Doc. Société + + 5 . 0 . + + Tout public + + + + Direct Quinté + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Australie, la ruée vers l'or + Au coeur de la forêt tropicale + Le projet Phoenix des Gold Devils étant hors service, Paul Mackie se rend à la concession isolée de Desert King pour une mission de poussée et de détection. + Documentaire + Doc. Société + + 7 . 0 . + + Tout public + + + + Australie, la ruée vers l'or + Disparition inquiétante + Dans la région accidentée de Pilbara, les Ferals rencontrent de près un serpent mortel et se battent pour trouver de l'or dans un environnement hostile. + Documentaire + Doc. Société + + 7 . 0 . + + Tout public + + + + Australie, la ruée vers l'or + Seuls au monde + Jacqui et Andrew sont à la recherche de gros diamants et s'enfoncent dans la région reculée de Palmer River, dans le Queensland. Ils découvrent une série de pépites. + Documentaire + Doc. Société + + 7 . 0 . + + Tout public + + + + Australie, la ruée vers l'or + Braquage à l'australienne + Des retards paralysants dans leur projet Phoenix obligent les Gold Devils à prospecter leur bail Fair Lady de 3,1 kilomètres carrés. Mais un intrus armé les menace. + Documentaire + Doc. Société + + 7 . 0 . + + Tout public + + + + Wheeler Dealers France + Talbot Sunbeam Lotus + La Talbot Sunbeam Lotus est un mélange inattendu entre une compacte familiale et un moteur 2,2 L de 155 ch, championne du monde des rallyes dans les années 80. + Documentaire + Doc. Découverte + + 6 . 0 . + + Tout public + + + + Wheeler Dealers France + Renault Estafette + Gerry aimerait retaper entièrement une Renault Estafette et en faire une réplique des véhicules d'assistance de course comme il en existait à l'époque des Alpine. + Documentaire + Doc. Découverte + + 5 . 0 . + + Tout public + + + + Wheeler Dealers France + Audi TT + Véritable phénomène de mode lorsqu'il est sorti en 1998, l'Audi TT est aujourd'hui un "youngtimer". Gerry a réussi à trouver une première génération de 225 chevaux. + Documentaire + Doc. Découverte + + 7 . 0 . + + Tout public + + + + Trésors de casse + Jeep Wrangler à la casse + Pour le premier épisode de cette nouvelle saison, Nelson et son équipe s'attaquent à une Jeep Wrangler YJ, dont la cote oscille entre 15 000 et 20 000 euros. + Documentaire + Doc. Sc. & Tech. + + 2 . 0 . + + Tout public + + + + Trésors de casse + Spéciale voitures US + Aucune description + Documentaire + Doc. Sc. & Tech. + + 2 . 0 . + + Tout public + + + + Trésors de casse + Spéciale motos + Nelson, le patron, quitte sa casse et prend la route avec son fils Cameron pour le sud de la France. Ils vont rendre visite à Franck, casseur spécialisé dans les 2 roues. + Documentaire + Doc. Sc. & Tech. + + 1 . 0 . + + Tout public + + + + Programme de la nuit + Vêtus d'habits de fourrure aux couleurs vives, et tous dotés d'une personnalité différente, les Oddbods sont sept drôles de personnages qui ne manquent ni de vitalité, ni d'imagination. Ils passent leur temps à chahuter et à se jouer des tours au fil des épisodes. + Autre + + + Tout public + + + + TFou + Une émission jeunesse qui propose les meilleures séries de dessins animés du moment. + Jeunesse + Mag. Jeunesse + + + Tout public + + + + Téléshopping samedi + Aucune description + Magazine + Mag. TV-Achat + + + Tout public + + + + Génération Ushuaïa + - + Chaque semaine, retrouvez "Génération Ushuaïa", le magazine entièrement consacré à la protection de la planète ! Tous les samedis, Fanny Agostini vous donne rendez-vous pour découvrir des documentaires inspirants ayant pour point commun de sensibiliser à l'urgence environnementale. + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Les douze coups de midi + Chaque jour, quatre candidats s'affrontent pour empocher les 30 000 euros de la cagnotte et décrocher l'étoile mystérieuse et ses cadeaux. Seule condition, bien répondre aux questions de culture générale posées par Jean-Luc Reichmann. + Divertissement + Jeu + + + Tout public + + + + Petits plats en équilibre + Chaque jour, Laurent Mariotte propose des recettes simples et savoureuses pour profiter des ingrédients de saison, en donnant la part belle aux produits locaux. + Magazine + Mag. Société + + + Tout public + + + + Météo + Prévisions météorologiques en France par le service de TF1. + Info-Météo + Information + + + Tout public + + + + Journal + Journal télévisé de TF1 qui revient sur les faits marquants et les événements essentiels qui ont fait de cette journée une journée différente de toutes les autres. + Info-Météo + Information + + + Tout public + + + + Grands reportages + Héritiers inconnus, épisode 3 + Entre secrets de famille et enjeux financiers, une plongée dans l'univers mystérieux et souvent romanesque des généalogistes successoraux. Moitié historiens, moitié détectives, les chercheurs d'héritiers mènent l'enquête. + Magazine + Mag. Société + + 0 . 2 . + + Tout public + + + + Grands reportages + Héritiers inconnus, épisode 4 + Entre secrets de famille et enjeux financiers, une plongée dans l'univers mystérieux et souvent romanesque des généalogistes successoraux. + Magazine + Mag. Société + + 0 . 3 . + + Tout public + + + + Les Docs du week-end + Le nouveau business de la cuisine + Avec le confinement en 2020, les habitudes des Français ont évolué. Les grandes marques ont ainsi flairé le bon coup et se sont mises à développer les appareils du quotidien et notamment les robots de cuisine. Pour pouvoir appliquer un maximum de ces recettes, de nombreux cuisiniers ont donc créé des tutos sur le web. + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + 50mn Inside + L'actu + 50' Inside, c'est toute l'actualité des stars résumée, chaque samedi. Le rendez-vous glamour pour retrouver toujours plus de news, d'interviews, d'actualité people en France et à l'étranger, de destinations de rêve et de reportages exclusifs au bout du monde pour partir à la rencontre de vos personnalités préférées et vous faire découvrir leurs repaires secrets. + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + 50mn Inside + Le mag + 50' Inside, c'est toute l'actualité des stars résumée, chaque samedi. Le rendez-vous glamour pour retrouver toujours plus de news, d'interviews, d'actualité people en France et à l'étranger, de destinations de rêve et de reportages exclusifs au bout du monde pour partir à la rencontre de vos personnalités préférées et vous faire découvrir leurs repaires secrets. + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Nés pour bouger + Dans chaque épisode, la coach Anaïs Grangerac part à la rencontre d'anonymes qui, par leur histoire personnelle, ne pratiquent pas ou plus d'activité physique. + Magazine + Mag. Sport + + + Tout public + + + + Météo + Prévisions météorologiques en France par le service de TF1. + Info-Météo + Information + + + Tout public + + + + Journal + Journal télévisé de TF1 qui revient sur les faits marquants et les événements essentiels qui ont fait de cette journée une journée différente de toutes les autres. + Info-Météo + Information + + + Tout public + + + + Un moment d'évasion + Aucune description + Magazine + Mag. Service + + + Tout public + + + + Tirage du Loto + Les derniers résultats des LOTO®. Tous les lundi, mercredi et samedi vers 20h35, Jean-Pierre Foucault, Elsa Fayer, Christophe Beaugrand, Karine Ferri ou Iris Mittenaere présentent les résultats des tirages officiels du LOTO® (FDJ®) avec les cinq numéros gagnants ainsi que le numéro chance des derniers tirages. + Autre + + + Tout public + + + + Nés pour bouger + Dans chaque épisode, la coach Anaïs Grangerac part à la rencontre d'anonymes qui, par leur histoire personnelle, ne pratiquent pas ou plus d'activité physique. + Magazine + Mag. Sport + + + Tout public + + + + Quotidien express + Tous les soirs les moments forts et les plus divertissants de l'émission "Quotidien", présentée par Yann Barthès. + Divertissement + + + Tout public + + + + Météo + Prévisions météorologiques en France par le service de TF1. + Info-Météo + Information + + + Tout public + + + + Star Academy + 16 élèves âgés de 18 à 25 ans ont décroché leur place pour intégrer le mythique château de Dammarie-les-Lys. Tous ont un point commun : leur talent artistique qu'ils doivent développer tout au long de l'aventure. Chaque semaine est un défi et ils doivent se surpasser pour décrocher leur place en finale. + Divertissement + + + Tout public + + + + Star Academy + L'arrivée au Château + Nikos Aliagas, en direct du plateau, débriefe les prestations des académiciens avec le corps professoral. Karima Charni est aux côtés des élèves dans le bus. + Divertissement + + 0 . 0 . + + Tout public + + + + Star Academy + Le live + Lieu emblématique de l'aventure Star Ac', c'est au château de Dammarie-les-Lys, situé au sud de Paris, que les élèves vivent et suivent une formation dans laquelle rigueur et discipline permettent à chacun d'entre eux de développer leur sens artistique. Au château, les cours sont dispensés par les meilleurs professeurs de chant, de danse et d'expression scénique. + Divertissement + + 0 . 0 . + + Tout public + + + + Programmes de la nuit + Retrouvez tous vos programmes de nuit. + Autre + + + Tout public + + + + TFou + Une émission jeunesse qui propose les meilleures séries de dessins animés du moment. + Jeunesse + Mag. Jeunesse + + + Tout public + + + + Automoto + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Téléfoot + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Les douze coups de midi + Chaque jour, quatre candidats s'affrontent pour empocher les 30 000 euros de la cagnotte et décrocher l'étoile mystérieuse et ses cadeaux. Seule condition, bien répondre aux questions de culture générale posées par Jean-Luc Reichmann. + Divertissement + Jeu + + + Tout public + + + + Petits plats en équilibre + Chaque jour, Laurent Mariotte propose des recettes simples et savoureuses pour profiter des ingrédients de saison, en donnant la part belle aux produits locaux. + Magazine + Mag. Société + + + Tout public + + + + Météo + Prévisions météorologiques en France par le service de TF1. + Info-Météo + Information + + + Tout public + + + + Journal + Journal télévisé de TF1 qui revient sur les faits marquants et les événements essentiels qui ont fait de cette journée une journée différente de toutes les autres. + Info-Météo + Information + + + Tout public + + + + Grands reportages + Pros ou amateurs : des bêtes à concours + Les concours : il y en a pour tous les goûts, toutes les disciplines, tous les âges. Les Français aiment se mesurer aux meilleurs à travers des compétitions. + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Reportages découverte + Décorations d'exception + Ils sont artisans, compagnons, chefs décorateurs de cinéma, décorateurs d'intérieur ou scénographe. On les dit un peu magiciens, car ils inventent de nouveaux lieux, recréent des décors d'époque et restaurent des lieux d'exception. Leurs projets nécessitent des mécanismes ingénieux et beaucoup de créativité. + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Les Docs du week-end + Au cœur des missions secrètes du GIGN + Le dimanche, l'émission est présentée par Tatiana Silva et décryptera notre société et ses nouvelles tendances à travers des reportages et des enquêtes sur la sécurité, la consommation ou encore l'actualité ! + Magazine + Mag. Société + + 0 . 0 . + + + -10 + + + + Sept à huit Life + Sept à Huit Life privilégie la proximité et traite des sujets au plus près de la vie quotidienne des Français. + Magazine + Mag. Société + + + Tout public + + + + Sept à huit + Le portrait de la semaine : Gabriel Attal + Harry Roselmack continue à couvrir les temps forts de l'actualité. + Magazine + Mag. Société + + 0 . 9 . + + Tout public + + + + Epargnons nous les idées reçues + En quelques brèves minutes, ce magazine tord le coup à certaines thèses à tort trop répandues et rétablit la vérité sur toutes les idées reçues. + Magazine + Mag. Société + + + Tout public + + + + Les nouveaux modèles + Hugo + Ce sont des sportifs de haut niveau, des collégiennes, des bénévoles ou des entrepreneurs à impact. Découvrez les portraits inspirants de citoyens et citoyennes engagés dans la transformation du monde. A travers la question "Quel mot, plus que n'importe quel autre, vous pousse à agir aujourd'hui ?", ils construisent ensemble de nouveaux modèles de société. + Magazine + Mag. Service + + 0 . 16 . + + Tout public + + + + Météo + Prévisions météorologiques en France par le service de TF1. + Info-Météo + Information + + + Tout public + + + + Journal + Journal télévisé de TF1 qui revient sur les faits marquants et les événements essentiels qui ont fait de cette journée une journée différente de toutes les autres. + Info-Météo + Information + + + Tout public + + + + TF1, rendez-vous sport + Programme court et quotidien qui revient en images sur les moments forts de l'actualité sportive. + Magazine + Mag. Sport + + + Tout public + + + + Le goût du détail + Choux + Ils sont pêcheurs, éleveurs, maraîchers, confiseurs, fromagers : leur point commun ? Ils ont le goût du détail, ce tour de main, ce regard avisé, cette expertise ancienne retrouvée qui fait toute la différence. Chaque semaine, ces artisans du goût délivrent le secret de leur savoir-faire. + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Sublime inspiration + Caroline Najman + Aucune description + Magazine + Mag. Service + + 0 . 9 . + + Tout public + + + + Météo + Prévisions météorologiques en France par le service de TF1. + Info-Météo + Information + + + Tout public + + + + Aline + Petite dernière d'une fratrie de 14 enfants, la petite Aline, qui vit dans un village du Québec, montre des dons précoces pour le chant. Le producteur Guy-Claude voit en elle un diamant brut. Il s'occupe de son aspect physique et de lui trouver de potentiels hits. Au fil du temps, Aline tombe amoureuse de son mentor... + Film + Film Passion + + + Tout public + + + + Céline Dion : une voix, un destin + Le fabuleux destin de Céline Dion, la diva à la voix d'or qui fête ses 40 ans de carrière, grâce à des anecdotes dévoilées par ceux qui la connaissent le mieux. + Documentaire + Doc. Musique + + + Tout public + + + + Les experts : Miami + Poupée de son + Phoenicks, une star de la chanson, s'est jetée volontairement dans les flammes lors d'un concert : elle en est morte. En comparant le dossier médical de la défunte et les résultats de l'autopsie, Horatio découvre que la victime n'est pas la vraie Phoenicks. Il s'agit de Vanessa Patton, une de ses danseuses... + Série + Série Suspense + + 7 . 11 . + + + -10 + + + + Les experts : Miami + Pas de noces pour le marié + Un futur marié ne se présente pas devant l'autel, et ses garçons d'honneur sont retrouvés couverts de sang. Sous l'effet d'une drogue, ils ne se rappellent plus la soirée de la veille. Les experts vont faire parler les indices pour savoir ce qui s'est passé au cours de cette fameuse soirée... + Série + Série Suspense + + 7 . 5 . + + Tout public + + + + Programmes de la nuit + Retrouvez tous vos programmes de nuit. + Autre + + + Tout public + + + + Programmes de la nuit + Retrouvez tous vos programmes de nuit. + Programme + Programme indéterminé + + + Tout public + + + + TFou + Une émission jeunesse qui propose les meilleures séries de dessins animés du moment. + Magazine + Jeunesse + + + Tout public + + + + Météo + Prévisions météorologiques en France par le service de TF1. + Services + Météo + + + Tout public + + + + Téléshopping + Le magazine de la consommation et des conseils d'achat, coaché par Marie-Ange Nardi et Alexandre Devoise. + Services + Télé-achat + + 0 . 209 . + + Tout public + + + + Météo + Prévisions météorologiques en France par le service de TF1. + Services + Météo + + + Tout public + + + + Familles nombreuses : la vie en XXL + Ce docu-réalité suit le quotidien exceptionnel de plusieurs familles nombreuses. Avec ces familles tout est XXL ! Partagez le quotidien de ces familles nombreuses où tout se vit en plus grand ! + Programme + Téléréalité + + 6 . 66 . + + Tout public + + + + Familles nombreuses : la vie en XXL + Ce docu-réalité suit le quotidien exceptionnel de plusieurs familles nombreuses. Avec ces familles tout est XXL ! Partagez le quotidien de ces familles nombreuses où tout se vit en plus grand ! + Programme + Téléréalité + + 6 . 67 . + + Tout public + + + + Amour, gloire et beauté + Bill, Katie et Donna échangent leurs opinions sur la relation entre Hope et Liam. Oliver espère qu'Amber sait ce qu'elle fait. Hope commence à se demander ce qu'attend Liam. Elle décide donc d'appeler Katie pour savoir s'il est toujours à la maison de la plage. Amber prend des mesures extrêmes pour garder Liam loin de la fête de Hope. Liam se rend à Bikini Beach mais Madison lui indique que Hope est partie avec Oliver, et qu'il va tout faire pour coucher avec elle. + Série + Drame + + 0 . 8896 . + + Tout public + + + + Les Feux de l'amour + Alors que William et Lily passe une soirée romantique au restaurant, ils rencontrent Victoria qui les informe que son père risque d'attaquer leur entreprise. + Série + Drame + + 0 . 8831 . + + Tout public + + + + Petits plats en équilibre + Du lundi 13 au vendredi 17 novembre, embarquez pour une semaine culinaire unique sur TF1. Petits Plats en Equilibre, le rendez-vous quotidien présenté par Laurent Mariotte, fête ses 15 ans d'existence et de succès d'audience. Pour marquer cet anniversaire gourmand et télévisuel, Laurent Mariotte nous prépare un menu d'automne aux petits oignons avec des recettes de saison savoureuses, originales, accessibles pour le porte-monnaie de chacun, à refaire chez soi sans modération. A la carte de cette semaine spéciale : rôti de porc au lait, tourte de champignons, spirale de pommes de terre à la Javanaise, pâtes au citron. + Art de vivre + Gastronomie + + + Tout public + + + + Les douze coups de midi + Chaque jour, quatre candidats s'affrontent pour empocher les 30 000 euros de la cagnotte et décrocher l'étoile mystérieuse et ses cadeaux. Seule condition, bien répondre aux questions de culture générale posées par Jean-Luc Reichmann. + Divertissement + Jeu + + 0 . 70 . + + Tout public + + + + Petits plats en équilibre + Du lundi 13 au vendredi 17 novembre, embarquez pour une semaine culinaire unique sur TF1. Petits Plats en Equilibre, le rendez-vous quotidien présenté par Laurent Mariotte, fête ses 15 ans d'existence et de succès d'audience. Pour marquer cet anniversaire gourmand et télévisuel, Laurent Mariotte nous prépare un menu d'automne aux petits oignons avec des recettes de saison savoureuses, originales, accessibles pour le porte-monnaie de chacun, à refaire chez soi sans modération. A la carte de cette semaine spéciale : rôti de porc au lait, tourte de champignons, spirale de pommes de terre à la Javanaise, pâtes au citron. + Art de vivre + Gastronomie + + + Tout public + + + + Journal + Journal télévisé de TF1 qui revient sur les faits marquants et les événements essentiels qui ont fait de cette journée une journée différente de toutes les autres. + Information + Journal + + + Tout public + + + + Petits plats en équilibre + Du lundi 13 au vendredi 17 novembre, embarquez pour une semaine culinaire unique sur TF1. Petits Plats en Equilibre, le rendez-vous quotidien présenté par Laurent Mariotte, fête ses 15 ans d'existence et de succès d'audience. Pour marquer cet anniversaire gourmand et télévisuel, Laurent Mariotte nous prépare un menu d'automne aux petits oignons avec des recettes de saison savoureuses, originales, accessibles pour le porte-monnaie de chacun, à refaire chez soi sans modération. A la carte de cette semaine spéciale : rôti de porc au lait, tourte de champignons, spirale de pommes de terre à la Javanaise, pâtes au citron. + Art de vivre + Gastronomie + + + Tout public + + + + Météo + Prévisions météorologiques en France par le service de TF1. + Services + Météo + + + Tout public + + + + Noël à Maple Valley + Erica et sa famille possèdent une propriété dans le Montana. Ils travaillent dans leur ferme et gagnent leur vie grâce au sirop d'érable qu'ils produisent ainsi qu'aux activités de Noël qu'ils organisent. Mais le jour où Ina, la matriarche de la famille, annonce qu'elle prend sa retraite, Erica et sa soeur Heidi se voient confier la ferme... + Téléfilm + Drame + + + Tout public + + + + Coup de foudre dans l'allée des sapins + Meg Reilly tient un magasin de musique dans l'allée des fêtes de Noël, une rue historique du centre de Denver. Mais la rue est menacée de démolition et des immeubles de bureaux doivent y être construits. Avec l'aide des commerçants, de ses amis et de sa famille, elle se bat pour sauver l'esprit et la tradition que cet endroit représente pour tous... + Téléfilm + Drame + + + Tout public + + + + Star Academy, la quotidienne + Retrouvez tous les jours \" La Quotidienne \" ! L'occasion de revenir sur les moments forts de la journée des académiciens. + Programme + Téléréalité + + 10 . 0 . + + Tout public + + + + Ici tout commence + Pour protéger leur secret, Carla et Souleymane jouent les amoureux. Face aux inquiétudes de Deva, David met de l'eau dans son vin. Leroy embarque Clotilde dans un projet toqué... + Série + Drame + + 3 . 788 . + + Tout public + + + + Demain nous appartient + Les esprits s'échauffent. Luna tente le tout pour le tout. Sur les conseils de Roxane, Bart déménage l'atelier d'Adèle. Alex fait face aux avis divergents. + Série + Drame + + 6 . 1549 . + + + -10 + + + + Météo + Prévisions météorologiques en France par le service de TF1. + Services + Météo + + + Tout public + + + + Journal + Journal télévisé de TF1 qui revient sur les faits marquants et les événements essentiels qui ont fait de cette journée une journée différente de toutes les autres. + Information + Journal + + + Tout public + + + + Tirage du Loto + Les derniers résultats des LOTO®. Tous les lundi, mercredi et samedi vers 20h35, Jean-Pierre Foucault, Elsa Fayer, Christophe Beaugrand, Karine Ferri ou Iris Mittenaere présentent les résultats des tirages officiels du LOTO® (FDJ®) avec les cinq numéros gagnants ainsi que le numéro chance des derniers tirages. + Services + Loterie + + + Tout public + + + + Météo + Prévisions météorologiques en France par le service de TF1. + Services + Météo + + + Tout public + + + + C'est Canteloup + Détournements d'images d'actualité, parodies, interviews décalées, Nicolas Canteloup propose une satire des faits marquants de la journée avec, pour signature, ses imitations des personnages qui font l'événement dans le monde de la politique, du spectacle et des médias. + Divertissement + Humour + + 0 . 23 . + + Tout public + + + + Clem + Les retrouvailles + Enfin, Clem et Matthieu ont décidé de se marier ! Entourée par sa tribu, rejointe par Alyzée, sa plus chère amie d'enfance et soutenue dans l'organisation par l'inévitable Marie-France, le mariage de Clem ne peut être qu'un succès. Et si un secret de famille s'invitait à la noce ? Un secret qui convoquerait le souvenir de Caro et conduirait Clem et Matthieu jusqu'au Canada. Les révélations s'enchaînent et à Cheynouville, rien ne sera jamais plus fort que la famille... + Série + Comédie + + 12 . 0 . + + Tout public + + + + Clem + Les retrouvailles + Enfin, Clem et Matthieu ont décidé de se marier ! Entourée par sa tribu, rejointe par Alyzée, sa plus chère amie d'enfance et soutenue dans l'organisation par l'inévitable Marie-France, le mariage de Clem ne peut être qu'un succès. Et si un secret de famille s'invitait à la noce ? Un secret qui convoquerait le souvenir de Caro et conduirait Clem et Matthieu jusqu'au Canada. Les révélations s'enchaînent et à Cheynouville, rien ne sera jamais plus fort que la famille... + Série + Comédie + + 12 . 1 . + + Tout public + + + + New York Unité Spéciale + Souvenir d'un été lointain + Ashley a été élevée par un couple qui l'a adoptée à la naissance, mais elle a retrouvé et pris contact avec sa mère biologique, Michelle Young. Lors de leur première rencontre, cette dernière lui avoue qu'elle est le fruit d'un viol lors d'une soirée alors qu'elle n'avait que 15 ans. Elle a dû déménager et sa scolarité en a été fortement perturbée, ainsi que son parcours universitaire où elle a multiplié les échecs. Ashley se rend à l'unité spéciale qui doit retrouver les personnes présentes le 4 juillet 2003 à la soirée en question et Michelle reconnaît la maison où elle a eu lieu. L'enquête se concentre alors sur les deux fils de la famille, qui sont innocentés par leur ADN, et sur le meilleur ami de l'un des deux, Cole Eaton. + Série + Policier + + 22 . 12 . + + + -10 + + + + New York Unité Spéciale + Ondes de choc + Olivia Benson est en charge de l'enquête sur des allégations dirigées contre Bob Flynn, une personnalité très populaire du monde de la radio. Alors qu'elle est en pleine mission d'infiltration, Amanda Rollins reçoit des informations surprenantes qui la conduisent à un autre meurtre. Elle s'en va en mission d'infiltration... + Série + Policier + + 22 . 13 . + + + -10 + + + + New York Unité Spéciale + Un geste de trop + Une petite fille disparaît dans un parc alors qu'elle était sous la garde de sa baby-sitter. Stabler et Cragen craignent qu'elle ait été la proie d'un pédophile. Heureusement, la fillette est retrouvée vivante, mais inconsciente. Les examens ne révèlent aucune trace de sévices sexuels, mais il apparaît que l'enfant a subi un traumatisme crânien et fait une hémorragie interne. Aucun doute pour les médecins : la petite fille a subi des secousses violentes antérieures à 48 heures. Les enquêteurs interrogent la famille de la victime et la baby-sitter pour tenter de découvrir qui est à l'origine de ces blessures, qui pourraient être fatales... + Série + Policier + + 4 . 9 . + + + -10 + + + + New York Unité Spéciale + Le combat d'une vie + Lorsqu'un joueur très populaire ne se montre pas pour le match le plus attendu de l'année, Rollins et Velasco se retrouvent embarqués dans une affaire embrouillée. Par ailleurs, McGrath se confie à Benson. + Série + Policier + + 22 . 11 . + + + -10 + + + + Programmes de la nuit + Retrouvez tous vos programmes de nuit. + Programme + Programme indéterminé + + + Tout public + + + + TFou + Une émission jeunesse qui propose les meilleures séries de dessins animés du moment. + Jeunesse + Mag. Jeunesse + + + Tout public + + + + Météo + Prévisions météorologiques en France par le service de TF1. + Info-Météo + Information + + + Tout public + + + + Téléshopping + Le magazine de la consommation et des conseils d'achat, coaché par Marie-Ange Nardi et Alexandre Devoise. + Magazine + Mag. TV-Achat + + + Tout public + + + + Météo + Prévisions météorologiques en France par le service de TF1. + Info-Météo + Information + + + Tout public + + + + Familles nombreuses : la vie en XXL + Ce docu-réalité suit le quotidien exceptionnel de plusieurs familles nombreuses. Avec ces familles tout est XXL ! Partagez le quotidien de ces familles nombreuses où tout se vit en plus grand ! + Divertissement + + + Tout public + + + + Familles nombreuses : la vie en XXL + Ce docu-réalité suit le quotidien exceptionnel de plusieurs familles nombreuses. Avec ces familles tout est XXL ! Partagez le quotidien de ces familles nombreuses où tout se vit en plus grand ! + Divertissement + + + Tout public + + + + Amour, gloire et beauté + Ridge se prépare et Carter vient lui parler de Brooke. Bill va voir Brooke et lui avoue qu'il l'aime toujours, mais Carter arrive et surprend leur conversation. + Série + Série Passion + + + Tout public + + + + Les Feux de l'amour + Victoria souhaite se réconcilier avec Nicholas. Phyllis essaie de faire entendre raison à William afin qu'il raye définitivement Victor de sa vie. + Série + Série Passion + + + Tout public + + + + Petits plats en équilibre + Chaque jour, Laurent Mariotte propose des recettes simples et savoureuses pour profiter des ingrédients de saison, en donnant la part belle aux produits locaux. + Magazine + Mag. Société + + + Tout public + + + + Les douze coups de midi + Chaque jour, quatre candidats s'affrontent pour empocher les 30 000 euros de la cagnotte et décrocher l'étoile mystérieuse et ses cadeaux. Seule condition, bien répondre aux questions de culture générale posées par Jean-Luc Reichmann. + Divertissement + Jeu + + + Tout public + + + + Petits plats en équilibre + Chaque jour, Laurent Mariotte propose des recettes simples et savoureuses pour profiter des ingrédients de saison, en donnant la part belle aux produits locaux. + Magazine + Mag. Société + + + Tout public + + + + Journal + Journal télévisé de TF1 qui revient sur les faits marquants et les événements essentiels qui ont fait de cette journée une journée différente de toutes les autres. + Info-Météo + Information + + + Tout public + + + + Petits plats en équilibre + Chaque jour, Laurent Mariotte propose des recettes simples et savoureuses pour profiter des ingrédients de saison, en donnant la part belle aux produits locaux. + Magazine + Mag. Société + + + Tout public + + + + Météo + Prévisions météorologiques en France par le service de TF1. + Info-Météo + Information + + + Tout public + + + + Coup de foudre pour le roi des films de Noël + Le tournage d'un film de Noel vient s'installer dans la petite ville de Twelve Oaks. La costumière se désiste et le producteur engage au débotté Kerry Devin, une jeune créatrice de mode locale qui tient une boutique dans la ville. Kerry est réticente mais sa maman, Nancy, la pousse à accepter... + Film + Film Passion + + + Tout public + + + + Noël, mon boss & moi + Annie, une jeune avocate, forte et indépendante, est très attachée à ses parents adoptifs et au café qu'ils tiennent. Elle découvre que le bail de l'établissement est résilié par le propriétaire, Holt Entreprises, qui veut détruire l'immeuble pour construire un ensemble de bâtiments modernes... + Film + Film Passion + + + Tout public + + + + Star Academy, la quotidienne + Aucune description + Divertissement + + + Tout public + + + + Ici tout commence + Pour percer à jour les manigances de Carla, Rose se met tout le monde à dos. En douce, David se lance dans un jeu dangereux. Lors du premier cours de Stanislas, Laetitia tente de faire sensation... + Série + Série Passion + + + Tout public + + + + Demain nous appartient + Les adolescents détournent les règles, à leurs dépens. Adèle s'aventure dans un nouveau style de peinture. Gilles et Sylvain jouent les rabatteurs. + Série + Série Passion + + + + -10 + + + + Météo + Prévisions météorologiques en France par le service de TF1. + Info-Météo + Information + + + Tout public + + + + Journal + Journal télévisé de TF1 qui revient sur les faits marquants et les événements essentiels qui ont fait de cette journée une journée différente de toutes les autres. + Info-Météo + Information + + + Tout public + + + + My Million + Consultez les derniers résultats d'EuroMillions ainsi que les codes gagnants My Million. Tous les mardi et vendredi, Elsa fayer ou Karine Ferri vous présentent les résultats des tirages officiels de My Million vers 20h50 puis EuroMillions vers 21h50. Découvrez les 5 numéros gagnants et les 2 bonnes étoiles d'EuroMillions mais aussi les codes gagnants My Million des derniers tirages ! + Autre + + + Tout public + + + + Météo + Prévisions météorologiques en France par le service de TF1. + Info-Météo + Information + + + Tout public + + + + C'est Canteloup + Détournements d'images d'actualité, parodies, interviews décalées, Nicolas Canteloup propose une satire des faits marquants de la journée avec, pour signature, ses imitations des personnages qui font l'événement dans le monde de la politique, du spectacle et des médias. + Divertissement + + + Tout public + + + + Harry Potter et le prisonnier d'Azkaban + Evadé d'Azkaban après treize ans de détention, un dangereux sorcier, Sirius Black, recherche Harry Potter pour le tuer. Pendant ce temps, le jeune sorcier fait sa troisième rentrée des classes à Poudlard. Aidé de Ron et Hermione, ses fidèles amis, il va devoir affronter de difficiles épreuves... + Film + Film Action + + + + -10 + + + + La Brea + Opération sauvetage + Eve, Gavin et quelques autres tentent d'accéder à la mystérieuse tour en détournant une cargaison de roche noire. Ils pensent trouver à l'intérieur de la tour un moyen de ramener Josh et Riley. En 1988, Josh et Riley doivent agir rapidement pour empêcher Caroline de modifier la chronologie... + Série + Série Action + + 1 . 4 . + + + -10 + + + + La Brea + Le mystère Lazarus + Quand leur projet d'infiltrer la tour se passe mal, Gavin se retrouve face à son énigmatique leader, obligeant Eve, Levi, Sam et Izzy à compter sur un ancien adversaire pour l'en extirper. En 1988, Josh et Riley profitent d'un moment de répit avant que la situation ne prenne une tournure surprenante... + Série + Série Action + + 1 . 5 . + + + -10 + + + + Tirage de l'Euro Millions + Consultez les derniers résultats d'EuroMillions ainsi que les codes gagnants My Million. Tous les mardi et vendredi, Elsa fayer ou Karine Ferri vous présentent les résultats des tirages officiels de My Million vers 20h50 puis EuroMillions vers 21h50. Découvrez les 5 numéros gagnants et les 2 bonnes étoiles d'EuroMillions mais aussi les codes gagnants My Million des derniers tirages ! + Autre + + + Tout public + + + + Programmes de la nuit + Retrouvez tous vos programmes de nuit. + Autre + + + Tout public + + + + TFou + Une émission jeunesse qui propose les meilleures séries de dessins animés du moment. + Jeunesse + Mag. Jeunesse + + + Tout public + + + + Météo + Prévisions météorologiques en France par le service de TF1. + Info-Météo + Information + + + Tout public + + + + Téléshopping + Le magazine de la consommation et des conseils d'achat, coaché par Marie-Ange Nardi et Alexandre Devoise. + Magazine + Mag. TV-Achat + + + Tout public + + + + Météo + Prévisions météorologiques en France par le service de TF1. + Info-Météo + Information + + + Tout public + + + + Familles nombreuses : la vie en XXL + Ce docu-réalité suit le quotidien exceptionnel de plusieurs familles nombreuses. Avec ces familles tout est XXL ! Partagez le quotidien de ces familles nombreuses où tout se vit en plus grand ! + Divertissement + + + Tout public + + + + Familles nombreuses : la vie en XXL + Ce docu-réalité suit le quotidien exceptionnel de plusieurs familles nombreuses. Avec ces familles tout est XXL ! Partagez le quotidien de ces familles nombreuses où tout se vit en plus grand ! + Divertissement + + + Tout public + + + + Amour, gloire et beauté + Eric tente de s'assurer que Ridge est sûr de vouloir épouser Taylor. Pendant ce temps, Bill et Brooke parlent de Ridge alors que Carter les écoute en cachette. + Série + Série Passion + + + Tout public + + + + Les Feux de l'amour + Tara confie à Kyle qu'Ashland a changé depuis sa crise cardiaque et lui assure qu'il ne s'en prendra plus à Jabot. Il souhaite même reprendre les négociations. + Série + Série Passion + + + Tout public + + + + Petits plats en équilibre + Chaque jour, Laurent Mariotte propose des recettes simples et savoureuses pour profiter des ingrédients de saison, en donnant la part belle aux produits locaux. + Magazine + Mag. Société + + + Tout public + + + + Les douze coups de midi + Chaque jour, quatre candidats s'affrontent pour empocher les 30 000 euros de la cagnotte et décrocher l'étoile mystérieuse et ses cadeaux. Seule condition, bien répondre aux questions de culture générale posées par Jean-Luc Reichmann. + Divertissement + Jeu + + + Tout public + + + + Petits plats en équilibre + Chaque jour, Laurent Mariotte propose des recettes simples et savoureuses pour profiter des ingrédients de saison, en donnant la part belle aux produits locaux. + Magazine + Mag. Société + + + Tout public + + + + Journal + Journal télévisé de TF1 qui revient sur les faits marquants et les événements essentiels qui ont fait de cette journée une journée différente de toutes les autres. + Info-Météo + Information + + + Tout public + + + + Petits plats en équilibre + Chaque jour, Laurent Mariotte propose des recettes simples et savoureuses pour profiter des ingrédients de saison, en donnant la part belle aux produits locaux. + Magazine + Mag. Société + + + Tout public + + + + Météo + Prévisions météorologiques en France par le service de TF1. + Info-Météo + Information + + + Tout public + + + + Un Noël so British + Anji est personal shopper à Londres et durant la période de Noël, elle est particulièrement active. En courant les magasins, elle rencontre David, un Américain installé depuis peu dans la capitale anglaise et qui vient d'acheter une carte cadeau pour sa petite amie, Charlotte... + Film + Film Passion + + + Tout public + + + + Noël comme chien et chat + Ses parents étant partis en vacances, Hayley va rejoindre des amis pour fêter Noël avec eux. Quelle n'est pas sa surprise lorsqu'elle tombe sur Paul, également invité. Quelque temps plus tôt, Paul avait hâté la fin de la relation amoureuse que Hayley entretenait avec son précédent petit ami... + Film + Film Passion + + + Tout public + + + + Star Academy, la quotidienne + Aucune description + Divertissement + + + Tout public + + + + Ici tout commence + La rumeur sur Carla se répand jusqu'aux oreilles de Teyssier. L'après-midi surf entre Ethan et Léonard tourne au vinaigre. Coup de chaud au Double A, Laetitia est sur la sellette... + Série + Série Passion + + + Tout public + + + + Demain nous appartient + Les jours de Dorian sont comptés tandis que ses camarades luttent pour s'en sortir. L'atmosphère de travail affecte Alex. La vérité éclate. + Série + Série Passion + + + + -10 + + + + Météo + Prévisions météorologiques en France par le service de TF1. + Info-Météo + Information + + + Tout public + + + + Journal + Journal télévisé de TF1 qui revient sur les faits marquants et les événements essentiels qui ont fait de cette journée une journée différente de toutes les autres. + Info-Météo + Information + + + Tout public + + + + Tirage du Loto + Les derniers résultats des LOTO®. Tous les lundi, mercredi et samedi vers 20h35, Jean-Pierre Foucault, Elsa Fayer, Christophe Beaugrand, Karine Ferri ou Iris Mittenaere présentent les résultats des tirages officiels du LOTO® (FDJ®) avec les cinq numéros gagnants ainsi que le numéro chance des derniers tirages. + Autre + + + Tout public + + + + Météo + Prévisions météorologiques en France par le service de TF1. + Info-Météo + Information + + + Tout public + + + + C'est Canteloup + Détournements d'images d'actualité, parodies, interviews décalées, Nicolas Canteloup propose une satire des faits marquants de la journée avec, pour signature, ses imitations des personnages qui font l'événement dans le monde de la politique, du spectacle et des médias. + Divertissement + + + Tout public + + + + New Amsterdam + Le prix à payer + L'hôpital New Amsterdam, véritable institution de Manhattan, est victime d'une cyber-attaque. Le pirate réclame une énorme rançon à l'établissement. Son directeur, le docteur Max Goodwin, se retrouve face à un cruel dilemme et doit prendre une décision très difficile... + Série + Série Passion + + 3 . 7 . + + + -10 + + + + New Amsterdam + Refuges + Max prend des mesures drastiques pour aider plusieurs immigrants sans papiers après un incendie qui a détruit l'église où ils avaient trouvé refuge. Le docteur Sharpe et le docteur Malvo aident un patient dont la vie est en danger... + Série + Série Passion + + 3 . 8 . + + + -10 + + + + New Amsterdam + Cadeaux de départ + Alors que Max et le docteur Sharpe se préparent à partir pour Londres, un gros problème informatique frappe l'hôpital et les oblige à rester. Leyla confronte Bloom au sujet du secret qu'elle a caché. Iggy s'active pour aider deux parents en deuil à faire face à la réalité que leur fils est parti... + Série + Série Passion + + 3 . 9 . + + + -10 + + + + Esprits criminels + Buffet à volonté + Le CDC d'Atlanta fait appel à l'équipe après plusieurs décès suspects survenus en Virginie. Le CDC hésite entre deux scénarios, un empoisonnement ou un virus mortel, et craint surtout une attaque bioterroriste. Pendant ce temps, Gracia rend visite à Carlos, son demi-frère, pour régler un problème familial... + Série + Série Suspense + + 12 . 19 . + + + -12 + + + + Esprits criminels + Le bruit de la mort + L'unité d'élite est appelée en renfort à Taos, au Nouveau-Mexique, pour enquêter sur le meurtre de Stacy Uqalla, un médecin, tuée d'un coup de perceuse dans le crâne. Stacy est la deuxième victime en à peine huit jours. Mais tandis que l'avion mène l'équipe à Taos, Garcia leur annonce un troisième meurtre... + Série + Série Suspense + + 12 . 20 . + + + -12 + + + + Esprits criminels + Parasite + L'agent Goldman, du FBI, contacte l'équipe au sujet d'un homme qu'il poursuit depuis des années. Il s'agit d'un escroc qui dépouille des femmes après avoir gagné leur confiance. Sa dernière victime ayant été retrouvée morte, tout porte à croire qu'il est maintenant devenu un meurtrier en série... + Série + Série Suspense + + 4 . 13 . + + + -10 + + + + Programmes de la nuit + Retrouvez tous vos programmes de nuit. + Autre + + + Tout public + + + + TFou + Une émission jeunesse qui propose les meilleures séries de dessins animés du moment. + Jeunesse + Mag. Jeunesse + + + Tout public + + + + Météo + Prévisions météorologiques en France par le service de TF1. + Info-Météo + Information + + + Tout public + + + + Téléshopping + Le magazine de la consommation et des conseils d'achat, coaché par Marie-Ange Nardi et Alexandre Devoise. + Magazine + Mag. TV-Achat + + + Tout public + + + + Météo + Prévisions météorologiques en France par le service de TF1. + Info-Météo + Information + + + Tout public + + + + Familles nombreuses : la vie en XXL + Ce docu-réalité suit le quotidien exceptionnel de plusieurs familles nombreuses. Avec ces familles tout est XXL ! Partagez le quotidien de ces familles nombreuses où tout se vit en plus grand ! + Divertissement + + + Tout public + + + + Familles nombreuses : la vie en XXL + Ce docu-réalité suit le quotidien exceptionnel de plusieurs familles nombreuses. Avec ces familles tout est XXL ! Partagez le quotidien de ces familles nombreuses où tout se vit en plus grand ! + Divertissement + + + Tout public + + + + Amour, gloire et beauté + Steffy est retournée par la révélation que Douglas vient de lui faire. Lorsque Thomas arrive, Steffy lui demande de le dire à ses parents, mais il refuse. + Série + Série Passion + + + Tout public + + + + Les Feux de l'amour + Victor continue de chercher Adam, tout comme Rey qui est persuadé qu'il est coupable de son empoisonnement. Faith se retrouve à l'hôpital après s'être évanouie. + Série + Série Passion + + + Tout public + + + + Petits plats en équilibre + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Les douze coups de midi + Chaque jour, quatre candidats s'affrontent pour empocher les 30 000 euros de la cagnotte et décrocher l'étoile mystérieuse et ses cadeaux. Seule condition, bien répondre aux questions de culture générale posées par Jean-Luc Reichmann. + Divertissement + Jeu + + + Tout public + + + + Petits plats en équilibre + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Journal + Journal télévisé de TF1 qui revient sur les faits marquants et les événements essentiels qui ont fait de cette journée une journée différente de toutes les autres. + Info-Météo + Information + + + Tout public + + + + Petits plats en équilibre + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Météo + Prévisions météorologiques en France par le service de TF1. + Info-Météo + Information + + + Tout public + + + + Mon miracle de Noël + Kaitlyn et son fils, Adam, retournent pour Noël dans la famille de Brian, le père d'Adam, mort dans un accident quatre ans auparavant. Kaitlyn envisage de vendre leur maison de famille et d'accepter un poste en Europe alors qu'Adam, jusque-là renfermé sur lui-même, s'ouvre aux autres et à la vie. C'est peut-être Matthew, ami d'enfance de feu son mari, qui va la décider à rester… + Film + Film Passion + + + Tout public + + + + P.S. Joyeux Noël + Nicole est inconsolable depuis l'accident qui a ôté la vie à Henry, son fiancé, à la veille de Noël l'année précédente. Elle appréhende cette nouvelle période de fêtes, et décide de faire rénover la maison qu'elle devait habiter avec Henry pour la vendre. Sur les conseils de son ami Teddy, elle engage Joe, un charpentier... + Film + Film Passion + + + Tout public + + + + Star Academy, la quotidienne + Aucune description + Divertissement + + + Tout public + + + + Ici tout commence + Carla et Souleymane s'enfoncent dans le mensonge. A son retour de Shanghai, Jasmine reste à distance à Thibault. Touché en plein coeur, Léonard prend ses distances avec Maya et Ethan... + Série + Série Passion + + + Tout public + + + + Demain nous appartient + Contre l'avis de la police, Sébastien risque sa vie pour sauver Camille. Eloïse et Bart font des étincelles. Noor prend le personnel de l'hôpital à partie. + Série + Série Passion + + + + -10 + + + + Météo + Prévisions météorologiques en France par le service de TF1. + Info-Météo + Information + + + Tout public + + + + Journal + Journal télévisé de TF1 qui revient sur les faits marquants et les événements essentiels qui ont fait de cette journée une journée différente de toutes les autres. + Info-Météo + Information + + + Tout public + + + + Météo + Prévisions météorologiques en France par le service de TF1. + Info-Météo + Information + + + Tout public + + + + C'est Canteloup + Détournements d'images d'actualité, parodies, interviews décalées, Nicolas Canteloup propose une satire des faits marquants de la journée avec, pour signature, ses imitations des personnages qui font l'événement dans le monde de la politique, du spectacle et des médias. + Divertissement + + + Tout public + + + + Master Crimes + Louise Arbus est une professeure de psycho-criminologie à l'université, aussi brillante qu'exaspérante. Appelée par le commissaire Rugasira, elle se retrouve sur une scène de crime à la mise en scène soignée et spectaculaire. La victime porte sur elle une phrase tirée d'un de ses livres... + Série + Série Suspense + + + + -10 + + + + Master Crimes + Louise recrute quatre de ses étudiants pour l'assister : Samuel, Mia, Boris et Valentine. Avec eux, elle sonde le cerveau du tueur. Sa méthode ? Une perspicacité redoutable et une mauvaise foi sans limite qui vont mettre à rude épreuve la patience de la capitaine Delandre, une flic un peu psychorigide... + Série + Série Suspense + + + + -10 + + + + Camille & images + Nouveau concept, nouveau plateau, nouvel habillage. L'émission s'enrichit : Camille Combal est désormais entouré d'une bande de complices : humoristes et personnalités du monde du spectacle. Ensemble, ils font revivre les meilleurs moments de la semaine dans un grand divertissement. + Divertissement + + + Tout public + + + + Une famille en or + Camille Combal recevra deux familles qui vont tout tenter pour repartir avec la cagnotte ! A la clé peut-être, 100 000 euros à gagner en tentant de deviner ce que les Français ont répondu aux questions Combalesques de Camille. + Divertissement + + + Tout public + + + + Programmes de la nuit + Retrouvez tous vos programmes de nuit. + Autre + + + Tout public + + + + Petits secrets en famille + Famille Hoffman + Aucune description + Série + + 6 . 14 . + + Tout public + + + + Petits secrets en famille + Famille Keffer + Chacun pense tout savoir de sa famille, qu'elle soit petite, grande, nombreuse, traditionnelle, recomposée ou moderne. Mais les apparences sont souvent trompeuses. Les héros sont confrontés, malgré eux, aux secrets de leur entourage : conflits, amours interdites, argent, héritage, divorce, escroquerie, jalousie. Ils enquêtent, et découvrent que personne ne connaît vraiment ses proches. + Série + + 6 . 13 . + + Tout public + + + + Un festival pour Noël + Allie s'apprête à quitter Evergreen pour s'installer à Washington avec Spencer, son petit ami. Ryan et sa fille Zoé partent passer Noël en Floride. Le médecin, veuf depuis un an, veut changer les idées de sa fille. En route, ils font une pause à Evergreen. Une tempête de neige va les forcer à rester... + Film + Film Passion + + + Tout public + + + + La clé d'un Noël réussi + Lisa est spécialiste en aménagement et décoration de magasins, un métier qui l'oblige à beaucoup voyager. Pour Noël, elle se rend à Evergreen, la ville de son enfance. Elle y fait la connaissance de Kevin, lui aussi natif du lieu, et qui lui aussi voyage beaucoup pour son métier d'entrepreneur... + Film + Film Passion + + + Tout public + + + + Le calendrier secret de Noël + Katie, romancière quelque peu désabusée, se rend dans la pittoresque petite ville d'Evergreen pour les vacances. En chemin, elle croise la route de Ben. A son arrivée, elle apprend qu'elle va devoir écrire un article pour expliquer la passion de la ville pour Noël. Peu à peu, elle va se rapprocher de Ben tout en profitant des traditions festives... + Film + Film Passion + + + Tout public + + + + La proposition de Noël + Jolie redoute de rentrer chez ses parents en Louisiane pour Noël car elle ne veut pas croiser son ex, Foster. Sa meilleure amie, Naomi, demande à son frère, Jack, de se faire passer pour le fiancé de Jolie. Jack accepte : son agent lui a en effet demandé d'écrire un roman d'amour qui se passe en Louisiane... + Film + Film Passion + + + Tout public + + + + Petits plats en équilibre + Laurent Mariotte donne toutes les astuces pour préparer de bons petits plats, comme un vrai chef, avec des ingrédients frais et de saison. + Magazine + Mag. Société + + + Tout public + + + + Un Noël sous contrat + Maria est cheffe à domicile et chauffeur VTC dès qu'elle a un moment de libre. Elle rêve de créer une ligne de food trucks qui proposerait de la cuisine du monde, mais elle attend d'avoir les moyens de s'acheter son premier camion. Quelques jours avant Noël, elle conduit Julian Diaz chez ses parents qui, sur un malentendu, pensent que Maria est la petite amie de Julian... + Film + Film Passion + + + Tout public + + + + Le fabuleux destin de Noël + Une rencontre fortuite réunit Alice et Jack, deux inconnus aux vies très différentes, à un mariage. Ils s'entendent tout de suite très bien, mais Alice hésite à rencontrer quelqu'un de nouveau après l'échec d'une relation à longue distance. Sa mère, Olga, l'encourage à faire confiance au jeune homme... + Film + Film Passion + + + Tout public + + + + Un fabuleux coup de foudre pour Noël + Près de deux décennies après l'avoir quitté, un père de famille revient vivre dans sa ville d'origine où il retrouve de suite une ancienne petite amie. + Film + Film Passion + + + Tout public + + + + Un gars, une fille + \"Un gars, une fille\" nous plonge, pour notre plus grand plaisir, dans la vie quotidienne d'un couple trentenaire en balayant les clichés de la vie à deux pour les tourner en dérision. Ils sont de mauvaise foi, ils se chamaillent, ils se provoquent. Ils sont arrogants, égoïstes, cupides et jaloux. Mais avant tout, ils s'aiment… + Série + Série Rires + + + Tout public + + + + Petits plats en équilibre + Laurent Mariotte donne toutes les astuces pour préparer de bons petits plats, comme un vrai chef, avec des ingrédients frais et de saison. + Magazine + Mag. Société + + + Tout public + + + + Joséphine, ange gardien + Le secret des Templiers + Un jeune homme a été victime d'un accident de voiture qui l'a laissé dans le coma, entre la vie et la mort. En cause, une malédiction qui frappe sa famille depuis le Moyen Age. Pour le sauver et rompre le sortilège funeste qui pèse sur ces malheureux, Joséphine doit retourner dans le passé... + Série + Série Passion + + 10 . 4 . + + Tout public + + + + Joséphine, ange gardien + Chasse aux fantômes + Joséphine se retrouve en Ecosse, face à l'imposante demeure des MacAlistair. Elle découvre très vite que quelqu'un essaie de manipuler la jeune aristocrate des lieux afin de s'emparer de son héritage. Cependant, ceci n'explique pas complètement les phénomènes étranges dont Joséphine est témoin... + Série + Série Passion + + 11 . 10 . + + Tout public + + + + New York, section criminelle + Le doute + Mark Dietrich sort de prison après avoir purgé une peine de quinze ans de réclusion pour le meurtre d'une jeune femme. Laura, sa mère, se méfie. Elle vient voir l'agent Marston et lui confie ses craintes. Le lendemain de cette confession, Laura est retrouvée assassinée. La police soupçonne Mark... + Série + Série Suspense + + 1 . 14 . + + + -10 + + + + Programmes de la nuit + Retrouvez tous vos programmes de nuit. + Autre + + + Tout public + + + + Sous le soleil + Les racines du mal + Louis et Grégory se sont réconciliés et ont repris la direction de l'hôtel. Mais Boissière ne désarme pas et sème sur leur chemin toutes sortes d'embûches. + Série + Série Passion + + 10 . 22 . + + Tout public + + + + Petits secrets en famille + Famille Louvain + Famille Louvain - Notre famille, petite, grande, nombreuse, traditionnelle, recomposée, moderne… Nous pensons la connaître par cœur. Pourtant, les apparences sont souvent trompeuses... Chaque épisode relate l'histoire d'un héros confronté, malgré... + Série + + 6 . 15 . + + Tout public + + + + Petits secrets en famille + Famille Galtier + Famille Galtier - Notre famille, petite, grande, nombreuse, traditionnelle, recomposée, moderne… Nous pensons la connaître par cœur. Pourtant, les apparences sont souvent trompeuses... Chaque épisode relate l'histoire d'un héros confronté, malgré... + Série + + 6 . 16 . + + Tout public + + + + Petits secrets en famille + Famille Brissac + Famille Brissac - Notre famille, petite, grande, nombreuse, traditionnelle, recomposée, moderne… Nous pensons la connaître par cœur. Pourtant, les apparences sont souvent trompeuses... Chaque épisode relate l'histoire d'un héros confronté, malgré... + Série + + 6 . 17 . + + Tout public + + + + Petits secrets en famille + Famille Vaire + Aucune description + Série + + 6 . 18 . + + Tout public + + + + Petits secrets en famille + Famille Montand + Chacun pense tout savoir de sa famille, qu'elle soit petite, grande, nombreuse, traditionnelle, recomposée ou moderne. Mais les apparences sont souvent trompeuses. Les héros sont confrontés, malgré eux, aux secrets de leur entourage : conflits, amours interdites, argent, héritage, divorce, escroquerie, jalousie. Ils enquêtent, et découvrent que personne ne connaît vraiment ses proches. + Série + + 6 . 19 . + + Tout public + + + + Petits secrets en famille + Famille Jourdain + Chacun pense tout savoir de sa famille, qu'elle soit petite, grande, nombreuse, traditionnelle, recomposée ou moderne. Mais les apparences sont souvent trompeuses. Les héros sont confrontés, malgré eux, aux secrets de leur entourage : conflits, amours interdites, argent, héritage, divorce, escroquerie, jalousie. Ils enquêtent, et découvrent que personne ne connaît vraiment ses proches. + Série + + 6 . 20 . + + Tout public + + + + Petits secrets en famille + Famille Meylan + Chacun pense tout savoir de sa famille, qu'elle soit petite, grande, nombreuse, traditionnelle, recomposée ou moderne. Mais les apparences sont souvent trompeuses. Les héros sont confrontés, malgré eux, aux secrets de leur entourage : conflits, amours interdites, argent, héritage, divorce, escroquerie, jalousie. Ils enquêtent, et découvrent que personne ne connaît vraiment ses proches. + Série + + 6 . 21 . + + Tout public + + + + Petits secrets en famille + Famille Bilal + Chacun pense tout savoir de sa famille, qu'elle soit petite, grande, nombreuse, traditionnelle, recomposée ou moderne. Mais les apparences sont souvent trompeuses. Les héros sont confrontés, malgré eux, aux secrets de leur entourage : conflits, amours interdites, argent, héritage, divorce, escroquerie, jalousie. Ils enquêtent, et découvrent que personne ne connaît vraiment ses proches. + Série + + 6 . 22 . + + Tout public + + + + Petits secrets en famille + Famille Chenal + Chacun pense tout savoir de sa famille, qu'elle soit petite, grande, nombreuse, traditionnelle, recomposée ou moderne. Mais les apparences sont souvent trompeuses. Les héros sont confrontés, malgré eux, aux secrets de leur entourage : conflits, amours interdites, argent, héritage, divorce, escroquerie, jalousie. Ils enquêtent, et découvrent que personne ne connaît vraiment ses proches. + Série + + 6 . 23 . + + Tout public + + + + Petits secrets entre voisins + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets ou jalousies. La vie de nos voisins semble parfaitement normale. Mais les apparences sont trompeuses et derrière leurs murs, se cachent bien souvent d'incroyables histoires. + Série + + + Tout public + + + + Petits secrets entre voisins + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets ou jalousies. La vie de nos voisins semble parfaitement normale. Mais les apparences sont trompeuses et derrière leurs murs, se cachent bien souvent d'incroyables histoires. + Série + + + Tout public + + + + Petits secrets entre voisins + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets ou jalousies. La vie de nos voisins semble parfaitement normale. Mais les apparences sont trompeuses et derrière leurs murs, se cachent bien souvent d'incroyables histoires. + Série + + + Tout public + + + + Petits secrets entre voisins + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets ou jalousies. La vie de nos voisins semble parfaitement normale. Mais les apparences sont trompeuses et derrière leurs murs, se cachent bien souvent d'incroyables histoires. + Série + + + Tout public + + + + Petits secrets entre voisins + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets ou jalousies. La vie de nos voisins semble parfaitement normale. Mais les apparences sont trompeuses et derrière leurs murs, se cachent bien souvent d'incroyables histoires. + Série + + + Tout public + + + + Clap ! + Clap, votre programme consacré à l'actualité du cinéma, des séries américaines et de la fiction française. + Magazine + Mag. Culture + + + Tout public + + + + Petits plats en équilibre + Laurent Mariotte donne toutes les astuces pour préparer de bons petits plats, comme un vrai chef, avec des ingrédients frais et de saison. + Magazine + Mag. Société + + + Tout public + + + + New York, section criminelle + Sans froid ni loi + La famille Kittridge est un clan aussi puissant que riche. Jack est un homme politique respecté. Eloïse, sa soeur, ne s'entend guère avec lui, ce qui ne manque pas de créer quelques tensions. Leur père, le sénateur Randolph Kittridge, vient de mourir. Peu de temps après, Eloïse est retrouvée assassinée... + Série + Série Suspense + + 1 . 16 . + + + -10 + + + + New York, section criminelle + Le fanatique + Goren et Eames enquêtent sur la disparition de Leslie Dorman, la fille d'un policier à la retraite. Au cours de leurs recherches, il tombent sur un groupe de terroristes et découvrent que le petit ami de la disparue en fait partie. Ils comprennent rapidement que le groupe prépare une action imminente de grande envergure à New York... + Série + Série Suspense + + 1 . 7 . + + + -10 + + + + New York, section criminelle + Prime à la mort + Leo Gergis reçoit une forte somme d'argent de la part d'une compagnie d'assurances. Grace à ce pactole, il va enfin pouvoir se faire plaisir. Il espère également regagner la confiance de ses proches, en faisant preuve d'une grande générosité à leur égard. Mais peu de temps après, Leo Gergis est assassiné... + Série + Série Suspense + + 1 . 13 . + + Tout public + + + + New York, section criminelle + Mauvaise pioche + Etudiante, Penelope Chai travaille dans une salle de poker pour payer ses cours à l'université. Elle est retrouvée morte dans un parc. Goren et Eames, chargés de l'enquêtent, interrogent les proches amis de Penelope. Leurs investigations les mettent bientôt sur la piste d'un groupe d'arnaqueurs... + Série + Série Suspense + + 1 . 19 . + + Tout public + + + + Un gars, une fille + \"Un gars, une fille\" nous plonge, pour notre plus grand plaisir, dans la vie quotidienne d'un couple trentenaire en balayant les clichés de la vie à deux pour les tourner en dérision. Ils sont de mauvaise foi, ils se chamaillent, ils se provoquent. Ils sont arrogants, égoïstes, cupides et jaloux. Mais avant tout, ils s'aiment… + Série + Série Rires + + + Tout public + + + + Petits plats en équilibre + Laurent Mariotte donne toutes les astuces pour préparer de bons petits plats, comme un vrai chef, avec des ingrédients frais et de saison. + Magazine + Mag. Société + + + Tout public + + + + Baby boom + Le cri + Certaines femmes ont décidé de renoncer à la péridurale pour ressentir chaque moment de leur accouchement : dans ce cas, la douleur peut être le prix à payer. + Documentaire + Doc. Société + + 6 . 0 . + + Tout public + + + + Baby boom + L'instinct maternel + Karine Ferri propose de suivre les accouchements de plusieurs femmes qui ont choisi le Centre Hospitalier Intercommunal de Villeneuve-Saint-Georges. + Documentaire + Doc. Société + + 6 . 0 . + + Tout public + + + + Baby boom + A contretemps + Les futures mamans ont neuf mois pour se préparer à leur première rencontre avec leur bébé : et si ces derniers avaient décidé d'écrire leurs propres histoires ? + Documentaire + Doc. Société + + 6 . 0 . + + Tout public + + + + Baby boom + Villeneuve-Saint-Georges + Au Centre hospitalier intercommunal de Villeneuve-Saint-Georges, des familles vivent l'aventure de la parentalité, aidées par un personnel soignant impliqué. + Documentaire + Doc. Société + + 6 . 0 . + + Tout public + + + + Programmes de la nuit + Retrouvez tous vos programmes de nuit. + Autre + + + Tout public + + + + Programmes de la nuit + Retrouvez tous vos programmes de nuit. + Programme + Programme indéterminé + + + Tout public + + + + Amour, gloire et beauté + Bill, Katie et Donna échangent leurs opinions sur la relation entre Hope et Liam. Oliver espère qu'Amber sait ce qu'elle fait. Hope commence à se demander ce qu'attend Liam. Elle décide donc d'appeler Katie pour savoir s'il est toujours à la maison de la plage. Amber prend des mesures extrêmes pour garder Liam loin de la fête de Hope. Liam se rend à Bikini Beach mais Madison lui indique que Hope est partie avec Oliver, et qu'il va tout faire pour coucher avec elle. + Série + Drame + + 0 . 8896 . + + Tout public + + + + Petits secrets en famille + Famille Vaire + Notre famille, petite, grande, nombreuse, traditionnelle, recomposée, moderne… Nous pensons la connaître par coeur. Pourtant, les apparences sont souvent trompeuses... Chaque épisode de "Petits secrets en famille" relate l'histoire d'un héros confronté, malgré lui, à un événement de la vie, au secret de son entourage familial : conflits, amours interdites, argent, héritage, divorce, escroquerie, jalousie… Notre héros doit mener l'enquête. Il découvrira que l'on ne connaît jamais vraiment ceux qui nous sont le plus proches. + Série + Drame + + 6 . 18 . + + Tout public + + + + Petits secrets en famille + Famille Bilal + Notre famille, petite, grande, nombreuse, traditionnelle, recomposée, moderne… Nous pensons la connaître par coeur. Pourtant, les apparences sont souvent trompeuses... Chaque épisode de "Petits secrets en famille" relate l'histoire d'un héros confronté, malgré lui, à un événement de la vie, au secret de son entourage familial : conflits, amours interdites, argent, héritage, divorce, escroquerie, jalousie… Notre héros doit mener l'enquête. Il découvrira que l'on ne connaît jamais vraiment ceux qui nous sont le plus proches. + Série + Drame + + 6 . 22 . + + Tout public + + + + Petits secrets en famille + Famille Chenal + Notre famille, petite, grande, nombreuse, traditionnelle, recomposée, moderne… Nous pensons la connaître par coeur. Pourtant, les apparences sont souvent trompeuses... Chaque épisode de "Petits secrets en famille" relate l'histoire d'un héros confronté, malgré lui, à un événement de la vie, au secret de son entourage familial : conflits, amours interdites, argent, héritage, divorce, escroquerie, jalousie… Notre héros doit mener l'enquête. Il découvrira que l'on ne connaît jamais vraiment ceux qui nous sont le plus proches. + Série + Drame + + 6 . 23 . + + Tout public + + + + Petits secrets en famille + Famille Juventin + Notre famille, petite, grande, nombreuse, traditionnelle, recomposée, moderne… Nous pensons la connaître par coeur. Pourtant, les apparences sont souvent trompeuses... Chaque épisode de "Petits secrets en famille" relate l'histoire d'un héros confronté, malgré lui, à un événement de la vie, au secret de son entourage familial : conflits, amours interdites, argent, héritage, divorce, escroquerie, jalousie… Notre héros doit mener l'enquête. Il découvrira que l'on ne connaît jamais vraiment ceux qui nous sont le plus proches. + Série + Drame + + 6 . 25 . + + Tout public + + + + Petits secrets en famille + Famille De Chasy + Notre famille, petite, grande, nombreuse, traditionnelle, recomposée, moderne… Nous pensons la connaître par coeur. Pourtant, les apparences sont souvent trompeuses... Chaque épisode de "Petits secrets en famille" relate l'histoire d'un héros confronté, malgré lui, à un événement de la vie, au secret de son entourage familial : conflits, amours interdites, argent, héritage, divorce, escroquerie, jalousie… Notre héros doit mener l'enquête. Il découvrira que l'on ne connaît jamais vraiment ceux qui nous sont le plus proches. + Série + Drame + + 6 . 24 . + + Tout public + + + + Petits secrets entre voisins + Un couple en danger + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdites, secrets, jalousies... Nous les fréquentons chaque jour. Nous échangeons avec eux des politesses dans la cour d'immeuble ou par-dessus la haie. Nous imaginons leur intimité en les regardant par la fenêtre. La vie de nos voisins semble parfaitement normale... Mais les apparences sont trompeuses et derrière leurs murs, se cachent bien souvent d'incroyables histoires...Et vous, connaissez-vous vraiment vos voisins ? C'est tout l'univers de cette quotidienne. + Série + Drame + + 2 . 0 . + + Tout public + + + + Petits secrets entre voisins + L'amour en double + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies... Nous les fréquentons chaque jour. Nous échangeons avec eux des politesses dans la cour d'immeuble ou par-dessus la haie. Nous imaginons leur intimité en les regardant par la fenêtre. La vie de nos voisins semble parfaitement normale... Mais les apparences sont trompeuses et derrière leurs murs, se cachent bien souvent d'incroyables histoires... Et vous, connaissez-vous vraiment vos voisins ? C'est tout l'univers de cette quotidienne. + Série + Drame + + 2 . 1 . + + Tout public + + + + Petits secrets entre voisins + Tombé du ciel + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies... Nous les fréquentons chaque jour. Nous échangeons avec eux des politesses dans la cour d'immeuble ou par-dessus la haie. Nous imaginons leur intimité en les regardant par la fenêtre. La vie de nos voisins semble parfaitement normale... Mais les apparences sont trompeuses et derrière leurs murs, se cachent bien souvent d'incroyables histoires... Et vous, connaissez-vous vraiment vos voisins ? C'est tout l'univers de cette quotidienne. + Série + Drame + + 2 . 2 . + + Tout public + + + + Petits secrets entre voisins + Un charmant voisin + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies... Nous les fréquentons chaque jour. Nous échangeons avec eux des politesses dans la cour d'immeuble ou par-dessus la haie. Nous imaginons leur intimité en les regardant par la fenêtre. La vie de nos voisins semble parfaitement normale... Mais les apparences sont trompeuses et derrière leurs murs, se cachent bien souvent d'incroyables histoires... Et vous, connaissez-vous vraiment vos voisins ? C'est tout l'univers de cette quotidienne. + Série + Drame + + 2 . 3 . + + Tout public + + + + Petits secrets entre voisins + Un mariage précipité + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies... Nous les fréquentons chaque jour. Nous échangeons avec eux des politesses dans la cour d'immeuble ou par-dessus la haie. Nous imaginons leur intimité en les regardant par la fenêtre. La vie de nos voisins semble parfaitement normale... Mais les apparences sont trompeuses et derrière leurs murs, se cachent bien souvent d'incroyables histoires... Et vous, connaissez-vous vraiment vos voisins ? C'est tout l'univers de cette quotidienne. + Série + Drame + + 2 . 4 . + + Tout public + + + + Petits secrets entre voisins + Bien trop curieuse + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdites, secrets, jalousies... Nous les fréquentons chaque jour. Nous échangeons avec eux des politesses dans la cour d'immeuble ou par-dessus la haie. Nous imaginons leur intimité en les regardant par la fenêtre.La vie de nos voisins semble parfaitement normale... Mais les apparences sont trompeuses et derrière leurs murs, se cachent bien souvent d'incroyables histoires... Et vous, connaissez-vous vraiment vos voisins ? C'est tout l'univers de cette quotidienne. + Série + Drame + + 2 . 5 . + + Tout public + + + + Petits secrets entre voisins + Un père trop macho + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies... Nous les fréquentons chaque jour. Nous échangeons avec eux des politesses dans la cour d'immeuble ou par-dessus la haie. Nous imaginons leur intimité en les regardant par la fenêtre. La vie de nos voisins semble parfaitement normale... Mais les apparences sont trompeuses et derrière leurs murs, se cachent bien souvent d'incroyables histoires... Et vous, connaissez-vous vraiment vos voisins ? C'est tout l'univers de cette quotidienne. + Série + Drame + + 2 . 6 . + + Tout public + + + + Petits secrets entre voisins + Chambre froide + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies... Nous les fréquentons chaque jour. Nous échangeons avec eux des politesses dans la cour d'immeuble ou par-dessus la haie. Nous imaginons leur intimité en les regardant par la fenêtre. La vie de nos voisins semble parfaitement normale... Mais les apparences sont trompeuses et derrière leurs murs, se cachent bien souvent d'incroyables histoires... Et vous, connaissez-vous vraiment vos voisins ? C'est tout l'univers de cette quotidienne. + Série + Drame + + 2 . 7 . + + Tout public + + + + Petits secrets entre voisins + Deux soeurs pour un homme + Petits secrets entre voisins est une fiction quotidienne de 26 minutes.Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies... Nous les fréquentons chaque jour. Nous échangeons avec eux des politesses dans la cour d'immeuble ou par-dessus la haie. Nous imaginons leur intimité en les regardant par la fenêtre. La vie de nos voisins semble parfaitement normale... Mais les apparences sont trompeuses et derrière leurs murs, se cachent bien souvent d'incroyables histoires... Et vous, connaissez-vous vraiment vos voisins ? C'est tout l'univers de cette quotidienne. + Série + Drame + + 2 . 8 . + + Tout public + + + + Petits plats en équilibre + Du lundi 13 au vendredi 17 novembre, embarquez pour une semaine culinaire unique sur TF1. Petits Plats en Equilibre, le rendez-vous quotidien présenté par Laurent Mariotte, fête ses 15 ans d'existence et de succès d'audience. Pour marquer cet anniversaire gourmand et télévisuel, Laurent Mariotte nous prépare un menu d'automne aux petits oignons avec des recettes de saison savoureuses, originales, accessibles pour le porte-monnaie de chacun, à refaire chez soi sans modération. A la carte de cette semaine spéciale : rôti de porc au lait, tourte de champignons, spirale de pommes de terre à la Javanaise, pâtes au citron. + Art de vivre + Gastronomie + + + Tout public + + + + Drop Dead Diva + Jamais plus comme avant + Parker demande à Kim de prendre les commandes du cabinet car il a décidé de rester à Toronto. Afin de l'aider, Kim engage un nouvel associé. Celui-ci demande à Jane de travailler sur un dossier : une femme, que son fiancé a quittée deux jours avant leur mariage, veut poursuivre l'indélicat en justice. Par ailleurs, Kim et Grayson défendent une mère porteuse qui n'a plus de nouvelles de son contact alors qu'elle est sur le point d'accoucher. Stacy, qui a de plus en plus de travail, décide de prendre une journée de congés afin de se rendre à un colloque de femmes d'affaires... + Série + Comédie + + 4 . 2 . + + Tout public + + + + Drop Dead Diva + Au nom de la réussite + Jane fait tout pour éviter Owen depuis son arrivée au cabinet. Mais afin de s'assurer de leur entente, Kim leur demande de travailler ensemble sur une affaire : un jeune homme est soupçonné d'avoir triché lors de ses examens d'entrée à l'université. De leur côté, Kim et Grayson défendent un couple dont le chien est accusé d'avoir souillé la chienne de leurs voisins. Ils réclament 250 000 dollars de dédommagement. Stacy ayant un comportement étrange vis-à-vis de Jane, celle-ci demande à Paul de la suivre... + Série + Comédie + + 4 . 3 . + + Tout public + + + + Drop Dead Diva + Vies secrètes + Stacy, qui veut devenir maman, demande à Jane et Teri de l'aider à trouver le donneur idéal. Au même moment, Jane et Owen défendent un joueur de base-ball en vogue, accusé du meurtre de sa petite amie. De son côté, Kim représente une femme escroquée par son ex-mari. Grayson et Nicole, la nouvelle assistante de Kim, se rapprochent... + Série + Comédie + + 4 . 4 . + + Tout public + + + + Drop Dead Diva + Trio + Afin de trouver le donneur parfait pour son futur bébé, Stacy décide de convier ses trois ex-compagnons préférés et de leur faire passer un test. Jane défend un professeur de chimie accusé d'avoir tenté de passer la frontière avec de la drogue. Il transportait un sac pour sa petite amie, qu'il n'avait encore jamais rencontrée... + Série + Comédie + + 4 . 5 . + + Tout public + + + + Mentalist + Mauvaises graines + La mort d'un botaniste de génie amène Patrick Jane et toute l'équipe à enquêter dans le monde de la culture du cannabis à usage médical. Parmi les collègues de la victime, personne ne semble lui connaître d'ennemis. Bientôt, Jane découvre que le botaniste travaillait en parallèle pour une grande entreprise de tabac qui a choisi d'anticiper la légalisation du cannabis en commençant à développer un nouveau produit à base de cette plante. Il s'avère que, peu avant sa mort, la victime a volé un échantillon de graines d'une valeur de plusieurs millions de dollars. Patrick Jane s'emploie à retrouver les échantillons... + Série + Policier + + 4 . 9 . + + + -10 + + + + Mentalist + Sous influence + L'équipe se rend dans un centre de désintoxication en Californie après la mort suspecte d'une jeune top model. La victime, qui tentait de se sortir de sa dépendance à la drogue, entretenait une relation avec un patient de la clinique. Juste avant d'entrer dans le centre, elle fréquentait un photographe de mode peu recommandable. Alors que les indices s'accumulent, Jane cherche toujours à comprendre la raison de la mort de la jeune femme. Pendant ce temps, Lisbon enquête sur le milliardaire Tommy Volker, qu'elle soupçonne d'être le meurtrier. Mais celui-ci est difficilement accessible... + Série + Policier + + 4 . 10 . + + Tout public + + + + Mentalist + Un témoin encombrant + L'équipe est chargée d'enquêter sur le meurtre d'un géologue, dont le corps a été retrouvé deux mois après sa mort sur un chantier immobilier abandonné. Lisbon découvre rapidement une vidéo dans laquelle le défunt accuse le milliardaire Tommy Volker d'être responsable d'un massacre en Amazonie. La jeune femme tente de trouver ce qui lie ce meurtre à l'homme d'affaires, espérant pouvoir enfin mettre la main sur lui. Sur les lieux du crime, Jane trouve une petite voiture en plastique lui laissant supposer qu'un petit garçon a pu être témoin du meurtre. Il se lance alors à la recherche de l'enfant... + Série + Policier + + 4 . 11 . + + + -10 + + + + Mentalist + Si près du but + Trois cadavres sont retrouvés dans une grange abandonnée, et le CBI est chargé de l'enquête. Les médecins-légistes annoncent aux équipes que les victimes ont perdu la vie lors d'une fusillade 25 ans plus tôt. Jane compte sur les révélations des habitants installés depuis longtemps dans la ville pour trouver quelques indices. Il apprend ainsi que la grange appartenait à la communauté "Visualize", dirigée par Bret Stiles. Les équipes ne tardent pas non plus à découvrir, sur l'une des façades du bâtiment, un symbole familier : celui de John le Rouge. Jane s'imagine qu'il a peut-être enfin mis la main sur des informations de taille concernant son ennemi juré... + Série + Policier + + 4 . 12 . + + + -10 + + + + Petits plats en équilibre + Du lundi 13 au vendredi 17 novembre, embarquez pour une semaine culinaire unique sur TF1. Petits Plats en Equilibre, le rendez-vous quotidien présenté par Laurent Mariotte, fête ses 15 ans d'existence et de succès d'audience. Pour marquer cet anniversaire gourmand et télévisuel, Laurent Mariotte nous prépare un menu d'automne aux petits oignons avec des recettes de saison savoureuses, originales, accessibles pour le porte-monnaie de chacun, à refaire chez soi sans modération. A la carte de cette semaine spéciale : rôti de porc au lait, tourte de champignons, spirale de pommes de terre à la Javanaise, pâtes au citron. + Art de vivre + Gastronomie + + + Tout public + + + + Diversion + Dans l'art de l'escroquerie, Nicky est un maître. Tout dérape quand il s'éprend de la belle Jess, encore novice dans la profession. Alors qu'il lui apprend les ficelles du métier et que la jeune femme commence à tomber amoureuse de lui, l'escroc préfère couper les ponts. Pour le bien de chacun. Trois ans plus tard, Jess est devenue une redoutable femme fatale et une arnaqueuse de premier plan. Lors du Grand Prix automobile de Buenos Aires, elle menace les plans de Nicky, qui veut s'accaparer des précieux bijoux. Pour la première fois de sa carrière, le maître des escrocs a trouvé un rival, ou plutôt une rivale, à sa hauteur... + Action + Policier + + + + -10 + + + + Equalizer 2 + Après une mission d'infiltration très musclée en Turquie, Robert McCall est de retour à Boston. L'ancien espion reprend une vie sans histoire de chauffeur pour particuliers. Pourtant, tout bascule lorsqu'il apprend que sa meilleure amie Susan Plummer a été assassinée alors qu'elle menait une enquête à Bruxelles. Pas convaincu par les résultats de l'enquête officielle, il décide de retrouver les responsables de la mort de son amie. Pour cela, il se rend sur les lieux du crime où il découvre une vérité impensable, puisqu'il comprend que les auteurs de cet odieux crime sont en fait des tueurs professionnels... + Film + Action + + + + -12 + + + + Programmes de la nuit + Retrouvez tous vos programmes de nuit. + Programme + Programme indéterminé + + + Tout public + + + + Amour, gloire et beauté + Ridge se prépare et Carter vient lui parler de Brooke. Bill va voir Brooke et lui avoue qu'il l'aime toujours, mais Carter arrive et surprend leur conversation. + Série + Série Passion + + + Tout public + + + + Petits secrets en famille + Famille Montand + Famille Montand - Notre famille, petite, grande, nombreuse, traditionnelle, recomposée, moderne… Nous pensons la connaître par cœur. Pourtant, les apparences sont souvent trompeuses... Chaque épisode relate l'histoire d'un héros confronté, malgré... + Série + + 6 . 19 . + + Tout public + + + + Petits secrets en famille + Famille Douet + Aucune description + Série + + 6 . 27 . + + Tout public + + + + Petits secrets en famille + Famille Rolz + Famille Rolz - Notre famille, petite, grande, nombreuse, traditionnelle, recomposée, moderne… Nous pensons la connaître par cœur. Pourtant, les apparences sont souvent trompeuses... Chaque épisode relate l'histoire d'un héros confronté, malgré lui,... + Série + + 6 . 26 . + + Tout public + + + + Petits secrets en famille + Famille Meylan + Chacun pense tout savoir de sa famille, qu'elle soit petite, grande, nombreuse, traditionnelle, recomposée ou moderne. Mais les apparences sont souvent trompeuses. Les héros sont confrontés, malgré eux, aux secrets de leur entourage : conflits, amours interdites, argent, héritage, divorce, escroquerie, jalousie. Ils enquêtent, et découvrent que personne ne connaît vraiment ses proches. + Série + + 6 . 21 . + + Tout public + + + + Petits secrets en famille + Famille Galtier + Famille Galtier - Notre famille, petite, grande, nombreuse, traditionnelle, recomposée, moderne… Nous pensons la connaître par cœur. Pourtant, les apparences sont souvent trompeuses... Chaque épisode relate l'histoire d'un héros confronté, malgré... + Série + + 6 . 16 . + + Tout public + + + + Petits secrets entre voisins + Chambre froide + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies... Nous les fréquentons chaque jour. + Série + + 2 . 7 . + + Tout public + + + + Petits secrets entre voisins + Vacances au camping + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies... Nous les fréquentons chaque jour + Série + + 2 . 9 . + + Tout public + + + + Petits secrets entre voisins + Pervers narcissique + Petits secrets entre voisins est une fiction quotidienne de 26 minutes.Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies + Série + + 2 . 10 . + + Tout public + + + + Petits secrets entre voisins + Amours virtuelles + Petits secrets entre voisins est une fiction quotidienne de 26 minutes.Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies + Série + + 2 . 11 . + + Tout public + + + + Petits secrets entre voisins + L'idole des femmes + Petits secrets entre voisins est une fiction quotidienne de 26 minutes.Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies + Série + + 2 . 12 . + + Tout public + + + + Petits secrets entre voisins + L'allumeuse + Petits secrets entre voisins est une fiction quotidienne de 26 minutes.Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies + Série + + 2 . 5 . + + Tout public + + + + Petits secrets entre voisins + Le port de la discorde + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, rivalités, jalousies... Et vous, connaissez-vous vraiment vos voisins ? + Série + + 2 . 14 . + + Tout public + + + + Petits secrets entre voisins + Don Juan + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies + Série + + 2 . 15 . + + Tout public + + + + Petits secrets entre voisins + La guerre des roses + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies + Série + + 2 . 16 . + + Tout public + + + + Petits plats en équilibre + Chaque jour, Laurent Mariotte propose des recettes simples et savoureuses pour profiter des ingrédients de saison, en donnant la part belle aux produits locaux. + Magazine + Mag. Société + + + Tout public + + + + Drop Dead Diva + Au nom de la réussite + Jane fait tout pour éviter Owen depuis son arrivée au cabinet. Mais afin de s'assurer de leur entente, Kim leur demande de travailler ensemble. De leur côté, Kim et Grayson défendent un couple dont le chien est accusé d'avoir souillé la chienne de leurs voisins. Ils réclament 250 000 dollairs... + Série + Série Rires + + 4 . 3 . + + Tout public + + + + Drop Dead Diva + Vies secrètes + Stacy, qui veut devenir maman, demande à Jane et Teri de l'aider à trouver le donneur idéal. Au même moment, Jane et Owen défendent un joueur de base-ball en vogue, accusé du meurtre de sa petite amie. De son côté, Kim représente une femme escroquée par son ex-mari. Grayson et Nicole, la nouvelle assistante de Kim, se rapprochent... + Série + Série Rires + + 4 . 4 . + + Tout public + + + + Drop Dead Diva + Trio + Afin de trouver le donneur parfait pour son futur bébé, Stacy décide de convier ses trois ex-compagnons préférés et de leur faire passer un test. Jane défend un professeur de chimie accusé d'avoir tenté de passer la frontière avec de la drogue. Il transportait un sac pour sa petite amie, qu'il n'avait encore jamais rencontrée... + Série + Série Rires + + 4 . 5 . + + Tout public + + + + Drop Dead Diva + Reines de beauté + Larry, le père de Kim, est de retour. Désormais, il s'occupe d'entraîner une équipe de poussins, les "bulldogs", mais de façon officieuse car il n'est ni un parent ni un responsable légal d'un des enfants. Pour pouvoir continuer à travailler avec les jeunes sportifs, il demande de l'aide à sa fille... + Série + Série Rires + + 4 . 6 . + + Tout public + + + + Mentalist + Sous influence + L'équipe se rend dans un centre de désintoxication en Californie après la mort suspecte d'une jeune top model. La victime entretenait une relation avec un patient de la clinique. Lisbon enquête sur le milliardaire Tommy Volker, qu'elle soupçonne d'être le meurtrier... + Série + Série Suspense + + 4 . 10 . + + Tout public + + + + Mentalist + Un témoin encombrant + L'équipe est chargée d'enquêter sur le meurtre d'un géologue, dont le corps a été retrouvé deux mois après sa mort sur un chantier immobilier abandonné. Lisbon découvre rapidement une vidéo dans laquelle le défunt accuse le milliardaire Tommy Volker d'être responsable d'un massacre en Amazonie... + Série + Série Suspense + + 4 . 11 . + + + -10 + + + + Mentalist + Si près du but + Trois cadavres sont retrouvés dans une grange abandonnée, tués lors d'une fusillade, 25 ans plus tôt. Jane apprend que la grange appartenait à la communauté "Visualize", dirigée par Bret Stiles. Il découvre aussi, sur l'une des façades du bâtiment, un symbole familier : celui de John le Rouge... + Série + Série Suspense + + 4 . 12 . + + + -10 + + + + Mentalist + Le papillon de nuit + L'équipe du CBI mène des investigations sur la mort de Linda Parfrey, une étudiante douée du musée d'histoire naturelle de Sacramento. Son cadavre a été retrouvé en partie mangé par des vers. Les enquêteurs suspectent plusieurs personnes dont Gregory Lewis, un collègue, et Megan Parker, une amie de cours... + Série + Série Suspense + + 4 . 13 . + + + -10 + + + + Petits plats en équilibre + Chaque jour, Laurent Mariotte propose des recettes simples et savoureuses pour profiter des ingrédients de saison, en donnant la part belle aux produits locaux. + Magazine + Mag. Société + + + Tout public + + + + Camping Paradis + Une nouvelle vie + L'équipe est sous le choc : victime d'un accident de voiture, Jérôme se déplace en fauteuil roulant. De son côté, Caroline accueille sa fille, Emilie. En plein chagrin d'amour, la jeune femme appelle à la rescousse son confident, Clément. Mais elle ignore qu'il vit avec Caroline une folle histoire d'amour... + Série + Série Rires + + 8 . 2 . + + Tout public + + + + Camping Paradis + Une nouvelle vie + L'équipe est sous le choc : victime d'un accident de voiture, Jérôme se déplace en fauteuil roulant. De son côté, Caroline accueille sa fille, Emilie. En plein chagrin d'amour, la jeune femme appelle à la rescousse son confident, Clément. Mais elle ignore qu'il vit avec Caroline une folle histoire d'amour... + Série + Série Rires + + 8 . 2 . + + Tout public + + + + Camping Paradis + Réunions de familles + Benoît et Julien, deux frères, se retrouvent au camping pour les 10 ans de Léo, le fils de Benoît. Lorsqu'ils étaient plus jeunes, ils étaient très proches, mais ils ne se sont pas revus depuis des années. Benoît est très tendu et bientôt, il se montre jaloux de la relation qui se noue entre Julien et Léo... + Série + Série Rires + + 9 . 0 . + + Tout public + + + + Camping Paradis + Réunions de familles + Benoît et Julien, deux frères, se retrouvent au camping pour les 10 ans de Léo, le fils de Benoît. Lorsqu'ils étaient plus jeunes, ils étaient très proches, mais ils ne se sont pas revus depuis des années. Benoît est très tendu et bientôt, il se montre jaloux de la relation qui se noue entre Julien et Léo... + Série + Série Rires + + 9 . 0 . + + Tout public + + + + Programmes de la nuit + Retrouvez tous vos programmes de nuit. + Autre + + + Tout public + + + + Amour, gloire et beauté + Eric tente de s'assurer que Ridge est sûr de vouloir épouser Taylor. Pendant ce temps, Bill et Brooke parlent de Ridge alors que Carter les écoute en cachette. + Série + Série Passion + + + Tout public + + + + Petits secrets en famille + Famille Jourdain + Chacun pense tout savoir de sa famille, qu'elle soit petite, grande, nombreuse, traditionnelle, recomposée ou moderne. Mais les apparences sont souvent trompeuses. Les héros sont confrontés, malgré eux, aux secrets de leur entourage : conflits, amours interdites, argent, héritage, divorce, escroquerie, jalousie. Ils enquêtent, et découvrent que personne ne connaît vraiment ses proches. + Série + + 6 . 20 . + + Tout public + + + + Petits secrets en famille + Famille Chenal + Chacun pense tout savoir de sa famille, qu'elle soit petite, grande, nombreuse, traditionnelle, recomposée ou moderne. Mais les apparences sont souvent trompeuses. Les héros sont confrontés, malgré eux, aux secrets de leur entourage : conflits, amours interdites, argent, héritage, divorce, escroquerie, jalousie. Ils enquêtent, et découvrent que personne ne connaît vraiment ses proches. + Série + + 6 . 23 . + + Tout public + + + + Petits secrets en famille + Famille Juventin + Famille Bichet - Notre famille, petite, grande, nombreuse, traditionnelle, recomposée, moderne… Nous pensons la connaître par cœur. Pourtant, les apparences sont souvent trompeuses... Chaque épisode relate l'histoire d'un héros confronté, malgré... + Série + + 6 . 25 . + + Tout public + + + + Petits secrets en famille + Famille Appard + Famille Appard - Notre famille, petite, grande, nombreuse, traditionnelle, recomposée, moderne… Nous pensons la connaître par cœur. Pourtant, les apparences sont souvent trompeuses... Chaque épisode relate l'histoire d'un héros confronté, malgré... + Série + + 6 . 29 . + + Tout public + + + + Petits secrets en famille + Famille Brissac + Famille Brissac - Notre famille, petite, grande, nombreuse, traditionnelle, recomposée, moderne… Nous pensons la connaître par cœur. Pourtant, les apparences sont souvent trompeuses... Chaque épisode relate l'histoire d'un héros confronté, malgré... + Série + + 6 . 17 . + + Tout public + + + + Petits secrets entre voisins + Deux soeurs pour un homme + Petits secrets entre voisins est une fiction quotidienne de 26 minutes.Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies + Série + + 2 . 8 . + + Tout public + + + + Petits secrets entre voisins + Don Juan + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies + Série + + 2 . 15 . + + Tout public + + + + Petits secrets entre voisins + La guerre des roses + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies + Série + + 2 . 16 . + + Tout public + + + + Petits secrets entre voisins + Lettres à Elise + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies + Série + + 2 . 17 . + + Tout public + + + + Petits secrets entre voisins + Les photos dénudées + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies + Série + + 2 . 18 . + + Tout public + + + + Petits secrets entre voisins + Un jardinier inquiétant + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies... Nous les fréquentons chaque jour + Série + + 2 . 19 . + + Tout public + + + + Petits secrets entre voisins + Une copropriété convoitée + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies... Nous les fréquentons chaque jour + Série + + 2 . 20 . + + Tout public + + + + Petits secrets entre voisins + Graine de star + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies... Nous les fréquentons chaque jour + Série + + 2 . 21 . + + Tout public + + + + Petits secrets entre voisins + Une belle-soeur envahissante + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies... Nous les fréquentons chaque jour + Série + + 2 . 22 . + + Tout public + + + + Petits plats en équilibre + Laurent Mariotte donne toutes les astuces pour préparer de bons petits plats, comme un vrai chef, avec des ingrédients frais et de saison. + Magazine + Mag. Société + + + Tout public + + + + Drop Dead Diva + Vies secrètes + Stacy, qui veut devenir maman, demande à Jane et Teri de l'aider à trouver le donneur idéal. Au même moment, Jane et Owen défendent un joueur de base-ball en vogue, accusé du meurtre de sa petite amie. De son côté, Kim représente une femme escroquée par son ex-mari. Grayson et Nicole, la nouvelle assistante de Kim, se rapprochent... + Série + Série Rires + + 4 . 4 . + + Tout public + + + + Drop Dead Diva + Trio + Afin de trouver le donneur parfait pour son futur bébé, Stacy décide de convier ses trois ex-compagnons préférés et de leur faire passer un test. Jane défend un professeur de chimie accusé d'avoir tenté de passer la frontière avec de la drogue. Il transportait un sac pour sa petite amie, qu'il n'avait encore jamais rencontrée... + Série + Série Rires + + 4 . 5 . + + Tout public + + + + Drop Dead Diva + Reines de beauté + Larry, le père de Kim, est de retour. Désormais, il s'occupe d'entraîner une équipe de poussins, les "bulldogs", mais de façon officieuse car il n'est ni un parent ni un responsable légal d'un des enfants. Pour pouvoir continuer à travailler avec les jeunes sportifs, il demande de l'aide à sa fille... + Série + Série Rires + + 4 . 6 . + + Tout public + + + + Drop Dead Diva + Mariage à la mexicaine + Après une longue soirée d'enterrement de vie de jeune fille, Jane se retrouve à la frontière mexicaine. Le futur marié, fiancé à une de ses amies, vient d'y être interpellé pour trouble à l'ordre public, fausse déclaration de citoyenneté et sollicitation d'une prostituée. Jane fait son possible pour ramener le futur marié avant la noce... + Série + Série Rires + + 4 . 7 . + + Tout public + + + + Mentalist + Un témoin encombrant + L'équipe est chargée d'enquêter sur le meurtre d'un géologue, dont le corps a été retrouvé deux mois après sa mort sur un chantier immobilier abandonné. Lisbon découvre rapidement une vidéo dans laquelle le défunt accuse le milliardaire Tommy Volker d'être responsable d'un massacre en Amazonie... + Série + Série Suspense + + 4 . 11 . + + + -10 + + + + Mentalist + Si près du but + Trois cadavres sont retrouvés dans une grange abandonnée, tués lors d'une fusillade, 25 ans plus tôt. Jane apprend que la grange appartenait à la communauté "Visualize", dirigée par Bret Stiles. Il découvre aussi, sur l'une des façades du bâtiment, un symbole familier : celui de John le Rouge... + Série + Série Suspense + + 4 . 12 . + + + -10 + + + + Mentalist + Le papillon de nuit + L'équipe du CBI mène des investigations sur la mort de Linda Parfrey, une étudiante douée du musée d'histoire naturelle de Sacramento. Son cadavre a été retrouvé en partie mangé par des vers. Les enquêteurs suspectent plusieurs personnes dont Gregory Lewis, un collègue, et Megan Parker, une amie de cours... + Série + Série Suspense + + 4 . 13 . + + + -10 + + + + Mentalist + Le revers de la médaille + Le CBI enquête sur la mort d'une vieille héritière. Sa fortune, connue de tous, attisait les jalousies. Celle de son neveu, qui l'avait traînée au tribunal, ou de son médecin, qui lui prescrivait plus d'antalgiques que nécessaire. Alors que le mystère semble se dissiper, Jane, lui, doute toujours... + Série + Série Suspense + + 4 . 14 . + + Tout public + + + + Petits plats en équilibre + Laurent Mariotte donne toutes les astuces pour préparer de bons petits plats, comme un vrai chef, avec des ingrédients frais et de saison. + Magazine + Mag. Société + + + Tout public + + + + New York, section criminelle + Pulsions animales + Buzz Davis effectue sa ronde habituelle lorsqu'il est agressé par un inconnu. Le policier, surpris, ne peut pas se défendre. Le tueur lui enfonce un pic à glace dans le cou, le tuant net. Buzz enquêtait sur un vétérinaire et un médecin. Les deux hommes auraient-ils commandité cet assassinat ?... + Série + Série Suspense + + 1 . 21 . + + + -10 + + + + New York, section criminelle + Vengeance à retardement + L'infirmière Connie Matson prépare ce dont elle a besoin pour soigner un vieil homme malade. Peu de temps après, elle est assassinée dans son appartement. Les inspecteurs Goren et Eames sont aussitôt appelés sur les lieux du meurtre. L'enquête s'annonce d'emblée très délicate. Car Goren se retrouve vite en introspection, penché sur son propre passé, tandis qu'un vieil ennemi refait surface... + Série + Série Suspense + + 1 . 22 . + + + -10 + + + + New York, section criminelle + La mort en héritage + Nan Turner est la propriétaire de l'un des plus luxueux hôtels de la ville. Elle a bénéficié d'un prêt qui lui a été accordé par le courtier Ken Rafield, le fiancé de sa fille Julie. Les relations de Nan et Julie ne sont pas toujours au beau fixe. Un soir, Nan est retrouvée morte dans sa baignoire... + Série + Série Suspense + + 1 . 11 . + + + -10 + + + + New York, section criminelle + Sans froid ni loi + La famille Kittridge est un clan aussi puissant que riche. Jack est un homme politique respecté. Eloïse, sa soeur, ne s'entend guère avec lui, ce qui ne manque pas de créer quelques tensions. Leur père, le sénateur Randolph Kittridge, vient de mourir. Peu de temps après, Eloïse est retrouvée assassinée... + Série + Série Suspense + + 1 . 16 . + + + -10 + + + + New York, section criminelle + Un père encombrant + Madame Batchelder, une femme âgée, trouve la mort dans un incendie, apparemment déclenché par sa couverture électrique. Kate Finnoff, sa jeune voisine, propose spontanément de prendre soin de ses chats. Peu de temps après, le corps sans vie de Kate est retrouvé dans l'escalier de son immeuble... + Série + Série Suspense + + 1 . 18 . + + + -10 + + + + Programmes de la nuit + Retrouvez tous vos programmes de nuit. + Autre + + + Tout public + + + + Amour, gloire et beauté + Steffy est retournée par la révélation que Douglas vient de lui faire. Lorsque Thomas arrive, Steffy lui demande de le dire à ses parents, mais il refuse. + Série + Série Passion + + + Tout public + + + + Petits secrets en famille + Famille Galtier + Famille Galtier - Notre famille, petite, grande, nombreuse, traditionnelle, recomposée, moderne… Nous pensons la connaître par cœur. Pourtant, les apparences sont souvent trompeuses... Chaque épisode relate l'histoire d'un héros confronté, malgré... + Série + + 6 . 16 . + + Tout public + + + + Petits secrets en famille + Famille Meylan + Aucune description + Série + + 6 . 21 . + + Tout public + + + + Petits secrets en famille + Famille Bilal + Aucune description + Série + + 6 . 22 . + + Tout public + + + + Petits secrets en famille + Famille Marquant + Aucune description + Série + + 6 . 31 . + + Tout public + + + + Petits secrets en famille + Famille Vaire + Aucune description + Série + + 6 . 18 . + + Tout public + + + + Petits secrets entre voisins + L'idole des femmes + Petits secrets entre voisins est une fiction quotidienne de 26 minutes.Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies + Série + + 2 . 12 . + + Tout public + + + + Petits secrets entre voisins + Le port de la discorde + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, rivalités, jalousies... Et vous, connaissez-vous vraiment vos voisins ? + Série + + 2 . 14 . + + Tout public + + + + Petits secrets entre voisins + Un jardinier inquiétant + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies... Nous les fréquentons chaque jour + Série + + 2 . 19 . + + Tout public + + + + Petits secrets entre voisins + Graine de star + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies... Nous les fréquentons chaque jour + Série + + 2 . 21 . + + Tout public + + + + Petits secrets entre voisins + Dites-le avec des fleurs + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdites, secrets, jalousies... Nous les fréquentons chaque jour + Série + + 2 . 23 . + + Tout public + + + + Petits secrets entre voisins + Une campagne agitée + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies... Nous les fréquentons chaque jour + Série + + 2 . 25 . + + Tout public + + + + Petits secrets entre voisins + Roman noir + Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies... Nous les fréquentons chaque jour + Série + + 2 . 27 . + + Tout public + + + + Petits secrets entre voisins + Un célibataire trop endurci + Petits secrets entre voisins est une fiction quotidienne de 26 minutes.Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies + Série + + 2 . 29 . + + Tout public + + + + Petits secrets entre voisins + Boulangerie à la marseillaise + Petits secrets entre voisins est une fiction quotidienne de 26 minutes.Chaque épisode raconte une incroyable histoire de voisins : conflits de voisinage, amours interdits, secrets, jalousies + Série + + 2 . 31 . + + Tout public + + + + Petits plats en équilibre + Laurent Mariotte donne toutes les astuces pour préparer de bons petits plats, comme un vrai chef, avec des ingrédients frais et de saison. + Magazine + Mag. Société + + + Tout public + + + + Drop Dead Diva + Trio + Afin de trouver le donneur parfait pour son futur bébé, Stacy décide de convier ses trois ex-compagnons préférés et de leur faire passer un test. Jane défend un professeur de chimie accusé d'avoir tenté de passer la frontière avec de la drogue. Il transportait un sac pour sa petite amie, qu'il n'avait encore jamais rencontrée... + Série + Série Rires + + 4 . 5 . + + Tout public + + + + Drop Dead Diva + Reines de beauté + Larry, le père de Kim, est de retour. Désormais, il s'occupe d'entraîner une équipe de poussins, les "bulldogs", mais de façon officieuse car il n'est ni un parent ni un responsable légal d'un des enfants. Pour pouvoir continuer à travailler avec les jeunes sportifs, il demande de l'aide à sa fille... + Série + Série Rires + + 4 . 6 . + + Tout public + + + + Drop Dead Diva + Mariage à la mexicaine + Après une longue soirée d'enterrement de vie de jeune fille, Jane se retrouve à la frontière mexicaine. Le futur marié, fiancé à une de ses amies, vient d'y être interpellé pour trouble à l'ordre public, fausse déclaration de citoyenneté et sollicitation d'une prostituée. Jane fait son possible pour ramener le futur marié avant la noce... + Série + Série Rires + + 4 . 7 . + + Tout public + + + + Drop Dead Diva + In terrorem + Kim étant en congé maternité, Owen est désormais seul aux commandes d'un cabinet sur le point d'être vendu. Jane défend Violet Harwood, qui tient un refuge pour femmes battues et dont les voisins demandent la fermeture pour nuisances. De son côté, Grayson représente un homme qui prétend être un vampire... + Série + Série Rires + + 4 . 8 . + + Tout public + + + + Mentalist + Le papillon de nuit + L'équipe du CBI mène des investigations sur la mort de Linda Parfrey, une étudiante douée du musée d'histoire naturelle de Sacramento. Son cadavre a été retrouvé en partie mangé par des vers. Les enquêteurs suspectent plusieurs personnes dont Gregory Lewis, un collègue, et Megan Parker, une amie de cours... + Série + Série Suspense + + 4 . 13 . + + + -10 + + + + Mentalist + Le revers de la médaille + Le CBI enquête sur la mort d'une vieille héritière. Sa fortune, connue de tous, attisait les jalousies. Celle de son neveu, qui l'avait traînée au tribunal, ou de son médecin, qui lui prescrivait plus d'antalgiques que nécessaire. Alors que le mystère semble se dissiper, Jane, lui, doute toujours... + Série + Série Suspense + + 4 . 14 . + + Tout public + + + + Mentalist + Une promesse + Quand Lorelei se met à enquêter sur le rôle de John Le Rouge dans la mort de sa soeur, Jane se décide enfin à avouer à Lisbon qu'il l'a aidée à sortir de prison. Ensemble, ils doivent enquêter sur l'assassinat de la responsable d'un abri pour femmes battues. Jane s'interroge sur les activités de la victime... + Série + Série Suspense + + 4 . 15 . + + + -10 + + + + Mentalist + Pour l'honneur + L'équipe du CBI enquête sur le meurtre d'une femme, infirmière et caporal dans l'armée, dont le corps a été retrouvé près d'une base militaire. Lisbon et ses collègues découvrent que plusieurs soldats soupçonnaient la victime d'avoir anonymement porté plainte pour harcèlement sexuel contre un des leurs... + Série + Série Suspense + + 4 . 16 . + + Tout public + + + + Petits plats en équilibre + Laurent Mariotte donne toutes les astuces pour préparer de bons petits plats, comme un vrai chef, avec des ingrédients frais et de saison. + Magazine + Mag. Société + + + Tout public + + + + New York, section criminelle + Un tueur assassiné + Une comptable disparaît sans laisser de traces. Goren et Eames sont chargés de l'enquête. Ils apprennent bien vite que le frère de la disparue a été assassiné deux ans plus tôt. Leurs soupçons se portent sur un homme de la mafia incarcéré pour divers délits. La découverte d'un autre cadavre change la donne... + Série + Série Suspense + + 2 . 3 . + + Tout public + + + + New York, section criminelle + Plagiat + Les lecteurs adorent les articles de Carl Hines, un reporter renommé d'un journal new-yorkais. Mais ce journaliste à la carrière prometteuse plagie, en fait, tous ses papiers. Lorsque Katya, sa petite amie, est retrouvée assassinée chez lui, Goren et Bishop enquêtent. Les suspects sont nombreux... + Série + Série Suspense + + 2 . 4 . + + + -10 + + + + New York, section criminelle + Mauvaise carte + Milt Winters sort de prison et savoure les retrouvailles avec son épouse, Pamela. Le couple croit au bonheur retrouvé. Une embellie de courte durée : la police découvre le corps sans vie de Pamela. Anéanti, Milt se confie à son avocat. Peu de temps après, l'homme de loi est abattu par des inconnus... + Série + Série Suspense + + 1 . 15 . + + + -10 + + + + New York, section criminelle + Pulsions animales + Buzz Davis effectue sa ronde habituelle lorsqu'il est agressé par un inconnu. Le policier, surpris, ne peut pas se défendre. Le tueur lui enfonce un pic à glace dans le cou, le tuant net. Buzz enquêtait sur un vétérinaire et un médecin. Les deux hommes auraient-ils commandité cet assassinat ?... + Série + Série Suspense + + 1 . 21 . + + + -10 + + + + New York, section criminelle + Vengeance à retardement + L'infirmière Connie Matson prépare ce dont elle a besoin pour soigner un vieil homme malade. Peu de temps après, elle est assassinée dans son appartement. Les inspecteurs Goren et Eames sont aussitôt appelés sur les lieux du meurtre. L'enquête s'annonce d'emblée très délicate. Car Goren se retrouve vite en introspection, penché sur son propre passé, tandis qu'un vieil ennemi refait surface... + Série + Série Suspense + + 1 . 22 . + + + -10 + + + + Programmes de la nuit + Retrouvez tous vos programmes de nuit. + Autre + + + Tout public + + + + Nos chers voisins + Entre les problèmes de famille ou d'éducation, de justice, de religion et de politique : la vie des voisins rebondit sur les sujets de société de manière drôle, cocasse ou touchante à travers une série de saynètes. Ils se croisent sur le palier ou devant l'ascenseur et échangent leurs points de vue... + Série + Série Rires + + + Tout public + + + + Embarquement immédiat pour Noël + Quittée par son petit ami à l'approche de Noël, Stéphanie retourne passer les fêtes en famille. Une tempête de neige force son avion à atterrir dans un coin perdu du Montana. Stéphanie va devoir partager une chambre dans un romantique Bed & Breakfast avec un parfait inconnu, le charmant Michael. Mais le courant ne passe pas immédiatement... + Film + Film Passion + + + Tout public + + + + Monacoscope + Dix minutes pour faire, en images, le tour d'horizon des événements marquants de la semaine en Principauté. De l'inauguration d'un nouveau yacht au vernissage de la dernière exposition du Grimaldi Forum, rien n'échappe au Monacoscope. + Magazine + Mag. Société + + + Tout public + + + + Noël au château + Pianiste célèbre, Margot passe quelques jours dans la région d'où elle est originaire, souhaitant profiter des fêtes de fin d'année auprès de sa famille. Hasard ou coïncidence, son ancien compagnon, Jackson, se trouve au même endroit au même moment. Il doit organiser un concert au château de la ville... + Film + Film Passion + + + Tout public + + + + Tous en scène à Noël + Sean Grant, un célèbre chanteur de country, a perdu sa femme Allison, il y a trois ans. Pour aider sa fille Katie, passionnée de musique classique, à préparer le récital de Noël de son école, il décide d'engager une professeure de violon à domicile. Il ne tarde pas à s'éprendre d'elle... + Film + Film Passion + + + Tout public + + + + Quotidien + Une grande session d'information qui mêle humour et impertinence. Politique française et internationale, médias, culture, sport : tous les sujets sont passés en revue. A chaque émission, l'équipe a carte blanche pour traiter l'actualité à sa façon. + Divertissement + + + Tout public + + + + Cold Case : affaires classées + Comme deux sœurs + Lilly se rend dans un motel où elle espère retrouver sa soeur. Elle est assommée par un individu qui lui prend son arme de service. A son réveil, elle demande l'aide de Scotty. De son côté, Jeffries peut rouvrir une enquête sur le meurtre non résolu d'une jeune fille, une affaire dont il avait été chargé... + Série + Série Suspense + + 6 . 21 . + + Tout public + + + + Cold Case : affaires classées + Un rayon de soleil + 1964. Une adolescente, placée par ses parents dans un centre pour mères célibataires, est assassinée le lendemain de son accouchement. Trente ans plus tard, Lilly rouvre le dossier à la demande de la fille de la victime, qui vient d'apprendre qu'elle a été adoptée et que sa mère biologique a été tuée... + Série + Série Suspense + + 3 . 15 . + + + -10 + + + + Cold Case : affaires classées + Entre chacals + Un homme, qui sort de prison après y avoir passé trente ans, contacte l'équipe de Lily Rush. Il vient de retrouver une photo de sa fille, assassinée en 1976 à l'âge de 17 ans, prouvant ses liens avec une bande de motards. Les policiers vont tenter de reconstituer les dernières heures de la jeune femme... + Série + Série Suspense + + 5 . 15 . + + + -10 + + + + Cold Case : affaires classées + Un officier à terre + En ramenant Nick chez lui, Will fait une halte dans une épicerie pour acheter du lait. Nick, qui attend dans la voiture, entend des coups de feu. Il se précipite, découvre le propriétaire du magasin mort et Will grièvement blessé. Pops, le gérant, avait aidé Will a revenir dans le droit chemin... + Série + Série Suspense + + 5 . 16 . + + + -10 + + + + Cold Case : affaires classées + Confusion mentale + Des éléments nouveaux poussent Lilly Rush et son équipe à enquêter sur la mort d'une psychiatre, survenue en 2004 lors d'un incendie, et dont le responsable semble être un de ses anciens patients, Pete Scanell. Rush découvre également que la thérapeute s'était attirée l'hostilité d'un confrère... + Série + Série Suspense + + 5 . 17 . + + Tout public + + + + Burger Quiz + Dans une déco de fast-food, deux équipes, Mayo et Ketchup, doivent répondre à diverses questions plus ou moins loufoques et parfois même déstabilisantes pour engranger le plus possible de points. Les candidats doivent tenter de récolter un maximum de points par équipe. Pour cela, quatre manches alléchantes se succèdent : "Les Nuggets", "Le Sel ou le Poivre", "Les Menus" et "L'Addition". + Divertissement + Jeu + + + Tout public + + + + Burger Quiz + Dans une déco de fast-food, deux équipes, Mayo et Ketchup, doivent répondre à diverses questions plus ou moins loufoques et parfois même déstabilisantes pour engranger le plus possible de points. Les candidats doivent tenter de récolter un maximum de points par équipe. Pour cela, quatre manches alléchantes se succèdent : "Les Nuggets", "Le Sel ou le Poivre", "Les Menus" et "L'Addition". + Divertissement + Jeu + + + Tout public + + + + Burger Quiz + Dans une déco de fast-food, deux équipes, Mayo et Ketchup, doivent répondre à diverses questions plus ou moins loufoques et parfois même déstabilisantes pour engranger le plus possible de points. Les candidats doivent tenter de récolter un maximum de points par équipe. Pour cela, quatre manches alléchantes se succèdent : "Les Nuggets", "Le Sel ou le Poivre", "Les Menus" et "L'Addition". + Divertissement + Jeu + + + Tout public + + + + Les nouveaux modèles + Laurent + Ce sont des sportifs de haut niveau, des collégiennes, des bénévoles ou des entrepreneurs à impact. Découvrez les portraits inspirants de citoyens et citoyennes engagés dans la transformation du monde. A travers la question "Quel mot, plus que n'importe quel autre, vous pousse à agir aujourd'hui ?", ils construisent ensemble de nouveaux modèles de société. + Magazine + Mag. Service + + 0 . 13 . + + Tout public + + + + Columbo + Columbo change de peau + Columbo est perplexe devant les cadavres de deux hommes, qui se seraient apparemment entretués. Le seul indice qu'il possède est le morceau d'une photographie. Columbo retourne au commissariat, où l'attend Irving Krutch, un agent d'assurances, qui lui apprend qu'une banque a été cambriolée... + Série + Série Suspense + + 11 . 2 . + + Tout public + + + + 90' Enquêtes + Trafic, incivilités et accidents : les policiers municipaux en 1re ligne + Désormais armés comme leurs collègues de la police nationale, les policiers municipaux disposent souvent de gros moyens pour mener la chasse aux délinquants. A Orléans, 109 agents luttent contre les incivilités et l'insécurité, tandis que six agents à moto traquent les infractions sur les routes. + Magazine + Mag. Société + + 11 . 1216 . + + + -10 + + + + Programmes de la nuit + Retrouvez tous vos programmes de nuit. + Autre + + + Tout public + + + + Les mystères de l'amour + Brouille et embrouilles + Nicolas et Hélène se disputent au sujet de l'infidélité de Nicky. Jeanne se fait prendre au piège à son tour. Guéant se donne pour mission de régler les problèmes sentimentaux de Stéphanie. Christian annonce à Bénédicte qu'il a pris une décision radicale. + Série + Série Passion + + 32 . 8 . + + Tout public + + + + Les mystères de l'amour + Premier baiser + Hélène, toujours en froid avec Nicolas, accepte l'invitation à dîner du docteur Higgins. Nicolas, de son côté, se fait courtiser par Lisette, qui espère bien arriver à ses fins. + Série + Série Passion + + 32 . 9 . + + Tout public + + + + Les mystères de l'amour + Selfie sale fille + Peter accompagne Christian, qui doit passer de nouveaux examens médicaux. Fanny, rongée par les remords, se confie à Michel. Pour préserver son frère, Jeanne tend un piège à Ingrid. Rudy décide quant à lui de prendre les choses en main concernant Sarah... + Série + Série Passion + + 32 . 10 . + + Tout public + + + + Monacoscope + Dix minutes pour faire, en images, le tour d'horizon des événements marquants de la semaine en Principauté. De l'inauguration d'un nouveau yacht au vernissage de la dernière exposition du Grimaldi Forum, rien n'échappe au Monacoscope. + Magazine + Mag. Société + + + Tout public + + + + Un duo d'enfer pour Noël + Amy, une New-Yorkaise, vient d'apprendre la mort de sa tante Linda. Forcée de rentrer dans sa petite ville natale pour régler certaines formalités, elle découvre que Jack, son ami d'enfance et ancien amoureux, est l'un des deux héritiers des biens de sa tante, notamment sa maison et sa pâtisserie... + Film + Film Passion + + + Tout public + + + + L'héritage de Noël + A la veille de Noël, une jeune femme, Hannah Harper, est envoyée en mission dans la petite ville de Cookie Jar. Elle doit convaincre Jake Carter, le directeur des "Friandises de tante Sally", de céder son entreprise à la firme qu'elle représente. Mais Jake n'est pas prêt à se laisser convaincre par Hannah... + Film + Film Passion + + + Tout public + + + + Une romance de Noël en sucre d'orge + Cate, qui a repris la fabrique de sucre d'orge de sa grand-mère, fait tout pour perpétuer la tradition familiale. Elle ne voit pas d'un bon oeil l'arrivée de Gabriel, consultant en redressement financier, envoyé par le conseil d'administration de la société. Peu peu pourtant, les choses évoluent... + Film + Film Passion + + + Tout public + + + + Les biscuits préférés du Père Noël + Allison, sa fille Olivia et sa mère Martha dirigent une boulangerie dans la petite ville de montagne de White Pines. Un jour Matthew, un promoteur immobilier, décide qu'il va faire de la ville une station de ski d'entreprise, Allison et les autres habitants doivent s'unir pour empêcher ce projet d'aboutir... + Film + Film Passion + + + Tout public + + + + L'héritière de Noël + Jessica, jeune femme à la tête d'une fortune héritée de ses parents disparus, décide de se rendre à Glenbrooke, une petite bourgade, pour y passer les fêtes de Noël incognito. Elle choisit cet endroit car il lui évoque des souvenirs de jeunesse. Elle fait la connaissance de Kyle, avec qui elle sympathise... + Film + Film Passion + + + Tout public + + + + Noël sous un ciel étoilé + Nick Bellwith, un jeune homme ambitieux, tombe de haut lorsqu'il est renvoyé du jour au lendemain. Il croise alors la route de Clem Marshwell. A quelques semaines de Noël, celle-ci ouvre son traditionnel marché aux sapins. A son grand désespoir, cette trentième saison sera aussi la dernière... + Film + Film Passion + + + Tout public + + + + Les mystères de l'amour + Le loup dans la bergerie + Guéant tente de raisonner Stéphanie au sujet de Loïc. Nicolas s'inquiète pour Hélène, qui n'est pas rentrée de la nuit, et se confie à Laly. Le laboratoire de Peter a été vandalisé durant la nuit, tandis que Jeanne et Pierre sont attaqués par deux hommes... + Série + Série Passion + + 32 . 11 . + + Tout public + + + + Les mystères de l'amour + Retour à la source + Hélène est toujours très remontée contre Nicolas, le couple fait désormais chambre à part. Laly tente de convaincre Hélène qu'il ne se passe rien entre Lisette et Nicolas. Jeanne et Pierre décident de rendre visite à Angela, l'une des nombreuses anciennes conquêtes de Pierre. Stéphanie cherche un stratagème pour sauver Loïc. Victor organise un étrange casting... + Série + Série Passion + + 32 . 12 . + + Tout public + + + + New York, police judiciaire + Pouvoir pervers + Un jeune homme est retrouvé mort après une overdose. De son côté, Dixon, hantée par une ancienne affaire non résolue, décide de reprendre l'enquête. Price et Maron mettent quant à eux un témoin en danger pour piéger un suspect... + Série + Série Suspense + + 20 . 5 . + + + -10 + + + + New York, police judiciaire + Jeu, set et match + Un juge aux affaires familiales à la vie très rangée est assassiné. Aussitôt Bernard et Cosgrove se chargent de l'enquête et tentent de découvrir le criminel. Lorsque le bureau du procureur se retrouve face à des imprévus, Maroun prend les choses en main... + Série + Série Suspense + + 20 . 3 . + + + -10 + + + + New York, police judiciaire + Influences mortelles + Bernard et Cosgrove recherchent une star des réseaux sociaux, dont la disparition a fait la une de nombreux sites Internet. Price et Maroun doivent prendre des décisions qui vont contre la volonté de la famille de la jeune femme disparue... + Série + Série Suspense + + 20 . 2 . + + + -10 + + + + New York, police judiciaire + Légitime vengeance + Bernard et Cosgrove, deux policiers qui se connaissent depuis peu, enquêtent sur le meurtre d'un célèbre artiste. Après l'annulation d'un aveu, des tensions naissent au sein du bureau du procureur... + Série + Série Suspense + + 20 . 0 . + + + -10 + + + + Programmes de la nuit + Retrouvez tous vos programmes de nuit. + Autre + + + Tout public + + + + Programmes de la nuit + Retrouvez tous vos programmes de nuit. + Programme + Programme indéterminé + + + Tout public + + + + Je peux le faire ! + Chaque rentrée, tout le monde se prend en main en décidant de faire du sport. Le problème : la motivation se perd souvent aussi vite que les bonnes résolutions ! De plus, le manque de moyens nous pousse régulièrement à abandonner tout exercice physique. "Je peux le faire !" est la solution pour éviter tout cela ! Avec "Je peux le faire !", chaque téléspectateur, peu importe sa condition physique ou ses moyens, pourra effectuer, tous les jours, un exercice physique depuis chez lui, avec l'aide d'objets de son quotidien. Tous les jours, Fred Mompo, Mister Univers à 5 reprises, nous montre, avec l'aide d'une personnalité, comment réaliser un exercice physique accessible à tous. Chaque exercice sera effectué avec l'aide d'un objet de notre quotidien dont l'utilité changera exceptionnellement pour l'occasion. + Magazine + Société + + 0 . 9 . + + Tout public + + + + Je peux le faire ! + Tous les jours, Fred Mompo montre, avec l'aide d'une personnalité, comment réaliser un exercice physique accessible à tous. Chaque exercice est effectué avec l'aide d'un objet du quotidien. + Magazine + Société + + 0 . 10 . + + Tout public + + + + Je peux le faire ! + Chaque rentrée, tout le monde se prend en main en décidant de faire du sport. Le problème : la motivation se perd souvent aussi vite que les bonnes résolutions ! De plus, le manque de moyens nous pousse régulièrement à abandonner tout exercice physique. "Je peux le faire !" est la solution pour éviter tout cela ! Avec "Je peux le faire !", chaque téléspectateur, peu importe sa condition physique ou ses moyens, pourra effectuer, tous les jours, un exercice physique depuis chez lui, avec l'aide d'objets de son quotidien. Tous les jours, Fred Mompo, Mister Univers à 5 reprises, nous montre, avec l'aide d'une personnalité, comment réaliser un exercice physique accessible à tous. Chaque exercice sera effectué avec l'aide d'un objet de notre quotidien dont l'utilité changera exceptionnellement pour l'occasion. + Magazine + Société + + 0 . 11 . + + Tout public + + + + Une mission pour Noël + Sarah est une jeune femme volontaire, totalement dévouée aux autres. Même le soir de Noël, elle ne s'accorde pas un instant de répit. Sa vie bascule le jour où elle est percutée par un bus et se retrouve au Paradis. Enfin, plutôt à "la réception", où elle est accueillie par l'ange Daphné. Daphné lui annonce à sa grande stupeur que, malgré une vie entière de dévotion, elle n'est pas sur la liste des réservations pour pouvoir passer par la grande porte. Sarah doit redescendre sur terre pour accomplir une dernière mission... + Téléfilm + Drame + + + Tout public + + + + Les biscuits préférés du Père Noël + Allison, sa fille Olivia et sa mère Martha dirigent une boulangerie dans la petite ville de montagne de White Pines, dans le Tennessee. Un jour Matthew, un séduisant promoteur immobilier, décide qu'il va faire de la ville une station de ski d'entreprise. Face à cette annonce, Allison et les autres habitants vont devoir s'unir pour empêcher ce désastreux projet d'aboutir. Mais lorsqu'Allison se dit qu'elle a sans doute perdu la partie et commence à baisser les bras, un client inattendu entre dans sa boulangerie... + Téléfilm + Drame + + + Tout public + + + + Une romance de Noël en sucre d'orge + Cate, qui a repris la fabrique de sucre d'orge de sa grand-mère, fait tout pour perpétuer la tradition familiale. Elle ne voit pas d'un bon oeil l'arrivée de Gabriel, consultant en redressement financier, envoyé par le conseil d'administration de la société. Consciente qu'elle doit imposer des changements à l'entreprise, elle envisage de diversifier sa production, mais craint de perdre son identité. Au fil des jours, la présence de Gabriel chamboule ses certitudes. De son côté, Gabriel découvre un nouveau mode de vie dans la petite ville de Britewell... + Téléfilm + Drame + + + Tout public + + + + La fiancée de Noël + Après une chute accidentelle survenue huit jours avant Noël, Lucy Lovett souffre d'amnésie rétrograde. Quand elle reprend conscience, elle est sur le point de se marier non pas avec l'amour de sa vie, Zach, mais avec un inconnu, Brad. Elle retourne dans sa ville natale, Bedford Harbor, pour retrouver la mémoire, en compagnie d'Anna, son assistante et amie. Elle découvre alors qu'elle en est partie précipitamment deux ans plus tôt... + Téléfilm + Drame + + + Tout public + + + + New York Unité Spéciale + La fin du voyage + Benson et Stabler enquêtent sur la disparition d'une mère et de sa fille, une adolescente. Cette affaire les amène à mettre au jour un complot entre un avocat corrompu du service de l'immigration et des criminels. Ces derniers sont à la tête d'un réseau de prostitution constitué de femmes qu'ils ont fait entrer clandestinement dans le pays, emprisonnées et réduites à l'état d'esclaves. Révoltés, les inspecteurs cherchent à rassembler le maximum de preuves pour faire tomber les responsables de ce réseau. Ils devront redoubler de prudence pour ne pas se faire repérer ce qui réduirait à néant leurs efforts... + Série + Policier + + 5 . 1 . + + + -10 + + + + New York Unité Spéciale + Opération d'infiltration + La brigade est contactée par le lieutenant Tucker des services internes à propos d'une affaire de viol. Une jeune femme, Tanya Jenkins, a été agressée sexuellement par deux officiers en fonction. La victime se trouvait à ce moment-là en état d'ébriété. Amanda Rollins récupère la vidéo de surveillance. Elle découvre que deux officiers ont raccompagné Tanya Jenkins à son domicile et qu'ils en sont ressortis quelque temps après. Brian Cassidy récupère le dossier et organise une opération d'infiltration au sein de la brigade. Il cherche à prouver la culpabilité des deux suspects. La mission s'avère particulièrement délicate pour l'équipe... + Série + Policier + + 14 . 3 . + + + -10 + + + + New York Unité Spéciale + Un bébé disparaît... + Un bébé est porté disparu. Une journaliste un peu trop zélée profite de son influence pour accuser Laura Kozlowski, la mère adoptive, d'avoir enlevé et tué son enfant. Poussée à bout par ces accusations et rongée par l'inquiétude, Laura met fin à ses jours. Stabler est très touché par cette affaire et bien décidé à faire éclater la vérité. Il pense que l'enfant est peut-être toujours en vie et soupçonne l'ex-petit ami de Laura Kozlowski de l'avoir enlevé. Stabler se retrouve confronté à deux hommes qui revendiquent la paternité du disparu. Cette affaire amène Benson à se poser des questions sur sa famille... + Série + Policier + + 7 . 14 . + + + -10 + + + + New York Unité Spéciale + Sur la sellette + Olivia est promue sergent. Ses collègues se réjouissent de cette bonne nouvelle. Malgré ses soucis passés, elle reste finalement à la tête de la brigade. Après avoir bu quelques verres, Amaro et Rollins choisissent de rentrer chez eux à pied. En chemin, ils assistent à une course-poursuite au cours de laquelle un officier est renversé par un taxi. Décidant d'intervenir, Amaro se retrouve confronté au suspect dans un couloir. Des coups de feu éclatent, blessant une jeune policière, McKenna. Amaro ouvre le feu à son tour. Il se rend compte après qu'il a blessé un garçon afro-américain de 14 ans, qui n'a aucune arme en sa possession... + Série + Policier + + 14 . 10 . + + + -10 + + + + New York Unité Spéciale + Un pari risqué + Amanda Rollins est dans l'impasse. Afin de se libérer d'une grosse dette, conséquence de son addiction, elle se rend dans une maison de jeu clandestine et passe un accord avec les gestionnaires. En guise de remboursement, ils exigent d'elle qu'elle commette un crime. La situation se complique encore davantage lorsque sur place, Clare, une vieille connaissance, la reconnaît, puis la dénonce à Declan, son patron. Declan profite de la situation pour faire chanter Amanda. En échange de son silence, il réclame d'importantes informations confidentielles portant sur un juré. Benson et son équipe ne peuvent que soupçonner leur collègue... + Série + Policier + + 14 . 16 . + + + -10 + + + + L'avant Quotidien + Tous les soirs, le présentateur et son équipe traitent l'actualité à leur façon. + Programme + Divertissement + + 7 . 0 . + + Tout public + + + + Quotidien, première partie + Une grande session d'information qui mêle humour et impertinence. Politique française et internationale, médias, culture, sport : tous les sujets sont passés en revue. A chaque émission, l'équipe a carte blanche pour traiter l'actualité à sa façon. + Programme + Divertissement + + 7 . 0 . + + Tout public + + + + Quotidien, deuxième partie + Dans cette deuxième partie, Yann Barthès et son équipe reviennent sur l'actualité et la présentent de manière impertinente et drôle. + Programme + Divertissement + + 7 . 0 . + + Tout public + + + + Quotidien + Une grande session d'information qui mêle humour et impertinence. Politique française et internationale, médias, culture, sport : tous les sujets sont passés en revue par Yann Barthès et son équipe de journalistes et de chroniqueurs. A chaque émission, l'équipe a carte blanche pour traiter l'actualité à sa façon : rencontre avec des stars internationales, invités en rapport avec l'actualité, reportages en France ou à l'étranger, analyses et lives plein d'humour, tout ce qui fait le succès de l'émission. + Programme + Divertissement + + 7 . 0 . + + Tout public + + + + Thor : Ragnarok + Revenu sur Terre avec Loki pour retrouver leur père, Odin, Thor se retrouve confronté à sa soeur, Hela. Au cours d'un affrontement, la puissante déesse de la mort brise le marteau de son frère et le laisse dans une dimension parallèle, sur une planète qui ressemble à une gigantesque décharge. Ce lieu étrange, dirigé par le Grand Maître, est régulièrement le théâtre de tournois homériques, au cours desquels s'affrontent des champions venus de toute la galaxie. Bien malgré lui, Thor est obligé de participer au tournoi. Une fois dans l'arène, il se rend compte qu'il connaît très bien son adversaire... + Film + Fantastique + + + + -10 + + + + Thor : le monde des ténèbres + Après avoir sauvé le monde avec les Avengers, Thor doit faire face, désormais, à une nouvelle menace : le puissant Malekith, assoiffé de vengeance, est bien décidé à prendre le contrôle de la Terre et des neuf royaumes pour y répandre les ténèbres. Avec l'aide de Jane Foster, le dieu du tonnerre tente le tout pour le tout afin de repousser les assauts du terrible Malekith. Mais quand il comprend que même Odin ne peut rien face au puissant personnage, Thor se résout à faire alliance avec son frère Loki, le traître, pour le combattre... + Film + Fantastique + + + + -10 + + + + Programmes de la nuit + Retrouvez tous vos programmes de nuit. + Programme + Programme indéterminé + + + Tout public + + + + Je peux le faire ! + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Je peux le faire ! + Tous les jours, Fred Mompo montre, avec l'aide d'une personnalité, comment réaliser un exercice physique accessible à tous. Chaque exercice est effectué avec l'aide d'un objet du quotidien. + Magazine + Mag. Société + + + Tout public + + + + Je peux le faire ! + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Un baiser pour Noël + Chaque année, à Ponchatoula, en Louisiane, une boîte à vœux est placée dans le parc en décembre. Maddie encourage sa grande sœur Faith à y placer une lettre où elle demande de voir s'exaucer le vœu de rencontrer enfin le véritable amour. Dès le lendemain, Faith fait la connaissance du charmant Andrew... + Film + Film Passion + + + Tout public + + + + Joyeux baiser de Noël + De retour dans sa ville natale en compagnie de son fiancé, un chorégraphe et réalisateur égocentré venu y présenter son dernier ballet pour les fêtes, une jeune femme fait la connaissance d'un autre homme, très échaudé par de récentes désillusions amoureuses. Le bonheur frappe-t-il à leur porte ?... + Film + Film Passion + + + Tout public + + + + La romance photo de Noël + Samantha, une photographe freelance, est de retour à Cape Cod afin de célébrer le remariage de son père. Elle accepte l'aide de Mike, un ancien flirt d'adolescence, afin de l'aider sur un projet photo, qui lui offre une belle opportunité de carrière. Cela faisait des années qu'elle n'avait pas remis les pieds dans cette petite ville, suite au décès de sa mère, également photographe... + Film + Film Passion + + + Tout public + + + + A la recherche d'un père Noël + Lorsque le Père Noël d'une petite ville du Connecticut se blesse, Grace, la responsable de la parade, doit d'urgence lui trouver un remplaçant. Elle va chercher le fils du Père Noël, Ben, et tente de le convaincre de remplacer son père, en vain. Les événements conduisent Grace et Ben à passer du temps ensemble... + Film + Film Passion + + + Tout public + + + + New York Unité Spéciale + Copie conforme + Benson et Stabler enquêtent sur la tentative de kidnapping d'une enfant, qui s'est déroulée sous les yeux de la mère. Cette affaire les entraîne dans des milieux dont ils ignorent tout. Au fil de leurs investigations, ils découvrent que derrière cette histoire se cache la bataille d'une mère biologique... + Série + Série Suspense + + 5 . 0 . + + + -10 + + + + New York Unité Spéciale + Mauvaises fréquentations + Une adolescente de 15 ans a été violée, et des photos du crime sont diffusées sur Internet. Les inspecteurs Benson et Stabler s'occupent de l'enquête. Mais les problèmes du fils de Stabler, impliqué dans une affaire de drogue à cause de son meilleur ami, obligent les policiers à disperser leurs efforts... + Série + Série Suspense + + 10 . 7 . + + + -10 + + + + New York Unité Spéciale + Le poids de la solitude + Un jeune homme rentre chez lui, pensant passer une soirée avec sa petite amie, Lily. En arrivant, il trouve l'appartement sens dessus dessous et des traces de sang sur un miroir brisé. Les enquêteurs soupçonnent Donovan, le voisin du dessous, un repris de justice arrêté par Stabler vingt ans plus tôt... + Série + Série Suspense + + 10 . 2 . + + + -10 + + + + New York Unité Spéciale + La beauté des flammes + Un incendie s'est déclaré en ville. Les pompiers interviennent mais ne parviennent pas à sauver deux petites filles. Le père des enfants, en revanche, s'en sort vivant. Le procureur demande à l'unité d'enquêter sur cette affaire. Sur place, Stabler et Benson retrouvent la nouvelle substitut du procureur... + Série + Série Suspense + + 10 . 20 . + + + -10 + + + + New York Unité Spéciale + Le signal fort + Une adolescente transgenre a été tuée en rentrant du lycée. Elle a été rouée de coups dans un parc par plusieurs adolescents, puis poussée depuis un pont. Il s'agit d'un véritable crime de haine. Le procureur souhaiterait que l'auteur principal de ce meurtre soit jugé comme un adulte, et non comme un mineur... + Série + Série Suspense + + 16 . 2 . + + + -10 + + + + L'avant Quotidien + Tous les soirs, le présentateur et son équipe traitent l'actualité à leur façon. + Divertissement + + + Tout public + + + + Quotidien, première partie + Une grande session d'information qui mêle humour et impertinence. Politique française et internationale, médias, culture, sport : tous les sujets sont passés en revue. A chaque émission, l'équipe a carte blanche pour traiter l'actualité à sa façon. + Divertissement + + + Tout public + + + + Quotidien, deuxième partie + Dans cette deuxième partie, Yann Barthès et son équipe reviennent sur l'actualité et la présentent de manière impertinente et drôle. + Divertissement + + + Tout public + + + + Quotidien + Une grande session d'information qui mêle humour et impertinence. Politique française et internationale, médias, culture, sport : tous les sujets sont passés en revue. A chaque émission, l'équipe a carte blanche pour traiter l'actualité à sa façon. + Divertissement + + + Tout public + + + + Madame Foresti + Aucune description + Divertissement + Spectacle + + + Tout public + + + + Florence Foresti fait des sketches à la Cigale + Aucune description + Divertissement + Spectacle + + + Tout public + + + + Programmes de la nuit + Retrouvez tous vos programmes de nuit. + Autre + + + Tout public + + + + Je peux le faire ! + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Je peux le faire ! + Tous les jours, Fred Mompo montre, avec l'aide d'une personnalité, comment réaliser un exercice physique accessible à tous. Chaque exercice est effectué avec l'aide d'un objet du quotidien. + Magazine + Mag. Société + + + Tout public + + + + Je peux le faire ! + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Opération Noël + Olivia Young, mère célibataire, emmène ses deux enfants skier à Noël et fait la rencontre du sergent Scott McGuigan sur les pistes. Ils se quittent sur un malentendu, mais les hasards de la vie les amènent à se rencontrer à nouveau et même à travailler ensemble. Olivia tombe sous son charme... + Film + Film Passion + + + Tout public + + + + Miss Noël + Chargée de sélectionner le sapin de Noël pour la ville de Chicago, une jeune femme se rend dans une petite bourgade, où elle pense avoir trouvé l'arbre idéal. Mais le propriétaire du sapin refuse de le lui céder. Elle va devoir batailler ferme pour le convaincre de le lui donner. Bientôt, l'amour s'en mêle... + Film + Film Passion + + + Tout public + + + + Le Noël des héros + Audrey tient un café avec son amie Jade dans la petite ville de Branford. Son frère, soldat déployé à l'étranger, fait goûter son café à un sergent, et une relation épistolaire commence entre le sergent Evans et Audrey. Il va faire la connaissance d'Audrey après son affectation et ils vont vite tomber sous le charme l'un de l'autre. + Jeunesse + Film Jeunesse + + + Tout public + + + + La valse de Noël + Collaboratrice dans un grand cabinet, Avery s'apprête à se marier à la période de Noël avec son fiancé, David. Pour se préparer à ouvrir le bal le grand jour, elle s'inscrit avec David à un cours de danse de salon. Là, elle fait la connaissance de Roman, un client qui l'encourage à prendre dix leçons... + Film + Film Passion + + + Tout public + + + + Hercule Poirot + L'aventure de l'appartement bon marché + Les plans d'un nouveau sous-marin ont été dérobés à la marine américaine. L'inspecteur-chef Japp doit collaborer avec le FBI, chargé de l'enquête. Hercule Poirot, bien que détestant les méthodes d'investigations américaines, s'intéresse de près à cette affaire. Il ne se doute pas encore de ses implications... + Série + Série Suspense + + 1 . 6 . + + Tout public + + + + Hercule Poirot + La boîte de chocolat + Pour accompagner l'inspecteur Japp à Bruxelles, où celui-ci doit être fait Compagnon de la Branche d'Or, Poirot retourne dans son pays natal, la Belgique, qu'il a quitté durant la Première Guerre mondiale. Là, il retrouve Claude Chantalier, son coéquipier dans la police belge avant le conflit... + Série + Série Suspense + + 4 . 5 . + + Tout public + + + + Hercule Poirot + Hercule Poirot quitte la scène + A la pension de famille de Styles Court, Hercule Poirot, très affaibli, retrouve son vieux compagnon Hastings, qui revient d'Argentine. Il lui annonce qu'ils vont partir ensemble à la recherche d'un meurtrier qui se trouve parmi les pensionnaires. En effet, des incidents ne tardent pas à se produire... + Série + Série Suspense + + 12 . 4 . + + Tout public + + + + L'avant Quotidien + Tous les soirs, le présentateur et son équipe traitent l'actualité à leur façon. + Divertissement + + + Tout public + + + + Quotidien, première partie + Une grande session d'information qui mêle humour et impertinence. Politique française et internationale, médias, culture, sport : tous les sujets sont passés en revue. A chaque émission, l'équipe a carte blanche pour traiter l'actualité à sa façon. + Divertissement + + + Tout public + + + + Quotidien, deuxième partie + Dans cette deuxième partie, Yann Barthès et son équipe reviennent sur l'actualité et la présentent de manière impertinente et drôle. + Divertissement + + + Tout public + + + + Quotidien + Une grande session d'information qui mêle humour et impertinence. Politique française et internationale, médias, culture, sport : tous les sujets sont passés en revue. A chaque émission, l'équipe a carte blanche pour traiter l'actualité à sa façon. + Divertissement + + + Tout public + + + + 90' Enquêtes + Grenoble : les policiers face à des délinquants toujours plus violents + De nombreuses scènes de violence gangrènent la vie des 455 000 habitants de l'agglomération grenobloise. Face aux délinquants, les 300 agents de la police nationale font face à toutes sortes de délits. Durant plusieurs semaines, une équipe a suivi ces agents qui prennent tous les risques pour lutter contre le violence. + Magazine + Mag. Société + + 0 . 0 . + + + -10 + + + + 90' Enquêtes + Accidents, alcool, interpellations musclées : le quotidien explosif des gendarmes des Ardennes + Le département des Ardennes, situé à la frontière belge, est l'un des moins peuplés et des plus pauvres de France. Ce territoire rural est calme en apparence, mais pour les gendarmes, le quotidien est souvent tendu. Une équipe a suivi le Major Carrare, du peloton motorisé, l'adjudant Fabrice du PSIG, ainsi que Rémi et Sébastien. + Magazine + Mag. Société + + 17 . 1624 . + + + -10 + + + + Programmes de la nuit + Retrouvez tous vos programmes de nuit. + Autre + + + Tout public + + + + Je peux le faire ! + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Je peux le faire ! + Tous les jours, Fred Mompo montre, avec l'aide d'une personnalité, comment réaliser un exercice physique accessible à tous. Chaque exercice est effectué avec l'aide d'un objet du quotidien. + Magazine + Mag. Société + + + Tout public + + + + Je peux le faire ! + Aucune description + Magazine + Mag. Société + + + Tout public + + + + Le ranch de Noël + Pour fuir une rupture compliquée, Sarah décide de passer les fêtes de Noël dans le ranch de son oncle. Elle se voit confier l'organisation de la parade de la ville, puis la formation à la vie de cow-boy d'une star de Hollywood, venu dans le Colorado pour préparer son prochain film. Bientôt, la magie de Noël agit... + Film + Film Passion + + + Tout public + + + + Noël avec une star + L'actrice Jessica McEllis s'apprête à tourner un film sur le thème de Noël à Homestead, une petite ville de l'Iowa. Jessica est accompagnée notamment de son ex-compagnon, Vince, qui est toujours amoureux d'elle. Le film raconte l'histoire d'une actrice, qui retourne dans la ville de son enfance... + Film + Film Passion + + + Tout public + + + + Les 12 traditions de Noël + Après le décès de sa grand-mère, Sharon Hayes revient pour la première fois dans sa maison d'enfance à Pine Springs pour fêter Noël avec sa cousine. Celle-ci lui a lancé un défi par l'intermédiaire de son avocat et voisin, Sam Taylor. Elle va devoir accomplir douze traditions de Noël afin de se replonger dans l'ambiance de la ville et décider si elle garde la maison... + Film + Film Passion + + + Tout public + + + + Un festival pour Noël + Allie s'apprête à quitter Evergreen pour s'installer à Washington avec Spencer, son petit ami. Ryan et sa fille Zoé partent passer Noël en Floride. Le médecin, veuf depuis un an, veut changer les idées de sa fille. En route, ils font une pause à Evergreen. Une tempête de neige va les forcer à rester... + Film + Film Passion + + + Tout public + + + + New York Unité Spéciale + Effets secondaires + L'épouse d'un policier affirme avoir été violée par son mari. Benson et Stabler arrêtent l'homme, qui agresse aussitôt son supérieur. Lorsqu'un autre policier assassine sa femme et tente de se suicider, les inspecteurs se posent des questions. Ils découvrent que les deux hommes prennent le même médicament... + Série + Série Suspense + + 5 . 22 . + + + -10 + + + + New York Unité Spéciale + Péché mal caché + Alex Munoz, le candidat favori à l'élection du maire de New York, est pris dans un scandale lié à des comportements sexuels déplacés. Eddie, son garde du corps, est accusé de tentative de viol par sa petite amie, Lindsay Anderson. Munoz sollicite l'aide de Rafael Barba, qui confie l'enquête à Olivia... + Série + Série Suspense + + 14 . 5 . + + + -10 + + + + New York Unité Spéciale + L'expérience + Une enveloppe contenant des photos d'enfants dévêtus parvient à l'unité. Stabler étant en arrêt de travail après une confrontation musclée avec un suspect, Benson enquête sur cette affaire avec Munch. En analysant les clichés, les policiers parviennent à localiser l'immeuble où ils ont été pris... + Série + Série Suspense + + 7 . 12 . + + + -10 + + + + New York Unité Spéciale + Savoir... et se taire + Une femme a disparu. Les enquêteurs la retrouvent finalement, morte. L'autopsie permet d'identifier la défunte : il s'agit d'une employée du service comptabilité d'un fonds d'investissement. Ce meurtre rappelle à Stabler et Benson celui d'une autre jeune comptable, tuée plus de vingt ans auparavant... + Série + Série Suspense + + 10 . 14 . + + + -10 + + + + New York Unité Spéciale + Instincts maternels + Anton Krasnikov, flûtiste de renommée internationale, a rendez-vous avec une escort-girl dans une chambre d'hôtel. Celle-ci le drogue et le dépouille de ses biens. Anton viole une de ses consoeurs violonistes, mais ne se souvient absolument de rien. Amanda Rollins est chargée de l'enquête... + Série + Série Suspense + + 16 . 5 . + + + -10 + + + + L'avant Quotidien + Tous les soirs, le présentateur et son équipe traitent l'actualité à leur façon. + Divertissement + + + Tout public + + + + Quotidien, première partie + Une grande session d'information qui mêle humour et impertinence. Politique française et internationale, médias, culture, sport : tous les sujets sont passés en revue. A chaque émission, l'équipe a carte blanche pour traiter l'actualité à sa façon. + Divertissement + + + Tout public + + + + Quotidien, deuxième partie + Dans cette deuxième partie, Yann Barthès et son équipe reviennent sur l'actualité et la présentent de manière impertinente et drôle. + Divertissement + + + Tout public + + + + Quotidien + Une grande session d'information qui mêle humour et impertinence. Politique française et internationale, médias, culture, sport : tous les sujets sont passés en revue. A chaque émission, l'équipe a carte blanche pour traiter l'actualité à sa façon. + Divertissement + + + Tout public + + + + Taxi + Après avoir été pendant six ans le livreur en scooter le plus rapide de Marseille, Daniel est aujourd'hui chauffeur de taxi. Passionné de courses automobiles, il a transformé son véhicule en bolide, qu'il conduit comme un fou. Sa première cliente s'avère être la mère d'un inspecteur de police... + Film + Film Action + + + Tout public + + + + 90' Enquêtes + Délits de fuite : quand les nouveaux chauffards prennent tous les risques + Les délits de fuite sont un véritable fléau pour les forces de l'ordre. Des chauffards sont prêts à tout pour éviter un contrôle de gendarmerie ou échapper aux policiers. Mais les conséquences de ces coups de folie peuvent être dramatiques. Certains se terminent par des accidents parfois mortels. + Magazine + Mag. Société + + 16 . 1719 . + + + -10 + + + + Programmes de la nuit + Retrouvez tous vos programmes de nuit. + Autre + + + Tout public + + + + Wake Up + Réveillez-vous de bon pied avec W9 ! Retrouvez une sélection des meilleurs tubes du moment pour un réveil vitaminé... + Musique + Clips + + + Tout public + + + + W9 Boutique + Retrouvez les dernières innovations et des offres exclusives en matière de bijoux, beauté, cuisine, maison. + Magazine + Mag. TV-Achat + + + Tout public + + + + Le hit W9 + L'émission musicale qui vous fait découvrir les cinquante chansons les plus écoutées sur le net chaque semaine. + Musique + Clips + + + Tout public + + + + Le hit W9 + L'émission musicale qui vous fait découvrir les cinquante chansons les plus écoutées sur le net chaque semaine. + Musique + Clips + + + Tout public + + + + Météo + Bulletin météorologique. + Info-Météo + Information + + + Tout public + + + + Scorpion + Les coeurs en flammes + Réquisitionnée pour retrouver des randonneurs perdus dans la forêt de Los Angeles, l'équipe Scorpion embarque dans un hélicoptère pour survoler la zone. Les conditions météo obligent le pilote à procéder à un atterrissage d'urgence au coeur de la forêt en feu, où l'équipe se retrouve sans radio... + Série + Série Action + + 0 . 18 . + + Tout public + + + + Scorpion + Protection rapprochée + L'équipe Scorpion est appelée en renfort pour transporter en toute sécurité Maya Hernandez au procès dans lequel elle doit témoigner contre un dangereux chef de cartel. Lorsque le convoi échappe de peu à une embuscade, Cabe et le groupe comprennent que les forces de l'ordre sont corrompues et qu'ils ne peuvent compter que sur eux-mêmes pour protéger le témoin... + Série + Série Action + + 0 . 19 . + + Tout public + + + + Scorpion + La grande évasion + Sylvester doit trouver une solution qui lui permettra de déchiffrer des codes susceptibles de démanteler un gang asiatique, qui a pris pour cible trois juges. Il se rend sous couverture dans une prison fédérale, où il se fait passer pour un prisonnier. Mais la situation ne tarde pas à se gâter... + Série + Série Action + + 1 . 2 . + + Tout public + + + + Scorpion + En eaux profondes + Après des désaccords avec Adriana Molina, Scorpion dépend maintenant d'une nouvelle directrice adjointe : Katherine Cooper. Celle-ci envoie Walter, Cabe et Happy en mission à bord d'un sous-marin afin de retrouver et de détruire un mouchard qui espionne les relations entre les Etats-Unis et la Chine... + Série + Série Action + + 1 . 3 . + + Tout public + + + + Scorpion + Les supers fun guys + L'équipe se rend au Kazakhstan, déguisée en membres de l'équipe de tournage d'un film de super-héros, afin de neutraliser un missile nucléaire datant de l'époque soviétique. L'arme doit être vendue à des trafiquants d'armes. Pendant ce temps, Megan se livre à une expérience de stimulation du cerveau... + Série + Série Action + + 1 . 4 . + + Tout public + + + + La petite histoire de France + Aucune description + Série + Série Rires + + + Tout public + + + + La petite histoire de France + Aucune description + Série + Série Rires + + + Tout public + + + + La petite histoire de France + Aucune description + Série + Série Rires + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Wake Up + Réveillez-vous de bon pied avec W9 ! Retrouvez une sélection des meilleurs tubes du moment pour un réveil vitaminé... + Musique + Clips + + + Tout public + + + + HDM : L'hebdo de la musique + Ne manquez rien de l'actualité musicale ! Erika Moulet ira à la rencontre de vos artistes préférés, dans les coulisses de leurs concerts, festivals ou sur le tournage de clips, pour vous dégoter leurs confidences du moment ! + Magazine + Mag. Musique + + + Tout public + + + + HDM : L'hebdo de la musique + Ne manquez rien de l'actualité musicale ! Erika Moulet ira à la rencontre de vos artistes préférés, dans les coulisses de leurs concerts, festivals ou sur le tournage de clips, pour vous dégoter leurs confidences du moment ! + Magazine + Mag. Musique + + + Tout public + + + + Génération Top 50 + À travers de nombreuses rubriques, Jérôme Anthony redécouvre tous les tubes des années 80 et 90 qui ont marqué le Top 50. + Magazine + Mag. Musique + + + Tout public + + + + Génération Top 50 + À travers de nombreuses rubriques, Jérôme Anthony redécouvre tous les tubes des années 80 et 90 qui ont marqué le Top 50. + Magazine + Mag. Musique + + + Tout public + + + + 100564309a2b3f8oker + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Météo + Bulletin météorologique. + Info-Météo + Information + + + Tout public + + + + Scorpion + Secret toxique + Des scientifiques sont retenus en otage dans un laboratoire spécialisé dans la recherches sur des neurotoxiques. Le bâtiment est contrôlé depuis l'intérieur par un pirate informatique. Celui-ci exige que le Président révèle publiquement le fiasco d'un bombardement américain à Bagdad en 1996... + Série + Série Action + + 0 . 20 . + + + -10 + + + + Scorpion + Au bord du gouffre + Gravement blessé et bloqué sur le flan d'une falaise après son accident de voiture, Walter est localisé par Happy, Toby et Sylvester qui se rendent sur place pour le tirer de cette mauvaise posture. Cabe participe à l'opération malgré sa démission, mais Paige et Ralph ignorent encore tout la situation... + Série + Série Action + + 0 . 21 . + + + -10 + + + + Scorpion + Vertiges de l'amour + La nouvelle directrice de la Sécurité Intérieure réunit l'équipe au grand complet. Walter souffre encore de quelques séquelles à la main gauche, suite à son accident. On apprend qu'un satellite russe a quitté son orbite. Il doit être rapidement détourné si l'on espère sauver le sud de la Californie... + Série + Série Action + + 1 . 0 . + + Tout public + + + + Scorpion + Cuba Libre + Vingt ans après avoir été sauvée par Cabe en Croatie, une femme resurgit de son passé. Sonia Balasevic lui demande son aide pour traquer un criminel de guerre serbe réfugié à Cuba. Walter et son équipe s'envolent vers l'île, sans le soutien officiel de leur gouvernement... + Série + Série Action + + 1 . 1 . + + Tout public + + + + La petite histoire de France + Aucune description + Série + Série Rires + + + Tout public + + + + Les nouvelles aventures d'Aladin + A la veille de Noël, Sam et son meilleur ami Khalid pensaient avoir trouvé le déguisement idéal pour commettre quelques larcins aux Galeries Lafayette. Mais les enfants les ont rapidement démasqués malgré leur barbe de Père Noël. Pour les amadouer, le duo leur raconte leur version de l'histoire d'Aladin... + Film + Film Rires + + + Tout public + + + + Coyote Girls + Une jeune femme à l'aube de la vingtaine, Violet, quitte sa ville de province pour New York, afin de se donner toutes les chances de réaliser son rêve : faire carrière dans la chanson. Pour assurer sa subsistance sur place, elle décroche un job de serveuse. Bientôt, le doute sur ses chances s'installe... + Film + Film Passion + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Programme + Programme indéterminé + + + Tout public + + + + Wake Up + Réveillez-vous de bon pied avec W9 ! Retrouvez une sélection des meilleurs tubes du moment pour un réveil vitaminé... + Musique + Clips + + + Tout public + + + + Le double expresso RTL2 + Pour un réveil dynamique et tout en musique, Grégory et Justine vous offrent une double dose de son Pop-Rock, d'infos et de bonne humeur. + Programme + Divertissement + + + Tout public + + + + W9 Hits + Retrouvez le meilleur de la musique et des hits avec les plus grands tubes du moment. + Musique + Clips + + + Tout public + + + + W9 Hits Gold + Retrouvez le meilleur des hits des années 80, 90 et 2000. + Musique + Clips + + + Tout public + + + + W9 Hits + Retrouvez le meilleur de la musique et des hits avec les plus grands tubes du moment. + Musique + Clips + + + Tout public + + + + Météo + Bulletin météorologique. + Services + Météo + + + Tout public + + + + Les mille couleurs de Noël + Rachel, organisatrice d'évènements à New York, doit orchestrer la mise en place du 30e anniversaire du parc d'attraction de Dolly Parton. Elle rencontre le directeur général du parc, Luke, qui supervise la célébration. Tous deux peu enthousiastes à l'idée de travailler de concert, Rachel et Luke vont devoir apprendre à s'harmoniser afin de mener à bien cette mission rythmée par la magie de Noël... + Téléfilm + Drame + + + Tout public + + + + Les pendules de Noël + Alice et Will se sont connus sur un site de rencontres. Alice a repris le magasin d'antiquités de son père alors que Will, agent immobilier ambitieux, lui conseillait de vendre. Après l'avoir demandée en mariage, Will l'invite à passer Noël chez ses parents, l'envoyant en avance le temps de conclure une affaire. A l'aéroport, suite à un quiproquo, Alice rencontre Matt, qu'elle croit être le frère de Will... + Téléfilm + Drame + + + Tout public + + + + Un dîner presque parfait + Ils sont cinq et habitent la même région. Ils ne se connaissent pas et pourtant, ils vont s'inviter à dîner à tour de rôle pendant toute une semaine pour tenter de remporter le titre de meilleur hôte. + Divertissement + Jeu + + + Tout public + + + + Un dîner presque parfait + Ils sont cinq et habitent la même région. Ils ne se connaissent pas et pourtant, ils vont s'inviter à dîner à tour de rôle pendant toute une semaine pour tenter de remporter le titre de meilleur hôte. + Divertissement + Jeu + + + Tout public + + + + Un dîner presque parfait + J1 : Mondial du dîner + Ils sont cinq et habitent la même région. Ils ne se connaissent pas et pourtant, ils vont s'inviter à dîner à tour de rôle pendant toute une semaine pour tenter de remporter le titre de meilleur hôte. + Divertissement + Jeu + + + Tout public + + + + Les cinquante + Le Lion et ses amis sont de retour pour la deuxième édition du plus grand jeu jamais organisé ! Pour cet événement, le Lion a invité 50 nouveaux joueurs, tous plus déterminés les uns que les autres, à devenir le grand gagnant et ainsi remporter le titre très convoité d'Élu. Cette année encore, plus que jamais le danger rôde à chaque instant ! + Divertissement + Jeu + + 1 . 43 . + + + -10 + + + + Météo + Bulletin météorologique. + Services + Météo + + + Tout public + + + + Les aventuriers de l'Arche perdue + Dans les années 30. Indiana Jones, un athlétique professeur d'archéologie, n'hésite pas à parcourir le monde à la recherche de fabuleux trésors dont il fait don à son université. De retour d'Amérique du Sud où Belloq, son principal concurrent, s'est joué de lui, il est contacté par les services secrets, qui le chargent d'une mission : court-circuiter les agents du IIIe Reich qui, avec l'assistance de Belloq, sont à la recherche de l'Arche d'alliance contenant les Tables de la Loi reçues par Moïse. Indiana s'envole pour le Népal, où réside la fille du professeur Ravenwood, la belle Marion qui, non contente d'être son amour perdu, est surtout l'heureuse dépositaire d'un bijou essentiel pour localiser l'Arche... + Film + Action + + + Tout public + + + + Pompéi + En l'an 79, Pompéi, ville riche et prospère, est l'un des joyaux de l'empire romain. Le jeune Milo tente de se construire un destin dans cette ville corrompue. L'esclave est amoureux de Cassia, la fille de son maître. Le père de la jeune femme lui avait promis sa main mais, réalisant qu'il ne peut plus honorer ses nombreuses dettes, lui préfère le richissime sénateur Corvus. Milo, devenu gladiateur, tente de survivre dans l'arène avec son ami Atticus. C'est alors que le Vésuve, qui surplombe la cité, entre en éruption. Comme l'ensemble de la population, Milo tente de s'échapper, en compagnie de Cassia et Atticus. Une véritable course contre la montre s'engage alors... + Action + Histoire + + + + -10 + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Programme + Programme indéterminé + + + Tout public + + + + Wake Up + Réveillez-vous de bon pied avec W9 ! Retrouvez une sélection des meilleurs tubes du moment pour un réveil vitaminé... + Musique + Clips + + + Tout public + + + + Le double expresso RTL2 + Pour un réveil dynamique et tout en musique, Grégory et Justine vous offrent une double dose de son Pop-Rock, d'infos et de bonne humeur. + Divertissement + + + Tout public + + + + W9 Hits + Retrouvez le meilleur de la musique et des hits avec les plus grands tubes du moment. + Musique + Clips + + + Tout public + + + + W9 Hits Gold + Retrouvez le meilleur des hits des années 80, 90 et 2000. + Musique + Clips + + + Tout public + + + + W9 Hits + Retrouvez le meilleur de la musique et des hits avec les plus grands tubes du moment. + Musique + Clips + + + Tout public + + + + Météo + Bulletin météorologique. + Info-Météo + Information + + + Tout public + + + + Le plus beau char de Noël + Célèbre animatrice de talk-show, Hailee est en pleine préparation de son émission de Noël lorsqu'elle découvre une photo de son fiancé Jason, enlaçant une actrice. Bouleversée, elle roule jusqu'à Carver Bend, petite ville du Connecticut, où elle percute la clôture de la maison d'un juge... + Film + Film Passion + + + Tout public + + + + Noël, l'amour et le hasard + Pendant les fêtes de Noël, Kate débute son internat en orthopédie à l'hôpital. Lors d'une consultation, elle rencontre Kevin, un ancien militaire qui aide son père dans la quincaillerie familiale. Après avoir découvert chacun devant sa porte une boîte avec une clef et une énigme, Kate et Kevin vont tenter de résoudre ce mystère ensemble. + Film + Film Passion + + + Tout public + + + + Un dîner presque parfait + Ils sont cinq et habitent la même région. Ils ne se connaissent pas et pourtant, ils vont s'inviter à dîner à tour de rôle pendant toute une semaine pour tenter de remporter le titre de meilleur hôte. + Divertissement + Jeu + + + Tout public + + + + Un dîner presque parfait + Ils sont cinq et habitent la même région. Ils ne se connaissent pas et pourtant, ils vont s'inviter à dîner à tour de rôle pendant toute une semaine pour tenter de remporter le titre de meilleur hôte. + Divertissement + Jeu + + + Tout public + + + + Un dîner presque parfait + Ils sont cinq et habitent la même région. Ils ne se connaissent pas et pourtant, ils vont s'inviter à dîner à tour de rôle pendant toute une semaine pour tenter de remporter le titre de meilleur hôte. + Divertissement + Jeu + + + Tout public + + + + Les cinquante + Le Lion et ses amis sont de retour pour la deuxième édition du plus grand jeu jamais organisé ! Pour cet événement, le Lion a invité 50 nouveaux joueurs, tous plus déterminés les uns que les autres, à devenir le grand gagnant et ainsi remporter le titre très convoité d'Élu. Cette année encore, plus que jamais le danger rôde à chaque instant ! + Divertissement + Jeu + + + + -10 + + + + Météo + Bulletin météorologique. + Info-Météo + Information + + + Tout public + + + + Squats & conflits : sortir du cauchemar + Propriétaires en guerre contre des squatteurs, problèmes de voisinage, malfaçons, nuisances. Des justiciers tentent de venir en aide aux victimes. + Documentaire + Doc. Société + + + Tout public + + + + Squats & conflits : sortir du cauchemar + Un appartement squatté, un artisan irrespectueux du devis signé, un voisin indélicat, une médiatrice à Rennes. Quatre nouvelles missions pour nos justiciers. + Documentaire + Doc. Société + + + Tout public + + + + Expulsions, saisies, ventes aux enchères : les huissiers en première ligne + En France, ils sont plus de trois mille huissiers de justice. Pendant six mois, les équipes ont suivi le quotidien mouvementé de ces officiers ministériels. + Documentaire + Doc. Société + + + Tout public + + + + Enquête d'action + Voitures d'occasion : attention aux arnaques ! + Pénurie de composants, problème de logistique, de main d'oeuvre : les délais d'attente pour acheter une voiture neuve s'allongent. Les Français se rabattent alors sur le marché de l'occasion. Plus de cinq millions de véhicules vendus en 2022. Résultat, les escrocs n'ont jamais été aussi nombreux et inventifs ! + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Wake Up + Réveillez-vous de bon pied avec W9 ! Retrouvez une sélection des meilleurs tubes du moment pour un réveil vitaminé... + Musique + Clips + + + Tout public + + + + Le double expresso RTL2 + Pour un réveil dynamique et tout en musique, Grégory et Justine vous offrent une double dose de son Pop-Rock, d'infos et de bonne humeur. + Divertissement + + + Tout public + + + + W9 Hits + Retrouvez le meilleur de la musique et des hits avec les plus grands tubes du moment. + Musique + Clips + + + Tout public + + + + HDM : L'hebdo de la musique + Ne manquez rien de l'actualité musicale ! Erika Moulet ira à la rencontre de vos artistes préférés, dans les coulisses de leurs concerts, festivals ou sur le tournage de clips, pour vous dégoter leurs confidences du moment ! + Magazine + Mag. Musique + + + Tout public + + + + Le hit W9 + L'émission musicale qui vous fait découvrir les cinquante chansons les plus écoutées sur le net chaque semaine. + Musique + Clips + + + Tout public + + + + Météo + Bulletin météorologique. + Info-Météo + Information + + + Tout public + + + + Un Noël royal + Kristin, une employée se voit accorder par sa patronne une mission à la hauteur de ses espérances. La jeune femme est chargée du défilé de mode de Noël, organisé pour le roi d'Edgemoor, mais elle ignore que l'évènement est présidé par le prince Patrick en personne. Ce dernier va tomber sous son charme... + Film + Film Passion + + + Tout public + + + + Un Noël de princesse + Dans le royaume de Cordinia, tous les habitants vivent heureux. Tous sauf le jeune prince Leopold qui ne rêve que d'une chose : épouser la belle Emily Taylor qui habite Philadelphie. Mais ses voeux les plus tendres sont contrariés par la reine Isadora, sa mère, qui a d'autres projets pour son fils adoré... + Film + Film Passion + + + Tout public + + + + Un dîner presque parfait + Ils sont cinq et habitent la même région. Ils ne se connaissent pas et pourtant, ils vont s'inviter à dîner à tour de rôle pendant toute une semaine pour tenter de remporter le titre de meilleur hôte. + Divertissement + Jeu + + + Tout public + + + + Un dîner presque parfait + Ils sont cinq et habitent la même région. Ils ne se connaissent pas et pourtant, ils vont s'inviter à dîner à tour de rôle pendant toute une semaine pour tenter de remporter le titre de meilleur hôte. + Divertissement + Jeu + + + Tout public + + + + Un dîner presque parfait + Ils sont cinq et habitent la même région. Ils ne se connaissent pas et pourtant, ils vont s'inviter à dîner à tour de rôle pendant toute une semaine pour tenter de remporter le titre de meilleur hôte. + Divertissement + Jeu + + + Tout public + + + + Les cinquante + Le Lion et ses amis sont de retour pour la deuxième édition du plus grand jeu jamais organisé ! Pour cet événement, le Lion a invité 50 nouveaux joueurs, tous plus déterminés les uns que les autres, à devenir le grand gagnant et ainsi remporter le titre très convoité d'Élu. Cette année encore, plus que jamais le danger rôde à chaque instant ! + Divertissement + Jeu + + + + -10 + + + + Météo + Bulletin météorologique. + Info-Météo + Information + + + Tout public + + + + Que s'est-il vraiment passé ? + Alain Delon : une vie, un destin et un héritage contesté ! + Découvrez l'incroyable parcours d'un comédien surdoué, Alain Delon qui a pu, grâce à son succès, devenir l'un des acteurs français les plus riches. Vous saurez également tout de la bataille qui oppose Anouchka, Anthony et Alain-Fabien, les enfants d'Alain Delon, à sa discrète "compagne", Hiromi Rollin. + Magazine + Mag. Société + + 0 . 0 . + + Tout public + + + + Enquêtes criminelles + Christelle Doisy : que cachait l'épouse parfaite ? + Pendant 18 ans, Christelle Doisy, camouflée sous différentes identités, aurait laissé sur la paille les hommes tombés sous son charme, mais aussi de nombreux commerçants et propriétaires. En deuxième partie d'émission, "Enquêtes criminelles" revient sur la mort de Théo Decouchant, 23 ans, près de Besançon. + Magazine + Mag. Société + + 0 . 0 . + + + -10 + + + + Enquêtes criminelles + Disparition d'Emile : où est la vérité ? + Le point sur l'affaire qui intrigue la France entière depuis le début de l'été : la disparition du petit Emile, âgé d'à peine deux ans et demi, dans les Alpes de Haute-Provence. Puis retrouvez l'intégralité de l'interview exclusive accordée par Johan Daviet, le père de Lola, retrouvée sans vie Il y a tout juste un an. + Magazine + Mag. Société + + 0 . 0 . + + + -10 + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Wake Up + Réveillez-vous de bon pied avec W9 ! Retrouvez une sélection des meilleurs tubes du moment pour un réveil vitaminé... + Musique + Clips + + + Tout public + + + + Le double expresso RTL2 + Pour un réveil dynamique et tout en musique, Grégory et Justine vous offrent une double dose de son Pop-Rock, d'infos et de bonne humeur. + Divertissement + + + Tout public + + + + W9 Hits + Retrouvez le meilleur de la musique et des hits avec les plus grands tubes du moment. + Musique + Clips + + + Tout public + + + + W9 Hits Gold + Retrouvez le meilleur des hits des années 80, 90 et 2000. + Musique + Clips + + + Tout public + + + + W9 Hits + Retrouvez le meilleur de la musique et des hits avec les plus grands tubes du moment. + Musique + Clips + + + Tout public + + + + Météo + Bulletin météorologique. + Info-Météo + Information + + + Tout public + + + + Mon amoureux de Noël + Après avoir passé 20 ans à développer son entreprise à New York, Maddie vient de la vendre. Pour prendre du recul, elle accepte la proposition de sa mère, Peg, de passer les fêtes de Noël chez elle. Si elle est heureuse de retrouver sa famille, Maddie est gênée de revoir Carter, son amour de jeunesse... + Film + Film Passion + + + Tout public + + + + Le Noël de mes rêves + Pour Christina, directrice d'un grand magasin, la période des fêtes rime avec travail. Peu portée sur l'esprit de Noël, elle doit cependant trouver une idée originale pour la grande exposition de Noël, et ainsi convaincre la fondatrice, Victoria, qu'elle mérite le poste dont elle rêve à Paris... + Film + Film Passion + + + Tout public + + + + Un dîner presque parfait + Ils sont cinq et habitent la même région. Ils ne se connaissent pas et pourtant, ils vont s'inviter à dîner à tour de rôle pendant toute une semaine pour tenter de remporter le titre de meilleur hôte. + Divertissement + Jeu + + + Tout public + + + + Un dîner presque parfait + Ils sont cinq et habitent la même région. Ils ne se connaissent pas et pourtant, ils vont s'inviter à dîner à tour de rôle pendant toute une semaine pour tenter de remporter le titre de meilleur hôte. + Divertissement + Jeu + + + Tout public + + + + Un dîner presque parfait + Ils sont cinq et habitent la même région. Ils ne se connaissent pas et pourtant, ils vont s'inviter à dîner à tour de rôle pendant toute une semaine pour tenter de remporter le titre de meilleur hôte. + Divertissement + Jeu + + + Tout public + + + + Les cinquante + Le Lion et ses amis sont de retour pour la deuxième édition du plus grand jeu jamais organisé ! Pour cet événement, le Lion a invité 50 nouveaux joueurs, tous plus déterminés les uns que les autres, à devenir le grand gagnant et ainsi remporter le titre très convoité d'Élu. Cette année encore, plus que jamais le danger rôde à chaque instant ! + Divertissement + Jeu + + + + -10 + + + + Météo + Bulletin météorologique. + Info-Météo + Information + + + Tout public + + + + Football : Ligue Europa + Aucune description + Sport + Football + + + Tout public + + + + La petite histoire de France + Aucune description + Série + Série Rires + + + Tout public + + + + UEFA : le résumé des matches + Aucune description + Magazine + Mag. Sport + + + Tout public + + + + Programmes de la nuit + A suivre, des rediffusions de vos émissions préférées, ainsi que des documentaires et autres reportages destinés à divertir les couche-tard comme les lève-tôt ! + Autre + + + Tout public + + + + Dolapo Is Fine + A young Black woman faces pressure to change her name and hairstyle. + + Doyin Ajiboye + Katie Friedli Walton + Joan Iyiola + + 2020 + Movies + Drama + + + + Spotlight + Journalists (Mark Ruffalo, Michael Keaton, Rachel McAdams) from The Boston Globe investigate a cover-up of sexual abuse within the Roman Catholic Church. + + Mark Ruffalo + Michael Keaton + Rachel McAdams + + 2015 + Movies + Drama + + + TVG + + + 3 + + + + I Love You, Man + As a bridegroom's (Paul Rudd) bond with his new best friend (Jason Segel) grows, it threatens his relationship with his fiancee (Rashida Jones). + + Paul Rudd + Jason Segel + Rashida Jones + + 2009 + Movies + Comedy + + + TVPG + + + 3 + + + + Predators + On an alien planet, a mercenary (Adrien Brody) and his ragtag band of fighters struggle to survive against an onslaught of fearsome warriors who hunt them for sport. + + Adrien Brody + Topher Grace + Alice Braga + + 2010 + Movies + Sci-Fi + + + TVPG + + + 2 + + + + Predators + On an alien planet, a mercenary (Adrien Brody) and his ragtag band of fighters struggle to survive against an onslaught of fearsome warriors who hunt them for sport. + + Adrien Brody + Topher Grace + Alice Braga + + 2010 + Movies + Sci-Fi + + + TVPG + + + 2 + + + + The Adderall Diaries + Suffering from writer's block, author Stephen Elliott (James Franco) reconnects with his estranged father (Ed Harris) while investigating the murder case of computer entrepreneur Hans Reiser (Christian Slater). + + James Franco + Ed Harris + Amber Heard + + 2015 + Movies + Drama + + + TV14 + + + 2 + + + + Under the Same Moon + After his grandmother dies, a Mexican boy (Adrian Alonso) sets out to join his mother (Kate del Castillo) in the United States. + + Adrian Alonso + Kate del Castillo + Eugenio Derbez + + 2007 + Movies + Drama + + + TVG + + + 3 + + + + The Cypher + With his reputation on the line, a young man fights to keep his secrets safe during an underground freestyle rap competition in Philadelphia. + + Kerrice Brooks + O'Shay Neal + Nigel Cox + + 2020 + Movies + Drama + + + + Hang 'Em High + An innocent rancher (Clint Eastwood) is saved from the noose and deputized to hunt down the men who tried to hang him. + + Clint Eastwood + Inger Stevens + Ed Begley + + 1968 + Movies + Western + + + 2 + + + + The Cold Light of Day + A vacation in Spain turns nightmarish when a man's (Henry Cavill) family is kidnapped by agents who are hell-bent on recovering a mysterious briefcase. + + Henry Cavill + Verónica Echegui + Bruce Willis + + 2012 + Movies + Action + + + TVPG + + + 1 + + + + Teen Wolf + A high-school student's popularity soars when it is discovered that he is cursed with the mark of the werewolf. + + Michael J. Fox + James Hampton + Scott Paulin + + 1985 + Movies + Comedy + + + TVG + + + 2 + + + + Brokedown Palace + American teens (Claire Danes, Kate Beckinsale) in Bangkok are framed for smuggling drugs and sentenced to 33 years in a Thai prison. + + Claire Danes + Kate Beckinsale + Bill Pullman + + 1999 + Movies + Drama + + + TVG + + + 2 + + + + Welcome Home Roscoe Jenkins + Determined to prove to his family how much he has changed, a talk-show star (Martin Lawrence) returns to his small Southern hometown for his parents' anniversary. + + Martin Lawrence + James Earl Jones + Margaret Avery + + 2008 + Movies + Comedy + + + TVPG + + + 2 + + + + The Perfect Score + High-school students (Erika Christensen, Chris Evans, Bryan Greenberg) conspire to steal the answers to their upcoming SATs. + + Erika Christensen + Chris Evans + Bryan Greenberg + + 2004 + Movies + Comedy + + + TVG + + + 2 + + + + Johnny Dangerously + A New York pet-store owner (Michael Keaton) recalls how he turned to crime and became a big-time gangster. + + Michael Keaton + Joe Piscopo + Marilu Henner + + 1984 + Movies + Comedy + + + TVG + + + 2 + + + + Redemption + A troubled war veteran assumes a new identity and becomes a vigilante in a bid to atone for his sins. + + Jason Statham + Agata Buzek + Vicky McClure + + 2013 + Movies + Thriller + + + TVPG + + + 2 + + + + Blow Out + A sound man (John Travolta) re-creates a political murder-by-car-crash with a sight-and-sound montage. + + John Travolta + Nancy Allen + John Lithgow + + 1981 + Movies + Thriller + + + TVMA + + + 3 + + + + Robin Hood + An ousted Saxon nobleman (Patrick Bergin) turns Sherwood Forest outlaw to smite Norman villains and save Maid Marian (Uma Thurman). + + Patrick Bergin + Uma Thurman + Jürgen Prochnow + + 1991 + Movies + Action + + + TV14 + + + 2 + + + + Taxi + A bumbling policeman enlists the help of a skillful cab driver to chase Brazilian bank robbers through New York City. + + Queen Latifah + Jimmy Fallon + Jennifer Esposito + + 2004 + Movies + Comedy + + + TVG + + + 1 + + + + The New Guy + In jail, a teenager (D.J. Qualls) meets another inmate who shows him how to act cool at his high school. + + D.J. Qualls + Eliza Dushku + Zooey Deschanel + + 2002 + Movies + Comedy + + + TVG + + + 1 + + + + The New Guy + In jail, a teenager (D.J. Qualls) meets another inmate who shows him how to act cool at his high school. + + D.J. Qualls + Eliza Dushku + Zooey Deschanel + + 2002 + Movies + Comedy + + + TVG + + + 1 + + + + The Edge + A plane crash strands rivals (Anthony Hopkins, Alec Baldwin) in the Alaskan wilderness, where they contend with nature and a vicious kodiak bear. + + Anthony Hopkins + Alec Baldwin + Elle Macpherson + + 1997 + Movies + Adventure + + + TVPG + + + 2 + + + + Woman Walks Ahead + A headstrong New York painter embarks on a dangerous journey to meet Sitting Bull but must face off with an Army officer intent on war with the Native Americans. + + Jessica Chastain + Michael Greyeyes + Ciarán Hinds + + 2017 + Movies + Western + + + TVG + + + 2 + + + + Mud + On a Mississippi River island, two young friends (Tye Sheridan, Jacob Lofland) encounter a fugitive (Matthew McConaughey) whose wild tales about a beautiful woman and a line of bounty hunters come true. + + Matthew McConaughey + Tye Sheridan + Jacob Lofland + + 2013 + Movies + Drama + + + TVG + + + 3 + + + + Cyborg + A martial artist (Jean-Claude Van Damme) hunts a killer (Vincent Klyn) in a plague-infested urban dump of the future. + + Jean-Claude Van Damme + Debi Richter + Vincent Klyn + + 1989 + Movies + Sci-Fi + + + TVPG + + + 1 + + + + Me and Earl and the Dying Girl + An awkward high-school senior (Thomas Mann) and a gravely ill classmate (Olivia Cooke) surprise themselves by becoming inseparable friends. + + Thomas Mann + Olivia Cooke + Ronald Cyler II + + 2015 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + A Fistful of Dollars + Wandering gunfighter Joe arrives in the Mexican village of San Miguel in the midst of a power struggle among sheriff John Baxter and the three Rojo brothers. He is hired by Esteban Rojo to join their gang, but he plays one side against the other. + + Clint Eastwood + Marianne Koch + Joe Edger + + 1964 + Movies + Western + + + TVG + + + 3 + + + + Prince Avalanche + Two road-crew workers (Paul Rudd, Emile Hirsch) spend the summer of 1988 isolated and away from their city lives, eventually finding themselves at odds with each other and their women back home. + + Paul Rudd + Emile Hirsch + Lance LeGault + + 2013 + Movies + Comedy + Drama + + + TV14 + + + 3 + + + + John Carpenter's Escape From L.A. + The fascist U.S. president enlists a jailed war hero (Kurt Russell) to retrieve a top-secret device stolen by his daughter on island Los Angeles in 2013. + + Kurt Russell + Stacy Keach + Steve Buscemi + + 1996 + Movies + Action + + + TVPG + + + 2 + + + + (500) Days of Summer + After his girlfriend (Zooey Deschanel) dumps him, a greeting-card writer (Joseph Gordon-Levitt) reflects on their 500 days together to try to figure out where their love affair went wrong. + + Joseph Gordon-Levitt + Zooey Deschanel + Geoffrey Arend + + 2009 + Movies + Romance + + + TVG + + + 3 + + + + Office Space + A computer programmer's (Ron Livingston) hypnosis-induced, lackadaisical attitude about work puts him on the corporate fast-track. + + Ron Livingston + Jennifer Aniston + David Herman + + 1999 + Movies + Comedy + + + TVG + + + 2 + + + + Little Black Book + To learn more about his past, a young woman (Brittany Murphy) interviews three of her boyfriend's former sweethearts. + + Brittany Murphy + Holly Hunter + Kathy Bates + + 2004 + Movies + Romance + + + TVG + + + 2 + + + + Hustle & Flow + A pimp (Terrence Howard) in Memphis, Tenn., sees rap music as the way to escape his dead-end existence and achieve something meaningful. + + Terrence Howard + Anthony Anderson + Taryn Manning + + 2005 + Movies + Drama + + + TVPG + + + 3 + + + + I Love You, Beth Cooper + A nerdy high-school valedictorian proclaims his love for the hottest girl (Hayden Panettiere) in his school who later goes to his house to give him the night of his life. + + Hayden Panettiere + Paul Rust + Jack T. Capenter + + 2009 + Movies + Comedy + + + TVPG + + + 1 + + + + Thanks for Sharing + A recovering sex addict (Mark Ruffalo) tries not to fall off the wagon as he woos a new girlfriend (Gwyneth Paltrow) who feels the need to express her rampant sexuality. + + Mark Ruffalo + Gwyneth Paltrow + Tim Robbins + + 2012 + Movies + Drama + + + TVPG + + + 2 + + + + Thanks for Sharing + A recovering sex addict (Mark Ruffalo) tries not to fall off the wagon as he woos a new girlfriend (Gwyneth Paltrow) who feels the need to express her rampant sexuality. + + Mark Ruffalo + Gwyneth Paltrow + Tim Robbins + + 2012 + Movies + Drama + + + TVPG + + + 2 + + + + Blue Valentine + A couple (Ryan Gosling, Michelle Williams) find that they are powerless to stop the downward spiral of their marriage. + + Ryan Gosling + Michelle Williams + Faith Wladyka + + 2010 + Movies + Drama + + + TVPG + + + 3 + + + + Equals + Nia (Kristen Stewart) and Silas (Nicholas Hoult) begin a forbidden and passionate romance in a futuristic society where emotions have been outlawed, leading them to attempt a dangerous escape. + + Kristen Stewart + Nicholas Hoult + Guy Pearce + + 2015 + Movies + Sci-Fi + + + TVG + + + 2 + + + + Life After Beth + A guy (Dane DeHaan) discovers that his girlfriend (Aubrey Plaza) has returned from the dead, but his joy turns to horror as she slowly undergoes a horrible transformation. + + Aubrey Plaza + Dane DeHaan + John C. Reilly + + 2014 + Movies + Comedy + + + TVPG + + + 2 + + + + Predators + On an alien planet, a mercenary (Adrien Brody) and his ragtag band of fighters struggle to survive against an onslaught of fearsome warriors who hunt them for sport. + + Adrien Brody + Topher Grace + Alice Braga + + 2010 + Movies + Sci-Fi + + + TVPG + + + 2 + + + + How to Talk to Girls at Parties + Worlds collide when Enn, a shy teenager in 1970s London, meets the beautiful and rebellious Zan at a party. They set in motion the ultimate showdown between their rivaling worlds and test the limits of how far they will go for true love. + + Elle Fanning + Alex Sharp + Nicole Kidman + + 2017 + Movies + Romance + + + TVPG + + + 2 + + + + Whip It + Stifled in her mother's world of beauty pageants and conformity, a rebellious teen finds purpose and liberation in the ranks of a Texas roller-derby team. + + Ellen Page + Marcia Gay Harden + Kristen Wiig + + 2009 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + The Men Who Stare at Goats + A struggling reporter (Ewan McGregor) gets the scoop of a lifetime when he meets a soldier (George Clooney) who claims to be part of a paranormal military unit that has been reactivated for duty in Iraq. + + George Clooney + Jeff Bridges + Ewan McGregor + + 2009 + Movies + Comedy + + + TVPG + + + 2 + + + + Paycheck + After learning that his memory has been erased, a technical wizard (Ben Affleck) goes on the run to piece together clues from his past. + + Ben Affleck + Aaron Eckhart + Uma Thurman + + 2003 + Movies + Sci-Fi + + + TVG + + + 2 + + + + Rescue Dawn + During the Vietnam War, Dieter Dengler (Christian Bale), a U.S. fighter pilot, is shot down over Laos and taken captive by enemy soldiers. + + Christian Bale + Steve Zahn + Jeremy Davies + + 2006 + Movies + War + + + TVPG + + + 3 + + + + The Pick-Up Artist + A New York playboy (Robert Downey Jr.) finds a way to impress a girl (Molly Ringwald) set on getting her gambling father (Dennis Hopper) out of debt. + + Molly Ringwald + Robert Downey Jr. + Dennis Hopper + + 1987 + Movies + Romance + + + TVG + + + 2 + + + + Wild + Driven to the edge by the dissolution of her marriage and the death of her mother, a woman (Reese Witherspoon) undertakes a solo hike of more than 1,000 miles along the Pacific Crest Trail. + + Reese Witherspoon + Laura Dern + Thomas Sadoski + + 2014 + Movies + Drama + + + TVPG + + + 3 + + + + A Rodeo Film + A bull rider has an affair with his brother's wife. + + Jermelle Simon + Charlee Earle + Phrederic Semaj + + 2019 + Movies + Drama + + + + Milk + In San Francisco, Harvey Milk (Sean Penn) becomes the first openly gay man elected to a notable U.S. public office, before being assassinated by Dan White in 1978. + + Sean Penn + Emile Hirsch + Josh Brolin + + 2008 + Movies + Drama + + + TVG + + + 4 + + + + Road Trip + Friends (Seann William Scott, Breckin Meyer, D.J. Qualls) embark on a lengthy car trip to intercept an illicit videotape mistakenly mailed to one's girlfriend. + + Seann William Scott + Breckin Meyer + D.J. Qualls + + 2000 + Movies + Comedy + + + TVPG + + + 2 + + + + Road Trip + Friends (Seann William Scott, Breckin Meyer, D.J. Qualls) embark on a lengthy car trip to intercept an illicit videotape mistakenly mailed to one's girlfriend. + + Seann William Scott + Breckin Meyer + D.J. Qualls + + 2000 + Movies + Comedy + + + TVPG + + + 2 + + + + Fifty Shades Darker + Shadowy figures from Christian Grey's past threaten to destroy his rekindled romance with Anastasia Steele. + + Dakota Johnson + Jamie Dornan + Eric Johnson + + 2017 + Movies + Romance + + + TV14 + + + 2 + + + + Bullet Head + Three career criminals find themselves trapped in a warehouse with the law closing in and an even worse threat waiting inside. + + Antonio Banderas + Adrien Brody + John Malkovich + + 2017 + Movies + Crime Story + + + TVPG + + + + Killing Me Softly + A woman (Heather Graham) grows suspicious of her controlling husband (Joseph Fiennes) after she discovers secrets about the women in his past. + + Heather Graham + Joseph Fiennes + Natascha McElhone + + 2002 + Movies + Thriller + + + TV14 + + + 1 + + + + For a Few Dollars More + A man with no name (Clint Eastwood) and a man with a mission (Lee Van Cleef) hunt a Mexican bandit (Gian Maria Volonte) for different reasons. + + Clint Eastwood + Lee Van Cleef + Gian Maria Volonte + + 1965 + Movies + Western + + + TVG + + + 3 + + + + Cleopatra + The queen of Egypt (Elizabeth Taylor) seduces Julius Caesar (Rex Harrison), but when he is killed, she uses Mark Antony (Richard Burton) as her new protector. + + Elizabeth Taylor + Richard Burton + Rex Harrison + + 1963 + Movies + History + + + TVG + + + 3 + + + + John Dies at the End + A new drug promises out-of-body experiences, but users are coming back changed forever, and an otherworldly invasion of Earth is underway. + + Chase Williamson + Rob Mayes + Paul Giamatti + + 2012 + Movies + Horror + + + TVPG + + + 2 + + + + The Edge + A plane crash strands rivals (Anthony Hopkins, Alec Baldwin) in the Alaskan wilderness, where they contend with nature and a vicious kodiak bear. + + Anthony Hopkins + Alec Baldwin + Elle Macpherson + + 1997 + Movies + Adventure + + + TVPG + + + 2 + + + + Silent Hill: Revelation 3D + On the eve of her 18th birthday, a teenager (Adelaide Clemens) learns that she is not who she thinks she is, so she ventures deep into a demonic world that threatens to trap her forever. + + Adelaide Clemens + Kit Harington + Deborah Kara Unger + + 2012 + Movies + Horror + + + TVPG + + + 1 + + + + Poltergeist + Parapsychologists visit a family's (Sam Rockwell, Rosemarie DeWitt) home when sinister spirits hold their youngest daughter (Kennedi Clements) captive. + + Sam Rockwell + Rosemarie DeWitt + Kyle Catlett + + 2015 + Movies + Horror + + + TVPG + + + 2 + + + + Mass Ave + A racial profiling incident forever changes the relationship between a man and his son. + + Omete Anassi + Benjamin A. Onyango + + 2021 + Movies + Drama + + + TV14 + + + + A Storybook Ending + Two criminals try to blackmail a Black man after he accidentally kills a police officer in self-defense. + + Carra Patterson + Rotimi Paul + Toni Ann DeNoble + + 2020 + Movies + Thriller + + + + Woman Walks Ahead + A headstrong New York painter embarks on a dangerous journey to meet Sitting Bull but must face off with an Army officer intent on war with the Native Americans. + + Jessica Chastain + Michael Greyeyes + Ciarán Hinds + + 2017 + Movies + Western + + + TVG + + + 2 + + + + Major League + Lackluster baseball players (Tom Berenger, Charlie Sheen, Corbin Bernsen) hear their Cleveland team's new owner is counting on them to lose. + + Tom Berenger + Charlie Sheen + Corbin Bernsen + + 1989 + Movies + Comedy + + + TVG + + + 2 + + + + Horrible Bosses 2 + After a shady investor steals their new invention, Nick (Jason Bateman), Dale (Charlie Day) and Kurt (Jason Sudeikis) conspire to kidnap the man's adult son and ransom him to pay off their debts. + + Jason Bateman + Charlie Day + Jason Sudeikis + + 2014 + Movies + Comedy + + + TVPG + + + 2 + + + + Horrible Bosses 2 + After a shady investor steals their new invention, Nick (Jason Bateman), Dale (Charlie Day) and Kurt (Jason Sudeikis) conspire to kidnap the man's adult son and ransom him to pay off their debts. + + Jason Bateman + Charlie Day + Jason Sudeikis + + 2014 + Movies + Comedy + + + TVPG + + + 2 + + + + Redemption + A troubled war veteran assumes a new identity and becomes a vigilante in a bid to atone for his sins. + + Jason Statham + Agata Buzek + Vicky McClure + + 2013 + Movies + Thriller + + + TVPG + + + 2 + + + + Taxi + A bumbling policeman enlists the help of a skillful cab driver to chase Brazilian bank robbers through New York City. + + Queen Latifah + Jimmy Fallon + Jennifer Esposito + + 2004 + Movies + Comedy + + + TVG + + + 1 + + + + Heist + When their attempt to rob a gangster's (Robert De Niro) casino goes awry, a desperate man (Jeffrey Dean Morgan) and his partner (Dave Bautista) hijack a city bus to escape from the police and a maniacal thug (Morris Chestnut). + + Jeffrey Dean Morgan + Robert De Niro + Kate Bosworth + + 2015 + Movies + Action + + + TVPG + + + + The War of the Roses + A rich Washington couple (Michael Douglas, Kathleen Turner) surnamed Rose get a divorce, but they both get the house. + + Michael Douglas + Kathleen Turner + Danny DeVito + + 1989 + Movies + Comedy + + + TVPG + + + 3 + + + + Cracked + A feisty, young girl named Toya falls in love for the first time, but a series of disturbing events forces her to face her traumatic past. + + Tatum Marilyn Hall + Meliki Hurd + Dwayne R Grant + + 2021 + Movies + Drama + + + + The Verdict + A boozing lawyer (Paul Newman) takes on a law-firm dean (James Mason), the Archdiocese of Boston and the system in general. + + Paul Newman + Charlotte Rampling + James Mason + + 1982 + Movies + Drama + + + TVG + + + 3 + + + + Buffy the Vampire Slayer + Valley girl Buffy (Kristy Swanson) departs from cheerleading to train with her recruiter (Donald Sutherland) for a vampire invasion. + + Kristy Swanson + Luke Perry + Donald Sutherland + + 1992 + Movies + Comedy + + + TVG + + + 1 + + + + John Carpenter's Escape From L.A. + The fascist U.S. president enlists a jailed war hero (Kurt Russell) to retrieve a top-secret device stolen by his daughter on island Los Angeles in 2013. + + Kurt Russell + Stacey Keach + Steve Buscemi + + 1996 + Movies + Action + + + TVPG + + + 2 + + + + (500) Days of Summer + After his girlfriend (Zooey Deschanel) dumps him, a greeting-card writer (Joseph Gordon-Levitt) reflects on their 500 days together to try to figure out where their love affair went wrong. + + Joseph Gordon-Levitt + Zooey Deschanel + Geoffrey Arend + + 2009 + Movies + Romance + + + TVG + + + 3 + + + + Wild + Driven to the edge by the dissolution of her marriage and the death of her mother, a woman (Reese Witherspoon) undertakes a solo hike of more than 1,000 miles along the Pacific Crest Trail. + + Reese Witherspoon + Laura Dern + Thomas Sadoski + + 2014 + Movies + Drama + + + TVPG + + + 3 + + + + Road Trip + Friends (Seann William Scott, Breckin Meyer, D.J. Qualls) embark on a lengthy car trip to intercept an illicit videotape mistakenly mailed to one's girlfriend. + + Seann William Scott + Breckin Meyer + D.J. Qualls + + 2000 + Movies + Comedy + + + TVPG + + + 2 + + + + Poltergeist II: The Other Side + An American Indian helps a broke and homeless family (JoBeth Williams, Craig T. Nelson), once again prey to a poltergeist (Julian Beck). + + JoBeth Williams + Craig T. Nelson + Julian Beck + + 1986 + Movies + Horror + + + TVPG + + + 2 + + + + Big Momma's House 2 + An FBI agent (Martin Lawrence) reprises his disguise as a corpulent old lady and takes a job as a nanny in a crime suspect's house. + + Martin Lawrence + Nia Long + Emily Procter + + 2006 + Movies + Comedy + + + TVG + + + 1 + + + + Cyborg + A martial artist (Jean-Claude Van Damme) hunts a killer (Vincent Klyn) in a plague-infested urban dump of the future. + + Jean-Claude Van Damme + Debi Richter + Vincent Klyn + + 1989 + Movies + Sci-Fi + + + TVPG + + + 1 + + + + The New Guy + In jail, a teenager (D.J. Qualls) meets another inmate who shows him how to act cool at his high school. + + D.J. Qualls + Eliza Dushku + Zooey Deschanel + + 2002 + Movies + Comedy + + + TVG + + + 1 + + + + The New Guy + In jail, a teenager (D.J. Qualls) meets another inmate who shows him how to act cool at his high school. + + D.J. Qualls + Eliza Dushku + Zooey Deschanel + + 2002 + Movies + Comedy + + + TVG + + + 1 + + + + The Man From U.N.C.L.E. + During the Cold War, CIA agent Napoleon Solo (Henry Cavill) and KGB agent Illya Kuryakin (Armie Hammer) join forces to infiltrate a criminal organization which plans to use nuclear means to upset the balance of power. + + Henry Cavill + Armie Hammer + Alicia Vikander + + 2015 + Movies + Action + + + TVG + + + 2 + + + + Never Grow Old + An Irish undertaker profits when outlaws take over a peaceful American frontier town, but his family comes under threat as the death toll rises. + + Emile Hirsch + John Cusack + Danny Webb + + 2019 + Movies + Western + + + TVPG + + + + Under the Same Moon + After his grandmother dies, a Mexican boy (Adrian Alonso) sets out to join his mother (Kate del Castillo) in the United States. + + Adrian Alonso + Kate del Castillo + Eugenio Derbez + + 2007 + Movies + Drama + + + TVG + + + 3 + + + + Unmothered + A rebellious American woman discovers a serious secret about her funny family when she returns to India to immerse her mother's ashes. + + Sharayu Mahale + Ivan Rodrigues + Ankit Varshneya + + 2020 + Movies + Drama + + + + Fifty Shades Freed + Believing they've left behind the shadowy figures from the past, Christian Grey and his new wife, Anastasia, fully embrace their inextricable connection -- until sinister events start to jeopardize their happy ending before it even begins. + + Dakota Johnson + Jamie Dornan + Eric Johnson + + 2018 + Movies + Romance + + + TV14 + + + 1 + + + + The Outsiders + In 1960s Oklahoma a sensitive youth (C. Thomas Howell) gets in over his head when his best friend (Ralph Macchio) kills a member of a rival gang. + + Matt Dillon + C. Thomas Howell + Ralph Macchio + + 1983 + Movies + Drama + + + TVG + + + 2 + + + + I Love You, Beth Cooper + A nerdy high-school valedictorian proclaims his love for the hottest girl (Hayden Panettiere) in his school who later goes to his house to give him the night of his life. + + Hayden Panettiere + Paul Rust + Jack T. Capenter + + 2009 + Movies + Comedy + + + TVPG + + + 1 + + + + Major League + Lackluster baseball players (Tom Berenger, Charlie Sheen, Corbin Bernsen) hear their Cleveland team's new owner is counting on them to lose. + + Tom Berenger + Charlie Sheen + Corbin Bernsen + + 1989 + Movies + Comedy + + + TVG + + + 2 + + + + Unbreakable + The sole survivor (Bruce Willis) of a horrific train crash, questioning his existence, finds counsel in a mysterious stranger (Samuel L. Jackson). + + Bruce Willis + Samuel L. Jackson + Robin Wright + + 2000 + Movies + Thriller + + + TVG + + + 2 + + + + Killing Me Softly + A woman (Heather Graham) grows suspicious of her controlling husband (Joseph Fiennes) after she discovers secrets about the women in his past. + + Heather Graham + Joseph Fiennes + Natascha McElhone + + 2002 + Movies + Thriller + + + TV14 + + + 1 + + + + Predator + A sneaky alien monster attacks commandos (Arnold Schwarzenegger, Carl Weathers, Jesse Ventura) on a jungle mission in South America. + + Arnold Schwarzenegger + Carl Weathers + Jesse Ventura + + 1987 + Movies + Action + + + TVPG + + + 3 + + + + I Love You, Beth Cooper + A nerdy high-school valedictorian proclaims his love for the hottest girl (Hayden Panettiere) in his school who later goes to his house to give him the night of his life. + + Hayden Panettiere + Paul Rust + Jack T. Capenter + + 2009 + Movies + Comedy + + + TVPG + + + 1 + + + + Thanks for Sharing + A recovering sex addict (Mark Ruffalo) tries not to fall off the wagon as he woos a new girlfriend (Gwyneth Paltrow) who feels the need to express her rampant sexuality. + + Mark Ruffalo + Gwyneth Paltrow + Tim Robbins + + 2012 + Movies + Drama + + + TVPG + + + 2 + + + + Blue Valentine + A couple (Ryan Gosling, Michelle Williams) find that they are powerless to stop the downward spiral of their marriage. + + Ryan Gosling + Michelle Williams + Faith Wladyka + + 2010 + Movies + Drama + + + TVPG + + + 3 + + + + Blue Valentine + A couple (Ryan Gosling, Michelle Williams) find that they are powerless to stop the downward spiral of their marriage. + + Ryan Gosling + Michelle Williams + Faith Wladyka + + 2010 + Movies + Drama + + + TVPG + + + 3 + + + + Equals + Nia (Kristen Stewart) and Silas (Nicholas Hoult) begin a forbidden and passionate romance in a futuristic society where emotions have been outlawed, leading them to attempt a dangerous escape. + + Kristen Stewart + Nicholas Hoult + Guy Pearce + + 2015 + Movies + Sci-Fi + + + TVG + + + 2 + + + + Life After Beth + A guy (Dane DeHaan) discovers that his girlfriend (Aubrey Plaza) has returned from the dead, but his joy turns to horror as she slowly undergoes a horrible transformation. + + Aubrey Plaza + Dane DeHaan + John C. Reilly + + 2014 + Movies + Comedy + + + TVPG + + + 2 + + + + Predators + On an alien planet, a mercenary (Adrien Brody) and his ragtag band of fighters struggle to survive against an onslaught of fearsome warriors who hunt them for sport. + + Adrien Brody + Topher Grace + Alice Braga + + 2010 + Movies + Sci-Fi + + + TVPG + + + 2 + + + + How to Talk to Girls at Parties + Worlds collide when Enn, a shy teenager in 1970s London, meets the beautiful and rebellious Zan at a party. They set in motion the ultimate showdown between their rivaling worlds and test the limits of how far they will go for true love. + + Elle Fanning + Alex Sharp + Nicole Kidman + + 2017 + Movies + Romance + + + TVPG + + + 2 + + + + Whip It + Stifled in her mother's world of beauty pageants and conformity, a rebellious teen finds purpose and liberation in the ranks of a Texas roller-derby team. + + Ellen Page + Marcia Gay Harden + Kristen Wiig + + 2009 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + The Men Who Stare at Goats + A struggling reporter (Ewan McGregor) gets the scoop of a lifetime when he meets a soldier (George Clooney) who claims to be part of a paranormal military unit that has been reactivated for duty in Iraq. + + George Clooney + Jeff Bridges + Ewan McGregor + + 2009 + Movies + Comedy + + + TVPG + + + 2 + + + + Paycheck + After learning that his memory has been erased, a technical wizard (Ben Affleck) goes on the run to piece together clues from his past. + + Ben Affleck + Aaron Eckhart + Uma Thurman + + 2003 + Movies + Sci-Fi + + + TVG + + + 2 + + + + Rescue Dawn + During the Vietnam War, Dieter Dengler (Christian Bale), a U.S. fighter pilot, is shot down over Laos and taken captive by enemy soldiers. + + Christian Bale + Steve Zahn + Jeremy Davies + + 2006 + Movies + War + + + TVPG + + + 3 + + + + The Pick-Up Artist + A New York playboy (Robert Downey Jr.) finds a way to impress a girl (Molly Ringwald) set on getting her gambling father (Dennis Hopper) out of debt. + + Molly Ringwald + Robert Downey Jr. + Dennis Hopper + + 1987 + Movies + Romance + + + TVG + + + 2 + + + + Wild + Driven to the edge by the dissolution of her marriage and the death of her mother, a woman (Reese Witherspoon) undertakes a solo hike of more than 1,000 miles along the Pacific Crest Trail. + + Reese Witherspoon + Laura Dern + Thomas Sadoski + + 2014 + Movies + Drama + + + TVPG + + + 3 + + + + A Rodeo Film + A bull rider has an affair with his brother's wife. + + Jermelle Simon + Charlee Earle + Phrederic Semaj + + 2019 + Movies + Drama + + + + Milk + In San Francisco, Harvey Milk (Sean Penn) becomes the first openly gay man elected to a notable U.S. public office, before being assassinated by Dan White in 1978. + + Sean Penn + Emile Hirsch + Josh Brolin + + 2008 + Movies + Drama + + + TVG + + + 4 + + + + Road Trip + Friends (Seann William Scott, Breckin Meyer, D.J. Qualls) embark on a lengthy car trip to intercept an illicit videotape mistakenly mailed to one's girlfriend. + + Seann William Scott + Breckin Meyer + D.J. Qualls + + 2000 + Movies + Comedy + + + TVPG + + + 2 + + + + Fifty Shades Darker + Shadowy figures from Christian Grey's past threaten to destroy his rekindled romance with Anastasia Steele. + + Dakota Johnson + Jamie Dornan + Eric Johnson + + 2017 + Movies + Romance + + + TV14 + + + 2 + + + + Bullet Head + Three career criminals find themselves trapped in a warehouse with the law closing in and an even worse threat waiting inside. + + Antonio Banderas + Adrien Brody + John Malkovich + + 2017 + Movies + Crime Story + + + TVPG + + + + Bullet Head + Three career criminals find themselves trapped in a warehouse with the law closing in and an even worse threat waiting inside. + + Antonio Banderas + Adrien Brody + John Malkovich + + 2017 + Movies + Crime Story + + + TVPG + + + + Killing Me Softly + A woman (Heather Graham) grows suspicious of her controlling husband (Joseph Fiennes) after she discovers secrets about the women in his past. + + Heather Graham + Joseph Fiennes + Natascha McElhone + + 2002 + Movies + Thriller + + + TV14 + + + 1 + + + + For a Few Dollars More + A man with no name (Clint Eastwood) and a man with a mission (Lee Van Cleef) hunt a Mexican bandit (Gian Maria Volonte) for different reasons. + + Clint Eastwood + Lee Van Cleef + Gian Maria Volonte + + 1965 + Movies + Western + + + TVG + + + 3 + + + + Cleopatra + The queen of Egypt (Elizabeth Taylor) seduces Julius Caesar (Rex Harrison), but when he is killed, she uses Mark Antony (Richard Burton) as her new protector. + + Elizabeth Taylor + Richard Burton + Rex Harrison + + 1963 + Movies + History + + + TVG + + + 3 + + + + John Dies at the End + A new drug promises out-of-body experiences, but users are coming back changed forever, and an otherworldly invasion of Earth is underway. + + Chase Williamson + Rob Mayes + Paul Giamatti + + 2012 + Movies + Horror + + + TVPG + + + 2 + + + + The Edge + A plane crash strands rivals (Anthony Hopkins, Alec Baldwin) in the Alaskan wilderness, where they contend with nature and a vicious kodiak bear. + + Anthony Hopkins + Alec Baldwin + Elle Macpherson + + 1997 + Movies + Adventure + + + TVPG + + + 2 + + + + Silent Hill: Revelation 3D + On the eve of her 18th birthday, a teenager (Adelaide Clemens) learns that she is not who she thinks she is, so she ventures deep into a demonic world that threatens to trap her forever. + + Adelaide Clemens + Kit Harington + Deborah Kara Unger + + 2012 + Movies + Horror + + + TVPG + + + 1 + + + + Poltergeist + Parapsychologists visit a family's (Sam Rockwell, Rosemarie DeWitt) home when sinister spirits hold their youngest daughter (Kennedi Clements) captive. + + Sam Rockwell + Rosemarie DeWitt + Kyle Catlett + + 2015 + Movies + Horror + + + TVPG + + + 2 + + + + Mass Ave + A racial profiling incident forever changes the relationship between a man and his son. + + Omete Anassi + Benjamin A. Onyango + + 2021 + Movies + Drama + + + TV14 + + + + A Storybook Ending + Two criminals try to blackmail a Black man after he accidentally kills a police officer in self-defense. + + Carra Patterson + Rotimi Paul + Toni Ann DeNoble + + 2020 + Movies + Thriller + + + + Woman Walks Ahead + A headstrong New York painter embarks on a dangerous journey to meet Sitting Bull but must face off with an Army officer intent on war with the Native Americans. + + Jessica Chastain + Michael Greyeyes + Ciarán Hinds + + 2017 + Movies + Western + + + TVG + + + 2 + + + + Major League + Lackluster baseball players (Tom Berenger, Charlie Sheen, Corbin Bernsen) hear their Cleveland team's new owner is counting on them to lose. + + Tom Berenger + Charlie Sheen + Corbin Bernsen + + 1989 + Movies + Comedy + + + TVG + + + 2 + + + + Horrible Bosses 2 + After a shady investor steals their new invention, Nick (Jason Bateman), Dale (Charlie Day) and Kurt (Jason Sudeikis) conspire to kidnap the man's adult son and ransom him to pay off their debts. + + Jason Bateman + Charlie Day + Jason Sudeikis + + 2014 + Movies + Comedy + + + TVPG + + + 2 + + + + Redemption + A troubled war veteran assumes a new identity and becomes a vigilante in a bid to atone for his sins. + + Jason Statham + Agata Buzek + Vicky McClure + + 2013 + Movies + Thriller + + + TVPG + + + 2 + + + + Taxi + A bumbling policeman enlists the help of a skillful cab driver to chase Brazilian bank robbers through New York City. + + Queen Latifah + Jimmy Fallon + Jennifer Esposito + + 2004 + Movies + Comedy + + + TVG + + + 1 + + + + Taxi + A bumbling policeman enlists the help of a skillful cab driver to chase Brazilian bank robbers through New York City. + + Queen Latifah + Jimmy Fallon + Jennifer Esposito + + 2004 + Movies + Comedy + + + TVG + + + 1 + + + + Heist + When their attempt to rob a gangster's (Robert De Niro) casino goes awry, a desperate man (Jeffrey Dean Morgan) and his partner (Dave Bautista) hijack a city bus to escape from the police and a maniacal thug (Morris Chestnut). + + Jeffrey Dean Morgan + Robert De Niro + Kate Bosworth + + 2015 + Movies + Action + + + TVPG + + + + The War of the Roses + A rich Washington couple (Michael Douglas, Kathleen Turner) surnamed Rose get a divorce, but they both get the house. + + Michael Douglas + Kathleen Turner + Danny DeVito + + 1989 + Movies + Comedy + + + TVPG + + + 3 + + + + Cracked + A feisty, young girl named Toya falls in love for the first time, but a series of disturbing events forces her to face her traumatic past. + + Tatum Marilyn Hall + Meliki Hurd + Dwayne R Grant + + 2021 + Movies + Drama + + + + The Verdict + A boozing lawyer (Paul Newman) takes on a law-firm dean (James Mason), the Archdiocese of Boston and the system in general. + + Paul Newman + Charlotte Rampling + James Mason + + 1982 + Movies + Drama + + + TVG + + + 3 + + + + Buffy the Vampire Slayer + Valley girl Buffy (Kristy Swanson) departs from cheerleading to train with her recruiter (Donald Sutherland) for a vampire invasion. + + Kristy Swanson + Luke Perry + Donald Sutherland + + 1992 + Movies + Comedy + + + TVG + + + 1 + + + + John Carpenter's Escape From L.A. + The fascist U.S. president enlists a jailed war hero (Kurt Russell) to retrieve a top-secret device stolen by his daughter on island Los Angeles in 2013. + + Kurt Russell + Stacey Keach + Steve Buscemi + + 1996 + Movies + Action + + + TVPG + + + 2 + + + + (500) Days of Summer + After his girlfriend (Zooey Deschanel) dumps him, a greeting-card writer (Joseph Gordon-Levitt) reflects on their 500 days together to try to figure out where their love affair went wrong. + + Joseph Gordon-Levitt + Zooey Deschanel + Geoffrey Arend + + 2009 + Movies + Romance + + + TVG + + + 3 + + + + Wild + Driven to the edge by the dissolution of her marriage and the death of her mother, a woman (Reese Witherspoon) undertakes a solo hike of more than 1,000 miles along the Pacific Crest Trail. + + Reese Witherspoon + Laura Dern + Thomas Sadoski + + 2014 + Movies + Drama + + + TVPG + + + 3 + + + + Road Trip + Friends (Seann William Scott, Breckin Meyer, D.J. Qualls) embark on a lengthy car trip to intercept an illicit videotape mistakenly mailed to one's girlfriend. + + Seann William Scott + Breckin Meyer + D.J. Qualls + + 2000 + Movies + Comedy + + + TVPG + + + 2 + + + + Poltergeist II: The Other Side + An American Indian helps a broke and homeless family (JoBeth Williams, Craig T. Nelson), once again prey to a poltergeist (Julian Beck). + + JoBeth Williams + Craig T. Nelson + Julian Beck + + 1986 + Movies + Horror + + + TVPG + + + 2 + + + + Big Momma's House 2 + An FBI agent (Martin Lawrence) reprises his disguise as a corpulent old lady and takes a job as a nanny in a crime suspect's house. + + Martin Lawrence + Nia Long + Emily Procter + + 2006 + Movies + Comedy + + + TVG + + + 1 + + + + Cyborg + A martial artist (Jean-Claude Van Damme) hunts a killer (Vincent Klyn) in a plague-infested urban dump of the future. + + Jean-Claude Van Damme + Debi Richter + Vincent Klyn + + 1989 + Movies + Sci-Fi + + + TVPG + + + 1 + + + + The New Guy + In jail, a teenager (D.J. Qualls) meets another inmate who shows him how to act cool at his high school. + + D.J. Qualls + Eliza Dushku + Zooey Deschanel + + 2002 + Movies + Comedy + + + TVG + + + 1 + + + + The Man From U.N.C.L.E. + During the Cold War, CIA agent Napoleon Solo (Henry Cavill) and KGB agent Illya Kuryakin (Armie Hammer) join forces to infiltrate a criminal organization which plans to use nuclear means to upset the balance of power. + + Henry Cavill + Armie Hammer + Alicia Vikander + + 2015 + Movies + Action + + + TVG + + + 2 + + + + Never Grow Old + An Irish undertaker profits when outlaws take over a peaceful American frontier town, but his family comes under threat as the death toll rises. + + Emile Hirsch + John Cusack + Danny Webb + + 2019 + Movies + Western + + + TVPG + + + + Never Grow Old + An Irish undertaker profits when outlaws take over a peaceful American frontier town, but his family comes under threat as the death toll rises. + + Emile Hirsch + John Cusack + Danny Webb + + 2019 + Movies + Western + + + TVPG + + + + Under the Same Moon + After his grandmother dies, a Mexican boy (Adrian Alonso) sets out to join his mother (Kate del Castillo) in the United States. + + Adrian Alonso + Kate del Castillo + Eugenio Derbez + + 2007 + Movies + Drama + + + TVG + + + 3 + + + + Unmothered + A rebellious American woman discovers a serious secret about her funny family when she returns to India to immerse her mother's ashes. + + Sharayu Mahale + Ivan Rodrigues + Ankit Varshneya + + 2020 + Movies + Drama + + + + Fifty Shades Freed + Believing they've left behind the shadowy figures from the past, Christian Grey and his new wife, Anastasia, fully embrace their inextricable connection -- until sinister events start to jeopardize their happy ending before it even begins. + + Dakota Johnson + Jamie Dornan + Eric Johnson + + 2018 + Movies + Romance + + + TV14 + + + 1 + + + + The Outsiders + In 1960s Oklahoma a sensitive youth (C. Thomas Howell) gets in over his head when his best friend (Ralph Macchio) kills a member of a rival gang. + + Matt Dillon + C. Thomas Howell + Ralph Macchio + + 1983 + Movies + Drama + + + TVG + + + 2 + + + + I Love You, Beth Cooper + A nerdy high-school valedictorian proclaims his love for the hottest girl (Hayden Panettiere) in his school who later goes to his house to give him the night of his life. + + Hayden Panettiere + Paul Rust + Jack T. Capenter + + 2009 + Movies + Comedy + + + TVPG + + + 1 + + + + Major League + Lackluster baseball players (Tom Berenger, Charlie Sheen, Corbin Bernsen) hear their Cleveland team's new owner is counting on them to lose. + + Tom Berenger + Charlie Sheen + Corbin Bernsen + + 1989 + Movies + Comedy + + + TVG + + + 2 + + + + Unbreakable + The sole survivor (Bruce Willis) of a horrific train crash, questioning his existence, finds counsel in a mysterious stranger (Samuel L. Jackson). + + Bruce Willis + Samuel L. Jackson + Robin Wright + + 2000 + Movies + Thriller + + + TVG + + + 2 + + + + Killing Me Softly + A woman (Heather Graham) grows suspicious of her controlling husband (Joseph Fiennes) after she discovers secrets about the women in his past. + + Heather Graham + Joseph Fiennes + Natascha McElhone + + 2002 + Movies + Thriller + + + TV14 + + + 1 + + + + Predator + A sneaky alien monster attacks commandos (Arnold Schwarzenegger, Carl Weathers, Jesse Ventura) on a jungle mission in South America. + + Arnold Schwarzenegger + Carl Weathers + Jesse Ventura + + 1987 + Movies + Action + + + TVPG + + + 3 + + + + I Used to Go Here + A successful author finds herself deeply enmeshed in the lives of a group of college students after being asked to speak at her alma mater. + + Gillian Jacobs + Jemaine Clement + Josh Wiggins + + 2020 + Movies + Comedy + + + + Road Trip + Friends (Seann William Scott, Breckin Meyer, D.J. Qualls) embark on a lengthy car trip to intercept an illicit videotape mistakenly mailed to one's girlfriend. + + Seann William Scott + Breckin Meyer + D.J. Qualls + + 2000 + Movies + Comedy + + + TVPG + + + 2 + + + + The First 48 + Fighting Words; Signs of Violence + Detectives hope neighbors can provide information on the slaying of a Dallas father; suspects in the killing of a deaf man may be linked to an earlier unsolved murder. + Reality TV + Legal + + + TVPG + + + + The First 48 + The Breakup; No Good Deed + A young woman is found dead behind an abandoned building in Mobile, Ala., and detectives need her boyfriend to help solve the case; a young father's murder case sends Atlanta detectives to the Pocono Mountains in search of his killers. + Reality TV + Legal + + + TV14 + + + + The First 48 + Bad Influence & Vicious Circle + In Atlanta, a young man is killed in an apartment when a scheme to make easy money goes wrong; a beloved mother is murdered in a drive-by shooting leading St. Louis detectives to a neighborhood turf war. + Reality TV + Legal + + + TVPG + + + + The First 48 + Final Word + In Mobile, Ala., a man is gunned down in front of his family, and it's up to Detective Jermaine Rogers to sift through differing accounts of the incident to find the truth. + Reality TV + Legal + + + TVPG + + + + The First 48 + I Killed + When a man is found inside of a truck, stabbed 45 times, a bilingual Tulsa community comes together to help Detective Mark Kennedy identify the victim and track down his killer. + Reality TV + Legal + + + TVPG + + + + The First 48 + Death in the Family/Love Lost + In Tulsa, Okla., a woman is found dumped in a hospital parking lot after someone she trusts crosses the line; in Mobile, Ala., a jealous rage leaves a father of nine dead and threatens to tear his family apart. + Reality TV + Legal + + + TVPG + + + + The First 48 + A Beautiful Life + A young Tulsa father is shot several times in his driveway after putting his 1-year-old daughter to bed; Detective Jason White hopes a pill bottle found on the scene will help lead to the killer. + Reality TV + Legal + + + TVPG + + + + The First 48 + Final Word + In Mobile, Ala., a man is gunned down in front of his family, and it's up to Detective Jermaine Rogers to sift through differing accounts of the incident to find the truth. + Reality TV + Legal + + + TVPG + + + + The First 48 + I Killed + When a man is found inside of a truck, stabbed 45 times, a bilingual Tulsa community comes together to help Detective Mark Kennedy identify the victim and track down his killer. + Reality TV + Legal + + + TVPG + + + + The First 48 + Death in the Family/Love Lost + In Tulsa, Okla., a woman is found dumped in a hospital parking lot after someone she trusts crosses the line; in Mobile, Ala., a jealous rage leaves a father of nine dead and threatens to tear his family apart. + Reality TV + Legal + + + TVPG + + + + The First 48 + Death in the Family/Love Lost + In Tulsa, Okla., a woman is found dumped in a hospital parking lot after someone she trusts crosses the line; in Mobile, Ala., a jealous rage leaves a father of nine dead and threatens to tear his family apart. + Reality TV + Legal + + + TVPG + + + + The First 48 + A Beautiful Life + A young Tulsa father is shot several times in his driveway after putting his 1-year-old daughter to bed; Detective Jason White hopes a pill bottle found on the scene will help lead to the killer. + Reality TV + Legal + + + TVPG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Cindy Crawford and Ellen Pompeo share secrets + Join Cindy Crawford and Ellen Pompeo as they discuss their busy lives and the breakthrough skin care discovery that keeps them looking their best. Take a trip to the stunning French countryside to see a rare French melon that defies aging. + Paid Program + + + + The Key of David + Presenter Gerald Flurry discusses world events in the light of end-time Bible prophecy. + Paid Program + + + + Creflo Dollar + Dr. Creflo Dollar ministers to people from all backgrounds with hopes for change; Creflo helps viewers find ways to renew their faith, mind, and spirit; Creflo and his wife Taffi share their vision for everyone to understand God's love and promises. + Religious + + + TVG + + + + The Potter's Touch + Bishop T.D. Jakes offers practical and spiritual solutions to life's toughest questions. + Religious + + + TVG + + + + Zombie House Flipping + A Million Dollar Gamble + The team wants to tear down a tiny house, but Duke convinces them to save the house and its vintage bathrooms. + Reality TV + Home + + + TVPG + + + + Zombie House Flipping + The Partnership Project + A potentially lucrative partnership involving a lakefront zombie turns into a nightmare when Mark meddles in everyone's work, bringing stubborn opinions and last-minute redesigns that threaten to drain the team's profits to nothing. + Reality TV + Home + + + TVPG + + + + Zombie House Flipping + Dallas: Lake Cliff + Derek sees big profit potential when he buys a crumbling old house in a nice neighborhood; Chauncey is skeptical of the half-finished work and the small square footage. + Reality TV + Home + + + TVPG + + + + Zombie House Flipping + Dallas: Beechmont + Derek and Chauncey buy an ugly, bug-infested zombie in Casa Linda, and they have high hopes of turning it around in only 30 days; the Dream Team encounters plumbing problems, cabinet calamities, and an actual burglary. + Reality TV + Home + + + TVPG + + + + Zombie House Flipping + Spruce + When the zombie team spots a small, rundown bungalow in a highly sought-after neighborhood, they have visions of a steal of a deal that could earn a big paycheck; hidden problems like wood rot and termite infestation start demolishing their budget. + Reality TV + Home + + + TVPG + + + + Zombie House Flipping + Hourglass + The zombie flippers uncover a flag lot property -- a house tucked behind another with a narrow access; there's a property line dispute with the neighbor, but the lakefront location and low price are too tantalizing to pass up. + Reality TV + Home + + + TVPG + + + + Accused: Guilty or Innocent? + Killer Driver or Medical Emergency? + A man falls asleep while driving and kills a construction worker on the road. + Legal + Documentary + + + TV14 + + + + Accused: Guilty or Innocent? + Murdered My Tenant or Self-Defense? + When a landlord shoots a problem tenant dead in Florida, police and prosecutors act swiftly and charge him with murder; the landlord claims that the tenant was carrying a machete at the time of the shooting and threatened to kill him. + Legal + Documentary + + + TV14 + + + + Accused: Guilty or Innocent? + Cold Case Killer or Innocent Teenage Girl? + A murder remains unsolved for 10 years; police finally have a suspect, but the accused would have been 13 years old at the time. + Legal + Documentary + + + TV14 + + + + Accused: Guilty or Innocent? + Road Rage Vigilante or Family Protector? + In the chaos after a car crash, a veteran shoots out the tire of another driver's vehicle; now, he is facing up to 20 years in prison. + Legal + Documentary + + + TV14 + + + + The First 48 + Cruel Intentions + Mobile, Ala., detectives investigate the murder of a young mother of two and unravel the deadly plot that took her life. + Reality TV + Legal + + + TV14 + + + + The First 48 + Carjacked; Bad Connection + A police deputy races the clock to find the killer of an unidentified man found in a field; a shooting victim is found in an abandoned apartment. + Reality TV + Legal + + + TVPG + + + + The First 48 + Dark Waters + The case of a missing New Orleans couple takes an ominous turn when one of them is found dead in a river. + Reality TV + Legal + + + TV14 + + + + The First 48 + Out of the Darkness + In Tulsa, two families devastated by domestic violence look to detectives to find justice for their loved ones. + Reality TV + Legal + + + TVPG + + + + The First 48 + Truly Lost + When two young men are shot and killed in a car, Gwinnett County Homicide turns to the survivors to learn the truth about what led to the shooting. + Reality TV + Legal + + + TV14 + + + + The First 48 + Truly Lost + When two young men are shot and killed in a car, Gwinnett County Homicide turns to the survivors to learn the truth about what led to the shooting. + Reality TV + Legal + + + TV14 + + + + The First 48 + Old Habits + Old habits die hard when a young father gets out of prison and is drawn back into his old life; after he's shot dead, Tulsa, Okla., homicide must sort through a web of lies to find out who killed him. + Reality TV + Legal + + + TVPG + + + + The First 48 + Road Rage + When a father of three is gunned down after confronting a hit-and-run driver, Mobile detectives struggle to find clues that will lead them to his killer. + Reality TV + Legal + + + TVPG + + + + The First 48 + Out of the Darkness + In Tulsa, two families devastated by domestic violence look to detectives to find justice for their loved ones. + Reality TV + Legal + + + TVPG + + + + The First 48 + Truly Lost + When two young men are shot and killed in a car, Gwinnett County Homicide turns to the survivors to learn the truth about what led to the shooting. + Reality TV + Legal + + + TV14 + + + + The First 48 + Old Habits + Old habits die hard when a young father gets out of prison and is drawn back into his old life; after he's shot dead, Tulsa, Okla., homicide must sort through a web of lies to find out who killed him. + Reality TV + Legal + + + TVPG + + + + The First 48 + Road Rage + When a father of three is gunned down after confronting a hit-and-run driver, Mobile detectives struggle to find clues that will lead them to his killer. + Reality TV + Legal + + + TVPG + + + + Car accident? Free Legal Consultation + Legal professionals standing by to answer your questions. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Help Israel & Ukraine + There is an urgent need to help Jews suffering in Israel, Ukraine, and around the world. Act now and support the International Fellowship of Christians and Jews in their lifesaving work. + Paid Program + + + + David Jeremiah + Dr. David Jeremiah's goal is to deliver the unchanging Word of God to an ever-changing world. + Religious + + + TVG + + + + Joni: Table Talk + Joni and guests tackle a wide range of relevant issues, controversial subjects and hard-hitting news topics with candor and wit. + Religious + Talk Shows + + + TVG + + + + Parking Wars + A man with a gun is upset about his booted car; an attractive ticket-writer dishes out tough love. + Reality TV + + + TVPG + + + + Parking Wars + Rookie encounters an irate citizen; uncooperative partiers. + Reality TV + + + TVPG + + + + Parking Wars + Citizens become irate after their cars are booted; Marylin issues tickets in a rowdy neighborhood. + Reality TV + + + TVPG + + + + Parking Wars + Pizza shop employees think they are above the law; an exotic dancer calls on ex-lovers for help. + Reality TV + + + TVPG + + + + Parking Wars + Kim runs into verbal abuse from angry Detroit citizens who think the city is to blame for their tickets; in Philly, a young man tries to alter his expired registration to free his impounded car. + Reality TV + + + TVPG + + + + Parking Wars + A woman calls police on a ticket writer; a man uses his kids to try to stop a towing. + Reality TV + + + TVPG + + + + Interrogation Raw + Stone Cold Murder + After a man gets gunned down outside a local shop, authorities interrogate two of his acquaintances to find out which one of them pulled the trigger; the interrogation of a woman accused of mowing down two children with her car. + Reality TV + + + TV14 + + + + Interrogation Raw + Murderous Friendship + A young mother mysteriously vanishes; as Pensacola investigators untangle a complicated web of friendships and finances, the woman she was last seen with is brought into the interrogation room. + Reality TV + + + TV14 + + + + Interrogation Raw + Murdered Amongst Friends + After 22 years, a local news story reignites a decades-old cold case, leading investigators to question a close-knit circle of friends who they believe are hiding the truth about the disappearance of a 25-year-old man. + Reality TV + + + TV14 + + + + The First 48 + The House on Madrona Street + An Atlanta woman is found naked and strangled to death in an abandoned house; the investigation into the crime reveals more disturbing facts. + Reality TV + Legal + + + TV14 + + + + The First 48 + Mother of Two + Tulsa, Okla., police believe that a dark obsession may have turned deadly as they probe the case of a young mother found naked and strangled in her car. + Reality TV + Legal + + + TV14 + + + + The First 48 + Trust No One; Risky Business + A beloved Cleveland man is murdered in his own home; a robbery in Dallas leaves one person dead and another severely wounded. + Reality TV + Legal + + + TV14 + + + + The First 48 + Sudden Death; Devil at the Door + A New Orleans detective battles fear and distrust on the street as he works the case of a man who was executed in broad daylight; a Minneapolis man witnesses the murder of his teenage son. + Reality TV + Legal + + + TV14 + + + + Accused: Guilty or Innocent? + Reckless Driver or Tragic Accident? + A woman faces life in prison when a passenger in the car she is driving is killed after she collides with an 18-wheel truck. + Legal + Documentary + + + TV14 + + + + Accused: Guilty or Innocent? + Deadly Driver or Tragic Accident? + A terrible car crash leaves a father dead and his son horribly injured, while the driver of the other car is miraculously unharmed. + Legal + Documentary + + + TV14 + + + + Accused: Guilty or Innocent? + Killer Biker or Self-Defense Shooter? + A violent argument between two men erupts at a busy grocery store; one is shot dead and the other faces a murder charge. + Legal + Documentary + + + TV14 + + + + Accused: Guilty or Innocent? + Deadly Veteran or Self-Protection? + In the early hours of the morning, a U.S. Army veteran shoots a wanted fugitive trespassing on his land; with no witnesses to the incident, the prosecution argues that the veteran shot to kill, but the defense claims self-defense. + Legal + Documentary + + + TV14 + + + + Accused: Guilty or Innocent? + Murder Mastermind or Innocent Witness? + Police reopen the cold case of a young marine who was killed in a hotel room, and they charge the woman who was with him at the time. + Legal + Documentary + + + TV14 + + + + Accused: Guilty or Innocent? + Murder Mastermind or Innocent Witness? + Police reopen the cold case of a young marine who was killed in a hotel room, and they charge the woman who was with him at the time. + Legal + Documentary + + + TV14 + + + + Accused: Guilty or Innocent? + Nightclub Murder or Self-Defense Shooting? + An argument erupts outside a Florida nightclub; one man is killed and another is charged with murder. + Legal + Documentary + + + TV14 + + + + Accused: Guilty or Innocent? + Killer Mom or Innocent Parent? + A mother of four is accused of killing her 11-week-old baby and is now facing life in prison; the prosecution alleges the infant was violently shaken; the defense insists this isn't what happened. + Legal + Documentary + + + TVPG + + + + Accused: Guilty or Innocent? + Deadly Veteran or Self-Protection? + In the early hours of the morning, a U.S. Army veteran shoots a wanted fugitive trespassing on his land; with no witnesses to the incident, the prosecution argues that the veteran shot to kill, but the defense claims self-defense. + Legal + Documentary + + + TV14 + + + + Accused: Guilty or Innocent? + Murder Mastermind or Innocent Witness? + Police reopen the cold case of a young marine who was killed in a hotel room, and they charge the woman who was with him at the time. + Legal + Documentary + + + TV14 + + + + Accused: Guilty or Innocent? + Nightclub Murder or Self-Defense Shooting? + An argument erupts outside a Florida nightclub; one man is killed and another is charged with murder. + Legal + Documentary + + + TV14 + + + + Accused: Guilty or Innocent? + Killer Mom or Innocent Parent? + A mother of four is accused of killing her 11-week-old baby and is now facing life in prison; the prosecution alleges the infant was violently shaken; the defense insists this isn't what happened. + Legal + Documentary + + + TVPG + + + + Car accident? Free Legal Consultation + Legal professionals standing by to answer your questions. + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Help Israel & Ukraine + There is an urgent need to help Jews suffering in Israel, Ukraine, and around the world. Act now and support the International Fellowship of Christians and Jews in their lifesaving work. + Paid Program + + + + David Jeremiah + Dr. David Jeremiah's goal is to deliver the unchanging Word of God to an ever-changing world. + Religious + + + TVG + + + + Joni: Table Talk + Joni and guests tackle a wide range of relevant issues, controversial subjects and hard-hitting news topics with candor and wit. + Religious + Talk Shows + + + TVG + + + + Parking Wars + An enraged mother and daughter call on the wrath of God to damn Sonjia and Courtney for booting their car; Denise gets an earful from a man furious that he was ticketed while helping his handicapped son. + Reality TV + + + TVPG + + + + Parking Wars + A furious citizen challenges LouAnn over a ticket for blocking an alley; a man struggling to free his car from the Philly impound faces seemingly endless setbacks. + Reality TV + + + TVPG + + + + Parking Wars + Ponytail clashes with men incensed about tickets received in front of a mosque, while Rodney and Sonjia run into a woman furious at being booted for her deceased husband's tickets. + Reality TV + + + TVPG + + + + Parking Wars + Garfield and Sherry go on the chase when a Philly citizen speeds off with the boot on; all bets are off when Ponytail confronts two screaming women who gamble with illegal parking in Detroit. + Reality TV + + + TVPG + + + + Parking Wars + A mother and her son cause a fracas when they cut to the front of the line at the lot; Richie faces his nightmare beat when his Jersey Shore hairdo is threatened by the rain; Kim meets opposition as she tries to clear the road for street cleaners. + Reality TV + + + TVPG + + + + Parking Wars + Enraged stalker in Philadelphia; woman booted in Detroit during her job interview. + Reality TV + + + TVPG + + + + Parking Wars + Furious Face-Offs + Top 10 outrageous encounters between illegal parkers and the Philadelphia Parking Authority from the past four seasons. + Reality TV + + + TVPG + + + + Customer Wars + Fight Club + Customer satisfaction isn't always guaranteed, especially if there are fists involved. + Reality TV + Documentary + + + TV14 + + + + Customer Wars + You're Out! + A delivery driver falls through a plate glass window at a New York pizza parlor; a concert goer in Toronto is accused of throwing a glass container at the stage; a robbery attempt in Texas is thwarted by quick thinking employees. + Reality TV + Documentary + + + TV14 + + + + Customer Wars + No Backup Needed + At a fast food restaurant in South Carolina, a man stands up to a customer and things become physical; when two rowdy spring breakers cause some trouble at a beach in Florida, a lone officer arrives and takes immediate control of the situation. + Reality TV + Documentary + + + TV14 + + + + Customer Wars + Nail Salon Nightmare + In Florida, a couple is booted from a flight after allegedly refusing to follow instructions; a young girl in California finds herself stuck in a gumball machine; a hatchet-wielding customer terrifies customers in a New York City restaurant. + Reality TV + Documentary + + + TV14 + + + + Customer Wars + Full Moon Brawl + One customer's kind gesture sparks an all-out brawl in a Florida convenience store; cops are called after shoppers duke it out over toilet paper; a retired police officer in California blocks an alleged shoplifter from leaving the parking lot. + Reality TV + Documentary + + + TV14 + + + + Customer Wars + Beer Run + A woman in Idaho tries to steal a chainsaw by stuffing it in her pants; disgusted customers watch a woman eat directly from the serving ladle at restaurant buffet; a teenager struggles to outrun security in California. + Reality TV + Documentary + + + TV14 + + + + Customer Wars + Robot Run + In Nashville, Tenn., a dissatisfied restaurant patron tests the tolerance of her fellow diners; a tech-savvy New Yorker sends his robot to fetch fish food, delighting a pet store employee. + Reality TV + Documentary + + + TV14 + + + + Customer Wars + The Last Straw + A customer gets riled up over a shortage of straws; a rude passenger suffers the consequences of misbehaving with an airline employee; a grocery store manager runs into trouble; a fight breaks out at a gas station. + Reality TV + Documentary + + + TV14 + + + + Neighborhood Wars + Welcome to the Neighborhood + A woman is incensed by her neighbor's parking and takes revenge on her car; when a dog owner allows her pooch to poop on a neighbor's lawn and doesn't pick it up, the neighbor is watching and has a surprise in store. + Reality TV + Documentary + + + TV14 + + + + Neighborhood Wars + There Goes the Neighborhood + A next-door neighbor vandalizes a woman's car; a nanny nabs a porch pirate trying to purloin a package; a good Samaritan tries to rescue a neighbor who is left hanging from the roof; a food delivery man deals with a customer's nasty neighbor. + Reality TV + Documentary + + + TV14 + + + + Neighborhood Wars + Ding Dong, I'm Divorcing You + A Texas woman is left reeling when a doorbell camera captures her husband's cheating ways; a property line dispute in New Jersey pits a new homeowner against a neighbor; a snowball fight in Seattle unleashes an alarming chain of events. + Reality TV + Documentary + + + TV14 + + + + Neighborhood Wars + The Best Revenge + A woman discovers a neighbor is throwing dog poop on her driveway and plots a cunning revenge; a Delaware organic gardener sets up cameras to catch who is destroying his crops. + Reality TV + Documentary + + + TV14 + + + + Neighborhood Wars + Sparks Fly on the Fourth of July + A Florida man takes exception to his neighbor setting off July Fourth fireworks; a couple from Boise, Idaho, catch their neighbor throwing cat litter over the fence. + Reality TV + Documentary + + + TV14 + + + + Neighborhood Wars + Pastry Punch Up + Two neighbors slug it out over stolen toaster tarts; a peaceful neighborhood corner is wrecked when semi-truck drivers get lost; the theft of valuable puppies leads to a wild shootout. + Reality TV + Documentary + + + TV14 + + + + Neighborhood Wars + Nothing Good Ever Happens After 2am + A late-night reveler shows up unannounced to a house party and gets a rude welcome; in Scottsdale, Ariz., a barefoot woman blocks the car of two men she accuses of trespassing in the neighborhood. + Reality TV + Documentary + + + TV14 + + + + Neighborhood Wars + Sunset Flip Out + An Arkansas woman is creeped out when her neighbor installs a gate in his fence that opens directly into her backyard; in California, a poolside confrontation between neighbors takes an unexpected twist. + Reality TV + Documentary + + + TV14 + + + + Neighborhood Wars + Stray Cats, Wild Neighbor + An Arizona man and his family endure years of intimidation from one of their neighbors; a disagreement over the feeding of stray cats leads to gunshots being fired into a neighbor's apartment; an infant dangles from a high-rise balcony. + Reality TV + Documentary + + + TV14 + + + + Neighborhood Wars + Home Sweet Home or Battlezone? + A man tries to solve a long-running property line dispute by destroying his neighbor's building; a whole neighborhood runs for cover when a fireworks celebration goes bad; a father finds a new way to lay down the law on his daughter's date. + Reality TV + Documentary + + + TV14 + + + + Neighborhood Wars + My Neighbor Is Eating My Mail + A homeowner is shocked to find a neighbor naked on his lawn, munching his mail; a package thief is caught on camera shadowing a delivery truck in her car before stealing their drop-offs; a neighbor checks his phone during the movie. + Reality TV + Documentary + + + TV14 + + + + Neighborhood Wars + Double Trouble Neighbors + Twins in Colorado turn on their neighbors; an HOA board member accuses kids on bikes of terrorizing the neighborhood at impossible speeds; in Carrollton, Texas, a noise complaint sees cops busting moves instead of making arrests. + Reality TV + Documentary + + + TV14 + + + + Neighborhood Wars + Quit Videotaping Me + A neighbor feud turns nasty when the woman next door takes a hammer to an Illinois family's security camera; two men take swings at each other with machetes; an Atlanta woman accuses a delivery driver of stealing her necklace. + Reality TV + Documentary + + + TV14 + + + + Neighborhood Wars + The Parent Slap + In Georgia, a parent slaps the school bus driver after the driver refuses to let her kids off the bus; a woman returns to her parked car to find it covered in dog poop; prize-winning anglers are accused of stuffing their catch with weights. + Reality TV + Documentary + + + TV14 + + + + Neighborhood Wars + The Parent Slap + In Georgia, a parent slaps the school bus driver after the driver refuses to let her kids off the bus; a woman returns to her parked car to find it covered in dog poop; prize-winning anglers are accused of stuffing their catch with weights. + Reality TV + Documentary + + + TV14 + + + + Customer Wars + Can't Fight This Ceiling + In Las Vegas, a rideshare driver and passenger get into a heated altercation over an alleged door slam. + Reality TV + Documentary + + + TV14 + + + + Customer Wars + Too Hot to Handle + In Orlando, Fla., a passenger makes a scene in the aisle after being asked to leave the plane; a pickup truck at a drive thru window suddenly becomes engulfed by flames. + Reality TV + Documentary + + + TV14 + + + + Neighborhood Wars + Stay Away from My Husband + A woman in Astoria, Ore., battles an angry neighbor who, she claims, takes offense at a bumper sticker on her car; in Plano, Texas, the losing coach of a kids' baseball game gets into a brawl with a parent from the opposing team. + Reality TV + Documentary + + + TV14 + + + + Neighborhood Wars + Good Fences, Bad Neighbors + Two men take aim at each other over the fence when a feud takes a potentially deadly turn; in Los Angeles, residents are locked in a battle of wills with a neighbor who is blocking their shared driveway for no apparent reason. + Reality TV + Documentary + + + TV14 + + + + Neighborhood Wars + My Neighbor Is Eating My Mail + A homeowner is shocked to find a neighbor naked on his lawn, munching his mail; a package thief is caught on camera shadowing a delivery truck in her car before stealing their drop-offs; a neighbor checks his phone during the movie. + Reality TV + Documentary + + + TV14 + + + + Neighborhood Wars + Double Trouble Neighbors + Twins in Colorado turn on their neighbors; an HOA board member accuses kids on bikes of terrorizing the neighborhood at impossible speeds; in Carrollton, Texas, a noise complaint sees cops busting moves instead of making arrests. + Reality TV + Documentary + + + TV14 + + + + Neighborhood Wars + Quit Videotaping Me + A neighbor feud turns nasty when the woman next door takes a hammer to an Illinois family's security camera; two men take swings at each other with machetes; an Atlanta woman accuses a delivery driver of stealing her necklace. + Reality TV + Documentary + + + TV14 + + + + Neighborhood Wars + The Parent Slap + In Georgia, a parent slaps the school bus driver after the driver refuses to let her kids off the bus; a woman returns to her parked car to find it covered in dog poop; prize-winning anglers are accused of stuffing their catch with weights. + Reality TV + Documentary + + + TV14 + + + + Customer Wars + Can't Fight This Ceiling + In Las Vegas, a rideshare driver and passenger get into a heated altercation over an alleged door slam. + Reality TV + Documentary + + + TV14 + + + + Customer Wars + Too Hot to Handle + In Orlando, Fla., a passenger makes a scene in the aisle after being asked to leave the plane; a pickup truck at a drive thru window suddenly becomes engulfed by flames. + Reality TV + Documentary + + + TV14 + + + + Neighborhood Wars + Stay Away from My Husband + A woman in Astoria, Ore., battles an angry neighbor who, she claims, takes offense at a bumper sticker on her car; in Plano, Texas, the losing coach of a kids' baseball game gets into a brawl with a parent from the opposing team. + Reality TV + Documentary + + + TV14 + + + + Neighborhood Wars + Good Fences, Bad Neighbors + Two men take aim at each other over the fence when a feud takes a potentially deadly turn; in Los Angeles, residents are locked in a battle of wills with a neighbor who is blocking their shared driveway for no apparent reason. + Reality TV + Documentary + + + TV14 + + + + Help Israel & Ukraine + There is an urgent need to help Jews suffering in Israel, Ukraine, and around the world. Act now and support the International Fellowship of Christians and Jews in their lifesaving work. + Paid Program + + + + Home Title Theft is Real! Home Title Lock Protects Your Title 24/7 + When a criminal fraudulently transfers your home title to a fake identity and steals your title, no one will notify you. Not your county, not the police, not even your bank. Home Title Lock protects your title 24/7 from this this fast-growing crime. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + David Jeremiah + Dr. David Jeremiah's goal is to deliver the unchanging Word of God to an ever-changing world. + Religious + + + TVG + + + + Joni: Table Talk + Joni and guests tackle a wide range of relevant issues, controversial subjects and hard-hitting news topics with candor and wit. + Religious + Talk Shows + + + TVG + + + + Parking Wars + Rodney and Sonjia are challenged by an irate man claiming he's a sovereign; everyone at the lot tries to help an elderly woman retrieve the car that her grandson caused to be towed, only to discover an unpleasant surprise in the front seat. + Reality TV + + + TVPG + + + + Parking Wars + Jeff tickets foulmouthed truck drivers who are unloading freight and insults in a no-stopping zone; Sherry dares Garfield to dye his hair to match their most booted car color that day. + Reality TV + + + TVPG + + + + Parking Wars + Clerical errors create havoc for a frustrated man trying to reclaim his impounded vehicle, while Gina is bombarded with outrageous excuses from illegal South Street parkers; Rodney and Sonjia dampen holiday spirits on the coldest day of the year. + Reality TV + + + TVPG + + + + Parking Wars + Angry Philly citizens shake Garfield out of his post vacation idle; an irate woman stalks Norman as he tries to ticket her for street cleaning violations; the past comes back to haunt two brothers trying to retrieve their car from the impound lot. + Reality TV + + + TVPG + + + + Parking Wars + Two women scramble to retrieve the car that a valet had towed during their night of partying; Garfield and Sherry boot some unhappy citizens as they hunt scofflaws; ticket writer Robert tries to teach old dogs new tricks. + Reality TV + + + TVPG + + + + Parking Wars + Holiday magic can't spare Ponytail from the wrath of an angry Detroit taxi driver; a woman's troubles are just beginning after a long search for her stolen car leads her to the Philly impound lot. + Reality TV + + + TVPG + + + + The First 48 + Southwick; Devil's Doorway + Two murder victims have matching tattoos; a man is gunned down in an apartment doorway. + Reality TV + Legal + + + TV14 + + + + The First 48 + Brutal Business + Dallas detectives investigate the case of two friends who were shot, then burned inside the trunk of a car. + Reality TV + Legal + + + TV14 + + + + The First 48 + Brother's Bread; Into the Woods + Detectives in Louisville respond to a man shot while answering his door; in Harris County, Texas, neighbors find a teenage girl shot dead in the woods. + Reality TV + Legal + + + TV14 + + + + The First 48 + Killer Connection; Bloody Birthday + Dallas detectives hope that video footage can identify the person who murdered a young father; a Cleveland mother of six is shot and killed on her birthday. + Reality TV + Legal + + + TV14 + + + + The First 48 + Graveyard Love + A New Orleans man is shot in front of his grandmother's home, and police detectives believe a woman close to the victim may have arranged the crime. + Reality TV + Legal + + + TV14 + + + + Court Cam + An exchange of bullets at a suburban home ends with a dramatic courtroom exchange; a surprise performance by a man accused of attempted murder fails to impress the judge; hunger strikes, outrageous claims and shocking behavior in court from a killer. + Reality TV + Legal + + + TV14 + + + + Court Cam + The mother of a murder victim comes face to face with the killer: her own grandson; a widow seeks her own form of justice; courthouse nuptials take a shocking turn. + Reality TV + Legal + + + TV14 + + + + 24 Ghante 24 Reporter (1200) + Regular + + + + Fatafat 101 + Regular + + + + Khabar Din Bhar + Bulletin giving the most updated news stories at this hour. + News + + + + Entertainment News + News + + + TVPG + + + + Saas, Bahu Aur Saazish + Discussing the likely turn of events expected out of the evening's top programs on key channels. + Drama + Performing Arts + + + + Saas, Bahu Aur Saazish + Discussing the likely turn of events expected out of the evening's top programs on key channels. + Drama + Performing Arts + + + + Fatafat 101 + Regular + + + + Fatafat 101 + Regular + + + + Fatafat 101 + Regular + + + + Fatafat 101 + Regular + + + + Fatafat 101 + Regular + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Khabar Din Bhar + Bulletin giving the most updated news stories at this hour. + News + + + + Khabar Din Bhar + Bulletin giving the most updated news stories at this hour. + News + + + + Khabar Din Bhar + Bulletin giving the most updated news stories at this hour. + News + + + + Khabar Din Bhar + Bulletin giving the most updated news stories at this hour. + News + + + + Khabar Din Bhar + Bulletin giving the most updated news stories at this hour. + News + + + + Khabar Din Bhar / Fatafat 51 + Regular + + + + Khabar Din Bhar + Bulletin giving the most updated news stories at this hour. + News + + + + Khabar Din Bhar + Bulletin giving the most updated news stories at this hour. + News + + + + Khabar Din Bhar + Bulletin giving the most updated news stories at this hour. + News + + + + Entertainment News + News + + + TVPG + + + + Samachar Shatak + News + + + + Asmita Newsroom + News + + + + Advertorial + Regular + + + + Apni Khabar + Learn about current events and all that is taking place in the country. + News + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Hun To Bolish + Variety + News + + + + Hun To Bolish + Variety + News + + + + Top 50 + Music + + + + Mudda Ni Vaat + Variety + + + + Asmita News + News + + + + Samachar Shatak + News + + + + Asmita News + News + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Top 50 + Music + + + + Maha Aarti + Variety + Religious + + + + Hun To Bolish + Variety + News + + + + Hun To Bolish + Variety + News + + + + Aapani Khabar + News + + + + Asmita Vishesh + News + + + + Top 50 + Music + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Asmita News + News + + + + Maha Aarti + Variety + Religious + + + + Asmita Vishesh + News + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Yog Bhagave Rog + Variety + + + + Bhakti Na Sur + Religious + + + + Bhakti Na Sur + Religious + + + + Bhakti Na Sur + Religious + + + + Asmita News + News + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Asmita News + News + + + + Samachar Shatak + News + + + + Asmita News + News + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Asmita News + News + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Asmita News + News + + + + Mari Vidhansabha, Mari Vaat + Political + + + + Asmita News + News + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Asmita News + News + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Asmita News + News + + + + Samachar Shatak + News + + + + Chitramala + Variety + + + + Chitramala + Variety + + + + Asmita News + News + + + + Samachar Shatak + News + + + + Asmita Newsroom + News + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Apni Khabar + Learn about current events and all that is taking place in the country. + News + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Hun To Bolish + Variety + News + + + + Hun To Bolish + Variety + News + + + + Top 50 + Music + + + + Mudda Ni Vaat + Variety + + + + Asmita News + News + + + + Samachar Shatak + News + + + + Asmita News + News + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Top 50 + Music + + + + Maha Aarti + Variety + Religious + + + + Hun To Bolish + Variety + News + + + + Hun To Bolish + Variety + News + + + + Aapani Khabar + News + + + + Asmita Vishesh + News + + + + Top 50 + Music + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Asmita News + News + + + + Maha Aarti + Variety + Religious + + + + Asmita Vishesh + News + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Yog Bhagave Rog + Variety + + + + Bhakti Na Sur + Religious + + + + Bhakti Na Sur + Religious + + + + Bhakti Na Sur + Religious + + + + Asmita News + News + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Asmita News + News + + + + Samachar Shatak + News + + + + Asmita News + News + + + + Mari Vidhansabha, Mari Vaat + Political + + + + Asmita News + News + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Asmita News + News + + + + Mari Vidhansabha, Mari Vaat + Political + + + + Asmita News + News + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Asmita News + News + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Asmita News + News + + + + Samachar Shatak + News + + + + Chitramala + Variety + + + + Chitramala + Variety + + + + Asmita News + News + + + + Samachar Shatak + News + + + + Asmita Newsroom + News + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Apni Khabar + Learn about current events and all that is taking place in the country. + News + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Hun To Bolish + Variety + News + + + + Hun To Bolish + Variety + News + + + + Top 50 + Music + + + + Mudda Ni Vaat + Variety + + + + Asmita News + News + + + + Samachar Shatak + News + + + + Asmita News + News + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Top 50 + Music + + + + Maha Aarti + Variety + Religious + + + + Hun To Bolish + Variety + News + + + + Hun To Bolish + Variety + News + + + + Aapani Khabar + News + + + + Asmita Vishesh + News + + + + Top 50 + Music + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Asmita News + News + + + + Maha Aarti + Variety + Religious + + + + Asmita Vishesh + News + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Yog Bhagave Rog + Variety + + + + Bhakti Na Sur + Religious + + + + Bhakti Na Sur + Religious + + + + Bhakti Na Sur + Religious + + + + Asmita News + News + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Asmita News + News + + + + Samachar Shatak + News + + + + Asmita News + News + + + + Mari Vidhansabha, Mari Vaat + Political + + + + Asmita News + News + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Asmita News + News + + + + Mari Vidhansabha, Mari Vaat + Political + + + + Asmita News + News + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Asmita News + News + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Asmita News + News + + + + Samachar Shatak + News + + + + Chitramala + Variety + + + + Chitramala + Variety + + + + Asmita News + News + + + + Samachar Shatak + News + + + + Asmita Newsroom + News + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Apni Khabar + Learn about current events and all that is taking place in the country. + News + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Hun To Bolish + Variety + News + + + + Hun To Bolish + Variety + News + + + + Top 50 + Music + + + + Mudda Ni Vaat + Variety + + + + Asmita News + News + + + + Samachar Shatak + News + + + + Asmita News + News + + + + Fatafat + A quick recap of the top headlines of the day. + News + + + + Top 50 + Music + + + + Maha Aarti + Variety + Religious + + + + Hun To Bolish + Variety + News + + + + Hun To Bolish + Variety + News + + + + Aapani Khabar + News + + + + Asmita Vishesh + News + + + + Top 50 + Music + + + + Ocean's Eleven + A parolee (George Clooney) organizes a gang to steal $150 million from three Las Vegas casinos in a single heist. + + George Clooney + Matt Damon + Andy Garcia + + 2001 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Ocean's Twelve + To pay back casino boss Terry Benedict, Danny Ocean and his team of criminals plan an elaborate heist in Europe. + + George Clooney + Brad Pitt + Matt Damon + + 2004 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Ocean's Thirteen + Danny Ocean (George Clooney) and his gang (Brad Pitt, Matt Damon) plot revenge against a casino owner (Al Pacino) who wronged one of their own. + + George Clooney + Brad Pitt + Matt Damon + + 2007 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Ocean's Thirteen + Danny Ocean (George Clooney) and his gang (Brad Pitt, Matt Damon) plot revenge against a casino owner (Al Pacino) who wronged one of their own. + + George Clooney + Brad Pitt + Matt Damon + + 2007 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + The Da Vinci Code + A murder in the Louvre Museum and clues in paintings by Leonardo da Vinci lead to the discovery of a religious mystery that could rock the foundations of Christianity. + + Tom Hanks + Audrey Tautou + Ian McKellen + + 2006 + Movies + Mystery + + + TVPG + + + 2 + + + + Angels & Demons + Harvard symbologist Robert Langdon joins forces with an Italian scientist (Ayelet Zurer) to prevent an ancient brotherhood's plot against the Vatican from coming to fruition. + + Tom Hanks + Ewan McGregor + Ayelet Zurer + + 2009 + Movies + Action + + + TVG + + + 2 + + + + The Usual Suspects + A detective (Chazz Palminteri) questions a con man about his relationships with assorted criminals (Stephen Baldwin, Gabriel Byrne) and their link to a ship explosion. + + Stephen Baldwin + Gabriel Byrne + Chazz Palminteri + + 1995 + Movies + Thriller + + + TVPG + + + 3 + + + + Ocean's Eleven + A parolee (George Clooney) organizes a gang to steal $150 million from three Las Vegas casinos in a single heist. + + George Clooney + Matt Damon + Andy Garcia + + 2001 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Ocean's Twelve + To pay back casino boss Terry Benedict, Danny Ocean and his team of criminals plan an elaborate heist in Europe. + + George Clooney + Brad Pitt + Matt Damon + + 2004 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Ocean's Thirteen + Danny Ocean (George Clooney) and his gang (Brad Pitt, Matt Damon) plot revenge against a casino owner (Al Pacino) who wronged one of their own. + + George Clooney + Brad Pitt + Matt Damon + + 2007 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Skyfall + When M's (Judi Dench) past comes back to haunt her, James Bond (Daniel Craig) must track down and destroy the threat to her and MI6, no matter how personal the cost. + + Daniel Craig + Judi Dench + Javier Bardem + + 2012 + Movies + Action + + + TVPG + + + 3 + + + + Fear the Walking Dead + Sanctuary + The survivors reckon with ghosts of their past. + + Colman Domingo + Danay Garcia + Ruben Blades + + Drama + Sci-Fi + + + TVMA + + + + Fear the Walking Dead + Sanctuary + The survivors reckon with ghosts of their past. + + Colman Domingo + Danay Garcia + Ruben Blades + + Drama + Sci-Fi + + + TVMA + + + + Creepshow + Meet the Belaskos; Cheat Code + The Belaskos get more than they bargained for when they move in next door to a vampire-hating suburbanite; a father and son bond by playing an old video game, but soon find out there's a reason it was abandoned. + + Karis Cameron + Matthew Nelson-Mahood + Donavon Stinson + + Animated + + + TV14 + + + + Fear the Walking Dead + Sanctuary + The survivors reckon with ghosts of their past. + + Colman Domingo + Danay Garcia + Ruben Blades + + Drama + Sci-Fi + + + TVMA + + + + Fear the Walking Dead + Sanctuary + The survivors reckon with ghosts of their past. + + Colman Domingo + Danay Garcia + Ruben Blades + + Drama + Sci-Fi + + + TVMA + + + + Hellboy + The son (Ron Perlman) of the devil helps a top-secret organization investigate and destroy paranormal creatures. + + Ron Perlman + John Hurt + Selma Blair + + 2004 + Movies + Fantasy + + + TVPG + + + 3 + + + + Fear the Walking Dead + Iron Tiger + The search for fuel to replenish Padre's dwindling supply leads the survivors to a reunion that gives Madison an unexpected opportunity for revenge and reconciliation. + + Colman Domingo + Danay Garcia + Ruben Blades + + Drama + Sci-Fi + + + TVMA + + + + Fear the Walking Dead + Sanctuary + The survivors reckon with ghosts of their past. + + Colman Domingo + Danay Garcia + Ruben Blades + + Drama + Sci-Fi + + + TVMA + + + + The Three Stooges + You Natzy Spy! + Paperhanger Moe becomes dictator of Moronica. + + Moe Howard + Larry Fine + Curly Howard + + Comedy + + + TVPG + + + + Inogen Portable Oxygen - Oxygen Therapy that Moves with You + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + DraftKings Sportsbook Report + DraftKings Sportsbook, a top-rated sportsbook app! + Paid Program + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Hook + Aided by Tinker Bell (Julia Roberts), a corporate lawyer (Robin Williams) turns into Peter Pan to rescue his children from Captain Hook (Dustin Hoffman). + + Dustin Hoffman + Robin Williams + Julia Roberts + + 1991 + Movies + Children + + + TVG + + + 3 + + + + Sleepless in Seattle + A recently engaged newswoman (Meg Ryan) becomes obsessed with meeting a grieving widower (Tom Hanks) she heard on a late-night radio call-in show. + + Tom Hanks + Meg Ryan + Bill Pullman + + 1993 + Movies + Romance + + + TVG + + + 3 + + + + A League of Their Own + The All-American Girls Professional Baseball League begins in 1943 with a major-league has-been as a manager (Tom Hanks). + + Tom Hanks + Geena Davis + Madonna + + 1992 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Sixteen Candles + A girl turning 16 likes another girl's guy (Michael Schoeffling) and feels nobody cares about her birthday. + + Molly Ringwald + Anthony Michael Hall + Michael Schoeffling + + 1984 + Movies + Comedy + + + TVG + + + 2 + + + + Bridesmaids + Though broke and lovelorn, a woman (Kristen Wiig) takes on the strange and expensive rituals associated with being her best friend's maid of honor. + + Kristen Wiig + Maya Rudolph + Rose Byrne + + 2011 + Movies + Comedy + + + TVPG + + + 3 + + + + Pitch Perfect + When a new student (Anna Kendrick) joins her college's female a cappella group, she takes the women out of their comfort zone of traditional pieces and introduces them to innovative arrangements. + + Anna Kendrick + Skylar Astin + Rebel Wilson + + 2012 + Movies + Romance + + + TVG + + + 3 + + + + Sixteen Candles + A girl turning 16 likes another girl's guy (Michael Schoeffling) and feels nobody cares about her birthday. + + Molly Ringwald + Anthony Michael Hall + Michael Schoeffling + + 1984 + Movies + Comedy + + + TVG + + + 2 + + + + Interview With the Vampire + In Throes of Increasing Wonder.. + Louis de Pointe du Lac lives in 1910 New Orleans as executor-in-charge of his family's fortune; when he meets the vampire Lestat, Louis' life begins to unravel in otherworldly ways; in 2020, Louis tells his story to journalist Daniel Molloy. + + Jacob Anderson + Sam Reid + Bailey Bass + + Drama + + + TVMA + + + + Interview With the Vampire + ...After the Phantoms of Your Former Self + Beginning his life as a vampire, Louis learns the rules of vampirism from his maker and companion Lestat; Louis discovers increasing differences between himself and Lestat; in Dubai, Louis reveals more of his modern-day vampire lifestyle to Molloy. + + Jacob Anderson + Sam Reid + Bailey Bass + + Drama + + + TVMA + + + + The Three Stooges + Half-Shot Shooters + The boys unwittingly re-enlist under their old sergeant. + + Moe Howard + Larry Fine + Curly Howard + + Comedy + + + TVPG + + + + Better Call Saul + A Look at Blackberry: The Limited Series + Six years before he meets meth dealer Walter White, small-time lawyer Jimmy McGill transforms into his alias, Saul Goodman -- a man who puts the. + + Bob Odenkirk + Jonathan Banks + Michael Mando + + Drama + + + TV14 + + + + Dark Winds + A Look at Blackberry: The Limited Series + The year is 1971; Joe Leaphorn of the Tribal Police is tasked by the county sheriff to investigate the murder of a Navajo man; joined by his former deputy Jim Chee, the two men must battle the forces of evil in a world where justice is hard won. + + Zahn McClarnon + Kiowa Gordon + Jessica Matten + + Drama + + + TV14 + + + + The Three Stooges + The Ghost Talks + Peeping Tom's ghost wants to meet Lady Godiva. + + Moe Howard + Larry Fine + Shemp Howard + + Comedy + + + TVPG + + + + DraftKings Sportsbook Report + DraftKings Sportsbook, a top-rated sportsbook app! + Paid Program + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + Paid Program + + + TV14 + + + + The Three Stooges + Dizzy Doctors + The Stooges are lazy-bum husbands, inept salesmen, and misfit fugitives in a hospital. + + Moe Howard + Larry Fine + Curly Howard + + Comedy + + + TVG + + + + Jerry Maguire + A Los Angeles sports agent (Tom Cruise) finds love with a pretty accountant (Renee Zellweger) after an attack of conscience costs him his job and fiancee. + + Tom Cruise + Cuba Gooding Jr. + Renée Zellweger + + 1996 + Movies + Romance + + + TVG + + + 3 + + + + Pitch Perfect + When a new student (Anna Kendrick) joins her college's female a cappella group, she takes the women out of their comfort zone of traditional pieces and introduces them to innovative arrangements. + + Anna Kendrick + Skylar Astin + Rebel Wilson + + 2012 + Movies + Romance + + + TVG + + + 3 + + + + Bridesmaids + Though broke and lovelorn, a woman (Kristen Wiig) takes on the strange and expensive rituals associated with being her best friend's maid of honor. + + Kristen Wiig + Maya Rudolph + Rose Byrne + + 2011 + Movies + Comedy + + + TVPG + + + 3 + + + + Bruce Almighty + After a bad day at work, a frustrated reporter (Jim Carrey) meets God (Morgan Freeman), who endows him with divine powers for one week. + + Jim Carrey + Morgan Freeman + Jennifer Aniston + + 2003 + Movies + Comedy + + + TVG + + + 2 + + + + Uncle Buck + Chicago parents in a pinch have a bachelor uncle (John Candy) baby-sit their teenage daughter (Jean Louisa Kelly) and little ones. + + John Candy + Amy Madigan + Jean Louisa Kelly + + 1989 + Movies + Comedy + + + TVG + + + 2 + + + + Uncle Buck + Chicago parents in a pinch have a bachelor uncle (John Candy) baby-sit their teenage daughter (Jean Louisa Kelly) and little ones. + + John Candy + Amy Madigan + Jean Louisa Kelly + + 1989 + Movies + Comedy + + + TVG + + + 2 + + + + The Great Outdoors + A Chicago man (John Candy) and his family go camping with his obnoxious brother-in-law (Dan Aykroyd) and his family. + + Dan Aykroyd + John Candy + Stephanie Faracy + + 1988 + Movies + Comedy + + + TVG + + + 2 + + + + Real Genius + Tech-school prodigies (Val Kilmer, Gabe Jarret) learn their laser project is actually a death beam funded by the military. + + Val Kilmer + Gabriel Jarret + William Atherton + + 1985 + Movies + Comedy + + + TVG + + + 2 + + + + Fear the Walking Dead + Sanctuary + The survivors reckon with ghosts of their past. + + Colman Domingo + Danay Garcia + Ruben Blades + + Drama + Sci-Fi + + + TVMA + + + + Interview With the Vampire + Is My Very Nature That of the Devil + Louis continues his life as a businessman of Storyville; when an old friend comes to town, Louis' relationship with Lestat is tested; Louis' business intertwines with growing tensions in New Orleans, leading to a new chapter in Louis' vampire life. + + Jacob Anderson + Sam Reid + Bailey Bass + + Drama + + + TVMA + + + + Interview With the Vampire + ...The Ruthless Pursuit of Blood With All a Child's Demanding + Claudia's transformation into a vampire teen completely changes Louis and Lestat's lives; as Claudia asks more questions, Louis and Lestat are forced to confront questions about making a teen vampire; Claudia learns dark realities of her new life. + + Jacob Anderson + Sam Reid + Bailey Bass + + Drama + + + TVMA + + + + Lung Cancer From Asbestos? + Have you or a loved one been diagnosed with lung cancer? You may be entitled to compensation! + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + Paid Program + + + TV14 + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + The Three Stooges + Hoi Polloi + A professor bets he can turn the boys into gentlemen. + + Moe Howard + Larry Fine + Curly Howard + + Comedy + + + TVG + + + + Real Genius + Tech-school prodigies (Val Kilmer, Gabe Jarret) learn their laser project is actually a death beam funded by the military. + + Val Kilmer + Gabriel Jarret + William Atherton + + 1985 + Movies + Comedy + + + TVG + + + 2 + + + + Bruce Almighty + After a bad day at work, a frustrated reporter (Jim Carrey) meets God (Morgan Freeman), who endows him with divine powers for one week. + + Jim Carrey + Morgan Freeman + Jennifer Aniston + + 2003 + Movies + Comedy + + + TVG + + + 2 + + + + Mr. Deeds + A television producer (Winona Ryder) tries to get the scoop on a small-town pizzeria owner (Adam Sandler) after he inherits $40 billion. + + Adam Sandler + Winona Ryder + Peter Gallagher + + 2002 + Movies + Comedy + + + TVG + + + 1 + + + + The Great Outdoors + A Chicago man (John Candy) and his family go camping with his obnoxious brother-in-law (Dan Aykroyd) and his family. + + Dan Aykroyd + John Candy + Stephanie Faracy + + 1988 + Movies + Comedy + + + TVG + + + 2 + + + + The Bernie Mac Show + Mac Local 137 + The kids go on strike for wages after Bernie tries to make them clean up their mess, so he hires neighborhood kids as scabs. + + Bernie Mac + Kellita Smith + Camille Winbush + + Sitcom + + + TVPG + + + + The Bernie Mac Show + Welcome to the Jungle + Jordan brings home a snake named Reggie, and sister Bryanna demands a pet, too. + + Bernie Mac + Kellita Smith + Camille Winbush + + Sitcom + + + TVPG + + + + The Bernie Mac Show + Bernie Mac Dance Party + Vanessa fails to invite Bernie to a father-daughter dance, and it drives him crazy. + + Bernie Mac + Kellita Smith + Camille Winbush + + Sitcom + + + TVPG + + + + The Bernie Mac Show + Tryptophan-tasy + Gluttonous Bernie has a fever dream after devouring his own personal turkey. + + Bernie Mac + Kellita Smith + Camille Winbush + + Sitcom + Christmas + + + TVPG + + + + The Steve Harvey Show + My Best Piggy's Wedding + Steve (Steve Harvey) attempts to win Regina (Wendy Raquel Robinson) back when he hears she is planning to elope. + + Steve Harvey + Cedric the Entertainer + Wendy Raquel Robinson + + Sitcom + + + TVPG + + + + The Steve Harvey Show + Love, Death and Basketball + Steve (Steve Harvey) consoles Regina (Wendy Raquel Robinson) when she returns from her honeymoon without the groom. + + Steve Harvey + Cedric the Entertainer + Wendy Raquel Robinson + + Sitcom + + + TVPG + + + + The Steve Harvey Show + Touched by a Pig + Steve (Steve Harvey) comforts a grieving Regina (Wendy Raquel Robinson); Cedric's Grandma Puddin' (Cedric. + + Steve Harvey + Cedric the Entertainer + Wendy Raquel Robinson + + Sitcom + + + TVPG + + + + The Steve Harvey Show + African-American Pie + Steve makes scandalous deathbed confessions to Cedric and Regina when he thinks he is having a heart attack. + + Steve Harvey + Cedric the Entertainer + Wendy Raquel Robinson + + Sitcom + + + TVPG + + + + The Steve Harvey Show + A Star Is Born Again + Regina (Wendy Raquel Robinson) converts the members of Steve's (Steve Harvey) new girl band to feminism and they refuse to perform. + + Steve Harvey + Cedric the Entertainer + Wendy Raquel Robinson + + Sitcom + + + TVPG + + + + The Steve Harvey Show + This Little Piggy Went Home + Regina (Wendy Raquel Robinson) turns green-eyed with jealousy when Steve (Steve Harvey) cancels plans with her to go on a date. + + Steve Harvey + Wendy Raquel Robinson + Cedric the Entertainer + + Sitcom + + + TVPG + + + + The Steve Harvey Show + Tiger Hoods + Everyone engages in an elaborate cover-up to help Steve ditch school and golf in a celebrity tournament. + + Steve Harvey + Wendy Raquel Robinson + Cedric the Entertainer + + Sitcom + + + TVPG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Help Israel & Ukraine + There is an urgent need to help Jews suffering in Israel, Ukraine, and around the world. Act now and support the International Fellowship of Christians and Jews in their lifesaving work. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + For Richer or Poorer + Married couple Aubrey and Kya struggle to hold their relationship together when Aubrey loses his job and Kya has trouble coping with the change in their financial status. + Specials + Comedy + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + In Touch With Dr. Charles Stanley + In Touch Ministries is the broadcast teaching ministry of Dr. Charles Stanley. + Religious + + + TVG + + + + Money Moves + Casey Cooper + Casey Cooper is the CEO of The Compass Circle; she opens up about working in a male-dominated industry and shares the importance of an excellent presentation to get funding for a business. + Business + + + TVPG + + + + Money Moves + Kashief Edwards + Kashief Edwards talks about transitioning from traditional employment to becoming an entrepreneur through vending machines. + Business + + + TVPG + + + + Money Moves + Claire Sulmer + Claire Sulmer is the CEO and founder of Fashion Bomb Daily; she discusses how she turned her blog into a full-time fashion business. + Business + + + TVPG + + + + Money Moves + Terrell Owens + NFL Hall of Famer Terrell Owens discloses the financial mistakes he made starting out and the new business ventures he is entering. + Business + + + TVPG + + + + HBCU 101 + Never Good. Always Great + FAMU alumna Cait the Great joins HBCU 101 to talk about her time as a Rattler, her journey as an entrepreneur, and her Nike shoe design. + News Magazine + + + TVPG + + + + HBCU 101 + Never Good. Always Great + FAMU alumna Cait the Great joins HBCU 101 to talk about her time as a Rattler, her journey as an entrepreneur, and her Nike shoe design. + News Magazine + + + TVPG + + + + Jam Session + Syleena Johnson + Singer-songwriter Syleena Johnson graces the stage with her dynamic vocal range and emotional storytelling through music. + Music + Performing Arts + + + TVG + + + + Jam Session + Kyante' + Independent artist Kyante' takes the. + Music + Performing Arts + + + TVG + + + + Jam Session + Tarrey Torae + Grammy award-winner Tarrey Torae graces the stage with a captivating and mesmerizing performance with a unique blend of R&B, jazz, and gospel influences; Torray Torae captivates audiences with her raw emotion and powerful vocal range. + Music + Performing Arts + + + TVG + + + + Jam Session + J. Holiday + J. Holiday takes the stage with smooth vocals, heartfelt lyrics and memorable hooks; J. Holiday's impact on the music industry continues to shine through his work and performance of his songs. + Music + Performing Arts + + + TVG + + + + Jam Session + Syleena Johnson + Singer-songwriter Syleena Johnson graces the stage with her dynamic vocal range and emotional storytelling through music. + Music + Performing Arts + + + TVG + + + + Jam Session + Kyante' + Independent artist Kyante' takes the. + Music + Performing Arts + + + TVG + + + + The Steve Harvey Show + Analyze Dis + Dr. Joyce Brothers (guest starring as herself) is called in to counsel a combative Steve and Regina (Steve Harvey, Wendy Raquel Robinson). + + Steve Harvey + Cedric the Entertainer + Wendy Raquel Robinson + + Sitcom + + + TVPG + + + + The Steve Harvey Show + Big Daddy Daddy + Steve (Steve Harvey) reluctantly allows Romeo (Merlin Santana) to move in while finishing out his senior year of high school. + + Steve Harvey + Cedric the Entertainer + Wendy Raquel Robinson + + Sitcom + + + TVPG + + + + The Steve Harvey Show + Me, Me and Miss Jones + Steve and Romeo (Steve Harvey, Merlin Santana) become rivals for the affections of a 25-year-old swimsuit model. + + Steve Harvey + Cedric the Entertainer + Wendy Raquel Robinson + + Sitcom + + + TVPG + + + + The Steve Harvey Show + No Free Samples + Rap artist Lil' Bow Wow (guest starring as himself) wants to sample an old hit of Steve's (Steve Harvey) group, the Hi-Tops. Jermaine Dupri and Ron Isley also guest star. + + Steve Harvey + Cedric the Entertainer + Wendy Raquel Robinson + + Sitcom + + + TVPG + + + + The Steve Harvey Show + Mother and Child Reunion + Romeo's mother shows up and announces that she is leaving her husband to start a new life in Chicago. + + Steve Harvey + Cedric the Entertainer + Wendy Raquel Robinson + + Sitcom + + + TVPG + + + + The Steve Harvey Show + Here Comes the Judge + When Steve's students take him court for a classroom injustice, he goes before TV's Judge Greg Mathis. + + Steve Harvey + Cedric the Entertainer + Wendy Raquel Robinson + + Sitcom + + + TVPG + + + + The Steve Harvey Show + House Party + Cedric and Lovita pressure apartment-sitting Romeo to throw a party while Steve and Regina are out of town. + + Steve Harvey + Cedric the Entertainer + Wendy Raquel Robinson + + Sitcom + + + TVPG + + + + The Steve Harvey Show + Not the Best Man + Regina (Wendy Raquel Robinson) is prompted to tell Steve (Steve Harvey) how she really feels about him while at her best friend's wedding. + + Steve Harvey + Cedric the Entertainer + Wendy Raquel Robinson + + Sitcom + + + TVPG + + + + Urban Indie Film Block + Uncomfortable Truths + Microaggression can kill. + Drama + + + TVPG + + + + Urban Indie Film Block + Uncomfortable Truths + Microaggression can kill. + Drama + + + TVPG + + + + Downright Delicious With Yo-Yo + Simple and Delicious + In this episode Yo-Yo keeps it simple and delicious in the kitchen, she kicks things off with a penne pasta with spicy Italian sausage and a garlic tomato sauce. Then she shows off her skills with her version of fried rice. + Food + + + TVPG + + + + Downright Delicious With Yo-Yo + Sunday Dinner + Yo-Yo lays out a Sunday dinner that has family and guests coming back for more. It's a homestyle recipe for slow simmered short ribs and gravy served along with collard green and cabbage mix that's tender and seasoned to perfection. + Food + + + TVPG + + + + City Eats: Atlanta + Estrellita + Zak Wallace introduces chef Walter and his Filipino restaurant located near Grant Park. + + Zak Wallace + + Food + + + TVPG + + + + City Eats: Atlanta + Food Terminal + Zak Wallace introduces viewers to Jane and chef Amy and their Malaysian dishes. + + Zak Wallace + + Food + + + TVPG + + + + Twisted Dish + Rice Remixed! + One of America's favorite dishes becomes a five-star culinary smash when master chef Shular adds succulent lobster to fried rice, substituted with riced cabbage. + Food + + + TVPG + + + + Twisted Dish + Pulled BBQ Unsteak Sandwich With Homemade Chips and Slaw + Master Chef Daryl Shular teaches how to create the ultimate BBQ classic with perfectly seasoned and grilled mushrooms. + Food + + + TVPG + + + + Urban Indie Film Block + Uncomfortable Truths + Microaggression can kill. + Drama + + + TVPG + + + + Peter Popoff Ministries + For over 30 years Reverend Peter Popoff has provided spiritual direction and powerful testimonies to receive God's blessings in your life. + Paid Program + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + Paid Program + + + TV14 + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Strive + A young woman from the projects in Harlem aims to be accepted into Yale but must first push against the world holding her back. + + Danny Glover + Shaylin Becton + Joi Starr + + 2019 + Movies + Drama + + + + Love Will Keep Us Together + Best friends begin to have doubts about their fiances. + + Reagan Gomez + Valarie Pettiford + Wesley Jonathan + + Specials + Performing Arts + + + + Urban Indie Film Block + Lost Yet Found + In the midst of a pandemic and after a health scare, a veteran high school teacher halts her life and leaves all she knows behind in. + Drama + + + TVPG + + + + HBCU 101 + Queen of All Trades + Jackson State University alumna Kelly Kinkaid talks all things Jackson State University, her journey in the entertainment industry, along with building Sway in the Morning. + News Magazine + + + TVPG + + + + HBCU 101 + The Chef X Experience + Celebrity Chef and Virginia State University alum Chef X discusses how he began as a chef, his celebrity clients, and what it was like being a Trojan. + News Magazine + + + TVPG + + + + HBCU 101 + The HBCU Advocate + DJ Stormy joins HBCU 101 to talk about her time at both Dillard University and Alabama State University, along with her career as a DJ and what it was like deejaying at the Super Bowl. + News Magazine + + + TVPG + + + + HBCU 101 + The Yard Runner + Howard University alum Arinze Emeagwali joins the show to talk about everything from his experience in undergrad, his career in marketing, and the development of the Nike Yard Runners campaign. + News Magazine + + + TVPG + + + + Whose Line Is It Anyway? + Heather Anne Campbell 3 + Guest comic Heather Anne Campbell.Guests: Heather Anne Campbell.. + + Ryan Stiles + Wayne Brady + Colin Mochrie + + Comedy + Game Shows + + + TV14 + + + + Whose Line Is It Anyway? + Gary Anthony Williams 3 + Guest comic Gary Anthony Williams.Guests: Gary Anthony Williams.. + + Ryan Stiles + Wayne Brady + Colin Mochrie + + Comedy + Game Shows + + + TV14 + + + + My Wife and Kids + Here Come Da Judge + Michael calls a family court session when Jr. battles Claire over ownership of a discovered wallet containing $500. + + Damon Wayans + Tisha Campbell-Martin + George Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Claire's Permit + Michael's fears come true when he tries to teach Claire how to drive. + + Damon Wayans + Tisha Campbell-Martin + George Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Sharon's Picture + Jay wonders why Michael saved a picture of an attractive ex-girlfriend; Franklin cannot admit Aretha is as good a singer as he is a pianist. + + Damon Wayans + Tisha Campbell-Martin + George Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Tee for Too Many + Jay decides to watch Michael play golf in order to spend more quality time with him; Jr. asks Franklin to help him with his college essay. + + Damon Wayans + Tisha Campbell-Martin + George Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + The Big Bang Theory + Claire and Tony announce the time has come for them to consummate their relationship; Kady catches Jr. playing with her dolls. + + Damon Wayans + Tisha Campbell-Martin + George Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Not So Hostile Takeover + Michael and Jay volunteer to be chaperons at Claire's high-school prom; Jr. gets excited about fixing up his first car. + + Damon Wayans + Tisha Campbell-Martin + George Gore II + + Sitcom + + + TVPG + + + + The Steve Harvey Show + The Roof Is on Fire + Regina rooms with Steve when a roof fire leaves her homeless; romance heats up between Romeo and Sara. + + Steve Harvey + Cedric the Entertainer + Merlin Santana + + Sitcom + + + TVG + + + + The Steve Harvey Show + I Do, I Don't + Steve refuses to allow Snoop Doggy Dogg and Sean. + + Steve Harvey + Cedric the Entertainer + Merlin Santana + + Sitcom + + + TVG + + + + The Steve Harvey Show + Can't Buy Me Love + A new student (Kenan Thompson) gives Regina (Wendy Raquel Robinson) an extravagant birthday gift, but Steve (Steve Harvey) pretends it is from him. + + Steve Harvey + Cedric the Entertainer + Merlin Santana + + Sitcom + + + TVG + + + + The Steve Harvey Show + Whatever You Want + Regina's (Wendy Raquel Robinson) new assistant (Terri J. Vaughn) falls in love with Cedric (Cedric the Entertainer); Romeo (Merlin Santana) befriends his formerly overweight neighbor (Ariyan Johnson). + + Steve Harvey + Cedric the Entertainer + Merlin Santana + + Sitcom + + + TVPG + + + + The Bernie Mac Show + The United Front + Bernie and Wanda strive to present a united front when disciplining the children; Wanda becomes unhappy with this strategy because she's accustomed to playing the good cop. + + Bernie Mac + Kellita Smith + Camille Winbush + + Sitcom + + + TVPG + + + + The Bernie Mac Show + The Sweet Life + Bernie circumvents his low-cholesterol diet by sneaking over to a neighbor's (guest star Don Rickles) place. + + Bernie Mac + Kellita Smith + Camille Winbush + + Sitcom + + + TVPG + + + + Money Moves + Jarule + Platinum-selling rapper Jarule discusses the financial mistakes when he first started and the importance of black people entering the web space. + Business + + + TVPG + + + + Money Moves + Drumma Boy + Two-time Grammy-winning producer Drumma Boy opens up about how he got started in the music industry. + Business + + + TVPG + + + + The Bernie Mac Show + Sin Cup + Bernie and Wanda worry about Jordan's religious faith after he defaces a picture of Jesus. + + Bernie Mac + Kellita Smith + Camille Winbush + + Sitcom + + + TVPG + + + + The Bernie Mac Show + Bernie Mac Rope-A-Dope + Bernie offends Wanda's boss (Wesley Snipes) at a dinner party. + + Bernie Mac + Kellita Smith + Camille Winbush + + Sitcom + + + TVPG + + + + My Wife and Kids + Michael's Band + When Michael's former bandmate (Clarence Clemons) comes to town for a gig, Michael agrees to sit in as the band's piano player. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + The Lady Is Not a Tramp + Michael fears the worst when he discovers condoms in Claire's backpack; Jr. accidentally gives Kady a dose of dog medicine. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Of Mice and Man + When Jay finds mouse droppings, she demands that Michael hire an exterminator, but Michael is determined to handle it himself; Claire accidentally runs over a squirrel while driving home. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Moving on Out + The condition and location of Jr.'s new apartment shocks Jay, who cannot believe her new grandchild might live there. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + Money Moves + Jarule + Platinum-selling rapper Jarule discusses the financial mistakes when he first started and the importance of black people entering the web space. + Business + + + TVPG + + + + Money Moves + Drumma Boy + Two-time Grammy-winning producer Drumma Boy opens up about how he got started in the music industry. + Business + + + TVPG + + + + The Steve Harvey Show + Do Not Duplicate + Lovita convinces Steve to give Regina a key to his apartment instead of jewelry, but Regina is unimpressed with the gesture. + + Steve Harvey + Cedric the Entertainer + Wendy Raquel Robinson + + Sitcom + + + TVPG + + + + The Steve Harvey Show + E-Male Problems + Steve explains his reasons for excluding Regina from a dinner party with his parents in an e-mail that inadvertently gets sent to her. + + Steve Harvey + Cedric the Entertainer + Wendy Raquel Robinson + + Sitcom + + + TVPG + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Under Eye Bags? SOLUTION! + Plexaderm helps reduce Under Eye Bags, Dark Circles, and Wrinkles in just 10 minutes! + Paid Program + Lifestyle + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Ninja Woodfire Outdoor Grill + Meet the Shark Ninja Wood Fire Grill, with Master Grill, BBQ Smoke, and Air Fry outdoor capabilities. Powered by electricity and flavored by real burning wood pellets, Woodfire Technology allows you to easily create rich flavor you can see and taste. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + From This Day Forward + Patrice (Essence Atkins) and Corrine (Vanessa Simmons), two sexy and confident women in great relationships, have to learn tough lessons about trust and fidelity to make their love last. + + Essence Atkins + Vanessa Simmons + Leon + + 2012 + Movies + Drama + + + + Love Me or Leave Me + A reckless teenager ditches her infant twins and scoots off to someplace, only to return into their lives years later when they have grown up into adults with issues. + + Chris Bolton + Terrell Carter + Candace Evanofski + + 2010 + Movies + Drama + + + + Urban Indie Film Block + Trapped + A rookie African American police officer faces a veteran partner who abuses the power of his badge in. + Drama + + + TVPG + + + + Twisted Dish + Roasted Chicken Soup For The Soul + Chef Shular hand crafts Chicken and Baby Kale Soup from scratch. + Food + + + TVPG + + + + Twisted Dish + Steak Marsala With Creamy Risotto + Master chef Shular creates the savory steak marsala with risotto classic dish step by step. + Food + + + TVPG + + + + Twisted Dish + Not Your Average Baked Chicken Alfredo + Master chef Shular takes the angst out of preparing classic dishes by teaching technique, tips and tricks. + Food + + + TVPG + + + + Twisted Dish + Yummy Curry Fried Samosas + Shular makes samosas, the popular North Indian street food snack filled with savory potatoes, peas and curry. + Food + + + TVPG + + + + Whose Line Is It Anyway? + Jeff Davis 7 + Guest comic Jeff Davis.Guests: Jeff Bryan Davis.. + + Ryan Stiles + Wayne Brady + Colin Mochrie + + Comedy + Game Shows + + + TV14 + + + + Whose Line Is It Anyway? + Carmen Electra + Guest comic Brad Sherwood; TV personality Carmen Electra.Guests: Brad Sherwood, Carmen Electra.. + + Ryan Stiles + Wayne Brady + Colin Mochrie + + Comedy + Game Shows + + + TV14 + + + + My Wife and Kids + Graduation + Jr.'s high-school graduation day is a cause for celebration and concern about his future for Michael and Jay, who want him to go to college. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Graduation + Jr.'s high-school graduation day is a cause for celebration and concern about his future for Michael and Jay, who want him to go to college. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + From Dummy to Daddy + Michael and Jay realize they have nine months to transform their teenaged son into a responsible adult capable of providing for his new family. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + The Sweet Hairafter + Michael takes too many hair-growth pills and suffers unusual side effects. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Jr. Executive + As the boss' son, Jr. convinces other employees at Kyle Trucking to do his work for him; Claire arranges a secret date with a guy she met on the Internet. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Jay Goes to School + Seeking fulfillment, Jay goes back to college despite Michael's protests; Jr.'s buddies (Damon Wayans Jr., Michael Wayans) decide to turn his old baby crib into a hip new machine. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + The Steve Harvey Show + Somebody's Sleepin' in My Bed + Lovita's (Terri J. Vaughn) frequent visits stress Steve (Steve Harvey); Romeo (Merlin Santana) teaches Aisha (Ariyan Johnson) to dance. + + Steve Harvey + Cedric the Entertainer + Merlin Santana + + Sitcom + + + TVPG + + + + The Steve Harvey Show + Bully Call + A bully thwarts Romeo's plans for a dance date; Steve's ego is hurt when Regina beats him at Scrabble. + + Steve Harvey + Cedric the Entertainer + Merlin Santana + + Sitcom + + + TVPG + + + + The Steve Harvey Show + Don't Quit Your Day Job + Steve urges Romeo to join the choir despite his lack of musical ability; Cedric helps Bullethead take on the school bully. + + Steve Harvey + Cedric the Entertainer + Merlin Santana + + Sitcom + + + TVPG + + + + The Steve Harvey Show + Fool and the Gang + When Regina (Wendy Raquel Robinson) gets stage fright, Cedric (Cedric. + + Steve Harvey + Cedric the Entertainer + Merlin Santana + + Sitcom + + + TVPG + + + + The Bernie Mac Show + Magic Jordan + Jordan learns some magic tricks and uses them to charm his first crush. + + Bernie Mac + Kellita Smith + Camille Winbush + + Sitcom + Christmas + + + TVPG + + + + The Bernie Mac Show + Raging Election + Bernie calls on India.Arie to help out with Vanessa's talent show. + + Bernie Mac + Kellita Smith + Camille Winbush + + Sitcom + + + TVPG + + + + Downright Delicious With Yo-Yo + Sister Soul Brunch + Hip-hop legend Roxanne Shante drops by and hangs out with YoYo for some good food and good times; they reminisce over a great bowl of shrimp and grits topped with rich and creamy gravy. + Food + + + TVPG + + + + Downright Delicious With Yo-Yo + Dinner Party at Yo-Yo's Place + Yo-Yo's recipe for a great dinner party is great people, a great vibe and great food; she serves it up in a way that only she can, laying out a tender and juicy oyster-glazed rib-eye steak, creamy mashed potatoes, and a baby arugula salad. + Food + + + TVPG + + + + The Bernie Mac Show + Leaving Los Angeles + Bernie delays his Las Vegas flight to take the children to the movies as promised; Bryanna and Jordan sneak out of a G-rated movie to watch more-exciting fare. + + Bernie Mac + Kellita Smith + Camille Winbush + + Sitcom + + + TVPG + + + + The Bernie Mac Show + Pink Gold + Bernie will not let Chris Rock get a word in edgewise when they appear together on. + + Bernie Mac + Kellita Smith + Camille Winbush + + Sitcom + + + TVPG + + + + My Wife and Kids + Candy Wars + Michael loses sight of his daughter in his quest to sell the most chocolate bars during a school candy drive. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Jr. Sells His Car + Jr. and Vanessa shock everyone by selling the Impala after they finish restoring it; Franklin asks Michael how he can act more like a normal kid. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + The Anniversary Present + Michael and Jay try to hide their disappointment with their anniversary gifts; Claire hopes to prepare a gourmet dinner for her parents. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Illegal Smile + Michael's unnatural-looking smile lands him in hot water with a traffic-court judge and later with his cellmate (Lou Ferrigno). + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + Downright Delicious With Yo-Yo + Sister Soul Brunch + Hip-hop legend Roxanne Shante drops by and hangs out with YoYo for some good food and good times; they reminisce over a great bowl of shrimp and grits topped with rich and creamy gravy. + Food + + + TVPG + + + + Downright Delicious With Yo-Yo + Dinner Party at Yo-Yo's Place + Yo-Yo's recipe for a great dinner party is great people, a great vibe and great food; she serves it up in a way that only she can, laying out a tender and juicy oyster-glazed rib-eye steak, creamy mashed potatoes, and a baby arugula salad. + Food + + + TVPG + + + + The Steve Harvey Show + Knit Picking + Steve is rattled when Regina pulls out all the stops for their one-month anniversary, including a romantic dinner. + + Steve Harvey + Cedric the Entertainer + Wendy Raquel Robinson + + Sitcom + + + TVPG + + + + The Steve Harvey Show + Principal's Pet + Steve takes advantage of his relationship with Regina when he arrives late and unprepared for a staff meeting. + + Steve Harvey + Cedric the Entertainer + Wendy Raquel Robinson + + Sitcom + + + TVPG + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Under Eye Bags? SOLUTION! + Plexaderm helps reduce Under Eye Bags, Dark Circles, and Wrinkles in just 10 minutes! + Paid Program + Lifestyle + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Life of a King + Determined to help at-risk youths avoid the mistakes he made, an ex-con (Cuba Gooding Jr.) forms a chess club to offer them an alternative to running with street gangs. + + Cuba Gooding Jr. + Malcolm M. Mays + Richard T. Jones + + 2013 + Movies + Drama + + + TVG + + + 2 + + + + Sugar Mommas + Sisters Sheila and Lynn have loved sweets their entire life, so when they decided to start a business it came naturally to own a bakery. The sisters asked close friend Tommi to join them as their specialty pie maker. + + Terri J. Vaughn + Rachel True + Thomas Mikal Ford + + Specials + Performing Arts + + + TVG + + + + Urban Indie Film Block + Choices + Against her mother's wishes, a girl dates a guy that leads to her contracting HIV and ultimately her death in. + Drama + + + TVPG + + + + Money Moves + Bun B + Bun B discusses the changes in the music business and the importance of ownership. + Business + + + TVG + + + + Money Moves + Ingrid Best + Ingrid Best shares advice on how to build a brand and the challenges she overcame in marketing during a global pandemic. + Business + + + TVG + + + + Money Moves + Keenan Beasley + Keenan Beasly is a marketing executive and serial entrepreneur powerhouse; he shares the significance of building a brand and the steps he took to get. + Business + + + TVG + + + + Money Moves + Kim Osorio + Kim Osorio, one of the most respected women in music journalism, opens up about how she got her start as a writer and shares her views on social media journalism. + Business + + + TVPG + + + + Whose Line Is It Anyway? + Jeff Davis 6 + Guest comic Jeff Davis.Guests: Jeff Bryan Davis.. + + Ryan Stiles + Wayne Brady + Colin Mochrie + + Comedy + Game Shows + + + TV14 + + + + Whose Line Is It Anyway? + Greg Proops 2 + Guest comic Greg Proops.Guests: Greg Proops.. + + Ryan Stiles + Wayne Brady + Colin Mochrie + + Comedy + Game Shows + + + TV14 + + + + My Wife and Kids + Meet the Parents + Vanessa's parents try to bully Michael and Jay into buying things that will benefit them, not the baby. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + He's Having a Baby + Michael and Jay try to teach Jr. what it is like to be a father by giving him a water balloon to care for. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + The Funeral + Michael's grief-stricken employee (Sean Whalen) asks Kady to kiss his dead grandmother goodbye at the funeral. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Marathon + Jay and Michael decide to compete in the New York City Marathon, but Michael does not see the need to adopt Jay's training regimen. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Ultrasound + Vanessa and Jr. prepare for their first ultrasound, and the grandparents-to-be go to extremes to find out the sex of the baby; Franklin is worried that Kady will dump him for Willie K. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + While Out + Claire throws a wild party in her parents' absence; a drunken Tony runs naked through the neighborhood. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + The Steve Harvey Show + Let's Talk About Sax + Steve lands an audition with a record producer, then panics when he realizes he doesn't have his saxophone. + + Steve Harvey + Cedric the Entertainer + Merlin Santana + + Sitcom + + + TVPG + + + + The Steve Harvey Show + Steve's Gotta Have It + Steve (Steve Harvey) books a romantic evening with Regina (Wendy Raquel Robinson) on the same night of the Big Brother of the Year banquet. + + Steve Harvey + Cedric the Entertainer + Merlin Santana + + Sitcom + + + TVPG + + + + The Steve Harvey Show + When the Funk Hits the Rib Tips + Steve battles with his former group to become the house act at a local nightclub. + + Steve Harvey + Cedric the Entertainer + Merlin Santana + + Sitcom + + + TVPG + + + + The Steve Harvey Show + I'm Not a Chauvinist, Piggy + Regina's (Wendy Raquel Robinson) televised battle with a chicken mascot at a basketball game tests Steve's (Steve Harvey) manliness. + + Steve Harvey + Cedric the Entertainer + Merlin Santana + + Sitcom + + + TVPG + + + + Jurm + A policeman's involvement in a high-profile murder investigation complicates his married life after he ends up sleeping with the eyewitness. He soon unearths secrets that put a question mark on the credibility of his kind. + + Vinod Khanna + Meenakshi Sheshadri + Sangeeta Bijlani + + 1990 + Movies + Action + + + + Aulad + Two couples meet on a train, but a mishap occurs. Believing his wife to be dead, Anand gives up his own child to Yashoda, who's lost her husband and her baby; however, he faces a dilemma when his wife returns. + + Jeetendra + Jaya Prada + Sridevi + + 1987 + Movies + Drama + + + + Aulad + Two couples meet on a train, but a mishap occurs. Believing his wife to be dead, Anand gives up his own child to Yashoda, who's lost her husband and her baby; however, he faces a dilemma when his wife returns. + + Jeetendra + Jaya Prada + Sridevi + + 1987 + Movies + Drama + + + + Zamana + A photographer who accidentally captures a mob murder, is killed and his family must flee to save their lives. Years later, his son finds his father's murderer and contemplates revenge. + + Rajesh Khanna + Rishi Kapoor + Poonam Dhillon + + 1985 + Movies + Drama + + + 4 + + + + Conversation with Poonam Dhillion + Talk Shows + + + + Conversation with Javed Akhtar 2 + Talk Shows + + + + Warrant + A convict saves a jailer from an attack in the jail making the jailer believe that he is not guilty. He arranges for his escape but the police head also his father and a don is looking for both of them. + + Dev Anand + Zeenat Aman + Pran + + 1975 + Movies + Drama + + + + Izzat + Adivashi returns home from college to learn that his mother has passed away and that she had been having an affair. + + Dharmendra + Tanuja + Balraj Sahani + + 1968 + Movies + Action + + + 3 + + + + Daulat Ki Jung + Rajesh and Asha, the children of business rivals, study at the same college and fall in love; when their parents forbid them to see each other, they elope. + + Aamir Khan + Juhi Chawla + Shafi Inamdar + + 1992 + Movies + Romance + + + + Junoon + A woman (Pooja Bhatt) looks for a way to end a curse which turns her new husband (Rahul Roy) into a deadly tiger during each full moon. + + Rahul Roy + Pooja Bhatt + Tom Alter + + 1992 + Movies + Horror + + + + Max 2 Fillers + Drama + + + + Jigri Dost + An official's daughter is pleased when her father betroths her to another official, until she catches her intended in the arms of another woman. + + Jeetendra + Mumtaz + K.N. Singh + + 1969 + Movies + Drama + + + + Mere Apne + Anandi lives in a small village, until one day when a distant relative asks her to move to the big city with him and his family. + + Meena Kumari + Vinod Khanna + Shatrughan Sinha + + 1971 + Movies + Musical + + + 3 + + + + Mera Saathi + + Jeetendra + Jaya Prada + Rajiv Kapoor + + 1985 + Movies + Drama + + + + Mera Saathi + + Jeetendra + Jaya Prada + Rajiv Kapoor + + 1985 + Movies + Drama + + + + Conversation with Rajkummar Rao + Talk Shows + Performing Arts + + + + Josh + The sister (Aishwarya Rai) of a gang leader (Shahrukh Khan) falls for a member (Chandrachur Singh) of a rival group. + + Shahrukh Khan + Aishwarya Rai Bachchan + Chandrachur Singh + + 2000 + Movies + Drama + + + TVG + + + 3 + + + + Pyaar Ke Naam Qurban + A man decides to avenge his humiliation by abducting a woman who had him beaten up and arrested, but his action invites the wrath of her brothers, who now want him dead at any cost. + + Mithun Chakraborty + Dimple Kapadia + Mandakini + + 1990 + Movies + Drama + + + + Chalte Chalte + A young woman's lover passes away, driving her insane and into a mental hospital. A few years later, after she is discharged, she finds out he is alive and with another woman affecting her mental health further. + + Simi Garewal + Vishal Anand + Nazneen + + 1976 + Movies + Musical + + + 3 + + + + Kyaa Dil Ne Kahaa + A young man, supposedly in love with the woman he's about to marry, refuses to take the wedding ahead. + + Rajesh Khanna + Tusshar Kapoor + Esha Deol + + 2002 + Movies + Romance + + + + The Train + A policeman (Rajesh Khanna) investigates a crime syndicate that swindles jewelers. + + Rajesh Khanna + Nanda + Helen + + 1970 + Movies + Thriller + + + + Max 2 Fillers + Drama + + + + Anita + After his ex-fiancee is killed in an accident, Neeraj finds her look-alike. His investigation leads him further into a labyrinth of lies and deception. + + Manoj Kumar + I.S. Johar + Sajjan + + 1967 + Movies + Drama + + + + Kab? Kyoon? Aur Kahan? + A girl's millionaire father dies mysteriously in a car accident and she inherits her father's property. She gets attacked by her uncle but while trying to save her friend's life she commits a murder. + + Dharmendra + Helen + Babita Kapoor + + 1970 + Movies + Action + + + 4 + + + + Udhar Ka Sindur + Wealthy Dr. Shivnath decides to adopt an injured orphan named Rajkumar. Shivnath's wife, Janki, resents him for his actions and reserves her love for her two biological children, Premnath and Sudha. + + Jeetendra + Reena Roy + Asha Parekh + + 1976 + Movies + Drama + + + 3 + + + + Udhar Ka Sindur + Wealthy Dr. Shivnath decides to adopt an injured orphan named Rajkumar. Shivnath's wife, Janki, resents him for his actions and reserves her love for her two biological children, Premnath and Sudha. + + Jeetendra + Reena Roy + Asha Parekh + + 1976 + Movies + Drama + + + 3 + + + + Conversation with Javed Akhtar 2 + Talk Shows + + + + Aa Gale Lag Jaa + Preeti, a wealthy woman, is in an intimate relationship with Prem, but her father disapproves and devises a plan that leads to their breakup. Years later, Preeti is reunited with Prem in a completely different situation. + + Shashi Kapoor + Sharmila Tagore + Shatrughan Sinha + + 1973 + Movies + Action + + + 3 + + + + Raavan + Ganga is in love with Raavan, a cruel man. She sets out to change him and his ways, and turn him into Ram. + + Smita Patil + Gulshan Arora + Om Puri + + 1984 + Movies + Drama + + + + Koshish + A deaf and mute couple chisel out a niche for themselves in a desensitized society. + + Sanjeev Kumar + Jaya Bachchan + Govardhan Asrani + + 1972 + Movies + Drama + + + 4 + + + + Naya Daur + A rift develops between two lifelong friends when they fall in love with the same woman. + + Dilip Kumar + Chand Usmani + Jeevan + + 1957 + Movies + Drama + + + 4 + + + + Betaab + A young man (Sunny Deol) and woman (Amrita Singh) fall in love, but face obstacles from their families. + + Sunny Deol + Amrita Singh + Nirupa Roy + + 1983 + Movies + Romance + + + + Max 2 Fillers + Drama + + + + Lahu Ke Do Rang + Inspector Raj Singh sets out to avenge his father, who was killed by Shankar. However, he is shocked when he discovers that he has a stepbrother who now works for the culprit. + + Vinod Khanna + Shabana Azmi + Danny Denzongpa + + 1979 + Movies + Action + + + + Kasme Vaade + A man (Randhir Kapoor) meets a small-time criminal (Amitabh Bachchan) who looks like his late brother. + + Amitabh Bachchan + Raakhee + Randhir Kapoor + + 1978 + Movies + Drama + + + 4 + + + + Mast + A young man (Aftab Shivdasani) goes out of his way to meet a film star (Urmila Matondkar), an obsession that caused him to flunk his final exams. + + Aftab Shivdasani + Urmila Matondkar + Antara Mali + + 1999 + Movies + Romance + + + 3 + + + + Mast + A young man (Aftab Shivdasani) goes out of his way to meet a film star (Urmila Matondkar), an obsession that caused him to flunk his final exams. + + Aftab Shivdasani + Urmila Matondkar + Antara Mali + + 1999 + Movies + Romance + + + 3 + + + + Conversation with Rajkummar Rao + Talk Shows + Performing Arts + + + + Sahebzaade + + Sanjay Dutt + Neelam + Aditya Pancholi + + 1992 + Movies + Drama + + + + Conversation with Poonam Dhillion + Talk Shows + + + + Himmatwala + A young man returns to his home village to avenge his father's suicide, but a romance with the daughter of the man who drove his father to such an act complicates the young man's mission. + + Ajay Devgan + Tamannah + Mahesh Manjrekar + + 2013 + Movies + Action + + + TVG + + + + Abdullah + According to a prophecy, a young boy is meant to kill a cruel Arab bandit. The bandit hunts for the child, while the boy's old guardian and providence plot to keep him safe. + + Raj Kapoor + Danny Denzongpa + Sanjay Khan + + 1980 + Movies + Drama + + + + Anari + Rajnandini, a rich girl, appoints Rama, a simpleton, as her bodyguard. She soon falls in love with him, which creates havoc in his life. + + Daggubati Venkatesh + Karisma Kapoor + Raakhee + + 1993 + Movies + Romance + + + 2 + + + + Sadak + A young man falls in love with a prostitute, but must battle countless social norms in order to stay with her, while facing the gloomy world she comes from. + + Sanjay Dutt + Pooja Bhatt + Deepak Tijori + + 1991 + Movies + Drama + + + 3 + + + + Max 2 Fillers + Drama + + + + World Poker Tour + Poker players compete in a series of tournaments at casinos around the world. + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2003 + + TV-PG + + + + World Poker Tour + Poker players compete in a series of tournaments at casinos around the world. + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2003 + + TV-PG + + + + World Poker Tour + Poker players compete in a series of tournaments at casinos around the world. + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2003 + + TV-PG + + + + World Poker Tour + Poker players compete in a series of tournaments at casinos around the world. + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2003 + + TV-PG + + + + UFA + Mixed-martial-arts action from the United Fight Alliance. + + TV-14 + + + + UFA + Mixed-martial-arts action from the United Fight Alliance. + + TV-14 + + + + UFA + Mixed-martial-arts action from the United Fight Alliance. + + TV-14 + + + + The Immortals + The careers of sports' greatest icons are chronicled. + 2019 + Documentary + Sports + + + The Short List + The ultimate sports countdown series, focusing on the most memorable moments and individuals. + + + The Immortals + The careers of sports' greatest icons are chronicled. + 2019 + Documentary + Sports + + + The Short List + The ultimate sports countdown series, focusing on the most memorable moments and individuals. + + + Pure Outdoor + One of Europe's toughest amateur cycling races has eight grueling stages. + + + Invincilble + + + Pro Footvolley Tour + A sand sport combining aspects of soccer and beach volleyball. + 2020 + Sports + + + World Jai-Alai League + 2023 + + + West Coast Sporting Journal + Fishing series dedicated to gear and fly techniques for chrome bright steelhead, salmon and trout. + Sports + + + Perfect Game TV + Talking baseball development across the U.S., highlighting top players and programs through interviews and features. + + + Perfect Game All-American Classic + + + The Card Life + A traveling look at the sports card collecting hobby, with news, features and profiles from the industry. + + Brandon Verzal + Matt Strahm + + Sports + + TV-PG + + + + World Tennis With Harry Cicma + Interviews and features with the biggest names in tennis, plus highlights and training tips. + Pro Sports + Sports + + + Sports Stars of Tomorrow + Sports Stars of Tomorrow is a United States nationally-syndicated sports television show about high school and college athletics. The show, which is hosted by well known college and NFL television analyst Charles Davis, takes its viewers across the country in search of the brightest young stars in sports. Sports Stars of Tomorrow is the only high-school sports program in national syndication. + + Charles Davis + Pat Summerall + + Sports + + TV-G + + + + Charlie Moore: No Offense + A variety of guests join New Englander Charlie Moore, the Mad Fisherman, on outdoors excursions. + + Charlie Moore + + Travel + Reality + Sports + + TV-PG + + + + 18 Holes With Jimmy Hanlin + Touring top golf courses around the U.S., plus a look at other amenities offered by the resorts. + + + Swing Clinic with Jimmy Hanlin + PGA pro Jimmy Hanlin takes viewers to school with golf tips, rules, etiquette, exercises and more. + Sports + + + Golf Life + A look at golf courses, training tips and mental aspects of the game. + + + Breaking Par + A look at the game of golf through a different lens. + + Ryan Johnson + Felix Stone + + Sports + + + Fairways of Life with Matt Adams + Author and Golf Channel host Matt Adams brings you inside the ropes for exclusive interviews with all of golf's stars; equipment updates; instruction for your game; the latest headlines and more. + + Matt Adams + + Talk & Interview + Sports + + + Marlin Quest + Chasing the biggest game fish at spectacular locations around the world. + + + A Fishing Story + Anglers from all walks of life share their tales. + + Ronnie Green + + Sports + + + Pro Padel League + The PPL is the first North American league for the sport of padel, which has elements of tennis, squash and pickleball, with walls in play on a surface roughly one-third the size of a tennis court. + + + World Poker Tour + Poker players compete in a series of tournaments at casinos around the world. + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2003 + + TV-PG + + + + World Poker Tour + Poker players compete in a series of tournaments at casinos around the world. + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2003 + + TV-PG + + + + World Poker Tour + Poker players compete in a series of tournaments at casinos around the world. + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2003 + + TV-PG + + + + World Poker Tour + Poker players compete in a series of tournaments at casinos around the world. + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2003 + + TV-PG + + + + World Poker Tour + Poker players compete in a series of tournaments at casinos around the world. + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2003 + + TV-PG + + + + UFA + Mixed-martial-arts action from the United Fight Alliance. + + TV-14 + + + + UFA + Mixed-martial-arts action from the United Fight Alliance. + + TV-14 + + + + UFA + Mixed-martial-arts action from the United Fight Alliance. + + TV-14 + + + + The Immortals + The careers of sports' greatest icons are chronicled. + 2019 + Documentary + Sports + + + The Short List + The ultimate sports countdown series, focusing on the most memorable moments and individuals. + + + Pure Outdoor + One of Europe's toughest amateur cycling races has eight grueling stages. + + + Invincilble + + + Pro Footvolley Tour + A sand sport combining aspects of soccer and beach volleyball. + 2020 + Sports + + + World Jai-Alai League + 2023 + + + West Coast Sporting Journal + Fishing series dedicated to gear and fly techniques for chrome bright steelhead, salmon and trout. + Sports + + + Perfect Game TV + Talking baseball development across the U.S., highlighting top players and programs through interviews and features. + + + Perfect Game All-American Classic + + + The Card Life + A traveling look at the sports card collecting hobby, with news, features and profiles from the industry. + + Brandon Verzal + Matt Strahm + + Sports + + TV-PG + + + + World Tennis With Harry Cicma + Interviews and features with the biggest names in tennis, plus highlights and training tips. + Pro Sports + Sports + + + Sports Stars of Tomorrow + Sports Stars of Tomorrow is a United States nationally-syndicated sports television show about high school and college athletics. The show, which is hosted by well known college and NFL television analyst Charles Davis, takes its viewers across the country in search of the brightest young stars in sports. Sports Stars of Tomorrow is the only high-school sports program in national syndication. + + Charles Davis + Pat Summerall + + Sports + + TV-G + + + + Charlie Moore: No Offense + A variety of guests join New Englander Charlie Moore, the Mad Fisherman, on outdoors excursions. + + Charlie Moore + + Travel + Reality + Sports + + TV-PG + + + + 18 Holes With Jimmy Hanlin + Touring top golf courses around the U.S., plus a look at other amenities offered by the resorts. + + + Swing Clinic with Jimmy Hanlin + PGA pro Jimmy Hanlin takes viewers to school with golf tips, rules, etiquette, exercises and more. + Sports + + + Golf Life + A look at golf courses, training tips and mental aspects of the game. + + + Breaking Par + A look at the game of golf through a different lens. + + Ryan Johnson + Felix Stone + + Sports + + + Fairways of Life with Matt Adams + Author and Golf Channel host Matt Adams brings you inside the ropes for exclusive interviews with all of golf's stars; equipment updates; instruction for your game; the latest headlines and more. + + Matt Adams + + Talk & Interview + Sports + + + Marlin Quest + Chasing the biggest game fish at spectacular locations around the world. + + + A Fishing Story + Anglers from all walks of life share their tales. + + Ronnie Green + + Sports + + + Pro Padel League + The PPL is the first North American league for the sport of padel, which has elements of tennis, squash and pickleball, with walls in play on a surface roughly one-third the size of a tennis court. + + + World Poker Tour + Poker players compete in a series of tournaments at casinos around the world. + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2003 + + TV-PG + + + + World Poker Tour + Poker players compete in a series of tournaments at casinos around the world. + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2003 + + TV-PG + + + + World Poker Tour + Poker players compete in a series of tournaments at casinos around the world. + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2003 + + TV-PG + + + + World Poker Tour + Poker players compete in a series of tournaments at casinos around the world. + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2003 + + TV-PG + + + + World Poker Tour + Poker players compete in a series of tournaments at casinos around the world. + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2003 + + TV-PG + + + + UFA + Mixed-martial-arts action from the United Fight Alliance. + + TV-14 + + + + UFA + Mixed-martial-arts action from the United Fight Alliance. + + TV-14 + + + + UFA + Mixed-martial-arts action from the United Fight Alliance. + + TV-14 + + + + The Immortals + The careers of sports' greatest icons are chronicled. + 2019 + Documentary + Sports + + + The Short List + The ultimate sports countdown series, focusing on the most memorable moments and individuals. + + + Pure Outdoor + One of Europe's toughest amateur cycling races has eight grueling stages. + + + Invincilble + + + Pro Footvolley Tour + A sand sport combining aspects of soccer and beach volleyball. + 2020 + Sports + + + World Jai-Alai League + 2023 + + + West Coast Sporting Journal + Fishing series dedicated to gear and fly techniques for chrome bright steelhead, salmon and trout. + Sports + + + Perfect Game TV + Talking baseball development across the U.S., highlighting top players and programs through interviews and features. + + + Perfect Game All-American Classic + + + The Card Life + A traveling look at the sports card collecting hobby, with news, features and profiles from the industry. + + Brandon Verzal + Matt Strahm + + Sports + + TV-PG + + + + World Tennis With Harry Cicma + Interviews and features with the biggest names in tennis, plus highlights and training tips. + Pro Sports + Sports + + + Sports Stars of Tomorrow + Sports Stars of Tomorrow is a United States nationally-syndicated sports television show about high school and college athletics. The show, which is hosted by well known college and NFL television analyst Charles Davis, takes its viewers across the country in search of the brightest young stars in sports. Sports Stars of Tomorrow is the only high-school sports program in national syndication. + + Charles Davis + Pat Summerall + + Sports + + TV-G + + + + Charlie Moore: No Offense + A variety of guests join New Englander Charlie Moore, the Mad Fisherman, on outdoors excursions. + + Charlie Moore + + Travel + Reality + Sports + + TV-PG + + + + 18 Holes With Jimmy Hanlin + Touring top golf courses around the U.S., plus a look at other amenities offered by the resorts. + + + Swing Clinic with Jimmy Hanlin + PGA pro Jimmy Hanlin takes viewers to school with golf tips, rules, etiquette, exercises and more. + Sports + + + Golf Life + A look at golf courses, training tips and mental aspects of the game. + + + Breaking Par + A look at the game of golf through a different lens. + + Ryan Johnson + Felix Stone + + Sports + + + Fairways of Life with Matt Adams + Author and Golf Channel host Matt Adams brings you inside the ropes for exclusive interviews with all of golf's stars; equipment updates; instruction for your game; the latest headlines and more. + + Matt Adams + + Talk & Interview + Sports + + + Marlin Quest + Chasing the biggest game fish at spectacular locations around the world. + + + A Fishing Story + Anglers from all walks of life share their tales. + + Ronnie Green + + Sports + + + Pro Padel League + The PPL is the first North American league for the sport of padel, which has elements of tennis, squash and pickleball, with walls in play on a surface roughly one-third the size of a tennis court. + + + World Poker Tour + Poker players compete in a series of tournaments at casinos around the world. + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2003 + + TV-PG + + + + World Poker Tour + Poker players compete in a series of tournaments at casinos around the world. + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2003 + + TV-PG + + + + World Poker Tour + Poker players compete in a series of tournaments at casinos around the world. + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2003 + + TV-PG + + + + World Poker Tour + Poker players compete in a series of tournaments at casinos around the world. + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2003 + + TV-PG + + + + World Poker Tour + Poker players compete in a series of tournaments at casinos around the world. + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2003 + + TV-PG + + + + UFA + Mixed-martial-arts action from the United Fight Alliance. + + TV-14 + + + + UFA + Mixed-martial-arts action from the United Fight Alliance. + + TV-14 + + + + UFA + Mixed-martial-arts action from the United Fight Alliance. + + TV-14 + + + + The Immortals + The careers of sports' greatest icons are chronicled. + 2019 + Documentary + Sports + + + The Short List + The ultimate sports countdown series, focusing on the most memorable moments and individuals. + + + Pure Outdoor + One of Europe's toughest amateur cycling races has eight grueling stages. + + + Invincilble + + + Pro Footvolley Tour + A sand sport combining aspects of soccer and beach volleyball. + 2020 + Sports + + + World Jai-Alai League + 2023 + + + West Coast Sporting Journal + Fishing series dedicated to gear and fly techniques for chrome bright steelhead, salmon and trout. + Sports + + + Perfect Game TV + Talking baseball development across the U.S., highlighting top players and programs through interviews and features. + + + Perfect Game All-American Classic + + + The Card Life + A traveling look at the sports card collecting hobby, with news, features and profiles from the industry. + + Brandon Verzal + Matt Strahm + + Sports + + TV-PG + + + + World Tennis With Harry Cicma + Interviews and features with the biggest names in tennis, plus highlights and training tips. + Pro Sports + Sports + + + Sports Stars of Tomorrow + Sports Stars of Tomorrow is a United States nationally-syndicated sports television show about high school and college athletics. The show, which is hosted by well known college and NFL television analyst Charles Davis, takes its viewers across the country in search of the brightest young stars in sports. Sports Stars of Tomorrow is the only high-school sports program in national syndication. + + Charles Davis + Pat Summerall + + Sports + + TV-G + + + + Charlie Moore: No Offense + A variety of guests join New Englander Charlie Moore, the Mad Fisherman, on outdoors excursions. + + Charlie Moore + + Travel + Reality + Sports + + TV-PG + + + + 18 Holes With Jimmy Hanlin + Touring top golf courses around the U.S., plus a look at other amenities offered by the resorts. + + + Swing Clinic with Jimmy Hanlin + PGA pro Jimmy Hanlin takes viewers to school with golf tips, rules, etiquette, exercises and more. + Sports + + + Golf Life + A look at golf courses, training tips and mental aspects of the game. + + + Breaking Par + A look at the game of golf through a different lens. + + Ryan Johnson + Felix Stone + + Sports + + + Fairways of Life with Matt Adams + Author and Golf Channel host Matt Adams brings you inside the ropes for exclusive interviews with all of golf's stars; equipment updates; instruction for your game; the latest headlines and more. + + Matt Adams + + Talk & Interview + Sports + + + Marlin Quest + Chasing the biggest game fish at spectacular locations around the world. + + + A Fishing Story + Anglers from all walks of life share their tales. + + Ronnie Green + + Sports + + + Pro Padel League + The PPL is the first North American league for the sport of padel, which has elements of tennis, squash and pickleball, with walls in play on a surface roughly one-third the size of a tennis court. + + + Pickleball + Action from the paddle sport. + Sports + Extreme + + + + Pickleball + Action from the paddle sport. + Sports + Extreme + + + + Country Strong + Personal demons, complicated romantic entanglements and the demands of fame threaten to derail the comeback tour of a country-music superstar (Gwyneth Paltrow). + + Gwyneth Paltrow + Tim McGraw + Garrett Hedlund + + 2010 + Movies + Drama + + + TVG + + + 2 + + + + Country Strong + Personal demons, complicated romantic entanglements and the demands of fame threaten to derail the comeback tour of a country-music superstar (Gwyneth Paltrow). + + Gwyneth Paltrow + Tim McGraw + Garrett Hedlund + + 2010 + Movies + Drama + + + TVG + + + 2 + + + + Country Strong + Personal demons, complicated romantic entanglements and the demands of fame threaten to derail the comeback tour of a country-music superstar (Gwyneth Paltrow). + + Gwyneth Paltrow + Tim McGraw + Garrett Hedlund + + 2010 + Movies + Drama + + + TVG + + + 2 + + + + Shania Twain: Not Just a Girl + From Nashville, Tenn., newcomer to international talent, the singer transcends genres across borders amid triumphs and setbacks. + Specials + Documentary + + + TVMA + + + + Rock Legends + Folk Around the World + In the 1930s, orally transmitted music was the heritage of many; the genre enjoyed a resurgence during the Great Depression. + Music + Documentary + + + TV14 + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + Grill, Smoke AND Air-Fry + Our Cyclonic Grilling Technology gives you food that's tender and juicy on the inside and char-grilled on every side. + Paid Program + Food + + + + NEW Shark Deep Carpet Cleaner + 2-in-1 deep carpet cleaner and handheld spot & stain eliminator combines strong suction and high-pressure spray to deliver the best deep carpet cleaning and tough stain elimination in the market. + Paid Program + + + + NEW Shark Vacuum! Your Pet Hair Solution! + Shark's most advanced, innovative upright vacuum. + Paid Program + + + + NEW Shark Deep Carpet Cleaner + 2-in-1 deep carpet cleaner and handheld spot & stain eliminator combines strong suction and high-pressure spray to deliver the best deep carpet cleaning and tough stain elimination in the market. + Paid Program + + + + Pickleball + Action from the paddle sport. + Sports + Extreme + + + + Pickleball + Action from the paddle sport. + Sports + Extreme + + + + The Monkees + Monkee Chow Mein + The group gets entangled in a Chinese spy ring. Guest star: Mike Farrell. + + Davy Jones + Peter Tork + Micky Dolenz + + Sitcom + Music + + + TVG + + + + The Monkees + Monkee Mother + Davy, Peter, Micky and Mike are evicted from their apartment. + + Davy Jones + Peter Tork + Micky Dolenz + + Sitcom + Music + + + TVG + + + + The Partridge Family + A Knight in Shining Armor + The family introduces a songwriter (Bobby Sherman) to a lyricist (Wes Stern). + + Shirley Jones + David Cassidy + Susan Dey + + Sitcom + + + TVG + + + + The Very Very Best of the '70s + Teen Flicks + Ranking favorite teen films from the 1970s, with contributions from Barry Williams, Sebastian Bach and Anson Williams. + Performing Arts + + + TV14 + + + + The Very Very Best of the '70s + Stand-Up Comedians + Ranking favorite stand-up comics of the 1970s, with input from George Wallace, Fred Willard and Michael Winslow. + Performing Arts + + + TV14 + + + + A Year in Music + 1997 + A diverse set of hosts from all across music give their unique perspective. + Music + + + TV14 + + + + Life In Six Strings + Steve Vai + Music journalist and guitar novice Kylie Olsson takes an intimate look into the lives of guitar legends like Steve Vai, Nuno Bettencourt, and Mick Mars. + Reality TV + + + TV14 + + + + Parking Lot Payday + Rob Zombie + Test your trivia knowledge of the spooky shock rocker, Rob Zombie, as host Art Mannhangs out with fans in the parking lots of the Sonic Temple Art & Music Festival. + Performing Arts + + + TV14 + + + + Cash Cab + Unassuming people enter a taxi cab as simple passengers taking a normal ride, only to be shocked when they discover that they're instant contestants. The host, Adam Grove, asks the passengers trivia questions as he escorts them to their destination. + Game Shows + + + TVPG + + + + Cash Cab + Unassuming people enter a taxi cab as simple passengers taking a normal ride, only to be shocked when they discover that they're instant contestants. The host, Adam Grove, asks the passengers trivia questions as he escorts them to their destination. + Game Shows + + + TVPG + + + + The Very Very Best of the '70s + Stand-Up Comedians + Ranking favorite stand-up comics of the 1970s, with input from George Wallace, Fred Willard and Michael Winslow. + Performing Arts + + + TV14 + + + + Rockstar Shuffle + Cruisin' with Ron 'Bumblefoot' Thal + What do you get when you mix Justin Hawkins of The Darkness, Nancy Wilson of Heart, Ron. + Documentary + + + TV14 + + + + The Top Ten Revealed + Magic Songs + Abracadabra, we're talking MAGIC SONGS! Find out which Magic Songs make our list as rock experts like Matt Pinfield, Dorothy, Carnie Wilson and more count us down! + Music + + + TV14 + + + + SPIN 100 Greatest Rock Stars + SPIN 100 Greatest Rock Stars #105:60 - 51 + From Duane Allman to Slash, find out which Rock Stars made the list as experts like Devon Allman, Michael Starr, Nita Strauss, and more count us down! + Music + + + TV14 + + + + Country Strong + Personal demons, complicated romantic entanglements and the demands of fame threaten to derail the comeback tour of a country-music superstar (Gwyneth Paltrow). + + Gwyneth Paltrow + Tim McGraw + Garrett Hedlund + + 2010 + Movies + Drama + + + TVG + + + 2 + + + + Dolly Parton: 50 Years at the Opry + Musicians celebrate Dolly's 50 years as a member of the Grand Ole Opry -- performing her biggest songs with the iconic music legend herself on the famous Opry stage in front of a live audience. + Specials + Performing Arts + + + TVPG + + + + Willie Nelson & Friends + Outlaws & Angels + Music + + + TV14 + + + + Willie Nelson & Friends + Outlaws & Angels + Music + + + TV14 + + + + Maroon 5 + Live at le Casino de Paris 2011 + Maroon 5 Special Concert only on DIRECTV! The unforgettable Maroon 5 performance from the 2011 Celebrity Beach Bowl covering their concert and an interview with the band. + Music + + + TV14 + + + + Live From the Artists Den + Zac Brown Band + Country artist Zac Brown Band performs fan favorites including. + Music + Performing Arts + + + TVG + + + + Live From the Artists Den + Zac Brown Band + Country artist Zac Brown Band performs fan favorites including. + Music + Performing Arts + + + TVG + + + + AXS TV Insider + Talk Shows + + + TV14 + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + NEW Shark Vacuum! Your Pet Hair Solution! + Shark's most advanced, innovative upright vacuum. + Paid Program + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. + Paid Program + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + Willie Nelson + The artist performs; songs include. + Specials + Music + + + TV14 + + + + Rock Legends + Glen Campbell + Country music legend Glen Campbell's hits include. + Music + Documentary + + + TV14 + + + + Rock Legends + Journey + American rock band Journey forms in San Francisco in 1973, composed of former members of Santana and Frumious Bandersnatch; the band goes through several phases, with its strongest commercial success occurring between 1978 and 1987. + Music + Documentary + + + TV14 + + + + Cash Cab + Unassuming people enter a taxi cab as simple passengers taking a normal ride, only to be shocked when they discover that they're instant contestants. The host, Adam Grove, asks the passengers trivia questions as he escorts them to their destination. + Game Shows + + + TVPG + + + + Cash Cab + Unassuming people enter a taxi cab as simple passengers taking a normal ride, only to be shocked when they discover that they're instant contestants. The host, Adam Grove, asks the passengers trivia questions as he escorts them to their destination. + Game Shows + + + TVPG + + + + Wahlburgers + Houston, We Have a Paul-Blem + Mark, Donnie and Paul converge in Houston in hopes of another New England Patriots championship; Mark and his children take on NFL Pro Bowler Travis Kelce; Donnie convinces Paul to join him on Jenny's radio show. + Reality TV + Performing Arts + + + TVPG + + + + Wahlburgers + Weiner Takes All + Donnie's trip to the grand opening of the second Orlando Wahlburgers is diverted when NSYNC's Joey Fatone seeks advice for his new hot dog joint, Fat One's; a secret diner tests out the food and service at the Lynnfield, Mass., location. + Reality TV + Performing Arts + + + TVPG + + + + Nothing but Trailers + The best movie trailers, both old and new. + Performing Arts + + + TV14 + + + + The Monkees + Monkees in Manhattan + The boys try to find backers for their Broadway show. + + Davy Jones + Peter Tork + Micky Dolenz + + Sitcom + Music + + + TVG + + + + The Monkees + Monkees in the Movies + A film producer wants the singers in his new movie. Catalino: Bobby Sherman. + + Davy Jones + Peter Tork + Micky Dolenz + + Sitcom + Music + + + TVG + + + + The Partridge Family + A Knight in Shining Armor + The family introduces a songwriter (Bobby Sherman) to a lyricist (Wes Stern). + + Shirley Jones + David Cassidy + Susan Dey + + Sitcom + + + TVG + + + + The Very Very Best of the '70s + TV Moms + The best TV mothers from the 1970s are ranked, with input from actors Barry Williams, Jimmie Walker and Catherine Bach. + Performing Arts + + + TV14 + + + + The Very Very Best of the '70s + Epic Movies of '75 + The most epic movies of '75, from dramas to action flicks, these movies from 1975 left an impact that still has people talking today; Bob Eubanks, Anson Williams and Elisabeth Rohm give their opinions. + Performing Arts + + + TV14 + + + + A Year in Music + 2000 + A new era begins with Y2K and trading print for digital; the impact of JLo's infamous green dress. + Music + + + TV14 + + + + Classic Albums + The Doors + The Doors' self-titled album. + Music + Documentary + + + TVPG + + + + Live From the Artists Den + Alabama Shakes + Alabama Shakes perform songs from their 2012 debut album. + Music + Performing Arts + + + TVG + + + + Hot Ones + Seth Rogen + Host Sean Evans asks his celebrities guests questions while they attempt to complete rounds of chicken wings coated in spicy hot sauce. + Talk Shows + Comedy + + + TVMA + + + + Hot Ones + Jeff Goldblum Says He Likes to Be Called Daddy While Eating Spicy Wings + Actor Jeff Goldblum takes on the vegan wings of death while breaking downGuests: Jeff Goldblum.. + Talk Shows + Comedy + + + TVMA + + + + The Top Ten Revealed + Disco Songs + Ranking disco songs; finding out which disco songs make the list as rock experts like Taylor Dayne, Sebastina Bach, Jeff Timmons and more count them down. + Music + + + TV14 + + + + The Top Ten Revealed + Songs with Fire [P] + Katie Daryl sits down with musicians and music experts for insightful and edgy discussions about rock 'n' roll. + Music + + + TV14 + + + + SPIN 100 Greatest Rock Stars + 50 - 41 + From John Lennon to Elton John, finding out which Rock Stars made the list as experts like Andy Summers, Carnie Wilson, Joel McHale and more. + Music + + + TV14 + + + + Life In Six Strings + Tyler Bryant + Texas native Tyler Bryant loves all things Rock 'n' Roll; he invites Kylie to his home in Nashville, Tenn., to rummage through some of his favorite guitars, vintage mics and more. + Reality TV + + + TV14 + + + + The Partridge Family + Whatever Happened to Moby Dick? + The Partridges make a record featuring the song of a whale to raise awareness of the whale's plight. + + Shirley Jones + David Cassidy + Susan Dey + + Sitcom + + + TVG + + + + The Partridge Family + Dr. Jekyll & Mr. Partridge + Keith decides that being the eldest, he should take more responsibility for his siblings. + + Shirley Jones + David Cassidy + Susan Dey + + Sitcom + + + TVG + + + + Cash Cab + Unassuming people expecting a normal taxi ride, find they are contestants on a game show. + Game Shows + + + TVPG + + + + Cash Cab + Unassuming people expecting a normal taxi ride, find they are contestants on a game show. + Game Shows + + + TVPG + + + + SPIN 100 Greatest Rock Stars + 50 - 41 + From John Lennon to Elton John, finding out which Rock Stars made the list as experts like Andy Summers, Carnie Wilson, Joel McHale and more. + Music + + + TV14 + + + + Life In Six Strings + Tyler Bryant + Texas native Tyler Bryant loves all things Rock 'n' Roll; he invites Kylie to his home in Nashville, Tenn., to rummage through some of his favorite guitars, vintage mics and more. + Reality TV + + + TV14 + + + + The Partridge Family + Whatever Happened to Moby Dick? + The Partridges make a record featuring the song of a whale to raise awareness of the whale's plight. + + Shirley Jones + David Cassidy + Susan Dey + + Sitcom + + + TVG + + + + The Partridge Family + Dr. Jekyll & Mr. Partridge + Keith decides that being the eldest, he should take more responsibility for his siblings. + + Shirley Jones + David Cassidy + Susan Dey + + Sitcom + + + TVG + + + + Cash Cab + Unassuming people expecting a normal taxi ride, find they are contestants on a game show. + Game Shows + + + TVPG + + + + Cash Cab + Unassuming people expecting a normal taxi ride, find they are contestants on a game show. + Game Shows + + + TVPG + + + + Hot Ones + Seth Rogen + Host Sean Evans asks his celebrities guests questions while they attempt to complete rounds of chicken wings coated in spicy hot sauce. + Talk Shows + Comedy + + + TVMA + + + + Hot Ones + Jeff Goldblum Says He Likes to Be Called Daddy While Eating Spicy Wings + Actor Jeff Goldblum takes on the vegan wings of death while breaking downGuests: Jeff Goldblum.. + Talk Shows + Comedy + + + TVMA + + + + The Monkees + Monkees in Manhattan + The boys try to find backers for their Broadway show. + + Davy Jones + Peter Tork + Micky Dolenz + + Sitcom + Music + + + TVG + + + + The Monkees + Monkees in the Movies + A film producer wants the singers in his new movie. Catalino: Bobby Sherman. + + Davy Jones + Peter Tork + Micky Dolenz + + Sitcom + Music + + + TVG + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Grill, Smoke AND Air-Fry + Our Cyclonic Grilling Technology gives you food that's tender and juicy on the inside and char-grilled on every side. + Paid Program + Food + + + + NEW Shark Deep Carpet Cleaner + 2-in-1 deep carpet cleaner and handheld spot & stain eliminator combines strong suction and high-pressure spray to deliver the best deep carpet cleaning and tough stain elimination in the market. + Paid Program + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. + Paid Program + + + + Maroon 5 + Live at le Casino de Paris 2011 + Maroon 5 Special Concert only on DIRECTV! The unforgettable Maroon 5 performance from the 2011 Celebrity Beach Bowl covering their concert and an interview with the band. + Music + + + TV14 + + + + Rock Legends + Little Richard + Known for his flamboyant performances, Little Richard's hit songs from the mid-1950s were defining moments in the development of rock 'n' roll. + Music + Documentary + + + TV14 + + + + Rock Legends + Marvin Gaye + Marvin Gaye sings in his father's church and in the Moonglows before signing with Motown; he records songs by Smokey Robinson before producing the protest album. + Music + Documentary + + + TV14 + + + + Cash Cab + Unassuming people expecting a normal taxi ride, find they are contestants on a game show. + Game Shows + + + TVPG + + + + Cash Cab + Unassuming people expecting a normal taxi ride, find they are contestants on a game show. + Game Shows + + + TVPG + + + + Wahlburgers + Philly Beefcake + Donnie and Elijah commandeer a food truck and drive it to the New Kids on the Block's concert venue in Philadelphia; some loyal patrons ask Paul if they can have their wedding at Wahlburgers; Mark attempts to close a business deal in the Midwest. + Reality TV + Performing Arts + + + TVPG + + + + Wahlburgers + Where's the Beef? + Paul discovers a meatless patty that he wants to put on the menu, and delivers the burger to Mark for the ultimate taste test; Donnie asks Danny Wood to help him convince the rest of the New Kids to showcase Wahlburgers gear on their upcoming tour. + Reality TV + Performing Arts + + + TVPG + + + + Nothing but Trailers + The best movie trailers, both old and new. + Performing Arts + + + TV14 + + + + The Monkees + Monkees on Tour + Fans throng the Monkees' first concert tour. + + Davy Jones + Peter Tork + Micky Dolenz + + Sitcom + Music + + + TVG + + + + The Monkees + A Nice Place to Visit + Davy unwisely falls for a bandit's girlfriend. + + Davy Jones + Peter Tork + Micky Dolenz + + Sitcom + Music + + + TVG + + + + The Partridge Family + Dora, Dora, Dora + The Partridge Family is forced to add another member to the group, a young girl who can't sing a note. + + Shirley Jones + David Cassidy + Susan Dey + + Sitcom + + + TVG + + + + The Very Very Best of the '70s + Sexy Sirens + From darling to sultry these leading ladies had pulses racing in the 70s; a look at which 70s sexy siresn made the list as Morgan Fairchild, Catherine Bach, Mark Steines and David Chokachi give their opinions. + Performing Arts + + + TV14 + + + + The Very Very Best of the '70s + Game Shows + A look back at some fast-paced game shows of the 70s with cash prizes and sing-alongs; Bob Eubanks, Anson Williams, Catherine Bach and George Wallace give their opinions. + Performing Arts + + + TV14 + + + + A Year in Music + 2001 + Halestorm's Lzzy Hale looks back at 2001 as the music industry trades print for digital, female artists dominate the charts, and the events of 9/11 unite the nation. + Music + + + TV14 + + + + Classic Albums + Fleetwood Mac: Rumours + The members of Fleetwood Mac discuss the creativity behind their 1977 album. + + Stevie Knicks + Mick Fleetwood + Lindsey Buckingham + + Music + Documentary + + + TVPG + + + + Live From the Artists Den + Crowded House + Crowded House performs hits including. + Music + Performing Arts + + + TVPG + + + + Hot Ones + Guy Fieri + Guy Fieri opens up about relationships and how he has become a popular meme. + Talk Shows + Comedy + + + TVMA + + + + Hot Ones + Michael Cera Experiences Mouth Pains While Eating Spicy Wings + Michael Cera talks about his acting roles and his pet peeves. + Talk Shows + Comedy + + + TVMA + + + + The Top Ten Revealed + Epic Songs of '74 + Carnie Wilson, Mark McGrath, Sebastian Bach and other rock experts count down epic songs that peaked in 1974. + Music + + + TV14 + + + + The Top Ten Revealed + Epic Songs of '75 + A countdown of songs from 1975. + Music + + + TV14 + + + + The Top Ten Revealed + Epic Songs of 1976 + Katie Daryl sits down with musicians and music experts for insightful and edgy discussions about rock 'n' roll. + Music + + + TV14 + + + + Parking Lot Payday + 80s Hair Bands + Superfans answer trivia questions about their favorite bands to win cash. + Performing Arts + + + TV14 + + + + The Partridge Family + Days of Acne and Roses + Danny and Keith try to give a shy, awkward grocery clerk enough confidence to ask Laurie for a date. + + Shirley Jones + David Cassidy + Susan Dey + + Sitcom + + + TVG + + + + The Partridge Family + The Tale of Two Hamsters + Mother Nature gives Danny a hand in another of his money-making schemes. + + Shirley Jones + David Cassidy + Susan Dey + + Sitcom + + + TVG + + + + Cash Cab + Unassuming people expecting a normal taxi ride, find they are contestants on a game show. + Game Shows + + + TVPG + + + + Cash Cab + Unassuming people expecting a normal taxi ride, find they are contestants on a game show. + Game Shows + + + TVPG + + + + The Top Ten Revealed + Epic Songs of 1976 + Katie Daryl sits down with musicians and music experts for insightful and edgy discussions about rock 'n' roll. + Music + + + TV14 + + + + Parking Lot Payday + 80s Hair Bands + Superfans answer trivia questions about their favorite bands to win cash. + Performing Arts + + + TV14 + + + + The Partridge Family + Days of Acne and Roses + Danny and Keith try to give a shy, awkward grocery clerk enough confidence to ask Laurie for a date. + + Shirley Jones + David Cassidy + Susan Dey + + Sitcom + + + TVG + + + + The Partridge Family + The Tale of Two Hamsters + Mother Nature gives Danny a hand in another of his money-making schemes. + + Shirley Jones + David Cassidy + Susan Dey + + Sitcom + + + TVG + + + + Cash Cab + Unassuming people expecting a normal taxi ride, find they are contestants on a game show. + Game Shows + + + TVPG + + + + Cash Cab + Unassuming people expecting a normal taxi ride, find they are contestants on a game show. + Game Shows + + + TVPG + + + + Hot Ones + Guy Fieri + Guy Fieri opens up about relationships and how he has become a popular meme. + Talk Shows + Comedy + + + TVMA + + + + Hot Ones + Michael Cera Experiences Mouth Pains While Eating Spicy Wings + Michael Cera talks about his acting roles and his pet peeves. + Talk Shows + Comedy + + + TVMA + + + + The Monkees + Monkees on Tour + Fans throng the Monkees' first concert tour. + + Davy Jones + Peter Tork + Micky Dolenz + + Sitcom + Music + + + TVG + + + + The Monkees + A Nice Place to Visit + Davy unwisely falls for a bandit's girlfriend. + + Davy Jones + Peter Tork + Micky Dolenz + + Sitcom + Music + + + TVG + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Vacuum & Mop at the SAME Time + The Shark Matrix Plus combines an ultra-powerful vacuum with Sonic Mopping for a complete clean from start to finish. + Paid Program + + + + Grill, Smoke AND Air-Fry + Our Cyclonic Grilling Technology gives you food that's tender and juicy on the inside and char-grilled on every side. + Paid Program + Food + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. + Paid Program + + + + Grill, Smoke AND Air-Fry + Our Cyclonic Grilling Technology gives you food that's tender and juicy on the inside and char-grilled on every side. + Paid Program + Food + + + + KT Tunstall + The artist performs. + Specials + Music + + + TV14 + + + + Rock Legends + Patti Smith + Stories of the biggest names in rock music. + Music + Documentary + + + TV14 + + + + Rock Legends + Pat Benatar + Born in 1953 in Brooklyn, N.Y., singer Pat Benatar works the club scene and finds her guitarist and future husband Neil Giraldo. + Music + Documentary + + + TV14 + + + + Cash Cab + Unassuming people expecting a normal taxi ride, find they are contestants on a game show. + Game Shows + + + TVPG + + + + Cash Cab + Unassuming people expecting a normal taxi ride, find they are contestants on a game show. + Game Shows + + + TVPG + + + + Wahlburgers + Fry Me to the Moon + Donnie invites food critic Daym Drops to Wahlburgers to help convince Paul to change up the fries; Alma asks Johnny Drama to teach her golf so she can spend more time with Mark. + Reality TV + Performing Arts + + + TVPG + + + + Wahlburgers + Deliver Us From Alma + Paul's idea for delivery service provides the perfect cover for Donnie and Jenny to distract Alma while Mark and the rest of the family prepare for her surprise 75th birthday party. + Reality TV + Performing Arts + + + TVPG + + + + Nothing but Trailers + Best of 2022 + The best movie trailers, both old and new. + Performing Arts + + + TV14 + + + + The Monkees + The Picture Frame + Thinking they're making a movie, the boys rob a bank. + + Davy Jones + Peter Tork + Micky Dolenz + + Sitcom + Music + + + TVG + + + + The Monkees + Everywhere a Sheik, Sheik + To avoid marrying an evil man, a princess picks Davy. + + Davy Jones + Peter Tork + Micky Dolenz + + Sitcom + Music + + + TVG + + + + The Partridge Family + In 25 Words or Less + A meddlesome contest winner spends a week with the Partridges. + + Shirley Jones + David Cassidy + Susan Dey + + Sitcom + + + TVG + + + + The Very Very Best of the '70s + Crime Movies + Ranking crime movies from the 1970s. + Performing Arts + + + TV14 + + + + The Very Very Best of the '70s + Early 70s Sitcoms + A ranking of early 1970s sitcoms. + Performing Arts + + + TV14 + + + + A Year in Music + 2002 + A diverse set of hosts from all across music give their unique perspective. + Music + + + TV14 + + + + Classic Albums + Queen: A Night at the Opera + `A Night At The Opera', the fourth Queen album released in late 1975, is a mix of hard rock, pop, opera, music hall camp and traditional folk, utilising multi layered guitars, crunching riffs, and vocals harmonies. + Music + Documentary + + + + Live From the Artists Den + Elvis Costello and the Sugarcanes + Elvis Costello performs at the New York Public Library. + Music + Performing Arts + + + TVPG + + + + Hot Ones + Neil Patrick Harris + Host Sean Evans asks his celebrities guests questions while they attempt to complete rounds of chicken wings coated in spicy hot sauce. + Talk Shows + Comedy + + + TVMA + + + + Hot Ones + Stone Cold Steve Austin Puts the Stunner on Spicy Wings + Stone Cold Steve Austin body slams wings, discusses his iconic career, gives props to The Rock's mic skills and tells war stories from his years on the road. + Talk Shows + Comedy + + + TVMA + + + + Sports Quest + La revista electrónica que cubre los mayores eventos deportivos al aire libre del mundo, haciendo que el tele espectador disfrute desde adentro las actividades sobre nieve, agua o tierra. + Sports + + + + Clubland + AS Monaco + A pesar de su baja población, y un estadio aún más pequeño, el AS Monaco tiene una rica historia y un futuro más rico. + Sports + Talk Show + + + TVG + + + + Revolucionando + Sports + Miscellaneous + + + + Baloncesto Mexicano LNBP + Toda la acción de los partidos de la liga de baloncesto profesional mexicana. + Sports + Basketball + + + + Clubland + Ajax + Un espacio en el que se destaca a algunos de los mejores clubes del mundo. + Sports + Talk Show + + + TVG + + + + Clubland + AS Monaco + A pesar de su baja población, y un estadio aún más pequeño, el AS Monaco tiene una rica historia y un futuro más rico. + Sports + Talk Show + + + TVG + + + + R de Rudos + Informativo digital de Lucha Libre, deportes de contacto y lo más asombroso del deporte. + Sports + Wrestling + + + + Boxeo + Los combates más emocionantes del boxeo mundial. + Sports + Boxing + + + + Béisbol Liga Invernal Mexicana + Pericos de Puebla vs. Diablos Rojos del México + Pericos de Puebla visita a Diablos Rojos del México en su primer partido de la temporada regular. Desde el estadio Alfredo Harp Helú. + Sports + Baseball + + + + WBC Fights + Campeonatos de boxeo con los mejores peladores del mundo. + Sports + + + + Gancho al Hígado + Un recuento de las peleas legendarias comentadas por sus protagonistas y también de las nuevas peleas del Campeonato del Mundo. + Sports + Wrestling + + + TVG + + + + Ultra MX + Ultra MX no es un simple programa, es un estilo de vida para los que les gusta los deportes de acción. En cada emisión se cubren eventos de Surf, Skate, Cuatrimotos, EXE, Wakeboard entre otros. Ultra MX vive la vida como con acción. + Sports + Extreme + + + + Baloncesto Mexicano LNBP + Toda la acción de los partidos de la liga de baloncesto profesional mexicana. + Sports + Basketball + + + + Béisbol Liga Invernal Mexicana + Pericos de Puebla vs. Diablos Rojos del México + Pericos de Puebla visita a Diablos Rojos del México en su primer partido de la temporada regular. Desde el estadio Alfredo Harp Helú. + Sports + Baseball + + + + Sports Quest + La revista electrónica que cubre los mayores eventos deportivos al aire libre del mundo, haciendo que el tele espectador disfrute desde adentro las actividades sobre nieve, agua o tierra. + Sports + + + + Clubland + AS Monaco + A pesar de su baja población, y un estadio aún más pequeño, el AS Monaco tiene una rica historia y un futuro más rico. + Sports + Talk Show + + + TVG + + + + Baloncesto Mexicano LNBP + Toda la acción de los partidos de la liga de baloncesto profesional mexicana. + Sports + Basketball + + + + R de Rudos + Informativo digital de Lucha Libre, deportes de contacto y lo más asombroso del deporte. + Sports + Wrestling + + + + Baloncesto Mexicano LNBP + Toda la acción de los partidos de la liga de baloncesto profesional mexicana. + Sports + Basketball + + + + Cápsulas de Red Bull + Sports + + + + Baloncesto Mexicano LNBP + Toda la acción de los partidos de la liga de baloncesto profesional mexicana. + Sports + Basketball + + + + Cápsulas de Red Bull + Sports + + + + Sports Quest + La revista electrónica que cubre los mayores eventos deportivos al aire libre del mundo, haciendo que el tele espectador disfrute desde adentro las actividades sobre nieve, agua o tierra. + Sports + + + + Lucha Libre + Encuentros de lucha libre locales e internacionales. + Sports + Wrestling + + + + Revolucionando + Sports + Miscellaneous + + + + Boxeo + Los combates más emocionantes del boxeo mundial. + Sports + Boxing + + + + Béisbol Liga Invernal Mexicana + Pericos de Puebla vs. Diablos Rojos del México + Pericos de Puebla y Diablos Rojos del México miden fuerzas en su segundo enfrentamiento de la temporada regular. Desde el estadio Alfredo Harp Helú. + Sports + Baseball + + + + WBC Fights + Campeonatos de boxeo con los mejores peladores del mundo. + Sports + + + + Encendiendo las redes + Programa con toda la información, las estadísticas y el análisis del fútbol mundial. + Sports + Soccer + + + TV14 + + + + Hoy fútbol + Programa para los aficionados del fútbol con el mejor análisis de los especialistas. + Sports + Soccer + + + TVPG + + + + Artes marciales + Cobertura y retransmisión de los mejores deportes de lucha, así como los resúmenes y los principales lineamientos. + Sports + Martial Arts + + + + Béisbol Liga Mexicana + Mejores momentos y toda la acción de los partidos de la Liga Mexicana de Béisbol. + Sports + Baseball + + + + Gancho al Hígado + Un recuento de las peleas legendarias comentadas por sus protagonistas y también de las nuevas peleas del Campeonato del Mundo. + Sports + Wrestling + + + TVG + + + + En los deportes, vámonos de largo + Un espacio dedicado a la actualidad del mundo del deporte. Análisis de las últimas noticias y lo más viral del mundo deportivo. + Sports + News + + + + Alta velocidad + Programa sobre la industria automotriz y el automovilismo deportivo en México. Con entrevistas a los mejores exponentes de la especialidad, reseñas e información. + Sports + Talk Show + + + + Encendiendo las redes + Programa con toda la información, las estadísticas y el análisis del fútbol mundial. + Sports + Soccer + + + TV14 + + + + Fútbol Mexicano Femenino Primera División + Cobertura de los partidos de la primera división del fútbol mexicano femenil. + Sports + Soccer + + + + Pesca en Directo + Visita a diversos sitios de pesca en México para documentar tres aspectos: la pesca, la problemática ambiental y el turismo. + Sports + Fishing + + + + WBC Fights + Campeonatos de boxeo con los mejores peladores del mundo. + Sports + + + + LFA Total + Programa especial. + Sports + Football + + + + Fútbol Mexicano Liga Premier Serie A + Cobertura de los partidos de la tercera división del fútbol de México. + Sports + Soccer + + + + Ultra MX + Ultra MX no es un simple programa, es un estilo de vida para los que les gusta los deportes de acción. En cada emisión se cubren eventos de Surf, Skate, Cuatrimotos, EXE, Wakeboard entre otros. Ultra MX vive la vida como con acción. + Sports + Extreme + + + + Hoy fútbol + Programa para los aficionados del fútbol con el mejor análisis de los especialistas. + Sports + Soccer + + + TVPG + + + + Artes marciales + Cobertura y retransmisión de los mejores deportes de lucha, así como los resúmenes y los principales lineamientos. + Sports + Martial Arts + + + + Béisbol Liga Mexicana + Mejores momentos y toda la acción de los partidos de la Liga Mexicana de Béisbol. + Sports + Baseball + + + + En los deportes, vámonos de largo + Un espacio dedicado a la actualidad del mundo del deporte. Análisis de las últimas noticias y lo más viral del mundo deportivo. + Sports + News + + + + Hoy fútbol + Programa para los aficionados del fútbol con el mejor análisis de los especialistas. + Sports + Soccer + + + TVPG + + + + Lucha Libre + Encuentros de lucha libre locales e internacionales. + Sports + Wrestling + + + + Béisbol Liga Mexicana + Mejores momentos y toda la acción de los partidos de la Liga Mexicana de Béisbol. + Sports + Baseball + + + + Ultra MX + Ultra MX no es un simple programa, es un estilo de vida para los que les gusta los deportes de acción. En cada emisión se cubren eventos de Surf, Skate, Cuatrimotos, EXE, Wakeboard entre otros. Ultra MX vive la vida como con acción. + Sports + Extreme + + + + Alta velocidad + Programa sobre la industria automotriz y el automovilismo deportivo en México. Con entrevistas a los mejores exponentes de la especialidad, reseñas e información. + Sports + Talk Show + + + + Encendiendo las redes + Programa con toda la información, las estadísticas y el análisis del fútbol mundial. + Sports + Soccer + + + TV14 + + + + Fútbol Mexicano Femenino Primera División + Cobertura de los partidos de la primera división del fútbol mexicano femenil. + Sports + Soccer + + + + En los deportes, vámonos de largo + Un espacio dedicado a la actualidad del mundo del deporte. Análisis de las últimas noticias y lo más viral del mundo deportivo. + Sports + News + + + + Liga de Fútbol Americano Mexicano + Cobertura de los mejores encuentros de la liga mexicana de fútbol americano. + Sports + Football + + + + Pesca en Directo + Visita a diversos sitios de pesca en México para documentar tres aspectos: la pesca, la problemática ambiental y el turismo. + Sports + Fishing + + + + Alta velocidad + Programa sobre la industria automotriz y el automovilismo deportivo en México. Con entrevistas a los mejores exponentes de la especialidad, reseñas e información. + Sports + Talk Show + + + + Hoy fútbol + Programa para los aficionados del fútbol con el mejor análisis de los especialistas. + Sports + Soccer + + + TVPG + + + + Lucha Libre + Encuentros de lucha libre locales e internacionales. + Sports + Wrestling + + + + Béisbol Liga Mexicana + Mejores momentos y toda la acción de los partidos de la Liga Mexicana de Béisbol. + Sports + Baseball + + + + Gancho al Hígado + Un recuento de las peleas legendarias comentadas por sus protagonistas y también de las nuevas peleas del Campeonato del Mundo. + Sports + Wrestling + + + TVG + + + + Hoy fútbol + Programa para los aficionados del fútbol con el mejor análisis de los especialistas. + Sports + Soccer + + + TVPG + + + + Artes marciales + Cobertura y retransmisión de los mejores deportes de lucha, así como los resúmenes y los principales lineamientos. + Sports + Martial Arts + + + + Béisbol Liga Mexicana + Acción de la liga mexicana de béisbol. + Sports + Baseball + + + + Cross Over + Local + + + + Gancho al Hígado + Un recuento de las peleas legendarias comentadas por sus protagonistas y también de las nuevas peleas del Campeonato del Mundo. + Sports + Wrestling + + + TVG + + + + Encendiendo las redes + Programa con toda la información, las estadísticas y el análisis del fútbol mundial. + Sports + Soccer + + + TV14 + + + + Fútbol Mexicano Sub 20 + Toda la acción y la emoción de la categoría Sub 20 del fútbol mexicano. + Sports + Soccer + + + + Redemption + A troubled war veteran assumes a new identity and becomes a vigilante in a bid to atone for his sins. + + Jason Statham + Agata Buzek + Vicky McClure + + 2013 + Movies + Thriller + + + TVPG + + + 2 + + + + 3 Days to Kill + A dying Secret Service agent (Kevin Costner) who wants to reconnect with his estranged daughter (Hailee Steinfeld) is offered a potentially lifesaving drug in exchange for completing one final mission. + + Kevin Costner + Amber Heard + Hailee Steinfeld + + 2014 + Movies + Action + + + TVPG + + + 2 + + + + The Sentinel + A fugitive Secret Service agent (Michael Douglas) must clear himself of charges of murdering a colleague and save the president from an assassination plot. + + Michael Douglas + Kiefer Sutherland + Kim Basinger + + 2006 + Movies + Thriller + + + TVPG + + + 2 + + + + A Hijacking + After Somali pirates hijack a Danish cargo ship and take the crew hostage, authorities in Copenhagen begin negotiations with the pirates to free the crew. + + Søren Malling + Dar Salim + Gary Skjoldmose Porter + + 2013 + Movies + Drama + + + TV14 + + + 3 + + + + A Hijacking + After Somali pirates hijack a Danish cargo ship and take the crew hostage, authorities in Copenhagen begin negotiations with the pirates to free the crew. + + Søren Malling + Dar Salim + Gary Skjoldmose Porter + + 2013 + Movies + Drama + + + TV14 + + + 3 + + + + Out of the Furnace + A steelworker (Christian Bale) takes matters into his own hands when his brother (Casey Affleck) joins one of the Northeast's most-ruthless crime syndicates, then disappears. + + Christian Bale + Woody Harrelson + Casey Affleck + + 2013 + Movies + Thriller + + + TVPG + + + 3 + + + + The Perfect Score + High-school students (Erika Christensen, Chris Evans, Bryan Greenberg) conspire to steal the answers to their upcoming SATs. + + Erika Christensen + Chris Evans + Bryan Greenberg + + 2004 + Movies + Comedy + + + TVG + + + 2 + + + + Speed Racer + Defying a corrupt business mogul, Speed (Emile Hirsch) enters the same arduous cross-country race that caused his brother's death. + + Emile Hirsch + Christina Ricci + Susan Sarandon + + 2008 + Movies + Action + + + TVG + + + 2 + + + + Teen Wolf + A high-school student's popularity soars when it is discovered that he is cursed with the mark of the werewolf. + + Michael J. Fox + James Hampton + Scott Paulin + + 1985 + Movies + Comedy + + + TVG + + + 2 + + + + Wes Craven Presents: They + A psychology student (Laura Regan) and her friends begin to have nightmares, resulting in strange marks appearing on their bodies. + + Laura Regan + Marc Blucas + Ethan Embry + + 2002 + Movies + Horror + + + TVPG + + + 1 + + + + Brokedown Palace + American teens (Claire Danes, Kate Beckinsale) in Bangkok are framed for smuggling drugs and sentenced to 33 years in a Thai prison. + + Claire Danes + Kate Beckinsale + Bill Pullman + + 1999 + Movies + Drama + + + TVG + + + 2 + + + + Line of Duty + FBI agents Bobby (Jeremy Ray Valdez) and Julian (Will Rothhaar) infiltrate a drug cartel run by Jason (Walter Perez) and Derek (Joseph Julian Soria), their childhood friends. + + Jeremy Ray Valdez + Will Rothhaar + Walter Perez + + 2013 + Movies + Thriller + + + + The Man From U.N.C.L.E. + During the Cold War, CIA agent Napoleon Solo (Henry Cavill) and KGB agent Illya Kuryakin (Armie Hammer) join forces to infiltrate a criminal organization which plans to use nuclear means to upset the balance of power. + + Henry Cavill + Armie Hammer + Alicia Vikander + + 2015 + Movies + Action + + + TVG + + + 2 + + + + Blended + Soon after their blind date goes disastrously wrong, two single parents (Adam Sandler, Drew Barrymore) and their children end up sharing a suite together at an African resort. + + Adam Sandler + Drew Barrymore + Joel McHale + + 2014 + Movies + Romance + + + TVG + + + 1 + + + + Taxi + A bumbling policeman enlists the help of a skillful cab driver to chase Brazilian bank robbers through New York City. + + Queen Latifah + Jimmy Fallon + Jennifer Esposito + + 2004 + Movies + Comedy + + + TVG + + + 1 + + + + Blow Out + A sound man (John Travolta) re-creates a political murder-by-car-crash with a sight-and-sound montage. + + John Travolta + Nancy Allen + John Lithgow + + 1981 + Movies + Thriller + + + TVMA + + + 3 + + + + Acts of Vengeance + A fast-talking lawyer transforms his body and takes a vow of silence, not to be broken until he finds out who killed his wife and daughter and has his revenge. + + Antonio Banderas + Cristina Serafini + Atanas Srebrev + + 2017 + Movies + Action + + + TVPG + + + + The Edge + A plane crash strands rivals (Anthony Hopkins, Alec Baldwin) in the Alaskan wilderness, where they contend with nature and a vicious kodiak bear. + + Anthony Hopkins + Alec Baldwin + Elle Macpherson + + 1997 + Movies + Adventure + + + TVPG + + + 2 + + + + The Edge + A plane crash strands rivals (Anthony Hopkins, Alec Baldwin) in the Alaskan wilderness, where they contend with nature and a vicious kodiak bear. + + Anthony Hopkins + Alec Baldwin + Elle Macpherson + + 1997 + Movies + Adventure + + + TVPG + + + 2 + + + + Never Grow Old + An Irish undertaker profits when outlaws take over a peaceful American frontier town, but his family comes under threat as the death toll rises. + + Emile Hirsch + John Cusack + Danny Webb + + 2019 + Movies + Western + + + TVPG + + + + Posse: The Revenge of Jessie Lee + Spanish-American War deserters (Mario Van Peebles, Stephen Baldwin, Charles Lane) wind up defending a black township from a sheriff and his henchmen. + + Mario Van Peebles + Stephen Baldwin + Charles Lane + + 1993 + Movies + Western + + + TVPG + + + 3 + + + + Before I Fall + After dying in a car crash, a popular teen (Zoey Deutch) wakes up to mysteriously relive the same fateful day over and over again. + + Zoey Deutch + Halston Sage + Logan Miller + + 2017 + Movies + Drama + + + TVG + + + 2 + + + + 3 Days to Kill + A dying Secret Service agent (Kevin Costner) who wants to reconnect with his estranged daughter (Hailee Steinfeld) is offered a potentially lifesaving drug in exchange for completing one final mission. + + Kevin Costner + Amber Heard + Hailee Steinfeld + + 2014 + Movies + Action + + + TVPG + + + 2 + + + + Wild + Driven to the edge by the dissolution of her marriage and the death of her mother, a woman (Reese Witherspoon) undertakes a solo hike of more than 1,000 miles along the Pacific Crest Trail. + + Reese Witherspoon + Laura Dern + Thomas Sadoski + + 2014 + Movies + Drama + + + TVPG + + + 3 + + + + Heartbreakers + Mother and daughter con-artists (Sigourney Weaver, Jennifer Love Hewitt) try to swindle a cigarette tycoon, but things go wrong when one falls in love. + + Sigourney Weaver + Jennifer Love Hewitt + Ray Liotta + + 2001 + Movies + Comedy + + + TVG + + + 2 + + + + I Am Wrath + A man sets out to get his own justice after police are unable to catch his wife's killer. + + John Travolta + Amanda Schull + Christopher Meloni + + 2016 + Movies + Action + + + TVPG + + + + Child's Play + A killer sought by a Chicago detective (Chris Sarandon) becomes a doll called Chucky, bought by a woman (Catherine Hicks) for her son (Alex Vincent). + + Catherine Hicks + Chris Sarandon + Alex Vincent + + 1988 + Movies + Horror + + + TVPG + + + 2 + + + + Cooties + Elementary-school teachers (Elijah Wood, Alison Pill, Rainn Wilson) come under attack from children who have been turned into vicious monsters by contaminated chicken nuggets. + + Elijah Wood + Alison Pill + Rainn Wilson + + 2014 + Movies + Comedy + + + TV14 + + + + Predators + On an alien planet, a mercenary (Adrien Brody) and his ragtag band of fighters struggle to survive against an onslaught of fearsome warriors who hunt them for sport. + + Adrien Brody + Topher Grace + Alice Braga + + 2010 + Movies + Sci-Fi + + + TVPG + + + 2 + + + + Leviathan + Precious-metals miners (Peter Weller, Richard Crenna, Amanda Pays) become trapped on the ocean floor with an eellike genetic alteration. + + Peter Weller + Richard Crenna + Amanda Pays + + 1989 + Movies + Sci-Fi + + + TVPG + + + 1 + + + + The Perfect Score + High-school students (Erika Christensen, Chris Evans, Bryan Greenberg) conspire to steal the answers to their upcoming SATs. + + Erika Christensen + Chris Evans + Bryan Greenberg + + 2004 + Movies + Comedy + + + TVG + + + 2 + + + + Paycheck + After learning that his memory has been erased, a technical wizard (Ben Affleck) goes on the run to piece together clues from his past. + + Ben Affleck + Aaron Eckhart + Uma Thurman + + 2003 + Movies + Sci-Fi + + + TVG + + + 2 + + + + Pathology + A medical intern (Milo Ventimiglia) discovers his colleagues are playing a deadly game in which one commits the perfect murder, then the others compete to find the cause of death. + + Milo Ventimiglia + Michael Weston + Alyssa Milano + + 2008 + Movies + Thriller + + + TVMA + + + 2 + + + + Pathology + A medical intern (Milo Ventimiglia) discovers his colleagues are playing a deadly game in which one commits the perfect murder, then the others compete to find the cause of death. + + Milo Ventimiglia + Michael Weston + Alyssa Milano + + 2008 + Movies + Thriller + + + TVMA + + + 2 + + + + Nightcrawler + A freelance cameraman (Jake Gyllenhaal) goes to increasingly greater lengths to get shots of the most-lurid and disturbing crimes on the dark streets of Los Angeles. + + Jake Gyllenhaal + Rene Russo + Bill Paxton + + 2014 + Movies + Thriller + + + TVPG + + + 3 + + + + Hang 'Em High + An innocent rancher (Clint Eastwood) is saved from the noose and deputized to hunt down the men who tried to hang him. + + Clint Eastwood + Inger Stevens + Ed Begley + + 1968 + Movies + Western + + + 2 + + + + Paparazzi + A movie star (Cole Hauser) takes revenge on a group of photographers who continuously stalk his family. + + Cole Hauser + Robin Tunney + Dennis Farina + + 2004 + Movies + Thriller + + + TVPG + + + 2 + + + + Major League + Lackluster baseball players (Tom Berenger, Charlie Sheen, Corbin Bernsen) hear their Cleveland team's new owner is counting on them to lose. + + Tom Berenger + Charlie Sheen + Corbin Bernsen + + 1989 + Movies + Comedy + + + TVG + + + 2 + + + + Small Town Crime + When alcoholic ex-cop Mike Kendall finds the body of a young woman, he becomes obsessed with redeeming himself by finding the killer. In the process, he puts himself and his family in danger while hanging out with an assortment of shady characters. + + John Hawkes + Anthony Anderson + Octavia Spencer + + 2017 + Movies + Thriller + + + + A Fistful of Dollars + Wandering gunfighter Joe arrives in the Mexican village of San Miguel in the midst of a power struggle among sheriff John Baxter and the three Rojo brothers. He is hired by Esteban Rojo to join their gang, but he plays one side against the other. + + Clint Eastwood + Marianne Koch + Josef Egger + + 1964 + Movies + Western + + + TVG + + + 3 + + + + For a Few Dollars More + A man with no name (Clint Eastwood) and a man with a mission (Lee Van Cleef) hunt a Mexican bandit (Gian Maria Volonte) for different reasons. + + Clint Eastwood + Lee Van Cleef + Gian Maria Volonte + + 1965 + Movies + Western + + + TVG + + + 3 + + + + The Good, the Bad and the Ugly + A drifter (Clint Eastwood), a bandit (Eli Wallach) and a bounty hunter (Lee Van Cleef) reach a standoff over buried gold. + + Clint Eastwood + Eli Wallach + Lee Van Cleef + + 1967 + Movies + Western + + + TVG + + + 4 + + + + Robin Hood + An ousted Saxon nobleman (Patrick Bergin) turns Sherwood Forest outlaw to smite Norman villains and save Maid Marian (Uma Thurman). + + Patrick Bergin + Uma Thurman + Jürgen Prochnow + + 1991 + Movies + Action + + + TV14 + + + 2 + + + + Cyborg + A martial artist (Jean-Claude Van Damme) hunts a killer (Vincent Klyn) in a plague-infested urban dump of the future. + + Jean-Claude Van Damme + Debi Richter + Vincent Klyn + + 1989 + Movies + Sci-Fi + + + TVPG + + + 1 + + + + Predators + On an alien planet, a mercenary (Adrien Brody) and his ragtag band of fighters struggle to survive against an onslaught of fearsome warriors who hunt them for sport. + + Adrien Brody + Topher Grace + Alice Braga + + 2010 + Movies + Sci-Fi + + + TVPG + + + 2 + + + + Rescue Dawn + During the Vietnam War, Dieter Dengler (Christian Bale), a U.S. fighter pilot, is shot down over Laos and taken captive by enemy soldiers. + + Christian Bale + Steve Zahn + Jeremy Davies + + 2006 + Movies + War + + + TVPG + + + 3 + + + + Road Trip + Friends (Seann William Scott, Breckin Meyer, D.J. Qualls) embark on a lengthy car trip to intercept an illicit videotape mistakenly mailed to one's girlfriend. + + Seann William Scott + Breckin Meyer + D.J. Qualls + + 2000 + Movies + Comedy + + + TVPG + + + 2 + + + + Road Trip + Friends (Seann William Scott, Breckin Meyer, D.J. Qualls) embark on a lengthy car trip to intercept an illicit videotape mistakenly mailed to one's girlfriend. + + Seann William Scott + Breckin Meyer + D.J. Qualls + + 2000 + Movies + Comedy + + + TVPG + + + 2 + + + + Road Trip: Beer Pong + Andy can't stop thinking about his old high school love, Jenna, who dumped him and went on to become a high-profile beer pong model. When he learns Jenna is on tour, he and a friend decide to go on a road trip to find her. + + Preston Jones + Danny Pudi + Julia Levy-Boeken + + 2009 + Movies + Comedy + + + TVPG + + + 1 + + + + Blended + Soon after their blind date goes disastrously wrong, two single parents (Adam Sandler, Drew Barrymore) and their children end up sharing a suite together at an African resort. + + Adam Sandler + Drew Barrymore + Joel McHale + + 2014 + Movies + Romance + + + TVG + + + 1 + + + + Zookeeper + When their shy caretaker (Kevin James) decides he needs to switch careers to find a woman, zoo animals reveal their secret ability to talk and teach him how to woo the ladies. + + Kevin James + Rosario Dawson + Leslie Bibb + + 2011 + Movies + Comedy + + + TVG + + + 1 + + + + Wes Craven Presents: They + A psychology student (Laura Regan) and her friends begin to have nightmares, resulting in strange marks appearing on their bodies. + + Laura Regan + Marc Blucas + Ethan Embry + + 2002 + Movies + Horror + + + TVPG + + + 1 + + + + The Fog + Residents (Tom Welling, Maggie Grace, Selma Blair) of a seaside community fall prey to malevolent entities hidden within the thick mist around their homes. + + Tom Welling + Maggie Grace + Selma Blair + + 2005 + Movies + Horror + + + TVPG + + + 2 + + + + My Bodyguard + A shrimpy Chicago teen (Chris Makepeace) hires a big, brooding classmate (Adam Baldwin) to protect him from bullies. + + Chris Makepeace + Adam Baldwin + Martin Mull + + 1980 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Leviathan + Precious-metals miners (Peter Weller, Richard Crenna, Amanda Pays) become trapped on the ocean floor with an eellike genetic alteration. + + Peter Weller + Richard Crenna + Amanda Pays + + 1989 + Movies + Sci-Fi + + + TVPG + + + 1 + + + + The Cold Light of Day + A vacation in Spain turns nightmarish when a man's (Henry Cavill) family is kidnapped by agents who are hell-bent on recovering a mysterious briefcase. + + Henry Cavill + Verónica Echegui + Bruce Willis + + 2012 + Movies + Action + + + TVPG + + + 1 + + + + John Dies at the End + A new drug promises out-of-body experiences, but users are coming back changed forever, and an otherworldly invasion of Earth is underway. + + Chase Williamson + Rob Mayes + Paul Giamatti + + 2012 + Movies + Horror + + + TVPG + + + 2 + + + + Redemption + A troubled war veteran assumes a new identity and becomes a vigilante in a bid to atone for his sins. + + Jason Statham + Agata Buzek + Vicky McClure + + 2013 + Movies + Thriller + + + TVPG + + + 2 + + + + Whip It + Stifled in her mother's world of beauty pageants and conformity, a rebellious teen finds purpose and liberation in the ranks of a Texas roller-derby team. + + Ellen Page + Marcia Gay Harden + Kristen Wiig + + 2009 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Adult On Demand + Adult On Demand. + Specials + Adult + + + TVMA + + + + Adult On Demand + Adult On Demand. + Specials + Adult + + + TVMA + + + + Adult On Demand + Adult On Demand. + Specials + Adult + + + TVMA + + + + Adult On Demand + Adult On Demand. + Specials + Adult + + + TVMA + + + + Adult On Demand + Adult On Demand. + Specials + Adult + + + TVMA + + + + Adult On Demand + Adult On Demand. + Specials + Adult + + + TVMA + + + + Adult On Demand + Adult On Demand. + Specials + Adult + + + TVMA + + + + Adult On Demand + Adult On Demand. + Specials + Adult + + + TVMA + + + + Adult On Demand + Adult On Demand. + Specials + Adult + + + TVMA + + + + Adult On Demand + Adult On Demand. + Specials + Adult + + + TVMA + + + + Adult On Demand + Adult On Demand. + Specials + Adult + + + TVMA + + + + Adult On Demand + Adult On Demand. + Specials + Adult + + + TVMA + + + + Adult On Demand + Adult On Demand. + Specials + Adult + + + TVMA + + + + Adult On Demand + Adult On Demand. + Specials + Adult + + + TVMA + + + + Adult On Demand + Adult On Demand. + Specials + Adult + + + TVMA + + + + Adult On Demand + Adult On Demand. + Specials + Adult + + + TVMA + + + + Adult On Demand + Adult On Demand. + Specials + Adult + + + TVMA + + + + Adult On Demand + Adult On Demand. + Specials + Adult + + + TVMA + + + + Adult On Demand + Adult On Demand. + Specials + Adult + + + TVMA + + + + Adult On Demand + Adult On Demand. + Specials + Adult + + + TVMA + + + + Adult On Demand + Adult On Demand. + Specials + Adult + + + TVMA + + + + Adult On Demand + Adult On Demand. + Specials + Adult + + + TVMA + + + + Adult On Demand + Adult On Demand. + Specials + Adult + + + TVMA + + + + Adult On Demand + Adult On Demand. + Specials + Adult + + + TVMA + + + + Adult On Demand + Adult On Demand. + Specials + Adult + + + TVMA + + + + Adult On Demand + Adult On Demand. + Specials + Adult + + + TVMA + + + + Adult On Demand + Adult On Demand. + Specials + Adult + + + TVMA + + + + Nuggets 360 + 2023 NBA Championship Recap Special + + Michael Malone + + 2023 + Pro Sports + Sports + + + Best of Moser, Lombardi + Kane + 2023 + + + Avalanche Face-Off + A preview of Colorado Avalanche action. (live). + + + NHL Hockey + Colorado Avalanche at Vegas Golden Knights + Colorado Avalanche at Vegas Golden Knights. From T-Mobile Arena. (live). + 2023 + Pro Sports + + + Avalanche Locker Room Report + Postgame reactions to Colorado Avalanche action. (live). + + + Avalanche 360 + 09-003 + Sports + + + Altitude Extra + Avalanche Alumni Weekend + 2023 + Sports + + + NBA Basketball + Chicago Bulls at Denver Nuggets + Chicago Bulls at Denver Nuggets. From Ball Arena. + 2023 + Pro Sports + + + Nuggets Locker Room + Denver Nuggets postgame highlights, interviews and analysis. + Pro Sports + Sports + + + Altitude Extra + Fat Lever + Fat Lever is featured. + Sports + + + NHL Hockey + Colorado Avalanche at Vegas Golden Knights + Colorado Avalanche at Vegas Golden Knights. From T-Mobile Arena. + 2023 + Pro Sports + + + NBA Basketball + Chicago Bulls at Denver Nuggets + Chicago Bulls at Denver Nuggets. From Ball Arena. + 2023 + Pro Sports + + + Best of Moser, Lombardi + Kane + 2023 + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all natural solution for joint pain from inflammation. + 2020 + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + True Crime 2023 + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + 2022 + + + Men's College Hockey + Colorado College at Denver + Colorado College at Denver. + 2023 + + + Avalanche 360 + 09-003 + Sports + + + FanDuel Racing + Santa Anita Park, CA & Golden Gate Fields, CA + (live). + 2023 + + + Fishful Thinker + Angler Chad LaChance visits top freshwater and saltwater fishing destinations. + + + Major League Fishing + Patriot Cup Sudden Death Round 1 + 2021 + + TV-G + + + + Altitude Extra + Denver Nuggets Championship Ring Designer + Sports + + + Altitude Extra + Denver Nuggets 2023 NBA Championship Ring & Banner Raising Ceremony + Sports + + + Men's College Hockey + Colorado College at Denver + Colorado College at Denver. + 2023 + + + Avalanche 360 + 09-003 + Sports + + + Best of Moser, Lombardi + Kane + 2023 + + + Rapids 5280 + 10262023 + Sports + + + Fight Sports: Boxing + Arthur Abraham vs. Nikola Sjekloca + + + Major League Fishing + Patriot Cup Sudden Death Round 1 + 2021 + + TV-G + + + + Poker Night in America + 11-05-2023 + High-stakes cash games featuring poker's biggest names in a loose atmosphere. + 2023 + + TV-MA + + + + World Poker Tour + Baccarat Crystal WPT Tournament of Champions - Part 3 + Part 3 of the 2019 Baccarat Crystal WPT Tournament of Champions, from the Aria in Las Vegas. + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2019 + S17 E16 + + TV-PG + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Moser, Lombardi & Kane on Altitude + Vic Lombardi, Marc Moser and Brett Kane host a Denver morning sports-radio simulcast, filled with laughs, opinons and topics from Colorado to the national scene. (live). + 2021 + Talk & Interview + Sports + + + Moser, Lombardi & Kane on Altitude + Vic Lombardi, Marc Moser and Brett Kane host a Denver morning sports-radio simulcast, filled with laughs, opinons and topics from Colorado to the national scene. (live). + 2021 + Talk & Interview + Sports + + + Moser, Lombardi & Kane on Altitude + Vic Lombardi, Marc Moser and Brett Kane host a Denver morning sports-radio simulcast, filled with laughs, opinons and topics from Colorado to the national scene. (live). + 2021 + Talk & Interview + Sports + + + Men's College Hockey + Colorado College at Denver + Colorado College at Denver. + 2023 + + + Golf at Altitude + The Ridge + Travel + Sports + + + Altitude Extra + Denver Nuggets Championship Ring Designer + Sports + + + Altitude Extra + Denver Nuggets 2023 NBA Championship Ring & Banner Raising Ceremony + Sports + + + At Your Leisure + Picturesque travel destinations, reviews of new products and ways to maximize weekends or getaways. (new). + Travel + + + World Wood Bat Association Baseball + WWBA World Championship from Jupiter + 2023 + + + World Poker Tour + Baccarat Crystal WPT Tournament of Champions - Part 3 + Part 3 of the 2019 Baccarat Crystal WPT Tournament of Champions, from the Aria in Las Vegas. + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2019 + S17 E16 + + TV-PG + + + + Rapids 5280 + 10262023 + Sports + + + Altitude Extra + Denver Nuggets Championship Ring Designer + Sports + + + Altitude Extra + Denver Nuggets 2023 NBA Championship Ring & Banner Raising Ceremony + Sports + + + Best of Moser, Lombardi + Kane + (new). + 2023 + + + Nuggets Courtside + A pregame look at the Denver Nuggets, including interviews and highlights of recent action. (live). + Pro Sports + Sports + + + NBA Basketball + New Orleans Pelicans at Denver Nuggets + New Orleans Pelicans at Denver Nuggets. From Ball Arena. (live). + 2023 + Pro Sports + + + Nuggets Locker Room + Denver Nuggets postgame highlights, interviews and analysis. (live). + Pro Sports + Sports + + + Nuggets 360 + 2023 NBA Championship Recap Special + + Michael Malone + + 2023 + Pro Sports + Sports + + + Best of Moser, Lombardi + Kane + 2023 + + + Altitude Extra + Denver Nuggets Championship Ring Designer + Sports + + + NBA Basketball + New Orleans Pelicans at Denver Nuggets + New Orleans Pelicans at Denver Nuggets. From Ball Arena. + 2023 + Pro Sports + + + Nuggets Locker Room + Denver Nuggets postgame highlights, interviews and analysis. + Pro Sports + Sports + + + Altitude Extra + Denver Nuggets 2023 NBA Championship Ring & Banner Raising Ceremony + Sports + + + At Your Leisure + Picturesque travel destinations, reviews of new products and ways to maximize weekends or getaways. + Travel + + + Paid Programming + Paid Programming. + + TV-14 + + + + Blair Underwood V2 + Award winning actor, Blair Underwood uncovers the ultimate all natural solution for joint pain from inflammation. + 2021 + + + Oxygen Therapy + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + 2022 + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + True Crime 2023 + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + 2022 + + + Moser, Lombardi & Kane on Altitude + Vic Lombardi, Marc Moser and Brett Kane host a Denver morning sports-radio simulcast, filled with laughs, opinons and topics from Colorado to the national scene. (live). + 2021 + Talk & Interview + Sports + + + Moser, Lombardi & Kane on Altitude + Vic Lombardi, Marc Moser and Brett Kane host a Denver morning sports-radio simulcast, filled with laughs, opinons and topics from Colorado to the national scene. (live). + 2021 + Talk & Interview + Sports + + + Moser, Lombardi & Kane on Altitude + Vic Lombardi, Marc Moser and Brett Kane host a Denver morning sports-radio simulcast, filled with laughs, opinons and topics from Colorado to the national scene. (live). + 2021 + Talk & Interview + Sports + + + NBA Basketball + New Orleans Pelicans at Denver Nuggets + New Orleans Pelicans at Denver Nuggets. From Ball Arena. + 2023 + Pro Sports + + + Men's College Basketball + Portland State at Air Force + Portland State at Air Force. From Clune Arena. + 2023 + + TV-G + + + + Fight Sports: In 60 + Marco Huck vs. Hugo Hernan Garay + (new). + + + Fight Sports: In 60 + Firat Arslan vs. Yoan Pablo Hernandez + (new). + + + Sports Stars of Tomorrow + Sports Stars of Tomorrow is a United States nationally-syndicated sports television show about high school and college athletics. The show, which is hosted by well known college and NFL television analyst Charles Davis, takes its viewers across the country in search of the brightest young stars in sports. Sports Stars of Tomorrow is the only high-school sports program in national syndication. (new). + + Charles Davis + Pat Summerall + + Sports + + TV-G + + + + Best of Moser, Lombardi + Kane + (new). + 2023 + + + Rapids 5280 + 10262023 + Sports + + + Golf at Altitude + RainDance National Golf Course + Travel + Sports + + + Golf at Altitude + The Ridge + Travel + Sports + + + Best of Moser, Lombardi + Kane + 2023 + + + Men's College Hockey + Colorado College at Denver + Colorado College at Denver. + 2023 + + + Best of Moser, Lombardi + Kane + 2023 + + + Avalanche 360 + 09-003 + Sports + + + Men's College Basketball + Portland State at Air Force + Portland State at Air Force. From Clune Arena. + 2023 + + TV-G + + + + Best of Moser, Lombardi + Kane + 2023 + + + Rapids 5280 + 10262023 + Sports + + + World Chase Tag + 01-007 + + + Fishful Thinker + Angler Chad LaChance visits top freshwater and saltwater fishing destinations. + + + Jarrett Edwards Outdoors + Fishing at sites throughout the western U.S. + + Jarrett Edwards + + Sports + + + Paid Programming + Paid Programming. + + TV-14 + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all natural solution for joint pain from inflammation. + 2020 + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Moser, Lombardi & Kane on Altitude + Vic Lombardi, Marc Moser and Brett Kane host a Denver morning sports-radio simulcast, filled with laughs, opinons and topics from Colorado to the national scene. (live). + 2021 + Talk & Interview + Sports + + + Moser, Lombardi & Kane on Altitude + Vic Lombardi, Marc Moser and Brett Kane host a Denver morning sports-radio simulcast, filled with laughs, opinons and topics from Colorado to the national scene. (live). + 2021 + Talk & Interview + Sports + + + Moser, Lombardi & Kane on Altitude + Vic Lombardi, Marc Moser and Brett Kane host a Denver morning sports-radio simulcast, filled with laughs, opinons and topics from Colorado to the national scene. (live). + 2021 + Talk & Interview + Sports + + + Men's College Basketball + Portland State at Air Force + Portland State at Air Force. From Clune Arena. + 2023 + + TV-G + + + + Avalanche 360 + 09-003 + Sports + + + Men's College Hockey + Colorado College at Denver + Colorado College at Denver. + 2023 + + + FanDuel Racing + Horseshoe, IN & Delta Downs Racetrack, LA + (live). + 2023 + + + Alaska: The Last Frontier + The Day the Cattle Swam + Otto and Eivin race to get the barge ready for its most ambitious mission yet- moving wild buffalo; Jane and Charlotte are put to the test as they lead the Kilchers' first ever all female cattle drive; Atz Sr. and Atz Lee protect a homestead relic. + Reality TV + Documentary + + + TV14 + + + + Alaska: The Last Frontier + The Day the Buffalo Broke Free + The Kilchers join forces to conquer big projects; tensions flare when Otto and Jane journey to Kodiak Island to rescue a herd of wild buffalo; Eivin and Eve tackle an urgent roof repair; Atz Sr. and Atz Lee help Shane on his long overdue cabin build. + Reality TV + Documentary + + + TV14 + + + + Alaska: The Last Frontier + Buffalo 2, Cowboys 0 + Otto and Jane's mission to relocate a herd of wild buffalo on Kodiak Island continues; Atz Sr. ventures into the untamed Alaskan back country to hunt spring black bear; Atz Lee and Nikos test their firearm skills using a custom made gun range. + Reality TV + Documentary + + + TV14 + + + + Alaska: The Last Frontier + The Day the Glacier Fell + Atz Lee and Charlotte rush to save the life of a stuck cow before it's too late; a father-son shrimping trip turns deadly when Otto and his sons must outrun a colossal caving glacier; Eve and Jane fish for salmon for their family. + Reality TV + Documentary + + + TV14 + + + + Alaska: The Last Frontier + The Day the Cattle Swam + Otto and Eivin race to get the barge ready for its most ambitious mission yet- moving wild buffalo; Jane and Charlotte are put to the test as they lead the Kilchers' first ever all female cattle drive; Atz Sr. and Atz Lee protect a homestead relic. + Reality TV + Documentary + + + TV14 + + + + Alaska: The Last Frontier + The Day the Buffalo Broke Free + The Kilchers join forces to conquer big projects; tensions flare when Otto and Jane journey to Kodiak Island to rescue a herd of wild buffalo; Eivin and Eve tackle an urgent roof repair; Atz Sr. and Atz Lee help Shane on his long overdue cabin build. + Reality TV + Documentary + + + TV14 + + + + Alaska: The Last Frontier + The Day the Buffalo Broke Free + The Kilchers join forces to conquer big projects; tensions flare when Otto and Jane journey to Kodiak Island to rescue a herd of wild buffalo; Eivin and Eve tackle an urgent roof repair; Atz Sr. and Atz Lee help Shane on his long overdue cabin build. + Reality TV + Documentary + + + TV14 + + + + Alaska: The Last Frontier + Buffalo 2, Cowboys 0 + Otto and Jane's mission to relocate a herd of wild buffalo on Kodiak Island continues; Atz Sr. ventures into the untamed Alaskan back country to hunt spring black bear; Atz Lee and Nikos test their firearm skills using a custom made gun range. + Reality TV + Documentary + + + TV14 + + + + Alaska: The Last Frontier + The Day the Glacier Fell + Atz Lee and Charlotte rush to save the life of a stuck cow before it's too late; a father-son shrimping trip turns deadly when Otto and his sons must outrun a colossal caving glacier; Eve and Jane fish for salmon for their family. + Reality TV + Documentary + + + TV14 + + + + What History Forgot + Crooks + Revealing the secrets behind the biggest crooks, scandals and schemes in America. + History + + + TVPG + + + + What History Forgot + Making America + The stories behind George Washington, the California Gold Rush, the vast highways that stretch across America, and the wars between the United States and Great Britain. + History + + + TVPG + + + + World War II in Color + The Soviet Steamroller + War on the two fronts catches up with Hitler, leaving him on the run in mid-1943. + Documentary + History + + + TVPG + + + + World War II in Color + Overlord + Hitler faced a new threat, Allied preparations to invade north-west France were coming to a climax. + Documentary + History + + + TVPG + + + + World War II in Color + Closing the Ring + By late summer 1944, the Allied forces in north-west Europe were thrusting towards the German border. + Documentary + History + + + TVPG + + + + World War II in Color + The Island War + By the spring of 1943, the Pacific war had reached a turning point. + + Swaylee Loughnane + + Documentary + History + + + TVPG + + + + World War II in Color + Victory in Europe + Allied forces are within striking distince of the Rhine; a Red Army blitzkrieg brings Soviet forces to the River Oder. + Documentary + History + + + TVPG + + + + World War II in Color + Victory in the Pacific + in 1945, a desperate Japan is attacked by U.S. carriers and amphibious forces. + Documentary + History + + + TVPG + + + + World War II in Color + The Gathering Storm + The most destructive war begins as German troops invade Poland. + Documentary + History + + + TVPG + + + + Hitler + The Opportunist + Investigation into the first three decades of Adolf Hitler's life to discover what transformed a down-and-out Austrian into the undisputed leader of the Nazi Party and the truth behind Hitler's time serving in World War I. + + Mark Lisseman + Adam Wittek + Sebastian Gray + + Miniseries + Documentary + + + TVPG + + + + Hitler + The Actor + Investigates Hitler's rise from election defeat in 1928 to Germany's Messiah in 1933. Experts analyze his speeches, dissect his PR gift and interrogate the mind of a man who ruthlessly executes his closest comrade. + + Mark Lisseman + Adam Wittek + Chris Wilson + + Miniseries + Documentary + + + + Hitler + The Führer + Exploring inside the mind of a dictator as Hitler tightens his iron grip on Germany and turns his sights to conquest; leading experts investigate the key skills that enable him to turn the tables on Europe's foreign leaders. + + Mark Lisseman + Adam Wittek + Gabriel Castilho + + Miniseries + Documentary + + + + Hitler + The Victor + As Hitler's messianic complex reaches its peak, so does the Nazi leader's tireless warmongering. + + Mark Lisseman + Adam Wittek + Gabriel Castilho + + Miniseries + Documentary + + + + Hitler + The Monster + Hitler struggles to stay in control when the tide of war turns against him. + + Mark Lisseman + Adam Wittek + Gabriel Castilho + + Miniseries + Documentary + + + + Hitler + The Downfall + Exploring Hitler's mental and physical decline as he confronts his inevitable defeat. + + Mark Lisseman + Adam Wittek + Gabriel Castilho + + Miniseries + Documentary + + + + WWII: Masters of War + Winston Churchill + While the Wehrmacht crushes the allied armies in France, British officials prepare to face Adolf Hitler; on May 28, 1940, Prime Minister Winston Churchill finally convinces his colleagues to fight. + History + Documentary + + + TVPG + + + + WWII: Masters of War + Charles de Gaulle + After Paris falls to the Nazis, French Prime Minister Henri Pétain plans to sign an armistice with Nazi Germany on June 16, 1940, but Gen. Charles de Gaulle secedes and rebels against the policy. + History + Documentary + + + TVPG + + + + WWII: Masters of War + Adolf Hitler + On June 22, 1941, Adolf Hitler launches a military offensive called Operation Barbarossa against the Soviet Union. + History + Documentary + + + TVPG + + + + WWII: Masters of War + Franklin D. Roosevelt + On Dec. 7, 1941, Japanese bombers attack Pearl Harbor and sink a large part of the U.S. Pacific Fleet; President Franklin D. Roosevelt decides it's time for the United States to strike back. + History + Documentary + + + TVPG + + + + WWII: Masters of War + Joseph Stalin + At the Yalta Conference, President Franklin D. Roosevelt, Prime Minister Winston Churchill and Premier Joseph Stalin compete for postwar domination while meeting to discuss Germany and Europe's reorganization. + History + Documentary + + + TVPG + + + + WWII: Masters of War + Charles de Gaulle + After Paris falls to the Nazis, French Prime Minister Henri Pétain plans to sign an armistice with Nazi Germany on June 16, 1940, but Gen. Charles de Gaulle secedes and rebels against the policy. + History + Documentary + + + TVPG + + + + WWII: Masters of War + Adolf Hitler + On June 22, 1941, Adolf Hitler launches a military offensive called Operation Barbarossa against the Soviet Union. + History + Documentary + + + TVPG + + + + WWII: Masters of War + Franklin D. Roosevelt + On Dec. 7, 1941, Japanese bombers attack Pearl Harbor and sink a large part of the U.S. Pacific Fleet; President Franklin D. Roosevelt decides it's time for the United States to strike back. + History + Documentary + + + TVPG + + + + WWII: Masters of War + Joseph Stalin + At the Yalta Conference, President Franklin D. Roosevelt, Prime Minister Winston Churchill and Premier Joseph Stalin compete for postwar domination while meeting to discuss Germany and Europe's reorganization. + History + Documentary + + + TVPG + + + + Hitler + The Downfall + Exploring Hitler's mental and physical decline as he confronts his inevitable defeat. + + Mark Lisseman + Adam Wittek + Gabriel Castilho + + Miniseries + Documentary + + + + WWII: Masters of War + Winston Churchill + While the Wehrmacht crushes the allied armies in France, British officials prepare to face Adolf Hitler; on May 28, 1940, Prime Minister Winston Churchill finally convinces his colleagues to fight. + History + Documentary + + + TVPG + + + + American Lawmen + Dallas Stoudemire: The Hero of El Paso + Lawlessness runs rampant in a notorious Texas outpost and it's up to legendary lawman Dallas Stoudemire to tame the town known as. + + Jessica Allen + Scott Garland + Demetri James + + Documentary + + + TVPG + + + + American Lawmen + Tom Smith: The Two-Fisted Marshal of Abeline + Using his fists instead of a pistol, professional boxer turned frontier lawman Tom Smith is determined to clean up 'Hell on Earth'. + + Ben Ball + Craig Cyr + Will King + + Documentary + + + TVPG + + + + American Lawmen + Tom Tunney & the Spies of N.Y + A New York City cop uncovers a German terrorist cell operating on American soil during World War I and fights to stop them before it's too late. + + Werner Artinger + Ry Barrett + Neil Bennett + + Documentary + + + TVPG + + + + American Lawmen + Petrosino vs The Mafia + Joe Petrosino, New York City's first Italian-American detective, is determined to do whatever it takes to protect his people in turn-of-the-century Little Italy. + + Joe Anastasio + Nick Biskupek + Jimmy Cappellano + + Documentary + + + TVPG + + + + American Lawmen + Melvin Purvis: The Gangbuster + During the Great Depression, a violent crime wave sweeps the nation and it's up to the FBI's Melvin Purvis to lead a massive manhunt for the most dangerous men in America. + + Drew Moss + Mark Buck + Mathieu Burdan + + Documentary + + + TVPG + + + + American Lawmen + Allan Pinkerton: Saving Lincoln + After being hired to protect a strategic railroad from attack, celebrated P.I. Allan Pinkerton discovers a hidden conspiracy to assassinate President Lincoln. + + Neil Affleck + Chris Batchelor + Selena Broughton + + Documentary + + + TVPG + + + + American Titans + Rockefeller vs. Scott + Kerosene king John D. Rockefeller clashes with Pennsylvania Railroad President Thomas A. Scott for control of the oil industry in America. + + Joe Feldman + + History + + + TVPG + + + + American Titans + Edison vs. Tesla + Thomas Edison and Nikola Tesla, pioneers in the electrical industry and business rivals, have a difference of opinion over the best method to transmit power. + + Michael Litchfield + + History + + + TVPG + + + + American Titans + Carnegie vs. Frick + What started as an indomitable partnership for steel magnate Andrew Carnegie and coal king Henry Clay Frick, ended in violence. + + Sean M Brown + Scott Reynolds Nelson + + History + + + TVPG + + + + American Titans + Vanderbilt vs. Drew + Businessman Cornelius Vanderbilt and rival Daniel Drew engage in a Wall Street war to control the Erie Railroad. + + Joe Feldman + Andrew Gelos + Bill Steffey + + History + + + TVPG + + + + American Titans + Hearst vs. Pulitzer + Newspaper publishers William Randolph Hearst and Joseph Pulitzer engage in a high-stakes circulation war in the 1890's. + + Sean M Brown + Brett Schmidt + + History + + + TVPG + + + + American Titans + Daly vs. Clark + Businessmen William A. Clark and Marcus Daly find themselves in a battle to mine copper ore hidden in the hills of Montana. + + Tony Barber + John A. Taylor + Johnny Day + + History + + + TVPG + + + + The Cowboy + Movies That Shaped America's Myth + From the great stars like Clint Eastwood, John Wayne, and Steve McQueen, to the great directors like John Ford, Sergio Leone, and Sam Peckinpah, celebrate the icons and legends of the American West as immortalized by Hollywood. + History + Performing Arts + + + TVPG + + + + The Cowboy + Hollywood vs. History + Explore legendary lawmen like Wyatt Earp and Wild Bill Hickok, infamous outlaws like Jesse James and Billy the Kid, and epic showdowns like the Gunfight at the OK Corral as portrayed by the giants of cinema. + History + Performing Arts + + + TVPG + + + + Somali Pirate Takedown the Real Story + Navy SEALs take action to free cargo ship Capt. Richard Phillips from the pirates holding him hostage off the coast of Somalia. + + Keith Michael Gregory + Henry Jaderlund + Terry Jernigan + + Specials + Documentary + + + TV14 + + + + Unabomber: 20 Years of Terror + Unabomber Ted Kaczynski terrorized the country with mail bombs but when his brother David realized, he made a hard decision to turn Ted over to authorities. David shares his dramatic story with us and retraces the Unabomber's steps. + Specials + Documentary + + + TV14 + + + + How Superman Defeated the KKK + Human rights activist Stetson Kennedy infiltrates the Ku Klux Klan in the 1940s and passes along secret information to the writers of the radio program. + Specials + History + + + TVPG + + + + Capturing Oswald + The Dallas Police Department hunts fugitive Lee Harvey Oswald following the assassination of President John F. Kennedy. + + Hayden Livesay + + Specials + History + + + TVPG + + + + Somali Pirate Takedown the Real Story + Navy SEALs take action to free cargo ship Capt. Richard Phillips from the pirates holding him hostage off the coast of Somalia. + + Keith Michael Gregory + Henry Jaderlund + Terry Jernigan + + Specials + Documentary + + + TV14 + + + + Unabomber: 20 Years of Terror + Unabomber Ted Kaczynski terrorized the country with mail bombs but when his brother David realized, he made a hard decision to turn Ted over to authorities. David shares his dramatic story with us and retraces the Unabomber's steps. + Specials + Documentary + + + TV14 + + + + How Superman Defeated the KKK + Human rights activist Stetson Kennedy infiltrates the Ku Klux Klan in the 1940s and passes along secret information to the writers of the radio program. + Specials + History + + + TVPG + + + + Capturing Oswald + The Dallas Police Department hunts fugitive Lee Harvey Oswald following the assassination of President John F. Kennedy. + + Hayden Livesay + + Specials + History + + + TVPG + + + + The Cowboy + Movies That Shaped America's Myth + From the great stars like Clint Eastwood, John Wayne, and Steve McQueen, to the great directors like John Ford, Sergio Leone, and Sam Peckinpah, celebrate the icons and legends of the American West as immortalized by Hollywood. + History + Performing Arts + + + TVPG + + + + The Cowboy + Hollywood vs. History + Explore legendary lawmen like Wyatt Earp and Wild Bill Hickok, infamous outlaws like Jesse James and Billy the Kid, and epic showdowns like the Gunfight at the OK Corral as portrayed by the giants of cinema. + History + Performing Arts + + + TVPG + + + + Combat Tech + Armor + The latest in body armor; camouflage that creates a cloak of invisibility. + History + + + TVPG + + + + Combat Tech + ROVs + A look inside the robotic war machines now being used on the front lines of modern battlefields. + History + + + TVPG + + + + Ultimate Weapons + Robotic Warriors + Unmanned weapon systems use stealth and autonomy to destroy their targets. + History + + + TVPG + + + + Ultimate Weapons + Sniper Rifles + A lone marksman with a sniper rifle can take out targets from distances of over a mile. + History + + + TVPG + + + + Ultimate Weapons + Close Quarter Battle + Compact but deadly weapons for engaging enemies at short range. + History + + + TVPG + + + + Ultimate Weapons + Firepower + Highlighting some of the world's most powerful man-portable weapons. + History + + + TVPG + + + + Deadliest Tech + Helicopters + A look at the fastest, deadliest attack helicopters being used today. + Regular + + + TVPG + + + + Deadliest Tech + Guns + Modern guns combine unparalleled accuracy, range and stopping power. + Regular + + + TVPG + + + + Deadliest Tech + Tanks + A look inside the fiercest tanks to ever storm the battlefield. + Regular + + + TVPG + + + + Deadliest Tech + Explosives + Exposing the intriguing secrets of modern explosives. + Regular + + + TVPG + + + + Deadliest Tech + Special OPS + The latest weapons and technology used by special forces. + Regular + + + TVPG + + + + Deadliest Tech + Fighters + A look at the top fighter planes, and what the future holds for these aerial assassins. + Regular + + + TVPG + + + + Bullet Points + America's First War on Communism + The Cold War turns hot when the U.S. faces two communist giants in Korea. + History + Documentary + + + TVPG + + + + Bullet Points + Operation Desert Storm + Key battles and strategies surrounding the liberation of Kuwait from invading dictator Saddam Hussein. + History + Documentary + + + TVPG + + + + Top Tens + Machine Guns + Count down of the most influential machine guns. + Documentary + + + TVPG + + + + Top Tens + Armor + Top Ten ranks materials and technologies that have changed fighting. + Documentary + + + TVPG + + + + Top Tens + Covert Gear + Ranking the top ten covert gear that has helped the Special Operations Forces accomplish their missions. + Documentary + + + TVPG + + + + Top Ten Submarines + Innovative submarines of the last 100 years. + Specials + Documentary + + + TVPG + + + + Top Tens + Machine Guns + Count down of the most influential machine guns. + Documentary + + + TVPG + + + + Top Tens + Armor + Top Ten ranks materials and technologies that have changed fighting. + Documentary + + + TVPG + + + + Top Tens + Covert Gear + Ranking the top ten covert gear that has helped the Special Operations Forces accomplish their missions. + Documentary + + + TVPG + + + + Top Ten Submarines + Innovative submarines of the last 100 years. + Specials + Documentary + + + TVPG + + + + Bullet Points + America's First War on Communism + The Cold War turns hot when the U.S. faces two communist giants in Korea. + History + Documentary + + + TVPG + + + + Bullet Points + Operation Desert Storm + Key battles and strategies surrounding the liberation of Kuwait from invading dictator Saddam Hussein. + History + Documentary + + + TVPG + + + + Ultimate Warfare + Midway: Taking Back the Pacific + Americans take on the most powerful navy in the world in a battle that will change of the course the Pacific war. + History + + + TVPG + + + + Ultimate Warfare + Okinawa: Island Fortress + American forces fight thousands of Japanese soldiers on mountainous terrain and treacherous conditions. + History + + + TVPG + + + + Ultimate Warfare + Chosin: One Way Out + In the Korean War's Battle of Chosin Reservoir, U.S. Marines encounter brutal weather conditions and an overwhelming Chinese force. + History + + + TVPG + + + + Ultimate Warfare + Bulge: Holding the Line + The Ardennes forest plays host to the Battle of the Bulge, the bloodiest battle of World War II. + History + + + TVPG + + + + Ultimate Warfare + Fallujah: The Taking of Terror Central + U.S. forces face one of the toughest urban conflicts since Vietnam as they try to reclaim the city from insurgents. + History + + + TVPG + + + + Ultimate Warfare + Hue: Vietnam's Bloodiest Battle + Thousands of NVA soldiers lay waiting in the ancient Citadel for the Marines to breech the walls and begin the fight. + History + + + TVPG + + + + Ultimate Warfare + Khe Sanh: Marines Under Siege + Surrounded and outnumbered, six thousand marines fend off the Communist army for 77 days during the Vietnam War. + History + + + TVPG + + + + Ultimate Warfare + Kandahar: Against All Odds + U.S. special forces face off against a much larger Taliban insurgence to take control of Kandahar. + History + + + TVPG + + + + Ultimate Warfare + Baghdad: Thunder Runs + A tank battalion smashes into Saddam Hussein's Baghdad in what would become one of of the most decisive battles of the Iraq war. + History + + + TVPG + + + + Ultimate Warfare + Courage at Sea + Ill-prepared U.S. ships take on the largest battleships ever built in the biggest naval battle in history. + History + + + TVPG + + + + Ultimate Warfare + Midway: Taking Back the Pacific + Americans take on the most powerful navy in the world in a battle that will change of the course the Pacific war. + History + + + TVPG + + + + Ultimate Warfare + Okinawa: Island Fortress + American forces fight thousands of Japanese soldiers on mountainous terrain and treacherous conditions. + History + + + TVPG + + + + FutureWeapons + Close Protection + A top-secret device to prevent the smuggling of bombs and guns onto planes; the latest multicaliber combat weapon. + News + Documentary + + + TVPG + + + + Pets & Pickers + A Shell of a Problem + Motivated by the extraordinary compassion and belief that all animals deserve treatment, the vet and thrift store team of the Regional Animal Protection Society work tirelessly to offer low-income pet families access to life-saving healthcare. + Reality TV + Animals + + + TV14 + + + + Pets & Pickers + Thrift Store Trouble + Motivated by the extraordinary compassion and belief that all animals deserve treatment, the vet and thrift store team of the Regional Animal Protection Society work tirelessly to offer low-income pet families access to life-saving healthcare. + Reality TV + Animals + + + TV14 + + + + The Zoo + Walk on the Wild Side + The future of the American bison depends on a high-stakes race across the country; the reptile staff have their hands full with a diamond rattlesnake that needs to be medicated orally; training a pair of cheetahs to walk the grounds of the zoo. + Reality TV + Animals + + + TVPG + + + + The Zoo + Handle With Care + A tomistoma, a freshwater crocodilian, stops laying eggs and a team of keepers scrambles to treat her; the veterinary team has to rescue a baby antelope that isn't getting the care it needs from its mother; Mert the Goose takes a field trip. + Reality TV + Animals + + + TVPG + + + + Pets & Pickers + A Shell of a Problem + Motivated by the extraordinary compassion and belief that all animals deserve treatment, the vet and thrift store team of the Regional Animal Protection Society work tirelessly to offer low-income pet families access to life-saving healthcare. + Reality TV + Animals + + + TV14 + + + + Pets & Pickers + Thrift Store Trouble + Motivated by the extraordinary compassion and belief that all animals deserve treatment, the vet and thrift store team of the Regional Animal Protection Society work tirelessly to offer low-income pet families access to life-saving healthcare. + Reality TV + Animals + + + TV14 + + + + The Zoo + Walk on the Wild Side + The future of the American bison depends on a high-stakes race across the country; the reptile staff have their hands full with a diamond rattlesnake that needs to be medicated orally; training a pair of cheetahs to walk the grounds of the zoo. + Reality TV + Animals + + + TVPG + + + + The Zoo + Moving Day + The Zoo's huge male sea lion is in rut, and staff need to move the younger males before he becomes territorial; the veterinary team come up with a solution to repair Dinky the Flamingo's broken ankle; feeding a rock python proves challenging. + Reality TV + Animals + + + TVPG + + + + The Zoo + Handle With Care + A tomistoma, a freshwater crocodilian, stops laying eggs and a team of keepers scrambles to treat her; the veterinary team has to rescue a baby antelope that isn't getting the care it needs from its mother; Mert the Goose takes a field trip. + Reality TV + Animals + + + TVPG + + + + The Zoo + Back to Africa + Zoo staff make the journey to east Africa to return to the wild thousands of toads they helped rescue from extinction; Utu, the test-pilot giraffe, tries out a new piece of equipment; the bird department works to save the lives of millions of birds. + Reality TV + Animals + + + TVPG + + + + The Zoo + Higher Purpose + Two adorable tiger cubs need to move to the adult exhibit; a silverback gorilla receives pioneering treatment to curb his worsening eyesight; a passionate keeper plays matchmaker to a peculiar pair of birds. + Reality TV + Animals + + + TVPG + + + + North Woods Law + Moose Mania + The Warden Service works to clear the forests of poachers; lazy lawbreakers known as. + Reality TV + Animals + + + TVPG + + + + North Woods Law + Off Roadin' + ATV riders violate traffic laws, then make a break for it across rugged terrain; Warden Kim Bates searches for the person who mutilated a deer. + Reality TV + Animals + + + TVPG + + + + North Woods Law + Gun Country + The wardens suspect possible foul play in the shooting of a turkey hunter; a team of wardens sets up a stakeout. + Reality TV + Animals + + + TVPG + + + + North Woods Law + On Thin Ice + Hunters seek loads of fresh meat for the long winter; the game wardens track a possible poacher; ice fishing in the back country. + Reality TV + Animals + + + TVPG + + + + North Woods Law + Maine Freeze + Wardens rush to the scene of a serious nighttime snowmobile accident; a stakeout targets coyote poachers. + Reality TV + Animals + + + TVPG + + + + North Woods Law + Wicked Summer + The game wardens face extra work during the summer tourist season; Sgt. Craven stops a runaway ATV and tries to determine which of two duplicitous friends is telling the truth. + Reality TV + Animals + + + TVPG + + + + North Woods Law + Boat Load of Trouble + The game wardens take to personal watercraft and speedboats to patrol Maine's thousands of rivers and lakes. + Reality TV + Animals + + + TVPG + + + + North Woods Law + Harvest Time + The wardens split their time patrolling the water and the woods during the end of summer; criminals conduct illegal drug activity in the wilderness. + Reality TV + Animals + + + TVPG + + + + North Woods Law + The Rookies + Warden Miller and Sgt. Annis encounter a family with weapons in its car and a strange ATV driver; Cpl. Clowery patrols Maine's white-water rivers. + Reality TV + Animals + + + TVPG + + + + North Woods Law + Something's Afowl + The wardens travel to a southern Maine wetland where they catch hunters using illegal guns, ammunition and drugs. + Reality TV + Animals + + + TVPG + + + + North Woods Law + Racking Up the Bad Guys + Sgt. Simmons investigates the killing of a mother deer; Warden Curtis and police dog Cruizer search the backwoods for a missing hunter. + Reality TV + Animals + + + TVPG + + + + North Woods Law + The Crime of the Century + Sgt. Simmons joins forces with associates from other agencies to track down a notorious deer poacher. + Reality TV + Animals + + + TVPG + + + + North Woods Law + Deer Deception + The wardens ready for activity as deer season begins in Maine. + Reality TV + Animals + + + TVPG + + + + North Woods Law + Warden Warriors + The wardens use night-vision technology to catch poachers; Warden Laflamme takes drastic action to protect the public. + Reality TV + Animals + + + TVPG + + + + Yellowstone Wardens + This Should Go Well.. + Wardens come across some colorful characters when they set up a safety check along the river for boaters and rafters; the upcoming opening of the elk season leads to some hunters jumping the gun, with wardens chasing them down. + Reality TV + Animals + + + + Yellowstone Wardens + That's What I Shoulda Did + Warden Lesofski tracks down hunters riding their ATV through farmers' crops; Warden Taylor investigates a claim of illegal hunting on private property; Warden Golie races to find a hunter disobeying a landowner's rules. + Reality TV + Animals + + + + North Woods Law + Crossing the Line + The wardens watch for illegal hunting activity along the Canadian border; Warden MacCabe uses a rocket net to capture nuisance wild turkeys. + Reality TV + Animals + + + TVPG + + + + North Woods Law + Uncuffed + Behind the scenes of the making of the series; looking back at the season's biggest busts and most frightening animal encounters. + Reality TV + Animals + + + TVPG + + + + Yellowstone Wardens + This Should Go Well.. + Wardens come across some colorful characters when they set up a safety check along the river for boaters and rafters; the upcoming opening of the elk season leads to some hunters jumping the gun, with wardens chasing them down. + Reality TV + Animals + + + + Yellowstone Wardens + That's What I Shoulda Did + Warden Lesofski tracks down hunters riding their ATV through farmers' crops; Warden Taylor investigates a claim of illegal hunting on private property; Warden Golie races to find a hunter disobeying a landowner's rules. + Reality TV + Animals + + + + North Woods Law + Crossing the Line + The wardens watch for illegal hunting activity along the Canadian border; Warden MacCabe uses a rocket net to capture nuisance wild turkeys. + Reality TV + Animals + + + TVPG + + + + North Woods Law + Uncuffed + Behind the scenes of the making of the series; looking back at the season's biggest busts and most frightening animal encounters. + Reality TV + Animals + + + TVPG + + + + North Woods Law + Racking Up the Bad Guys + Sgt. Simmons investigates the killing of a mother deer; Warden Curtis and police dog Cruizer search the backwoods for a missing hunter. + Reality TV + Animals + + + TVPG + + + + North Woods Law + The Crime of the Century + Sgt. Simmons joins forces with associates from other agencies to track down a notorious deer poacher. + Reality TV + Animals + + + TVPG + + + + Too Cute! + Puppies and Ducklings + Follow puppies in the first months of these Pugs, Mini-Australian Shepherds and Rottweillers' lives as they will be adventure-filled, including a lesson in duck-herding. + Animals + + + TVG + + + + Saved By The Barn + Baby Fever + The barn partners with Michigan Humane Society to find forever homes for four neglected calves; they also welcome a litter of piglets, and Chris is tasked to build a playground for the goats. + Reality TV + Animals + + + TVPG + + + + Dogs 101 + Irish Wolfhound; American Pit Bull Terrier; Gordon Setter; Silky Terrier + Irish Wolfhound; American Pit Bull Terrier; Gordon Setter; Silky Terrier. + Animals + + + TVPG + + + + Crikey! It's the Irwins + Australia Zoo Begins Again + After weeks of being closed due to the global pandemic, the Irwins race to prepare for the reopening of the zoo; Robert helps deliver a litter of newborn tiger cubs, while Bindi handles a sudden crisis at the wildlife hospital. + Reality TV + Animals + + + TVPG + + + + Crikey! It's the Irwins + Double Puggle + Bindi and the zoo welcome two baby echidnas; health concerns become a major threat for one puggle's survival; a jabiru goes missing. + Reality TV + Animals + + + TVPG + + + + Treehouse Masters + Nature's Super HQ + Pete and NTS build a tree house for the For-Mar Nature Preserve just outside Flint, Mich.; the 5-platform nature headquarters serves as a positive addition to a community still reeling from the water crisis that began in 2014. + Reality TV + Instructional + + + TVPG + + + + The Zoo + A New Beginning + Max the Camel faces new challenges as he ages; the Zoo prepares to give an injured turkey vulture a permanent home, but after healing, there may be a change of plan; Willow the Red Panda gives birth to two baby cubs. + Reality TV + Animals + + + TVPG + + + + Tanked + Howie Mandel's Surprise Tank + Howie Mandel reaches out to ATM for another tank, only this time it's a surprise for his manager's company; Three Arts Entertainment already has an existing tank but it needs a serious upgrade. + Reality TV + Animals + + + TVPG + + + + Pit Bulls and Parolees + Second Chance Ranch + Tia Torres works to rescue and rehabilitate pit bulls at the Villalobos Rescue Center with the help of her family and a team of parolees. + Reality TV + Animals + + + TVPG + + + + Pit Bulls and Parolees + On the Run + Tia Torres and her team are tasked with tracking down a pit bull that has been living wild in a local park; it's a dangerous assignment that proves far harder than Tia ever expected. + Reality TV + Animals + + + TVPG + + + + Naked and Afraid + Broke Back Jungle + A circus performer and an avid hunter take on 14 days in the untamed jungle of Tobago; a serious injury threatens their challenge. + Reality TV + + + TV14 + + + + Naked and Afraid + Buffalo Bait + In South Africa, two fans attempt a 14-day challenge in the middle of dangerous cape buffalo territory. + Reality TV + + + TV14 + + + + Naked and Afraid + Blood and Money + An ICU nurse and a banker attempt a 14-day fan challenge in the rugged Mexican jungle; as food becomes scarce, they question their will and skill to make it to the end. + Reality TV + + + TV14 + + + + Naked and Afraid + Cry for Me, Argentina + Rachel, a survivalist from. + Reality TV + + + TV14 + + + + Naked and Afraid + Gag Me with a Turtle + Two fans are ready to take on 14 days in the brutal landscape of South Africa. + Reality TV + + + TV14 + + + + Naked and Afraid + Taste of Their Own Medicine + For the first time ever, two Naked and Afraid crew members attempt to survive 21 days in front of the camera. But faced with swarms of unrelenting insects and a lack of food, this history-making duo is about to get a taste of their own medicine. + Reality TV + + + TV14 + + + + Naked and Afraid + Shark Attack + When nature calls, a fan's risky survival strategy backfires and endangers the challenge in the Arizona desert; an Eagle Scout and a stay-at-home mom struggle to survive among rattlesnakes and mountain lions while overcoming their own mistakes. + Reality TV + + + TV14 + + + + Naked and Afraid + A Tangled Web in Texas + After surviving a near-fatal car crash, an impulsive adventurer is paired with a cautious archaeologist in the Texas desert; stalked by mountain lions and tarantulas, this odd couple must work together to endure scorching days and frigid nights. + Reality TV + + + TV14 + + + + Naked and Afraid + Gag Me with a Turtle + Two fans are ready to take on 14 days in the brutal landscape of South Africa. + Reality TV + + + TV14 + + + + Naked and Afraid + Taste of Their Own Medicine + For the first time ever, two Naked and Afraid crew members attempt to survive 21 days in front of the camera. But faced with swarms of unrelenting insects and a lack of food, this history-making duo is about to get a taste of their own medicine. + Reality TV + + + TV14 + + + + Naked and Afraid + Shark Attack + When nature calls, a fan's risky survival strategy backfires and endangers the challenge in the Arizona desert; an Eagle Scout and a stay-at-home mom struggle to survive among rattlesnakes and mountain lions while overcoming their own mistakes. + Reality TV + + + TV14 + + + + Naked and Afraid + A Tangled Web in Texas + After surviving a near-fatal car crash, an impulsive adventurer is paired with a cautious archaeologist in the Texas desert; stalked by mountain lions and tarantulas, this odd couple must work together to endure scorching days and frigid nights. + Reality TV + + + TV14 + + + + Naked and Afraid + Broke Back Jungle + A circus performer and an avid hunter take on 14 days in the untamed jungle of Tobago; a serious injury threatens their challenge. + Reality TV + + + TV14 + + + + Naked and Afraid + Buffalo Bait + In South Africa, two fans attempt a 14-day challenge in the middle of dangerous cape buffalo territory. + Reality TV + + + TV14 + + + + Too Cute! + Kitten Dolls + Heartwarming romps featuring hairless Sphynxes, inquisitive Burmese cats, and tiny Ragdolls who buddy up to German Shepherds. + Animals + + + TVG + + + + Saved By The Barn + We've Got Pig Problems + The sanctuary welcomes a blind goat called Charlie and two lovable ducklings that need help to learn how to swim; a tussle between pigs June and Jasper ensues during routine tusk and nail trimming, while Ginger the goat embraces her new prosthetics. + Reality TV + Animals + + + TVPG + + + + Dogs 101 + Basenji, Bullmastiff, Shetland Sheepdog, Coton de Tulear, Wonder Dogs + Basenji, Bullmastiff; Shetland Sheepdog; Coton de Tulear; Wonder Dogs, Great Pyrenees; American Eskimo. + Animals + + + TVPG + + + + Crikey! It's the Irwins + Tiger Triplets + Bindi and the family plan an emotional surprise for Terri in the Crocoseum; Robert helps the zoo's three new adorable tiger cubs. + Reality TV + Animals + + + TVPG + + + + Crikey! It's the Irwins + Robert And Big Bad Bosco + Robert continues his father's legacy as he faces off with Bosco, the most aggressive croc at the zoo; Bindi lends a hand when a koala needs eye surgery. + Reality TV + Animals + + + TVPG + + + + Treehouse Masters + The Owl Treehouse + Pete pushes his design skills to create an owl-inspired tree house library in Charlotte, N.C.; evoking the face of the bird and using all sorts of curves, including rounded walls and semi-circle bookcases, the crew builds a one-of-a-kind masterpiece. + Reality TV + Instructional + + + TVPG + + + + The Zoo + Wallaby in the City + The TAB staff heads to Manhattan to rescue a wallaby living in an apartment; a fruit bat discovers how to spread her wings, and a trio of alligators move into their summer home. + Reality TV + Animals + + + TVPG + + + + Tanked + The Amazing Piano Tank + Pianoworks in Rochester, N.Y. wants Wayde and Brett to build them a piano of their own; this one is made out of acrylic and filled with fish. + Reality TV + Animals + + + TVPG + + + + Pit Bulls and Parolees + Redemption + A cast of Renaissance fair pirates look to adopt a pit bull; Tia's husband faces a bail hearing. + Reality TV + Animals + + + TVPG + + + + Pit Bulls and Parolees + Don't Blow It + Tia's goal is to transform the lives of parolees, however, one parolee risks his chances to get on the correct path; a pit bull rescued from the streets of Jackson, Miss., steals the heart of a potential adopter's heart. + Reality TV + Animals + + + TVPG + + + + North Woods Law + On the Loose + Lt. Boudreau teams up with Trainee Masucci to track down a turkey hunter who may have shot from the road; when an animal release goes south, Officer Hannett lends a hand;Officer Canfield races to catch a trespassing dirt biker. + + Rick LaFlamme + Glen Annis + Dan Carroll + + Reality TV + Animals + + + TVPG + + + + North Woods Law + Good News, Bad News + Officers St. Pierre, Benvenuti and K9 Cora investigate a couple accused of road hunting; an actress tries to perform her way out of a ticket with Officer Hannett; Officer Holmes gets an injured goose call; Officer Frye handles a neighbor dispute. + + Rick LaFlamme + Glen Annis + Dan Carroll + + Reality TV + Animals + + + TVPG + + + + North Woods Law + Needle in a Haystack + Conservation Officers statewide join forces with volunteers and the National Guard to launch an intensive search for a missing hiker; Officer McKee gets news of a bear who has infiltrated a home in search of food. + + Rick LaFlamme + Glen Annis + Dan Carroll + + Reality TV + Animals + + + TV14 + + + + North Woods Law + Out of Options + Officer Cyrs gets a call about a rabid fox that attacked a homeowner; Officer Crouse tracks down a group of ATV riders; Lt. Murphy talks to a farmer about a nuisance bear; Officers Frye and Jones investigate a hunter that may have shot from the road. + + Rick LaFlamme + Glen Annis + Dan Carroll + + Reality TV + Animals + + + TVPG + + + + North Woods Law + Bump in the Road + Lt. Boudreau and Officer Hannett have an unusually busy day on ATV patrol; Officer McDermott investigates a man who illegally shot a rabbit in a residential area; Officer Holmes and Officer Cyrs use ATVs to rescue an injured hiker on Mount Carter. + + Rick LaFlamme + Glen Annis + Dan Carroll + + Reality TV + Animals + + + TVPG + + + + North Woods Law + Case Closed + Lt. Mike Eastman investigates a case of stolen lobster traps; a man on a dirt bike flees the scene after being stopped for speeding; Officer Hannett sends an injured pigeon to a local wildlife rehabber. + + Rick LaFlamme + Glen Annis + Dan Carroll + + Reality TV + Animals + + + TVPG + + + + North Woods Law + Leading the Way + Sgt. Pushee leads a multi-agency rescue mission to find a missing kayaker; a specialist is called in to locate a pesky bear roaming a residential area; and a boy is caught riding without a helmet and operating his ATV illegally. + + Rick LaFlamme + Glen Annis + Dan Carroll + + Reality TV + Animals + + + TVPG + + + + North Woods Law + Raccoon Rescue + With the help of local police, Lt. Boudreau and Officer Hannett remove campers that are illegally occupying state property; an 8-year-old boy is found riding solo on an ATV, and Officer Crouse helps two raccoon cubs found on the road. + + Rick LaFlamme + Glen Annis + Dan Carroll + + Reality TV + Animals + + + TV14 + + + + North Woods Law + Bump in the Road + Lt. Boudreau and Officer Hannett have an unusually busy day on ATV patrol; Officer McDermott investigates a man who illegally shot a rabbit in a residential area; Officer Holmes and Officer Cyrs use ATVs to rescue an injured hiker on Mount Carter. + + Rick LaFlamme + Glen Annis + Dan Carroll + + Reality TV + Animals + + + TVPG + + + + North Woods Law + Case Closed + Lt. Mike Eastman investigates a case of stolen lobster traps; a man on a dirt bike flees the scene after being stopped for speeding; Officer Hannett sends an injured pigeon to a local wildlife rehabber. + + Rick LaFlamme + Glen Annis + Dan Carroll + + Reality TV + Animals + + + TVPG + + + + North Woods Law + Leading the Way + Sgt. Pushee leads a multi-agency rescue mission to find a missing kayaker; a specialist is called in to locate a pesky bear roaming a residential area; and a boy is caught riding without a helmet and operating his ATV illegally. + + Rick LaFlamme + Glen Annis + Dan Carroll + + Reality TV + Animals + + + TVPG + + + + North Woods Law + Raccoon Rescue + With the help of local police, Lt. Boudreau and Officer Hannett remove campers that are illegally occupying state property; an 8-year-old boy is found riding solo on an ATV, and Officer Crouse helps two raccoon cubs found on the road. + + Rick LaFlamme + Glen Annis + Dan Carroll + + Reality TV + Animals + + + TV14 + + + + North Woods Law + On the Loose + Lt. Boudreau teams up with Trainee Masucci to track down a turkey hunter who may have shot from the road; when an animal release goes south, Officer Hannett lends a hand;Officer Canfield races to catch a trespassing dirt biker. + + Rick LaFlamme + Glen Annis + Dan Carroll + + Reality TV + Animals + + + TVPG + + + + North Woods Law + Good News, Bad News + Officers St. Pierre, Benvenuti and K9 Cora investigate a couple accused of road hunting; an actress tries to perform her way out of a ticket with Officer Hannett; Officer Holmes gets an injured goose call; Officer Frye handles a neighbor dispute. + + Rick LaFlamme + Glen Annis + Dan Carroll + + Reality TV + Animals + + + TVPG + + + + Too Cute! + Kittens and Pocket Pets + The fun-filled early months in the lives of Savannah, Siberian and shorthair cats include exploring new realms and playing with other small household pets. + Animals + + + TVG + + + + Saved By The Barn + Aqua Cow + A cow called Dwight is ready to conquer his pain from a leg injury and heads to Indiana for hydrotherapy; Lola the goat is gifted with a prosthetic and is ready to walk again, while Dan takes in over a dozen exotic farm animals. + Reality TV + Animals + + + TVPG + + + + Dogs 101 + Australian Cattle Dog, Saluki, Norwich Terrier, Boykin Spaniel, Wonder Dog + Australian Cattle Dog; Saluki; Norwich Terrier; Boykin Spaniel; Wonder Dog. + Animals + + + TVPG + + + + Crikey! It's the Irwins + Bushfire Rescue + After historical wildfires rip through Australia, the Irwins race to rescue as many animals as possible; Robert and Terri jump in to help the severely injured koala population; Bindi and the wildlife hospital rescue hundreds of baby flying foxes. + Reality TV + Animals + + + TVPG + + + + Crikey! It's the Irwins + Bindis Croc Trip Surprise + The Irwins go to the Steve Irwin Wildlife Reserve; Robert leads his first croc-catching team; Bindi and Chandler have a life-changing announcement. + Reality TV + Animals + + + TVPG + + + + Treehouse Masters + Glamorous Glamping Retreat + The NTS team leave their tents behind and head to New Jersey to build a campers' retreat for an outdoor-loving couple; with a screened-in porch, floating barbecue deck and cozy hanging bed, this Adirondack style tree-cabin puts glamping in the trees. + Reality TV + Instructional + + + TVPG + + + + The Zoo + Great Snakes! + More than 100 venomous snakes are taken from a private home; problems arise when two pronghorn fawns make their debut; a device is built for a Red River hog. + Reality TV + Animals + + + TVPG + + + + Tanked + Gangster Tank + The Mob Museum makes Wayde and Brett an offer they can't refuse; they want a tank with replica sunken rumrunner for their prohibition exhibit and speakeasy in downtown Las Vegas. + Reality TV + Animals + + + TVPG + + + + Pit Bulls and Parolees + Whiteout + Tia and her daughter, Tania, bond during an emotional rescue mission that takes them to a Sacramento rescue shelter, stopping en route to rescue a stray pit bull found wandering outside the gates of Wasco State Prison. + Reality TV + Animals + + + TVPG + + + + Pit Bulls and Parolees + Pushing the Limits + Roommates with extreme lifestyles want to adopt a pit bull; Tia rescues an abandoned mastiff. + Reality TV + Animals + + + TVPG + + + + Deadliest Catch + 450 Mile Storm + Sig, Johnathan and Jake attempt to run from a second arctic hurricane, but Keith refuses to heed the warnings; Stress-induced chest pains threaten the remainder of Sig's season. + Reality TV + Documentary + + + TVPG + + + + Deadliest Catch + Respect Earned + After suffering chest pains, Sig awaits news in the hospital; Wild Bill struggles to stay out of harm's way while also handling dissension on deck; Sean lays down the law with Zack. + Reality TV + Documentary + + + TVPG + + + + Deadliest Catch + Man Down + Sean is set on a collision course with another boat, two deckhands get taken down on the Wizard, and Jake almost loses a deckhand. + Reality TV + Documentary + + + TVPG + + + + Pasapalabra + Programa en el que dos concursantes intentan acumular segundos en varios desafíos de palabras, que servirán para tener más tiempo para contestar a todas las definiciones de la prueba final, llamada El Rosco. + Game Shows + Instructional + + + + El Hormiguero 3.0 + Se presentan contenidos que giran en torno al humor, las entrevistas y los experimentos de divulgación científica.Guests: Juan Ibáñez Pérez, Damián Mollá, Jorge Marrón, Luis Piedrahita, Nuria Roca, Carlos Latre, Pilar Rubio, El Monaguillo.. + Talk Shows + Performing Arts + + + + Pop up: aquí no hay quien viva + Gracias a ventanas emergentes de los personajes de la ficción, el espectador puede obtener información adicional de las series. + News Magazine + Performing Arts + + + + Hoy cocinas tú + Eva Arguiñano prepara recetas sencillas y enseña trucos útiles para la cocina, contando además con la presencia de un invitado a quien le enseña a preparar un platillo para que después lo prepare en casa. + Food + Performing Arts + + + + ¿Qué me pasa, doctor? + Informando sobre temas de actualidad referentes a la salud, se exploran las opiniones del público en las calles y se incluyen panelistas invitados que son especialistas, con el fin de aconsejar e informar a la audiencia. + Health + Talk Shows + + + + Cocina abierta de Karlos Arguiñano + Karlos Arguiñano ofrece diversión e innovación para que comer cada día no sea una tarea monótona. Los niños son los que dan más guerra a la hora de comer, por eso Arguiñano no se olvidará de ellos y propondrá platos divertidos para sus paladares. + + Karlos Arguiñano + + Food + + + + Noticias + Todas las noticias de actualidad del acontecer español e internacional. + News + + + + Deportes + Sección de noticias relacionadas con el mundo del deporte. + News + Sports + + + + El tiempo + Un espacio en el que el espectador recibe información meteorológica cercana y directa. Además, se informa acerca de todos los aspectos que afectan al medio ambiente. + Environmental + + + + Centímetros cúbicos + Expertos en motor traen entrevistas, reportajes de seguridad vial, las nuevas tecnologías y pruebas a fondo con autos excepcionales. + Automotive + + + + El Hormiguero 3.0 + Se presentan contenidos que giran en torno al humor, las entrevistas y los experimentos de divulgación científica.Guests: Juan Ibáñez Pérez, Damián Mollá, Jorge Marrón, Luis Piedrahita, Nuria Roca, Carlos Latre, Pilar Rubio, El Monaguillo.. + Talk Shows + Performing Arts + + + + Gala Starlite + Regular + + + + Equipo de investigación + Un equipo de periodistas, encabezados por Gloria Serra, conducen reportajes sobre diversos temas de interés social. + News + Variety + + + TVG + + + + El club de la comedia + Un espacio de sketches, monólogos y confesiones cargadas de humor. + News Magazine + + + + Hoteles con encanto + Un programa que muestra las particularidades que diferencian a un hotel de otro. + Travel + + + + Noticias + Todas las noticias de actualidad del acontecer español e internacional. + News + + + + Deportes + Sección de noticias relacionadas con el mundo del deporte. + News + Sports + + + + El tiempo + Un espacio en el que el espectador recibe información meteorológica cercana y directa. Además, se informa acerca de todos los aspectos que afectan al medio ambiente. + Environmental + + + + Dos años y un día + Carlos Ferrer, un famoso actor y presentador, termina en la cárcel por un delito de ofensas religiosas. Elegido para dar el pregón de Carnaval, hace una broma que le cuesta su libertad. Ahora debe adaptarse a su nueva vida en la cárcel. + + Arturo Valls + Adriana Torrebejano + Amaia Salamanca + + Comedy + + + + Password + Una pareja formada por un concursante y un invitado famoso compite contra otra pareja. El objetivo del juego es adivinar palabras secretas o. + Game Shows + Performing Arts + + + + Pasapalabra + Programa en el que dos concursantes intentan acumular segundos en varios desafíos de palabras, que servirán para tener más tiempo para contestar a todas las definiciones de la prueba final, llamada El Rosco. + Game Shows + Instructional + + + + Show Business + Se entrevista a personajes populares de la música, el cine, la televisión y la moda para conocer sus nuevos proyectos. Además, se presentan los eventos más importantes del mundo del espectáculo. + Performing Arts + + + + El Hormiguero 3.0 + Se presentan contenidos que giran en torno al humor, las entrevistas y los experimentos de divulgación científica.Guests: Juan Ibáñez Pérez, Damián Mollá, Jorge Marrón, Luis Piedrahita, Nuria Roca, Carlos Latre, Pilar Rubio, El Monaguillo.. + Talk Shows + Performing Arts + + + + ¡Dispara! + Un asalto brutal altera el romance entre un reportero (Antonio Banderas) y una estrella (Francesca Neri) de circo. + + Antonio Banderas + Francesca Neri + Walter Vidarte + + 1993 + Movies + Drama + + + 2 + + + + El chiringuito internacional + Toda la información deportiva de la semana y la actualidad con un equipo de especialistas. + Specials + Sports + + + + El chiringuito internacional + Toda la información deportiva de la semana y la actualidad con un equipo de especialistas. + Specials + Sports + + + + Zapeando + Se abordan temas de interés en las redes sociales, comentarios, divertidos montajes, y por supuesto, videos de zapping. + Comedy + Performing Arts + + + + Noticias + Todas las noticias de actualidad del acontecer español e internacional. + News + + + + Espejo público + Reportajes sobre temas variados, noticias de interés público, las mejores entrevistas políticas, investigaciones especiales de toda índole que analiza las problemáticas de forma profunda y desde un punto de vista objetivo. + News Magazine + + + + Cocina abierta de Karlos Arguiñano + Karlos Arguiñano ofrece diversión e innovación para que comer cada día no sea una tarea monótona. Los niños son los que dan más guerra a la hora de comer, por eso Arguiñano no se olvidará de ellos y propondrá platos divertidos para sus paladares. + + Karlos Arguiñano + + Food + + + + El chiringuito internacional + Toda la información deportiva de la semana y la actualidad con un equipo de especialistas. + Specials + Sports + + + + Noticias + Todas las noticias de actualidad del acontecer español e internacional. + News + + + + Deportes + Sección de noticias relacionadas con el mundo del deporte. + News + Sports + + + + Espejo público + Reportajes sobre temas variados, noticias de interés público, las mejores entrevistas políticas, investigaciones especiales de toda índole que analiza las problemáticas de forma profunda y desde un punto de vista objetivo. + News Magazine + + + + Tu Tiempo con Roberto Brasero + Una nueva manera de ver la información meteorológica. Previsiones del tiempo de una forma sencilla y amena. + Environmental + + + + Cocina abierta de Karlos Arguiñano + Karlos Arguiñano ofrece diversión e innovación para que comer cada día no sea una tarea monótona. Los niños son los que dan más guerra a la hora de comer, por eso Arguiñano no se olvidará de ellos y propondrá platos divertidos para sus paladares. + + Karlos Arguiñano + + Food + + + + Pasapalabra + Programa en el que dos concursantes intentan acumular segundos en varios desafíos de palabras, que servirán para tener más tiempo para contestar a todas las definiciones de la prueba final, llamada El Rosco. + Game Shows + Instructional + + + + Noticias + Todas las noticias de actualidad del acontecer español e internacional. + News + + + + Deportes + Sección de noticias relacionadas con el mundo del deporte. + News + Sports + + + + El tiempo + Un espacio en el que el espectador recibe información meteorológica cercana y directa. Además, se informa acerca de todos los aspectos que afectan al medio ambiente. + Environmental + + + + Y ahora Sonsoles + Se aborda la crónica social y toda la actualidad del día con un grupo de colaboradores de diversos ámbitos. El espacio se divide en diferentes secciones y cuenta con un equipo de reporteros que salen a la calle. + News Magazine + + + + Amar es para siempre + Elena intenta que Chimo vuelva a. + + Manu Baqueiro + Itziar Miranda + José Antonio Sayagués + + Drama + + + + La ruleta de la suerte + Los concursantes deben adivinar oraciones llenando los vacíos con letras adivinadas que ellos enuncian, el que adivine una letra perteneciente a la frase gana un premio monetario y el premio se incrementa si adivina la frase completa. + Game Shows + Performing Arts + + + + Pasapalabra + Programa en el que dos concursantes intentan acumular segundos en varios desafíos de palabras, que servirán para tener más tiempo para contestar a todas las definiciones de la prueba final, llamada El Rosco. + Game Shows + Instructional + + + + El Hormiguero 3.0 + Se presentan contenidos que giran en torno al humor, las entrevistas y los experimentos de divulgación científica.Guests: Juan Ibáñez Pérez, Damián Mollá, Jorge Marrón, Luis Piedrahita, Nuria Roca, Carlos Latre, Pilar Rubio, El Monaguillo.. + Talk Shows + Performing Arts + + + + Salvados + Entrevistas sobre temas de actualidad con el toque fino de ironía de Jordi Évole y su equipo quienes aportan un tono crítico a los temas más polémicos. + Documentary + + + + Dos años y un día + Carlos Ferrer, un famoso actor y presentador, termina en la cárcel por un delito de ofensas religiosas. Elegido para dar el pregón de Carnaval, hace una broma que le cuesta su libertad. Ahora debe adaptarse a su nueva vida en la cárcel. + + Arturo Valls + Adriana Torrebejano + Amaia Salamanca + + Comedy + + + + El chiringuito internacional + Toda la información deportiva de la semana y la actualidad con un equipo de especialistas. + Specials + Sports + + + + El chiringuito internacional + Toda la información deportiva de la semana y la actualidad con un equipo de especialistas. + Specials + Sports + + + + Zapeando + Se abordan temas de interés en las redes sociales, comentarios, divertidos montajes, y por supuesto, videos de zapping. + Comedy + Performing Arts + + + + Noticias de la mañana + Informativo del día que resume la actualidad de España y el mundo. + News + + + + Espejo público + Reportajes sobre temas variados, noticias de interés público, las mejores entrevistas políticas, investigaciones especiales de toda índole que analiza las problemáticas de forma profunda y desde un punto de vista objetivo. + News Magazine + + + + Cocina abierta de Karlos Arguiñano + Karlos Arguiñano ofrece diversión e innovación para que comer cada día no sea una tarea monótona. Los niños son los que dan más guerra a la hora de comer, por eso Arguiñano no se olvidará de ellos y propondrá platos divertidos para sus paladares. + + Karlos Arguiñano + + Food + + + + El chiringuito internacional + Toda la información deportiva de la semana y la actualidad con un equipo de especialistas. + Specials + Sports + + + + Noticias + Todas las noticias de actualidad del acontecer español e internacional. + News + + + + Espejo público + Reportajes sobre temas variados, noticias de interés público, las mejores entrevistas políticas, investigaciones especiales de toda índole que analiza las problemáticas de forma profunda y desde un punto de vista objetivo. + News Magazine + + + + Espejo público + Reportajes sobre temas variados, noticias de interés público, las mejores entrevistas políticas, investigaciones especiales de toda índole que analiza las problemáticas de forma profunda y desde un punto de vista objetivo. + News Magazine + + + + Tu Tiempo con Roberto Brasero + Una nueva manera de ver la información meteorológica. Previsiones del tiempo de una forma sencilla y amena. + Environmental + + + + Cocina abierta de Karlos Arguiñano + Karlos Arguiñano ofrece diversión e innovación para que comer cada día no sea una tarea monótona. Los niños son los que dan más guerra a la hora de comer, por eso Arguiñano no se olvidará de ellos y propondrá platos divertidos para sus paladares. + + Karlos Arguiñano + + Food + + + + Pasapalabra + Programa en el que dos concursantes intentan acumular segundos en varios desafíos de palabras, que servirán para tener más tiempo para contestar a todas las definiciones de la prueba final, llamada El Rosco. + Game Shows + Instructional + + + + Noticias + Todas las noticias de actualidad del acontecer español e internacional. + News + + + + Y ahora Sonsoles + Se aborda la crónica social y toda la actualidad del día con un grupo de colaboradores de diversos ámbitos. El espacio se divide en diferentes secciones y cuenta con un equipo de reporteros que salen a la calle. + News Magazine + + + + Amar es para siempre + La vida en España en los años 60, década en la que el país sufrió cambios significativos y tuvo un gran crecimiento. + + Manu Baqueiro + Itziar Miranda + José Antonio Sayagués + + Drama + + + + La ruleta de la suerte + Los concursantes deben adivinar oraciones llenando los vacíos con letras adivinadas que ellos enuncian, el que adivine una letra perteneciente a la frase gana un premio monetario y el premio se incrementa si adivina la frase completa. + Game Shows + Performing Arts + + + + Pasapalabra + Programa en el que dos concursantes intentan acumular segundos en varios desafíos de palabras, que servirán para tener más tiempo para contestar a todas las definiciones de la prueba final, llamada El Rosco. + Game Shows + Instructional + + + + El Hormiguero 3.0 + Se presentan contenidos que giran en torno al humor, las entrevistas y los experimentos de divulgación científica.Guests: Juan Ibáñez Pérez, Damián Mollá, Jorge Marrón, Luis Piedrahita, Nuria Roca, Carlos Latre, Pilar Rubio, El Monaguillo.. + Talk Shows + Performing Arts + + + + Equipo de investigación + Un equipo de periodistas, encabezados por Gloria Serra, conducen reportajes sobre diversos temas de interés social. + News + Variety + + + TVG + + + + El chiringuito internacional + Toda la información deportiva de la semana y la actualidad con un equipo de especialistas. + Specials + Sports + + + + Zapeando + Se abordan temas de interés en las redes sociales, comentarios, divertidos montajes, y por supuesto, videos de zapping. + Comedy + Performing Arts + + + + Noticias + Todas las noticias de actualidad del acontecer español e internacional. + News + + + + Espejo público + Reportajes sobre temas variados, noticias de interés público, las mejores entrevistas políticas, investigaciones especiales de toda índole que analiza las problemáticas de forma profunda y desde un punto de vista objetivo. + News Magazine + + + + Cocina abierta de Karlos Arguiñano + Karlos Arguiñano ofrece diversión e innovación para que comer cada día no sea una tarea monótona. Los niños son los que dan más guerra a la hora de comer, por eso Arguiñano no se olvidará de ellos y propondrá platos divertidos para sus paladares. + + Karlos Arguiñano + + Food + + + + El chiringuito internacional + Toda la información deportiva de la semana y la actualidad con un equipo de especialistas. + Specials + Sports + + + + Noticias + Todas las noticias de actualidad del acontecer español e internacional. + News + + + + Espejo público + Reportajes sobre temas variados, noticias de interés público, las mejores entrevistas políticas, investigaciones especiales de toda índole que analiza las problemáticas de forma profunda y desde un punto de vista objetivo. + News Magazine + + + + Espejo público + Reportajes sobre temas variados, noticias de interés público, las mejores entrevistas políticas, investigaciones especiales de toda índole que analiza las problemáticas de forma profunda y desde un punto de vista objetivo. + News Magazine + + + + Tu Tiempo con Roberto Brasero + Una nueva manera de ver la información meteorológica. Previsiones del tiempo de una forma sencilla y amena. + Environmental + + + + Cocina abierta de Karlos Arguiñano + Karlos Arguiñano ofrece diversión e innovación para que comer cada día no sea una tarea monótona. Los niños son los que dan más guerra a la hora de comer, por eso Arguiñano no se olvidará de ellos y propondrá platos divertidos para sus paladares. + + Karlos Arguiñano + + Food + + + + Pasapalabra + Programa en el que dos concursantes intentan acumular segundos en varios desafíos de palabras, que servirán para tener más tiempo para contestar a todas las definiciones de la prueba final, llamada El Rosco. + Game Shows + Instructional + + + + Noticias + Todas las noticias de actualidad del acontecer español e internacional. + News + + + + Y ahora Sonsoles + Se aborda la crónica social y toda la actualidad del día con un grupo de colaboradores de diversos ámbitos. El espacio se divide en diferentes secciones y cuenta con un equipo de reporteros que salen a la calle. + News Magazine + + + + Amar es para siempre + La vida en España en los años 60, década en la que el país sufrió cambios significativos y tuvo un gran crecimiento. + + Manu Baqueiro + Itziar Miranda + José Antonio Sayagués + + Drama + + + + La ruleta de la suerte + Los concursantes deben adivinar oraciones llenando los vacíos con letras adivinadas que ellos enuncian, el que adivine una letra perteneciente a la frase gana un premio monetario y el premio se incrementa si adivina la frase completa. + Game Shows + Performing Arts + + + + One Day at a Time + Julie Shows Up + Julie returns home. + + Bonnie Franklin + Pat Harrington + Glenn Scarpelli + + Sitcom + + + TVPG + + + + One Day at a Time + Julie Shows Up + Ann attempts to save Julie and Max's marriage. + + Bonnie Franklin + Pat Harrington + Glenn Scarpelli + + Sitcom + + + TVPG + + + + The Jeffersons + The Grand Opening + George's boasting gets him in trouble with the underworld. + + Sherman Hemsley + Isabel Sanford + Damon Evans + + Sitcom + + + TVPG + + + + The Jeffersons + The Grand Opening + George's boasting gets him in trouble with the underworld. + + Sherman Hemsley + Isabel Sanford + Damon Evans + + Sitcom + + + TVPG + + + + Archie Bunker's Place + Stephanie's Science Project + Archie helps on Stephanie's science project. + + Carroll O'Connor + Martin Balsam + Danielle Brisebois + + Sitcom + + + TVPG + + + + Maude + Carol's Promotion + Carol discovers she's got to show her boss more than just proficiency if she wants to get a promotion. + + Bea Arthur + Bill Macy + Adrienne Barbeau + + Sitcom + + + TVPG + + + + Maude + Maude's Ex-Convict + Maude panics when she finds out why the ex-convict she hired went to prison. + + Bea Arthur + Bill Macy + Conrad Bain + + Sitcom + + + TVPG + + + + The Benny Hill Show + Hill's Angels dance; visit to Spain. + + Benny Hill + Henry McGee + Jackie Wright + + Comedy + + + + The Benny Hill Show + Vaudeville performer; movie mogul. + + Benny Hill + Henry McGee + Jackie Wright + + Comedy + + + + Alice + Mel Spins His Wheels + Mel has always disliked the idea of providing handicap access, until he ends up in a wheelchair himself with two sprained ankles. + + Linda Lavin + Vic Tayback + Beth Howland + + Sitcom + + + TVPG + + + + Barney Miller + Bugs + Barney and the detectives discover that someone has planted electronic bugs throughout the squad room. + + Hal Linden + Max Gail + Ron Glass + + Sitcom + + + TVPG + + + + Barney Miller + Goodbye, Mr. Fish + Fish is nowhere to be found on his last day before he retires; Barney must deal with an out of control vigilante group. + + Hal Linden + Max Gail + Ron Glass + + Sitcom + + + TVPG + + + + Barney Miller + Goodbye, Mr. Fish + Sgt. Phil Fish finally shows up for work after disappearing, but refuses to acknowledge his mandatory retirement. + + Hal Linden + Max Gail + Ron Glass + + Sitcom + + + TVPG + + + + Soap + Dying Jessica forgives Chester; Carol lies; Dutch is torn. + + Robert Mandan + Katherine Helmond + Diana Canova + + Soaps + Sitcom + + + TVPG + + + + Soap + Dying Jessica forgives Chester; Leslie has a gun; Mary goes into labor; Dutch is torn. + + Robert Mandan + Katherine Helmond + Diana Canova + + Soaps + Sitcom + + + TVPG + + + + Soap + Jessica comes out of her coma; Eunice wins Dutch from Corinne; Burt and Danny receive blackmail photos; Mary is not sure her baby isn't an alien. + + Robert Mandan + Katherine Helmond + Diana Canova + + Soaps + Sitcom + + + TVPG + + + + Soap + Burt gives in to Tibbs' blackmail; Danny receives some bad news from Polly; Corinne announces she is leaving for California; Wendy is kidnapped. + + Robert Mandan + Katherine Helmond + Diana Canova + + Soaps + Sitcom + + + TVPG + + + + Father Knows Best + Cupid Knows Best + Frank asks Margaret's help to romance a girl. + + Robert Young + Jane Wyatt + Elinor Donahue + + Sitcom + + + TVG + + + + Father Knows Best + Jim's Big Surprise + The Andersons are initially disappointed with Jim's surprise. + + Robert Young + Jane Wyatt + Elinor Donahue + + Sitcom + + + TVG + + + + Father Knows Best + Cupid Knows Best + Frank asks Margaret's help to romance a girl. + + Robert Young + Jane Wyatt + Elinor Donahue + + Sitcom + + + TVG + + + + Father Knows Best + Jim's Big Surprise + The Andersons are initially disappointed with Jim's surprise. + + Robert Young + Jane Wyatt + Elinor Donahue + + Sitcom + + + TVG + + + + The Burns and Allen Show + A Weekend on Long Island + Gracie excludes George from her surprise party. + + Bea Benaderet + Larry Keating + + Sitcom + + + TVG + + + + The Burns and Allen Show + The Newlyweds + Chaperoning proves exhausting for Gracie. + + Bea Benaderet + Larry Keating + + Sitcom + + + TVG + + + + The Jack Benny Program + The Ed Sullivan Show + Ed Sullivan and Jack play opposing attorneys in a murder trial. + + Jack Benny + Eddie Anderson + Don Wilson + + Comedy + + + TVG + + + + The Jack Benny Program + Don Breaks His Leg + Don pretends to have a broken leg. + + Jack Benny + Eddie Anderson + Don Wilson + + Comedy + + + TVG + + + + Hazel + High Finance Hits a New Low + When the Baxters' friends find their financial state threatened, George comes to the rescue. + + Shirley Booth + Don DeFore + Whitney Blake + + Sitcom + + + TVG + + + + Hazel + Just Me, Harold and the Unisphere + Hazel purposely loses a contest to a widow with a young son. + + Shirley Booth + Don DeFore + Whitney Blake + + Sitcom + + + TVG + + + + Pet Vet Dream Team + These Old Bones + Dr. Andrew Marchevsky treats a young boxer who has arthritis; Tim Faulkner tries to help a family that has a mysterious pest problem. + Reality TV + Animals + + + TVG + + + + The Open Road With Dr. Chris + Defying Gravity + Unique birds on Lord Howe Island; Dr. Chris tackles gravity-defying challenges, including climbing a coconut tree. + Reality TV + Travel + + + TVG + + + + I Dream of Jeannie + The Mad Home Wrecker + An unorthodox artist decorates Tony and Jeannie's house in an unusual way as an engagement present. + + Larry Hagman + Barbara Eden + Bill Daily + + Sitcom + + + TVG + + + + I Dream of Jeannie + Uncles a Go-Go + Jeannie's English uncles have to approve of her future husband. + + Larry Hagman + Barbara Eden + Bill Daily + + Sitcom + + + TVG + + + + Bewitched + Mirror, Mirror on the Wall + Endora's spell causes Darrin to become extremely vain. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Samantha's French Pastry + Uncle Arthur tries to make some French pastry, but gets the real Napoleon instead. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + That Girl + Sixty-Five on the Aisle + Ann invites her parents to her Broadway debut. + + Marlo Thomas + Lew Parker + + Sitcom + + + TVPG + + + + That Girl + Call of the Wild + Ann tries to liven up her image. + + Marlo Thomas + Ted Bessell + Lew Parker + + Sitcom + + + TVPG + + + + Father Knows Best + Cupid Knows Best + Frank asks Margaret's help to romance a girl. + + Robert Young + Jane Wyatt + Elinor Donahue + + Sitcom + + + TVG + + + + Father Knows Best + Jim's Big Surprise + The Andersons are initially disappointed with Jim's surprise. + + Robert Young + Jane Wyatt + Elinor Donahue + + Sitcom + + + TVG + + + + One Day at a Time + Julie Shows Up + Julie returns home. + + Bonnie Franklin + Pat Harrington + Glenn Scarpelli + + Sitcom + + + TVPG + + + + One Day at a Time + Julie Shows Up + Ann attempts to save Julie and Max's marriage. + + Bonnie Franklin + Pat Harrington + Glenn Scarpelli + + Sitcom + + + TVPG + + + + Benson + Pete, the Hero + Benson's insurance company is uncooperative after Pete uses his new car to stop a robbery. + + Robert Guillaume + James Noble + Inga Swenson + + Sitcom + + + TVG + + + + Benson + In the Red + Benson's troubles mount when he's audited by the IRS and his records are accidentally destroyed. + + Robert Guillaume + James Noble + Inga Swenson + + Sitcom + + + TVG + + + + Benson + Teed Off + Tempers flare when the governor and Pete are pitted against Clayton and Benson in a golf tournament. + + Robert Guillaume + James Noble + Inga Swenson + + Sitcom + + + TVG + + + + Benson + The Party's Over + The governor learns about dirty politics when his party won't support his renomination. + + Robert Guillaume + James Noble + Inga Swenson + + Sitcom + + + TVG + + + + Soap + Dying Jessica forgives Chester; Carol lies; Dutch is torn. + + Robert Mandan + Katherine Helmond + Diana Canova + + Soaps + Sitcom + + + TVPG + + + + Soap + Dying Jessica forgives Chester; Leslie has a gun; Mary goes into labor; Dutch is torn. + + Robert Mandan + Katherine Helmond + Diana Canova + + Soaps + Sitcom + + + TVPG + + + + Soap + Jessica comes out of her coma; Eunice wins Dutch from Corinne; Burt and Danny receive blackmail photos; Mary is not sure her baby isn't an alien. + + Robert Mandan + Katherine Helmond + Diana Canova + + Soaps + Sitcom + + + TVPG + + + + Soap + Burt gives in to Tibbs' blackmail; Danny receives some bad news from Polly; Corinne announces she is leaving for California; Wendy is kidnapped. + + Robert Mandan + Katherine Helmond + Diana Canova + + Soaps + Sitcom + + + TVPG + + + + Designing Women + Driving My Mama Back Home + Julia accompanies Mary Jo when she takes her mother (Jackie Joseph) on an overnight bus trip. + + Dixie Carter + Jan Hooks + Annie Potts + + Sitcom + + + TVPG + + + + Designing Women + Payne Comes Home + Julia's son Payne leaves his wife and plans to return home permanently. + + Julia Duffy + Dixie Carter + Jan Hooks + + Sitcom + + + TVPG + + + + Designing Women + Carlene's Apartment + Carlene is oblivious to the problems when she invites her colleagues to see her first apartment. + + Julia Duffy + Dixie Carter + Jan Hooks + + Sitcom + + + TVPG + + + + Designing Women + Mamed + Julia takes over for a tough old Broadway actress to produce and star in the local theater's production of. + + Julia Duffy + Dixie Carter + Jan Hooks + + Sitcom + + + TVPG + + + + Family Ties + I Know Jennifer's Boyfriend + Peer pressure causes Jennifer to give up a male pal, but her mom helps them reunite. + + Michael J. Fox + Meredith Baxter + Michael Gross + + Sitcom + + + TVG + + + + Family Ties + Summer of '82 + A college coed seduces teenage Alex when he meets her delivering groceries. + + Michael J. Fox + Meredith Baxter + Michael Gross + + Sitcom + + + TVPG + + + + Family Ties + I Never Killed for My Father + Steven and his father realize they may be able to iron out their long-lasting differences. + + Michael J. Fox + Meredith Baxter + Michael Gross + + Sitcom + + + TVPG + + + + Family Ties + Give Uncle Arthur a Kiss + Mallory's frightened when a close family friend makes a pass at her. + + Michael J. Fox + Meredith Baxter + Michael Gross + + Sitcom + + + TVPG + + + + Wings + Love Means Never Having to Say Geronimo + Brian makes weekend wedding plans with his adventurous new girlfriend (Lisa Darr). + + Tim Daly + Steven Weber + Crystal Bernard + + Sitcom + + + TVPG + + + + Wings + All in the Family + Brian dates an attractive traveler (Marie Marshall) whose identity surprises him; Helen steals Joe's address book. + + Tim Daly + Steven Weber + Crystal Bernard + + Sitcom + + + TVPG + + + + Wings + Mother Wore Stripes + Joe and Brian have different reactions to the unexpected reappearance of their ex-convict mother (Barbara Babcock). + + Tim Daly + Steven Weber + Crystal Bernard + + Sitcom + + + TVPG + + + + Wings + Murder, She Roast + Brian gets nervous when he sees Fay's double -- the. + + Tim Daly + Steven Weber + Crystal Bernard + + Sitcom + + + TVPG + + + + Becker + Cyrano De-Beckerac + Learning that a patient is dating Reggie, John advises him on proper courting; Linda becomes a mentor to a bratty child. + + Ted Danson + Terry Farrell + Hattie Winston + + Sitcom + + + TVPG + + + + Becker + Linda Quits + Becker and Margaret understand Linda's value after she quits; the presence of a homeless man sparks conversation at the diner. + + Ted Danson + Terry Farrell + Hattie Winston + + Sitcom + + + TVPG + + + + Becker + My Boyfriend's Back + Reggie starts dating a guy she had a crush on during high school; Becker is upset at a colleague's success. + + Ted Danson + Terry Farrell + Hattie Winston + + Sitcom + + + TVPG + + + + Becker + Shovel Off to Buffalo + Bad weather grounds Becker and Reggie's flight in Buffalo, N.Y., leaving the cantankerous duo with nothing to do but complain. + + Ted Danson + Terry Farrell + Hattie Winston + + Sitcom + + + TVPG + + + + Designing Women + Driving My Mama Back Home + Julia accompanies Mary Jo when she takes her mother (Jackie Joseph) on an overnight bus trip. + + Dixie Carter + Jan Hooks + Annie Potts + + Sitcom + + + TVPG + + + + Designing Women + Payne Comes Home + Julia's son Payne leaves his wife and plans to return home permanently. + + Julia Duffy + Dixie Carter + Jan Hooks + + Sitcom + + + TVPG + + + + Designing Women + Carlene's Apartment + Carlene is oblivious to the problems when she invites her colleagues to see her first apartment. + + Julia Duffy + Dixie Carter + Jan Hooks + + Sitcom + + + TVPG + + + + Designing Women + Mamed + Julia takes over for a tough old Broadway actress to produce and star in the local theater's production of. + + Julia Duffy + Dixie Carter + Jan Hooks + + Sitcom + + + TVPG + + + + The Burns and Allen Show + Ronnie Makes a Record + Gracie tries to help Ronnie who wants to get into the record business. + + Bea Benaderet + Larry Keating + + Sitcom + + + TVG + + + + The Jack Benny Program + Julie London Show + Julie London and Jack sing to each other.Guests: Julie London, Toni Marcus.. + + Jack Benny + Eddie Anderson + Don Wilson + + Comedy + + + TVG + + + + I Dream of Jeannie + Always on Sunday + Tony tells Jeannie that it is too bad every day cannot be Sunday. + + Larry Hagman + Barbara Eden + Bill Daily + + Sitcom + + + TVG + + + + I Dream of Jeannie + My Master, the Rich Tycoon + Mr Higgins from the IRS suspects Tony is the head of a smuggling operation. + + Larry Hagman + Barbara Eden + Bill Daily + + Sitcom + + + TVG + + + + Bewitched + Solid Gold Mother-in-Law + Darrin invites his client to dinner at his house to meet Endora. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + My What Big Ears You Have + Darrin has a surprise for Samantha; Endora makes Darrin's ears grow every time he lies. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + Bachelor Father + The Richest Cat + Bentley finds a cat worth $1 million. + + John Forsythe + Noreen Corcoran + Sammee Tong + + Sitcom + + + + Bachelor Father + What Men Don't Know + Bentley gives Kelly advice on flattery. + + John Forsythe + Noreen Corcoran + Sammee Tong + + Sitcom + + + + Father Knows Best + Bud, the Caretaker + Bud is given the responsibility of taking care of a neighbor's car. + + Robert Young + Jane Wyatt + Elinor Donahue + + Sitcom + + + TVG + + + + Father Knows Best + Betty, the Pioneer Woman + Betty decides to re-enact the town's founding. + + Robert Young + Jane Wyatt + Elinor Donahue + + Sitcom + + + TVG + + + + Dennis the Menace + The Lost Dog + Wilson thinks there may be a reward for a stray. + + Jay North + Herbert Anderson + Gloria Henry + + Sitcom + + + TVG + + + + Dennis the Menace + Tuxedo Trouble + Dennis washes Wilson's tuxedo. + + Jay North + Herbert Anderson + Gloria Henry + + Sitcom + + + TVG + + + + Hazel + Once an Actor + Barbara's elderly uncle, an actor, comes to stay for a month. + + Shirley Booth + Ray Fulmer + Lynn Borden + + Sitcom + + + TVG + + + + Hazel + 285 Dollars by Saturday + Hazel aims to buy an organ for children of a missionary school. + + Shirley Booth + Ray Fulmer + Lynn Borden + + Sitcom + + + TVG + + + + McHale's Navy + The Balloon Goes Up + Binghamton discovers he is personally responsible for a $140,000 shortage in the base inventory. + + Ernest Borgnine + Joe Flynn + Tim Conway + + Sitcom + + + TVPG + + + + McHale's Navy + Who'll Buy My Sarongs? + McHale's men compete for the distinction of making the most fetching sarongs for a bazaar. With Ernest Borgnine, Joe Flynn and Tim Conway. + + Ernest Borgnine + Joe Flynn + Tim Conway + + Sitcom + + + TVPG + + + + I Dream of Jeannie + Always on Sunday + Tony tells Jeannie that it is too bad every day cannot be Sunday. + + Larry Hagman + Barbara Eden + Bill Daily + + Sitcom + + + TVG + + + + I Dream of Jeannie + My Master, the Rich Tycoon + Mr Higgins from the IRS suspects Tony is the head of a smuggling operation. + + Larry Hagman + Barbara Eden + Bill Daily + + Sitcom + + + TVG + + + + Bewitched + Solid Gold Mother-in-Law + Darrin invites his client to dinner at his house to meet Endora. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + My What Big Ears You Have + Darrin has a surprise for Samantha; Endora makes Darrin's ears grow every time he lies. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + That Girl + Mission Improbable + Ann's cover is blown. + + Marlo Thomas + Ted Bessell + + Sitcom + + + TVPG + + + + That Girl + My Part Belongs to Daddy + Lou wants Ann to direct the Brewster Variety Show. + + Marlo Thomas + Ted Bessell + Lew Parker + + Sitcom + + + TVPG + + + + Welcome Back, Kotter + Radio Free Freddie + Washington's success as a disc jockey arouses jealousy among the Sweathogs. + + Gabriel Kaplan + Marcia Strassman + John Sylvester White + + Sitcom + + + TVPG + + + + Welcome Back, Kotter + I'm Having Their Baby + While Gabe is out of town for a teachers convention, the Sweathogs try to cheer up a pregnant Julie. + + Gabriel Kaplan + Marcia Strassman + John Sylvester White + + Sitcom + + + TVPG + + + + Family Ties + The Spirit of Columbus + Alex tries to use Nick's artistic abilities in a profitable venture. + + Michael J. Fox + Meredith Baxter + Michael Gross + + Sitcom + + + TVG + + + + Family Ties + The Blues, Brother + Alex attempts to convince retired blues singer Eddie Dupre (Brownie McGhee) to revive his career. + + Michael J. Fox + Meredith Baxter + Michael Gross + + Sitcom + + + TVPG + + + + One Day at a Time + Up in Smoke + Sam's return to smoking after a six-year abstinence only results in damage to his marriage and health. + + Bonnie Franklin + Howard Hesseman + Pat Harrington + + Sitcom + + + TVPG + + + + One Day at a Time + The Meaning of Life + A brush with death has an impact on Schneider's freewheeling lifestyle. + + Bonnie Franklin + Howard Hesseman + Pat Harrington + + Sitcom + + + TVPG + + + + Three's Company + Days of Beer and Weeds + Jack discovers what appears to be marijuana plants in Roper's garden. + + John Ritter + Joyce DeWitt + Suzanne Somers + + Sitcom + + + TVPG + + + + Three's Company + Chrissy Come Home + Chrissy's minister father pays an early visit. + + John Ritter + Joyce DeWitt + Suzanne Somers + + Sitcom + + + TVPG + + + + The Jeffersons + Not So Dearly Beloved + George has to give the eulogy for one of his employees, a man who was universally detested. + + Sherman Hemsley + Isabel Sanford + Roxie Roker + + Sitcom + + + TVPG + + + + The Jeffersons + Florence's New Job + George goes to great lengths to get a hotel's cleaning business. + + Sherman Hemsley + Isabel Sanford + Marla Gibbs + + Sitcom + + + TVPG + + + + Barney Miller + Chinatown + Lieutenant Scanlon falls for a wealthy mugging victim; a restaurateur breaks into his own restaurant; The squad investigates Chinatown gang wars. + + Hal Linden + Max Gail + Ron Glass + + Sitcom + + + TVPG + + + + Barney Miller + Chinatown + Harassment charges are pressed against Lieutenant Scanlon; Harris and Dietrich interrogate a key witness to a gang murder. + + Hal Linden + Max Gail + Ron Glass + + Sitcom + + + TVPG + + + + Johnny Carson + Actor James Garner; Jeff Cesario; actress Park Overall.Guests: James Garner, Park Overall.. + Talk Shows + Comedy + + + + Designing Women + The Candidate + Julia's on-camera lashing of a local leader (Jason Bernard) launches her political career. + + Delta Burke + Dixie Carter + Jean Smart + + Sitcom + + + TVPG + + + + Designing Women + E.P. Phone Home + Charlene wins tickets to a VIP tour of Graceland, so the ladies and Anthony head to Memphis, Tenn. + + Delta Burke + Dixie Carter + Jean Smart + + Sitcom + + + TVPG + + + + Becker + The Roast That Ruined Them + Becker throws a dinner party so his girlfriend (Frances Fisher) can spend time with the gang. + + Ted Danson + Terry Farrell + Hattie Winston + + Sitcom + + + TVPG + + + + Becker + For Whom the Toll Calls + Becker refuses to pay for a long-distance phone call; Bob (Saverio Guerra) invests in inspirational tapes on success. + + Ted Danson + Terry Farrell + Hattie Winston + + Sitcom + + + TVPG + + + + Wings + Legacy + Brian returns to Nantucket when a mysterious trunk is discovered to have been left by the brothers' late father. + + Tim Daly + Steven Weber + Crystal Bernard + + Sitcom + + + TVPG + + + + Wings + Around the World in Eighty Years + Helen receives conflicting advice from the brothers on what to wear before she goes for a symphony audition. + + Tim Daly + Steven Weber + Crystal Bernard + + Sitcom + + + TVPG + + + + Alice + The Odd Couple + Circumstances force Flo and Alice to temporarily become roommates. + + Linda Lavin + Polly Holliday + Vic Tayback + + Sitcom + + + TVPG + + + + Alice + A Night to Remember + Alice and Flo play cupid for Vera when she becomes depressed that she is alone as her birthday approaches. + + Linda Lavin + Polly Holliday + Vic Tayback + + Sitcom + + + TVPG + + + + Benson + Secret Love + Clayton's relationship with a Russian dancer may prevent him from being appointed budget director. + + Robert Guillaume + James Noble + Inga Swenson + + Sitcom + + + TVG + + + + Benson + Summer of Discontent + Benson's happy-go-lucky nephew arrives to spend the summer with his uncle. + + Robert Guillaume + James Noble + Inga Swenson + + Sitcom + + + TVG + + + + Archie Bunker's Place + Love Is Hell + Stephanie's infatuated with a boy, who just uses her to get closer to an older woman -- Billie. + + Carroll O'Connor + Danielle Brisebois + Allan Melvin + + Sitcom + + + TVPG + + + + Archie Bunker's Place + The Second Time Around + Archie believes he's ready for romance again. + + Carroll O'Connor + Danielle Brisebois + Allan Melvin + + Sitcom + + + TVPG + + + + The Burns and Allen Show + Ronnie's Royalty Check + Gracie worries about Ronnie's ability to hold onto his money. + + Bea Benaderet + Larry Keating + + Sitcom + + + TVG + + + + The Jack Benny Program + Jack Is a Violin Teacher + Jack wonders what it would have been like if he taught violin back in Waukegan. + + Jack Benny + Eddie Anderson + Don Wilson + + Comedy + + + TVG + + + + I Dream of Jeannie + My Master, the Rainmaker + Jeannie makes Dr. Bellows think Tony can control the weather. + + Larry Hagman + Barbara Eden + Bill Daily + + Sitcom + + + TVG + + + + I Dream of Jeannie + My Wild-Eyed Master + Tony strains his eyes while studying for a sub-orbital flight. Dr. Bellows orders him to take an eye test; Jeannie helps. + + Larry Hagman + Barbara Eden + Bill Daily + + Sitcom + + + TVG + + + + Bewitched + I Get Your Nannie, You Get My Goat + After his servant is stolen, Lord Montdrako puts a spell on Darrin. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Samantha's da Vinci Dilemma + Aunt Clara summons Leonardo da Vinci to paint the Stephens' home. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + Bachelor Father + Bentley and the PTA + Bentley must choose between attending his niece's PTA meeting and wooing a famous Italian movie star. + + John Forsythe + Noreen Corcoran + Sammee Tong + + Sitcom + + + + Bachelor Father + Bentley vs. the Girl Scouts + Bentley (John Forsythe) dates Kelly's (Noreen Corcoran) Girl Scout troop leader (guest star Diana Brewster), but her fiance complicates matters. + + John Forsythe + Noreen Corcoran + Sammee Tong + + Sitcom + + + + Father Knows Best + Fair Exchange + An Indian exchange student (Rita Moreno) visits. + + Robert Young + Jane Wyatt + Elinor Donahue + + Sitcom + + + TVG + + + + Father Knows Best + Margaret Wins a Car + Margaret wins a car in an orphanage's raffle. + + Robert Young + Jane Wyatt + Elinor Donahue + + Sitcom + + + TVG + + + + Dennis the Menace + Hawaiian Love Song + Chaos reigns when there's a mix-up in plans for a Hawaiian vacation. + + Jay North + Herbert Anderson + Gloria Henry + + Sitcom + + + TVG + + + + Dennis the Menace + The Lucky Rabbit's Foot + Mr. Wilson buys a rabbit's foot from Dennis, but it brings him everything but luck. + + Jay North + Herbert Anderson + Gloria Henry + + Sitcom + + + TVG + + + + Hazel + Boom or Bust! + Steve fears he'll fall into debt when a loan proves too easy. + + Shirley Booth + Ray Fulmer + Lynn Borden + + Sitcom + + + TVG + + + + Hazel + Harold's Gift Horses + A spinster and a bachelor try to buy Harold's affection. + + Shirley Booth + Ray Fulmer + Lynn Borden + + Sitcom + + + TVG + + + + McHale's Navy + Evil-Eye Parker + Binghamton (Joe Flynn) is hypnotized so that the men can stage a show for the benefit of a nearby orphanage. With Ernest Borgnine and Tim Conway. + + Ernest Borgnine + Joe Flynn + Tim Conway + + Sitcom + + + TVPG + + + + McHale's Navy + The Great Impersonation + Parker (Tim Conway) embarks on a dangerous decoy mission disguised as a British general. With Ernest Borgnine and Joe Flynn. + + Ernest Borgnine + Joe Flynn + Tim Conway + + Sitcom + + + TVPG + + + + I Dream of Jeannie + My Master, the Rainmaker + Jeannie makes Dr. Bellows think Tony can control the weather. + + Larry Hagman + Barbara Eden + Bill Daily + + Sitcom + + + TVG + + + + I Dream of Jeannie + My Wild-Eyed Master + Tony strains his eyes while studying for a sub-orbital flight. Dr. Bellows orders him to take an eye test; Jeannie helps. + + Larry Hagman + Barbara Eden + Bill Daily + + Sitcom + + + TVG + + + + Bewitched + I Get Your Nannie, You Get My Goat + After his servant is stolen, Lord Montdrako puts a spell on Darrin. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Samantha's da Vinci Dilemma + Aunt Clara summons Leonardo da Vinci to paint the Stephens' home. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + That Girl + Nobody Here But Us Chickens + Chicken-suited Ann is stranded on a country road. + + Marlo Thomas + Ted Bessell + Lew Parker + + Sitcom + + + TVPG + + + + That Girl + At the Drop of a Budget + A hypnotic suggestion sends Ann on a buying spree. + + Marlo Thomas + Ted Bessell + + Sitcom + + + TVPG + + + + Welcome Back, Kotter + I Wonder Who's Kissing Gabe Now? + Gabe has some explaining to do after he is seen kissing the art teacher. + + Gabriel Kaplan + Marcia Strassman + John Sylvester White + + Sitcom + + + TVPG + + + + Welcome Back, Kotter + Sweathog Back to School Special + Gabe and the Sweathogs celebrate a new semester at school by reminiscing at a surprise party. + + Gabriel Kaplan + Marcia Strassman + John Sylvester White + + Sitcom + + + TVPG + + + + Family Ties + Quitting Time + Alex learns the art of domesticity when Lauren quits school to spend more time with him. + + Michael J. Fox + Meredith Baxter Birney + Michael Gross + + Sitcom + + + TVG + + + + Family Ties + Read It and Weep + Jennifer faces possible suspension from school when she writes a report on a banned book. + + Michael J. Fox + Meredith Baxter Birney + Michael Gross + + Sitcom + + + TVG + + + + One Day at a Time + The Nearness of You + Max's growing fondness for Barbara has both of them wondering how to handle it. + + Bonnie Franklin + Boyd Gaines + Michael Lembeck + + Sitcom + + + TVPG + + + + One Day at a Time + Off We Go + Ann reflects on her struggle for independence as she considers a job that would take her away from her family and friends. + + Bonnie Franklin + Howard Hesseman + Pat Harrington + + Sitcom + + + TVPG + + + + Three's Company + Bird Song + The roommates take the Ropers' parakeet overnight. + + John Ritter + Joyce DeWitt + Suzanne Somers + + Sitcom + + + TVPG + + + + Three's Company + Coffee, Tea or Jack? + An old girlfriend shows up at Jack's surprise birthday party. + + John Ritter + Joyce DeWitt + Suzanne Somers + + Sitcom + + + TVPG + + + + The Jeffersons + Florence's New Job + Florence doubts her executive abilities. + + Sherman Hemsley + Isabel Sanford + Marla Gibbs + + Sitcom + + + TVPG + + + + The Jeffersons + The Separation + Lionel and Jenny's marriage is in trouble. + + Sherman Hemsley + Isabel Sanford + Mike Evans + + Sitcom + + + TVPG + + + + Barney Miller + Arrival + a genius turns to petty crime; and a man is mugged by an elderly woman; Luger's surprised when his mail-order bride arrives from the Philippines. + + Hal Linden + Max Gail + Ron Glass + + Sitcom + + + TVPG + + + + Barney Miller + Obituary + A man assaults a journalist for writing a premature obituary; The squad celebrates Barney's birthday. + + Hal Linden + Max Gail + Ron Glass + + Sitcom + + + TVPG + + + + Johnny Carson + Actor Robert Klein; actor Calvin Trillin; The Mighty Carson Art Players. + + Robert Klein + Calvin Trillin + + Talk Shows + Comedy + + + + Designing Women + Getting Married and Eating Dirt + Julia is outraged over a New York Times article; Bernice receives a marriage proposal. + + Delta Burke + Dixie Carter + Jean Smart + + Sitcom + + + TVPG + + + + Designing Women + Big Haas and Little Falsie + Mary Jo inherits $3,000 that must be spent on something frivolous, so she considers getting breast implants. + + Delta Burke + Dixie Carter + Jean Smart + + Sitcom + + + TVPG + + + + Becker + The Bearer of Bad Tidings + Becker mistakenly leaves horrible news on the wrong answering machine and desperately tries to take it back. + + Ted Danson + Terry Farrell + Hattie Winston + + Sitcom + + + TVPG + + + + Becker + One Angry Man + John must sweat out two weeks of jury duty after his advice to Linda on how to avoid it backfires; Bob gives Jake a dog. + + Ted Danson + Terry Farrell + Hattie Winston + + Sitcom + + + TVPG + + + + Wings + Return to Nantucket + Brian foolishly flies off through heavy fog for a rendezvous with his ex-wife. + + Tim Daly + Steven Weber + Crystal Bernard + + Sitcom + + + TVPG + + + + Wings + Return to Nantucket + Brian returns to Nantucket with his estranged wife (Kim Ulrich), who promptly falls for Joe. + + Tim Daly + Steven Weber + Crystal Bernard + + Sitcom + + + TVPG + + + + Alice + Mel's Cup + Alice resorts to burglary when she can't convince Mel that charity begins at home. + + Linda Lavin + Polly Holliday + Vic Tayback + + Sitcom + + + TVPG + + + + Alice + The Bundle + Alice must scrimp to come up with money for Tommy's braces and Mel needs a new refrigerator. Flo finds a paper bag with $40,000 cash in it and it seems everyone's money woes are over. + + Linda Lavin + Polly Holliday + Vic Tayback + + Sitcom + + + TVPG + + + + Benson + Parade Rest + When an old friend's disability payments are cut off Benson goes to bat for him. + + Robert Guillaume + James Noble + Inga Swenson + + Sitcom + + + TVG + + + + Benson + The Hat and the Ring + Benson's friend Sen. Diane Hartford has an interesting proposition for the lieutenant governor. + + Robert Guillaume + James Noble + Inga Swenson + + Sitcom + + + TVG + + + + Archie Bunker's Place + West Side Astoria + Archie makes a wrong assumption about a friend and her family. + + Carroll O'Connor + Danielle Brisebois + Allan Melvin + + Sitcom + + + TVPG + + + + Archie Bunker's Place + Billie Moves Out + Billie moves out when she gets fed up with Archie's overprotectiveness. + + Carroll O'Connor + Danielle Brisebois + Allan Melvin + + Sitcom + + + TVPG + + + + The Burns and Allen Show + A Visit from Charles Vidor + Gracie and Blanche try to get Ronnie's new girlfriend a part in a film. + + Bea Benaderet + Larry Keating + + Sitcom + + + TVG + + + + The Jack Benny Program + How Jack Found Mary + Jack recalls how he found Mary. + + Jack Benny + Eddie Anderson + Don Wilson + + Comedy + + + TVG + + + + I Dream of Jeannie + What's New, Poodle Dog? + Jeannie is furious when Roger arranges a double date for himself and Tony. + + Larry Hagman + Barbara Eden + Bill Daily + + Sitcom + + + TVG + + + + I Dream of Jeannie + Fastest Gun in the East + While watching a Western, Tony says he wished he lived in those old days, so Jeannie blinks him back there. + + Larry Hagman + Barbara Eden + + Sitcom + + + TVG + + + + Bewitched + Once in a Vial + Samantha's old boyfriend Rollo appears; Endora drinks a love potion intended for Samantha. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Snob in the Grass + Samantha takes revenge when Darrin's ex-fiancee upstages her. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + Bachelor Father + Bentley and the Lady Doctor + Kelly's unwillingness to keep her room clean leads Bentley to seek help from an attractive child psychologist. + + John Forsythe + Noreen Corcoran + Sammee Tong + + Sitcom + + + + Bachelor Father + Bentley and the Aunts + Bentley (John Forsythe) finds out that he is the reason Kelly (Noreen Corcoran) is blackballed from a club. + + John Forsythe + Noreen Corcoran + Sammee Tong + + Sitcom + + + + Father Knows Best + The Great Experiment + Jim gets the Anderson family into discovering the wonders of modern living. + + Robert Young + Jane Wyatt + Elinor Donahue + + Sitcom + + + TVG + + + + Father Knows Best + The Basketball Coach + Jim offers to coach Bud's basketball team. + + Robert Young + Jane Wyatt + Elinor Donahue + + Sitcom + + + TVG + + + + Dennis the Menace + Listen to the Mockingbird + Mr. Wilson runs for the presidency of the bird-watcher's club. + + Jay North + Herbert Anderson + Gloria Henry + + Sitcom + + + TVG + + + + Dennis the Menace + First Editions + Dennis and Mr. Wilson's plan to sell their comic books goes awry. + + Jay North + Herbert Anderson + Gloria Henry + + Sitcom + + + TVG + + + + Hazel + How to Find Work Without Really Trying + Hazel brings new meaning to a man's life when she inspires confidence in him. + + Shirley Booth + Ray Fulmer + Lynn Borden + + Sitcom + + + TVG + + + + Hazel + My Son, the Sheepdog + Harold joins a rock 'n' roll band to compete in a TV talent contest. + + Shirley Booth + Ray Fulmer + Lynn Borden + + Sitcom + + + TVG + + + + McHale's Navy + Urulu's Paradise West + Binghamton (Joe Flynn) catches Gruber and Chief Urulu (Carl Ballantine, Jacques Aubuchon) selling lots on Navy-held Taratupa Island. + + Ernest Borgnine + Joe Flynn + Tim Conway + + Sitcom + + + TVPG + + + + McHale's Navy + Dear Diary + Binghamton (Joe Flynn) finds himself and Parker (Tim Conway) on board a Japanese airplane bound for Tokyo. With Ernest Borgnine. + + Ernest Borgnine + Joe Flynn + Tim Conway + + Sitcom + + + TVPG + + + + I Dream of Jeannie + What's New, Poodle Dog? + Jeannie is furious when Roger arranges a double date for himself and Tony. + + Larry Hagman + Barbara Eden + Bill Daily + + Sitcom + + + TVG + + + + I Dream of Jeannie + Fastest Gun in the East + While watching a Western, Tony says he wished he lived in those old days, so Jeannie blinks him back there. + + Larry Hagman + Barbara Eden + + Sitcom + + + TVG + + + + Bewitched + Once in a Vial + Samantha's old boyfriend Rollo appears; Endora drinks a love potion intended for Samantha. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Snob in the Grass + Samantha takes revenge when Darrin's ex-fiancee upstages her. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + That Girl + Hearing Today, Gone Tomorrow + During filming of an ad, a cold affects Ann's hearing. + + Marlo Thomas + Ted Bessell + + Sitcom + + + TVPG + + + + That Girl + The Snow Must Go On + Snow traps Ann, her parents and Don at the airport. + + Marlo Thomas + Ted Bessell + Lew Parker + + Sitcom + + + TVPG + + + + Welcome Back, Kotter + And Baby Makes Four + Gabe spends his first day back at school nervously awaiting fatherhood. + + Gabriel Kaplan + Marcia Strassman + John Sylvester White + + Sitcom + + + TVPG + + + + Welcome Back, Kotter + And Baby Makes Four + Gabe has his hands full after Julie delivers twins. + + Gabriel Kaplan + Marcia Strassman + John Sylvester White + + Sitcom + + + TVPG + + + + Family Ties + Read It and Weep + Jennifer must defend herself before the school board when she writes a report on a banned book. + + Michael J. Fox + Meredith Baxter Birney + Michael Gross + + Sitcom + + + TVG + + + + Family Ties + Spring Reminds Me + A grieving mother (Constance McCashin) tries to replace her late daughter with Mallory. + + Michael J. Fox + Meredith Baxter Birney + Michael Gross + + Sitcom + + + TVG + + + + One Day at a Time + Another Man's Shoes + After his estranged brother's sudden death, Schneider assumes responsibility for his niece and nephew. + + Pat Harrington + Valerie Bertinelli + + Sitcom + + + TVPG + + + + One Day at a Time + Ann's Decision + Ann faces her first parental crisis as a newly divorced mother. + + Bonnie Franklin + Mackenzie Phillips + Richard Masur + + Sitcom + + + TVPG + + + + Mar de plástico + Boris E + DNA evidence is found on Ainhoa's body and Juan Rueda is detained once again; Héctor urges the judge for more time to investigate the findings. + + Rodolfo Sancho + Belén López + Pedro Casablanc + + Drama + + + TVMA + + + + Cardo + Noche de Kebabs + + Ana Rujas + Juani Ruiz + Alberto San Juan + + Drama + + + + Gran Hotel + La revancha + The drama intensifies around the hotel after Diego finds out Alicia's lover is one of the hotel's bellboys. + + Adriana Ozores + Amaia Salamanca + Yon González + + Drama + + + TVPG + + + + Amores Roubados + Episodio 4 + + Cauã Reymond + Ísis Valverde + Murilo Benício + + Miniseries + Drama + + + + Más de series + The latest news about everyone's favorite shows. + Variety + + + + Pop up: aquí no hay quien viva + Thanks to pop-up windows of fictional characters, the viewer can obtain additional information from the series. + News Magazine + Performing Arts + + + + Pop up: aquí no hay quien viva + Thanks to pop-up windows of fictional characters, the viewer can obtain additional information from the series. + News Magazine + Performing Arts + + + + Gran Hotel + La revancha + The drama intensifies around the hotel after Diego finds out Alicia's lover is one of the hotel's bellboys. + + Adriana Ozores + Amaia Salamanca + Yon González + + Drama + + + TVPG + + + + Desconocidas + + Sandra Cervera + Ana Fernández + Marco Cáceres + + Performing Arts + Drama + + + + Cardo + Noche de Kebabs + + Ana Rujas + Juani Ruiz + Alberto San Juan + + Drama + + + + Más de series + The latest news about everyone's favorite shows. + Variety + + + + Mar de plástico + Boris E + DNA evidence is found on Ainhoa's body and Juan Rueda is detained once again; Héctor urges the judge for more time to investigate the findings. + + Rodolfo Sancho + Belén López + Pedro Casablanc + + Drama + + + TVMA + + + + Mar de plástico + La caza del hombre + Lola, Salva and Héctor continue their investigation into the elusive Boris; they begin by looking into the pistol used to shoot the sergeant. + + Rodolfo Sancho + Belén López + Pedro Casablanc + + Drama + + + TVMA + + + + El secreto de Puente Viejo + A young woman named Pepa is betrayed by her lover when he takes their son and gives it to his wife who has just given birth to a dead infant. Pepa gathers her courage and promises to come back for her son and for revenge. + + Álex Gadea + María Bouzas + Alejandra Onieva + + Soaps + Drama + + + + Pop up: aquí no hay quien viva + Thanks to pop-up windows of fictional characters, the viewer can obtain additional information from the series. + News Magazine + Performing Arts + + + + A tortas con la vida + A las duras y a las roturas + + Blanca Oteyza + Armando del Río + Juanjo Puigcorbé + + Comedy + + + + Mujeres Ambiciosas + Golpe maestro + + Gloria Pires + Adriana Esteves + Camila Pitanga + + Soaps + Drama + + + + El secreto de Puente Viejo + A young woman named Pepa is betrayed by her lover when he takes their son and gives it to his wife who has just given birth to a dead infant. Pepa gathers her courage and promises to come back for her son and for revenge. + + Álex Gadea + María Bouzas + Alejandra Onieva + + Soaps + Drama + + + + Los hombres de Paco + Un lugar en el mundo + Mariano is considering leaving the police force due to his depression, so Paco and Lucas try to cheer him up by letting a prisoner escape. + + Paco Tous + Hugo Silva + Pepón Nieto + + Comedy + + + + Amores Roubados + Episodio 6 + + Cauã Reymond + Ísis Valverde + Murilo Benício + + Miniseries + Drama + + + + Desconocidas + + Sandra Cervera + Ana Fernández + Marco Cáceres + + Performing Arts + Drama + + + + Gran Hotel + Cólera + Several strangers meet during their stay at a luxurious hotel. + + Adriana Ozores + Amaia Salamanca + Yon González + + Drama + + + TVPG + + + + Más de series + The latest news about everyone's favorite shows. + Variety + + + + Pop up: aquí no hay quien viva + Thanks to pop-up windows of fictional characters, the viewer can obtain additional information from the series. + News Magazine + Performing Arts + + + + Pop up: aquí no hay quien viva + Thanks to pop-up windows of fictional characters, the viewer can obtain additional information from the series. + News Magazine + Performing Arts + + + + Los hombres de Paco + Un lugar en el mundo + Mariano is considering leaving the police force due to his depression, so Paco and Lucas try to cheer him up by letting a prisoner escape. + + Paco Tous + Hugo Silva + Pepón Nieto + + Comedy + + + + Amores Roubados + Episodio 6 + + Cauã Reymond + Ísis Valverde + Murilo Benício + + Miniseries + Drama + + + + Gran Hotel + Cólera + Several strangers meet during their stay at a luxurious hotel. + + Adriana Ozores + Amaia Salamanca + Yon González + + Drama + + + TVPG + + + + Más de series + The latest news about everyone's favorite shows. + Variety + + + + Desconocidas + + Sandra Cervera + Ana Fernández + Marco Cáceres + + Performing Arts + Drama + + + + El secreto de Puente Viejo + A young woman named Pepa is betrayed by her lover when he takes their son and gives it to his wife who has just given birth to a dead infant. Pepa gathers her courage and promises to come back for her son and for revenge. + + Álex Gadea + María Bouzas + Alejandra Onieva + + Soaps + Drama + + + + Pop up: aquí no hay quien viva + Thanks to pop-up windows of fictional characters, the viewer can obtain additional information from the series. + News Magazine + Performing Arts + + + + A través del tiempo + + Alinne Moraes + Rafael Cardoso + Paolla Oliveira + + Soaps + Drama + + + + Desconocidas + + Sandra Cervera + Ana Fernández + Marco Cáceres + + Performing Arts + Drama + + + + Más de series + The latest news about everyone's favorite shows. + Variety + + + + Mujeres Ambiciosas + Regreso triunfal + + Gloria Pires + Adriana Esteves + Camila Pitanga + + Soaps + Drama + + + + Amar es para siempre + Life in Spain in the '60s, a decade in which the country suffered through significant changes and rapid growth. + + Manu Baqueiro + Itziar Miranda + José Antonio Sayagués + + Drama + + + + Bandolera + Sara arrives in Andalucía, Spain towards the end of the 19th century. She searches for adventures and finds them, discovering love with a lieutenant that will turn into her rival when she becomes the leader of a group of bandits. + + Marta Hazas + Manuel Bandera + Roser Tapias + + Drama + Soaps + + + + El secreto de Puente Viejo + A young woman named Pepa is betrayed by her lover when he takes their son and gives it to his wife who has just given birth to a dead infant. Pepa gathers her courage and promises to come back for her son and for revenge. + + Álex Gadea + María Bouzas + Alejandra Onieva + + Soaps + Drama + + + + A través del tiempo + + Alinne Moraes + Rafael Cardoso + Paolla Oliveira + + Soaps + Drama + + + + Amar es para siempre + Life in Spain in the '60s, a decade in which the country suffered through significant changes and rapid growth. + + Manu Baqueiro + Itziar Miranda + José Antonio Sayagués + + Drama + + + + Cardo + + Ana Rujas + Juani Ruiz + Alberto San Juan + + Drama + + + + Mujeres Ambiciosas + + Gloria Pires + Adriana Esteves + Camila Pitanga + + Soaps + Drama + + + + Pop up: aquí no hay quien viva + Thanks to pop-up windows of fictional characters, the viewer can obtain additional information from the series. + News Magazine + Performing Arts + + + + Más de series + The latest news about everyone's favorite shows. + Variety + + + + Desconocidas + + Sandra Cervera + Ana Fernández + Marco Cáceres + + Performing Arts + Drama + + + + Desconocidas + + Sandra Cervera + Ana Fernández + Marco Cáceres + + Performing Arts + Drama + + + + Pop up: aquí no hay quien viva + Thanks to pop-up windows of fictional characters, the viewer can obtain additional information from the series. + News Magazine + Performing Arts + + + + Bandolera + Sara arrives in Andalucía, Spain towards the end of the 19th century. She searches for adventures and finds them, discovering love with a lieutenant that will turn into her rival when she becomes the leader of a group of bandits. + + Marta Hazas + Manuel Bandera + Roser Tapias + + Drama + Soaps + + + + Amar es para siempre + Life in Spain in the '60s, a decade in which the country suffered through significant changes and rapid growth. + + Manu Baqueiro + Itziar Miranda + José Antonio Sayagués + + Drama + + + + Más de series + The latest news about everyone's favorite shows. + Variety + + + + Cardo + ¿Tienes cargador de Android? + + Ana Rujas + Juani Ruiz + Alberto San Juan + + Drama + + + + El secreto de Puente Viejo + A young woman named Pepa is betrayed by her lover when he takes their son and gives it to his wife who has just given birth to a dead infant. Pepa gathers her courage and promises to come back for her son and for revenge. + + Álex Gadea + María Bouzas + Alejandra Onieva + + Soaps + Drama + + + + Pop up: aquí no hay quien viva + Thanks to pop-up windows of fictional characters, the viewer can obtain additional information from the series. + News Magazine + Performing Arts + + + + A través del tiempo + + Alinne Moraes + Rafael Cardoso + Paolla Oliveira + + Soaps + Drama + + + + Cardo + ¿Tienes cargador de Android? + + Ana Rujas + Juani Ruiz + Alberto San Juan + + Drama + + + + Más de series + The latest news about everyone's favorite shows. + Variety + + + + Mujeres Ambiciosas + Testigo silenciado + + Gloria Pires + Adriana Esteves + Camila Pitanga + + Soaps + Drama + + + + Amar es para siempre + Life in Spain in the '60s, a decade in which the country suffered through significant changes and rapid growth. + + Manu Baqueiro + Itziar Miranda + José Antonio Sayagués + + Drama + + + + Bandolera + Capítulo 467 + Sara arrives in Andalucía, Spain towards the end of the 19th century. She searches for adventures and finds them, discovering love with a lieutenant that will turn into her rival when she becomes the leader of a group of bandits. + + Marta Hazas + Manuel Bandera + Roser Tapias + + Drama + Soaps + + + + El secreto de Puente Viejo + A young woman named Pepa is betrayed by her lover when he takes their son and gives it to his wife who has just given birth to a dead infant. Pepa gathers her courage and promises to come back for her son and for revenge. + + Álex Gadea + María Bouzas + Alejandra Onieva + + Soaps + Drama + + + + A través del tiempo + + Alinne Moraes + Rafael Cardoso + Paolla Oliveira + + Soaps + Drama + + + + Amar es para siempre + Life in Spain in the '60s, a decade in which the country suffered through significant changes and rapid growth. + + Manu Baqueiro + Itziar Miranda + José Antonio Sayagués + + Drama + + + + La embajada + Dinero público + Luis runs into an ex while in Spain. + + Abel Folk + Belén Rueda + Raúl Arévalo + + Drama + Performing Arts + + + TV14 + + + + Mujeres Ambiciosas + Alianza estratégica + + Gloria Pires + Adriana Esteves + Camila Pitanga + + Soaps + Drama + + + + Pop up: aquí no hay quien viva + Thanks to pop-up windows of fictional characters, the viewer can obtain additional information from the series. + News Magazine + Performing Arts + + + + Más de series + The latest news about everyone's favorite shows. + Variety + + + + Cardo + ¿Tienes cargador de Android? + + Ana Rujas + Juani Ruiz + Alberto San Juan + + Drama + + + + Cardo + ¿Tienes cargador de Android? + + Ana Rujas + Juani Ruiz + Alberto San Juan + + Drama + + + + Pop up: aquí no hay quien viva + Thanks to pop-up windows of fictional characters, the viewer can obtain additional information from the series. + News Magazine + Performing Arts + + + + Amar es para siempre + Life in Spain in the '60s, a decade in which the country suffered through significant changes and rapid growth. + + Manu Baqueiro + Itziar Miranda + José Antonio Sayagués + + Drama + + + + Bandolera + Capítulo 467 + Sara arrives in Andalucía, Spain towards the end of the 19th century. She searches for adventures and finds them, discovering love with a lieutenant that will turn into her rival when she becomes the leader of a group of bandits. + + Marta Hazas + Manuel Bandera + Roser Tapias + + Drama + Soaps + + + + Amar es para siempre + Life in Spain in the '60s, a decade in which the country suffered through significant changes and rapid growth. + + Manu Baqueiro + Itziar Miranda + José Antonio Sayagués + + Drama + + + + Más de series + The latest news about everyone's favorite shows. + Variety + + + + La embajada + Dinero público + Luis runs into an ex while in Spain. + + Abel Folk + Belén Rueda + Raúl Arévalo + + Drama + Performing Arts + + + TV14 + + + + El secreto de Puente Viejo + A young woman named Pepa is betrayed by her lover when he takes their son and gives it to his wife who has just given birth to a dead infant. Pepa gathers her courage and promises to come back for her son and for revenge. + + Álex Gadea + María Bouzas + Alejandra Onieva + + Soaps + Drama + + + + Pop up: aquí no hay quien viva + Thanks to pop-up windows of fictional characters, the viewer can obtain additional information from the series. + News Magazine + Performing Arts + + + + A través del tiempo + + Alinne Moraes + Rafael Cardoso + Paolla Oliveira + + Soaps + Drama + + + + La embajada + Dinero público + Luis runs into an ex while in Spain. + + Abel Folk + Belén Rueda + Raúl Arévalo + + Drama + Performing Arts + + + TV14 + + + + Más de series + The latest news about everyone's favorite shows. + Variety + + + + Mujeres Ambiciosas + Alianza estratégica + + Gloria Pires + Adriana Esteves + Camila Pitanga + + Soaps + Drama + + + + Amar es para siempre + Life in Spain in the '60s, a decade in which the country suffered through significant changes and rapid growth. + + Manu Baqueiro + Itziar Miranda + José Antonio Sayagués + + Drama + + + + Bandolera + Capítulo 468 + Sara arrives in Andalucía, Spain towards the end of the 19th century. She searches for adventures and finds them, discovering love with a lieutenant that will turn into her rival when she becomes the leader of a group of bandits. + + Marta Hazas + Manuel Bandera + Roser Tapias + + Drama + Soaps + + + + El secreto de Puente Viejo + A young woman named Pepa is betrayed by her lover when he takes their son and gives it to his wife who has just given birth to a dead infant. Pepa gathers her courage and promises to come back for her son and for revenge. + + Álex Gadea + María Bouzas + Alejandra Onieva + + Soaps + Drama + + + + Segunda sesión + Religious + + + + La voz de la ciudad: Edición sábado + News + + + + Rompiendo el silencio + Se presentan variedades de temas que ayudan en ciertas situaciones que se viven en la vida diaria. + Talk Shows + + + + El rico y Lázaro + Inspirada en la parábola que contó Jesucristo a sus discípulos, narra la historia de dos hombres que mueren el mismo día. Uno de ellos va al cielo, el otro al infierno. + + Milena Toscano + Igor Rickli + Dudu Azevedo + + Soaps + + + TV14 + + + + Visión latina famosos + Información actualizada sobre los famosos y el mundo del entretenimiento. + News Magazine + Performing Arts + + + + Génesis + Adaptación de uno de los libros más reconocidos de la Biblia, que aborda la historia del origen de la humanidad, invitando a entender el presente, volviendo al principio de todo. La caída de Lucifer, la vida de Adán y Eva, Noé y el diluvio, y otros. + + Carlo Porto + Juliana Boller + Igor Rickli + + Soaps + History + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + Retratos de familia + Cómo la fe logra salvar familias, revelando los secretos y misterios de la vida. + Religious + + + + Los vicios tienen cura + Religious + + + + Congreso para el éxito + Programa que enseña a lidiar con las dificultades financieras. + Business + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + Emprendedores de la fe + Se motiva a las personas a salir adelante en sus negocios y se enseña a usar la fe para prosperar en sus finanzas. + Religious + + + + El Poder Sobrenatural de la Fe + Informativo religioso en el cual se busca difundir el mensaje del evangelio de Jesucristo, así como también velar y orientar por los pobres de la congregación estimulándolos mediante cultos religiosos y charlas de motivación. + Religious + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + SOS espiritual + El tratamiento de temas sobre la familia, el hogar y los casos de personas que, por encontrarse con Dios, salvaron su vida. + Religious + + + + Selección musical del Reino de Dios + Religious + + + + Selección musical del Reino de Dios + Religious + + + + Santo culto desde Los Ángeles + Religious + + + + Mano amiga + Religious + + + + Arena latina + El repaso a toda la información del deporte en Visión Latina 57.1. + Sports + Talk Show + + + + Latina kids + Un programa de variedad con entretenidos dibujos animados, manualidades, videos divertidos y amenas actividades para los niños. + Children + Performing Arts + + + + Lo mejor de Rompiendo el silencio + Lo mejor de la famosa y esperada novela. + Soaps + + + + Cine vision latina + Una selección de las mejores películas de estreno para el fin de semana, que pueden disfrutarse en familia. + Performing Arts + + + + Primera sesión + Religious + + + + Cine vision latina + Una selección de las mejores películas de estreno para el fin de semana, que pueden disfrutarse en familia. + Performing Arts + + + + Segunda sesión + Religious + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + Habla que te escucho + Regular + + + + El rico y Lázaro + Inspirada en la parábola que contó Jesucristo a sus discípulos, narra la historia de dos hombres que mueren el mismo día. Uno de ellos va al cielo, el otro al infierno. + + Milena Toscano + Igor Rickli + Dudu Azevedo + + Soaps + + + TV14 + + + + Génesis + Adaptación de uno de los libros más reconocidos de la Biblia, que aborda la historia del origen de la humanidad, invitando a entender el presente, volviendo al principio de todo. La caída de Lucifer, la vida de Adán y Eva, Noé y el diluvio, y otros. + + Carlo Porto + Juliana Boller + Igor Rickli + + Soaps + History + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + Retratos de familia + Cómo la fe logra salvar familias, revelando los secretos y misterios de la vida. + Religious + + + + Los vicios tienen cura + Religious + + + + Congreso para el éxito + Programa que enseña a lidiar con las dificultades financieras. + Business + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + Emprendedores de la fe + Se motiva a las personas a salir adelante en sus negocios y se enseña a usar la fe para prosperar en sus finanzas. + Religious + + + + El Poder Sobrenatural de la Fe + Informativo religioso en el cual se busca difundir el mensaje del evangelio de Jesucristo, así como también velar y orientar por los pobres de la congregación estimulándolos mediante cultos religiosos y charlas de motivación. + Religious + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + Latina kids + Un programa de variedad con entretenidos dibujos animados, manualidades, videos divertidos y amenas actividades para los niños. + Children + Performing Arts + + + + Noticiero: La voz de la ciudad + La información más destacada del acontecer nacional e internacional, con una perspectiva clara y objetiva. + News + + + + Mañana latina + Magazine matutino dedicado a toda la familia, con una gran variedad de temas, grandes invitados y mucha diversión. + Performing Arts + + + + La voz de la ciudad: Segunda edición + News + + + + El rico y Lázaro + Inspirada en la parábola que contó Jesucristo a sus discípulos, narra la historia de dos hombres que mueren el mismo día. Uno de ellos va al cielo, el otro al infierno. + + Milena Toscano + Igor Rickli + Dudu Azevedo + + Soaps + + + TV14 + + + + Latina kids + Un programa de variedad con entretenidos dibujos animados, manualidades, videos divertidos y amenas actividades para los niños. + Children + Performing Arts + + + + Bonnie Bear + Bonnie Bear utiliza sus manos y hermosos sonidos para crear sus hermosos cuadros. + Children + Instructional + + + + Rompiendo el silencio + Se presentan variedades de temas que ayudan en ciertas situaciones que se viven en la vida diaria. + Talk Shows + + + + Latina kids + Un programa de variedad con entretenidos dibujos animados, manualidades, videos divertidos y amenas actividades para los niños. + Children + Performing Arts + + + + Noticiero: La voz de la ciudad + La información más destacada del acontecer nacional e internacional. + News + + + + Visión latina famosos + Información actualizada sobre los famosos y el mundo del entretenimiento. + News Magazine + Performing Arts + + + + El rico y Lázaro + Inspirada en la parábola que contó Jesucristo a sus discípulos, narra la historia de dos hombres que mueren el mismo día. Uno de ellos va al cielo, el otro al infierno. + + Milena Toscano + Igor Rickli + Dudu Azevedo + + Soaps + + + + Génesis + Adaptación de uno de los libros más reconocidos de la Biblia, que aborda la historia del origen de la humanidad, invitando a entender el presente, volviendo al principio de todo. La caída de Lucifer, la vida de Adán y Eva, Noé y el diluvio, y otros. + + Carlo Porto + Juliana Boller + Igor Rickli + + Soaps + History + + + + Punto de visión + Religious + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + Habla que te escucho + Regular + + + + Los vicios tienen cura + Religious + + + + Congreso para el éxito + Programa que enseña a lidiar con las dificultades financieras. + Business + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + Emprendedores de la fe + Se motiva a las personas a salir adelante en sus negocios y se enseña a usar la fe para prosperar en sus finanzas. + Religious + + + + El Poder Sobrenatural de la Fe + Informativo religioso en el cual se busca difundir el mensaje del evangelio de Jesucristo, así como también velar y orientar por los pobres de la congregación estimulándolos mediante cultos religiosos y charlas de motivación. + Religious + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + Latina kids + Un programa de variedad con entretenidos dibujos animados, manualidades, videos divertidos y amenas actividades para los niños. + Children + Performing Arts + + + + Noticiero: La voz de la ciudad + La información más destacada del acontecer nacional e internacional, con una perspectiva clara y objetiva. + News + + + + Mañana latina + Magazine matutino dedicado a toda la familia, con una gran variedad de temas, grandes invitados y mucha diversión. + Performing Arts + + + + La voz de la ciudad: Segunda edición + News + + + + El rico y Lázaro + Inspirada en la parábola que contó Jesucristo a sus discípulos, narra la historia de dos hombres que mueren el mismo día. Uno de ellos va al cielo, el otro al infierno. + + Milena Toscano + Igor Rickli + Dudu Azevedo + + Soaps + + + TV14 + + + + Latina kids + Un programa de variedad con entretenidos dibujos animados, manualidades, videos divertidos y amenas actividades para los niños. + Children + Performing Arts + + + + Bonnie Bear + Bonnie Bear utiliza sus manos y hermosos sonidos para crear sus hermosos cuadros. + Children + Instructional + + + + Rompiendo el silencio + Se presentan variedades de temas que ayudan en ciertas situaciones que se viven en la vida diaria. + Talk Shows + + + + Latina kids + Un programa de variedad con entretenidos dibujos animados, manualidades, videos divertidos y amenas actividades para los niños. + Children + Performing Arts + + + + Noticiero: La voz de la ciudad + La información más destacada del acontecer nacional e internacional. + News + + + + Visión latina famosos + Información actualizada sobre los famosos y el mundo del entretenimiento. + News Magazine + Performing Arts + + + + El rico y Lázaro + Inspirada en la parábola que contó Jesucristo a sus discípulos, narra la historia de dos hombres que mueren el mismo día. Uno de ellos va al cielo, el otro al infierno. + + Milena Toscano + Igor Rickli + Dudu Azevedo + + Soaps + + + + Génesis + Adaptación de uno de los libros más reconocidos de la Biblia, que aborda la historia del origen de la humanidad, invitando a entender el presente, volviendo al principio de todo. La caída de Lucifer, la vida de Adán y Eva, Noé y el diluvio, y otros. + + Carlo Porto + Juliana Boller + Igor Rickli + + Soaps + History + + + + Punto de visión + Religious + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + Habla que te escucho + Regular + + + + Los vicios tienen cura + Religious + + + + Congreso para el éxito + Programa que enseña a lidiar con las dificultades financieras. + Business + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + Emprendedores de la fe + Se motiva a las personas a salir adelante en sus negocios y se enseña a usar la fe para prosperar en sus finanzas. + Religious + + + + El Poder Sobrenatural de la Fe + Informativo religioso en el cual se busca difundir el mensaje del evangelio de Jesucristo, así como también velar y orientar por los pobres de la congregación estimulándolos mediante cultos religiosos y charlas de motivación. + Religious + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + Latina kids + Un programa de variedad con entretenidos dibujos animados, manualidades, videos divertidos y amenas actividades para los niños. + Children + Performing Arts + + + + Noticiero: La voz de la ciudad + La información más destacada del acontecer nacional e internacional, con una perspectiva clara y objetiva. + News + + + + Mañana latina + Magazine matutino dedicado a toda la familia, con una gran variedad de temas, grandes invitados y mucha diversión. + Performing Arts + + + + La voz de la ciudad: Segunda edición + News + + + + El rico y Lázaro + Inspirada en la parábola que contó Jesucristo a sus discípulos, narra la historia de dos hombres que mueren el mismo día. Uno de ellos va al cielo, el otro al infierno. + + Milena Toscano + Igor Rickli + Dudu Azevedo + + Soaps + + + TV14 + + + + Latina kids + Un programa de variedad con entretenidos dibujos animados, manualidades, videos divertidos y amenas actividades para los niños. + Children + Performing Arts + + + + Bonnie Bear + Bonnie Bear utiliza sus manos y hermosos sonidos para crear sus hermosos cuadros. + Children + Instructional + + + + Segunda sesión + Religious + + + + La voz de la ciudad: Edición sábado + News + + + + Rompiendo el silencio + Se presentan variedades de temas que ayudan en ciertas situaciones que se viven en la vida diaria. + Talk Shows + + + + El rico y Lázaro + Inspirada en la parábola que contó Jesucristo a sus discípulos, narra la historia de dos hombres que mueren el mismo día. Uno de ellos va al cielo, el otro al infierno. + + Milena Toscano + Igor Rickli + Dudu Azevedo + + Soaps + + + TV14 + + + + Visión latina famosos + Información actualizada sobre los famosos y el mundo del entretenimiento. + News Magazine + Performing Arts + + + + Génesis + Adaptación de uno de los libros más reconocidos de la Biblia, que aborda la historia del origen de la humanidad, invitando a entender el presente, volviendo al principio de todo. La caída de Lucifer, la vida de Adán y Eva, Noé y el diluvio, y otros. + + Carlo Porto + Juliana Boller + Igor Rickli + + Soaps + History + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + Retratos de familia + Cómo la fe logra salvar familias, revelando los secretos y misterios de la vida. + Religious + + + + Los vicios tienen cura + Religious + + + + Congreso para el éxito + Programa que enseña a lidiar con las dificultades financieras. + Business + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + Emprendedores de la fe + Se motiva a las personas a salir adelante en sus negocios y se enseña a usar la fe para prosperar en sus finanzas. + Religious + + + + El Poder Sobrenatural de la Fe + Informativo religioso en el cual se busca difundir el mensaje del evangelio de Jesucristo, así como también velar y orientar por los pobres de la congregación estimulándolos mediante cultos religiosos y charlas de motivación. + Religious + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + SOS espiritual + El tratamiento de temas sobre la familia, el hogar y los casos de personas que, por encontrarse con Dios, salvaron su vida. + Religious + + + + Selección musical del Reino de Dios + Religious + + + + Selección musical del Reino de Dios + Religious + + + + Santo culto desde Los Ángeles + Religious + + + + Mano amiga + Religious + + + + Arena latina + El repaso a toda la información del deporte en Visión Latina 57.1. + Sports + Talk Show + + + + Latina kids + Un programa de variedad con entretenidos dibujos animados, manualidades, videos divertidos y amenas actividades para los niños. + Children + Performing Arts + + + + Lo mejor de Rompiendo el silencio + Lo mejor de la famosa y esperada novela. + Soaps + + + + Cine vision latina + Una selección de las mejores películas de estreno para el fin de semana, que pueden disfrutarse en familia. + Performing Arts + + + + Primera sesión + Religious + + + + Cine vision latina + Una selección de las mejores películas de estreno para el fin de semana, que pueden disfrutarse en familia. + Performing Arts + + + + Segunda sesión + Religious + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + Habla que te escucho + Regular + + + + El rico y Lázaro + Inspirada en la parábola que contó Jesucristo a sus discípulos, narra la historia de dos hombres que mueren el mismo día. Uno de ellos va al cielo, el otro al infierno. + + Milena Toscano + Igor Rickli + Dudu Azevedo + + Soaps + + + TV14 + + + + Génesis + Adaptación de uno de los libros más reconocidos de la Biblia, que aborda la historia del origen de la humanidad, invitando a entender el presente, volviendo al principio de todo. La caída de Lucifer, la vida de Adán y Eva, Noé y el diluvio, y otros. + + Carlo Porto + Juliana Boller + Igor Rickli + + Soaps + History + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + Retratos de familia + Cómo la fe logra salvar familias, revelando los secretos y misterios de la vida. + Religious + + + + Los vicios tienen cura + Religious + + + + Congreso para el éxito + Programa que enseña a lidiar con las dificultades financieras. + Business + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + Emprendedores de la fe + Se motiva a las personas a salir adelante en sus negocios y se enseña a usar la fe para prosperar en sus finanzas. + Religious + + + + El Poder Sobrenatural de la Fe + Informativo religioso en el cual se busca difundir el mensaje del evangelio de Jesucristo, así como también velar y orientar por los pobres de la congregación estimulándolos mediante cultos religiosos y charlas de motivación. + Religious + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + Latina kids + Un programa de variedad con entretenidos dibujos animados, manualidades, videos divertidos y amenas actividades para los niños. + Children + Performing Arts + + + + Noticiero: La voz de la ciudad + La información más destacada del acontecer nacional e internacional, con una perspectiva clara y objetiva. + News + + + + Mañana latina + Magazine matutino dedicado a toda la familia, con una gran variedad de temas, grandes invitados y mucha diversión. + Performing Arts + + + + La voz de la ciudad: Segunda edición + News + + + + El rico y Lázaro + Inspirada en la parábola que contó Jesucristo a sus discípulos, narra la historia de dos hombres que mueren el mismo día. Uno de ellos va al cielo, el otro al infierno. + + Milena Toscano + Igor Rickli + Dudu Azevedo + + Soaps + + + TV14 + + + + Latina kids + Un programa de variedad con entretenidos dibujos animados, manualidades, videos divertidos y amenas actividades para los niños. + Children + Performing Arts + + + + Bonnie Bear + Bonnie Bear utiliza sus manos y hermosos sonidos para crear sus hermosos cuadros. + Children + Instructional + + + + Rompiendo el silencio + Se presentan variedades de temas que ayudan en ciertas situaciones que se viven en la vida diaria. + Talk Shows + + + + Latina kids + Un programa de variedad con entretenidos dibujos animados, manualidades, videos divertidos y amenas actividades para los niños. + Children + Performing Arts + + + + Noticiero: La voz de la ciudad + La información más destacada del acontecer nacional e internacional. + News + + + + Visión latina famosos + Información actualizada sobre los famosos y el mundo del entretenimiento. + News Magazine + Performing Arts + + + + El rico y Lázaro + Inspirada en la parábola que contó Jesucristo a sus discípulos, narra la historia de dos hombres que mueren el mismo día. Uno de ellos va al cielo, el otro al infierno. + + Milena Toscano + Igor Rickli + Dudu Azevedo + + Soaps + + + + Génesis + Adaptación de uno de los libros más reconocidos de la Biblia, que aborda la historia del origen de la humanidad, invitando a entender el presente, volviendo al principio de todo. La caída de Lucifer, la vida de Adán y Eva, Noé y el diluvio, y otros. + + Carlo Porto + Juliana Boller + Igor Rickli + + Soaps + History + + + + Punto de visión + Religious + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + Habla que te escucho + Regular + + + + Los vicios tienen cura + Religious + + + + Congreso para el éxito + Programa que enseña a lidiar con las dificultades financieras. + Business + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + Emprendedores de la fe + Se motiva a las personas a salir adelante en sus negocios y se enseña a usar la fe para prosperar en sus finanzas. + Religious + + + + El Poder Sobrenatural de la Fe + Informativo religioso en el cual se busca difundir el mensaje del evangelio de Jesucristo, así como también velar y orientar por los pobres de la congregación estimulándolos mediante cultos religiosos y charlas de motivación. + Religious + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + Latina kids + Un programa de variedad con entretenidos dibujos animados, manualidades, videos divertidos y amenas actividades para los niños. + Children + Performing Arts + + + + Noticiero: La voz de la ciudad + La información más destacada del acontecer nacional e internacional, con una perspectiva clara y objetiva. + News + + + + Mañana latina + Magazine matutino dedicado a toda la familia, con una gran variedad de temas, grandes invitados y mucha diversión. + Performing Arts + + + + La voz de la ciudad: Segunda edición + News + + + + El rico y Lázaro + Inspirada en la parábola que contó Jesucristo a sus discípulos, narra la historia de dos hombres que mueren el mismo día. Uno de ellos va al cielo, el otro al infierno. + + Milena Toscano + Igor Rickli + Dudu Azevedo + + Soaps + + + TV14 + + + + Latina kids + Un programa de variedad con entretenidos dibujos animados, manualidades, videos divertidos y amenas actividades para los niños. + Children + Performing Arts + + + + Bonnie Bear + Bonnie Bear utiliza sus manos y hermosos sonidos para crear sus hermosos cuadros. + Children + Instructional + + + + Rompiendo el silencio + Se presentan variedades de temas que ayudan en ciertas situaciones que se viven en la vida diaria. + Talk Shows + + + + Latina kids + Un programa de variedad con entretenidos dibujos animados, manualidades, videos divertidos y amenas actividades para los niños. + Children + Performing Arts + + + + Noticiero: La voz de la ciudad + La información más destacada del acontecer nacional e internacional. + News + + + + Visión latina famosos + Información actualizada sobre los famosos y el mundo del entretenimiento. + News Magazine + Performing Arts + + + + El rico y Lázaro + Inspirada en la parábola que contó Jesucristo a sus discípulos, narra la historia de dos hombres que mueren el mismo día. Uno de ellos va al cielo, el otro al infierno. + + Milena Toscano + Igor Rickli + Dudu Azevedo + + Soaps + + + + Génesis + Adaptación de uno de los libros más reconocidos de la Biblia, que aborda la historia del origen de la humanidad, invitando a entender el presente, volviendo al principio de todo. La caída de Lucifer, la vida de Adán y Eva, Noé y el diluvio, y otros. + + Carlo Porto + Juliana Boller + Igor Rickli + + Soaps + History + + + + Punto de visión + Religious + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + Habla que te escucho + Regular + + + + Los vicios tienen cura + Religious + + + + Congreso para el éxito + Programa que enseña a lidiar con las dificultades financieras. + Business + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + Emprendedores de la fe + Se motiva a las personas a salir adelante en sus negocios y se enseña a usar la fe para prosperar en sus finanzas. + Religious + + + + El Poder Sobrenatural de la Fe + Informativo religioso en el cual se busca difundir el mensaje del evangelio de Jesucristo, así como también velar y orientar por los pobres de la congregación estimulándolos mediante cultos religiosos y charlas de motivación. + Religious + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + Latina kids + Un programa de variedad con entretenidos dibujos animados, manualidades, videos divertidos y amenas actividades para los niños. + Children + Performing Arts + + + + Noticiero: La voz de la ciudad + La información más destacada del acontecer nacional e internacional, con una perspectiva clara y objetiva. + News + + + + Mañana latina + Magazine matutino dedicado a toda la familia, con una gran variedad de temas, grandes invitados y mucha diversión. + Performing Arts + + + + La voz de la ciudad: Segunda edición + News + + + + El rico y Lázaro + Inspirada en la parábola que contó Jesucristo a sus discípulos, narra la historia de dos hombres que mueren el mismo día. Uno de ellos va al cielo, el otro al infierno. + + Milena Toscano + Igor Rickli + Dudu Azevedo + + Soaps + + + TV14 + + + + Latina kids + Un programa de variedad con entretenidos dibujos animados, manualidades, videos divertidos y amenas actividades para los niños. + Children + Performing Arts + + + + Bonnie Bear + Bonnie Bear utiliza sus manos y hermosos sonidos para crear sus hermosos cuadros. + Children + Instructional + + + + The Black Hamptons + The Slickest Player in the Game + Carolyn Britton pulls out all the stops when she engages the help of her estranged daughter-in-law to break up the Johnsons' marriage. + + Lamman Rucker + Vanessa Bell Calloway + Elise Neal + + Miniseries + + + TVMA + + + + The Black Hamptons + Legacies and Lies + The Fourth of July starts off with a bang; Anthony finds out the Brittons are playing for keeps during fishing trip; the Brittons' secret begins to unravel. + + Lamman Rucker + Vanessa Bell Calloway + Elise Neal + + Miniseries + + + TVMA + + + + The Black Hamptons + Winners Win + Carolyn's plans to win the Britton-Johnson feud are coming into fruition, but Carolyn's past and Anthony's future may derail everything. + + Lamman Rucker + Vanessa Bell Calloway + Elise Neal + + Miniseries + + + TVMA + + + + Tyler Perry's Meet the Browns + Soon after losing her job, a single mother (Angela Bassett) takes her brood to Georgia for her father's funeral and meets his uproarious clan for the first time. + + Tyler Perry + Angela Bassett + David Mann + + 2008 + Movies + Romance + + + TVG + + + 2 + + + + Ms. Pat Settles It + Catfished and Carjacked + Judge Ms. Pat settles cases, including a loan between friends that turns to carjacking, a trespassing incident in which a romp is caught on ring camera, and a friend who wants her loan paid back. + Sitcom + Reality TV + + + TVMA + + + + Ms. Pat Settles It + Body by Insurance Check + Judge Ms. Pat settles cases that include unapproved dress alterations that removed breast breathing room, twins disputing over a rental property party, and a husband and wife on the brink of divorce after she stole his insurance money. + Sitcom + Reality TV + + + TVMA + + + + The Fresh Prince of Bel-Air + Bank's Shot + Philip (James Avery) takes the cue and sets out to stick it to pool hustlers who tricked Will (Will Smith). With Joseph Marcell. + + Will Smith + James Avery + Janet Hubert-Whitten + + Sitcom + + + TVG + + + + The Fresh Prince of Bel-Air + 72 Hours + Carlton (Alfonso Ribeiro) spends three days in Jazz's (Jeff Townes) neighborhood after being challenged by Will (Will Smith). + + Will Smith + James Avery + Janet Hubert-Whitten + + Sitcom + + + TVPG + + + + The Fresh Prince of Bel-Air + Just Infatuation + Ashley's (Tatyana M. Ali) birthday wish comes true when her idol, Little T (Tevin Campbell), attends her party. Stars Will Smith. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVPG + + + + The Fresh Prince of Bel-Air + Working It Out + To keep her job, Hilary (Karyn Parsons) asks Will (Will Smith) to date her celebrity boss (rap artist Queen Latifah). + + Will Smith + James Avery + Janet Hubert-Whitten + + Sitcom + + + TVG + + + + The Fresh Prince of Bel-Air + Did the Earth Move for You? + Will's feelings for Kathleen will never be the same after they are trapped together by an earthquake. + + Will Smith + James Avery + Janet Hubert-Whitten + + Sitcom + + + TVG + + + + The Fresh Prince of Bel-Air + The Mother of All Battles + Will and Carlton (Will Smith, Alfonso Ribeiro) help Ashley (Tatyana M. Ali) deal with a school bully. + + Will Smith + James Avery + Janet Hubert-Whitten + + Sitcom + + + TVPG + + + + Tyler Perry's Sistas + Moving On + Danni lashes out after getting caught in a lie; Andi receives an unexpected offer; Sabrina confides in Maurice; Karen has an eye-opening conversation with a new client. + + KJ Smith + Mignon Von + Ebony Obsidian + + Comedy + + + TV14 + + + + Tyler Perry's The Oval + Don't Believe Your Eyes + Kyle informs Lilly that he's willing to do anything to show his love for Donald. Ironically, Bobby is outside willing to put his life on the line for Lilly. Jason takes a stand against his mother. + + Ed Quinn + Kron Moore + Javon Johnson + + Drama + + + TV14 + + + + Family Matters + Scenes From a Mall + Steve (Jaleel White) is the center of attention at a mall when Myra (Michelle Thomas) begins to flirt with him. + + Jo Marie Payton + Reginald VelJohnson + Rosetta LeNoire + + Sitcom + + + TVG + + + + Family Matters + Rock Enroll + Eddie (Darius McCrary) decides to skip college in favor of a career in the entertainment business. Guest star: Shanice. + + Jo Marie Payton + Reginald VelJohnson + Rosetta LeNoire + + Sitcom + + + TVG + + + + Family Matters + Like a Virgin + When Eddie (Darius McCrary) is teased by the guys about his virginity, Steve (Jaleel White) steps in and eases his mind. + + Jo Marie Payton + Reginald VelJohnson + Rosetta LeNoire + + Sitcom + + + TVG + + + + Family Matters + Good Cop, Bad Cop + Eddie (Darius McCrary) needs Carl's (Reginald VelJohnson) help when he is harassed by two cops; Steve (Jaleel White) wreaks havoc at the dentist. + + Jo Marie Payton + Reginald VelJohnson + Rosetta LeNoire + + Sitcom + + + TVG + + + + Celebrity Squares + You Look Like a Modern-Day Frederick Douglas + Tiffany Haddish is center square; Tiffany Haddish flirts with Christian Keyes, Amanda Seales takes a stand, and Loni Love twerks for Big Freedia. + Game Shows + + + + Celebrity Squares + The Hood Therapist Vs. The Hoochie Historian + The Hood Therapist takes on the Hoochie Historian; the stars are led by Kirk Franklin in the center square; Affion Crocket makes an impression, the squares get schooled in Hoochie Culture, and everyone falls in love with Herby. + Game Shows + + + + Celebrity Squares + Ooh... I Need a Napkin + Taye Diggs is center square; Karrueche Tran has a questionable title for a children's book, Safaree gets a flirtatious callout, and 85 South gets praised. + Game Shows + + + TV14 + + + + Celebrity Squares + Ain't Nothing Like a Sugar Momma + Tisha Campbell sparkles as center square; the boys fight for an OG's affection; the squares learn about underground pageants, and more. + Game Shows + + + + Ms. Pat Settles It + Catfished and Carjacked + Judge Ms. Pat settles cases, including a loan between friends that turns to carjacking, a trespassing incident in which a romp is caught on ring camera, and a friend who wants her loan paid back. + Sitcom + Reality TV + + + TVMA + + + + Ms. Pat Settles It + Body by Insurance Check + Judge Ms. Pat settles cases that include unapproved dress alterations that removed breast breathing room, twins disputing over a rental property party, and a husband and wife on the brink of divorce after she stole his insurance money. + Sitcom + Reality TV + + + TVMA + + + + Brooklyn's Finest + A massive drug operation changes the lives of three conflicted police officers (Richard Gere, Don Cheadle, Ethan Hawke) in one of New York's most-violent precincts. + + Richard Gere + Don Cheadle + Ethan Hawke + + 2009 + Movies + Crime Story + + + TVPG + + + 2 + + + + Tyler Perry's A Madea Family Funeral + A reunion turns into an unexpected nightmare when Madea, Joe and other family members gather for an anniversary. Instead of fun and relaxation, the gang soon find themselves attending an elaborate funeral that doesn't quite go according to plan. + + Tyler Perry + Cassi Davis + Patrice Lovely + + 2019 + Movies + Comedy + + + 1 + + + + Tyler Perry's Meet the Browns + Soon after losing her job, a single mother (Angela Bassett) takes her brood to Georgia for her father's funeral and meets his uproarious clan for the first time. + + Tyler Perry + Angela Bassett + David Mann + + 2008 + Movies + Romance + + + TVG + + + 2 + + + + Tyler Perry's A Madea Family Funeral + A reunion turns into an unexpected nightmare when Madea, Joe and other family members gather for an anniversary. Instead of fun and relaxation, the gang soon find themselves attending an elaborate funeral that doesn't quite go according to plan. + + Tyler Perry + Cassi Davis + Patrice Lovely + + 2019 + Movies + Comedy + + + 1 + + + + Tyler Perry's A Madea Family Funeral + A reunion turns into an unexpected nightmare when Madea, Joe and other family members gather for an anniversary. Instead of fun and relaxation, the gang soon find themselves attending an elaborate funeral that doesn't quite go according to plan. + + Tyler Perry + Cassi Davis + Patrice Lovely + + 2019 + Movies + Comedy + + + 1 + + + + Tyler Perry's I Can Do Bad All By Myself + When Madea (Tyler Perry) catches three siblings looting her home, she delivers the youths to their boozy aunt (Taraji P. Henson), who is sorely in need of an attitude adjustment. + + Tyler Perry + Taraji P. Henson + Adam Rodriguez + + 2009 + Movies + Comedy + Drama + + + TVG + + + 2 + + + + Martin + Dead Men Don't Flush + Martin faces an unexpected dilemma when a plumber (Michael Hagerty) apparently dies in his apartment. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Martin + Forever Sheneneh + Martin (Martin Lawrence) fears for his job when Sheneneh (Martin Lawrence) wins a date with his celebrity guest (Christopher. + + Martin Lawrence + Tisha Campbell-Martin + Tichina Arnold + + Sitcom + + + TVPG + + + + Martin + I'm Not Your Superwoman + When Martin (Martin Lawrence) comes down with a cold, he expects Gina (Tisha Campbell) to drop everything to look after him. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Martin + Woman With a Past + Martin (Martin Lawrence) is jealous when he learns his in-studio guest (singer Keith Washington) is Gina's (Tisha Campbell) ex-boyfriend. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Martin + The Parents Are Coming, the Parents Are Coming + A nervous Martin (Martin Lawrence) tries to make amends after accidently insulting Gina's (Tisha Campbell) parents (J.A. Preston, Judyann Elder). + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Tyler Perry's Sistas + When I Get Home + Andi is uncomfortable with Gary's latest actions; Sabrina gives Maurice some advice to assist with his new troubles; Zac is confused by a co-worker's advances. + + KJ Smith + Mignon Von + Ebony Obsidian + + Comedy + + + TV14 + + + + Tyler Perry's The Oval + Political Junkie + Priscilla pays Ms. Laura a visit in an attempt to get answers about a high crime cover up; Jason befriends Allan with an ulterior motive; Donald and Lilly come to a mutual understanding about their marriage. + + Ed Quinn + Kron Moore + Javon Johnson + + Drama + + + TV14 + + + + Sister, Sister + The Candidate + Class presidential candidate Tamera appropriates Tia's ideas. + + Tia Mowry + Tamera Mowry + Jackée Harry + + Sitcom + + + TVG + + + + Sister, Sister + Big Twin on Campus + Tamera (Tamera Mowry) finds her own crowd when she doesn't fit in with Tia's (Tia Mowry) new intellectual college friends. + + Tia Mowry + Tamera Mowry + Jackée Harry + + Sitcom + + + TVG + + + + Tyler Perry's Meet the Browns + Meet the Bully + A troubled boy brings a gun to Cora's class after repeated bullying. + + Tamela Mann + Lamman Rucker + Denise Boutte + + Sitcom + + + TVPG + + + + Tyler Perry's Meet the Browns + Meet the Two Left Feet + Will secretly takes dancing lessons so he can take Sasha to a party; the Colonel and Edna decide to move out of Brown Meadows. + + Tamela Mann + Lamman Rucker + Denise Boutte + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + Going to the Chapel and Not Getting Married + When Ella learns Curtis went behind her back and put Miranda on a $500 budget to plan their wedding renewal, she debates whether she should marry Curtis all over again. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + Comedy + + + TVPG + + + + Tyler Perry's House of Payne + Unwelcomed Neighbors + It looks like someone is occupying the old Caskey house; Curtis enlists C.J. to help him investigate it; when Curtis alerts C.J., Lisa overhears and adds fuel to the fire, stating she saw some suspicious activity happen outside that house. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + The Breakfast Club + DJ Envy, Charlamagne Tha God and rotating guest hosts discuss current events, cultural issues, politics, celebrity gossip, music, and the news of the day. + News + Performing Arts + + + TV14 + + + + My Wife and Kids + Samba Story + Michael and Janet try to spice up their date nights by taking samba lessons, but their instructors arouse jealousy. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Claire's New Boyfriend + Rebellious Claire rejects the boyfriend her father likes and takes up with one he views with disfavor. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + The Neighborhood + Welcome to Fight Night + Calvin reluctantly invites Dave to join his guys' night at home with Malcolm and Marty; Gemma and Tina take their first girls' trip to Vegas and find themselves unexpectedly in the spotlight. + + Cedric the Entertainer + Max Greenfield + Beth Behrs + + Sitcom + + + TVPG + + + + The Neighborhood + Welcome to the Yard Sale + Dave convinces Calvin to hold a yard sale, but when longtime neighborhood resident Miss Simpson makes a purchase Calvin quickly regrets, he enlists Dave to help him get the valuable object back. + + Cedric the Entertainer + Max Greenfield + Beth Behrs + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + Head of the Class + Jazmine runs for school president; Curtis and Ella take an art class. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's Meet the Browns + Meet the Lessons + Sasha and Will fight over Brianna's news; Cora joins a spin class to be close to the new principal. + + Tamela Mann + Lamman Rucker + Denise Boutte + + Sitcom + + + TVPG + + + + Tyler Perry's Meet the Browns + Meet the Disorderly + Simone is attacked by one of the frat boys at a party; Brown decides to fire Jesus to save money. + + David Mann + Tamela Mann + Lamman Rucker + + Sitcom + + + TVPG + + + + The Jamie Foxx Show + Give Me Some Credit + Jamie (Jamie Foxx) must prove his love for Fancy (Garcelle Beauvais) when her well-to-do parents (guest stars Billy Davis Jr. and Marilyn McCoo) come to town. + + Jamie Foxx + Garrett Morris + Ellia English + + Sitcom + + + TVPG + + + + The Jamie Foxx Show + Liar, Liar, Pants on Fire + Jamie is afraid of Fancy's reaction when he secretly woos the company's top client, a beautiful young woman. + + Jamie Foxx + Garrett Morris + Ellia English + + Sitcom + + + TVPG + + + + Martin + A radio talk show host balances his professional and personal lives. + + Martin Lawrence + Tisha Campbell-Martin + Tichina Arnold + + Sitcom + + + TVPG + + + + Martin + A radio talk show host balances his professional and personal lives. + + Martin Lawrence + Tisha Campbell-Martin + Tichina Arnold + + Sitcom + + + TVPG + + + + Martin + Baby It's Cole'd in Here + Martin (Martin Lawrence) must find a way to get Cole (Carl Anthony Payne II) to move out while still retaining his friendship. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Martin + Radio Days + Martin (Martin Lawrence) finds himself attracted to a visiting talk-radio star (Kim Fields) who co-hosts his show. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + Paternity and Fraternity + CJ learns he may have another daughter; Malik begins hanging out with the wrong crowd. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + Paternity and Fraternity (Part 2) + CJ learns he may have another daughter; Malik begins hanging out with the wrong crowd. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + Cracking Under Pressure + Janine and her associates steal from the Paynes; Calvin trains for a marathon. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + Club PCP + Calvin plans a house party when the rest of the family visits relatives in Florida. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TV14 + + + + Tyler Perry's House of Payne + Sadly Mistaken + A case of mistaken identity lands Ella in trouble; Calvin has difficulty studying for his midterms. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + And Justice for All + Curtis and Claretha are both summoned for jury duty; Malik enters the world of online dating. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's I Can Do Bad All By Myself + When Madea (Tyler Perry) catches three siblings looting her home, she delivers the youths to their boozy aunt (Taraji P. Henson), who is sorely in need of an attitude adjustment. + + Tyler Perry + Taraji P. Henson + Adam Rodriguez + + 2009 + Movies + Comedy + Drama + + + TVG + + + 2 + + + + Tyler Perry's I Can Do Bad All By Myself + When Madea (Tyler Perry) catches three siblings looting her home, she delivers the youths to their boozy aunt (Taraji P. Henson), who is sorely in need of an attitude adjustment. + + Tyler Perry + Taraji P. Henson + Adam Rodriguez + + 2009 + Movies + Comedy + Drama + + + TVG + + + 2 + + + + Martin + Blackboard Jungle Fever + Gina (Tisha Campbell) becomes insanely jealous when she catches Martin (Martin Lawrence) embracing his former teacher (Beverly Johnson). + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Martin + The Night He Came Home + After teasing the others for scaring easily, Martin (Martin Lawrence) experiences a terrifying Halloween seance. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + Christmas + + + TVPG + + + + Martin + I've Got a Secret + Martin (Martin Lawrence) must make amends after he reveals a secret about Pam (Tichina Arnold) while on the air. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Martin + Do the Fight Thing + Martin (Martin Lawrence) is reluctant when Stan (Garrett Morris) encourages him to invite Gina (Tisha Campbell) back on his show. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Martin + I Saw Gina Kissing Santa Claus + Martin (Martin Lawrence) reluctantly agrees to play Santa for Tommy's (Thomas Mikal Ford) Big Brothers program. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + Christmas + + + TVPG + + + + Martin + The Break-Up + Martin (Martin Lawrence) becomes dramatically depressed when a minor quarrel with Gina (Tisha Campbell) escalates into a breakup. Richard Pryor guest stars. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Let's Make a Deal + Costumed contestants compete for cash and prizes. + Game Shows + + + TVPG + + + + The Wayans Bros. + Risky Bid-ness + Shawn is excited to work at a big advertising firm until he realizes that big business is not what it seems to be. + + Marlon Wayans + Shawn Wayans + John Witherspoon + + Sitcom + + + TVPG + + + + The Wayans Bros. + Pops' Secret + Shawn and Marlon (Shawn and Marlon Wayans) suspect Pops (John Witherspoon) is having an affair. + + Marlon Wayans + Shawn Wayans + John Witherspoon + + Sitcom + + + TVPG + + + + Tyler Perry's Sistas + The Encounter + Olonzo approaches Maurice again; Gary becomes obsessed with reconciling with Andi; tensions grow as Hayden threatens Zac. + + Kj Smith + Mignon Von + Ebony Obsidian + + Comedy + + + TV14 + + + + Tyler Perry's The Oval + The Master + Nancy surprises Richard and finds him in a compromising position; Kyle gets Dale tangled up in his shenanigans following a chance meeting; Bobby tries to convince Max that slow and steady wins the race. + + Ed Quinn + Kron Moore + Javon Johnson + + Drama + + + TV14 + + + + Sister, Sister + The Audition + Tamera gets to sing the blues when radio personality Casey Kasem returns for a dedication at his high school. + + Tia Mowry + Tamera Mowry-Housley + Jackée Harry + + Sitcom + + + TVG + + + + Sister, Sister + When a Man Loves Two Women + It's every woman for herself as the sisters (Tia and Tamera Mowry) compete for Roger's (Marques Houston) favor. + + Tia Mowry + Tamera Mowry-Housley + Jackée Harry + + Sitcom + + + TVG + + + + Tyler Perry's Meet the Browns + Meet the Mom + Will's mother, Vera, shows up; Sasha doesn't belive in Vera's Southern remedies; Daisy goes missing. + + David Mann + Tamela Mann + Lamman Rucker + + Sitcom + + + TVPG + + + + Tyler Perry's Meet the Browns + Meet the Great Guy + Joaquin's former baseball coach dies on Will's operating table, causing accusations to fly; gym teacher Reggie sets out to woo Cora, but Brown doesn't feel Reggie makes the grade. + + David Mann + Tamela Mann + Lamman Rucker + + Sitcom + + + TVPG + + + + Martin + The Break-Up + Tension grows when Gina (Tisha Campbell) dates Pam's (Tichina Arnold) cousin (David Alan Grier) and runs into Martin and his new girlfriend (Martin Lawrence, Lark Voorhies). + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Martin + The Break-Up + Billy Dee Williams guest stars on Martin's (Martin Lawrence) radio show and gives him advice about Gina (Tisha Campbell). + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + The Breakfast Club + DJ Envy, Charlamagne Tha God and rotating guest hosts discuss current events, cultural issues, politics, celebrity gossip, music, and the news of the day. + News + Performing Arts + + + TV14 + + + + My Wife and Kids + Crouching Mother, Hidden Father + Janet's overzealous direction of the school play is cause for concern for Kady's kindergarten teacher. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Fighting Kyles + Michael and Jay give their bickering kids a taste of their own medicine, making them scared they're on the brink of breaking up. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + The Neighborhood + Welcome to Malcolm's Job + Tina agrees to give Grover piano lessons; Malcolm lands a job in retail sales; neither has a first day that goes quite according to plan. + + Cedric the Entertainer + Max Greenfield + Beth Behrs + + Sitcom + + + TVPG + + + + The Neighborhood + Welcome to the Big Payback + When Gemma has her car repaired at Calvin's shop, Tina insists she doesn't need to pay for the work, to Calvin's consternation; Malcolm and Marty find themselves on the same dating app and vie for the same woman's attention. + + Cedric the Entertainer + Max Greenfield + Beth Behrs + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + Teacher's Pet + Jazmine steals a school pet; Malik has a crush on the assistant principal. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's Meet the Browns + Meet the Saboteurs + Will is upset when he learns that Sasha doubts his innocence over Eddie's death. + + David Mann + Tamela Mann + Lamman Rucker + + Sitcom + + + TVPG + + + + Tyler Perry's Meet the Browns + Meet the Couch Potato + Will deals with his suspension by spending his days sleeping. + + David Mann + Tamela Mann + Lamman Rucker + + Sitcom + + + TVPG + + + + The Jamie Foxx Show + Christmas Day-Ja Vu + Jamie (Jamie Foxx) is taught a lesson about giving when he is forced to live the same day over and over. + + Jamie Foxx + Garrett Morris + Ellia English + + Sitcom + Christmas + + + TVPG + + + + The Jamie Foxx Show + Taps for Royal + Jamie (Jamie Foxx) forgets Uncle Junior's (Garrett Morris) birthday, but hatches a plan to make it up to him. Guest stars: Ben Vereen and Savion Glover. + + Jamie Foxx + Garrett Morris + Ellia English + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + The Perfect Storm + A storm traps CJ and Nicole at school. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + Weeping May Endure for a Night + Mr. Brown plans to turn his late father's home into a residence for the elderly; a disastrous date inspires Calvin to start a dating Web site. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Family Matters + Karate Kids + Steve (Jaleel White) takes on a pack of bullies when he lands a job as a playground supervisor. With Reginald VelJohnson. + + Jo Marie Payton-France + Rosetta LeNoire + Darius McCrary + + Sitcom + + + TVG + + + + Family Matters + Home Again + The music group New Edition helps Stefan woo Laura when their long-distance relationship begins to suffer. + + Jo Marie Payton-France + Darius McCrary + Kellie Shanygne Williams + + Sitcom + + + TVG + + + + Family Matters + Nightmare at Urkel Oaks + Myrtle Urkel (Jaleel White) pushes Eddie (Darius McCrary) to marry her and has Big Daddy (Reginald VelJohnson) help her apply the pressure. + + Reginald VelJohnson + Jo Marie Payton-France + Darius McCrary + + Sitcom + + + TVG + + + + Tyler Perry's Madea's Big Happy Family + Madea (Tyler Perry) gathers the clan together to help her niece (Loretta Devine) cope with some distressing news about her health. + + Tyler Perry + Bow Wow + Loretta Devine + + 2011 + Movies + Comedy + Drama + + + TVG + + + 2 + + + + The Neighborhood + Welcome to the Climb + When Gemma decides to fire a teacher at her school, she's unprepared for the aftermath; Calvin gets a surprise when he faces off with his newspaper carrier. + + Cedric the Entertainer + Max Greenfield + Beth Behrs + + Sitcom + + + TVPG + + + + The Neighborhood + Welcome to Logan #2 + When Calvin and Dave's college basketball teams go head-to-head, Dave surprises the Butlers with tickets to the game; a friend from Michigan visits and reveals surprising new details about Dave. + + Cedric the Entertainer + Max Greenfield + Beth Behrs + + Sitcom + + + TVPG + + + + Tyler Perry's The Oval + Coming Clean + Priscilla takes extreme measures to make it clear to Sam that she is done with him; Nancy shares a truth about her past with Richard that he isn't prepared to hear. + + Ed Quinn + Kron Moore + Javon Johnson + + Drama + + + TV14 + + + + College Hill: Celebrity Edition + Masks Off + The housemates shift into overdrive for midterms; Kway, Parker and Tiffany rev up for Magic City; tempers flare as mounting schoolwork takes a toll, leaving one housemate in doubt whether she'll make it to graduation. + Reality TV + Performing Arts + + + TV14 + + + + Tyler Perry's The Oval + Coming Clean + Priscilla takes extreme measures to make it clear to Sam that she is done with him; Nancy shares a truth about her past with Richard that he isn't prepared to hear. + + Ed Quinn + Kron Moore + Javon Johnson + + Drama + + + TV14 + + + + Martin + Credit Card Blues + Martin (Martin Lawrence) is arrested for credit card fraud and his friends scramble to come up with bail money. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Martin + Jerome's in the House + Pam (Tichina Arnold) turns down a serious offer from Cole (Carl Payne) to go on a wild date with Jerome (Martin Lawrence). + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Martin + Your Arms Are Too Short to Box With Martin + Martin (Martin Lawrence) learns about discrimination when he contends with an angry group of little people. Guest stars: Bushwick Bill, Alexander Folk. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Martin + Baby You Can Drive My Car + Martin (Martin Lawrence) and his friends win a car at a charity auction and drive each other crazy trying to share it. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Let's Make a Deal + Costumed contestants compete for cash and prizes. + Game Shows + + + TVPG + + + + The Wayans Bros. + I Do .. + The neighborhood bully forces Marlon (Marlon Wayans) to marry his sister. + + Marlon Wayans + Shawn Wayans + John Witherspoon + + Sitcom + + + TVPG + + + + The Wayans Bros. + Dee's Baby Daddy + After performing an emergency delivery, Dee realizes she wants her own child and turns to Shawn, Marlon and Pops for help. + + Marlon Wayans + Shawn Wayans + John Witherspoon + + Sitcom + + + TVPG + + + + Tyler Perry's Sistas + The Hot Stove + Gary has a conversation with Andi; Zac has a new love interest; Gary gets drunk and his anger boils over. + + Kj Smith + Mignon Von + Ebony Obsidian + + Comedy + + + TV14 + + + + Tyler Perry's The Oval + Empty Your Bag + Allan catches Ellie in a terrible betrayal; after the encounter, Victoria discovers that Hunter is being set up; Donald sends Kyle on a mission to silence an informant. + + Ed Quinn + Kron Moore + Javon Johnson + + Drama + + + TV14 + + + + Sister, Sister + You Are So Beautiful + When the twins question their heritage, Lisa and Ray decide to find the identity of their birth mother. + + Tia Mowry + Tamera Mowry-Housley + Jackée Harry + + Sitcom + + + TVG + + + + Sister, Sister + Gimme a Brake + When the Campbell's (Tim Reid and Jackee Harry) get a second car, the twins (Tamera and Tia Mowry) abuse their access and don't follow the rules. + + Tia Mowry + Tamera Mowry-Housley + Jackée Harry + + Sitcom + + + TVG + + + + Tyler Perry's Meet the Browns + Meet Mr. Wrong + Daisy's deteriorating memory prompts Brown to get in touch with Daisy's long lost cousin Lorraine. + + David Mann + Tamela Mann + Lamman Rucker + + Sitcom + + + TVPG + + + + Tyler Perry's Meet the Browns + Meet Mom Again + Will's mother visits bringing his ex-fiancee with her; Brianna and Jamal play the role of mother and father for a school assignment. + + David Mann + Tamela Mann + Lamman Rucker + + Sitcom + + + TVPG + + + + Martin + Variety Show + Martin (Martin Lawrence) is placed in charge of WZUP's annual talent show to raise money for AIDS research. Guest star: Yo-Yo. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Martin + Checks, Lies and Videotape + Martin and Gina (Martin Lawrence, Tisha Campbell) plan to get videotaped evidence against the Rev. Love (David Alan Grier). + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + The Breakfast Club + DJ Envy, Charlamagne Tha God and rotating guest hosts discuss current events, cultural issues, politics, celebrity gossip, music, and the news of the day. + News + Performing Arts + + + TV14 + + + + My Wife and Kids + Open Your Heart + Jay insists that Michael attend a couples seminar with her; Jr. and his friends try to make some extra money. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Michael's Tribe + Michael volunteers to be chief for Kady's Indian Princess sleepover and tries to keep Claire from sneaking out to a rave with her boyfriend. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + The Neighborhood + Welcome to the Camping Trip + When the Johnsons invite the Butlers to go camping, Dave is taken aback by Calvin's idea of roughing it; Gemma and Tina cross paths with Maynard, a general store proprietor who may not be as friendly as he seems. + + Cedric the Entertainer + Max Greenfield + Beth Behrs + + Sitcom + + + TVPG + + + + The Neighborhood + Welcome to the Repass + When a curmudgeonly resident who has few fans in the community passes away, the Butlers step up to host a memorial; Calvin learns something unexpected about himself. + + Cedric the Entertainer + Max Greenfield + Beth Behrs + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + Why Can't We Be Friends? + Jazmine fears losing CJ to Nicole; Curtis and Malik bond while cleaning the attic. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's Meet the Browns + Meet the Lovers + Troy makes a pass at Sasha, then threatens Will's job if she tells anyone; Brown gets a second job as a security guard at the school. + + David Mann + Tamela Mann + Lamman Rucker + + Sitcom + + + TVPG + + + + Tyler Perry's Meet the Browns + Meet the Tension + Edna breaks off her engagement to the Colonel and returns to the house; a reinstated Will invites Troy to his celebration dinner, upsetting Sasha. + + David Mann + Tamela Mann + Lamman Rucker + + Sitcom + + + TVPG + + + + Tyler Perry's Meet the Browns + Meet the Tension + Edna breaks off her engagement to the Colonel and returns to the house; a reinstated Will invites Troy to his celebration dinner, upsetting Sasha. + + David Mann + Tamela Mann + Lamman Rucker + + Sitcom + + + TVPG + + + + Tyler Perry's Madea's Big Happy Family + Madea (Tyler Perry) gathers the clan together to help her niece (Loretta Devine) cope with some distressing news about her health. + + Tyler Perry + Bow Wow + Loretta Devine + + 2011 + Movies + Comedy + Drama + + + TVG + + + 2 + + + + Swag Inc. + Experts in dating, two best friends try to cash in on their swag to land the women and lifestyles they've always wanted. + + TravQue + Black Thomas + Dorien Wilson + + 2020 + Movies + Romance + + + + Angrily Ever After + A woman loses her fiance, her career and her home within a single day. + + Jasmine Burke + Terayle Hill + Ta'Rhonda Jones + + 2019 + Movies + Comedy + + + + Tyler Perry's House of Payne + Bag Men + Curtis uses his street resources to acquire a beat-up food truck for his barbeque business, only to learn the truck was used for something other than food; Malik and Lisa fight over roles. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + H.O. Hate + Curtis is planning a block party to launch his food truck and business, Sauce Bosses, when Gloria, a new neighbor, and the new H.O.A. president, shows up and enforces violation codes, shutting down the party; Curtis declares war. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + Meme, Myself, and I + After Calvin has a bout of writers' block, he is inspired to use footage of Curtis having violent outbursts for a new ad campaign; when Curtis learns he's become a viral sensation he takes advantage of his internet audience. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + Good Will Nothing + CJ and the others begin sucking up to Curtis when they discover that he is updating his will following the sudden death of a friend. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + Payne-Ting + When Calvin, CJ, and Malik clean out Curtis and Ella's garage, they stumble upon Ella's secret diary filled with love poems she wrote to another man; thinking Ella is cheating on Curtis, they all start questioning their own relationship. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + A Payne-ful Interview + Curtis is ecstatic when one of the hottest online Atlanta news magazines wants to interview him about his BBQ sauce; but when he freezes up, Ella comes to the rescue causing the show to become more interested in her. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + Woman to Woman + When Christian wins Student of the Year, Laura gets him an autographed football jersey from a popular NFL player; Miranda takes umbrage with the gesture, citing the player's history of domestic violence. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + It Was All a Dream + After a much-needed night on the town with his boy, Calvin finds himself in a sticky situation when he drunkenly sends sexual text messages to Miranda and invites her over. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + Payneful Pain + Curtis shows Ella how much he appreciates her by re-creating their first date and planning a sweet surprise for their anniversary; Laura takes offense to Calvin's constant teasing. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + Comedy + + + TVPG + + + + Tyler Perry's House of Payne + Going to the Chapel and Not Getting Married + When Ella learns Curtis went behind her back and put Miranda on a $500 budget to plan their wedding renewal, she debates whether she should marry Curtis all over again. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + Comedy + + + TVPG + + + + Tyler Perry's House of Payne + Unwelcomed Neighbors + It looks like someone is occupying the old Caskey house; Curtis enlists C.J. to help him investigate it; when Curtis alerts C.J., Lisa overhears and adds fuel to the fire, stating she saw some suspicious activity happen outside that house. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Lifted + Centric's destination for Gospel and inspirational music and artists. + Music + + + TVG + + + + Lifted + Centric's destination for Gospel and inspirational music and artists. + Music + + + TVG + + + + Tyler Perry's House of Payne + Going to the Chapel and Not Getting Married + When Ella learns Curtis went behind her back and put Miranda on a $500 budget to plan their wedding renewal, she debates whether she should marry Curtis all over again. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + Comedy + + + TVPG + + + + Tyler Perry's House of Payne + Unwelcomed Neighbors + It looks like someone is occupying the old Caskey house; Curtis enlists C.J. to help him investigate it; when Curtis alerts C.J., Lisa overhears and adds fuel to the fire, stating she saw some suspicious activity happen outside that house. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + Cracked Nest Egg + When Ella discovers the Help Center has fallen into disrepair, she talks Curtis into lending the church money from their savings to fix it up; the couple soon butt heads over the fastest way to get their money back. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + The Paranoid and the Private + Someone breaks into Curtis' food truck, and a much-loved family heirloom, an old Hokie pot used to make his father's special sauce, is stolen. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + Of Mice and Men + Everyone is excited for Malik when he finally gets a good-paying job, until they find out it's for a weed dispensary; Malik tries to educate them on all the benefits of marijuana as a medicinal drug. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + Insecurity System + When CJ brings home a new drone for the fire department, it is stolen in what he believes to be a burglary; to ward off any further intrusions, CJ installs a high-tech home security system with audio-visual capabilities. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Angrily Ever After + A woman loses her fiance, her career and her home within a single day. + + Jasmine Burke + Terayle Hill + Ta'Rhonda Jones + + 2019 + Movies + Comedy + + + + How Stella Got Her Groove Back + A 40ish San Francisco stockbroker (Angela Bassett) has a fling with a 20-year-old (Taye Diggs) while vacationing in Jamaica. + + Angela Bassett + Taye Diggs + Regina King + + 1998 + Movies + Romance + + + TVG + + + 2 + + + + A Royal Surprise + A woman accepts an invitation to visit her boyfriend's family in South Africa and learns that he's both extremely wealthy and the prince of his village. This revelation shakes her trust in him, and he must do whatever he can to win her back. + + Jennifer Freeman + Thapelo Mokoena + Makgotso M + + 2022 + Movies + Romance + + + + How Stella Got Her Groove Back + A 40ish San Francisco stockbroker (Angela Bassett) has a fling with a 20-year-old (Taye Diggs) while vacationing in Jamaica. + + Angela Bassett + Taye Diggs + Regina King + + 1998 + Movies + Romance + + + TVG + + + 2 + + + + A Royal Surprise + A woman accepts an invitation to visit her boyfriend's family in South Africa and learns that he's both extremely wealthy and the prince of his village. This revelation shakes her trust in him, and he must do whatever he can to win her back. + + Jennifer Freeman + Thapelo Mokoena + Makgotso M + + 2022 + Movies + Romance + + + + A Royal Surprise + A woman accepts an invitation to visit her boyfriend's family in South Africa and learns that he's both extremely wealthy and the prince of his village. This revelation shakes her trust in him, and he must do whatever he can to win her back. + + Jennifer Freeman + Thapelo Mokoena + Makgotso M + + 2022 + Movies + Romance + + + + Tyler Perry's House of Payne + Hashtag Help + Curtis wants to build his Sauce Boss brand and Ella needs to get women to register for the church's help center to receive a much-needed grant. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + Mr. Bills + When Curtis throws a fit about all the money he and Ella are spending, he implements drastic cost-cutting measures; things backfire when Ella follows his direction and begins cutting back on the things he enjoys. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + Coco Parenting + Calvin and Miranda enter the world of hysterical parenting when Christian is having problems at school; they find out he is bullying which brings to the forefront their own tempers and issues. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + So Nice to Meat You + After Glo exchanges harsh words with Curtis she gives him 210lbs of pork that a butcher-friend gave her; Curtis is suspicious of the gesture and begins piecing together an unlikely tale of matricide and cannibalism. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + Payneful Patriach + Malik steps into his destiny when he gets the opportunity to campaign across Georgia for issues in the state; he hires Sauce Bosses as the official food truck and becomes Curtis' boss. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + A Wise Man's Opinion + Malik is hesitant to give the news to his family about Lisa's pregnancy. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + Delicious + Malik confesses to Curtis that he thinks Lisa is pregnant. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Morning Glow + Brightening up the morning with this mix of music videos featuring jams from yesterday and today; curated for her. + Music + + + TV14 + + + + Morning Glow + Brightening up the morning with this mix of music videos featuring jams from yesterday and today; curated for her. + Music + + + TV14 + + + + Morning Glow + Brightening up the morning with this mix of music videos featuring jams from yesterday and today; curated for her. + Music + + + TV14 + + + + Morning Glow + Brightening up the morning with this mix of music videos featuring jams from yesterday and today; curated for her. + Music + + + TV14 + + + + Morning Glow + Brightening up the morning with this mix of music videos featuring jams from yesterday and today; curated for her. + Music + + + TV14 + + + + Tyler Perry's House of Payne + A Payne-ful Interview + Curtis is ecstatic when one of the hottest online Atlanta news magazines wants to interview him about his BBQ sauce; but when he freezes up, Ella comes to the rescue causing the show to become more interested in her. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + Woman to Woman + When Christian wins Student of the Year, Laura gets him an autographed football jersey from a popular NFL player; Miranda takes umbrage with the gesture, citing the player's history of domestic violence. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + It Was All a Dream + After a much-needed night on the town with his boy, Calvin finds himself in a sticky situation when he drunkenly sends sexual text messages to Miranda and invites her over. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Twice Bitten + A wealthy widow is conned out of a large amount of money after her daughter convinces her to try online dating. They scheme to beat the con man at his own game but find themselves fighting for their lives. + + Miah Blake + Zach Paul Brown + Robert Dobson + + 2021 + Movies + Thriller + + + + Deadly Entanglement + A woman won't let her husband go. First she tries seduction, then deceit, finally, if she can't have him, no one else will. + + Monica Calhoun + Rico Simonini + Vanessa Simmons + + 2023 + Movies + Thriller + + + TVPG + + + + Twice Bitten + A wealthy widow is conned out of a large amount of money after her daughter convinces her to try online dating. They scheme to beat the con man at his own game but find themselves fighting for their lives. + + Miah Blake + Zach Paul Brown + Robert Dobson + + 2021 + Movies + Thriller + + + + Deadly Entanglement + A woman won't let her husband go. First she tries seduction, then deceit, finally, if she can't have him, no one else will. + + Monica Calhoun + Rico Simonini + Vanessa Simmons + + 2023 + Movies + Thriller + + + TVPG + + + + Running Out of Time + Newly widowed Brenda Harper and her family are taken hostage over something from her late husband's past. + + Sean Dominic + Telma Hopkins + RonReaco Lee + + 2018 + Movies + Thriller + + + + Tyler Perry's House of Payne + Payneful Pain + Curtis shows Ella how much he appreciates her by re-creating their first date and planning a sweet surprise for their anniversary; Laura takes offense to Calvin's constant teasing. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + Comedy + + + TVPG + + + + Tyler Perry's House of Payne + Going to the Chapel and Not Getting Married + When Ella learns Curtis went behind her back and put Miranda on a $500 budget to plan their wedding renewal, she debates whether she should marry Curtis all over again. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + Comedy + + + TVPG + + + + Tyler Perry's House of Payne + Unwelcomed Neighbors + It looks like someone is occupying the old Caskey house; Curtis enlists C.J. to help him investigate it; when Curtis alerts C.J., Lisa overhears and adds fuel to the fire, stating she saw some suspicious activity happen outside that house. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + Cracked Nest Egg + When Ella discovers the Help Center has fallen into disrepair, she talks Curtis into lending the church money from their savings to fix it up; the couple soon butt heads over the fastest way to get their money back. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + The Paranoid and the Private + Someone breaks into Curtis' food truck, and a much-loved family heirloom, an old Hokie pot used to make his father's special sauce, is stolen. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + BET Her Playlist + Fresh Faces + New music from up-and-coming R&B artists. + Music + + + TV14 + + + + Strictly R&B + Playlist of R&B jams from artists old and new; curated for her. + Music + + + TV14 + + + + Morning Glow + Brightening up the morning with this mix of music videos featuring jams from yesterday and today; curated for her. + Music + + + TV14 + + + + Morning Glow + Brightening up the morning with this mix of music videos featuring jams from yesterday and today; curated for her. + Music + + + TV14 + + + + Morning Glow + Brightening up the morning with this mix of music videos featuring jams from yesterday and today; curated for her. + Music + + + TV14 + + + + Morning Glow + Brightening up the morning with this mix of music videos featuring jams from yesterday and today; curated for her. + Music + + + TV14 + + + + Morning Glow + Brightening up the morning with this mix of music videos featuring jams from yesterday and today; curated for her. + Music + + + TV14 + + + + New York Undercover + If This World Were Mine + Eddie's search for the fugitive gun lord endangers Nina; G plays it tough when he and his mother are mugged. + + Michael DeLorenzo + Malik Yoba + Patti D'Arbanville + + Drama + + + TV14 + + + + New York Undercover + A Time of Faith + J.C. investigates the bombings of churches in Harlem; a failing friendship feeds G's growing prejudice against whites. + + Michael DeLorenzo + Malik Yoba + Patti D'Arbanville + + Drama + + + TV14 + + + + Keys to the City + A widower runs for mayor in Atlanta against the man who raised him. + + Stephen Bishop + Isaiah Washington + Felisha Cooper + + 2019 + Movies + Drama + + + + Dutch + An ambitious New Jersey drug dealer makes moves on the street while facing a high-profile court case. + + Lance Gross + Jeremy Meeks + Macy Gray + + 2021 + Movies + Crime Story + + + + Keys to the City + A widower runs for mayor in Atlanta against the man who raised him. + + Stephen Bishop + Isaiah Washington + Felisha Cooper + + 2019 + Movies + Drama + + + + Tyler Perry's The Oval + Coming Clean + Priscilla takes extreme measures to make it clear to Sam that she is done with him; Nancy shares a truth about her past with Richard that he isn't prepared to hear. + + Ed Quinn + Kron Moore + Javon Johnson + + Drama + + + TV14 + + + + College Hill: Celebrity Edition + Masks Off + The housemates shift into overdrive for midterms; Kway, Parker and Tiffany rev up for Magic City; tempers flare as mounting schoolwork takes a toll, leaving one housemate in doubt whether she'll make it to graduation. + Reality TV + Performing Arts + + + TV14 + + + + Tyler Perry's The Oval + Coming Clean + Priscilla takes extreme measures to make it clear to Sam that she is done with him; Nancy shares a truth about her past with Richard that he isn't prepared to hear. + + Ed Quinn + Kron Moore + Javon Johnson + + Drama + + + TV14 + + + + Dutch + An ambitious New Jersey drug dealer makes moves on the street while facing a high-profile court case. + + Lance Gross + Jeremy Meeks + Macy Gray + + 2021 + Movies + Crime Story + + + + Dutch + An ambitious New Jersey drug dealer makes moves on the street while facing a high-profile court case. + + Lance Gross + Jeremy Meeks + Macy Gray + + 2021 + Movies + Crime Story + + + + Tyler Perry's House of Payne + Of Mice and Men + Everyone is excited for Malik when he finally gets a good-paying job, until they find out it's for a weed dispensary; Malik tries to educate them on all the benefits of marijuana as a medicinal drug. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + Tyler Perry's House of Payne + Insecurity System + When CJ brings home a new drone for the fire department, it is stolen in what he believes to be a burglary; to ward off any further intrusions, CJ installs a high-tech home security system with audio-visual capabilities. + + Allen Payne + LaVan Davis + Cassi Davis + + Sitcom + + + TVPG + + + + BET Her Playlist + Fresh Faces + New music from up-and-coming R&B artists. + Music + + + TV14 + + + + Strictly R&B + Playlist of R&B jams from artists old and new; curated for her. + Music + + + TV14 + + + + Morning Glow + Brightening up the morning with this mix of music videos featuring jams from yesterday and today; curated for her. + Music + + + TV14 + + + + Morning Glow + Brightening up the morning with this mix of music videos featuring jams from yesterday and today; curated for her. + Music + + + TV14 + + + + Morning Glow + Brightening up the morning with this mix of music videos featuring jams from yesterday and today; curated for her. + Music + + + TV14 + + + + Morning Glow + Brightening up the morning with this mix of music videos featuring jams from yesterday and today; curated for her. + Music + + + TV14 + + + + Morning Glow + Brightening up the morning with this mix of music videos featuring jams from yesterday and today; curated for her. + Music + + + TV14 + + + + Morning Glow + Brightening up the morning with this mix of music videos featuring jams from yesterday and today; curated for her. + Music + + + TV14 + + + + New York Undercover + A Time of Faith + Lt. Cooper orders J.C. to interrogate the Rev. Harris about the arsons; Nina moves in with Eddie to recuperate. + + Malik Yoba + Michael DeLorenzo + Patti D'Arbanville + + Drama + + + TV14 + + + + Fall Girls + Paige Davis has just been promoted to the head of the sales division. After a night of partying, Paige and her girlfriends wake up and find their boss's dead body. + + Tami Roman + Erica Peeples + Erica Hubbard + + 2019 + Movies + Comedy + + + + I Got Problemz + Q, an unemployed genius, dreams of being a scientist and going back to college, but when he falls for a drug dealer's ex-girlfriend, his bright future could be in jeopardy. + + Edward Williams III + Robert Crayton + Thea Camara + + 2023 + Movies + Comedy + + + + Fall Girls + Paige Davis has just been promoted to the head of the sales division. After a night of partying, Paige and her girlfriends wake up and find their boss's dead body. + + Tami Roman + Erica Peeples + Erica Hubbard + + 2019 + Movies + Comedy + + + + BET Jams Mixtape + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + BET Jams Mixtape + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Dirty South Sunday + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + BET Jams Mixtape + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Dirty South Sunday + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + BET Jams Mixtape + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Dirty South Sunday + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + BET Jams Mixtape + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Timbaland Tuesday + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Timbaland Tuesday + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Timbaland Tuesday + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Wu Wednesday + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + West Coast Wednesday + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Wu Wednesday + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + West Coast Wednesday + Music + + + + Music Playlist + Rap, R&B, hip-hop, and soul music. + Music + + + + WORLDwide + Hottest afrobeat, reggae, soca, and more genres from around the world. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + The Calming + Slow jams, chill tunes, and calm vibes from favorite R&B and Soul artists. + Performing Arts + + + + Hit List: LOADING... + The weekly countdown of the current 20 hottest videos in R&B and Soul. + Performing Arts + + + + Hit List: LOADING... + The weekly countdown of the current 20 hottest videos in R&B and Soul. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + WORLDwide + Hottest afrobeat, reggae, soca, and more genres from around the world. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + The Calming + Slow jams, chill tunes, and calm vibes from favorite R&B and Soul artists. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + Ascending Soul + Emerging underground, alternative, and indie R&B and Soul artists. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + Diggin' In The Crates + Throwing it back with old school R&B and Hip-Hop. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + The Calming + Slow jams, chill tunes, and calm vibes from favorite R&B and Soul artists. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + Ascending Soul + Emerging underground, alternative, and indie R&B and Soul artists. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + Diggin' In The Crates + Throwing it back with old school R&B and Hip-Hop. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + The Calming + Slow jams, chill tunes, and calm vibes from favorite R&B and Soul artists. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + Ascending Soul + Emerging underground, alternative, and indie R&B and Soul artists. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + Diggin' In The Crates + Throwing it back with old school R&B and Hip-Hop. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + The Calming + Slow jams, chill tunes, and calm vibes from favorite R&B and Soul artists. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + Ascending Soul + Emerging underground, alternative, and indie R&B and Soul artists. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + The Calming + Slow jams, chill tunes, and calm vibes from favorite R&B and Soul artists. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + Ascending Soul + Emerging underground, alternative, and indie R&B and Soul artists. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + The Calming + Slow jams, chill tunes, and calm vibes from favorite R&B and Soul artists. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + Ascending Soul + Emerging underground, alternative, and indie R&B and Soul artists. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + The Calming + Slow jams, chill tunes, and calm vibes from favorite R&B and Soul artists. + Performing Arts + + + + Hit List: LOADING... + The weekly countdown of the current 20 hottest videos in R&B and Soul. + Performing Arts + + + + Chronicled + A music video timeline of an artist's career from beginning to now. + Performing Arts + + + + WORLDwide + Hottest afrobeat, reggae, soca, and more genres from around the world. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + The Calming + Slow jams, chill tunes, and calm vibes from favorite R&B and Soul artists. + Performing Arts + + + + Hit List: LOADING... + The weekly countdown of the current 20 hottest videos in R&B and Soul. + Performing Arts + + + + Chronicled + A music video timeline of an artist's career from beginning to now. + Performing Arts + + + + WORLDwide + Hottest afrobeat, reggae, soca, and more genres from around the world. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + The Calming + Slow jams, chill tunes, and calm vibes from favorite R&B and Soul artists. + Performing Arts + + + + Hit List: LOADING... + The weekly countdown of the current 20 hottest videos in R&B and Soul. + Performing Arts + + + + Chronicled + A music video timeline of an artist's career from beginning to now. + Performing Arts + + + + WORLDwide + Hottest afrobeat, reggae, soca, and more genres from around the world. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + The Calming + Slow jams, chill tunes, and calm vibes from favorite R&B and Soul artists. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + Ascending Soul + Emerging underground, alternative, and indie R&B and Soul artists. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + The Calming + Slow jams, chill tunes, and calm vibes from favorite R&B and Soul artists. + Performing Arts + + + + In Rotation + 360 degrees of BET Soul. + Performing Arts + + + + Ascending Soul + Emerging underground, alternative, and indie R&B and Soul artists. + Performing Arts + + + + Random Acts + Make or Bake + Brooklyn's dream of being on a baking competition show comes true, despite her severe allergies. + Reality TV + + + TVG + + + + BYU Sports Nation Postgame + BYU vs West Virginia + Insights after the game from Dave McCann, Blaine Fowler, David Nixon, Brian Logan and Spencer Linton. + Sports + Miscellaneous + + + TVG + + + + Studio C + A Secret Scarecrow (Halloween) + A newly brandished vampire can't get enough of biting necks and celebrating the USA; a know-it-all werewolf finds his friends' Halloween celebrations highly offensive; Tori is convinced that she's in a horror movie and that she's going to die first. + + Garet Allen + Joe Campbell + Jessica Drolet + + Comedy + + + TVG + + + + A Little Game + Ostracized at her new school and grief-stricken over her grandmother's death, a 10-year-old girl (Makenna Ballard) learns about persevering in the face of inevitable change from an irascible chessmaster (F. Murray Abraham). + + F. Murray Abraham + Ralph Macchio + Olympia Dukakis + + 2014 + Movies + Children + + + + Hook + Aided by Tinker Bell (Julia Roberts), a corporate lawyer (Robin Williams) turns into Peter Pan to rescue his children from Captain Hook (Dustin Hoffman). + + Dustin Hoffman + Robin Williams + Julia Roberts + + 1991 + Movies + Children + + + TVG + + + 3 + + + + Hook + Aided by Tinker Bell (Julia Roberts), a corporate lawyer (Robin Williams) turns into Peter Pan to rescue his children from Captain Hook (Dustin Hoffman). + + Dustin Hoffman + Robin Williams + Julia Roberts + + 1991 + Movies + Children + + + TVG + + + 3 + + + + Random Acts + Make or Bake + Brooklyn's dream of being on a baking competition show comes true, despite her severe allergies. + Reality TV + + + TVG + + + + The Wizard of Paws + Menina + Derrick heads to Hawaii to build prosthetics for a lamb with severe bone deformities in her legs. + Animals + Reality TV + + + TVG + + + + The Story Trek + A Tragic Twist + Todd considers switching careers after being inspired by a wannabe rap star. + Christmas + + + TVG + + + + Music & the Spoken Word + Built upon a Rock + The Tabernacle Choir at Temple Square performs songs of hope, faith and inspiration, and sings sacred hymns both new and old from around the world as well as uplifting selections from the American songbook. + Music + Religious + + + TVG + + + + The Fixers + Orchard: Africa, South Africa + The Fixers work with Orchard: Africa to build a vertical gardening training facility in Cape Town, South Africa. + + Kirin Stone + Courtney Dober + Nick Apostolides + + Travel + Local + + + TVG + + + + Worldwide Devotional for Young Adults + Carl B. Cook + Carl B. Cook addresses the Young Adults of the Church of Jesus Christ of Latter-Day Saints. + Religious + Talk Shows + + + TVG + + + + Come Follow Up + October 30 - November 5; Hebrews 1 - 6 + Guests James Goldberg and Jenny Cooper. + Religious + Performing Arts + + + TVG + + + + BYU Idaho Devotional + David Allen + A range of speakers give weekly devotionals and forums. + Talk Shows + Instructional + + + TVG + + + + Latter-Day Profiles + Dana LeCheminant + After spending most of her childhood reading everything she could get her hands on, Dana eventually realized she could write her own books, and since then she always has plots brewing. + Talk Shows + + + TVG + + + + BYU Devotional Address + Kristin M. Yee- Our Covenant Relationship with God: A Wellspring of Relief + Sister Kristin M. Yee, 2nd Counselor in the General Relief Society Presidency. + Talk Shows + Religious + + + TVG + + + + BYU Devotional Address + Steven L. Shumway - Keeping the Spiritual Lifeblood Flowing + Professor Steven Shumway of BYU's Department of Technology and Engineering Studies addresses students. + Talk Shows + Religious + + + TVG + + + + Artful + Bruce and Esther + Esther Hi'ilani Candari and Bruce Smith find purpose in their religious art. + Arts & Entertainment + + + TVG + + + + Grace Notes + Brooke White; GENTRI + Brooke White sings. + Music + Religious + + + TVG + + + + Hello Sunday + Growing through God + Chelsie Hightower from. + Religious + + + TVG + + + + Music & the Spoken Word + Becoming Better Than When We Started + The Tabernacle Choir at Temple Square performs songs of hope, faith and inspiration, and sings sacred hymns both new and old from around the world as well as uplifting selections from the American songbook. + Music + Religious + + + TVG + + + + Come Follow Up + October 30 - November 5; Hebrews 1 - 6 + Guests James Goldberg and Jenny Cooper. + Religious + Performing Arts + + + TVG + + + + The Chosen + The Rock on Which It Is Built + Fishermen, who can't pay the heavy Roman taxes, are at the end of their ropes, need a miracle. + + Jonathan Roumie + Shahar Isaac + Elizabeth Tabish + + Drama + + + TVPG + + + + Random Acts + Wicked Surprise + Will and Jenna work with Broadway star Shoshana Bean to surprise Molly. + Reality TV + + + TVG + + + + Come Follow Up + November 6 - 12; Hebrews 7 - 13 + Guests Melissa Inouye and Jason Whiting. + Religious + Performing Arts + + + TVG + + + + Music & the Spoken Word + Becoming Better Than When We Started + The Tabernacle Choir at Temple Square performs songs of hope, faith and inspiration, and sings sacred hymns both new and old from around the world as well as uplifting selections from the American songbook. + Music + Religious + + + TVG + + + + The Chosen + The Wedding Gift + Nicodemus interrogates John the Baptist while Jesus and his students make their way to a wedding celebration in Cana. + + Jonathan Roumie + Shahar Isaac + Elizabeth Tabish + + Drama + + + TVPG + + + + A Little Game + Ostracized at her new school and grief-stricken over her grandmother's death, a 10-year-old girl (Makenna Ballard) learns about persevering in the face of inevitable change from an irascible chessmaster (F. Murray Abraham). + + F. Murray Abraham + Ralph Macchio + Olympia Dukakis + + 2014 + Movies + Children + + + + Random Acts + Wicked Surprise + Will and Jenna work with Broadway star Shoshana Bean to surprise Molly. + Reality TV + + + TVG + + + + Malory Towers + The Rivers Sisters + After being selected as head of lower school, Darrell soon feels the demands of leadership when Felicity, her younger sister just starting at Malory Towers, gets into trouble. + + Ella Bright + Danya Griver + Zoey Siewert + + Drama + Children + + + + Malory Towers + The Doubloon + Felicity and June learn about possible treasure at Malory Towers; Darrell's leadership skills are put to the test organising a welcome party for the wayward First Formers. + + Ella Bright + Danya Griver + Zoey Siewert + + Drama + Children + + + + Relative Race + Episode 8 + Four teams compete in a 10-day cross-country road trip to find their long-lost relatives and win a $50,000 grand prize. Every day on the race is filled with twists, turns, and life-changing reunions. + Game Shows + + + TVG + + + + Ruby and the Well + I Wish I Could Feel Love Again + Ruby and Sam join forces to help someone who wants to. + + Zoe Wiesenthal + Kristopher Turner + Lina Sennia + + Drama + + + + Fly Away Home + A Canadian sculptor (Jeff Daniels) builds an ultralight plane so his teen daughter (Anna Paquin) can lead geese south. + + Jeff Daniels + Anna Paquin + Dana Delany + + 1996 + Movies + Children + + + TVG + + + 3 + + + + Heaven Is for Real + A little boy says that he visited heaven during a near-death experience and tells his astonished parents (Greg Kinnear, Kelly Reilly) about things he couldn't possibly know. + + Greg Kinnear + Kelly Reilly + Margo Martindale + + 2014 + Movies + Drama + + + TVG + + + 2 + + + + Heaven Is for Real + A little boy says that he visited heaven during a near-death experience and tells his astonished parents (Greg Kinnear, Kelly Reilly) about things he couldn't possibly know. + + Greg Kinnear + Kelly Reilly + Margo Martindale + + 2014 + Movies + Drama + + + TVG + + + 2 + + + + Fly Away Home + A Canadian sculptor (Jeff Daniels) builds an ultralight plane so his teen daughter (Anna Paquin) can lead geese south. + + Jeff Daniels + Anna Paquin + Dana Delany + + 1996 + Movies + Children + + + TVG + + + 3 + + + + Heaven Is for Real + A little boy says that he visited heaven during a near-death experience and tells his astonished parents (Greg Kinnear, Kelly Reilly) about things he couldn't possibly know. + + Greg Kinnear + Kelly Reilly + Margo Martindale + + 2014 + Movies + Drama + + + TVG + + + 2 + + + + Artful + Bruce and Esther + Esther Hi'ilani Candari and Bruce Smith find purpose in their religious art. + Arts & Entertainment + + + TVG + + + + BYU Women's Conference + Becky Craven + Becky Craven addresses attendees of the BYU 2019 Women's Conference about hope in His will, and waiting upon the Lord. + Talk Shows + Religious + + + TVG + + + + Random Acts + Wyatt's World + Wyatt, who has a brain disability, gets his own world right in his bedroom. + Reality TV + + + TVG + + + + Making Good + Old Skool Cafe + Kirby volunteers at a cafe in San Francisco run entirely by at-risk youth. + Reality TV + + + TVG + + + + BYU Devotional Address + Jamie L. Jensen ----- Faith and Science: Symbiotic Pathways to Truth + Jamie Jensen delivers an inspiring message at this 2020 BYU devotional address. + Talk Shows + Religious + + + TVG + + + + BYU Devotional Address + Elder José A. Teixeira - To Be Spiritually Minded Is Life and Peace + Address from Elder José A. Teixeira of the Church of Jesus Christ of Latter-day Saints. + Talk Shows + Religious + + + TVG + + + + Family Rules + Peace & Preparation + Lessons in preparedness and peace at home from Matt Townsend, Ralphie Jacobs and two families. + Lifestyle + + + TVG + + + + Highway to Heaven + A Song for Jason + While most of the campers find contentment, Jonathan encourages Jason's reluctant father to join in. + + Michael Landon + Victor French + + Drama + + + TVPG + + + + The Inspectors + All About V + Veronica's grandmother becomes a victim of a foreign lottery scam; Veronica worries when her grandmother continues to believe that big winnings are on the way. + + Bret Green + Jessica Lundy + Terry Serpico + + Drama + + + TVG + + + + Wind at My Back + Moonshine Struck + Dealing with a new job and a difficult mother-in-law, Honey finds herself attracted to a charming, yet self-centered police officer. + + Cynthia Belliveau + Shirley Douglas + Kathryn Greenwood + + Drama + + + TVG + + + + Heartland + Running Scared + Tim turns a team penning event into a town spectacle. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + BYU Sports Nation + Hosts Jarom Jordan and Spencer Linton provide an exclusive look at BYU football, basketball and more; in-depth analysis, athlete interviews and commentary on all things BYU athletics. + Sports + Talk Show + + + TVG + + + + Fly Away Home + A Canadian sculptor (Jeff Daniels) builds an ultralight plane so his teen daughter (Anna Paquin) can lead geese south. + + Jeff Daniels + Anna Paquin + Dana Delany + + 1996 + Movies + Children + + + TVG + + + 3 + + + + Random Acts + Hawaiian Hijinks + Christie Rasmussen serves everyone, but has never been on a vacation with just her husband, Brian; Will, Jenna and Mason surprise Christie and Brian with a dream vacation to a place with palm trees; Will and Jenna ask for help in setting up a picnic. + Reality TV + + + TVG + + + + Hetty Feather + The Haunting + Hetty is shocked when a wealthy couple want to adopt one of her friends. + + Isabel Clifton + Gus Barry + + Drama + Children + + + + Wind at My Back + Moonshine Struck + Dealing with a new job and a difficult mother-in-law, Honey finds herself attracted to a charming, yet self-centered police officer. + + Cynthia Belliveau + Shirley Douglas + Kathryn Greenwood + + Drama + + + TVG + + + + Highway to Heaven + A Song for Jason + While most of the campers find contentment, Jonathan encourages Jason's reluctant father to join in. + + Michael Landon + Victor French + + Drama + + + TVPG + + + + Heartland + A Time To Remember + Georgie's graduation has finally arrived but so has a mysterious figure from her past. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Heartland + The Art of Trust + Amy is asked to spend time at an art retreat to work with an artist's allegedly traumatized horse. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Heartland + Legacy + Tim is organizing an important rodeo when an old flame blows back into Hudson asking for his help. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Studio C + A Terrible Tailor + When a teacher is nearly fifteen minutes late, a class discusses what to do; an out of luck door-to-door salesman has found a product he believes in -- his homemade Grrl Scoot Cooksies. + + Garet Allen + Joe Campbell + Jessica Drolet + + Comedy + + + TVG + + + + Studio C + Entertainment includes hoedowns, reality TV, magic shows, road trips and game shows. + + Natalie Madsen + Jason Gray + James Perry + + Comedy + + + TVG + + + + Theodosia + The Games People Play + After experiencing a vision of her favorite haunt engulfed in flames, Theo rushes to the Penny Arcade to find a table-tennis tournament; as Theo and Will face off against Henry and Safiya, the presence of sinister forces threatens to upend the match. + + Eloise Little + Nana Agyeman-Bediako + Yasmina El-Abd + + Children + + + TVPG + + + + Theodosia + Cleaning Catastrophe + As the Throckmortons prepare for a visit with an important official who could ensure their ticket back to Egypt, Theo contends with visions concerning her destiny and the Eye of Horus. + + Eloise Little + Nana Agyeman-Bediako + Yasmina El-Abd + + Children + + + TVPG + + + + Miracles From Heaven + Young Anna Beam (Kylie Rogers) shows signs of recovering from a fatal digestive disorder after telling an amazing story about visiting heaven. + + Jennifer Garner + Kylie Rogers + Martin Henderson + + 2016 + Movies + Drama + + + TVG + + + 2 + + + + Heartland + A Time To Remember + Georgie's graduation has finally arrived but so has a mysterious figure from her past. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Heartland + The Art of Trust + Amy is asked to spend time at an art retreat to work with an artist's allegedly traumatized horse. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Heartland + The Art of Trust + Amy is asked to spend time at an art retreat to work with an artist's allegedly traumatized horse. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Heartland + Legacy + Tim is organizing an important rodeo when an old flame blows back into Hudson asking for his help. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Highway to Heaven + A Song for Jason + While most of the campers find contentment, Jonathan encourages Jason's reluctant father to join in. + + Michael Landon + Victor French + + Drama + + + TVPG + + + + Wind at My Back + Moonshine Struck + Dealing with a new job and a difficult mother-in-law, Honey finds herself attracted to a charming, yet self-centered police officer. + + Cynthia Belliveau + Shirley Douglas + Kathryn Greenwood + + Drama + + + TVG + + + + The Inspectors + Diagnosis: Negative + Amanda and Mitch investigate a double-billing scheme in which patients' insurance is billed for unnecessary treatments and the bills pile up; Amanda and Mitch find that Preston is closer to the crime than they had originally thought. + + Bret Green + Jessica Lundy + Terry Serpico + + Drama + + + TVG + + + + The Inspectors + The Dog House + When a grocery store is robbed, losing hundreds of money orders in the process, Amanda and Mitch investigate; Noah puts on his own play for school. + + Bret Green + Jessica Lundy + Terry Serpico + + Drama + + + TVG + + + + All-Round Champion + Freestyle Skiing + Freestyle Skiing is revealed as the first sport and Gage, along with Olympic champion Jennifer Heil, must train his fellow athletes for the first competition in only three days. + Sports + Children + + + TVY + + + + Random Acts + Make Yourself a Home + Single mother Christine is surprised with exciting additions to her apartment. + Reality TV + + + TVG + + + + Making Good + Operation BBQ Relief + Kirby travels to North Carolina to help BBQ pit masters deliver hot meals to hurricane victims. + Reality TV + + + TVG + + + + BYU Devotional Address + Elder Quentin L. Cook -- Great Expectations + Elder Quentin L. Cook of the Church of Jesus Christ of Latter-day Saints. + Talk Shows + Religious + + + TVG + + + + BYU Devotional Address + Niwako Yamawaki: An Immigrant's Journey Toward God + Niwako Yamawaki shares her journey toward God, her experience as an immigrant, and her testimony of Christ's power to relieve suffering. + Talk Shows + Religious + + + TVG + + + + Grace Notes + Zach Williams & Naomi Raine + Naomi Raine sings. + Music + Religious + + + TVG + + + + Artful + Rebecca Klundt and J Kirk Richards + A look at the work of Rebecca Klundt, a mixed media artist with a. + Arts & Entertainment + + + TVG + + + + Highway to Heaven + Bless the Boys in Blue + Guilt plagues a policeman who shot a teenager brandishing an empty gun. + + Michael Landon + Victor French + + Drama + + + TVPG + + + + The Inspectors + Cat in a Coal Mine + The Inspectors investigate a synthetic opioid case when one of their own accidentally comes into contact with a dangerous substance; Veronica is worried about an upcoming chemistry exam; her study partner offers her a boost that he thinks could help. + + Bret Green + Jessica Lundy + Terry Serpico + + Drama + + + TVG + + + + Wind at My Back + Train to Nowhere + Aunt Toppy (Robing Craig) becomes consumed with producing one of Max's (James Carroll) old, unsold radio plays for the stage. + + Cynthia Belliveau + Shirley Douglas + Kathryn Greenwood + + Drama + + + TVG + + + + Heartland + Stress Fractures + Lou returns with an idea to attract guests. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + BYU Sports Nation + Hosts Jarom Jordan and Spencer Linton provide an exclusive look at BYU football, basketball and more; in-depth analysis, athlete interviews and commentary on all things BYU athletics. + Sports + Talk Show + + + TVG + + + + BYU Devotional Address + Elder Gary B. Sabin + BYU's weekly devotional broadcast from the Provo, Utah, campus; faculty members, religious leaders, and special guests speak to students; featuring performances from the BYU campus choirs. + Talk Shows + Religious + + + TVG + + + + Grace Notes + Danny Gokey; Aaliyah Rose + Two-time Dove award winner Danny Gokey performs. + Music + Religious + + + TVG + + + + Artful + Eva Koleva Timothy and Liz Harris + Eva Koleva Timothy is a celebrated photographer whose parents taught her to search for light while growing up in Soviet Bulgaria; Liz Harris communicates the divinity and humanity of her subjects through her portraits. + Arts & Entertainment + + + TVG + + + + Random Acts + Love and Lederhosen + Ricky and Lexi were both diagnosed with cancer as teenagers, and they eventually met and fell in love at the hospital while receiving treatment; Emilie and Mason surprise Ricky and Lexi with a Bavarian dinner full of family and friends. + Reality TV + + + TVG + + + + Hetty Feather + Words from Home + Hetty has a surprise visitor with important news but can she meet him without getting caught? + + Isabel Clifton + Gus Barry + + Drama + Children + + + + Wind at My Back + Train to Nowhere + Aunt Toppy (Robing Craig) becomes consumed with producing one of Max's (James Carroll) old, unsold radio plays for the stage. + + Cynthia Belliveau + Shirley Douglas + Kathryn Greenwood + + Drama + + + TVG + + + + Highway to Heaven + Bless the Boys in Blue + Guilt plagues a policeman who shot a teenager brandishing an empty gun. + + Michael Landon + Victor French + + Drama + + + TVPG + + + + Heartland + Fight or Flight + Amy and Ty get some unexpected news about Luke just as Amy has to face an upsetting truth about Spartan. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Heartland + The Passing of the Torch + When fears of holding on or letting go grip the family, they look to each other for support through dangerous challenges. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Heartland + Keep Me In Your Heart + The past year has brought unexpected change to the Heartland family; Amy deals with a major upheaval in her life; Lou copes with the reality of being the mayor of Hudson; Georgie revisits her dream of the Olympics. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Heartland + Running Against the Wind + Amy wants to ask Ty about the engagement ring, but a couple of runaways throw everything into turmoil. + + Amber Marshall + Chris Potter + Michelle Morgan + + Drama + + + TVPG + + + + Heartland + Crossed Signals + Ty struggles with the fact that Amy found the ring and must decide to propose to her or not. + + Amber Marshall + Chris Potter + Michelle Morgan + + Drama + + + TVPG + + + + Malory Towers + The Kiss + Gwen enlists Mary-Lou's help writing a love letter to her new beau at Thackerton College; when Mary-Lou gets in a muddle it leads to a surprising romance. + + Ella Bright + Danya Griver + Zoey Siewert + + Drama + Children + + + + Malory Towers + The Midnight Surprise + When Felicity and June accidentally smash a window during tennis; they uncover an astonishing secret; Alicia organizes a midnight feast in the garden. + + Ella Bright + Danya Griver + Zoey Siewert + + Drama + Children + + + + Ruby and the Well + I Wish I Could Feel Love Again + Ruby and Sam join forces to help someone who wants to. + + Zoe Wiesenthal + Kristopher Turner + Lina Sennia + + Drama + + + + Holly Hobbie + The Bestie Bonfire + Holly enlists Amy's help to plan a secret welcome party for Justin, but Amy invites her new friend, Savannah. + + Ruby Jay + Saara Chaudry + Kamaia Fairburn + + Comedy + + + TVPG + + + + Holly Hobbie + The Aspiring Ally + When a man in Collinsville racially profiles Justin, Holly begins educating herself on racism in her community. + + Ruby Jay + Saara Chaudry + Kamaia Fairburn + + Comedy + + + TVPG + + + + Heartland + Fight or Flight + Amy and Ty get some unexpected news about Luke just as Amy has to face an upsetting truth about Spartan. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Heartland + The Passing of the Torch + When fears of holding on or letting go grip the family, they look to each other for support through dangerous challenges. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Heartland + The Passing of the Torch + When fears of holding on or letting go grip the family, they look to each other for support through dangerous challenges. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Heartland + Keep Me In Your Heart + The past year has brought unexpected change to the Heartland family; Amy deals with a major upheaval in her life; Lou copes with the reality of being the mayor of Hudson; Georgie revisits her dream of the Olympics. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Highway to Heaven + Bless the Boys in Blue + Guilt plagues a policeman who shot a teenager brandishing an empty gun. + + Michael Landon + Victor French + + Drama + + + TVPG + + + + Wind at My Back + Train to Nowhere + Aunt Toppy (Robing Craig) becomes consumed with producing one of Max's (James Carroll) old, unsold radio plays for the stage. + + Cynthia Belliveau + Shirley Douglas + Kathryn Greenwood + + Drama + + + TVG + + + + The Inspectors + Scam School + Scam schools teach young college students how to commit scams; Amanda and Mitch are on the case, with more help from Noah than they could have imagined. + + Bret Green + Jessica Lundy + Terry Serpico + + Drama + + + TVG + + + + The Inspectors + Shields and Potions + Amanda and Mitch investigate a robbery at a local post office; Preston and Veronica help Noah compete in his favorite live action role-playing game,. + + Bret Green + Jessica Lundy + Terry Serpico + + Drama + + + TVG + + + + All-Round Champion + Figure Skating + Caiyla and Olympic gold medalist Jaime Salé show the athletes the basics of figure skating; they start with rollerblading to practice balance. + Sports + Children + + + TVY + + + + Random Acts + Saved by Service + A young accident survivor meets her rescuer for the first time while attending a Utah Jazz professional basketball game. + Reality TV + + + TVG + + + + Making Good + Home Works of America + In South Carolina, Kirby volunteers for a charity that rebuilds homes in disrepair. + Reality TV + + + TVG + + + + BYU Devotional Address + Matthew Wickman + An address from the professor of English and founding director of the BYU Humanities Center, Matthew Wickman. + Talk Shows + Religious + + + TVG + + + + LDS Conference Report + Jeffrey R. Holland + Discussion points and transcripts stemming from the Latter-day Saints General Conference Report. + Religious + + + TVG + + + + Hello Sunday + Callings + Alex Boyé opens up about an experience that changed the course of his life. + Religious + + + TVG + + + + Music & the Spoken Word + Becoming Better Than When We Started + The Tabernacle Choir at Temple Square performs songs of hope, faith and inspiration, and sings sacred hymns both new and old from around the world as well as uplifting selections from the American songbook. + Music + Religious + + + TVG + + + + Highway to Heaven + Cindy + Jonathan performs a miracle for the hard-working daughter of a struggling theatrical agent; guests Bill Macy, Alice Ghostley. + + Michael Landon + Victor French + + Drama + + + TVPG + + + + The Inspectors + Stop the Presses + A journalist at a newspaper receives a ransom letter stating that the editor has been kidnapped; Veronica clashes with her news producer about the type of stories they should report. + + Bret Green + Jessica Lundy + Terry Serpico + + Drama + + + TVG + + + + Wind at My Back + Aunt Grace's Wedding + May (Shirley Douglas) disapproves of Graces' (Kathryn Greenwood) plan to join Judd (Dan Redican) at an out-of-town wedding. + + Cynthia Belliveau + Shirley Douglas + Kathryn Greenwood + + Drama + + + TVG + + + + Heartland + Long Road Back + Amy and Ty treat a doped racehorse. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + BYU Sports Nation + Hosts Jarom Jordan and Spencer Linton provide an exclusive look at BYU football, basketball and more; in-depth analysis, athlete interviews and commentary on all things BYU athletics. + Sports + Talk Show + + + TVG + + + + The Fixers + Sustainable Bolivia + The Fixers build a community-run kitchen in the Bolivian Amazon rainforest. + + Kirin Stone + Courtney Dober + Nick Apostolides + + Travel + Local + + + TVG + + + + The Wizard of Paws + Sister, Sister + In North Carolina, Derrick surprises Kamyrn and creates a full-limb prosthetic for her dog Amiri. + Animals + Reality TV + + + TVG + + + + Making Good + Trenton Circus Squad + Kirby helps a young circus troupe in Trenton, N.J. + Reality TV + + + TVG + + + + Random Acts + Dream Driveway + Random Acts eases a burden of a young mother dealing with chronic pain. + Reality TV + + + TVG + + + + Hetty Feather + Changes + Gideon tells a lie which gets Hetty into trouble, and Matron Bottomly has mysteriously disappeared. + + Isabel Clifton + Gus Barry + + Drama + Children + + + + Wind at My Back + Aunt Grace's Wedding + May (Shirley Douglas) disapproves of Graces' (Kathryn Greenwood) plan to join Judd (Dan Redican) at an out-of-town wedding. + + Cynthia Belliveau + Shirley Douglas + Kathryn Greenwood + + Drama + + + TVG + + + + Highway to Heaven + Cindy + Jonathan performs a miracle for the hard-working daughter of a struggling theatrical agent; guests Bill Macy, Alice Ghostley. + + Michael Landon + Victor French + + Drama + + + TVPG + + + + Heartland + The Last Goodbye + Amy must face a difficult truth when her efforts to help a young girl form a connection with her new horse takes an unexpected turn; Lou faces harsh criticism as mayor; a cattle drive brings up difficult memories for Jack. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Heartland + Making Amends + Amy grudgingly helps Ty's mother, Lily, with a traumatized racehorse; Lou gets into even more hot water when she tries to sell Hudson as a. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Word Party + Four adorable baby animals want to learn and have fun. + + Victor Yerrid + Alice Dinnean + Alon Williams + + Animated + Children + + + TVY + + + + Harry & Larry - Pros Who Help + Harry the Bunny and Larry the parrot play, laugh and learn all about the professionals who help us in everyday life. + Specials + Children + + + TVY7 + + + + GooGoo & GaaGaa + Curious baby friends love to laugh, learn and play musical instruments. + Children + Instructional + + + TVY + + + + Mama & Me: Sing Along + Join us for a sing along adventure, filled with popular nursery rhymes and BabyFirst classics for you and your child to share! Subtitles are displayed on screen. + Specials + Children + + + TVY + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + BabyFirst Bedtime + Bedtime stories and songs. + Children + Instructional + + + TVG + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + Developmental Programs for Baby + Introduce your baby to basic milestones such as new words, numbers, music, and more. Parents are invited to interact with on-screen cues. + Children + Instructional + + + TVY + + + + Developmental Programs for Baby + Introduce your baby to basic milestones such as new words, numbers, music, and more. Parents are invited to interact with on-screen cues. + Children + Instructional + + + TVY + + + + Developmental Programs for Baby + Introduce your baby to basic milestones such as new words, numbers, music, and more. Parents are invited to interact with on-screen cues. + Children + Instructional + + + TVY + + + + Developmental Programs for Baby + Introduce your baby to basic milestones such as new words, numbers, music, and more. Parents are invited to interact with on-screen cues. + Children + Instructional + + + TVY + + + + Early Bloomers + Shows designed to stimulate the visual capabilities, thought processes and attention spans of younger babies. + Children + Instructional + + + TVY + + + + Early Bloomers + Shows designed to stimulate the visual capabilities, thought processes and attention spans of younger babies. + Children + Instructional + + + TVY + + + + Rise & Shine + Children + Instructional + + + TVY + + + + Rise & Shine + Children + Instructional + + + TVY + + + + Rise & Shine + Children + Instructional + + + TVY + + + + Rise & Shine + Children + Instructional + + + TVY + + + + Color Crew + A lively bunch of crayons explore all the colors of the world and introduce basic colors in their very own special way. + Animated + Children + + + TVG + + + + Mama & Me: Tot School + Shows for a baby that focus on important building blocks such as 123s and ABCs. + Children + + + TVY + + + + Breakfast Club + Children + Instructional + + + TVY + + + + Breakfast Club + Children + Instructional + + + TVY + + + + Breakfast Club + Children + Instructional + + + TVY + + + + Breakfast Club + Children + Instructional + + + TVY + + + + Play Time with Al + Al is a funny friend that always wants to have fun. Whether it's solving riddles, telling stories, singing songs or playing games, Al will always encourage little ones to interact, find solutions and have a great time. + Children + Instructional + + + TVY + + + + Play Time with Al + Al is a funny friend that always wants to have fun. Whether it's solving riddles, telling stories, singing songs or playing games, Al will always encourage little ones to interact, find solutions and have a great time. + Children + Instructional + + + TVY + + + + BabyFirst Favorite + Introduce your baby to the best educational content of BabyFirst! On-screen cues for parents to interact. + Specials + Children + + + TVG + + + + BabyFirst Favorite + Introduce your baby to the best educational content of BabyFirst! On-screen cues for parents to interact. + Specials + Children + + + TVG + + + + Mama & Me: Tot School + Shows for a baby that focus on important building blocks such as 123s and ABCs. + Children + + + TVY + + + + Art & Music + Explore the world of arts with your baby through dance, music, movement, and more - while encouraging creative expression. + Children + Instructional + + + TVY + + + + Developmental Programs for Baby + Introduce your baby to basic milestones such as new words, numbers, music, and more. Parents are invited to interact with on-screen cues. + Children + Instructional + + + TVY + + + + Early Bloomers + Shows designed to stimulate the visual capabilities, thought processes and attention spans of younger babies. + Children + Instructional + + + TVY + + + + Mama & Me: Fun Time + Join us in family togetherness time with favorite shows like My Gym at Home, Baby DIY, BabyFirst Tales and more. + Children + + + TVY + + + + Mama & Me: Sing Along + Join us for a sing along adventure, filled with popular nursery rhymes and BabyFirst classics for you and your child to share! Subtitles are displayed on screen. + Specials + Children + + + TVY + + + + Mama & Me: Tot School + Shows for a baby that focus on important building blocks such as 123s and ABCs. + Children + + + TVY + + + + Developmental Programs for Baby + Introduce your baby to basic milestones such as new words, numbers, music, and more. Parents are invited to interact with on-screen cues. + Children + Instructional + + + TVY + + + + BabyFirst Club + Programs allow babies to explore the world around them. + Children + Instructional + + + TVG + + + + BabyFirst Club + Programs allow babies to explore the world around them. + Children + Instructional + + + TVG + + + + BabyFirst Club + Programs allow babies to explore the world around them. + Children + Instructional + + + TVG + + + + BabyFirst Club + Programs allow babies to explore the world around them. + Children + Instructional + + + TVG + + + + Play Time with Al + Al is a funny friend that always wants to have fun. Whether it's solving riddles, telling stories, singing songs or playing games, Al will always encourage little ones to interact, find solutions and have a great time. + Children + Instructional + + + TVY + + + + Play Time with Al + Al is a funny friend that always wants to have fun. Whether it's solving riddles, telling stories, singing songs or playing games, Al will always encourage little ones to interact, find solutions and have a great time. + Children + Instructional + + + TVY + + + + Developmental Programs for Baby + Introduce your baby to basic milestones such as new words, numbers, music, and more. Parents are invited to interact with on-screen cues. + Children + Instructional + + + TVY + + + + Art & Music + Explore the world of arts with your baby through dance, music, movement, and more - while encouraging creative expression. + Children + Instructional + + + TVY + + + + Mama & Me: Sing Along + Join us for a sing along adventure, filled with popular nursery rhymes and BabyFirst classics for you and your child to share! Subtitles are displayed on screen. + Specials + Children + + + TVY + + + + BabyFirst Favorite + Introduce your baby to the best educational content of BabyFirst! On-screen cues for parents to interact. + Specials + Children + + + TVG + + + + BabyFirst Favorite + Introduce your baby to the best educational content of BabyFirst! On-screen cues for parents to interact. + Specials + Children + + + TVG + + + + BabyFirst Bedtime + Bedtime stories and songs. + Children + Instructional + + + TVG + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + Developmental Programs for Baby + Introduce your baby to basic milestones such as new words, numbers, music, and more. Parents are invited to interact with on-screen cues. + Children + Instructional + + + TVY + + + + Developmental Programs for Baby + Introduce your baby to basic milestones such as new words, numbers, music, and more. Parents are invited to interact with on-screen cues. + Children + Instructional + + + TVY + + + + Developmental Programs for Baby + Introduce your baby to basic milestones such as new words, numbers, music, and more. Parents are invited to interact with on-screen cues. + Children + Instructional + + + TVY + + + + Developmental Programs for Baby + Introduce your baby to basic milestones such as new words, numbers, music, and more. Parents are invited to interact with on-screen cues. + Children + Instructional + + + TVY + + + + Early Bloomers + Shows designed to stimulate the visual capabilities, thought processes and attention spans of younger babies. + Children + Instructional + + + TVY + + + + Early Bloomers + Shows designed to stimulate the visual capabilities, thought processes and attention spans of younger babies. + Children + Instructional + + + TVY + + + + Rise & Shine + Children + Instructional + + + TVY + + + + Rise & Shine + Children + Instructional + + + TVY + + + + Rise & Shine + Children + Instructional + + + TVY + + + + Rise & Shine + Children + Instructional + + + TVY + + + + Color Crew + A lively bunch of crayons explore all the colors of the world and introduce basic colors in their very own special way. + Animated + Children + + + TVG + + + + Mama & Me: Tot School + Shows for a baby that focus on important building blocks such as 123s and ABCs. + Children + + + TVY + + + + Breakfast Club + Children + Instructional + + + TVY + + + + Breakfast Club + Children + Instructional + + + TVY + + + + Breakfast Club + Children + Instructional + + + TVY + + + + Breakfast Club + Children + Instructional + + + TVY + + + + Play Time with Al + Al is a funny friend that always wants to have fun. Whether it's solving riddles, telling stories, singing songs or playing games, Al will always encourage little ones to interact, find solutions and have a great time. + Children + Instructional + + + TVY + + + + Play Time with Al + Al is a funny friend that always wants to have fun. Whether it's solving riddles, telling stories, singing songs or playing games, Al will always encourage little ones to interact, find solutions and have a great time. + Children + Instructional + + + TVY + + + + BabyFirst Favorite + Introduce your baby to the best educational content of BabyFirst! On-screen cues for parents to interact. + Specials + Children + + + TVG + + + + BabyFirst Favorite + Introduce your baby to the best educational content of BabyFirst! On-screen cues for parents to interact. + Specials + Children + + + TVG + + + + Mama & Me: Tot School + Shows for a baby that focus on important building blocks such as 123s and ABCs. + Children + + + TVY + + + + Art & Music + Explore the world of arts with your baby through dance, music, movement, and more - while encouraging creative expression. + Children + Instructional + + + TVY + + + + Developmental Programs for Baby + Introduce your baby to basic milestones such as new words, numbers, music, and more. Parents are invited to interact with on-screen cues. + Children + Instructional + + + TVY + + + + Early Bloomers + Shows designed to stimulate the visual capabilities, thought processes and attention spans of younger babies. + Children + Instructional + + + TVY + + + + Mama & Me: Fun Time + Join us in family togetherness time with favorite shows like My Gym at Home, Baby DIY, BabyFirst Tales and more. + Children + + + TVY + + + + Mama & Me: Sing Along + Join us for a sing along adventure, filled with popular nursery rhymes and BabyFirst classics for you and your child to share! Subtitles are displayed on screen. + Specials + Children + + + TVY + + + + Mama & Me: Tot School + Shows for a baby that focus on important building blocks such as 123s and ABCs. + Children + + + TVY + + + + Developmental Programs for Baby + Introduce your baby to basic milestones such as new words, numbers, music, and more. Parents are invited to interact with on-screen cues. + Children + Instructional + + + TVY + + + + BabyFirst Club + Programs allow babies to explore the world around them. + Children + Instructional + + + TVG + + + + BabyFirst Club + Programs allow babies to explore the world around them. + Children + Instructional + + + TVG + + + + BabyFirst Club + Programs allow babies to explore the world around them. + Children + Instructional + + + TVG + + + + BabyFirst Club + Programs allow babies to explore the world around them. + Children + Instructional + + + TVG + + + + Play Time with Al + Al is a funny friend that always wants to have fun. Whether it's solving riddles, telling stories, singing songs or playing games, Al will always encourage little ones to interact, find solutions and have a great time. + Children + Instructional + + + TVY + + + + Play Time with Al + Al is a funny friend that always wants to have fun. Whether it's solving riddles, telling stories, singing songs or playing games, Al will always encourage little ones to interact, find solutions and have a great time. + Children + Instructional + + + TVY + + + + Developmental Programs for Baby + Introduce your baby to basic milestones such as new words, numbers, music, and more. Parents are invited to interact with on-screen cues. + Children + Instructional + + + TVY + + + + Art & Music + Explore the world of arts with your baby through dance, music, movement, and more - while encouraging creative expression. + Children + Instructional + + + TVY + + + + Mama & Me: Sing Along + Join us for a sing along adventure, filled with popular nursery rhymes and BabyFirst classics for you and your child to share! Subtitles are displayed on screen. + Specials + Children + + + TVY + + + + BabyFirst Favorite + Introduce your baby to the best educational content of BabyFirst! On-screen cues for parents to interact. + Specials + Children + + + TVG + + + + BabyFirst Favorite + Introduce your baby to the best educational content of BabyFirst! On-screen cues for parents to interact. + Specials + Children + + + TVG + + + + BabyFirst Bedtime + Bedtime stories and songs. + Children + Instructional + + + TVG + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + Developmental Programs for Baby + Introduce your baby to basic milestones such as new words, numbers, music, and more. Parents are invited to interact with on-screen cues. + Children + Instructional + + + TVY + + + + Developmental Programs for Baby + Introduce your baby to basic milestones such as new words, numbers, music, and more. Parents are invited to interact with on-screen cues. + Children + Instructional + + + TVY + + + + Developmental Programs for Baby + Introduce your baby to basic milestones such as new words, numbers, music, and more. Parents are invited to interact with on-screen cues. + Children + Instructional + + + TVY + + + + Developmental Programs for Baby + Introduce your baby to basic milestones such as new words, numbers, music, and more. Parents are invited to interact with on-screen cues. + Children + Instructional + + + TVY + + + + Early Bloomers + Shows designed to stimulate the visual capabilities, thought processes and attention spans of younger babies. + Children + Instructional + + + TVY + + + + Early Bloomers + Shows designed to stimulate the visual capabilities, thought processes and attention spans of younger babies. + Children + Instructional + + + TVY + + + + Rise & Shine + Children + Instructional + + + TVY + + + + Rise & Shine + Children + Instructional + + + TVY + + + + Rise & Shine + Children + Instructional + + + TVY + + + + Rise & Shine + Children + Instructional + + + TVY + + + + Color Crew + A lively bunch of crayons explore all the colors of the world and introduce basic colors in their very own special way. + Animated + Children + + + TVG + + + + Mama & Me: Tot School + Shows for a baby that focus on important building blocks such as 123s and ABCs. + Children + + + TVY + + + + Breakfast Club + Children + Instructional + + + TVY + + + + Breakfast Club + Children + Instructional + + + TVY + + + + Breakfast Club + Children + Instructional + + + TVY + + + + Breakfast Club + Children + Instructional + + + TVY + + + + Play Time with Al + Al is a funny friend that always wants to have fun. Whether it's solving riddles, telling stories, singing songs or playing games, Al will always encourage little ones to interact, find solutions and have a great time. + Children + Instructional + + + TVY + + + + Play Time with Al + Al is a funny friend that always wants to have fun. Whether it's solving riddles, telling stories, singing songs or playing games, Al will always encourage little ones to interact, find solutions and have a great time. + Children + Instructional + + + TVY + + + + BabyFirst Favorite + Introduce your baby to the best educational content of BabyFirst! On-screen cues for parents to interact. + Specials + Children + + + TVG + + + + BabyFirst Favorite + Introduce your baby to the best educational content of BabyFirst! On-screen cues for parents to interact. + Specials + Children + + + TVG + + + + Mama & Me: Tot School + Shows for a baby that focus on important building blocks such as 123s and ABCs. + Children + + + TVY + + + + Art & Music + Explore the world of arts with your baby through dance, music, movement, and more - while encouraging creative expression. + Children + Instructional + + + TVY + + + + Developmental Programs for Baby + Introduce your baby to basic milestones such as new words, numbers, music, and more. Parents are invited to interact with on-screen cues. + Children + Instructional + + + TVY + + + + Early Bloomers + Shows designed to stimulate the visual capabilities, thought processes and attention spans of younger babies. + Children + Instructional + + + TVY + + + + Mama & Me: Fun Time + Join us in family togetherness time with favorite shows like My Gym at Home, Baby DIY, BabyFirst Tales and more. + Children + + + TVY + + + + Mama & Me: Sing Along + Join us for a sing along adventure, filled with popular nursery rhymes and BabyFirst classics for you and your child to share! Subtitles are displayed on screen. + Specials + Children + + + TVY + + + + Mama & Me: Tot School + Shows for a baby that focus on important building blocks such as 123s and ABCs. + Children + + + TVY + + + + Developmental Programs for Baby + Introduce your baby to basic milestones such as new words, numbers, music, and more. Parents are invited to interact with on-screen cues. + Children + Instructional + + + TVY + + + + BabyFirst Club + Programs allow babies to explore the world around them. + Children + Instructional + + + TVG + + + + BabyFirst Club + Programs allow babies to explore the world around them. + Children + Instructional + + + TVG + + + + BabyFirst Club + Programs allow babies to explore the world around them. + Children + Instructional + + + TVG + + + + BabyFirst Club + Programs allow babies to explore the world around them. + Children + Instructional + + + TVG + + + + Play Time with Al + Al is a funny friend that always wants to have fun. Whether it's solving riddles, telling stories, singing songs or playing games, Al will always encourage little ones to interact, find solutions and have a great time. + Children + Instructional + + + TVY + + + + Play Time with Al + Al is a funny friend that always wants to have fun. Whether it's solving riddles, telling stories, singing songs or playing games, Al will always encourage little ones to interact, find solutions and have a great time. + Children + Instructional + + + TVY + + + + Developmental Programs for Baby + Introduce your baby to basic milestones such as new words, numbers, music, and more. Parents are invited to interact with on-screen cues. + Children + Instructional + + + TVY + + + + Art & Music + Explore the world of arts with your baby through dance, music, movement, and more - while encouraging creative expression. + Children + Instructional + + + TVY + + + + Mama & Me: Sing Along + Join us for a sing along adventure, filled with popular nursery rhymes and BabyFirst classics for you and your child to share! Subtitles are displayed on screen. + Specials + Children + + + TVY + + + + BabyFirst Favorite + Introduce your baby to the best educational content of BabyFirst! On-screen cues for parents to interact. + Specials + Children + + + TVG + + + + BabyFirst Favorite + Introduce your baby to the best educational content of BabyFirst! On-screen cues for parents to interact. + Specials + Children + + + TVG + + + + BabyFirst Bedtime + Bedtime stories and songs. + Children + Instructional + + + TVG + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + BabyFirst After Hours + A selection of shows for children. + Children + Performing Arts + + + + Developmental Programs for Baby + Introduce your baby to basic milestones such as new words, numbers, music, and more. Parents are invited to interact with on-screen cues. + Children + Instructional + + + TVY + + + + Developmental Programs for Baby + Introduce your baby to basic milestones such as new words, numbers, music, and more. Parents are invited to interact with on-screen cues. + Children + Instructional + + + TVY + + + + Developmental Programs for Baby + Introduce your baby to basic milestones such as new words, numbers, music, and more. Parents are invited to interact with on-screen cues. + Children + Instructional + + + TVY + + + + Developmental Programs for Baby + Introduce your baby to basic milestones such as new words, numbers, music, and more. Parents are invited to interact with on-screen cues. + Children + Instructional + + + TVY + + + + Early Bloomers + Shows designed to stimulate the visual capabilities, thought processes and attention spans of younger babies. + Children + Instructional + + + TVY + + + + Early Bloomers + Shows designed to stimulate the visual capabilities, thought processes and attention spans of younger babies. + Children + Instructional + + + TVY + + + + Rise & Shine + Children + Instructional + + + TVY + + + + Rise & Shine + Children + Instructional + + + TVY + + + + Rise & Shine + Children + Instructional + + + TVY + + + + Rise & Shine + Children + Instructional + + + TVY + + + + Color Crew + A lively bunch of crayons explore all the colors of the world and introduce basic colors in their very own special way. + Animated + Children + + + TVG + + + + Mama & Me: Tot School + Shows for a baby that focus on important building blocks such as 123s and ABCs. + Children + + + TVY + + + + Breakfast Club + Children + Instructional + + + TVY + + + + Breakfast Club + Children + Instructional + + + TVY + + + + Breakfast Club + Children + Instructional + + + TVY + + + + Breakfast Club + Children + Instructional + + + TVY + + + + Play Time with Al + Al is a funny friend that always wants to have fun. Whether it's solving riddles, telling stories, singing songs or playing games, Al will always encourage little ones to interact, find solutions and have a great time. + Children + Instructional + + + TVY + + + + Play Time with Al + Al is a funny friend that always wants to have fun. Whether it's solving riddles, telling stories, singing songs or playing games, Al will always encourage little ones to interact, find solutions and have a great time. + Children + Instructional + + + TVY + + + + BabyFirst Favorite + Introduce your baby to the best educational content of BabyFirst! On-screen cues for parents to interact. + Specials + Children + + + TVG + + + + BabyFirst Favorite + Introduce your baby to the best educational content of BabyFirst! On-screen cues for parents to interact. + Specials + Children + + + TVG + + + + Mama & Me: Tot School + Shows for a baby that focus on important building blocks such as 123s and ABCs. + Children + + + TVY + + + + Art & Music + Explore the world of arts with your baby through dance, music, movement, and more - while encouraging creative expression. + Children + Instructional + + + TVY + + + + Developmental Programs for Baby + Introduce your baby to basic milestones such as new words, numbers, music, and more. Parents are invited to interact with on-screen cues. + Children + Instructional + + + TVY + + + + Early Bloomers + Shows designed to stimulate the visual capabilities, thought processes and attention spans of younger babies. + Children + Instructional + + + TVY + + + + Mama & Me: Fun Time + Join us in family togetherness time with favorite shows like My Gym at Home, Baby DIY, BabyFirst Tales and more. + Children + + + TVY + + + + Mama & Me: Sing Along + Join us for a sing along adventure, filled with popular nursery rhymes and BabyFirst classics for you and your child to share! Subtitles are displayed on screen. + Specials + Children + + + TVY + + + + Mama & Me: Tot School + Shows for a baby that focus on important building blocks such as 123s and ABCs. + Children + + + TVY + + + + Developmental Programs for Baby + Introduce your baby to basic milestones such as new words, numbers, music, and more. Parents are invited to interact with on-screen cues. + Children + Instructional + + + TVY + + + + BabyFirst Club + Programs allow babies to explore the world around them. + Children + Instructional + + + TVG + + + + BabyFirst Club + Programs allow babies to explore the world around them. + Children + Instructional + + + TVG + + + + BabyFirst Club + Programs allow babies to explore the world around them. + Children + Instructional + + + TVG + + + + BabyFirst Club + Programs allow babies to explore the world around them. + Children + Instructional + + + TVG + + + + Fabuloso vocabulario + Cuatro lindos y adorables animalitos quieren que todos se unan a la diversión y que les ayuden a aprender. + + Victor Yerrid + Alice Dinnean + Alon Williams + + Animated + Children + + + TVY + + + + Harry y Larry: ¡Profesiones que Ayudan! + El conejito Harry y el loro Larry ríen y aprenden sobre los profesionales que ayudan a las personas todos los días. + Children + Instructional + + + TVY + + + + Googoo y Gaga + Un espacio para divertirse junto a Googoo y Gaga, el bebé más curioso y entusiasta. Nuevos vehículos, formas y colores para aprender. + Specials + Children + + + + Mamá y Yo - Cantemos + Una aventura repleta de divertidas canciones, con clásicos que todos los bebés aman y subtítulos para disfrutar plenamente del karaoke. + Specials + Children + + + TVY + + + + A la Camita con BabyFirst + Historias y canciones para que los bebés vayan a dormir. + Children + Instructional + + + TVG + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Floreciendo Temprano + Show diseñado para estimular las capacidades visuales, procesos del pensamiento y la capacidad de atención de los bebés más pequeños. + Children + Instructional + + + TVY + + + + Floreciendo Temprano + Show diseñado para estimular las capacidades visuales, procesos del pensamiento y la capacidad de atención de los bebés más pequeños. + Children + Instructional + + + TVY + + + + Levántate y brilla + Un programa divertido y energético que da al espectador un gran comienzo al día. + Children + Instructional + + + TVY + + + + Pandilla de colores + Todo sobre los colores. + Children + Instructional + + + TVY + + + + Mamá y Yo - Preescolar + Programas para los bebés que se centran en elementos importantes tales como 123 y ABC. + Children + + + TVY + + + + Club del Desayuno + Un viaje de descubrimiento lleno de diversión les da a los bebés un buen comienzo por la mañana. + Children + Instructional + + + TVG + + + + Club del Desayuno + Un viaje de descubrimiento lleno de diversión les da a los bebés un buen comienzo por la mañana. + Children + Instructional + + + TVG + + + + Club del Desayuno + Un viaje de descubrimiento lleno de diversión les da a los bebés un buen comienzo por la mañana. + Children + Instructional + + + TVG + + + + Club del Desayuno + Un viaje de descubrimiento lleno de diversión les da a los bebés un buen comienzo por la mañana. + Children + Instructional + + + TVG + + + + Club del Desayuno + Un viaje de descubrimiento lleno de diversión les da a los bebés un buen comienzo por la mañana. + Children + Instructional + + + TVG + + + + Hora de jugar con Al + Al es un amigo jovial que siempre quiere divertirse. Ya sea resolviendo enigmas, contando historias, cantando canciones o jugando juegos, Al siempre animará a los pequeños a interactuar, encontrar soluciones y ¡pasar un buen rato! + Children + Instructional + + + TVY + + + + Programas para el desarrollo del bebé + Una introducción a las palabras, música y animales para bebés con señales que aparecen en la pantalla para que los padres puedan interactuar con sus hijos. + Children + Instructional + + + TVY + + + + Programas para el desarrollo del bebé + Una introducción a las palabras, música y animales para bebés con señales que aparecen en la pantalla para que los padres puedan interactuar con sus hijos. + Children + Instructional + + + TVY + + + + Mamá y Yo - Preescolar + Programas para los bebés que se centran en elementos importantes tales como 123 y ABC. + Children + + + TVY + + + + Música y arte + Un espacio para aprender a explorar el mundo del arte con los bebés. A través de la danza, la música, el movimiento, y más, se fomenta la expresión creativa. + Instructional + Performing Arts + + + + Programas para el desarrollo del bebé + Una introducción a las palabras, música y animales para bebés con señales que aparecen en la pantalla para que los padres puedan interactuar con sus hijos. + Children + Instructional + + + TVY + + + + Floreciendo Temprano + Show diseñado para estimular las capacidades visuales, procesos del pensamiento y la capacidad de atención de los bebés más pequeños. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Mamá y Yo - Cantemos + Una aventura repleta de divertidas canciones, con clásicos que todos los bebés aman y subtítulos para disfrutar plenamente del karaoke. + Specials + Children + + + TVY + + + + Mamá y Yo - Preescolar + Programas para los bebés que se centran en elementos importantes tales como 123 y ABC. + Children + + + TVY + + + + Mamá y Yo - Preescolar + Programas para los bebés que se centran en elementos importantes tales como 123 y ABC. + Children + + + TVY + + + + Club de Baby First + Programas que permiten que los bebés exploren el mundo y sus alrededores. + Children + Instructional + + + TVG + + + + Club de Baby First + Programas que permiten que los bebés exploren el mundo y sus alrededores. + Children + Instructional + + + TVG + + + + Club de Baby First + Programas que permiten que los bebés exploren el mundo y sus alrededores. + Children + Instructional + + + TVG + + + + Club de Baby First + Programas que permiten que los bebés exploren el mundo y sus alrededores. + Children + Instructional + + + TVG + + + + Club de Baby First + Programas que permiten que los bebés exploren el mundo y sus alrededores. + Children + Instructional + + + TVG + + + + Club de Baby First + Programas que permiten que los bebés exploren el mundo y sus alrededores. + Children + Instructional + + + TVG + + + + Club de Baby First + Programas que permiten que los bebés exploren el mundo y sus alrededores. + Children + Instructional + + + TVG + + + + Música y arte + Un espacio para aprender a explorar el mundo del arte con los bebés. A través de la danza, la música, el movimiento, y más, se fomenta la expresión creativa. + Instructional + Performing Arts + + + + Mamá y Yo - Cantemos + Una aventura repleta de divertidas canciones, con clásicos que todos los bebés aman y subtítulos para disfrutar plenamente del karaoke. + Specials + Children + + + TVY + + + + Favoritos de Baby First + ¡Presentando al bebé con el mejor contenido educativo de BabyFirst! Señales en pantalla para que los padres interactúen. + Specials + Children + + + TVG + + + + Favoritos de Baby First + ¡Presentando al bebé con el mejor contenido educativo de BabyFirst! Señales en pantalla para que los padres interactúen. + Specials + Children + + + TVG + + + + A la Camita con BabyFirst + Historias y canciones para que los bebés vayan a dormir. + Children + Instructional + + + TVG + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Floreciendo Temprano + Show diseñado para estimular las capacidades visuales, procesos del pensamiento y la capacidad de atención de los bebés más pequeños. + Children + Instructional + + + TVY + + + + Floreciendo Temprano + Show diseñado para estimular las capacidades visuales, procesos del pensamiento y la capacidad de atención de los bebés más pequeños. + Children + Instructional + + + TVY + + + + Levántate y brilla + Un programa divertido y energético que da al espectador un gran comienzo al día. + Children + Instructional + + + TVY + + + + Levántate y brilla + Su bebé entrará en contacto con conocimientos básicos, como palabras nuevas, los números, la música y mucho más. Las indicaciones en la pantalla están disponibles para que los padres puedan interactuar. + Children + Instructional + + + TVY + + + + Levántate y brilla + Un programa divertido y energético que da al espectador un gran comienzo al día. + Children + Instructional + + + TVY + + + + Levántate y brilla + Un programa divertido y energético que da al espectador un gran comienzo al día. + Children + Instructional + + + TVY + + + + Pandilla de colores + Todo sobre los colores. + Children + Instructional + + + TVY + + + + Mamá y Yo - Preescolar + Programas para los bebés que se centran en elementos importantes tales como 123 y ABC. + Children + + + TVY + + + + Club del Desayuno + Un viaje de descubrimiento lleno de diversión les da a los bebés un buen comienzo por la mañana. + Children + Instructional + + + TVG + + + + Club del Desayuno + Un viaje de descubrimiento lleno de diversión les da a los bebés un buen comienzo por la mañana. + Children + Instructional + + + TVG + + + + Club del Desayuno + Un viaje de descubrimiento lleno de diversión les da a los bebés un buen comienzo por la mañana. + Children + Instructional + + + TVG + + + + Club del Desayuno + Un viaje de descubrimiento lleno de diversión les da a los bebés un buen comienzo por la mañana. + Children + Instructional + + + TVG + + + + Club del Desayuno + Un viaje de descubrimiento lleno de diversión les da a los bebés un buen comienzo por la mañana. + Children + Instructional + + + TVG + + + + Hora de jugar con Al + Al es un amigo jovial que siempre quiere divertirse. Ya sea resolviendo enigmas, contando historias, cantando canciones o jugando juegos, Al siempre animará a los pequeños a interactuar, encontrar soluciones y ¡pasar un buen rato! + Children + Instructional + + + TVY + + + + Programas para el desarrollo del bebé + Una introducción a las palabras, música y animales para bebés con señales que aparecen en la pantalla para que los padres puedan interactuar con sus hijos. + Children + Instructional + + + TVY + + + + Programas para el desarrollo del bebé + Una introducción a las palabras, música y animales para bebés con señales que aparecen en la pantalla para que los padres puedan interactuar con sus hijos. + Children + Instructional + + + TVY + + + + Mamá y Yo - Preescolar + Programas para los bebés que se centran en elementos importantes tales como 123 y ABC. + Children + + + TVY + + + + Música y arte + Un espacio para aprender a explorar el mundo del arte con los bebés. A través de la danza, la música, el movimiento, y más, se fomenta la expresión creativa. + Instructional + Performing Arts + + + + Programas para el desarrollo del bebé + Una introducción a las palabras, música y animales para bebés con señales que aparecen en la pantalla para que los padres puedan interactuar con sus hijos. + Children + Instructional + + + TVY + + + + Floreciendo Temprano + Show diseñado para estimular las capacidades visuales, procesos del pensamiento y la capacidad de atención de los bebés más pequeños. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Mamá y Yo - Cantemos + Una aventura repleta de divertidas canciones, con clásicos que todos los bebés aman y subtítulos para disfrutar plenamente del karaoke. + Specials + Children + + + TVY + + + + Mamá y Yo - Preescolar + Programas para los bebés que se centran en elementos importantes tales como 123 y ABC. + Children + + + TVY + + + + Mamá y Yo - Preescolar + Programas para los bebés que se centran en elementos importantes tales como 123 y ABC. + Children + + + TVY + + + + Club de Baby First + Programas que permiten que los bebés exploren el mundo y sus alrededores. + Children + Instructional + + + TVG + + + + Club de Baby First + Programas que permiten que los bebés exploren el mundo y sus alrededores. + Children + Instructional + + + TVG + + + + Club de Baby First + Programas que permiten que los bebés exploren el mundo y sus alrededores. + Children + Instructional + + + TVG + + + + Club de Baby First + Programas que permiten que los bebés exploren el mundo y sus alrededores. + Children + Instructional + + + TVG + + + + Club de Baby First + Programas que permiten que los bebés exploren el mundo y sus alrededores. + Children + Instructional + + + TVG + + + + Club de Baby First + Programas que permiten que los bebés exploren el mundo y sus alrededores. + Children + Instructional + + + TVG + + + + Club de Baby First + Programas que permiten que los bebés exploren el mundo y sus alrededores. + Children + Instructional + + + TVG + + + + Música y arte + Un espacio para aprender a explorar el mundo del arte con los bebés. A través de la danza, la música, el movimiento, y más, se fomenta la expresión creativa. + Instructional + Performing Arts + + + + Mamá y Yo - Cantemos + Una aventura repleta de divertidas canciones, con clásicos que todos los bebés aman y subtítulos para disfrutar plenamente del karaoke. + Specials + Children + + + TVY + + + + Favoritos de Baby First + ¡Presentando al bebé con el mejor contenido educativo de BabyFirst! Señales en pantalla para que los padres interactúen. + Specials + Children + + + TVG + + + + Favoritos de Baby First + ¡Presentando al bebé con el mejor contenido educativo de BabyFirst! Señales en pantalla para que los padres interactúen. + Specials + Children + + + TVG + + + + A la Camita con BabyFirst + Historias y canciones para que los bebés vayan a dormir. + Children + Instructional + + + TVG + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Levántate y brilla + Un programa divertido y energético que da al espectador un gran comienzo al día. + Children + Instructional + + + TVY + + + + Levántate y brilla + Su bebé entrará en contacto con conocimientos básicos, como palabras nuevas, los números, la música y mucho más. Las indicaciones en la pantalla están disponibles para que los padres puedan interactuar. + Children + Instructional + + + TVY + + + + Levántate y brilla + Un programa divertido y energético que da al espectador un gran comienzo al día. + Children + Instructional + + + TVY + + + + Levántate y brilla + Un programa divertido y energético que da al espectador un gran comienzo al día. + Children + Instructional + + + TVY + + + + Pandilla de colores + Todo sobre los colores. + Children + Instructional + + + TVY + + + + Mamá y Yo - Preescolar + Programas para los bebés que se centran en elementos importantes tales como 123 y ABC. + Children + + + TVY + + + + Club del Desayuno + Un viaje de descubrimiento lleno de diversión les da a los bebés un buen comienzo por la mañana. + Children + Instructional + + + TVG + + + + Club del Desayuno + Un viaje de descubrimiento lleno de diversión les da a los bebés un buen comienzo por la mañana. + Children + Instructional + + + TVG + + + + Club del Desayuno + Un viaje de descubrimiento lleno de diversión les da a los bebés un buen comienzo por la mañana. + Children + Instructional + + + TVG + + + + Club del Desayuno + Un viaje de descubrimiento lleno de diversión les da a los bebés un buen comienzo por la mañana. + Children + Instructional + + + TVG + + + + Club del Desayuno + Un viaje de descubrimiento lleno de diversión les da a los bebés un buen comienzo por la mañana. + Children + Instructional + + + TVG + + + + Hora de jugar con Al + Al es un amigo jovial que siempre quiere divertirse. Ya sea resolviendo enigmas, contando historias, cantando canciones o jugando juegos, Al siempre animará a los pequeños a interactuar, encontrar soluciones y ¡pasar un buen rato! + Children + Instructional + + + TVY + + + + Programas para el desarrollo del bebé + Una introducción a las palabras, música y animales para bebés con señales que aparecen en la pantalla para que los padres puedan interactuar con sus hijos. + Children + Instructional + + + TVY + + + + Programas para el desarrollo del bebé + Una introducción a las palabras, música y animales para bebés con señales que aparecen en la pantalla para que los padres puedan interactuar con sus hijos. + Children + Instructional + + + TVY + + + + Mamá y Yo - Preescolar + Programas para los bebés que se centran en elementos importantes tales como 123 y ABC. + Children + + + TVY + + + + Música y arte + Un espacio para aprender a explorar el mundo del arte con los bebés. A través de la danza, la música, el movimiento, y más, se fomenta la expresión creativa. + Instructional + Performing Arts + + + + Programas para el desarrollo del bebé + Una introducción a las palabras, música y animales para bebés con señales que aparecen en la pantalla para que los padres puedan interactuar con sus hijos. + Children + Instructional + + + TVY + + + + Floreciendo Temprano + Show diseñado para estimular las capacidades visuales, procesos del pensamiento y la capacidad de atención de los bebés más pequeños. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Mamá y Yo - Cantemos + Una aventura repleta de divertidas canciones, con clásicos que todos los bebés aman y subtítulos para disfrutar plenamente del karaoke. + Specials + Children + + + TVY + + + + Mamá y Yo - Preescolar + Programas para los bebés que se centran en elementos importantes tales como 123 y ABC. + Children + + + TVY + + + + Mamá y Yo - Preescolar + Programas para los bebés que se centran en elementos importantes tales como 123 y ABC. + Children + + + TVY + + + + Club de Baby First + Programas que permiten que los bebés exploren el mundo y sus alrededores. + Children + Instructional + + + TVG + + + + Club de Baby First + Programas que permiten que los bebés exploren el mundo y sus alrededores. + Children + Instructional + + + TVG + + + + Club de Baby First + Programas que permiten que los bebés exploren el mundo y sus alrededores. + Children + Instructional + + + TVG + + + + Club de Baby First + Programas que permiten que los bebés exploren el mundo y sus alrededores. + Children + Instructional + + + TVG + + + + Club de Baby First + Programas que permiten que los bebés exploren el mundo y sus alrededores. + Children + Instructional + + + TVG + + + + Club de Baby First + Programas que permiten que los bebés exploren el mundo y sus alrededores. + Children + Instructional + + + TVG + + + + Club de Baby First + Programas que permiten que los bebés exploren el mundo y sus alrededores. + Children + Instructional + + + TVG + + + + Música y arte + Un espacio para aprender a explorar el mundo del arte con los bebés. A través de la danza, la música, el movimiento, y más, se fomenta la expresión creativa. + Instructional + Performing Arts + + + + Mamá y Yo - Cantemos + Una aventura repleta de divertidas canciones, con clásicos que todos los bebés aman y subtítulos para disfrutar plenamente del karaoke. + Specials + Children + + + TVY + + + + Favoritos de Baby First + ¡Presentando al bebé con el mejor contenido educativo de BabyFirst! Señales en pantalla para que los padres interactúen. + Specials + Children + + + TVG + + + + Favoritos de Baby First + ¡Presentando al bebé con el mejor contenido educativo de BabyFirst! Señales en pantalla para que los padres interactúen. + Specials + Children + + + TVG + + + + A la Camita con BabyFirst + Historias y canciones para que los bebés vayan a dormir. + Children + Instructional + + + TVG + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Floreciendo Temprano + Show diseñado para estimular las capacidades visuales, procesos del pensamiento y la capacidad de atención de los bebés más pequeños. + Children + Instructional + + + TVY + + + + Floreciendo Temprano + Show diseñado para estimular las capacidades visuales, procesos del pensamiento y la capacidad de atención de los bebés más pequeños. + Children + Instructional + + + TVY + + + + Levántate y brilla + Un programa divertido y energético que da al espectador un gran comienzo al día. + Children + Instructional + + + TVY + + + + Levántate y brilla + Su bebé entrará en contacto con conocimientos básicos, como palabras nuevas, los números, la música y mucho más. Las indicaciones en la pantalla están disponibles para que los padres puedan interactuar. + Children + Instructional + + + TVY + + + + Levántate y brilla + Un programa divertido y energético que da al espectador un gran comienzo al día. + Children + Instructional + + + TVY + + + + Levántate y brilla + Un programa divertido y energético que da al espectador un gran comienzo al día. + Children + Instructional + + + TVY + + + + Pandilla de colores + Todo sobre los colores. + Children + Instructional + + + TVY + + + + Mamá y Yo - Preescolar + Programas para los bebés que se centran en elementos importantes tales como 123 y ABC. + Children + + + TVY + + + + Club del Desayuno + Un viaje de descubrimiento lleno de diversión les da a los bebés un buen comienzo por la mañana. + Children + Instructional + + + TVG + + + + Club del Desayuno + Un viaje de descubrimiento lleno de diversión les da a los bebés un buen comienzo por la mañana. + Children + Instructional + + + TVG + + + + Club del Desayuno + Un viaje de descubrimiento lleno de diversión les da a los bebés un buen comienzo por la mañana. + Children + Instructional + + + TVG + + + + Club del Desayuno + Un viaje de descubrimiento lleno de diversión les da a los bebés un buen comienzo por la mañana. + Children + Instructional + + + TVG + + + + Club del Desayuno + Un viaje de descubrimiento lleno de diversión les da a los bebés un buen comienzo por la mañana. + Children + Instructional + + + TVG + + + + Hora de jugar con Al + Al es un amigo jovial que siempre quiere divertirse. Ya sea resolviendo enigmas, contando historias, cantando canciones o jugando juegos, Al siempre animará a los pequeños a interactuar, encontrar soluciones y ¡pasar un buen rato! + Children + Instructional + + + TVY + + + + Programas para el desarrollo del bebé + Una introducción a las palabras, música y animales para bebés con señales que aparecen en la pantalla para que los padres puedan interactuar con sus hijos. + Children + Instructional + + + TVY + + + + Programas para el desarrollo del bebé + Una introducción a las palabras, música y animales para bebés con señales que aparecen en la pantalla para que los padres puedan interactuar con sus hijos. + Children + Instructional + + + TVY + + + + Mamá y Yo - Preescolar + Programas para los bebés que se centran en elementos importantes tales como 123 y ABC. + Children + + + TVY + + + + Música y arte + Un espacio para aprender a explorar el mundo del arte con los bebés. A través de la danza, la música, el movimiento, y más, se fomenta la expresión creativa. + Instructional + Performing Arts + + + + Programas para el desarrollo del bebé + Una introducción a las palabras, música y animales para bebés con señales que aparecen en la pantalla para que los padres puedan interactuar con sus hijos. + Children + Instructional + + + TVY + + + + Floreciendo Temprano + Show diseñado para estimular las capacidades visuales, procesos del pensamiento y la capacidad de atención de los bebés más pequeños. + Children + Instructional + + + TVY + + + + Programas nocturnos para el bebé + Suave y relajante música de cuna e imágenes relajantes diseñadas para ayudar a preparar al bebé para dormir. + Children + Instructional + + + TVY + + + + Mamá y Yo - Cantemos + Una aventura repleta de divertidas canciones, con clásicos que todos los bebés aman y subtítulos para disfrutar plenamente del karaoke. + Specials + Children + + + TVY + + + + Mamá y Yo - Preescolar + Programas para los bebés que se centran en elementos importantes tales como 123 y ABC. + Children + + + TVY + + + + Mamá y Yo - Preescolar + Programas para los bebés que se centran en elementos importantes tales como 123 y ABC. + Children + + + TVY + + + + Club de Baby First + Programas que permiten que los bebés exploren el mundo y sus alrededores. + Children + Instructional + + + TVG + + + + Club de Baby First + Programas que permiten que los bebés exploren el mundo y sus alrededores. + Children + Instructional + + + TVG + + + + Club de Baby First + Programas que permiten que los bebés exploren el mundo y sus alrededores. + Children + Instructional + + + TVG + + + + Club de Baby First + Programas que permiten que los bebés exploren el mundo y sus alrededores. + Children + Instructional + + + TVG + + + + Family Fun Time & Rhymes + Instructional + + + + Family Fun Time & Rhymes + Instructional + + + + Art, Creativity & Music with BabyTV + Maya & Yaya,Songs & Rhymes,In the Toy World,Let's Dance,Dancing at the Park,Songs & Rhymes,Songs & Rhymes,Stitches,Nico & Bianca,Songs & Rhymes,Songs & Rhymes. + Music + Arts & Entertainment + + + + Classical Music & Soothing Stories + Instructional + + + + Relax and Unwind + Instructional + + + + Sweet Dreams + Music + Children + + + + Sweet Dreams + Music + Children + + + + Dreamy Nights + Calming visuals of abstract objects and nature, accompanied by soothing music. + Children + Instructional + + + TVG + + + + Dreamy Nights + Calming visuals of abstract objects and nature, accompanied by soothing music. + Children + Instructional + + + TVG + + + + Dreamy Nights + Calming visuals of abstract objects and nature, accompanied by soothing music. + Children + Instructional + + + TVG + + + + Dreamy Nights + Calming visuals of abstract objects and nature, accompanied by soothing music. + Children + Instructional + + + TVG + + + + Dreamy Nights + Calming visuals of abstract objects and nature, accompanied by soothing music. + Children + Instructional + + + TVG + + + + Moon and Stars + Calming visuals of abstract objects and nature, accompanied by soothing music for nighttime programming. + Children + Instructional + + + TVG + + + + Baby TV's Night Time Melodies + Calming visuals of abstract objects and nature, accompanied by soothing music. + Animated + Children + + + TVG + + + + Sweet Dreams + Relaxing songs and stories accompanied by soft calming music. + Children + Music + + + TVG + + + + Good Night Hugs + Calming visuals of abstract objects and nature, accompanied by soothing music. + Children + Instructional + + + TVG + + + + Dreamy Nights + Calming visuals of abstract objects and nature, accompanied by soothing music for night time programming. + Animated + Children + + + TVG + + + + Moon and Stars + Calming visuals of abstract objects and nature, accompanied by soothing music for nighttime programming. + Children + Instructional + + + TVG + + + + Soothing Sounds + Children + Instructional + + + TVG + + + + From Night to Day + Relaxing songs and stories. + Music + Children + + + TVG + + + + From Night to Day + Relaxing songs and stories. + Music + Children + + + TVG + + + + Rise & Shine with BabyTV Friends + Instructional + Children + + + + Rise & Shine with BabyTV Friends + Instructional + Children + + + + Good-Morning Stretch + Instructional + + + + Good-Morning Stretch + Instructional + + + + Start your day with BabyTV's Friends + Children + Instructional + + + + Tutti Frutti and Other Stories + Tutti Frutti,Songs & Rhymes,Snuggle Puppets,Big Bugs Band,Dino & the Egg Hunt,Songs & Rhymes,Charlie & the Numbers. + Animated + Instructional + + + + Teeny & Tiny's Classroom + Specials + Children + + + + Art, Activity & Music Time + Billy Bam Bam + Billy Bam Bam,Songs & Rhymes,In the Animal World,Lale Ki Lolu,Charlie & the Shapes,Little Lola Visits the City. + Arts & Entertainment + + + + Magical First Discoveries + Infants and toddlers have fun while learning. + Animated + Children + + + TVG + + + + Imagination Playground + Programming for infants and toddlers, designed for learning and fun. + Animated + Children + + + TVG + + + + Exploring with Yoyo the Magician + Yoyo the Magician,Ahoy Pirates,What A Wonderful Day,Kenny & Goorie Meet Friends,Songs & Rhymes,BabyTV Studios,Jump Out of Bed Sleepy Head. + Children + Performing Arts + + + + Walter & Dude and other stories + Instructional + Children + + + TV14 + + + + Teeny & Tiny's Classroom + Specials + Children + + + + Art, Activity & Music Time + Billy Bam Bam + Billy Bam Bam,Songs & Rhymes,In the Animal World,Lale Ki Lolu,Charlie & the Shapes,Little Lola Visits the City. + Arts & Entertainment + + + + Magical First Discoveries + Songs & Rhymes,Gee-Raffa,The Circus Comes to Town,Songs & Rhymes,Oliver,Beep Beep,Rocco,Choopies. + Instructional + + + + Imagination Playground + Programming for infants and toddlers, designed for learning and fun. + Animated + Children + + + TVG + + + + Exploring with Songs & Rhymes + Performing Arts + + + + Tutti Frutti and Other Stories + Tutti Frutti,Songs & Rhymes,Snuggle Puppets,Big Bugs Band,Dino & the Egg Hunt,Songs & Rhymes,Charlie & the Numbers. + Animated + Instructional + + + + Teeny & Tiny's Classroom + Specials + Children + + + + Art, Activity & Music Time + Billy Bam Bam + Billy Bam Bam,Songs & Rhymes,In the Animal World,Lale Ki Lolu,Charlie & the Shapes,Little Lola Visits the City. + Arts & Entertainment + + + + Magical First Discoveries + Songs & Rhymes,Gee-Raffa,The Circus Comes to Town,Songs & Rhymes,Oliver,Beep Beep,Rocco,Choopies. + Instructional + + + + Imagination Playground + Programming for infants and toddlers, designed for learning and fun. + Animated + Children + + + TVG + + + + Exploring with Yoyo the Magician + Yoyo the Magician,Ahoy Pirates,What A Wonderful Day,Kenny & Goorie Meet Friends,Songs & Rhymes,BabyTV Studios,Jump Out of Bed Sleepy Head. + Children + Performing Arts + + + + Discovering with Songs & Rhymes + Animated + Children + + + TVG + + + + Play & Learn with Songs & Rhymes + Children + Performing Arts + + + + Guessing Games with Jump Out of Bed Sleepy Head & Friends + Children + Performing Arts + + + + Family Fun Time & Rhymes + Instructional + + + + Family Fun Time & Rhymes + Instructional + + + + Art, Creativity & Music with BabyTV + Maya & Yaya,Songs & Rhymes,In the Toy World,Let's Dance,Dancing at the Park,Songs & Rhymes,Songs & Rhymes,Stitches,Nico & Bianca,Songs & Rhymes,Songs & Rhymes. + Music + Arts & Entertainment + + + + Classical Music & Soothing Stories + Instructional + + + + Relax and Unwind + Instructional + + + + Relax and Unwind + Instructional + + + + Sweet Dreams + Music + Children + + + + Sweet Dreams + Music + Children + + + + Dreamy Nights + Calming visuals of abstract objects and nature, accompanied by soothing music. + Children + Instructional + + + TVG + + + + Dreamy Nights + Calming visuals of abstract objects and nature, accompanied by soothing music. + Children + Instructional + + + TVG + + + + Dreamy Nights + Calming visuals of abstract objects and nature, accompanied by soothing music. + Children + Instructional + + + TVG + + + + Dreamy Nights + Calming visuals of abstract objects and nature, accompanied by soothing music. + Children + Instructional + + + TVG + + + + Dreamy Nights + Calming visuals of abstract objects and nature, accompanied by soothing music. + Children + Instructional + + + TVG + + + + Moon and Stars + Calming visuals of abstract objects and nature, accompanied by soothing music for nighttime programming. + Children + Instructional + + + TVG + + + + Baby TV's Night Time Melodies + Calming visuals of abstract objects and nature, accompanied by soothing music. + Animated + Children + + + TVG + + + + Sweet Dreams + Relaxing songs and stories accompanied by soft calming music. + Children + Music + + + TVG + + + + Good Night Hugs + Calming visuals of abstract objects and nature, accompanied by soothing music. + Children + Instructional + + + TVG + + + + Dreamy Nights + Calming visuals of abstract objects and nature, accompanied by soothing music for night time programming. + Animated + Children + + + TVG + + + + Moon and Stars + Calming visuals of abstract objects and nature, accompanied by soothing music for nighttime programming. + Children + Instructional + + + TVG + + + + Soothing Sounds + Children + Instructional + + + TVG + + + + From Night to Day + Relaxing songs and stories. + Music + Children + + + TVG + + + + From Night to Day + Relaxing songs and stories. + Music + Children + + + TVG + + + + Rise & Shine with BabyTV Friends + Instructional + Children + + + + Rise & Shine with BabyTV Friends + Instructional + Children + + + + Good-Morning Stretch + Instructional + + + + Good-Morning Stretch + Instructional + + + + Start your day with BabyTV's Friends + Children + Instructional + + + + Walter & Dude and other stories + Instructional + Children + + + TV14 + + + + Teeny & Tiny's Classroom + Specials + Children + + + + Art, Activity & Music Time + Billy Bam Bam + Billy Bam Bam,Songs & Rhymes,In the Animal World,Lale Ki Lolu,Charlie & the Shapes,Little Lola Visits the City. + Arts & Entertainment + + + + Magical First Discoveries + Infants and toddlers have fun while learning. + Animated + Children + + + TVG + + + + Imagination Playground + Programming for infants and toddlers, designed for learning and fun. + Animated + Children + + + TVG + + + + Exploring with Yoyo the Magician + Yoyo the Magician,Ahoy Pirates,What A Wonderful Day,Kenny & Goorie Meet Friends,Songs & Rhymes,BabyTV Studios,Jump Out of Bed Sleepy Head. + Children + Performing Arts + + + + Tutti Frutti and Other Stories + Tutti Frutti,Songs & Rhymes,Snuggle Puppets,Big Bugs Band,Dino & the Egg Hunt,Songs & Rhymes,Charlie & the Numbers. + Animated + Instructional + + + + Charlie & the Numbers + Children + Instructional + + + + Art, Activity & Music Time + Cuddlies,Songs & Rhymes,In the Animal World,Lale Ki Lolu,Charlie & the Shapes,Little Lola Visits the City,Gee-Raffa. + Arts & Entertainment + + + + Magical First Discoveries + Infants and toddlers have fun while learning. + Animated + Children + + + TVG + + + + Imagination Playground + Programming for infants and toddlers, designed for learning and fun. + Animated + Children + + + TVG + + + + Exploring with Yoyo the Magician + Yoyo the Magician,Ahoy Pirates,What A Wonderful Day,Kenny & Goorie Meet Friends,Songs & Rhymes,BabyTV Studios,Jump Out of Bed Sleepy Head. + Children + Performing Arts + + + + Tutti Frutti and Other Stories + Tutti Frutti,Songs & Rhymes,Snuggle Puppets,Big Bugs Band,Dino & the Egg Hunt,Songs & Rhymes,Charlie & the Numbers. + Animated + Instructional + + + + Teeny & Tiny's Classroom + Specials + Children + + + + Art, Activity & Music Time + Cuddlies,Songs & Rhymes,In the Animal World,Lale Ki Lolu,Charlie & the Shapes,Little Lola Visits the City,Gee-Raffa. + Arts & Entertainment + + + + Magical First Discoveries + Infants and toddlers have fun while learning. + Animated + Children + + + TVG + + + + Imagination Playground + Programming for infants and toddlers, designed for learning and fun. + Animated + Children + + + TVG + + + + Exploring with Yoyo the Magician + Yoyo the Magician,Ahoy Pirates,What A Wonderful Day,Kenny & Goorie Meet Friends,Songs & Rhymes,BabyTV Studios,Jump Out of Bed Sleepy Head. + Children + Performing Arts + + + + Discovering with Charlie & the Alphabet + Charlie & the Alphabet,Songs & Rhymes,Mini Matinee,Beep Beep,Giggle Wiggle,Dino & the Egg Hunt,The Post Train. + Instructional + + + + Play & Learn with Oliver + Children + Performing Arts + + + + Guessing Games with BabyTV Studios & Friends + Children + Performing Arts + + + + Family Fun Time & Rhymes + Instructional + + + + Family Fun Time & Rhymes + Instructional + + + + Art, Creativity & Music with BabyTV + Maya & Yaya,Songs & Rhymes,In the Toy World,Let's Dance,Dancing at the Park,Songs & Rhymes,Songs & Rhymes,Stitches,Nico & Bianca,Songs & Rhymes,Songs & Rhymes. + Music + Arts & Entertainment + + + + Classical Music & Soothing Stories + Instructional + + + + Relax and Unwind + Instructional + + + + Relax and Unwind + Instructional + + + + Sweet Dreams + Music + Children + + + + Sweet Dreams + Music + Children + + + + Dreamy Nights + Calming visuals of abstract objects and nature, accompanied by soothing music. + Children + Instructional + + + TVG + + + + Dreamy Nights + Calming visuals of abstract objects and nature, accompanied by soothing music. + Children + Instructional + + + TVG + + + + Dreamy Nights + Calming visuals of abstract objects and nature, accompanied by soothing music. + Children + Instructional + + + TVG + + + + Dreamy Nights + Calming visuals of abstract objects and nature, accompanied by soothing music. + Children + Instructional + + + TVG + + + + Dreamy Nights + Calming visuals of abstract objects and nature, accompanied by soothing music for night time programming. + Animated + Children + + + TVG + + + + Moon and Stars + Calming visuals of abstract objects and nature, accompanied by soothing music for nighttime programming. + Children + Instructional + + + TVG + + + + Baby TV's Night Time Melodies + Calming visuals of abstract objects and nature, accompanied by soothing music. + Animated + Children + + + TVG + + + + Sweet Dreams + Relaxing songs and stories accompanied by soft calming music. + Children + Music + + + TVG + + + + Good Night Hugs + Calming visuals of abstract objects and nature, accompanied by soothing music for night time programming. + Animated + Children + + + TVG + + + + Dreamy Nights + Calming visuals of abstract objects and nature, accompanied by soothing music for night time programming. + Animated + Children + + + TVG + + + + Moon and Stars + Calming visuals of abstract objects and nature, accompanied by soothing music for nighttime programming. + Children + Instructional + + + TVG + + + + Soothing Sounds + Children + Instructional + + + TVG + + + + From Night to Day + Relaxing songs and stories. + Music + Children + + + TVG + + + + From Night to Day + Relaxing songs and stories. + Music + Children + + + TVG + + + + Rise & Shine with BabyTV Friends + Instructional + Children + + + + Rise & Shine with BabyTV Friends + Instructional + Children + + + + Good-Morning Stretch + Instructional + + + + Good-Morning Stretch + Instructional + + + + Start your day with BabyTV's Friends + Children + Instructional + + + + Tutti Frutti and Other Stories + Tutti Frutti,Songs & Rhymes,Snuggle Puppets,Big Bugs Band,Dino & the Egg Hunt,Songs & Rhymes,Charlie & the Numbers. + Animated + Instructional + + + + Teeny & Tiny's Classroom + Specials + Children + + + + Art, Activity & Music Time + Billy Bam Bam + Billy Bam Bam,In the Animal World,Lale Ki Lolu,Charlie & the Shapes,Little Lola Visits the City. + Arts & Entertainment + + + + Magical First Discoveries + Songs & Rhymes,Gee-Raffa,The Circus Comes to Town,Songs & Rhymes,Oliver,Beep Beep,Rocco,Choopies. + Instructional + + + + Imagination Playground + Programming for infants and toddlers, designed for learning and fun. + Animated + Children + + + TVG + + + + Exploring with Songs & Rhymes + Performing Arts + + + + Walter & Dude and other stories + Instructional + Children + + + TV14 + + + + Charlie & the Numbers + Children + Instructional + + + + Art, Activity & Music Time + Cuddlies,Songs & Rhymes,In the Animal World,Lale Ki Lolu,Charlie & the Shapes,Little Lola Visits the City,Gee-Raffa. + Arts & Entertainment + + + + Magical First Discoveries + Infants and toddlers have fun while learning. + Animated + Children + + + TVG + + + + Imagination Playground + Programming for infants and toddlers, designed for learning and fun. + Animated + Children + + + TVG + + + + Exploring with Yoyo the Magician + Yoyo the Magician,Ahoy Pirates,What A Wonderful Day,Kenny & Goorie Meet Friends,Songs & Rhymes,BabyTV Studios,Jump Out of Bed Sleepy Head. + Children + Performing Arts + + + + Walter & Dude and other stories + Instructional + Children + + + TV14 + + + + Teeny & Tiny's Classroom + Specials + Children + + + + Art, Activity & Music Time + Cuddlies,Songs & Rhymes,In the Animal World,Lale Ki Lolu,Charlie & the Shapes,Little Lola Visits the City,Gee-Raffa. + Arts & Entertainment + + + + Magical First Discoveries + Infants and toddlers have fun while learning. + Animated + Children + + + TVG + + + + Imagination Playground + Programming for infants and toddlers, designed for learning and fun. + Animated + Children + + + TVG + + + + Exploring with Yoyo the Magician + Yoyo the Magician,Ahoy Pirates,What A Wonderful Day,Kenny & Goorie Meet Friends,Songs & Rhymes,BabyTV Studios,Jump Out of Bed Sleepy Head. + Children + Performing Arts + + + + Discovering with Charlie & the Alphabet + Charlie & the Alphabet,Songs & Rhymes,Mini Matinee,Beep Beep,Giggle Wiggle,Dino & the Egg Hunt,The Post Train. + Instructional + + + + Play & Learn with Oliver + Children + Performing Arts + + + + Guessing Games with Jump Out of Bed Sleepy Head & Friends + Children + Performing Arts + + + + Family Fun Time & Rhymes + Instructional + + + + Family Fun Time & Rhymes + Instructional + + + + Art, Creativity & Music with BabyTV + Maya & Yaya,Songs & Rhymes,In the Toy World,Let's Dance,Dancing at the Park,Songs & Rhymes,Songs & Rhymes,Stitches,Nico & Bianca,Songs & Rhymes,Songs & Rhymes. + Music + Arts & Entertainment + + + + Classical Music & Soothing Stories + Instructional + + + + Relax and Unwind + Instructional + + + + Relax and Unwind + Instructional + + + + Sweet Dreams + Music + Children + + + + Sweet Dreams + Music + Children + + + + Dreamy Nights + Calming visuals of abstract objects and nature, accompanied by soothing music. + Children + Instructional + + + TVG + + + + Dreamy Nights + Calming visuals of abstract objects and nature, accompanied by soothing music. + Children + Instructional + + + TVG + + + + Dreamy Nights + Calming visuals of abstract objects and nature, accompanied by soothing music. + Children + Instructional + + + TVG + + + + Dreamy Nights + Calming visuals of abstract objects and nature, accompanied by soothing music for night time programming. + Animated + Children + + + TVG + + + + Dreamy Nights + Calming visuals of abstract objects and nature, accompanied by soothing music for night time programming. + Animated + Children + + + TVG + + + + Moon and Stars + Calming visuals of abstract objects and nature, accompanied by soothing music for nighttime programming. + Children + Instructional + + + TVG + + + + Baby TV's Night Time Melodies + Calming visuals of abstract objects and nature, accompanied by soothing music. + Animated + Children + + + TVG + + + + Sweet Dreams + Relaxing songs and stories accompanied by soft calming music. + Children + Music + + + TVG + + + + Good Night Hugs + Calming visuals of abstract objects and nature, accompanied by soothing music. + Children + Instructional + + + TVG + + + + Dreamy Nights + Calming visuals of abstract objects and nature, accompanied by soothing music for night time programming. + Animated + Children + + + TVG + + + + Moon and Stars + Calming visuals of abstract objects and nature, accompanied by soothing music for nighttime programming. + Children + Instructional + + + TVG + + + + Soothing Sounds + Children + Instructional + + + TVG + + + + From Night to Day + Relaxing songs and stories. + Music + Children + + + TVG + + + + From Night to Day + Relaxing songs and stories. + Music + Children + + + TVG + + + + Rise & Shine with BabyTV Friends + Instructional + Children + + + + Rise & Shine with BabyTV Friends + Instructional + Children + + + + Good-Morning Stretch + Instructional + + + + Good-Morning Stretch + Instructional + + + + Start your day with BabyTV's Friends + Children + Instructional + + + + Tutti Frutti and Other Stories + Tutti Frutti,Songs & Rhymes,Snuggle Puppets,Big Bugs Band,Dino & the Egg Hunt,Songs & Rhymes,Charlie & the Numbers. + Animated + Instructional + + + + Teeny & Tiny's Classroom + Specials + Children + + + + Art, Activity & Music Time + Billy Bam Bam + Billy Bam Bam,Songs & Rhymes,In the Animal World,Lale Ki Lolu,Charlie & the Shapes,Little Lola Visits the City. + Arts & Entertainment + + + + Magical First Discoveries + Songs & Rhymes,Gee-Raffa,The Circus Comes to Town,Songs & Rhymes,Oliver,Beep Beep,Rocco,Choopies. + Instructional + + + + Imagination Playground + Programming for infants and toddlers, designed for learning and fun. + Animated + Children + + + TVG + + + + Exploring with Yoyo the Magician + Yoyo the Magician,Ahoy Pirates,What A Wonderful Day,Kenny & Goorie Meet Friends,Songs & Rhymes,BabyTV Studios,Jump Out of Bed Sleepy Head. + Children + Performing Arts + + + + Tutti Frutti and Other Stories + Tutti Frutti,Songs & Rhymes,Snuggle Puppets,Big Bugs Band,Dino & the Egg Hunt,Songs & Rhymes,Charlie & the Numbers. + Animated + Instructional + + + + Teeny & Tiny's Classroom + Specials + Children + + + + Art, Activity & Music Time + Billy Bam Bam + Billy Bam Bam,Songs & Rhymes,In the Animal World,Lale Ki Lolu,Charlie & the Shapes,Little Lola Visits the City. + Arts & Entertainment + + + + Magical First Discoveries + Infants and toddlers have fun while learning. + Animated + Children + + + TVG + + + + Imagination Playground + Programming for infants and toddlers, designed for learning and fun. + Animated + Children + + + TVG + + + + Exploring with Yoyo the Magician + Yoyo the Magician,Ahoy Pirates,What A Wonderful Day,Kenny & Goorie Meet Friends,Songs & Rhymes,BabyTV Studios,Jump Out of Bed Sleepy Head. + Children + Performing Arts + + + + Walter & Dude and other stories + Instructional + Children + + + TV14 + + + + Teeny & Tiny's Classroom + Specials + Children + + + + Art, Activity & Music Time + Billy Bam Bam + Billy Bam Bam,Songs & Rhymes,In the Animal World,Lale Ki Lolu,Charlie & the Shapes,Little Lola Visits the City. + Arts & Entertainment + + + + Magical First Discoveries + Infants and toddlers have fun while learning. + Animated + Children + + + TVG + + + + Imagination Playground + Programming for infants and toddlers, designed for learning and fun. + Animated + Children + + + TVG + + + + Exploring with Yoyo the Magician + Yoyo the Magician,Ahoy Pirates,What A Wonderful Day,Kenny & Goorie Meet Friends,Songs & Rhymes,BabyTV Studios,Jump Out of Bed Sleepy Head. + Children + Performing Arts + + + + Discovering with Charlie & the Alphabet + Charlie & the Alphabet,Songs & Rhymes,Mini Matinee,Beep Beep,Giggle Wiggle,Dino & the Egg Hunt,The Post Train. + Instructional + + + + Bleav in Chargers + Hosted by Lorenzo Neal & Matt. + Sports + Football + + + + Bleav in Rams + Hosted by Cam Lynch & Jake Ellenbogen. + Sports + Football + + + + Pro Football Weekly + NFL news and highlights plus a preview of the week's top match-ups. + Sports + Football + + + TVG + + + + The Icons With Rick Horrow + Lou Holtz + Profiling the stories behind the positive impact of sports. + Sports + + + + Girls High School Volleyball + CIF-SS Division I Tournament, Championship: Mater Dei vs. Mira Costa + Sports + Volleyball + + + + Bleav in Chargers + Hosted by Lorenzo Neal & Matt. + Sports + Football + + + + Bleav in Rams + Hosted by Cam Lynch & Jake Ellenbogen. + Sports + Football + + + + Girls High School Volleyball + CIF-SS Division I Tournament, Championship: Mater Dei vs. Mira Costa + Sports + Volleyball + + + + Girls High School Volleyball + CIF-SS Division I Tournament, Championship: Mater Dei vs. Mira Costa + Sports + Volleyball + + + + AVP Pro Beach Volleyball Tour + Atlanta Open + Coverage of beach volleyball. + Sports + Volleyball + + + + World Poker Tour: Season 20 + Seminole Hard Rock Poker Showdown - Part 4 + Sports + Cards + + + + To Be Announced + Programming to be announced. + Performing Arts + Music + + + TVPG + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Men's Health - All-Natural Secret for Prostate Health + Prosvent is a doctor formulated blend of rejuvenating herbs and nutrients that help protect overall prostate health. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Inogen Portable Oxygen - Oxygen Therapy that Moves with You + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + THE AMAZING TELIKIN ONE TOUCH, THE WORLD'S EASIEST COMPUTER! + A single touch takes you to Email, Web, Video Chat, Contracts, Photos, Games, and more in this sleek, simple and sophisticated computer. Say hello to TELIKIN! TELIKIN is an ALL IN ONE computer that is easy to set up and navigate. SPECIAL OFFER! + Paid Program + Computers & Technologies + + + + Inogen Portable Oxygen - Oxygen Therapy that Moves with You + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Bleav in Rams + Hosted by Cam Lynch & Jake Ellenbogen. + Sports + Football + + + + Bleav in Chargers + Hosted by Lorenzo Neal & Matt. + Sports + Football + + + + Angler Chronicles + Fresh and saltwater fishing from Southern California, Mexico, British Columbia, Alaska and Panama. + Sports + Outdoors + + + + Stoked on Fishing + Shea McIntee travels to the hottest fresh and saltwater destinations around the globe and tags along with anglers who love the sport of fishing. + Documentary + + + + Horse Racing + America's Day At the Races + The best racehorses square off in the premiere races from across the country. + Sports + Horse Racing + + + TVPG + + + + A Fishing Story With Ronnie Green + Leiza Fitzgerald + Anglers from all walks of life share their fishing stories. + Reality TV + + + TVG + + + + Girls High School Volleyball + CIF-SS Division I Tournament, Championship: Mater Dei vs. Mira Costa + Sports + Volleyball + + + + Ducks Weekly + A weekly magazine show highlighting the Anaheim Ducks organization with highlights, features and more. + Sports + Hockey + + + + Ducks Live Pregame + An extension of the game with unmatched access to the Anaheim Ducks. + Sports + Hockey + + + + Vegas Golden Knights vs. Anaheim Ducks + Vegas Golden Knights at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + Ducks Live Postgame + An extension of the game with unmatched access to the Anaheim Ducks. + Sports + Hockey + + + + Ducks Weekly + A weekly magazine show highlighting the Anaheim Ducks organization with highlights, features and more. + Sports + Hockey + + + + The Card Life + Atlanta + Matt Strahm visits a new Atlanta-area card shop that is modern in every sense of the word. Also, a 5-year-old who made his lemonade stand into his own place to sell baseball cards. + Sports + Miscellaneous + + + + NASCAR Race Rewind + 2022 Phoenix: NASCAR Cup Series Championship + From Nov. 6, 2022. + Sports + Auto Racing + + + + World Poker Tour: Season 20 + Seminole Hard Rock Poker Showdown - Part 4 + Sports + Cards + + + + World Poker Tour: Season 20 + Choctaw - Part 1 + Sports + Cards + + + + Vegas Golden Knights vs. Anaheim Ducks + Vegas Golden Knights at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + Ducks Live Postgame + An extension of the game with unmatched access to the Anaheim Ducks. + Sports + Hockey + + + + Ducks Weekly + A weekly magazine show highlighting the Anaheim Ducks organization with highlights, features and more. + Sports + Hockey + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Men's Health - All-Natural Secret for Prostate Health + Prosvent is a doctor formulated blend of rejuvenating herbs and nutrients that help protect overall prostate health. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Inogen Portable Oxygen - Oxygen Therapy that Moves with You + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigate Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Java House cold brew coffee pods, first ever 100 0quid cold brew pod + Java House authentic cold brew coffee pods are the first ever 100 0quid cold brew concentrate in a single-serve pod you can enjoy hot or cold. This revolutionary design makes it convenient to make cold brew at home two different ways. + Paid Program + + + + Inogen Portable Oxygen - Oxygen Therapy that Moves with You + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Live on the Line + Interactive betting program that informs and entertains while delivering expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. + Sports + + + + Angler Chronicles + Fresh and saltwater fishing from Southern California, Mexico, British Columbia, Alaska and Panama. + Sports + Outdoors + + + + Stoked on Fishing + Shea McIntee travels to the hottest fresh and saltwater destinations around the globe and tags along with anglers who love the sport of fishing. + Documentary + + + + Vegas Golden Knights vs. Anaheim Ducks + Vegas Golden Knights at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + Ducks Live Postgame + An extension of the game with unmatched access to the Anaheim Ducks. + Sports + Hockey + + + + Ducks Weekly + A weekly magazine show highlighting the Anaheim Ducks organization with highlights, features and more. + Sports + Hockey + + + + Live on the Line + Interactive betting program that informs and entertains while delivering expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. + Sports + + + + The Rally + The hottest storylines and headlines from both sports and pop culture in a high energy, fast-moving format that gets fans ready to enjoy the night in sports, including breaking news, features, expert analysis, previews, and interviews. + Sports + Talk Show + + + + Clippers Live Pregame + Unmatched access to the Los Angeles Clippers, a true extension of the game. + Sports + Basketball + + + + Los Angeles Clippers vs. New York Knicks + Los Angeles Clippers at New York Knicks + LA gets back to work with a game in New York. Since a loss to the Lakers on Nov. 1 that dropped them to 3-2, the Clippers acquired 10-time All-Star and three-time scoring champion James Harden and P.J. Tucker from the 76ers for players and picks. + Sports + Basketball + + + + Clippers Live Postgame + An extension of the Clippers game with unmatched access to the team. + Sports + Basketball + + + + Clippers Weekly + A weekly magazine show highlighting the Los Angeles Clippers organization with highlights, features and more from one of the most exciting teams in the NBA. + Sports + Basketball + + + + Los Angeles Clippers vs. New York Knicks + Los Angeles Clippers at New York Knicks + LA gets back to work with a game in New York. Since a loss to the Lakers on Nov. 1 that dropped them to 3-2, the Clippers acquired 10-time All-Star and three-time scoring champion James Harden and P.J. Tucker from the 76ers for players and picks. + Sports + Basketball + + + + Clippers Live Postgame + An extension of the Clippers game with unmatched access to the team. + Sports + Basketball + + + + Clippers Weekly + A weekly magazine show highlighting the Los Angeles Clippers organization with highlights, features and more from one of the most exciting teams in the NBA. + Sports + Basketball + + + + Fight Sports: In 60 + Marco Huck vs. Hugo Hernan Garay + Cut down versions of boxing matches. + Sports + Boxing + + + + Fight Sports: In 60 + Firat Arsian vs. Yoan Pablo Hernandez + Cut down versions of boxing matches. + Sports + Boxing + + + + AVP Pro Beach Volleyball Tour + Chicago Open + Coverage of beach volleyball. + Sports + Volleyball + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Men's Health - All-Natural Secret for Prostate Health + Prosvent is a doctor formulated blend of rejuvenating herbs and nutrients that help protect overall prostate health. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Reduce swelling in your legs, ankles and feet + LegXercise is the easy-to-use, automatic leg mover that uses continuous movement to soothe pain and promote healthy circulation the natural drug-free way! It's Walking Simulator Technology moves your feet back and forth along its motion track. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Java House cold brew coffee pods, first ever 100 0quid cold brew pod + Java House authentic cold brew coffee pods are the first ever 100 0quid cold brew concentrate in a single-serve pod you can enjoy hot or cold. This revolutionary design makes it convenient to make cold brew at home two different ways. + Paid Program + + + + Inogen Portable Oxygen - Oxygen Therapy that Moves with You + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + CHRISTINA HALL and Jacuzzi® amazing bathroom makeovers + SPECIAL OFFER + Trusted brand Jacuzzi® and renowned interior designer, Christina Hall can help you transform your old bathroom into a gorgeous custom, safe and stylish space. Jacuzzi® has limited time special offers to make your dream bathroom happen today CALL NOW. + Paid Program + Home + + + + Inogen Portable Oxygen - Oxygen Therapy that Moves with You + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Live on the Line + Interactive betting program that informs and entertains while delivering expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. + Sports + + + + Match Play with Ray Adams + Host Ray Adams interviews golf's biggest stars. + Sports + Golf + + + + Golf Life + Featuring the latest trends, tours of the finest courses and tips from golf experts. + Sports + Miscellaneous + + + + Breaking Par + Breaking Par goes to Kaua'i, the garden isle of Hawaii. More than just epic golf, Kaua'i dances on the edge of reality and dreams. + Sports + Golf + + + + Destination Polaris + Hosts Jared Christie and Alexa Score uncover the world's top riding destinations. Join them on the adventure each week to mountains, canyons, deserts and dunes. + Sports + Outdoors + + + TVPG + + + + Los Angeles Clippers vs. New York Knicks + Los Angeles Clippers at New York Knicks + LA gets back to work with a game in New York. Since a loss to the Lakers on Nov. 1 that dropped them to 3-2, the Clippers acquired 10-time All-Star and three-time scoring champion James Harden and P.J. Tucker from the 76ers for players and picks. + Sports + Basketball + + + + Clippers Live Postgame + An extension of the Clippers game with unmatched access to the team. + Sports + Basketball + + + + Clippers Weekly + A weekly magazine show highlighting the Los Angeles Clippers organization with highlights, features and more from one of the most exciting teams in the NBA. + Sports + Basketball + + + + Live on the Line + Interactive betting program that informs and entertains while delivering expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. + Sports + + + + The Icons With Rick Horrow + Lou Holtz + Profiling the stories behind the positive impact of sports. + Sports + + + + Sports Stars of Tomorrow + Profiles of the top rookie, college and high-school talent in sports; current athletes share their experiences, advice and personal impressions of the road to stardom. + Sports + Anthology + + + + The Card Life + Atlanta + Matt Strahm visits a new Atlanta-area card shop that is modern in every sense of the word. Also, a 5-year-old who made his lemonade stand into his own place to sell baseball cards. + Sports + Miscellaneous + + + + The Rally + The hottest storylines and headlines from both sports and pop culture in a high energy, fast-moving format that gets fans ready to enjoy the night in sports, including breaking news, features, expert analysis, previews, and interviews. + Sports + Talk Show + + + + Ducks Live Pregame + An extension of the game with unmatched access to the Anaheim Ducks. + Sports + Hockey + + + + Pittsburgh Penguins vs. Anaheim Ducks + Pittsburgh Penguins at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + Ducks Live Postgame + An extension of the game with unmatched access to the Anaheim Ducks. + Sports + Hockey + + + + Ducks Weekly + A weekly magazine show highlighting the Anaheim Ducks organization with highlights, features and more. + Sports + Hockey + + + + Pittsburgh Penguins vs. Anaheim Ducks + Pittsburgh Penguins at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + Ducks Live Postgame + An extension of the game with unmatched access to the Anaheim Ducks. + Sports + Hockey + + + + Ducks Weekly + A weekly magazine show highlighting the Anaheim Ducks organization with highlights, features and more. + Sports + Hockey + + + + Tennis Classics + 2022: Taylor Fritz vs. Sebastian Korda + ATP Monte Carlo, 3rd Round. + Sports + Tennis + + + + Reduce swelling in your legs, ankles and feet + LegXercise is the easy-to-use, automatic leg mover that uses continuous movement to soothe pain and promote healthy circulation the natural drug-free way! It's Walking Simulator Technology moves your feet back and forth along its motion track. + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Men's Health - All-Natural Secret for Prostate Health + Prosvent is a doctor formulated blend of rejuvenating herbs and nutrients that help protect overall prostate health. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigate Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Inogen Portable Oxygen - Oxygen Therapy that Moves with You + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Reduce swelling in your legs, ankles and feet + LegXercise is the easy-to-use, automatic leg mover that uses continuous movement to soothe pain and promote healthy circulation the natural drug-free way! It's Walking Simulator Technology moves your feet back and forth along its motion track. + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + CHRISTINA HALL and Jacuzzi® amazing bathroom makeovers + SPECIAL OFFER + Trusted brand Jacuzzi® and renowned interior designer, Christina Hall can help you transform your old bathroom into a gorgeous custom, safe and stylish space. Jacuzzi® has limited time special offers to make your dream bathroom happen today CALL NOW. + Paid Program + Home + + + + Inogen Portable Oxygen - Oxygen Therapy that Moves with You + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Live on the Line + Interactive betting program that informs and entertains while delivering expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. + Sports + + + + High School Football + CIF-SS Round 1: Valencia at Servite + Action from high school football. + Sports + Football + + + + Pittsburgh Penguins vs. Anaheim Ducks + Pittsburgh Penguins at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + Ducks Live Postgame + An extension of the game with unmatched access to the Anaheim Ducks. + Sports + Hockey + + + + Live on the Line + Interactive betting program that informs and entertains while delivering expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. + Sports + + + + World Poker Tour + WPT Seminole Hard Rock Poker Showdown - Part 3 (Week of 10/29) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + World Poker Tour + WPT Seminole Hard Rock Poker Showdown - Part 4 (Week of 10/29) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + Focused + Naismith Memorial Basketball Hall of Fame (Week of 10/30) + + Fran Healy + + 2023 + Talk & Interview + Sports + + + Classic Tennis + 2022: Rafael Nadal-Taylor Fritz + From 2022: Rafael Nadal vs. Taylor Fritz in the ATP Indian Wells final. + 2022 + + + Golf Life + 2023 #8 + 2023 + + + The Icons with Rick Horrow: Leadership in Sports + Lou Holtz + + Rick Horrow + + 2023 + Talk & Interview + Sports + + + AVP Pro Beach Volleyball + AVP Pro Atlanta Open + AVP Pro Atlanta Open finals from Atlantic Station. + 2022 + + + Lights Out Xtreme Fighting + 2023 + + + World Poker Tour + WPT Seminole Hard Rock Poker Showdown - Part 4 (Week of 10/29) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + NHL Hockey + Nashville Predators at Edmonton Oilers + Nashville Predators at Edmonton Oilers. From Rogers Place. + 2023 + Pro Sports + + + Hurricanes Live! Postgame + Carolina Hurricanes hockey highlights, reaction and discussion. (new). + + + In the Spotlight + Julius Erving (Week of 10/30) + + Fran Healy + + 2023 + Talk & Interview + Sports + + + Road Trip Angler + Tallahassee to Tampa + 2023 + + + Sportsman's Adventures With Captain Rick Murphy + Heroes of Marathon + Capt. Rick Murphy is in the Florida Keys fishing for snapper, kingfish, and tuna with Neil of "Heroes on the Water". Putting them on the fish is Capt. Mike Taute. + 2023 + + TV-G + + + + Chad Hoover Fishing + Kayak Fishing North Alabama + 2023 + + + Destination Polaris + Hosts Jared Christie and Alexa Score uncover the world's top riding destinations. Join them on the adventure each week to mountains, canyons, deserts and dunes. + + Jared Christie + Alexa Score + Nick Clausen + + Sports + + TV-14 + + + + Bob Redfern's Outdoor Magazine + Southern Woods/Chevy + 2023 + + TV-G + + + + NHL Hockey + Nashville Predators at Edmonton Oilers + Nashville Predators at Edmonton Oilers. From Rogers Place. + 2023 + Pro Sports + + + Predators Postgame + A wrap-up of Nashville Predators hockey. + + + Focused + Naismith Memorial Basketball Hall of Fame (Week of 10/30) + + Fran Healy + + 2023 + Talk & Interview + Sports + + + Golf Life + 2023 #8 + 2023 + + + World Poker Tour + WPT Seminole Hard Rock Poker Showdown - Part 4 (Week of 10/29) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + Road Trip Angler + Tallahassee to Tampa + 2023 + + + Sportsman's Adventures With Captain Rick Murphy + Heroes of Marathon + Capt. Rick Murphy is in the Florida Keys fishing for snapper, kingfish, and tuna with Neil of "Heroes on the Water". Putting them on the fish is Capt. Mike Taute. + 2023 + + TV-G + + + + Chad Hoover Fishing + Kayak Fishing North Alabama + 2023 + + + Nick's Wild Ride + Goose Calls and Good People + 2023 + + + Destination Polaris + Hosts Jared Christie and Alexa Score uncover the world's top riding destinations. Join them on the adventure each week to mountains, canyons, deserts and dunes. + + Jared Christie + Alexa Score + Nick Clausen + + Sports + + TV-14 + + + + Great Family Adventure + West Virginia + 2023 + + + AVP Pro Beach Volleyball + AVP Pro Chicago Open + AVP Gold Series Chicago Open men's and women's finals. From Oak Street Beach on Lake Michigan. + 2022 + + + World Poker Tour + WPT Seminole Hard Rock Poker Showdown - Part 4 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + World Poker Tour + WPT Choctaw - Part 1 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + Classic Tennis + Wimbledon 2022: Nadal-Fritz + From 2022: Rafael Nadal vs. Taylor Fritz in a Wimbledon quarterfinal. + 2022 + + + Great Family Adventure + West Virginia + 2023 + + + Road Trip Angler + Tallahassee to Tampa + 2023 + + + Sportsman's Adventures With Captain Rick Murphy + Heroes of Marathon + Capt. Rick Murphy is in the Florida Keys fishing for snapper, kingfish, and tuna with Neil of "Heroes on the Water". Putting them on the fish is Capt. Mike Taute. + 2023 + + TV-G + + + + Chad Hoover Fishing + Kayak Fishing North Alabama + 2023 + + + Bob Redfern's Outdoor Magazine + Southern Woods/Chevy + 2023 + + TV-G + + + + Nick's Wild Ride + Goose Calls and Good People + 2023 + + + Destination Polaris + Hosts Jared Christie and Alexa Score uncover the world's top riding destinations. Join them on the adventure each week to mountains, canyons, deserts and dunes. + + Jared Christie + Alexa Score + Nick Clausen + + Sports + + TV-14 + + + + AVP Pro Beach Volleyball + AVP Pro Chicago Open + AVP Gold Series Chicago Open men's and women's finals. From Oak Street Beach on Lake Michigan. + 2022 + + + The Card Life + The Card Life: Atlanta + + Brandon Verzal + Matt Strahm + + 2023 + Sports + + TV-PG + + + + Golf Life + 2023 #8 + 2023 + + + Lights Out Xtreme Fighting + 2023 + + + In the Spotlight + Julius Erving (Week of 11/6) + (new). + + Fran Healy + + 2023 + Talk & Interview + Sports + + + Focused + Naismith Memorial Basketball Hall of Fame (Week of 11/6) + (new). + + Fran Healy + + 2023 + Talk & Interview + Sports + + + Live on the Line + A sports-betting series that delivers expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. (live). + + + World Poker Tour + WPT Seminole Hard Rock Poker Showdown - Part 4 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + World Poker Tour + WPT Choctaw - Part 1 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + Carolina Insider + An in-depth look at University of North Carolina athletics. (new). + + + NC State: Wolfpack Hustle + A behind-the-scenes look at the North Carolina State basketball program. (new). + + + The Icons with Rick Horrow: Leadership in Sports + Lou Holtz + + Rick Horrow + + 2023 + Talk & Interview + Sports + + + Live on the Line + A sports-betting series that delivers expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. + + + The Rally + Debates and analysis on the latest sports trends. (live). + + + AVP Pro Beach Volleyball + AVP Pro Chicago Open + AVP Gold Series Chicago Open men's and women's finals. From Oak Street Beach on Lake Michigan. + 2022 + + + Destination Polaris + Hosts Jared Christie and Alexa Score uncover the world's top riding destinations. Join them on the adventure each week to mountains, canyons, deserts and dunes. + + Jared Christie + Alexa Score + Nick Clausen + + Sports + + TV-14 + + + + World Poker Tour + WPT Choctaw - Part 1 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + Carolina Insider + An in-depth look at University of North Carolina athletics. + + + NC State: Wolfpack Hustle + A behind-the-scenes look at the North Carolina State basketball program. + + + In the Spotlight + Julius Erving (Week of 11/6) + + Fran Healy + + 2023 + Talk & Interview + Sports + + + Focused + Naismith Memorial Basketball Hall of Fame (Week of 11/6) + + Fran Healy + + 2023 + Talk & Interview + Sports + + + World Poker Tour + WPT Seminole Hard Rock Poker Showdown - Part 4 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + World Poker Tour + WPT Choctaw - Part 1 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + Classic Tennis + 2022: Taylor Fritz-Sebastian Korda + From 2022: Taylor Fritz vs. Sebastian Korda in an ATP Monte Carlo third-round match. + 2022 + + + The Icons with Rick Horrow: Leadership in Sports + Lou Holtz + + Rick Horrow + + 2023 + Talk & Interview + Sports + + + Lights Out Xtreme Fighting + 2023 + + + In the Spotlight + Julius Erving (Week of 11/6) + + Fran Healy + + 2023 + Talk & Interview + Sports + + + Focused + Naismith Memorial Basketball Hall of Fame (Week of 11/6) + + Fran Healy + + 2023 + Talk & Interview + Sports + + + World Poker Tour + WPT Seminole Hard Rock Poker Showdown - Part 4 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + World Poker Tour + WPT Choctaw - Part 1 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + Carolina Insider + An in-depth look at University of North Carolina athletics. + + + NC State: Wolfpack Hustle + A behind-the-scenes look at the North Carolina State basketball program. + + + AVP Pro Beach Volleyball + AVP Pro Chicago Open + AVP Gold Series Chicago Open men's and women's finals. From Oak Street Beach on Lake Michigan. + 2022 + + + Live on the Line + A sports-betting series that delivers expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. (live). + + + Great Family Adventure + West Virginia + 2023 + + + Road Trip Angler + Tallahassee to Tampa + 2023 + + + Sportsman's Adventures With Captain Rick Murphy + Heroes of Marathon + Capt. Rick Murphy is in the Florida Keys fishing for snapper, kingfish, and tuna with Neil of "Heroes on the Water". Putting them on the fish is Capt. Mike Taute. + 2023 + + TV-G + + + + Chad Hoover Fishing + Kayak Fishing North Alabama + 2023 + + + Nick's Wild Ride + Goose Calls and Good People + 2023 + + + Destination Polaris + Hosts Jared Christie and Alexa Score uncover the world's top riding destinations. Join them on the adventure each week to mountains, canyons, deserts and dunes. + + Jared Christie + Alexa Score + Nick Clausen + + Sports + + TV-14 + + + + Bob Redfern's Outdoor Magazine + Southern Woods/Chevy + 2023 + + TV-G + + + + Live on the Line + A sports-betting series that delivers expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. + + + The Rally + Debates and analysis on the latest sports trends. (live). + + + World Poker Tour + WPT Seminole Hard Rock Poker Showdown - Part 4 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + World Poker Tour + WPT Choctaw - Part 1 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + Golf Life + 2023 #8 + 2023 + + + Classic Tennis + Wimbledon 2022: Nadal-Fritz + From 2022: Rafael Nadal vs. Taylor Fritz in a Wimbledon quarterfinal. + 2022 + + + Lights Out Xtreme Fighting + 2023 + + + Focused + Naismith Memorial Basketball Hall of Fame (Week of 11/6) + + Fran Healy + + 2023 + Talk & Interview + Sports + + + The Card Life + The Card Life: Atlanta + + Brandon Verzal + Matt Strahm + + 2023 + Sports + + TV-PG + + + + The Icons with Rick Horrow: Leadership in Sports + Lou Holtz + + Rick Horrow + + 2023 + Talk & Interview + Sports + + + In the Spotlight + Julius Erving (Week of 11/6) + + Fran Healy + + 2023 + Talk & Interview + Sports + + + Golf Life + 2023 #8 + 2023 + + + AVP Pro Beach Volleyball + AVP Pro Chicago Open + AVP Gold Series Chicago Open men's and women's finals. From Oak Street Beach on Lake Michigan. + 2022 + + + NHL Hockey + Nashville Predators at Calgary Flames + Nashville Predators at Calgary Flames. From Scotiabank Saddledome. + 2023 + Pro Sports + + + Predators Postgame + A wrap-up of Nashville Predators hockey. (new). + + + NHL Hockey + Buffalo Sabres at Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes. From PNC Arena. + 2023 + Pro Sports + + + Hurricanes Live! Postgame + Carolina Hurricanes hockey highlights, reaction and discussion. (new). + + + Live on the Line + A sports-betting series that delivers expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. (live). + + + NHL Hockey + Nashville Predators at Calgary Flames + Nashville Predators at Calgary Flames. From Scotiabank Saddledome. + 2023 + Pro Sports + + + Predators Postgame + A wrap-up of Nashville Predators hockey. + + + In the Spotlight + Julius Erving (Week of 11/6) + + Fran Healy + + 2023 + Talk & Interview + Sports + + + Live on the Line + A sports-betting series that delivers expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. + + + The Rally + Debates and analysis on the latest sports trends. (live). + + + Focused + Naismith Memorial Basketball Hall of Fame (Week of 11/6) + + Fran Healy + + 2023 + Talk & Interview + Sports + + + The Icons with Rick Horrow: Leadership in Sports + Lou Holtz + + Rick Horrow + + 2023 + Talk & Interview + Sports + + + Stars Live! Pregame + A preview of Dallas Stars action. (live). + + + NHL Hockey + Dallas Stars at Vancouver Canucks + Dallas Stars at Vancouver Canucks. From Rogers Arena. (live). + 2023 + Pro Sports + + + Stars Live! Postgame + A recap of Dallas Stars action. (live). + + + World Poker Tour + WPT Seminole Hard Rock Poker Showdown - Part 3 (Week of 10/29) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + World Poker Tour + WPT Seminole Hard Rock Poker Showdown - Part 4 (Week of 10/29) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + Sports Stars of Tomorrow + Sports Stars of Tomorrow is a United States nationally-syndicated sports television show about high school and college athletics. The show, which is hosted by well known college and NFL television analyst Charles Davis, takes its viewers across the country in search of the brightest young stars in sports. Sports Stars of Tomorrow is the only high-school sports program in national syndication. + + Charles Davis + Pat Summerall + + Sports + + TV-G + + + + AVP Pro Beach Volleyball + AVP Pro Atlanta Open + AVP Pro Atlanta Open finals from Atlantic Station. + 2022 + + + The Card Life + The Card Life: Atlanta + + Brandon Verzal + Matt Strahm + + 2023 + Sports + + TV-PG + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Classic NASCAR + 2021: Phoenix: NASCAR Cup Series Championship Race + The 2021 NASCAR Cup Series championship race in Arizona. + 2021 + + + Paid Programming + Paid Programming. + + TV-14 + + + + Pro Football Weekly + An in-depth preview and analysis of NFL action. (new). + + TV-G + + + + Texans Extra Points + Houston Texans discussion and features, plus game recaps and previews. (new). + + + Texans 360 + Weekly Houston Texans news, discussion, player profiles and team features. (new). + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Texans Extra Points + Houston Texans discussion and features, plus game recaps and previews. + + + Hit Sticks + + + A Fishing Story With Ronnie Green + Leiza Fitzgerald + (new). + + Ronnie Green + + 2023 + Sports + + TV-G + + + + Texans 360 + Weekly Houston Texans news, discussion, player profiles and team features. + + + Thunder Insider + Oklahoma City Thunder news, highlights and features. (new). + + + Destination Polaris + Hosts Jared Christie and Alexa Score uncover the world's top riding destinations. Join them on the adventure each week to mountains, canyons, deserts and dunes. (new). + + Jared Christie + Alexa Score + Nick Clausen + + Sports + + TV-14 + + + + NHL Hockey + Dallas Stars at Vancouver Canucks + Dallas Stars at Vancouver Canucks. From Rogers Arena. + 2023 + Pro Sports + + + The Card Life + The Card Life: Atlanta + + Brandon Verzal + Matt Strahm + + 2023 + Sports + + TV-PG + + + + Golf Life + A look at golf courses, training tips and mental aspects of the game. (new). + + + Breaking Par + October 2023 + (new). + + Ryan Johnson + Felix Stone + + 2023 + Sports + + + The Icons with Rick Horrow: Leadership in Sports + Lou Holtz + (new). + + Rick Horrow + + 2023 + Talk & Interview + Sports + + + Sports Stars of Tomorrow + Sports Stars of Tomorrow is a United States nationally-syndicated sports television show about high school and college athletics. The show, which is hosted by well known college and NFL television analyst Charles Davis, takes its viewers across the country in search of the brightest young stars in sports. Sports Stars of Tomorrow is the only high-school sports program in national syndication. (new). + + Charles Davis + Pat Summerall + + Sports + + TV-G + + + + The Card Life + The Card Life: Atlanta + (new). + + Brandon Verzal + Matt Strahm + + 2023 + Sports + + TV-PG + + + + AVP Pro Beach Volleyball + Chicago Gold Series + Men's and women's finals from the Chicago Gold Series off of Lake Michigan. + 2023 + + + Powerboat Racing + Lake of the Ozarks Shootout, Part 2 + 2023 + + + Powerboat Racing + St. Petersburg: Class 1 Offshore + 2023 + + + Epic Trails + Backpacking North Dakota + Eric Hanson seeks adventure on the Maah Daah Hey Trail in North Dakota's Theodore Roosevelt National Park. (repeat). + + Sam Burrows + Ken Whiting + Eric Hanson + Ken Whiting + + 2023 + Travel + Sports + S6 E9 + + + Destination Polaris + Hosts Jared Christie and Alexa Score uncover the world's top riding destinations. Join them on the adventure each week to mountains, canyons, deserts and dunes. (new). + + Jared Christie + Alexa Score + Nick Clausen + + Sports + + TV-14 + + + + World Poker Tour + WPT Seminole Hard Rock Poker Showdown - Part 4 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + World Poker Tour + WPT Choctaw - Part 1 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + AVP Pro Beach Volleyball + Chicago Gold Series + Men's and women's finals from the Chicago Gold Series off of Lake Michigan. + 2023 + + + Sports Stars of Tomorrow + Sports Stars of Tomorrow is a United States nationally-syndicated sports television show about high school and college athletics. The show, which is hosted by well known college and NFL television analyst Charles Davis, takes its viewers across the country in search of the brightest young stars in sports. Sports Stars of Tomorrow is the only high-school sports program in national syndication. + + Charles Davis + Pat Summerall + + Sports + + TV-G + + + + The Card Life + The Card Life: Atlanta + + Brandon Verzal + Matt Strahm + + 2023 + Sports + + TV-PG + + + + World Poker Tour + WPT Seminole Hard Rock Poker Showdown - Part 4 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + World Poker Tour + WPT Choctaw - Part 1 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + The Card Life + The Card Life: Atlanta + + Brandon Verzal + Matt Strahm + + 2023 + Sports + + TV-PG + + + + Paid Programming + Paid Programming. + + TV-14 + + + + True Crime 2023 + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + 2022 + + + Paid Programming + Paid Programming. + + TV-14 + + + + Facing Waves + Kayaking the Okefenokee National Wildlife Refuge - Part 1 + (new). + + Ken Whiting + + 2023 + Travel + Sports + + TV-PG + + + + Great Family Adventure + West Virginia + (new). + 2023 + + + Powerboat Racing + St. Petersburg: Class 1 Offshore + (new). + 2023 + + + Destination Polaris + Hosts Jared Christie and Alexa Score uncover the world's top riding destinations. Join them on the adventure each week to mountains, canyons, deserts and dunes. (new). + + Jared Christie + Alexa Score + Nick Clausen + + Sports + + TV-14 + + + + Classic NASCAR + 2022 Daytona 500 + The green flag drops on the 2022 Cup Series with the 64th Great American Race, the Daytona 500, from Daytona International Speedway in Florida. Defending series champ Kyle Larson (No. 5 Chevy) and Alex Bowman (No. 48 Chevy) started in Row 1. + 2022 + + + Classic NASCAR + 2022: Auto Club: Wise Power 400 + 2022 + + + In the Spotlight + Julius Erving (Week of 11/6) + (new). + + Fran Healy + + 2023 + Talk & Interview + Sports + + + Focused + Naismith Memorial Basketball Hall of Fame (Week of 11/6) + (new). + + Fran Healy + + 2023 + Talk & Interview + Sports + + + Live on the Line + A sports-betting series that delivers expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. (live). + + + World Poker Tour + WPT Seminole Hard Rock Poker Showdown - Part 4 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + World Poker Tour + WPT Choctaw - Part 1 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + Golf Life + A look at golf courses, training tips and mental aspects of the game. + + + Cowboys Game Night + Highlights and analysis of Dallas Cowboys action. + + + Live on the Line + A sports-betting series that delivers expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. + + + Cowboys Press Conference + The Dallas coach answers questions from the media. (live). + + + Facing Waves + Kayaking the Okefenokee National Wildlife Refuge - Part 1 + (new). + + Ken Whiting + + 2023 + Travel + Sports + + TV-PG + + + + Powerboat Racing + St. Petersburg: Class 1 Offshore + 2023 + + + The Rally + Debates and analysis on the latest sports trends. (new). + + + Stars Live! Pregame + A preview of Dallas Stars action. (live). + + + NHL Hockey + Boston Bruins at Dallas Stars + Boston Bruins at Dallas Stars. From American Airlines Center. (live). + 2023 + Pro Sports + + + Stars Live! Postgame + A recap of Dallas Stars action. (live). + + + World Poker Tour + WPT Choctaw - Part 1 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + Sports Stars of Tomorrow + Sports Stars of Tomorrow is a United States nationally-syndicated sports television show about high school and college athletics. The show, which is hosted by well known college and NFL television analyst Charles Davis, takes its viewers across the country in search of the brightest young stars in sports. Sports Stars of Tomorrow is the only high-school sports program in national syndication. + + Charles Davis + Pat Summerall + + Sports + + TV-G + + + + The Card Life + The Card Life: Atlanta + (new). + + Brandon Verzal + Matt Strahm + + 2023 + Sports + + TV-PG + + + + NHL Hockey + Boston Bruins at Dallas Stars + Boston Bruins at Dallas Stars. From American Airlines Center. + 2023 + Pro Sports + + + Stars Live! Postgame + A recap of Dallas Stars action. + + + In the Spotlight + Julius Erving (Week of 11/6) + + Fran Healy + + 2023 + Talk & Interview + Sports + + + Focused + Naismith Memorial Basketball Hall of Fame (Week of 11/6) + + Fran Healy + + 2023 + Talk & Interview + Sports + + + World Poker Tour + WPT Choctaw - Part 1 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + 2021 + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + NHL Hockey + Boston Bruins at Dallas Stars + Boston Bruins at Dallas Stars. From American Airlines Center. + 2023 + Pro Sports + + + Golf Life + A look at golf courses, training tips and mental aspects of the game. + + + Breaking Par + November + (new). + + Ryan Johnson + Felix Stone + + 2023 + Sports + + + Ford High School Player of the Week + A look at the week's top player. + + + Sports Stars of Tomorrow + Sports Stars of Tomorrow is a United States nationally-syndicated sports television show about high school and college athletics. The show, which is hosted by well known college and NFL television analyst Charles Davis, takes its viewers across the country in search of the brightest young stars in sports. Sports Stars of Tomorrow is the only high-school sports program in national syndication. + + Charles Davis + Pat Summerall + + Sports + + TV-G + + + + In the Spotlight + Julius Erving (Week of 11/6) + + Fran Healy + + 2023 + Talk & Interview + Sports + + + Focused + Naismith Memorial Basketball Hall of Fame (Week of 11/6) + + Fran Healy + + 2023 + Talk & Interview + Sports + + + Live on the Line + A sports-betting series that delivers expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. (live). + + + World Poker Tour + WPT Choctaw - Part 1 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + Classic NASCAR + 2022 Daytona 500 + The green flag drops on the 2022 Cup Series with the 64th Great American Race, the Daytona 500, from Daytona International Speedway in Florida. Defending series champ Kyle Larson (No. 5 Chevy) and Alex Bowman (No. 48 Chevy) started in Row 1. + 2022 + + + The Card Life + The Card Life: Atlanta + + Brandon Verzal + Matt Strahm + + 2023 + Sports + + TV-PG + + + + Epic Trails + Backpacking North Dakota + Eric Hanson seeks adventure on the Maah Daah Hey Trail in North Dakota's Theodore Roosevelt National Park. (repeat). + + Sam Burrows + Ken Whiting + Eric Hanson + Ken Whiting + + 2023 + Travel + Sports + S6 E9 + + + Live on the Line + A sports-betting series that delivers expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. + + + Destination Polaris + Hosts Jared Christie and Alexa Score uncover the world's top riding destinations. Join them on the adventure each week to mountains, canyons, deserts and dunes. (repeat). + + Jared Christie + Alexa Score + Nick Clausen + + Sports + + TV-14 + + + + The Rally + Debates and analysis on the latest sports trends. (live). + + + High-School Spotlight + A look at local prep sports and athletes. (new). + + + Powerboat Racing + Lake of the Ozarks Shootout, Part 2 + 2023 + + + Dallas Cowboy Legends + Interviews with former players, highlights and updates on where they are now. + + + Breaking Par + November + + Ryan Johnson + Felix Stone + + 2023 + Sports + + + Golf Life + A look at golf courses, training tips and mental aspects of the game. + + + Lights Out Xtreme Fighting + 2023 + + + Cowboys Flashback + A look back at memorable moments and players in Dallas Cowboys history. + + + The Card Life + The Card Life: Atlanta + + Brandon Verzal + Matt Strahm + + 2023 + Sports + + TV-PG + + + + World Poker Tour + WPT Choctaw - Part 1 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + Classic NASCAR + 2022 Daytona 500 + The green flag drops on the 2022 Cup Series with the 64th Great American Race, the Daytona 500, from Daytona International Speedway in Florida. Defending series champ Kyle Larson (No. 5 Chevy) and Alex Bowman (No. 48 Chevy) started in Row 1. + 2022 + + + Classic NASCAR + 2022: Auto Club: Wise Power 400 + 2022 + + + World Poker Tour + WPT Seminole Hard Rock Poker Showdown - Part 4 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + Classic Tennis + 2022: Taylor Fritz-Sebastian Korda + From 2022: Taylor Fritz vs. Sebastian Korda in an ATP Monte Carlo third-round match. + 2022 + + + Paid Programming + Paid Programming. + + TV-14 + + + + True Crime 2023 + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + 2022 + + + Paid Programming + Paid Programming. + + TV-14 + + + + Classic NASCAR + 2022 Daytona 500 + The green flag drops on the 2022 Cup Series with the 64th Great American Race, the Daytona 500, from Daytona International Speedway in Florida. Defending series champ Kyle Larson (No. 5 Chevy) and Alex Bowman (No. 48 Chevy) started in Row 1. + 2022 + + + World Poker Tour + WPT Seminole Hard Rock Poker Showdown - Part 4 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + Sports Stars of Tomorrow + Sports Stars of Tomorrow is a United States nationally-syndicated sports television show about high school and college athletics. The show, which is hosted by well known college and NFL television analyst Charles Davis, takes its viewers across the country in search of the brightest young stars in sports. Sports Stars of Tomorrow is the only high-school sports program in national syndication. + + Charles Davis + Pat Summerall + + Sports + + TV-G + + + + The Card Life + The Card Life: Atlanta + + Brandon Verzal + Matt Strahm + + 2023 + Sports + + TV-PG + + + + Ford High School Player of the Week + A look at the week's top player. + + + High-School Spotlight + A look at local prep sports and athletes. + + + World Poker Tour + WPT Choctaw - Part 1 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + Live on the Line + A sports-betting series that delivers expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. (live). + + + Classic NASCAR + 2022: Auto Club: Wise Power 400 + 2022 + + + AVP Pro Beach Volleyball + Chicago Gold Series + Men's and women's finals from the Chicago Gold Series off of Lake Michigan. + 2023 + + + Live on the Line + A sports-betting series that delivers expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. + + + Golf Life + A look at golf courses, training tips and mental aspects of the game. + + + Dallas Cowboy Legends + Interviews with former players, highlights and updates on where they are now. + + + In the Spotlight + Julius Erving (Week of 11/6) + (new). + + Fran Healy + + 2023 + Talk & Interview + Sports + + + Focused + Naismith Memorial Basketball Hall of Fame (Week of 11/6) + (new). + + Fran Healy + + 2023 + Talk & Interview + Sports + + + Lightning Live! Postgame + A wrap-up of Lightning hockey. (live). + + + Tampa Bay Lightning Recharge + Resurgence + An all-access look at Jon Cooper's Tampa Bay Lightning as they skate into the 2023-24 season. + 2023 + + + Bolts Beginnings + Victor Hedman + 2022 + + + Pro Football Weekly + An in-depth preview and analysis of NFL action. + + TV-G + + + + The Card Life + The Card Life: Atlanta + + Brandon Verzal + Matt Strahm + + 2023 + Sports + + TV-PG + + + + NHL Hockey + Tampa Bay Lightning at Ottawa Senators + Tampa Bay Lightning at Ottawa Senators. From Canadian Tire Centre. + 2023 + Pro Sports + + + Lightning Live! Postgame + A wrap-up of Lightning hockey. + + + Tampa Bay Lightning Recharge + Resurgence + An all-access look at Jon Cooper's Tampa Bay Lightning as they skate into the 2023-24 season. + 2023 + + + Bolts Beginnings + Nick Paul + 2022 + + + 2023 Perfect Game WWBA World Championship + + + Perfect Game TV + Talking baseball development across the U.S., highlighting top players and programs through interviews and features. + + + Match Play With Ray Adams + (new). + + Ray Adams + + 2023 + Talk & Interview + Sports + + + Golf Life + A look at golf courses, training tips and mental aspects of the game. + + + Golfing the World + New England + 2023 + + TV-PG + + + + Golf Destination + September 2023 + 2023 + + + Endless Golf + Ocean Pines + (new). + 2023 + + + Swing Clinic with Jimmy Hanlin + Tips with Natalie + 2023 + Sports + + + 18 Holes With Jimmy Hanlin + Indiana University + Golf pro Jimmy Hanlin tours courses around the U.S. and provides tips and features on the game. + 2023 + + + NHL Hockey + Tampa Bay Lightning at Ottawa Senators + Tampa Bay Lightning at Ottawa Senators. From Canadian Tire Centre. + 2023 + Pro Sports + + + Lightning Live! Postgame + A wrap-up of Lightning hockey. + + + NHL Hockey + Tampa Bay Lightning at Ottawa Senators + Tampa Bay Lightning at Ottawa Senators. From Canadian Tire Centre. + 2023 + Pro Sports + + + Lightning Live! Postgame + A wrap-up of Lightning hockey. + + + Tampa Bay Lightning Recharge + Resurgence + An all-access look at Jon Cooper's Tampa Bay Lightning as they skate into the 2023-24 season. + 2023 + + + Water Polo + U.S. vs. Croatia + U.S. vs. Croatia in an exhibition at Mt. SAC in Walnut, Cal. + 2023 + + + Fight Sports: Boxing + Arthur Abraham vs. Nikola Sjekloca + + + Reel Animals Fishing Show + Bronze Bomber + 2023 + + + Sport Fishing Television + Where Colors Collide + Wind, current, and migrating billfish collide to provide ideal winter conditions for tailing sailfish in Islamorada, Florida's heart. + + Graham Morton + + 2023 + Sports + S13 E7 + + TV-PG + + + + Sportsman's Adventures With Captain Rick Murphy + Heroes of Marathon + Capt. Rick Murphy is in the Florida Keys fishing for snapper, kingfish, and tuna with Neil of "Heroes on the Water". Putting them on the fish is Capt. Mike Taute. + 2023 + + TV-G + + + + Costa Offshore World Championship Presented By Continental + Day Two + + TV-PG + + + + Blair Wiggins Outdoors + Episode 12 + Inshore, nearshore and offshore fishing with destination locations and conversation. + 2022 + Sports + + TV-G + + + + Protect Our Paradise + Our Land + 2023 + Documentary + + + Silver Kings + The Duke + + Marty Dashiell + + 2023 + Documentary + Travel + Action & Adventure + Sports + + TV-G + + + + Sail Kings + Hillbilly Deluxe + 2023 + + + Powerboat Racing + Lake of the Ozarks Shootout, Part 2 + 2023 + + + Powerboat Racing + St. Petersburg: Class 1 Offshore + 2023 + + + 2023 Perfect Game WWBA World Championship + + + Perfect Game All-American Classic + + + AVP Pro Beach Volleyball + Chicago Gold Series + Men's and women's finals from the Chicago Gold Series off of Lake Michigan. + 2023 + + + Facing Waves + Kayaking the Okefenokee National Wildlife Refuge - Part 1 + + Ken Whiting + + 2023 + Travel + Sports + + TV-PG + + + + Nick's Wild Ride + Goose Calls and Good People + 2023 + + + Epic Trails + Backpacking North Dakota + Eric Hanson seeks adventure on the Maah Daah Hey Trail in North Dakota's Theodore Roosevelt National Park. + + Sam Burrows + Ken Whiting + Eric Hanson + Ken Whiting + + 2023 + Travel + Sports + S6 E9 + + + Destination Polaris + Hosts Jared Christie and Alexa Score uncover the world's top riding destinations. Join them on the adventure each week to mountains, canyons, deserts and dunes. (new). + + Jared Christie + Alexa Score + Nick Clausen + + Sports + + TV-14 + + + + O'Neill Outside + Saltwater and freshwater fishing and big-game hunting adventures. + + TV-PG + + + + Protect Our Paradise + Our Land + 2023 + Documentary + + + Great Family Adventure + West Virginia + 2023 + + + Endless Golf + Ocean Pines + 2023 + + + Golf Destination + September 2023 + 2023 + + + Golfing the World + New England + 2023 + + TV-PG + + + + Golf Life + A look at golf courses, training tips and mental aspects of the game. + + + Breaking Par + October 2023 + + Ryan Johnson + Felix Stone + + 2023 + Sports + + + Live on the Line + A sports-betting series that delivers expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. (live). + + + Classic Women's Tennis + 2013: S. Williams-Sharapova + From 2013: Serena Williams vs. Maria Sharapova in the French Open final from Roland Garros. + 2013 + + + Classic Women's Tennis + 2022: Coco Gauff vs. Sloane Stephens + From 2022: Coco Gauff vs. Sloane Stephens. + 2022 + + + Forbes SportsMoney + 11-01-2023 + A look at the business side of sports, from player and team finances to endorsements and TV deals. + 2023 + + TV-PG + + + + Live on the Line + A sports-betting series that delivers expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. + + + The Rally + Debates and analysis on the latest sports trends. (new). + + + Heat Live! Pregame + Previewing Miami basketball. (live). + + + NBA Basketball + Los Angeles Lakers at Miami Heat + Los Angeles Lakers at Miami Heat. From Kaseya Center. (live). + 2023 + Pro Sports + + + Heat Live! Postgame + Wrapping up Miami basketball. (live). + + + Inside the Heat + Jaime Jaquez + 2023 + + + Inside the Heat + Miami HEAT Charitable Fund + + + Inside the Heat + Bam Adebayo + 2023 + + + NBA Basketball + Los Angeles Lakers at Miami Heat + Los Angeles Lakers at Miami Heat. From Kaseya Center. + 2023 + Pro Sports + + + Heat Live! Postgame + Wrapping up Miami basketball. + + + Inside the Heat + Andy Elisburg + 2022 + + + Inside the Heat + Jimmy Butler + 2023 + + + Classic NASCAR + 2022 Daytona 500 + The green flag drops on the 2022 Cup Series with the 64th Great American Race, the Daytona 500, from Daytona International Speedway in Florida. Defending series champ Kyle Larson (No. 5 Chevy) and Alex Bowman (No. 48 Chevy) started in Row 1. + 2022 + + + Classic NASCAR + 2022: Auto Club: Wise Power 400 + 2022 + + + O'Neill Outside + Saltwater and freshwater fishing and big-game hunting adventures. + + TV-PG + + + + Road Trip Angler + Tallahassee to Tampa + 2023 + + + The Drift + The best in boating lifestyles, marine products, and fabulous destinations. A must follow for boat builders, enthusiasts, and everyone else interested in learning about the exciting world of sailing. + 2021 + + + Life on the Water + Epic Redfish in Fort Myers Beach + 2023 + + TV-G + + + + Saltwater Experience + Dolphin and Swordfish with Sam Milazzo + + Tom Rowland + Rich Tudor + + 2023 + Sports + + TV-G + + + + Into the Blue + Sailfish Save the Day + 2023 + + TV-G + + + + NHL Hockey + Tampa Bay Lightning at Toronto Maple Leafs + Tampa Bay Lightning at Toronto Maple Leafs. From Scotiabank Arena. + 2023 + Pro Sports + + + Lightning Live! Postgame + A wrap-up of Lightning hockey. + + + Live on the Line + A sports-betting series that delivers expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. (live). + + + NHL Hockey + Tampa Bay Lightning at Toronto Maple Leafs + Tampa Bay Lightning at Toronto Maple Leafs. From Scotiabank Arena. + 2023 + Pro Sports + + + Lightning Live! Postgame + A wrap-up of Lightning hockey. + + + Tampa Bay Lightning Recharge + Resurgence + An all-access look at Jon Cooper's Tampa Bay Lightning as they skate into the 2023-24 season. + 2023 + + + Live on the Line + A sports-betting series that delivers expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. + + + The Rally + Debates and analysis on the latest sports trends. (live). + + + Lightning Live! Pregame + A look at upcoming Lightning action. (live). + + + NHL Hockey + Tampa Bay Lightning at Montreal Canadiens + Tampa Bay Lightning at Montreal Canadiens. From Bell Centre. (live). + 2023 + Pro Sports + + + Lightning Live! Postgame + A wrap-up of Lightning hockey. (live). + + + Tampa Bay Lightning Recharge + Resurgence + An all-access look at Jon Cooper's Tampa Bay Lightning as they skate into the 2023-24 season. + 2023 + + + Bolts Beginnings + Nick Paul + 2022 + + + Sports Stars of Tomorrow + Sports Stars of Tomorrow is a United States nationally-syndicated sports television show about high school and college athletics. The show, which is hosted by well known college and NFL television analyst Charles Davis, takes its viewers across the country in search of the brightest young stars in sports. Sports Stars of Tomorrow is the only high-school sports program in national syndication. + + Charles Davis + Pat Summerall + + Sports + + TV-G + + + + The Card Life + The Card Life: Atlanta + + Brandon Verzal + Matt Strahm + + 2023 + Sports + + TV-PG + + + + NHL Hockey + Tampa Bay Lightning at Montreal Canadiens + Tampa Bay Lightning at Montreal Canadiens. From Bell Centre. + 2023 + Pro Sports + + + Lightning Live! Postgame + A wrap-up of Lightning hockey. + + + Tampa Bay Lightning Recharge + Resurgence + An all-access look at Jon Cooper's Tampa Bay Lightning as they skate into the 2023-24 season. + 2023 + + + Bolts Beginnings + Victor Hedman + 2022 + + + AVP Pro Beach Volleyball + Chicago Gold Series + Men's and women's finals from the Chicago Gold Series off of Lake Michigan. + 2023 + + + 18 Holes With Jimmy Hanlin + Indiana University + Golf pro Jimmy Hanlin tours courses around the U.S. and provides tips and features on the game. + 2023 + + + Golf Destination + September 2023 + 2023 + + + Golfing the World + New England + 2023 + + TV-PG + + + + Endless Golf + Heritage Shores + 2023 + + + Match Play With Ray Adams + + Ray Adams + + 2023 + Talk & Interview + Sports + + + Swing Clinic with Jimmy Hanlin + Tips with Natalie + 2023 + Sports + + + NHL Hockey + Tampa Bay Lightning at Montreal Canadiens + Tampa Bay Lightning at Montreal Canadiens. From Bell Centre. + 2023 + Pro Sports + + + Lightning Live! Postgame + A wrap-up of Lightning hockey. + + + Live on the Line + A sports-betting series that delivers expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. (live). + + + NHL Hockey + Tampa Bay Lightning at Montreal Canadiens + Tampa Bay Lightning at Montreal Canadiens. From Bell Centre. + 2023 + Pro Sports + + + Lightning Live! Postgame + A wrap-up of Lightning hockey. + + + Tampa Bay Lightning Recharge + Resurgence + An all-access look at Jon Cooper's Tampa Bay Lightning as they skate into the 2023-24 season. + 2023 + + + World Poker Tour + WPT Choctaw - Part 1 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + Live on the Line + A sports-betting series that delivers expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. + + + The Rally + Debates and analysis on the latest sports trends. (new). + + + Kings Weekly + Player interviews and exclusive features provide an inside look at the Kings organization. + Sports + Hockey + + + + Los Angeles Kings vs. Philadelphia Flyers + Los Angeles Kings at Philadelphia Flyers + From Wells Fargo Center in Philadelphia. + Sports + Hockey + + + + Kings Live Postgame + An extension of the Kings game with unmatched access to the team. + Sports + Hockey + + + + Kings Weekly + Player interviews and exclusive features provide an inside look at the Kings organization. + Sports + Hockey + + + + World Poker Tour: Season 20 + Seminole Hard Rock Poker Showdown - Part 4 + Sports + Cards + + + + NASCAR Race Rewind + 2021 Phoenix: NASCAR Cup Series Championship Race + From Nov. 7, 2021. + Sports + Auto Racing + + + + Pro Football Weekly + NFL news and highlights plus a preview of the week's top match-ups. + Sports + Football + + + TVG + + + + Bleav in Chargers + Hosted by Lorenzo Neal & Matt. + Sports + Football + + + + Bleav in Rams + Hosted by Cam Lynch & Jake Ellenbogen. + Sports + Football + + + + Sports Stars of Tomorrow + Profiles of the top rookie, college and high-school talent in sports; current athletes share their experiences, advice and personal impressions of the road to stardom. + Sports + Anthology + + + + To Be Announced + Programming to be announced. + Performing Arts + Music + + + TVPG + + + + Emeril's must have non-stick pans + Replace your everyday pans with Emeril's Non-stick Forever Pans! + Paid Program + + + + Rare Silver Coin Set + Add the First Day of Issue 2023 Morgan and Peace Dollars graded in perfect Mint State and Proof 70 condition to your collection. With Mint State mintages of only 275,000 examples and 400,00 for Proof, these coins are incredible absolute rarities! + Paid Program + + + + Men's Health - All-Natural Secret for Prostate Health + Prosvent is a doctor formulated blend of rejuvenating herbs and nutrients that help protect overall prostate health. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Inogen Portable Oxygen - Oxygen Therapy that Moves with You + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Rare Silver Coin Set + Add the First Day of Issue 2023 Morgan and Peace Dollars graded in perfect Mint State and Proof 70 condition to your collection. With Mint State mintages of only 275,000 examples and 400,00 for Proof, these coins are incredible absolute rarities! + Paid Program + + + + Amazing Closet Makeovers! 70% more space! + Up to 70% more closet space in seconds with Ruby Space Triangles! + Paid Program + + + + Rare Silver Coin Set + Add the First Day of Issue 2023 Morgan and Peace Dollars graded in perfect Mint State and Proof 70 condition to your collection. With Mint State mintages of only 275,000 examples and 400,00 for Proof, these coins are incredible absolute rarities! + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Amazing Closet Makeovers! 70% more space! + Up to 70% more closet space in seconds with Ruby Space Triangles! + Paid Program + + + + Angler Chronicles + Fresh and saltwater fishing from Southern California, Mexico, British Columbia, Alaska and Panama. + Sports + Outdoors + + + + Angler Chronicles + Fresh and saltwater fishing from Southern California, Mexico, British Columbia, Alaska and Panama. + Sports + Outdoors + + + + Chad Hoover Fishing + Kayak Fishing North Alabama + Chad Hoover shares his passion and talent for fishing. + Sports + Fishing + + + + Road Trip Angler + Tallahassee to Tampa + Jameson Redding hits the road to find the best fishing spots in America. + Regular + + + + Golf Life + Featuring the latest trends, tours of the finest courses and tips from golf experts. + Sports + Miscellaneous + + + + Breaking Par + A bucket list trip to Pebble Beach as the crew explores Pebble, Spyglass, and Spanish Bay golf courses. + Sports + Golf + + + + Destination Polaris + Hosts Jared Christie and Alexa Score uncover the world's top riding destinations. Join them on the adventure each week to mountains, canyons, deserts and dunes. + Sports + Outdoors + + + TVPG + + + + P1 Racing + St. Petersburg: Class 1 Offshore + Highlights from the Powerboat P1 racing series. + Sports + Boating + + + + In the Spotlight + Julius Erving + Featuring legends of the sports world in their own words, hosted by former Major League Baseball player and longtime broadcaster Fran Healy. + Sports + Talk Show + + + + Focused + Naismith Memorial Basketball Hall of Fame + A glimpse into compelling sports stars and iconic athletic institutions. Visual storytelling propels a deep dive into each story, as the true essence of each subject is revealed. + Sports + + + + Tennis Classics + 2022: Rafael Nadal vs. Taylor Fritz + ATP Indian Wells Final. + Sports + Tennis + + + + Golf Life + Featuring the latest trends, tours of the finest courses and tips from golf experts. + Sports + Miscellaneous + + + + Breaking Par + A bucket list trip to Pebble Beach as the crew explores Pebble, Spyglass, and Spanish Bay golf courses. + Sports + Golf + + + + The Icons With Rick Horrow + Lou Holtz + Profiling the stories behind the positive impact of sports. + Sports + + + + AVP Pro Beach Volleyball Tour + Chicago Open + Coverage of beach volleyball. + Sports + Volleyball + + + + World Poker Tour: Season 20 + Seminole Hard Rock Poker Showdown - Part 4 + Sports + Cards + + + + World Poker Tour: Season 20 + Choctaw - Part 1 + Sports + Cards + + + + Bally's Big Bet Poker + Big stakes, big thrills and big fun with poker's biggest and baddest superstars risking millions in real cash. Hosted by Houston Curtis and Rick Mahr. + Sports + Cards + + + + NASCAR Race Rewind + 2021 Phoenix: NASCAR Cup Series Championship Race + From Nov. 7, 2021. + Sports + Auto Racing + + + + NASCAR Race Rewind + 2022 Phoenix: NASCAR Cup Series Championship + From Nov. 6, 2022. + Sports + Auto Racing + + + + Sports Stars of Tomorrow + Profiles of the top rookie, college and high-school talent in sports; current athletes share their experiences, advice and personal impressions of the road to stardom. + Sports + Anthology + + + + Tennis Classics + 2022: Rafael Nadal vs. Taylor Fritz + ATP Indian Wells Final. + Sports + Tennis + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Men's Health - All-Natural Secret for Prostate Health + Prosvent is a doctor formulated blend of rejuvenating herbs and nutrients that help protect overall prostate health. + Paid Program + + + + Emeril's must have non-stick pans + Replace your everyday pans with Emeril's Non-stick Forever Pans! + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Inogen Portable Oxygen - Oxygen Therapy that Moves with You + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Los Angeles Kings vs. Philadelphia Flyers + Los Angeles Kings at Philadelphia Flyers + From Wells Fargo Center in Philadelphia. + Sports + Hockey + + + + Kings Live Postgame + An extension of the Kings game with unmatched access to the team. + Sports + Hockey + + + + Kings Weekly + Player interviews and exclusive features provide an inside look at the Kings organization. + Sports + Hockey + + + + Live on the Line + Interactive betting program that informs and entertains while delivering expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. + Sports + + + + Los Angeles Kings vs. Philadelphia Flyers + Los Angeles Kings at Philadelphia Flyers + From Wells Fargo Center in Philadelphia. + Sports + Hockey + + + + NASCAR Race Rewind + 2022 Auto Club: Wise Power 400 + From Feb. 27, 2022. + Sports + Auto Racing + + + + In the Spotlight + Julius Erving + Featuring legends of the sports world in their own words, hosted by former Major League Baseball player and longtime broadcaster Fran Healy. + Sports + Talk Show + + + + Focused + Naismith Memorial Basketball Hall of Fame + A glimpse into compelling sports stars and iconic athletic institutions. Visual storytelling propels a deep dive into each story, as the true essence of each subject is revealed. + Sports + + + + NASCAR Race Rewind + 2022: Daytona 500 + From Feb. 20, 2022. + Sports + Auto Racing + + + + Live on the Line + Interactive betting program that informs and entertains while delivering expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. + Sports + + + + World Poker Tour: Season 20 + Choctaw - Part 1 + Sports + Cards + + + + The Rally + The hottest storylines and headlines from both sports and pop culture in a high energy, fast-moving format that gets fans ready to enjoy the night in sports, including breaking news, features, expert analysis, previews, and interviews. + Sports + Talk Show + + + + Tennis Classics + 2022: Taylor Fritz vs. Sebastian Korda + ATP Monte Carlo, 3rd Round. + Sports + Tennis + + + + Tennis Classics + 2022: Rafael Nadal vs. Taylor Fritz + ATP Indian Wells Final. + Sports + Tennis + + + + Bally's Big Bet Poker + Big stakes, big thrills and big fun with poker's biggest and baddest superstars risking millions in real cash. Hosted by Houston Curtis and Rick Mahr. + Sports + Cards + + + + World Poker Tour: Season 20 + Choctaw - Part 1 + Sports + Cards + + + + NASCAR Race Rewind + 2022: Daytona 500 + From Feb. 20, 2022. + Sports + Auto Racing + + + + NASCAR Race Rewind + 2022 Auto Club: Wise Power 400 + From Feb. 27, 2022. + Sports + Auto Racing + + + + In the Spotlight + Julius Erving + Featuring legends of the sports world in their own words, hosted by former Major League Baseball player and longtime broadcaster Fran Healy. + Sports + Talk Show + + + + Focused + Naismith Memorial Basketball Hall of Fame + A glimpse into compelling sports stars and iconic athletic institutions. Visual storytelling propels a deep dive into each story, as the true essence of each subject is revealed. + Sports + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigate Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Men's Health - All-Natural Secret for Prostate Health + Prosvent is a doctor formulated blend of rejuvenating herbs and nutrients that help protect overall prostate health. + Paid Program + + + + Emeril's must have non-stick pans + Replace your everyday pans with Emeril's Non-stick Forever Pans! + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigate Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Amazing Closet Makeovers! 70% more space! + Up to 70% more closet space in seconds with Ruby Space Triangles! + Paid Program + + + + Golf Life + Featuring the latest trends, tours of the finest courses and tips from golf experts. + Sports + Miscellaneous + + + + Breaking Par + Breaking Par goes to Kaua'i, the garden isle of Hawaii. More than just epic golf, Kaua'i dances on the edge of reality and dreams. + Sports + Golf + + + + AVP Pro Beach Volleyball Tour + Chicago Open + Coverage of beach volleyball. + Sports + Volleyball + + + + Live on the Line + Interactive betting program that informs and entertains while delivering expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. + Sports + + + + Angler Chronicles + Fresh and saltwater fishing from Southern California, Mexico, British Columbia, Alaska and Panama. + Sports + Outdoors + + + + Stoked on Fishing + Shea McIntee travels to the hottest fresh and saltwater destinations around the globe and tags along with anglers who love the sport of fishing. + Documentary + + + + Chad Hoover Fishing + Kayak Fishing North Alabama + Chad Hoover shares his passion and talent for fishing. + Sports + Fishing + + + + Road Trip Angler + Tallahassee to Tampa + Jameson Redding hits the road to find the best fishing spots in America. + Regular + + + + AVP Pro Beach Volleyball Tour + Chicago Open + Coverage of beach volleyball. + Sports + Volleyball + + + + Epic Trails + Backpacking North Dakota + Eric Hanson seeks new adventures on the Maah Daah Hey Trail in North Dakota's Theodore Roosevelt National Park. + + Eric Hanson + + Travel + + + TVG + + + + Facing Waves + Kayaking the Okefenokee National Wildlife Refuge Part 1 + Ken Whiting and other top athletes demonstrate spectacular paddling during kayaking adventures in stunning locations around the world, featuring paddling, sea kayaking, canoeing, whitewater paddling and stand up paddling. + Sports + Watersports + + + TVG + + + + Live on the Line + Interactive betting program that informs and entertains while delivering expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. + Sports + + + + Breaking Par + Breaking Par goes to Kaua'i, the garden isle of Hawaii. More than just epic golf, Kaua'i dances on the edge of reality and dreams. + Sports + Golf + + + + Golf Life + Featuring the latest trends, tours of the finest courses and tips from golf experts. + Sports + Miscellaneous + + + + The Rally + The hottest storylines and headlines from both sports and pop culture in a high energy, fast-moving format that gets fans ready to enjoy the night in sports, including breaking news, features, expert analysis, previews, and interviews. + Sports + Talk Show + + + + AVP Pro Beach Volleyball Tour + Chicago Open + Coverage of beach volleyball. + Sports + Volleyball + + + + Lights Out Xtreme Fighting + LXF 11 + Live fights are back at LXF 11 with the return of Shawne Merriman's Lights Out Xtreme Fighting. + Sports + Martial Arts + + + TV14 + + + + World Poker Tour: Season 20 + Seminole Hard Rock Poker Showdown - Part 4 + Sports + Cards + + + + World Poker Tour: Season 20 + Choctaw - Part 1 + Sports + Cards + + + + Tennis Classics + 2022: Taylor Fritz vs. Sebastian Korda + ATP Monte Carlo, 3rd Round. + Sports + Tennis + + + + The Card Life + Atlanta + Matt Strahm visits a new Atlanta-area card shop that is modern in every sense of the word. Also, a 5-year-old who made his lemonade stand into his own place to sell baseball cards. + Sports + Miscellaneous + + + + NASCAR Race Rewind + 2022 Auto Club: Wise Power 400 + From Feb. 27, 2022. + Sports + Auto Racing + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigate Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Men's Health - All-Natural Secret for Prostate Health + Prosvent is a doctor formulated blend of rejuvenating herbs and nutrients that help protect overall prostate health. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigate Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigate Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Sports Stars of Tomorrow + Profiles of the top rookie, college and high-school talent in sports; current athletes share their experiences, advice and personal impressions of the road to stardom. + Sports + Anthology + + + + The Card Life + Atlanta + Matt Strahm visits a new Atlanta-area card shop that is modern in every sense of the word. Also, a 5-year-old who made his lemonade stand into his own place to sell baseball cards. + Sports + Miscellaneous + + + + World Poker Tour: Season 20 + Seminole Hard Rock Poker Showdown - Part 4 + Sports + Cards + + + + World Poker Tour: Season 20 + Choctaw - Part 1 + Sports + Cards + + + + Live on the Line + Interactive betting program that informs and entertains while delivering expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. + Sports + + + + NASCAR Race Rewind + 2022: Daytona 500 + From Feb. 20, 2022. + Sports + Auto Racing + + + + NASCAR Race Rewind + 2022 Auto Club: Wise Power 400 + From Feb. 27, 2022. + Sports + Auto Racing + + + + Destination Polaris + Hosts Jared Christie and Alexa Score uncover the world's top riding destinations. Join them on the adventure each week to mountains, canyons, deserts and dunes. + Sports + Outdoors + + + TVPG + + + + Epic Trails + Backpacking North Dakota + Eric Hanson seeks new adventures on the Maah Daah Hey Trail in North Dakota's Theodore Roosevelt National Park. + + Eric Hanson + + Travel + + + TVG + + + + Tennis Classics + 2022: Taylor Fritz vs. Sebastian Korda + ATP Monte Carlo, 3rd Round. + Sports + Tennis + + + + In the Spotlight + Julius Erving + Featuring legends of the sports world in their own words, hosted by former Major League Baseball player and longtime broadcaster Fran Healy. + Sports + Talk Show + + + + Live on the Line + Interactive betting program that informs and entertains while delivering expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. + Sports + + + + Kings Live + A look at Los Angeles Kings action. (live). + + + Kings Weekly + A look at Los Angeles Kings news, highlighting personalities within the team's locker room. (new). + + + NHL Hockey + Los Angeles Kings at Philadelphia Flyers + Los Angeles Kings at Philadelphia Flyers. From Wells Fargo Center. + 2023 + Pro Sports + + + Kings Live + A look at Los Angeles Kings action. + + + Kings Weekly + A look at Los Angeles Kings news, highlighting personalities within the team's locker room. + + + World Poker Tour + WPT Seminole Hard Rock Poker Showdown - Part 4 (Week of 10/29) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + Classic NASCAR + 2022: Cup Series Championship in Phoenix + The 2022 Cup Series Championship race at one-mile Phoenix Raceway. Former series champs Joey Logano (No. 22 car) and Chase Elliott (9) led the Championship 4 drivers, along with Martinsville playoff winner Christopher Bell (20) and dramatic qualifier Ross Chastain (1), whose wall-scraping final lap last week sling-shotted him past Denny Hamlin. + 2022 + + + Pro Football Weekly + An in-depth preview and analysis of NFL action. + + TV-G + + + + Bleav in Chargers + Hosts Lorenzo Neal and Matt "Money" Smith discuss Los Angeles Chargers football. + + + Bleav in Rams + Hosts Cam Lynch & Jake Ellenbogen discuss Los Angeles Rams football. + + + Sports Stars of Tomorrow + Sports Stars of Tomorrow is a United States nationally-syndicated sports television show about high school and college athletics. The show, which is hosted by well known college and NFL television analyst Charles Davis, takes its viewers across the country in search of the brightest young stars in sports. Sports Stars of Tomorrow is the only high-school sports program in national syndication. + + Charles Davis + Pat Summerall + + Sports + + TV-G + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Rctv Default + Rare Collectibles TV offers viewers the ability to learn about historic silver and gold coins. + 2022 + + + Paid Programming + Paid Programming. + + TV-14 + + + + True Crime 2023 + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + 2022 + + + Paid Programming + Paid Programming. + + TV-14 + + + + Rctv Default + Rare Collectibles TV offers viewers the ability to learn about historic silver and gold coins. + 2022 + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Angler Chronicles + Instructions on salt and freshwater angling around the globe. + + + Angler Chronicles + Instructions on salt and freshwater angling around the globe. (new). + + + Chad Hoover Fishing + Kayak Fishing North Alabama + 2023 + + + Road Trip Angler + Tallahassee to Tampa + 2023 + + + Golf Life + A look at golf courses, training tips and mental aspects of the game. + + + Breaking Par + October 2023 + + Ryan Johnson + Felix Stone + + 2023 + Sports + + + Destination Polaris + Hosts Jared Christie and Alexa Score uncover the world's top riding destinations. Join them on the adventure each week to mountains, canyons, deserts and dunes. + + Jared Christie + Alexa Score + Nick Clausen + + Sports + + TV-14 + + + + Powerboat Racing + St. Petersburg: Class 1 Offshore + 2023 + + + In the Spotlight + Julius Erving (Week of 10/30) + + Fran Healy + + 2023 + Talk & Interview + Sports + + + Focused + Naismith Memorial Basketball Hall of Fame (Week of 10/30) + + Fran Healy + + 2023 + Talk & Interview + Sports + + + Classic Tennis + 2022: Rafael Nadal-Taylor Fritz + From 2022: Rafael Nadal vs. Taylor Fritz in the ATP Indian Wells final. + 2022 + + + Golf Life + A look at golf courses, training tips and mental aspects of the game. + + + Breaking Par + October 2023 + + Ryan Johnson + Felix Stone + + 2023 + Sports + + + The Icons with Rick Horrow: Leadership in Sports + Lou Holtz + + Rick Horrow + + 2023 + Talk & Interview + Sports + + + AVP Pro Beach Volleyball + AVP Pro Chicago Open + AVP Gold Series Chicago Open men's and women's finals. From Oak Street Beach on Lake Michigan. + 2022 + + + World Poker Tour + WPT Seminole Hard Rock Poker Showdown - Part 4 (Week of 11/5) + (new). + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + World Poker Tour + WPT Choctaw - Part 1 (Week of 11/5) + (new). + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + Bally's Big Bet Poker + Big Stakes. Big Thrills. Big Fun. Watch poker's biggest and baddest superstars risking millions in real cash. Hosted by Houston Curtis and Rick Mahr. + + + Classic NASCAR + 2021: Phoenix: NASCAR Cup Series Championship Race + The 2021 NASCAR Cup Series championship race in Arizona. + 2021 + + + Classic NASCAR + 2022: Cup Series Championship in Phoenix + The 2022 Cup Series Championship race at one-mile Phoenix Raceway. Former series champs Joey Logano (No. 22 car) and Chase Elliott (9) led the Championship 4 drivers, along with Martinsville playoff winner Christopher Bell (20) and dramatic qualifier Ross Chastain (1), whose wall-scraping final lap last week sling-shotted him past Denny Hamlin. + 2022 + + + Sports Stars of Tomorrow + Sports Stars of Tomorrow is a United States nationally-syndicated sports television show about high school and college athletics. The show, which is hosted by well known college and NFL television analyst Charles Davis, takes its viewers across the country in search of the brightest young stars in sports. Sports Stars of Tomorrow is the only high-school sports program in national syndication. + + Charles Davis + Pat Summerall + + Sports + + TV-G + + + + Classic Tennis + 2022: Rafael Nadal-Taylor Fritz + From 2022: Rafael Nadal vs. Taylor Fritz in the ATP Indian Wells final. + 2022 + + + True Crime 2023 + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + 2022 + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + 2021 + + + Paid Programming + Paid Programming. + + TV-14 + + + + Emeril non-stick pans + Replace your everyday pans with Emeril's Non-stick Forever Pans! + 2021 + + + True Crime 2023 + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + 2022 + + + Oxygen Therapy + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + 2022 + + + NHL Hockey + Los Angeles Kings at Philadelphia Flyers + Los Angeles Kings at Philadelphia Flyers. From Wells Fargo Center. + 2023 + Pro Sports + + + Kings Live + A look at Los Angeles Kings action. + + + Kings Weekly + A look at Los Angeles Kings news, highlighting personalities within the team's locker room. + + + Live on the Line + A sports-betting series that delivers expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. (live). + + + NHL Hockey + Los Angeles Kings at Philadelphia Flyers + Los Angeles Kings at Philadelphia Flyers. From Wells Fargo Center. + 2023 + Pro Sports + + + Classic NASCAR + 2022: Auto Club: Wise Power 400 + (new). + 2022 + + + In the Spotlight + Julius Erving (Week of 11/6) + (new). + + Fran Healy + + 2023 + Talk & Interview + Sports + + + Focused + Naismith Memorial Basketball Hall of Fame (Week of 11/6) + (new). + + Fran Healy + + 2023 + Talk & Interview + Sports + + + Classic NASCAR + 2022 Daytona 500 + The green flag drops on the 2022 Cup Series with the 64th Great American Race, the Daytona 500, from Daytona International Speedway in Florida. Defending series champ Kyle Larson (No. 5 Chevy) and Alex Bowman (No. 48 Chevy) started in Row 1. (new). + 2022 + + + Live on the Line + A sports-betting series that delivers expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. + + + World Poker Tour + WPT Choctaw - Part 1 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + The Rally + Debates and analysis on the latest sports trends. (new). + + + Classic Tennis + 2022: Taylor Fritz-Sebastian Korda + From 2022: Taylor Fritz vs. Sebastian Korda in an ATP Monte Carlo third-round match. + 2022 + + + Classic Tennis + 2022: Rafael Nadal-Taylor Fritz + From 2022: Rafael Nadal vs. Taylor Fritz in the ATP Indian Wells final. + 2022 + + + Bally's Big Bet Poker + Big Stakes. Big Thrills. Big Fun. Watch poker's biggest and baddest superstars risking millions in real cash. Hosted by Houston Curtis and Rick Mahr. + + + World Poker Tour + WPT Choctaw - Part 1 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + Classic NASCAR + 2022 Daytona 500 + The green flag drops on the 2022 Cup Series with the 64th Great American Race, the Daytona 500, from Daytona International Speedway in Florida. Defending series champ Kyle Larson (No. 5 Chevy) and Alex Bowman (No. 48 Chevy) started in Row 1. + 2022 + + + Classic NASCAR + 2022: Auto Club: Wise Power 400 + 2022 + + + In the Spotlight + Julius Erving (Week of 11/6) + + Fran Healy + + 2023 + Talk & Interview + Sports + + + Focused + Naismith Memorial Basketball Hall of Fame (Week of 11/6) + + Fran Healy + + 2023 + Talk & Interview + Sports + + + True Crime 2023 + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + 2022 + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Emeril non-stick pans + Replace your everyday pans with Emeril's Non-stick Forever Pans! + 2021 + + + Paid Programming + Paid Programming. + + TV-14 + + + + Ruby Spaces Triangles + Up to 70% more closet space in seconds with Ruby Space Triangles! + 2022 + + + Golf Life + A look at golf courses, training tips and mental aspects of the game. + + + Breaking Par + November 2023 + (new). + + Ryan Johnson + Felix Stone + + 2023 + Sports + + + AVP Pro Beach Volleyball + AVP Pro Chicago Open + AVP Gold Series Chicago Open men's and women's finals. From Oak Street Beach on Lake Michigan. + 2022 + + + Live on the Line + A sports-betting series that delivers expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. (live). + + + Angler Chronicles + Instructions on salt and freshwater angling around the globe. + + + Stoked on Fishing + High-energy angling adventures. + + + Chad Hoover Fishing + Kayak Fishing North Alabama + 2023 + + + Road Trip Angler + Tallahassee to Tampa + 2023 + + + AVP Pro Beach Volleyball + AVP Pro Chicago Open + AVP Gold Series Chicago Open men's and women's finals. From Oak Street Beach on Lake Michigan. + 2022 + + + Epic Trails + Backpacking North Dakota + Eric Hanson seeks adventure on the Maah Daah Hey Trail in North Dakota's Theodore Roosevelt National Park. (new). + + Sam Burrows + Ken Whiting + Eric Hanson + Ken Whiting + + 2023 + Travel + Sports + S6 E9 + + + Facing Waves + Kayaking the Okefenokee National Wildlife Refuge - Part 1 + + Ken Whiting + + 2023 + Travel + Sports + + TV-PG + + + + Live on the Line + A sports-betting series that delivers expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. + + + Breaking Par + November 2023 + + Ryan Johnson + Felix Stone + + 2023 + Sports + + + Golf Life + A look at golf courses, training tips and mental aspects of the game. + + + The Rally + Debates and analysis on the latest sports trends. (new). + + + AVP Pro Beach Volleyball + AVP Pro Chicago Open + AVP Gold Series Chicago Open men's and women's finals. From Oak Street Beach on Lake Michigan. + 2022 + + + Lights Out Xtreme Fighting + 2023 + + + World Poker Tour + WPT Seminole Hard Rock Poker Showdown - Part 4 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + World Poker Tour + WPT Choctaw - Part 1 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + Classic Tennis + 2022: Taylor Fritz-Sebastian Korda + From 2022: Taylor Fritz vs. Sebastian Korda in an ATP Monte Carlo third-round match. + 2022 + + + The Card Life + The Card Life: Atlanta + + Brandon Verzal + Matt Strahm + + 2023 + Sports + + TV-PG + + + + Classic NASCAR + 2022: Auto Club: Wise Power 400 + 2022 + + + Paid Programming + Paid Programming. + + TV-14 + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all natural solution for joint pain from inflammation. + 2020 + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + True Crime 2023 + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + 2022 + + + Paid Programming + Paid Programming. + + TV-14 + + + + Sports Stars of Tomorrow + Sports Stars of Tomorrow is a United States nationally-syndicated sports television show about high school and college athletics. The show, which is hosted by well known college and NFL television analyst Charles Davis, takes its viewers across the country in search of the brightest young stars in sports. Sports Stars of Tomorrow is the only high-school sports program in national syndication. + + Charles Davis + Pat Summerall + + Sports + + TV-G + + + + The Card Life + The Card Life: Atlanta + + Brandon Verzal + Matt Strahm + + 2023 + Sports + + TV-PG + + + + World Poker Tour + WPT Seminole Hard Rock Poker Showdown - Part 4 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + World Poker Tour + WPT Choctaw - Part 1 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + Live on the Line + A sports-betting series that delivers expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. (live). + + + Classic NASCAR + 2022 Daytona 500 + The green flag drops on the 2022 Cup Series with the 64th Great American Race, the Daytona 500, from Daytona International Speedway in Florida. Defending series champ Kyle Larson (No. 5 Chevy) and Alex Bowman (No. 48 Chevy) started in Row 1. + 2022 + + + Classic NASCAR + 2022: Auto Club: Wise Power 400 + 2022 + + + Destination Polaris + Hosts Jared Christie and Alexa Score uncover the world's top riding destinations. Join them on the adventure each week to mountains, canyons, deserts and dunes. + + Jared Christie + Alexa Score + Nick Clausen + + Sports + + TV-14 + + + + Epic Trails + Backpacking North Dakota + Eric Hanson seeks adventure on the Maah Daah Hey Trail in North Dakota's Theodore Roosevelt National Park. + + Sam Burrows + Ken Whiting + Eric Hanson + Ken Whiting + + 2023 + Travel + Sports + S6 E9 + + + Classic Tennis + 2022: Taylor Fritz-Sebastian Korda + From 2022: Taylor Fritz vs. Sebastian Korda in an ATP Monte Carlo third-round match. + 2022 + + + In the Spotlight + Julius Erving (Week of 11/6) + + Fran Healy + + 2023 + Talk & Interview + Sports + + + Live on the Line + A sports-betting series that delivers expert analysis and betting advice, including the best bets, props, lines, fantasy plays and bargains, as well as trending topics across sports that impact betting. + + + Banda y Max + Music + + + + Acceso Grupero + Regular + + + + Acceso Grupero + Regular + + + + Las imperdibles BDX + Music + + + + 2x1 Bandamax + Music + + + + Los patrones de Bandamax + Music + + + + La cantina del Tunco + Programa cómico con sugerencias musicales, adivinanzas y donde el público puede interactuar mediante el envío de correos electrónicos. + + Miguel Vallejo + + Comedy + Music + + + + El show del hombre + Music + + + + Off Air + Fin de emisión. + Specials + Performing Arts + + + TVG + + + + Videos pa' bailar + Music + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Dedicables BDX + Se dedican los mejores temas a todos los que los piden. Con la música que marca tendencia y los grandes éxitos del momento, ningún sencillo falta en esta gran selección musical. + Music + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Videos pa' bailar + Music + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Videos pa' bailar + Music + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Videos pa' bailar + Music + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Videos pa' bailar + Music + + + + Videos pa' bailar + Music + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Las Más Sonadas + Compilado de las bandas y éxitos más sonados en México. + Music + + + + Viejitas pero sabrosas + Videos que a pesar del tiempo aún se recuerdan. + Music + + + + Las imperdibles BDX + Music + + + + Los consagrados de Bandamax + Una selección de videos de los grandes éxitos de los artistas más importantes del regional mexicano. + Music + + + + Bandamáximo dolor + Una selección de videos para ayudar a quitar el mal de amores. + Music + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Banda y Max + Music + + + + Buenas Banda + Music + + + + Ídolos + Music + + + + Regional clasificado + Music + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Bandamáximo dolor + Una selección de videos para ayudar a quitar el mal de amores. + Music + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Los consagrados de Bandamax + Una selección de videos de los grandes éxitos de los artistas más importantes del regional mexicano. + Music + + + + Qué news Bandamax + Programa con las últimas novedades musicales e invitados especiales. + Music + News + + + + Buenas Banda + Music + + + + Las Más Sonadas + Compilado de las bandas y éxitos más sonados en México. + Music + + + + Las 10 más picudas de la cumbia + Los diez mejores videos musicales de la cumbia. + Music + Performing Arts + + + + Banda y Max + Music + + + + Las imperdibles BDX + Music + + + + Bandamáximo dolor + Una selección de videos para ayudar a quitar el mal de amores. + Music + + + + Las Más Sonadas + Compilado de las bandas y éxitos más sonados en México. + Music + + + + Viejitas pero sabrosas + Videos que a pesar del tiempo aún se recuerdan. + Music + + + + Las imperdibles BDX + Music + + + + Las consagradas de Bandamax + Un acercamiento a las bandas favoritas del público: sus giras, actuaciones y las últimas novedades musicales. + Music + + + + Bandamáximo dolor + Una selección de videos para ayudar a quitar el mal de amores. + Music + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Banda y Max + Music + + + + Buenas Banda + Music + + + + Ídolos + Music + + + + Trépale al ranchero + Una selección de videos con lo mejor de la música ranchera, sus protagonistas y las canciones más conocidas. + Music + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Bandamáximo dolor + Una selección de videos para ayudar a quitar el mal de amores. + Music + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Las consagradas de Bandamax + Un acercamiento a las bandas favoritas del público: sus giras, actuaciones y las últimas novedades musicales. + Music + + + + Qué news Bandamax + Programa con las últimas novedades musicales e invitados especiales. + Music + News + + + + Buenas Banda + Music + + + + Las Más Sonadas + Compilado de las bandas y éxitos más sonados en México. + Music + + + + Las 10 más picudas + Lizette Briones presenta semanalmente los 10 mejores videos musicales de Bandamax. + Performing Arts + + + + Banda y Max + Music + + + + Las imperdibles BDX + Music + + + + Bandamáximo dolor + Una selección de videos para ayudar a quitar el mal de amores. + Music + + + + Las Más Sonadas + Compilado de las bandas y éxitos más sonados en México. + Music + + + + Viejitas pero sabrosas + Videos que a pesar del tiempo aún se recuerdan. + Music + + + + Las imperdibles BDX + Music + + + + Los consagrados de Bandamax + Una selección de videos de los grandes éxitos de los artistas más importantes del regional mexicano. + Music + + + + Bandamáximo dolor + Una selección de videos para ayudar a quitar el mal de amores. + Music + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Banda y Max + Music + + + + Buenas Banda + Music + + + + Ídolos + Music + + + + Trepale al norteño + Una selección de videos con lo mejor de la música norteña y sus protagonistas. + Music + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Bandamáximo dolor + Una selección de videos para ayudar a quitar el mal de amores. + Music + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Los consagrados de Bandamax + Una selección de videos de los grandes éxitos de los artistas más importantes del regional mexicano. + Music + + + + Qué news Bandamax + Programa con las últimas novedades musicales e invitados especiales. + Music + News + + + + Buenas Banda + Music + + + + Las Más Sonadas + Compilado de las bandas y éxitos más sonados en México. + Music + + + + Illinois vs. University of Wisconsin (Madison) + Illinois at Wisconsin + From Wisconsin Field House in Madison, Wis. + Sports + Volleyball + + + + The Final Drive + A comprehensive wrap-up featuring extensive highlights, hard-hitting analysis and a recap of top performances from around the conference. + Sports + Football + + + + The Final Drive + A comprehensive wrap-up featuring extensive highlights, hard-hitting analysis and a recap of top performances from around the conference. + Sports + Football + + + + The Final Drive + A comprehensive wrap-up featuring extensive highlights, hard-hitting analysis and a recap of top performances from around the conference. + Sports + Football + + + + The Final Drive + A comprehensive wrap-up featuring extensive highlights, hard-hitting analysis and a recap of top performances from around the conference. + Sports + Football + + + + University of Wisconsin (Madison) vs. Indiana + Wisconsin at Indiana + The Badgers (5-3, 3-2) try to keep pace in the Big Ten West race as they visit the Hoosiers (2-6, 0-5). Wisconsin is among four teams tied for the division lead after losing to then-No. 3 Ohio State. Indiana halted a 10-game series slide in 2020. + Sports + Football + + + + The Final Drive + A comprehensive wrap-up featuring extensive highlights, hard-hitting analysis and a recap of top performances from around the conference. + Sports + Football + + + + The Final Drive + A comprehensive wrap-up featuring extensive highlights, hard-hitting analysis and a recap of top performances from around the conference. + Sports + Football + + + + The Final Drive + A comprehensive wrap-up featuring extensive highlights, hard-hitting analysis and a recap of top performances from around the conference. + Sports + Football + + + + The Final Drive + A comprehensive wrap-up featuring extensive highlights, hard-hitting analysis and a recap of top performances from around the conference. + Sports + Football + + + + The Final Drive + A comprehensive wrap-up featuring extensive highlights, hard-hitting analysis and a recap of top performances from around the conference. + Sports + Football + + + + The Final Drive + A comprehensive wrap-up featuring extensive highlights, hard-hitting analysis and a recap of top performances from around the conference. + Sports + Football + + + + B1G Football in 60 + 2023: Purdue at Michigan + From Nov. 4, 2023. + Sports + Football + + + + College Field Hockey + B1G Championship: Teams TBA + From Phyllis Ocker Field in Ann Arbor, Mich. + Sports + Field Hockey + + + + Iowa vs. University of Wisconsin (Madison) + Big Ten Championship: Iowa vs. Wisconsin + From Lower.com Field in Columbus, Ohio. + Sports + Soccer + + + + The B1G Trip + Iowa Women's Basketball, Part 3 + The Hawkeyes women's basketball team wrap up their tour in Croatia as they compete in their last local game, take a walking tour of Dubrovnik and go kayaking in the Adriatic Sea. + Sports + Talk Show + + + + Notre Dame vs. Penn State + Notre Dame at Penn State + From Pegula Ice Arena in University Park, Pa. + Sports + Hockey + + + + B1G Football in 60 + 2023: Penn State at Maryland + From Nov. 4, 2023. + Sports + Football + + + + The Final Drive + A comprehensive wrap-up featuring extensive highlights, hard-hitting analysis and a recap of top performances from around the conference. + Sports + Football + + + + B1G Football in 60 + 2023: Wisconsin at Indiana + From Nov. 4, 2023. + Sports + Football + + + + The Final Drive + A comprehensive wrap-up featuring extensive highlights, hard-hitting analysis and a recap of top performances from around the conference. + Sports + Football + + + + B1G Football in 60 + 2023: Nebraska at Michigan State + From Nov. 4, 2023. + Sports + Football + + + + B1G Football in 60 + 2023: Ohio State at Rutgers + From Nov. 4, 2023. + Sports + Football + + + + The Final Drive + A comprehensive wrap-up featuring extensive highlights, hard-hitting analysis and a recap of top performances from around the conference. + Sports + Football + + + + Iowa vs. University of Wisconsin (Madison) + Big Ten Championship: Iowa vs. Wisconsin + From Lower.com Field in Columbus, Ohio. + Sports + Soccer + + + + B1G Football in 60 + 2023: Purdue at Michigan + From Nov. 4, 2023. + Sports + Football + + + + The Final Drive + A comprehensive wrap-up featuring extensive highlights, hard-hitting analysis and a recap of top performances from around the conference. + Sports + Football + + + + B1G Football in 60 + 2023: Penn State at Maryland + From Nov. 4, 2023. + Sports + Football + + + + B1G Football in 60 + 2023: Wisconsin at Indiana + From Nov. 4, 2023. + Sports + Football + + + + The Final Drive + A comprehensive wrap-up featuring extensive highlights, hard-hitting analysis and a recap of top performances from around the conference. + Sports + Football + + + + B1G Football in 60 + 2023: Purdue at Michigan + From Nov. 4, 2023. + Sports + Football + + + + The Final Drive + A comprehensive wrap-up featuring extensive highlights, hard-hitting analysis and a recap of top performances from around the conference. + Sports + Football + + + + B1G Football in 60 + 2023: Iowa vs. Northwestern + From Nov. 4, 2023 at Wrigley Field. + Sports + Football + + + + B1G Today + News from around the Big Ten Conference. + Sports + + + + B1G Live + Football Coaches Press Conferences + News and updates from coaches and players from around the Big Ten conference. + Sports + Miscellaneous + + + + B1G Football in 60 + 2023: Illinois at Minnesota + From Nov. 4, 2023. + Sports + Football + + + + B1G Today + News from around the Big Ten Conference. + Sports + + + + B1G Live: Basketball Tip-Off Show + The lead up to Big Ten Basketball action with pre-game breakdowns, team updates and live campus look-ins. + Sports + Basketball + + + + Samford vs. Purdue + Samford at Purdue + From Mackey Arena in West Lafayette, Ind. + Sports + Basketball + + + + James Madison vs. Michigan State + James Madison at Michigan State + Tyson Walker and the No. 4 Spartans open a campaign with high hopes by hosting the Dukes. Walker, a senior guard, averaged 14.8 points last season and is Michigan State's top returning scorer. Tom Izzo begins his 29th year as Spartans coach. + Sports + Basketball + + + + The B1G Show + Highlights, news, and analysis from around the Big Ten. + Sports + Talk Show + + + + The B1G Show + Highlights, news, and analysis from around the Big Ten. + Sports + Talk Show + + + + B1G Volleyball in 60 + One hour replays of B1G volleyball competitions. + Sports + Volleyball + + + + The B1G Show + Highlights, news, and analysis from around the Big Ten. + Sports + Talk Show + + + + The B1G Show + Highlights, news, and analysis from around the Big Ten. + Sports + Talk Show + + + + The B1G Show + Highlights, news, and analysis from around the Big Ten. + Sports + Talk Show + + + + Samford vs. Purdue + Samford at Purdue + The No. 3 Boilermakers begin a brand new campaign by hosting the Bulldogs. Last season, Purdue became just the second No. 1 seed in the NCAA Tournament to lose in the first round when it was knocked off 63-58 by Fairleigh Dickinson of the NEC. + Sports + Basketball + + + + The B1G Show + Highlights, news, and analysis from around the Big Ten. + Sports + Talk Show + + + + B1G Volleyball in 60 + One hour replays of B1G volleyball competitions. + Sports + Volleyball + + + + The B1G Show + Highlights, news, and analysis from around the Big Ten. + Sports + Talk Show + + + + The B1G Show + Highlights, news, and analysis from around the Big Ten. + Sports + Talk Show + + + + The B1G Show + Highlights, news, and analysis from around the Big Ten. + Sports + Talk Show + + + + B1G Football in 60 + 2023: Penn State at Maryland + From Nov. 4, 2023. + Sports + Football + + + + The B1G Show + Highlights, news, and analysis from around the Big Ten. + Sports + Talk Show + + + + The B1G Show + Highlights, news, and analysis from around the Big Ten. + Sports + Talk Show + + + + B1G Plus Encore + Replays of the best action from Big Ten contests. + Sports + Miscellaneous + + + + B1G Football in 60 + 2023: Wisconsin at Indiana + From Nov. 4, 2023. + Sports + Football + + + + B1G Today + News from around the Big Ten Conference. + Sports + + + + B1G Football in 60 + 2023: Ohio State at Rutgers + From Nov. 4, 2023. + Sports + Football + + + + B1G Live + Football Coaches Press Conferences + News and updates from coaches and players from around the Big Ten conference. + Sports + Miscellaneous + + + + B1G Today + News from around the Big Ten Conference. + Sports + + + + The Journey: Big Ten Football + Learn how Ohio State's Cade Stover made the switch from linebacker to tight end. Get to know Illinois wide receiver Isaiah Williams. Discover why Kyle Monangai decided to stay in New Jersey and play for the Scarlet Knights. + Sports + Football + + + + B1G Today + News from around the Big Ten Conference. + Sports + + + + B1G Live: Basketball Tip-Off Show + The lead up to Big Ten Basketball action with pre-game breakdowns, team updates and live campus look-ins. + Sports + Basketball + + + + Florida Gulf Coast vs. Indiana + Florida Gulf Coast at Indiana + From Simon Skjodt Assembly Hall in Bloomington, Ind. + Sports + Basketball + + + + UNC-Asheville vs. Michigan + UNC-Asheville at Michigan + From Crisler Center in Ann Arbor, Mich. + Sports + Basketball + + + + The B1G Show + Highlights, news, and analysis from around the Big Ten. + Sports + Talk Show + + + + The B1G Show + Highlights, news, and analysis from around the Big Ten. + Sports + Talk Show + + + + The B1G Show + Highlights, news, and analysis from around the Big Ten. + Sports + Talk Show + + + + B1G Football in 60 + 2023: Purdue at Michigan + From Nov. 4, 2023. + Sports + Football + + + + The B1G Show + Highlights, news, and analysis from around the Big Ten. + Sports + Talk Show + + + + The B1G Show + Highlights, news, and analysis from around the Big Ten. + Sports + Talk Show + + + + Florida Gulf Coast vs. Indiana + Florida Gulf Coast at Indiana + From Simon Skjodt Assembly Hall in Bloomington, Ind. + Sports + Basketball + + + + The B1G Show + Highlights, news, and analysis from around the Big Ten. + Sports + Talk Show + + + + B1G Football in 60 + 2023: Wisconsin at Indiana + From Nov. 4, 2023. + Sports + Football + + + + The B1G Show + Highlights, news, and analysis from around the Big Ten. + Sports + Talk Show + + + + The B1G Show + Highlights, news, and analysis from around the Big Ten. + Sports + Talk Show + + + + The B1G Show + Highlights, news, and analysis from around the Big Ten. + Sports + Talk Show + + + + The B1G Show + Highlights, news, and analysis from around the Big Ten. + Sports + Talk Show + + + + B1G Football in 60 + 2023: Illinois at Minnesota + From Nov. 4, 2023. + Sports + Football + + + + The B1G Show + Highlights, news, and analysis from around the Big Ten. + Sports + Talk Show + + + + B1G Plus Encore + Replays of the best action from Big Ten contests. + Sports + Miscellaneous + + + + B1G Football in 60 + 2023: Nebraska at Michigan State + From Nov. 4, 2023. + Sports + Football + + + + B1G Today + News from around the Big Ten Conference. + Sports + + + + The B1G Story + Take a look back at the storied history of the Nebraska volleyball program. Hear from coaches, former players, fans and more on what volleyball means to the state of Nebraska. Go behind-the-scenes of the Cornhuskers' match at Memorial Stadium. + Sports + Talk Show + + + + B1G Volleyball in 60 + One hour replays of B1G volleyball competitions. + Sports + Volleyball + + + + B1G Today + News from around the Big Ten Conference. + Sports + + + + B1G Football in 60 + 2023: Iowa vs. Northwestern + From Nov. 4, 2023 at Wrigley Field. + Sports + Football + + + + B1G Today + News from around the Big Ten Conference. + Sports + + + + Women's College Volleyball + Illinois at Wisconsin + Illinois at Wisconsin. (live). + 2023 + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. (live). + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + College Football + Wisconsin at Indiana + Wisconsin at Indiana. From Memorial Stadium in Bloomington. + 2023 + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + B1G Football in 60 + 2023: Purdue at Michigan + (new). + 2023 + Sports + + + Women's College Field Hockey + Big Ten Championship + The Big Ten Championship Game in Ann Arbor, Mich. From Phyllis Ocker Field. (live). + 2023 + + + Women's College Soccer + Big Ten Championship + The Big Ten Championship Game in Columbus, Ohio. From Lower.com Field. (live). + 2023 + + + The B1G Trip + Iowa Women's Basketball + Travel + Reality + Sports + + TV-PG + + + + Men's College Hockey + Notre Dame at Penn State + Notre Dame at Penn State. (live). + 2023 + + + B1G Football in 60 + Penn State at Maryland + (new). + 2023 + Sports + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + B1G Football in 60 + Wisconsin at Indiana + (new). + 2023 + Sports + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + B1G Football in 60 + Nebraska at Michigan State + (new). + 2023 + Sports + + + B1G Football in 60 + Ohio State at Rutgers + (new). + 2023 + Sports + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + Women's College Soccer + Big Ten Championship + The Big Ten Championship Game in Columbus, Ohio. From Lower.com Field. + 2023 + + + B1G Football in 60 + 2023: Purdue at Michigan + 2023 + Sports + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + B1G Football in 60 + Penn State at Maryland + 2023 + Sports + + + B1G Football in 60 + Wisconsin at Indiana + 2023 + Sports + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + B1G Football in 60 + 2023: Purdue at Michigan + 2023 + Sports + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + B1G Football in 60 + 2023: Iowa vs. Northwestern + (new). + 2023 + Sports + + + B1G Today + 11-06-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. (live). + 2023 + + + B1G Live + Football Coaches Press Conferences + (live). + 2023 + Sports + + + B1G Football in 60 + 2023; Illinois at Minnesota + (new). + 2023 + Sports + + + B1G Today + 11-06-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. + 2023 + + + B1G Live + Basketball Tip-Off Show 2023-2024 + (live). + Sports + + + Men's College Basketball + Samford at Purdue + Samford at Purdue. From Mackey Arena. (live). + 2023 + + TV-G + + + + Men's College Basketball + James Madison at Michigan State + James Madison at Michigan State. From Breslin Center. (live). + 2023 + + TV-G + + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. (live). + 2023 + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Volleyball in 60 + Condensed replays of Big Ten volleyball action. (new). + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + Men's College Basketball + Samford at Purdue + Samford at Purdue. From Mackey Arena. + 2023 + + TV-G + + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Volleyball in 60 + Condensed replays of Big Ten volleyball action. + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Football in 60 + Penn State at Maryland + Penn State at Maryland. + 2023 + Sports + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Plus Encore + (new). + + + B1G Football in 60 + Wisconsin at Indiana + Wisconsin at Indiana. + 2023 + Sports + + + B1G Today + 11-07-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. (live). + 2023 + + + B1G Football in 60 + Ohio State at Rutgers + Ohio State at Rutgers. + 2023 + Sports + + + B1G Live + Football Coaches Press Conferences + (live). + 2023 + Sports + + + B1G Today + 11-07-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. + 2023 + + + The Journey: Big Ten Football + 2023 Episode 5 + Sports + + TV-PG + + + + B1G Today + 11-07-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. + 2023 + + + B1G Live + Basketball Tip-Off Show 2023-2024 + (live). + Sports + + + Men's College Basketball + Florida Gulf Coast at Indiana + Florida Gulf Coast at Indiana. From Simon Skjodt Assembly Hall. (live). + 2023 + + TV-G + + + + Men's College Basketball + UNC (Asheville) at Michigan + UNC (Asheville) at Michigan. From Crisler Center. (live). + 2023 + + TV-G + + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. (live). + 2023 + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Football in 60 + 2023: Purdue at Michigan + 2023: Purdue at Michigan. + 2023 + Sports + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + Men's College Basketball + Florida Gulf Coast at Indiana + Florida Gulf Coast at Indiana. From Simon Skjodt Assembly Hall. + 2023 + + TV-G + + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Football in 60 + Wisconsin at Indiana + Wisconsin at Indiana. + 2023 + Sports + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Football in 60 + 2023; Illinois at Minnesota + From 2023: Illinois at Minnesota. + 2023 + Sports + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Plus Encore + (new). + + + B1G Football in 60 + Nebraska at Michigan State + Nebraska at Michigan State. + 2023 + Sports + + + B1G Today + 11-08-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. (live). + 2023 + + + The B1G Story + Nebraska Volleyball + Documentary + Sports + + TV-PG + + + + B1G Volleyball in 60 + Condensed replays of Big Ten volleyball action. + + + B1G Today + 11-08-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. + 2023 + + + B1G Football in 60 + 2023: Iowa vs. Northwestern + From 2023: Iowa vs. Northwestern at Wrigley Field. + 2023 + Sports + + + B1G Today + 11-08-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. + 2023 + + + To Be Announced + Programming to be announced. + + TV-G + + + + Women's College Volleyball + Illinois at Wisconsin + Illinois at Wisconsin. (live). + 2023 + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. (live). + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + College Football + Wisconsin at Indiana + Wisconsin at Indiana. From Memorial Stadium in Bloomington. + 2023 + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + B1G Football in 60 + 2023: Purdue at Michigan + (new). + 2023 + Sports + + + Women's College Field Hockey + Big Ten Championship + The Big Ten Championship Game in Ann Arbor, Mich. From Phyllis Ocker Field. (live). + 2023 + + + Women's College Soccer + Big Ten Championship + The Big Ten Championship Game in Columbus, Ohio. From Lower.com Field. (live). + 2023 + + + The B1G Trip + Iowa Women's Basketball + Travel + Reality + Sports + + TV-PG + + + + Men's College Hockey + Notre Dame at Penn State + Notre Dame at Penn State. (live). + 2023 + + + B1G Football in 60 + Penn State at Maryland + (new). + 2023 + Sports + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + B1G Football in 60 + Wisconsin at Indiana + (new). + 2023 + Sports + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + B1G Football in 60 + Nebraska at Michigan State + (new). + 2023 + Sports + + + B1G Football in 60 + Ohio State at Rutgers + (new). + 2023 + Sports + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + Women's College Soccer + Big Ten Championship + The Big Ten Championship Game in Columbus, Ohio. From Lower.com Field. + 2023 + + + B1G Football in 60 + 2023: Purdue at Michigan + 2023 + Sports + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + B1G Football in 60 + Penn State at Maryland + 2023 + Sports + + + B1G Football in 60 + Wisconsin at Indiana + 2023 + Sports + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + B1G Football in 60 + 2023: Purdue at Michigan + 2023 + Sports + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + B1G Football in 60 + 2023: Iowa vs. Northwestern + (new). + 2023 + Sports + + + B1G Today + 11-06-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. (live). + 2023 + + + B1G Live + Football Coaches Press Conferences + (live). + 2023 + Sports + + + B1G Football in 60 + 2023; Illinois at Minnesota + (new). + 2023 + Sports + + + B1G Today + 11-06-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. + 2023 + + + B1G Live + Basketball Tip-Off Show 2023-2024 + (live). + Sports + + + Men's College Basketball + Samford at Purdue + Samford at Purdue. From Mackey Arena. (live). + 2023 + + TV-G + + + + Men's College Basketball + James Madison at Michigan State + James Madison at Michigan State. From Breslin Center. (live). + 2023 + + TV-G + + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. (live). + 2023 + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Volleyball in 60 + Condensed replays of Big Ten volleyball action. (new). + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + Men's College Basketball + Samford at Purdue + Samford at Purdue. From Mackey Arena. + 2023 + + TV-G + + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Volleyball in 60 + Condensed replays of Big Ten volleyball action. + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Football in 60 + Penn State at Maryland + Penn State at Maryland. + 2023 + Sports + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Plus Encore + (new). + + + B1G Football in 60 + Wisconsin at Indiana + Wisconsin at Indiana. + 2023 + Sports + + + B1G Today + 11-07-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. (live). + 2023 + + + B1G Football in 60 + Ohio State at Rutgers + Ohio State at Rutgers. + 2023 + Sports + + + B1G Live + Football Coaches Press Conferences + (live). + 2023 + Sports + + + B1G Today + 11-07-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. + 2023 + + + The Journey: Big Ten Football + 2023 Episode 5 + Sports + + TV-PG + + + + B1G Today + 11-07-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. + 2023 + + + B1G Live + Basketball Tip-Off Show 2023-2024 + (live). + Sports + + + Men's College Basketball + Florida Gulf Coast at Indiana + Florida Gulf Coast at Indiana. From Simon Skjodt Assembly Hall. (live). + 2023 + + TV-G + + + + Men's College Basketball + UNC (Asheville) at Michigan + UNC (Asheville) at Michigan. From Crisler Center. (live). + 2023 + + TV-G + + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. (live). + 2023 + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Football in 60 + 2023: Purdue at Michigan + 2023: Purdue at Michigan. + 2023 + Sports + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + Men's College Basketball + Florida Gulf Coast at Indiana + Florida Gulf Coast at Indiana. From Simon Skjodt Assembly Hall. + 2023 + + TV-G + + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Football in 60 + Wisconsin at Indiana + Wisconsin at Indiana. + 2023 + Sports + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Football in 60 + 2023; Illinois at Minnesota + From 2023: Illinois at Minnesota. + 2023 + Sports + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Plus Encore + (new). + + + B1G Football in 60 + Nebraska at Michigan State + Nebraska at Michigan State. + 2023 + Sports + + + B1G Today + 11-08-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. (live). + 2023 + + + The B1G Story + Nebraska Volleyball + Documentary + Sports + + TV-PG + + + + B1G Volleyball in 60 + Condensed replays of Big Ten volleyball action. + + + B1G Today + 11-08-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. + 2023 + + + B1G Football in 60 + 2023: Iowa vs. Northwestern + From 2023: Iowa vs. Northwestern at Wrigley Field. + 2023 + Sports + + + B1G Today + 11-08-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. + 2023 + + + To Be Announced + Programming to be announced. + + TV-G + + + + Women's College Volleyball + Illinois at Wisconsin + Illinois at Wisconsin. (live). + 2023 + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. (live). + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + College Football + Wisconsin at Indiana + Wisconsin at Indiana. From Memorial Stadium in Bloomington. + 2023 + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + B1G Football in 60 + 2023: Purdue at Michigan + (new). + 2023 + Sports + + + Women's College Field Hockey + Big Ten Championship + The Big Ten Championship Game in Ann Arbor, Mich. From Phyllis Ocker Field. (live). + 2023 + + + Women's College Soccer + Big Ten Championship + The Big Ten Championship Game in Columbus, Ohio. From Lower.com Field. (live). + 2023 + + + The B1G Trip + Iowa Women's Basketball + Travel + Reality + Sports + + TV-PG + + + + Men's College Hockey + Notre Dame at Penn State + Notre Dame at Penn State. (live). + 2023 + + + B1G Football in 60 + Penn State at Maryland + (new). + 2023 + Sports + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + B1G Football in 60 + Wisconsin at Indiana + (new). + 2023 + Sports + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + B1G Football in 60 + Nebraska at Michigan State + (new). + 2023 + Sports + + + B1G Football in 60 + Ohio State at Rutgers + (new). + 2023 + Sports + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + Women's College Soccer + Big Ten Championship + The Big Ten Championship Game in Columbus, Ohio. From Lower.com Field. + 2023 + + + B1G Football in 60 + 2023: Purdue at Michigan + 2023 + Sports + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + B1G Football in 60 + Penn State at Maryland + 2023 + Sports + + + B1G Football in 60 + Wisconsin at Indiana + 2023 + Sports + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + B1G Football in 60 + 2023: Purdue at Michigan + 2023 + Sports + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + B1G Football in 60 + 2023: Iowa vs. Northwestern + (new). + 2023 + Sports + + + B1G Today + 11-06-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. (live). + 2023 + + + B1G Live + Football Coaches Press Conferences + (live). + 2023 + Sports + + + B1G Football in 60 + 2023; Illinois at Minnesota + (new). + 2023 + Sports + + + B1G Today + 11-06-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. + 2023 + + + B1G Live + Basketball Tip-Off Show 2023-2024 + (live). + Sports + + + Men's College Basketball + Samford at Purdue + Samford at Purdue. From Mackey Arena. (live). + 2023 + + TV-G + + + + Men's College Basketball + James Madison at Michigan State + James Madison at Michigan State. From Breslin Center. (live). + 2023 + + TV-G + + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. (live). + 2023 + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Volleyball in 60 + Condensed replays of Big Ten volleyball action. (new). + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + Men's College Basketball + Samford at Purdue + Samford at Purdue. From Mackey Arena. + 2023 + + TV-G + + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Volleyball in 60 + Condensed replays of Big Ten volleyball action. + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Football in 60 + Penn State at Maryland + Penn State at Maryland. + 2023 + Sports + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Plus Encore + (new). + + + B1G Football in 60 + Wisconsin at Indiana + Wisconsin at Indiana. + 2023 + Sports + + + B1G Today + 11-07-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. (live). + 2023 + + + B1G Football in 60 + Ohio State at Rutgers + Ohio State at Rutgers. + 2023 + Sports + + + B1G Live + Football Coaches Press Conferences + (live). + 2023 + Sports + + + B1G Today + 11-07-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. + 2023 + + + The Journey: Big Ten Football + 2023 Episode 5 + Sports + + TV-PG + + + + B1G Today + 11-07-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. + 2023 + + + B1G Live + Basketball Tip-Off Show 2023-2024 + (live). + Sports + + + Men's College Basketball + Florida Gulf Coast at Indiana + Florida Gulf Coast at Indiana. From Simon Skjodt Assembly Hall. (live). + 2023 + + TV-G + + + + Men's College Basketball + UNC (Asheville) at Michigan + UNC (Asheville) at Michigan. From Crisler Center. (live). + 2023 + + TV-G + + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. (live). + 2023 + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Football in 60 + 2023: Purdue at Michigan + 2023: Purdue at Michigan. + 2023 + Sports + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + Men's College Basketball + Florida Gulf Coast at Indiana + Florida Gulf Coast at Indiana. From Simon Skjodt Assembly Hall. + 2023 + + TV-G + + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Football in 60 + Wisconsin at Indiana + Wisconsin at Indiana. + 2023 + Sports + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Football in 60 + 2023; Illinois at Minnesota + From 2023: Illinois at Minnesota. + 2023 + Sports + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Plus Encore + (new). + + + B1G Football in 60 + Nebraska at Michigan State + Nebraska at Michigan State. + 2023 + Sports + + + B1G Today + 11-08-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. (live). + 2023 + + + The B1G Story + Nebraska Volleyball + Documentary + Sports + + TV-PG + + + + B1G Volleyball in 60 + Condensed replays of Big Ten volleyball action. + + + B1G Today + 11-08-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. + 2023 + + + B1G Football in 60 + 2023: Iowa vs. Northwestern + From 2023: Iowa vs. Northwestern at Wrigley Field. + 2023 + Sports + + + B1G Today + 11-08-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. + 2023 + + + To Be Announced + Programming to be announced. + + TV-G + + + + Women's College Volleyball + Illinois at Wisconsin + Illinois at Wisconsin. (live). + 2023 + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. (live). + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + College Football + Wisconsin at Indiana + Wisconsin at Indiana. From Memorial Stadium in Bloomington. + 2023 + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + B1G Football in 60 + 2023: Purdue at Michigan + (new). + 2023 + Sports + + + Women's College Field Hockey + Big Ten Championship + The Big Ten Championship Game in Ann Arbor, Mich. From Phyllis Ocker Field. (live). + 2023 + + + Women's College Soccer + Big Ten Championship + The Big Ten Championship Game in Columbus, Ohio. From Lower.com Field. (live). + 2023 + + + The B1G Trip + Iowa Women's Basketball + Travel + Reality + Sports + + TV-PG + + + + Men's College Hockey + Notre Dame at Penn State + Notre Dame at Penn State. (live). + 2023 + + + B1G Football in 60 + Penn State at Maryland + (new). + 2023 + Sports + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + B1G Football in 60 + Wisconsin at Indiana + (new). + 2023 + Sports + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + B1G Football in 60 + Nebraska at Michigan State + (new). + 2023 + Sports + + + B1G Football in 60 + Ohio State at Rutgers + (new). + 2023 + Sports + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + Women's College Soccer + Big Ten Championship + The Big Ten Championship Game in Columbus, Ohio. From Lower.com Field. + 2023 + + + B1G Football in 60 + 2023: Purdue at Michigan + 2023 + Sports + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + B1G Football in 60 + Penn State at Maryland + 2023 + Sports + + + B1G Football in 60 + Wisconsin at Indiana + 2023 + Sports + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + B1G Football in 60 + 2023: Purdue at Michigan + 2023 + Sports + + + The Final Drive + 11-04-2023 + Highlights, news and analysis from action around the Big Ten. + 2023 + Sports + + TV-G + + + + B1G Football in 60 + 2023: Iowa vs. Northwestern + (new). + 2023 + Sports + + + B1G Today + 11-06-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. (live). + 2023 + + + B1G Live + Football Coaches Press Conferences + (live). + 2023 + Sports + + + B1G Football in 60 + 2023; Illinois at Minnesota + (new). + 2023 + Sports + + + B1G Today + 11-06-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. + 2023 + + + B1G Live + Basketball Tip-Off Show 2023-2024 + (live). + Sports + + + Men's College Basketball + Samford at Purdue + Samford at Purdue. From Mackey Arena. (live). + 2023 + + TV-G + + + + Men's College Basketball + James Madison at Michigan State + James Madison at Michigan State. From Breslin Center. (live). + 2023 + + TV-G + + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. (live). + 2023 + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Volleyball in 60 + Condensed replays of Big Ten volleyball action. (new). + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + Men's College Basketball + Samford at Purdue + Samford at Purdue. From Mackey Arena. + 2023 + + TV-G + + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Volleyball in 60 + Condensed replays of Big Ten volleyball action. + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Football in 60 + Penn State at Maryland + Penn State at Maryland. + 2023 + Sports + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-06-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Plus Encore + (new). + + + B1G Football in 60 + Wisconsin at Indiana + Wisconsin at Indiana. + 2023 + Sports + + + B1G Today + 11-07-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. (live). + 2023 + + + B1G Football in 60 + Ohio State at Rutgers + Ohio State at Rutgers. + 2023 + Sports + + + B1G Live + Football Coaches Press Conferences + (live). + 2023 + Sports + + + B1G Today + 11-07-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. + 2023 + + + The Journey: Big Ten Football + 2023 Episode 5 + Sports + + TV-PG + + + + B1G Today + 11-07-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. + 2023 + + + B1G Live + Basketball Tip-Off Show 2023-2024 + (live). + Sports + + + Men's College Basketball + Florida Gulf Coast at Indiana + Florida Gulf Coast at Indiana. From Simon Skjodt Assembly Hall. (live). + 2023 + + TV-G + + + + Men's College Basketball + UNC (Asheville) at Michigan + UNC (Asheville) at Michigan. From Crisler Center. (live). + 2023 + + TV-G + + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. (live). + 2023 + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Football in 60 + 2023: Purdue at Michigan + 2023: Purdue at Michigan. + 2023 + Sports + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + Men's College Basketball + Florida Gulf Coast at Indiana + Florida Gulf Coast at Indiana. From Simon Skjodt Assembly Hall. + 2023 + + TV-G + + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Football in 60 + Wisconsin at Indiana + Wisconsin at Indiana. + 2023 + Sports + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Football in 60 + 2023; Illinois at Minnesota + From 2023: Illinois at Minnesota. + 2023 + Sports + + + The B1G Show + 11-07-2023 + A recap of action around the Big Ten Conference. + 2023 + + + B1G Plus Encore + (new). + + + B1G Football in 60 + Nebraska at Michigan State + Nebraska at Michigan State. + 2023 + Sports + + + B1G Today + 11-08-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. (live). + 2023 + + + The B1G Story + Nebraska Volleyball + Documentary + Sports + + TV-PG + + + + B1G Volleyball in 60 + Condensed replays of Big Ten volleyball action. + + + B1G Today + 11-08-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. + 2023 + + + B1G Football in 60 + 2023: Iowa vs. Northwestern + From 2023: Iowa vs. Northwestern at Wrigley Field. + 2023 + Sports + + + B1G Today + 11-08-2023 + Breaking down the biggest stories of the day from around the Big Ten. Hear from analysts, coaches, players and more as they discuss a range of sports topics. + 2023 + + + To Be Announced + Programming to be announced. + + TV-G + + + + The Tom and Jerry Show + Spike Gets Skooled; Cat's Ruffled Fur-niture + Spike is sent to obedience school, leaving Jerry without a protector; Tom is ordered not to wake the Witch sisters, but Jerry wants to get the cat in trouble. + Animated + Children + + + TVPG + + + + The Tom and Jerry Show + Sleep Disorder; Tom's In-Tents Adventure + Butch convinces Tom to try out Ginger's fancy mattress; Tom and Jerry go camping in Yosemite. + Animated + Children + + + TVPG + + + + Taz-Mania + Like Father, Like Son; Frights of Passage + Taz's father, Hugh, decides to give the boy a few lessons in the finer aspects of life, but he soon discovers that he is more like Taz than he thought; Bushlad of the Mudpeople hunts for a Tasmanian Devil on a mission to prove himself. + Animated + Children + + + TVY + + + + Taz-Mania + The Dog the Turtle Story + Taz discovers that his pet dog is really a turtle that has been raised as a wild animal. + Animated + Children + + + TVY + + + + Scooby-Doo, Where Are You! + Decoy for a Dognapper + The gang uses Scooby as a decoy to find out who's stealing prizewinning dogs. + + Don Messick + Frank Welker + Casey Kasem + + Animated + Children + + + TVG + + + + Scooby-Doo, Where Are You! + What The Hex is Going On? + Daphne's uncle ages 30 years, then vanishes without a trace. + + Don Messick + Frank Welker + Casey Kasem + + Animated + Children + + + TVG + + + + Scooby-Doo, Where Are You! + Decoy for a Dognapper + The gang uses Scooby as a decoy to find out who's stealing prizewinning dogs. + + Don Messick + Frank Welker + Casey Kasem + + Animated + Children + + + TVG + + + + Scooby-Doo, Where Are You! + What The Hex is Going On? + Daphne's uncle ages 30 years, then vanishes without a trace. + + Don Messick + Frank Welker + Casey Kasem + + Animated + Children + + + TVG + + + + The Flintstones + The Long, Long Weekend + An all-expense paid seaside trip turns into a working holiday. + + Alan Reed + Jean Vander Pyl + Mel Blanc + + Animated + Children + + + TVG + + + + The Jetsons + Spacely for a Day + Spacely leaves town for a few days and puts George in charge. + + George O'Hanlon + Penny Singleton + Janet Waldo + + Animated + Children + + + TVG + + + + The Jetsons + A Date With Jet Screamer + George replaces Judy's entry in a lyric-writing contest. + + George O'Hanlon + Penny Singleton + Janet Waldo + + Animated + Children + + + TVG + + + + Popeye the Sailor + Hot Air Aces + Popeye flies an old prop plane in an around-the-world-race with rival Bluto, who flies a far more advanced model; Bluto's cheating leads Popeye to resort to desperate measures. + Animated + Children + + + TVG + + + + Popeye the Sailor + House Tricks? + Olive Oyl gives Popeye and Bluto each one half of a house to build for her. + Animated + Comedy + + + TVG + + + + Popeye the Sailor + A Hull of a Mess + Popeye and Bluto compete for a contract to build a fleet of ships. + Animated + Children + + + TVG + + + + Popeye the Sailor + The Hyp-Nut-Tist + Popeye distracts Bluto during Bluto's performance as a hypnotist. + Animated + Children + + + TVG + + + + Popeye the Sailor + I Likes Babies and Infinks + Popeye and Bluto compete to stop Swee'pea from crying. + Animated + Children + + + TVG + + + + Popeye the Sailor + I Never Changes My Altitude + Popeye tries to rescue Olive from Bluto in midair. + Animated + Children + + + TVG + + + + Looney Tunes + Bugs and Thugs + Bugs Bunny picks the wrong cab to take and soon finds out he's in a gangsters' getaway vehicle. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + This Is a Life + Elmer Fudd brings Bugs Bunny on a parody of This is Your Life where he and Yosemite Sam try to get revenge on the rabbit; Daffy Duck laments that the show is not about him. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Super-Rabbit + When Bugs eats a special carrot, he gets super powers that help him battle a famous rabbit hunter. + + Mel Blanc + Kent Rogers + Tedd Pierce + + Animated + Children + + + TVY + + + + Looney Tunes + Raw! Raw! Rooster! + Rhode Island Red, Foghorn's rival and college chum, visits his pal and wreaks havoc at the barnyard. + + Mel Blanc + Daws Butler + + Animated + Children + + + TVY + + + + Looney Tunes + Strangled Eggs + Foghorn Leghorn is out of food for the winter and decides to move in with Miss Prissy, when all of a sudden somebody abandons a baby chicken hawk on their doorstep. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Yankee Doodle Daffy + Daffy tries to sell Sleepy Lagoon to talent scout Porky. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Stooge for a Mouse + Sylvester and his friend Mike, a bulldog, are turned against each other by a menacing mouse. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Room and Bird + Despite the no pets allowed rule in a hotel, some ladies bring in their pets, like Tweety and Sylvester. Bird, cat, and dog chases create mayhem as a detective tries to find all the animals in the hotel. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Baton Bunny + Bugs and his orchestra's performance is thrown into disarray when a troublesome fly buzzes its way into the concert venue and keeps hovering around. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Upswept Hare + Elmer Fudd brings home a rare plant and Bugs Bunny. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Rabbit Transit + Bugs challenges Cecil to a race after reading a fable. + + Mel Blanc + + Animated + Children + + + TVY + + + + Looney Tunes + Devil May Hare + After reading an article about a Tasmanian devil, Bugs runs into the real thing, which wants to eat him. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Stooge for a Mouse + Sylvester and his friend Mike, a bulldog, are turned against each other by a menacing mouse. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Room and Bird + Despite the no pets allowed rule in a hotel, some ladies bring in their pets, like Tweety and Sylvester. Bird, cat, and dog chases create mayhem as a detective tries to find all the animals in the hotel. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Baton Bunny + Bugs and his orchestra's performance is thrown into disarray when a troublesome fly buzzes its way into the concert venue and keeps hovering around. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Upswept Hare + Elmer Fudd brings home a rare plant and Bugs Bunny. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Rabbit Transit + Bugs challenges Cecil to a race after reading a fable. + + Mel Blanc + + Animated + Children + + + TVY + + + + Looney Tunes + Devil May Hare + After reading an article about a Tasmanian devil, Bugs runs into the real thing, which wants to eat him. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + The Powerpuff Girls + Documentary; Girls Gone Mild + A film student tries to make a documentary on the girls; parents' complaints force the girls to hold back on fighting crime. + + Tara Strong + Cathy Cavadini + E.G. Daily + + Animated + Children + + + TVY7 + + + + The Powerpuff Girls + Curses; Bang for Your Buck + The girls pick up bad words from the professor; the girls and the Gangreen Gang compete to buy a destructive ray. + + Tara Strong + Cathy Cavadini + E.G. Daily + + Animated + Children + + + TVY7 + + + + Foster's Home for Imaginary Friends + Foster's Goes to Europe + Mac and the gang win a trip to Europe. + + Keith Ferguson + Sean Marquette + Grey Griffin + + Animated + Children + + + TVY7 + + + + Foster's Home for Imaginary Friends + Go Goo Go + A girl with an over-active imagination over-crowds the house. + + Keith Ferguson + Sean Marquette + Grey Griffin + + Animated + Children + + + TVY7 + + + + Taz-Mania + The Pied Piper of Taz-Mania; The Treasure of the Burnt Sienna + Hotel Tazmania faces a Bushrat infestation; Bushwhacker Bob drags Taz along on a treasure hunt. + Animated + Children + + + TVY + + + + Taz-Mania + Not a Shadow of a Doubt; Nursemaid Taz + Taz's shadow comes to life while he plays with a basketball and a fight ensues; Digeri Dingo takes advantage of Taz's family's hospitality by faking a broken leg but soon gets much more attention than he bargained for. + Animated + Children + + + TVY + + + + Looney Tunes + Buccaneer Bunny + Bugs infuriates Pirate Yosemite Sam by stealing his treasure and chases Bugs onto the pirate ship. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + 14 Carrot Rabbit + Bugs Bunny frustrates Yosemite Sam during the Klondike gold rush. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + A Pest In the House + A tired businessman goes to Elmer's hotel for some peace and quiet; the only problem is that Daffy is a bellman who doesn't know how to be quiet; every time the businessman is disturbed he hits Elmer, which turns out to be a lot. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Weasel While You Work + Foghorn, Barnyard Dawg and the weasel go after each other in a winter wonderland. + + Mel Blanc + + Animated + Children + + + TVY + + + + Looney Tunes + Little Boy Boo + Foghorn attempts to woo the widowed Miss Prissy by babysitting her son. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Shot and Bothered + The Coyote chases the Roadrunner through a pipeline that eventually leads to a cliff. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + New Looney Tunes + Sam the Roughrider; Fool's Gold + Yosemite Sam seeks glory; Daffy mines for gold. + + Jeff Bergman + Dee Bradley Baker + Bob Bergen + + Animated + Children + + + TVY7 + + + + New Looney Tunes + Bonjour, DarkBat; Renaissance Fair-Thee Well + Rats try to sell cheese in Paris. Porky Pig investigates a thief at a Renaissance fair. + + Jeff Bergman + Dee Bradley Baker + Bob Bergen + + Animated + Children + + + TVY7 + + + + New Looney Tunes + CinderPorker + Porky falls in love with Petunia, queen of the land; his Fairy Duckmother, Daffy, gives him a makeover so he can go to the ball. + + Jeff Bergman + Dee Bradley Baker + Bob Bergen + + Animated + Children + + + TVY7 + + + + New Looney Tunes + You Ain't Nothin' but a Foghorn; The Pepe Who Came in From the Cold + When rock star Foghorn Leghorn puts on a music festival, Daffy Duck crashes the party and wreaks havoc; Pepe and Claudette must save the holiday season when Blacque Jacque Shellacque kidnaps Santa Claus. + + Jeff Bergman + Dee Bradley Baker + Bob Bergen + + Animated + Children + + + TVY7 + + + + New Looney Tunes + Smoothie Operator; Slugsworthy's Slop House + When the Mice have their juice stand destroyed by Yosemite Sam, they call on Darkbat to save the day; Bugs eats at Slugsworthy's gaudy restaurant and teaches Slugsworthy a lesson in treating the customer right. + + Jeff Bergman + Dee Bradley Baker + Bob Bergen + + Animated + Children + + + TVY7 + + + + New Looney Tunes + Cal-umbus; Porky Pigskin + Cal-umbus discovers the new world and tries to eat Bugs Bunny; Porky wants to live his dream and play football for the Fighting Foghorns, so he tries out for the team. + + Jeff Bergman + Dee Bradley Baker + Bob Bergen + + Animated + Children + + + TVY7 + + + + Tom and Jerry Tales + Bend It Like Thomas; Endless Bummer; Game, Set, Match + Tom torments Jerry and Spike with his soccer skills; Tom, Jerry, and Droopy take part in a surfing competition; Spike makes Tom teach his son Tyke how to play tennis. + + Don Brown + Sam Vincent + Mike Donovan + + Animated + Children + + + TVY + + + + Tom and Jerry Tales + Declaration of Independunce; Kitty Hawked; 24 Karat Kat + Tom loses the Declaration of Independence when he makes it into a paper airplane; a museum tour mouse talks about Jerry's part in the Wright brothers' aerial experiments; Tom and Butch scheme to steal gold from Jerry. + + Don Brown + Sam Vincent + + Animated + Children + + + TVY + + + + Tom and Jerry Tales + Hockey Schtick; Snow Brawl; The Abominable Snowmouse + Jerry decides to freeze the pond and go ice skating; Jerry engages Tom in a snowball fight that gets out of control; during a chase in a forest Tom and Jerry encounter a giant abominable snowmouse. + + Don Brown + Sam Vincent + + Animated + Children + + + TVY + + + + Be Cool, Scooby-Doo! + Me, Myself and A.l + When an artificial intelligence takes over the building of a trendy tech company, the gang must solve the computerized mystery. + + Frank Welker + Matthew Lillard + Grey Griffin + + Animated + Children + + + TVY7 + + + + Be Cool, Scooby-Doo! + Gremlin on a Plane + A gremlin's bent on sabotaging a flight; the gang tries to solve the airborne mystery and deal with Daphne flying a plane. + + Frank Welker + Matthew Lillard + Grey Griffin + + Animated + Children + + + TVY7 + + + + Be Cool, Scooby-Doo! + Where There's a Will, There's a Wraith + Scooby and the gang must spend a night in a creepy mansion with a wealthy-man's kooky relatives and a spooky phantom. + + Frank Welker + Matthew Lillard + Grey Griffin + + Animated + Children + + + TVY7 + + + + Be Cool, Scooby-Doo! + Sorcerer Snack Scare + The gang investigates a frightening sorcerer haunting a snack factory; Shaggy and Scooby discover their new favorite food. + + Frank Welker + Matthew Lillard + Grey Griffin + + Animated + Children + + + TVY7 + + + + Tom & Jerry + Professor Tom + Tom tries to teach his son how to catch mice. + + Henry Corden + Kathy Gori + Don Messick + + Animated + Children + + + TVG + + + + Tom & Jerry + Pup on a Picnic + Spike tries to ensure that he and his son have a peaceful picnic. + Animated + Children + + + TVG + + + + The Tom and Jerry Comedy Show + The Puppy Sitter + Tom watches Tyke, but Jerry interferes. + Animated + Children + + + TVG + + + + Tom & Jerry + Puppy Tale + A lost puppy follows Jerry home. + + Henry Corden + Kathy Gori + Don Messick + + Animated + Children + + + TVG + + + + Tom & Jerry + Purr-Chance to Dream + When Tom awakens after a bad dream, his real circumstances remind him of his horror. + + Henry Corden + Kathy Gori + Don Messick + + Animated + Children + + + TVG + + + + Tom & Jerry + Puss `n' Boats + Jerry sees a load of cheese being loaded onto a cargo ship and tries a variety of tricks to board. + + Henry Corden + Kathy Gori + Don Messick + + Animated + Children + + + TVG + + + + The Tom and Jerry Show + Tail of Two Kitties + When Spike's poker-playing pals go missing, he hires the cat and mouse detective to find out where they've gone. + Animated + Children + + + TVPG + + + + The Tom and Jerry Show + Vanishing Creamed + Problems result after Tom and Jerry use too much of a witches' disappearance potion. + Animated + Children + + + TVPG + + + + The Tom and Jerry Show + Unhappily Harried After + Tom proposes marriage to Toodles, and knows just what his wedding gift will be; everyone prepares for the backyard wedding. + Animated + Children + + + TVPG + + + + The Tom and Jerry Show + Splinter of Discontent + Jerry is left alone in an empty house after Rick, Ginger and Tom are nowhere to be seen. + Animated + Children + + + TVPG + + + + The Tom and Jerry Show + Forget Me Not + Tom and Jerry listen to the tale of a cat who met his unfortunate end chasing a superior opponent. + Animated + Children + + + TVPG + + + + The Tom and Jerry Show + In the Beginning + Tyke's got a problem and it all began when the pup stepped on a wood plank, the same wood plank Tom discarded after using it as a hockey stick to slap Jerry into the goal. + Animated + Children + + + TVPG + + + + Looney Tunes + Zip 'n Snort + Coyote uses a sling shot and a grenade in a toy airplane to try and catch the Road Runner. + + Mel Blanc + Paul Julian + + Animated + Children + + + TVY + + + + Looney Tunes + Hop, Look and Listen + Sylvester mistakes an escaped baby kangaroo for a giant mouse and sets off in pursuit. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + The Slap-Hoppy Mouse + Local cat gossip says that Sylvester is no longer a great mouse catcher; to prove them wrong Sylvester takes his son mouse-catching. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + The Last Hungry Cat + Sylvester takes advantage of Granny's absence to try and catch Tweety. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + My Bunny Lies Over the Sea + After learning that he took a wrong turn and ended up in Scotland, Bugs rips apart McCrory's bagpipes and angers him. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Million Hare + Bugs Bunny and Daffy Duck compete to be the first to reach a TV studio and win the grand prize. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Rabbit of Seville + Bugs and Elmer Fudd stage a bizarre version of. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Apes of Wrath + Bugs becomes an unwilling offspring of a gorilla couple because of the stork's negligence. He receives unconditional love from Mama, but Papa despises him. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Dumb Patrol + Bugs Bunny and Yosemite Sam duke it out in the skies of France during WWI. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Don't Axe Me + Elmer's pet dog attempts to rid their home of Daffy by suggesting they use him as the evening meal. + + Mel Blanc + June Foray + Arthur Q. Bryan + + Animated + Children + + + TVY + + + + Looney Tunes + Carrotblanca + The adventures of Bugs Bunny, Daffy Duck, Porky Pig and friends. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Wild Over You + After a wildcat escapes the Paris zoo by using paint to disguise herself as a skunk, she attracts the attention of Pepé le Pew. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + The Sylvester & Tweety Mysteries + Outback Down Under + Granny investigates when Australia's sheep mysteriously disappear. + Animated + Children + + + TVY + + + + The Sylvester & Tweety Mysteries + It's a Plaid, Plaid, Plaid, Plaid World + Granny travels to Scotland to investigate the theft of the McRory tartan. + + Joe Alaskey + June Foray + Tress MacNeille + + Animated + Children + + + TVY + + + + What's New Scooby-Doo? + Ready to Scare + The gang goes to Paris to see Daphne's cousin become Model of the Year, but when they get there, they find she's been abducted by a giant gargoyle. + + Frank Welker + Casey Kasem + Mindy Cohn + + Animated + Children + + + TVY + + + + What's New Scooby-Doo? + High-Tech House of the Future + The gang travels to the 21st century in their Mystery Machine. + + Frank Welker + Casey Kasem + Mindy Cohn + + Animated + Children + + + TVY + + + + What's New Scooby-Doo? + Large Dragon at Large + The gang attends a Renaissance fair, where a dragon interrupts the fun. + + Frank Welker + Casey Kasem + Mindy Cohn + + Animated + Children + + + TVG + + + + What's New Scooby-Doo? + Mummy Scares Best + Egyptian mummy turns almost everyone into zombies. + + Frank Welker + Casey Kasem + Mindy Cohn + + Animated + Children + + + TVG + + + + The Tom and Jerry Show + Birthday Bashed; Feline Fatale + Spike forces Tom and Jerry to take over Tyke's birthday party; Tom and Jerry protect Toodles against a threat. + Animated + Children + + + TVPG + + + + The Tom and Jerry Show + Cat Nippy; Ghost of a Chance + Tom and Jerry are locked out in the snow; after losing eight of his nine lives, Tom uses magic to try to get them back. + Animated + Children + + + TVPG + + + + Taz-Mania + War & Pieces; Airbourne Airhead + Taz's mom and dad leave him at home with his little brother, and Taz gets into an escalating argument with his sister, Molly; the Platypus Brothers enlist Taz to help test their flying inventions. + Animated + Children + + + TVY + + + + Taz-Mania + Battling Bushrats; Devil in the Deep Blue Sea + Bushrats attack Taz's home; Taz is manipulated by Digeri Dingo to go treasure hunting. + Animated + Children + + + TVY + + + + Scooby-Doo, Where Are You! + Never Ape an Ape Man + A giant ape threatens a movie being directed by Daphne's Uncle Max. + + Don Messick + Frank Welker + Casey Kasem + + Animated + Children + + + TVG + + + + Scooby-Doo, Where Are You! + Foul Play in Funland + A crazy robot operates a carnival after closing time. + + Don Messick + Frank Welker + Casey Kasem + + Animated + Children + + + TVG + + + + The Flintstones + In the Dough + Fred and Barney replace their measles-stricken wives in a TV bake-off. + + Alan Reed + Jean Vander Pyl + Mel Blanc + + Animated + Children + + + TVG + + + + The Jetsons + The Space Car + A bank robber hides his car in the Jetsons' garage. + + George O'Hanlon + Penny Singleton + Janet Waldo + + Animated + Children + + + TVG + + + + The Jetsons + The Coming of Astro + Elroy finds a puppy; George prefers electronic dogs. + + George O'Hanlon + Penny Singleton + Janet Waldo + + Animated + Children + + + TVG + + + + The Jetsons + Jetson's Night Out + George and Mr. Spacely connive to attend the robot football game. + + George O'Hanlon + Penny Singleton + Janet Waldo + + Animated + Children + + + TVG + + + + Popeye the Sailor + I-Ski Love-Ski You-Ski + Bluto sets traps to ruin Popeye and Olive's trek up a mountain, eventually kidnapping Olive and skiing down the mountain slope with Popeye in pursuit. + Animated + Comedy + + + TVG + + + + Popeye the Sailor + I Yam Love Sick + Popeye feigns an illness to get Olive to notice him. + Animated + Children + + + TVG + + + + Popeye the Sailor + I'll Be Skiing Ya + While vacationing in Lake Plastered, N.Y., Popeye must save Olive Oyl from skating instructor Bluto. + Animated + Comedy + + + TVG + + + + Popeye the Sailor + I'll Never Crow Again + Olive asks Popeye for help when crows raid her garden, but the obnoxious birds put up resistance. + Animated + Children + + + TVG + + + + Popeye the Sailor + I'm In The Army Now + Popeye and Bluto try to join the military to impress Olive. + Animated + Children + + + TVG + + + + Popeye the Sailor + It's the Natural Thing to Do + Popeye and Bluto try to be sophisticated. + Animated + Children + + + TVG + + + + Looney Tunes + Dough for the Dodo + Porky Pig tries to hunt down the rare Dodo bird in the African wild. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Sheep Ahoy + The adventures of Bugs Bunny, Daffy Duck, Porky Pig and friends. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Just Plane Beep + The adventures of Bugs Bunny, Daffy Duck, Porky Pig and friends. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Beep Prepared + Wile E. Coyote tries to stop Road Runner by tripping him, luring him into a hole, and giving him iron bird seed. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + The Unexpected Pest + Sylvester must catch mice or lose his happy home. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Fish and Slips + Sylvester Cat takes his son fishing. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + The Jet Cage + Granny buys a jet-propelled birdcage for Tweety Pie. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Wet Hare + Bugs Bunny finds himself at odds with a ruthless lumberjack with a French Canadian accent who wants to control the water supply by building a series of dams. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Rabbit Seasoning + Daffy Duck tricks Elmer Fudd into believing it's rabbit season, not duck. + + Mel Blanc + June Foray + + Animated + Children + + + TVG + + + + Looney Tunes + Spaced Out Bunny + Starring Bugs Bunny and Marvin the Martian. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Daffy Flies North + Refusing to go with the flock, Daffy seeks an easier way to travel north. + + Mel Blanc + + Animated + Children + + + TVG + + + + Looney Tunes + Boobs in the Woods + The adventures of Bugs Bunny, Daffy Duck, Porky Pig and friends. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + The Powerpuff Girls + The Silent Treatment; Sweet 'n Sour + The girls are pulled into a silent film; adorable animals become Townsville's criminals. + + Tara Strong + Cathy Cavadini + E.G. Daily + + Animated + Children + + + TVY7 + + + + The Powerpuff Girls + Makes Zen to Me; Say Uncle + Buttercup quests for inner peace; the girls mistake the Professor's brother for a wild man. + + Tara Strong + Cathy Cavadini + E.G. Daily + + Animated + Children + + + TVY7 + + + + Foster's Home for Imaginary Friends + Crime After Crime + Mr. Herriman's carrot addiction sets off a chain of events. + + Keith Ferguson + Sean Marquette + Grey Griffin + + Animated + Children + + + TVY7 + + + + Foster's Home for Imaginary Friends + Land of the Flea + Eduardo makes friends with the fleas that are driving him mad. + + Keith Ferguson + Sean Marquette + Grey Griffin + + Animated + Children + + + TVY7 + + + + Taz-Mania + Home Despair; Take All of Me + When Taz fails to repair holes he's made in the family home, the Platypus Brothers arrive to teach Taz the art of house repair; meanwhile, Wendel thinks that perhaps the zoo might be the perfect preserve for him. + Animated + Children + + + TVY + + + + Taz-Mania + Bird-Brained Beast; Ready Willing Unable + Taz and the Platypus Brothers try to catch a Kee-Wee Bird; unaware that their true goal is to capture Taz, Mr. Thickly lends Bull Gator and Axl some advice. + Animated + Children + + + TVY + + + + Looney Tunes + Quack Shot + Daffy attempts to prevent Elmer Fudd from hunting on his lake. + + Mel Blanc + Arthur Q. Bryan + + Animated + Children + + + TVY + + + + Looney Tunes + The Yolks on You + Assigned to lay turquoise eggs for Easter, Prissy accidentally produces a gold egg. + + Mel Blanc + June Foray + + Animated + Children + + + TVG + + + + Looney Tunes + Henhouse Henery + Foghorn toys with Henery Hawk as he attempts to catch chickens. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Often an Orphan + Charlie Dog tries everything to get Porky to take him in and he finally does. + + Mel Blanc + + Animated + Children + + + TVG + + + + Looney Tunes + Corn on the Cop + On Halloween night, policemen Daffy Duck and Porky Pig search for a robber disguised as Granny but end up tangling with the real Granny instead. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Looney Tunes + Hip Hip Hurry + The adventures of Bugs Bunny, Daffy Duck, Porky Pig and friends. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + The Looney Tunes Show + Here Comes the Pig + Porky attends an ex-girlfriend's wedding; Bugs gets bored without Daffy around. + + Jeff Bergman + Fred Armisen + Bob Bergen + + Animated + Children + + + TVPG + + + + The Looney Tunes Show + Mr. Weiner + The fair is in town and Daffy enters a hot dog eating contest. + + Jeff Bergman + Fred Armisen + Bob Bergen + + Animated + Children + + + TVPG + + + + The Looney Tunes Show + Best Friends Redux + Bugs tells the story of SuperRabbit. + + Jeff Bergman + Bob Bergen + + Animated + Children + + + TVPG + + + + Baby Looney Tunes + School Daz; Mary Had A Baby Duck (song); Things That Go Bugs In The Night + Baby Bugs must discover the source of a strange noise; Granny plays school with the babies. + + Sam Vincent + Janyse Jaud + Ian James Corlett + + Animated + Children + + + TVY + + + + Flintstone Kids + Bedrock 'n' Roll; Greed It and Weep; Captain Cavepuppy + Fred Flintstone, Barney Rubble, Wilma Slaghoople, Betty McBricker and Dino go through a number of misadventures as kids in Bedrock. + Animated + Children + + + TVG + + + + Flintstone Kids + Flintstone Fake Ache; Killer Kitty; Captain Knaveman + Fred pretends to be ill when he forgets to complete his school science project; Dino is forced to play with a vicious cat; Cavey loses his memory and believes he is a villain. + Animated + Children + + + TVG + + + + A Pup Named Scooby-Doo + The Schnook Who Took My Comic Book + A comic book villain steals a valuable Commander Cool comic book. + Animated + Children + + + TVG + + + + Yo, Yogi! + Mellow Fellow + Huckleberry Hound must help worried parents find their missing kid, Wee Willie Gorilla. + + Greg Burson + Don Messick + Greg Berg + + Animated + Children + + + TVG + + + + The Yogi Bear Show + Bear Foot Soldiers + Trouble occurs when soldiers on maneuvers in the park camouflage themselves in bear suits, but forget to notify Ranger Smith of the exercises. + Animated + Children + + + TVG + + + + Tom & Jerry + Puttin' on the Dog + Tom disguises himself as a canine to hunt for Jerry in a dog pound. + + Henry Corden + Kathy Gori + Don Messick + + Animated + Children + + + TVG + + + + The Tom and Jerry Show + Uncle Pecos Rides Again + Jerry brings Tom to consciousness and the cat discovers he has a bat on his head, an arrow in his butt, bee stings on his arm, tire treads on his back, lipstick on his cheek, and a case of amnesia. + Animated + Children + + + TVPG + + + + Looney Tunes + War and Pieces + Wile E. Coyote tries to catch the Road Runner using a grenade, invisible paint, a shotgun and a rocket. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Scooby-Doo and Guess Who? + Scooby-Doo, Dog Wonder! + Scooby-Doo and the gang are on the case with help from Blue Falcon and his dog wonder, Dynomutt. + + Frank Welker + Grey Griffin + Matthew Lillard + + Animated + Children + + + TVPG + + + + Scooby-Doo and Guess Who? + The Movieland Monsters! + After Carol Burnett launches a virtual reality movie world, a monster hijacks it then chases the gang through some of the most famous films of all time, including. + + Frank Welker + Grey Griffin + Matthew Lillard + + Animated + Children + + + TVPG + + + + Tom and Jerry Tales + DJ Jerry; Kitty Cat Blues; Flamenco Fiasco + Tom is in charge of guarding his owner's record store but has trouble doing so; Tom tries to woo a potential girlfriend by giving Jerry to her as a gift; Tom enters a flamenco dance contest. + + Don Brown + Sam Vincent + + Animated + Children + + + TVY + + + + Tom and Jerry Tales + You're Lion; Kangadoofus; Monkey Chow + Tom visits the African veldt to see his lion relatives and give them Jerry as a present, but the lions would rather eat Tom; in the Australian Outback, Jerry is adopted by a very protective momma kangaroo. + + Don Brown + Sam Vincent + + Animated + Children + + + TVY + + + + New Looney Tunes + Riverboat Rabbit; Dorlock, P.I + When Bugs and his small boat are run over by a giant riverboat captained by Yosemite Sam, Bugs boards the ship and gets revenge on the captain; when a theft occurs at the local art museum, it's up to detective Dorlock Holmes to solve the case. + + Jeff Bergman + Dee Bradley Baker + Bob Bergen + + Animated + Children + + + TVY7 + + + + New Looney Tunes + To Be the Flea, You Gotta Beat the Flea; The Wild Blue Blunder + After being told that he's too small to wrestle for the championship, Angelo the Flea sets up residence on Marc Anthony and takes control of his body; Bugs Bunny returns to his summer home, only to find it under attack by fighter pilot Yosemite Sam. + + Jeff Bergman + Dee Bradley Baker + Bob Bergen + + Animated + Children + + + TVY7 + + + + New Looney Tunes + Thomas Fuddison; Hiccups and Downs + Thomas Fuddison needs a lab assistant to help him with his latest invention, the electric light bulb. + + Jeff Bergman + Dee Bradley Baker + Bob Bergen + + Animated + Children + + + TVY7 + + + + New Looney Tunes + Foghorn Foods; Cruise Control + When Foghorn Leghorn opens a high-end grocery and rips everyone off with high prices, Daffy Duck pays a visit; Bugs Bunny competes with Cecil the Turtle to see who can have the best vacation. + + Jeff Bergman + Dee Bradley Baker + Bob Bergen + + Animated + Children + + + TVY7 + + + + Wacky Races + Free Wheeling to Wheeling + Dick Dastardly makes use of heavy machinery to stop the racers. + + Paul Winchell + Janet Waldo + Daws Butler + + Animated + Children + + + TVG + + + + Wacky Races + By Roller Coaster to Upsan Downs + The Wacky Racers take a twisting route from Slipover, N.J., to Upsan Downs. + Animated + Children + + + TVG + + + + Top Cat + The Violin Player + Benny is offered the chance to perform at a concert hall when a musical director believes he is a great violin player. + Animated + Children + + + TVG + + + + The Yogi Bear Show + Bear Foot Soldiers + Trouble occurs when soldiers on maneuvers in the park camouflage themselves in bear suits, but forget to notify Ranger Smith of the exercises. + Animated + Children + + + TVG + + + + Scooby-Doo, Where Are You! + The Backstage Rage + A puppet takes a violin case full of money from Shaggy and Scooby. + + Don Messick + Frank Welker + Casey Kasem + + Animated + Children + + + TVG + + + + Scooby-Doo, Where Are You! + Bedlam in the Big Top + The gang investigates a mysterious clown at the local circus. + + Don Messick + Frank Welker + Casey Kasem + + Animated + Children + + + TVG + + + + The Flintstones + The Good Scout + Fred takes command of a Boy Scout troop during a camping trip. + + Alan Reed + Jean Vander Pyl + Mel Blanc + + Animated + Children + + + TVG + + + + The Jetsons + The Good Little Scouts + George takes Elroy's scout troop camping. + + George O'Hanlon + Penny Singleton + Janet Waldo + + Animated + Children + + + TVG + + + + The Jetsons + The Flying Suit + Cogswell threatens Spacely Sprockets with obsolescence. + + George O'Hanlon + Penny Singleton + Janet Waldo + + Animated + Children + + + TVG + + + + The Jetsons + Rosie's Boyfriend + Rosie the Robot pines for her deactivated boyfriend. + + George O'Hanlon + Penny Singleton + Janet Waldo + + Animated + Children + + + TVG + + + + Popeye the Sailor + The Jeep + The Jeep leads Popeye on a wild chase, hunting for Swee'pea. + Animated + Children + + + TVG + + + + Tom & Jerry + Shutter Bugged Cat + Frustrated by his inability to catch Jerry to date, Tom builds a mousetrap. + + Henry Corden + Kathy Gori + Don Messick + + Animated + Children + + + TVG + + + + Scooby Doo! Legend of the Phantosaur + Scooby and the gang encounter a ghostly dinosaur at a fossil dig. + + Frank Welker + Mindy Cohn + Grey Griffin + + 2011 + Movies + Animated + + + TVG + + + + Be Cool, Scooby-Doo! + Party Like It's 1899 + Daphne brings the gang to a Victorian murder mystery party so they can dress up and solve a fake mystery; when a headless count starts kidnapping people, the gang must stay in character as they tackle the real caper. + + Frank Welker + Matthew Lillard + Grey Griffin + + Animated + Children + + + TVY7 + + + + Scooby-Doo! Mystery Incorporated + Art of Darkness! + A work of art tries to destroy its creator. + + Frank Welker + Mindy Cohn + Grey Griffin + + Animated + Children + + + TVY7 + + + + Jabberjaw + Sourpuss Octopuss + Jabber and the gang accompany an archaeologist trying to find an ancient treasure before an infamous general can sabotage his plans. + Animated + Comedy + + + TVG + + + + The Powerpuff Girls + A Made Up Story + The girls must stop someone from putting makeup on the posters and statues of Townesville. + + Tara Strong + Cathy Cavadini + E.G. Daily + + Animated + Children + + + TVY7 + + + + Captain Planet and the Planeteers + The Night of the Wolf + Looten Plunder creates a robotic wolf. + Animated + Children + + + TVY7 + + + + Looney Tunes + Pests for Guests + The adventures of Bugs Bunny, Daffy Duck, Porky Pig and friends. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + The Looney Tunes Show + SuperRabbit + Bugs decides to share a secret story from his past, where he was the hero of Metropolis and battled to save the world from the evil General Zod's slavery. + + Jeff Bergman + + Animated + Children + + + TVPG + + + + The Looney Tunes Show + Best Friends + Bugs and Daffy go on a game show where they are asked questions about one another. + + Jeff Bergman + Fred Armisen + Maurice LaMarche + + Animated + Children + + + TVPG + + + + The Looney Tunes Show + Members Only + Daffy sneaks into a members only club; Bugs Bunny meets Lola. + + Jeff Bergman + Kristen Wiig + Maurice LaMarche + + Animated + Children + + + TVPG + + + + Baby Looney Tunes + The Creature From the Chocolate Chip; The Looney Riddle; Card Bored Boxd + Sylvester blames a monster for eating Granny's cookies; the babies have fun with a cardboard box and their imaginations. + + Sam Vincent + Janyse Jaud + Ian James Corlett + + Animated + Children + + + TVY + + + + Flintstone Kids + Better Buddy Blues; Who's Faultin' Who? + Shades Stone takes advantage of the kids of Bedrock; Captain Caveman and Cavey help Godzilla. + + Scott Menville + Elizabeth Lyn Fraser + Hamilton Camp + + Animated + Children + + + TVG + + + + Flintstone Kids + A Tiny Egg; Little Rubble, Big Trouble + Wilma tries to nurse a rare egg until it hatches; Barney accidentally takes one of Philo's secret potions and becomes a bully. + Animated + Children + + + TVG + + + + A Pup Named Scooby-Doo + Night of the Living Burger + After a quarrel, a burgerlike creature haunts Shaggy and Scooby. + Animated + Children + + + TVG + + + + Yo, Yogi! + Polly Wants a Safe Cracker + Yogi, Boo-Boo and Secret Squirrel try to thwart a parrot safe cracker. + + Greg Burson + Don Messick + Greg Berg + + Animated + Children + + + TVG + + + + The Yogi Bear Show + Pie Pirates + Yogi and Boo Boo must sneak past a vicious dog to steal a pie cooling in a kitchen window. + Animated + Children + + + TVG + + + + Tom & Jerry + Sufferin' Cats + Tom battles a scruffy cat for possession of Jerry. + + Henry Corden + Kathy Gori + Don Messick + + Animated + Children + + + TVG + + + + The Tom and Jerry Show + Wing Nuts + Hildie and Beatie flick their wands to turn Tom into a more loving cat, much to Jerry's annoyance. + Animated + Children + + + TVPG + + + + Looney Tunes + Feather Dusted + Foghorn Leghorn tries to teach Widow Hen's egghead genius son how to have fun. + + Mel Blanc + June Foray + + Animated + Children + + + TVG + + + + Scooby-Doo and Guess Who? + What a Night for a Dark Knight! + When Scooby and the gang visit Gotham City and Daphne's Uncle Alfred, they stumble into a mystery -- and into Batman's way. + + Frank Welker + Grey Griffin + Matthew Lillard + + Animated + Children + + + TVPG + + + + Scooby-Doo and Guess Who? + Elementary, My Dear Shaggy! + While taking a tour of London, Scooby and the gang run afoul of horrible screaming skulls of English legend and team up with an eccentric man who claims to be none other than Sherlock Holmes. + + Frank Welker + Grey Griffin + Matthew Lillard + + Animated + Children + + + TVPG + + + + Tom and Jerry Tales + Game of Mouse and Cat; Babysitting Blues; Catfish Folly + Tom and Jerry are out fishing when they discover the elusive Butchfish, a half-cat, half-fish that wants to eat Jerry while Tom wants to eat it. + + Don Brown + Sam Vincent + + Animated + Children + + + TVY + + + + Tom and Jerry Tales + Tiger Cat; Feeding Time; Polar Peril + A monkey paints Tom to look like a tiger; Jerry frames Tom for feeding zoo animals; a polar bear aids Jerry. + + Don Brown + Sam Vincent + + Animated + Children + + + TVY7 + + + + New Looney Tunes + Versailles's Matters; Frank Lloyd Wrong + Blacque Jacque Shellacque is enjoying his ornate palace, but when Bugs Bunny lodges a complaint, he throws him off the premises; Daffy Duck is building his next home and things get complicated when he hires Curt and Punkinhead Martin. + + Jeff Bergman + Dee Bradley Baker + Bob Bergen + + Animated + Children + + + TVY7 + + + + New Looney Tunes + King Bugs and the Island of Lunacy Part 1; King Bugs and the Island of Lunacy Part 2 + King Bugs and his friends Daffy and Porky journey to the Island of Lunacy in search of the Sword of Rothgar. + + Jeff Bergman + Dee Bradley Baker + Bob Bergen + + Animated + Children + + + TVY7 + + + + New Looney Tunes + Swamp and Circumstance; Safari, So Goodie + Porky and Sylvester go on vacation to the Okeefenookie Swamp; Leslie is upset because Mr. Montygrabs chooses Bugs to be the safari guide and not him. + + Jeff Bergman + Dee Bradley Baker + Bob Bergen + + Animated + Children + + + TVY7 + + + + New Looney Tunes + It's Snout or Never; From Dusk Till Dog + When Witch Hazel needs a pig's snout to finish her Ugly Potion, she tries to take one from unsuspecting sightseer Porky Pig; Count Bloodcount tasks Marc Anthony with guarding his coffin while he sleeps. + + Jeff Bergman + Dee Bradley Baker + Bob Bergen + + Animated + Children + + + TVY7 + + + + Wacky Races + Race to Racine + The racers head to Racine, Wis. + + Paul Winchell + Janet Waldo + Daws Butler + + Animated + Children + + + TVG + + + + Wacky Races + Rhode Island Road Race + The racers roar along to Rocky Road, R.I. + Animated + Children + + + TVG + + + + Top Cat + The Missing Heir + Benny inherits a million dollars. + Animated + Children + + + TVG + + + + The Yogi Bear Show + Pie Pirates + Yogi and Boo Boo must sneak past a vicious dog to steal a pie cooling in a kitchen window. + Animated + Children + + + TVG + + + + Scooby-Doo, Where Are You! + A Gaggle of Galloping Ghosts + The gang visits a haunted castle in Transylvania. + + Don Messick + Frank Welker + Casey Kasem + + Animated + Children + + + TVG + + + + Scooby-Doo, Where Are You! + Scooby-Doo and a Mummy Too + The gang must uncover the use of a coin sought by a mummy. + + Don Messick + Frank Welker + Casey Kasem + + Animated + Children + + + TVG + + + + The Flintstones + Rooms for Rent + Betty and Wilma rent rooms to bongo-playing students. + + Alan Reed + Jean Vander Pyl + Mel Blanc + + Animated + Children + + + TVG + + + + The Jetsons + Elroy's TV Show + George manages Elroy's TV career as. + + George O'Hanlon + Penny Singleton + Janet Waldo + + Animated + Children + + + TVG + + + + The Jetsons + Uniblab + Spacely appoints a tyrannical robot computer as supervisor. + + George O'Hanlon + Penny Singleton + Janet Waldo + + Animated + Children + + + TVG + + + + The Jetsons + A Visit From Grandpa + A visit from 110-year-old Grandpa proves exhausting. + + George O'Hanlon + Penny Singleton + Janet Waldo + + Animated + Children + + + TVG + + + + Popeye the Sailor + Let's You and Him Fight + Popeye challenges Bluto, the boxing champ. + + William Costello + Bonnie Poe + William Pennell + + Animated + Children + + + TVG + + + + Tom & Jerry + Tom-ic Energy + Tom chases Jerry through a bunch of different scenarios, never resting. + + Henry Corden + Kathy Gori + Don Messick + + Animated + Children + + + TVG + + + + Tom and Jerry: The Fast and the Furry + After they wreck their house chasing each other, Tom and Jerry enter a race around the world to win a new house. + + Charlie Adler + Jeff Bennett + Jess Harnell + + 2005 + Movies + Animated + + + TVG + + + 2 + + + + Tom and Jerry Tales + Joy Riding Jokers; Cat Got Your Luggage?; City Dump Chumps + Tom and Jerry are mistaken for valets; Tom and Jerry trash a fancy hotel lobby; Tom and Butch fight in a junkyard. + + Don Brown + Sam Vincent + + Animated + Children + + + TVY7 + + + + Scooby-Doo! Mystery Incorporated + The Midnight Zone + Deep-sea robots attack Cassidy. The gang helps her solve the case of who is sending them. + + Frank Welker + Mindy Cohn + Grey Griffin + + Animated + Children + + + TVY7 + + + + Jabberjaw + Hang Onto Your Hat, Jabber + Jabberjaw comes under attack from the Brotherhood of Evil when he accidentally picks up their stolen power helmet. + Animated + Comedy + + + TVG + + + + The Powerpuff Girls + Little Miss Interprets; Night Mayor + The girls believe that the Professor is planning to replace them; the mayor asks the girls to enter his head and stop his recurring nightmare. + + Tara Strong + Cathy Cavadini + E.G. Daily + + Animated + Children + + + TVY7 + + + + The New Adventures of Captain Planet + A Mine Is a Terrible Thing to Waste, Part 1 + The Planeteers argue over what ecological issue to focus on, but Gaia assigns the team to stop Sly Sludge from dumping toxic waste into a salt mine; when Sludge traps them inside the mine, Ma-Ti shares an inspiring story to bring the team together. + Animated + Children + + + TVY7 + + + + Looney Tunes + Boston Quackie + Daffy takes on a role as an inspector, and his superior assigns him to deliver an expensive package. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + The Looney Tunes Show + Jailbird and Jailbunny + Daffy and Bugs are incarcerated. + + Jeff Bergman + Bob Bergen + Maurice LaMarche + + Animated + Children + + + TVPG + + + + The Looney Tunes Show + Fish and Visitors + Yosemite Sam leans on Bugs when his plans to go off the grid go astray. + + Jeff Bergman + Maurice LaMarche + + Animated + Children + + + TVPG + + + + The Looney Tunes Show + Monster Talent + Daffy offers lessons in boxing and friendship; Speedy expands his business; Bugs is a local celebrity. + + Jeff Bergman + Fred Armisen + Bob Bergen + + Animated + Children + + + TVPG + + + + Baby Looney Tunes + Time And Time Again; Does Your Tongue Hang Low (song); May The Best Taz Win + Baby Daffy trains Taz to beat Lola in athletic competition; the babies learn how to tell time. + + Sam Vincent + Janyse Jaud + Ian James Corlett + + Animated + Children + + + TVY + + + + Flintstone Kids + Anything You Can Do, I Can Do Betty; Haircutastrophe + Fred Flintstone, Barney Rubble, Wilma Slaghoople, Betty McBricker and Dino go through a number of misadventures as kids in Bedrock. + Animated + Children + + + TVG + + + + Flintstone Kids + Camper Scamper; Bone Voyage; The Cream-pier Strikes Back + Fred Flintstone, Barney Rubble, Wilma Slaghoople, Betty McBricker and Dino go through a number of misadventures as kids in Bedrock. + Animated + Children + + + TVG + + + + A Pup Named Scooby-Doo + The Computer Walks Among Us + Velma's award-winning robot is accused of a string of burglaries. + Animated + Children + + + TVG + + + + Yo, Yogi! + Mall or Nothing + Augie Doggie falls for a con artist's ploy and signs over ownership of the mall, so the gang must help him reverse the deal before. + + Greg Burson + Don Messick + Greg Berg + + Animated + Children + + + TVG + + + + The Yogi Bear Show + Baffled Bear + Yogi wakes up from his winter nap to find a super highway has been built where the forest previously was. + Animated + Children + + + TVG + + + + Tom & Jerry + Trap Happy + Tom tires of chasing Jerry and enlists the aid of Ajax Mouse Exterminators. + + Henry Corden + Kathy Gori + Don Messick + + Animated + Children + + + TVG + + + + The Tom and Jerry Show + Dirty Rat + After another successful attempt on Jerry's part to elude Tom, Jerry overhears Rick and Ginger talk about the possibility of getting rid of the useless cat. + Animated + Children + + + TVPG + + + + Looney Tunes + Canned Feud + Sylvester is panic-stricken the minute he finds out his owners have left for vacation without leaving food; he finds canned food, but the only can opener is in the possession of a mouse. + + Mel Blanc + June Foray + + Animated + Children + + + TVY + + + + Scooby-Doo and Guess Who? + A Mystery Solving Gang Divided! + Scooby-Doo and the gang travel to a battlefield near Gettysburg, Penn., to investigate the mysterious appearance of ghost zombie Civil War soldiers and come face to face with a rival mystery-solving gang, the Funky Phantom crew. + + Frank Welker + Grey Griffin + Matthew Lillard + + Animated + Children + + + TVPG + + + + Scooby-Doo and Guess Who? + Revenge of the Swamp Monster! + Scooby-Doo and the gang meet up with basketball legend Chris Paul at a golf tournament fundraiser in Florida. Shaggy caddies for Mr. Paul and helps him with his game so the Assist King can save a local school from going under. + + Frank Welker + Grey Griffin + Matthew Lillard + + Animated + Children + + + TVPG + + + + Tom and Jerry Tales + Way-Off Broadway/Egg Beats/Cry Uncle + Tom and Jerry compete for people's attention and money while performing on the street; Jerry takes a vacation to a farm to get away from the city noise; Jerry's Uncle Pecos, from out west, comes for a visit. + + Don Brown + Sam Vincent + + Animated + Children + + + TVY7 + + + + Tom and Jerry Tales + Bats What I Like About the South; Fraidy Cat Scat; Tomb It May Concern + Jerry disguises himself as a bat to scare Tom; Tom moves to a new house; Tom and Jerry find gold inside a pyramid. + + Don Brown + Sam Vincent + + Animated + Children + + + TVY7 + + + + New Looney Tunes + Close Encounters of the Duck Kind; O.M. Genie + Daffy Duck flies into a satellite and crash lands into Area 51 where he is mistaken for an alien and captured by Yosemite Sam; Daffy and Porky stumble on a lamp with a magical Genie. + + Jeff Bergman + Dee Bradley Baker + Bob Bergen + + Animated + Children + + + TVY7 + + + + New Looney Tunes + Brothers in Harms; Rhoda Derby + Yosemite Sam's twin brother Yosemite Jack comes to visit and encounters folks angry at Sam and they take it out on Jack; Rhonda Roundhouse is beaten in the Roller Derby by Lola Bunny and challenges Lola to a rematch. + + Jeff Bergman + Dee Bradley Baker + Bob Bergen + + Animated + Children + + + TVY7 + + + + New Looney Tunes + Lake, Rattle, and Roll; It Paint All It's Cracked Up to Be + Bugs shows up to Lake Funsite Summer Camp to receive training as a camp counselor; Elmer Fudd hires Sylvester, Claude and Pete Puma to paint his house. + + Jeff Bergman + Dee Bradley Baker + Bob Bergen + + Animated + Children + + + TVY7 + + + + New Looney Tunes + Samurai Bugs; Duck in the Mist + When Cal the Samurai terrorizes villages in feudal Japan, it's up to Bugs Bunny to stop him; Tad Tucker tries to film a nature documentary, but he's constantly interrupted by Daffy Duck who is trying to make it more entertaining. + + Jeff Bergman + Dee Bradley Baker + Bob Bergen + + Animated + Children + + + TVY7 + + + + Wacky Races + The Great Cold Rush Race + Oddball characters race across the country in wacky cars. + Animated + Children + + + TVG + + + + Wacky Races + Eeny, Miny Missouri Go! + Oddball characters race across the country in wacky cars. + + Paul Winchell + Janet Waldo + Daws Butler + + Animated + Children + + + TVG + + + + Top Cat + Top Cat Falls in Love + While visiting Benny in the hospital, Top Cat falls in love with the nurse who is looking after him. + Animated + Children + + + TVG + + + + The Crow + A black bird resurrects a rock musician (Brandon Lee) who then avenges his own murder and his fiancee's. + + Brandon Lee + Ernie Hudson + Michael Wincott + + 1994 + Movies + Action + + + TVPG + + + 3 + + + + Crank + A hit man (Jason Statham) awakes to the news that he has been poisoned and will die in an hour unless he keeps adrenaline coursing through his body. + + Jason Statham + Amy Smart + Jose Pablo Cantillo + + 2006 + Movies + Action + + + TVPG + + + 2 + + + + Cradle 2 the Grave + A Taiwanese intelligence agent (Jet Li) and a thief (DMX) try to recover stolen diamonds and the latter's kidnapped daughter. + + Jet Li + DMX + Anthony Anderson + + 2003 + Movies + Action + + + TVPG + + + 2 + + + + Cradle 2 the Grave + A Taiwanese intelligence agent (Jet Li) and a thief (DMX) try to recover stolen diamonds and the latter's kidnapped daughter. + + Jet Li + DMX + Anthony Anderson + + 2003 + Movies + Action + + + TVPG + + + 2 + + + + Brooklyn's Finest + A massive drug operation changes the lives of three conflicted police officers (Richard Gere, Don Cheadle, Ethan Hawke) in one of New York's most-violent precincts. + + Richard Gere + Don Cheadle + Ethan Hawke + + 2009 + Movies + Crime Story + + + TVPG + + + 2 + + + + Mann & Wife + Undercover Mann + Daniel and Michael go under cover to catch an art thief; Michelle visits and is excited to help DJ with a school assignment. + + David Mann + Tamela Mann + + Sitcom + + + TVPG + + + + Inspiration Ministries Campmeeting + Religious + + + + Karamo + Mom, It's Me or Your Wife; DNA: Ghosted After Pregnancy + Malcom says his mother's wife is the cause of his toxic relationship with his mom; Shatay says her one-night stand has been a deadbeat father to her child. + Talk Shows + + + TV14 + + + + In the Heat of the Night + Don't Look Back + As Tibbs and Gillespie fight for control of the department, a murderer re-creating an old voodoo case stalks Gillespie. + + Carroll O'Connor + Howard E. Rollins + Anne-Marie Johnson + + Drama + + + TVPG + + + + In the Heat of the Night + Family Secrets + A woman (Susan Blakely) who is accused of patricide claims she was a victim of incest. With Carroll O'Connor, Howard Rollins. + + Carroll O'Connor + Howard E. Rollins + Anne-Marie Johnson + + Drama + + + TV14 + + + + In the Heat of the Night + The Hammer and the Glove + During Tibbs' old partner's (Michael Warren) visit two FBI agents and a protected witness are murdered. + + Carroll O'Connor + Howard E. Rollins + Anne-Marie Johnson + + Drama + + + TVPG + + + + In the Heat of the Night + Prisoners + Gillespie (Carroll O'Connor) suspects Sheriff Thompson (Ed Ames), an old friend, may be responsible for a man's death. With Howard Rollins and Geoffrey Thorne. + + Carroll O'Connor + Howard E. Rollins + Anne-Marie Johnson + + Drama + + + TVPG + + + + In the Heat of the Night + Hot Nights + Bubba (Alan Autry) falls in love with a deceitful siren (Barbara Stock). With Carroll O'Connor and Howard Rollins. + + Carroll O'Connor + Howard E. Rollins + Anne-Marie Johnson + + Drama + + + TVPG + + + + Twisted + With help from her partner (Andy Garcia), a police inspector (Ashley Judd) searches for a killer who is murdering her former lovers. + + Ashley Judd + Samuel L. Jackson + Andy Garcia + + 2004 + Movies + Thriller + + + TVPG + + + 1 + + + + Secrets + A successful, married businessman succumbs to his desires and betrays his family. His wife struggles to keep the family together in the wake of his infidelity. + + Denyce Lawton + Harold House Moore + Denise Boutte + + 2017 + Movies + Thriller + + + TVG + + + + Tyler Perry's Acrimony + A faithful wife who is tired of standing by her devious husband is enraged when it becomes clear she has been betrayed. + + Taraji P. Henson + Lyriq Bent + Ajiona Alexus + + 2018 + Movies + Thriller + + + TVPG + + + 1 + + + + Greenleaf + A Time to Heal + The news of Grace Greenleaf's return to Memphis breeds tension. + + Keith David + Lynn Whitfield + Merle Dandridge + + Drama + + + TV14 + + + + Greenleaf + The Baptism + Grace's moving back to Memphis is motivated by vengeance for her sister's death; she struggles to work in the family's church. + + Keith David + Lynn Whitfield + Merle Dandridge + + Drama + + + TV14 + + + + A Boy. A Girl. A Dream. + Cass is a Los Angeles club promoter who meets a Midwestern woman named Frida on the night of the 2016 presidential election. She challenges Cass to revisit his broken dreams, while he pushes Frida to discover hers. + + Omari Hardwick + Meagan Good + Jay Ellis + + 2018 + Movies + Romance + + + + About Last Night + Four Los Angeles singles experience undeniable chemistry and pair off to follow their attraction to its logical conclusion. Afterward, each new couple tries to make love last in the real world. + + Kevin Hart + Michael Ealy + Regina Hall + + 2014 + Movies + Drama + + + TVPG + + + 3 + + + + About Last Night + Four Los Angeles singles experience undeniable chemistry and pair off to follow their attraction to its logical conclusion. Afterward, each new couple tries to make love last in the real world. + + Kevin Hart + Michael Ealy + Regina Hall + + 2014 + Movies + Drama + + + TVPG + + + 3 + + + + Edison + A cub reporter (Justin Timberlake) from a community newspaper jeopardizes his life by trying to expose a squad of corrupt lawmen (LL Cool J, Dylan McDermott). + + Morgan Freeman + Kevin Spacey + Justin Timberlake + + 2005 + Movies + Thriller + + + 2 + + + + Everybody Hates Chris + Everybody Hates Father's Day + Julius decides to spend Father's Day alone; Chris looks for the perfect gift for his father. + + Tichina Arnold + Terry Crews + Tyler James Williams + + Sitcom + + + TVPG + + + + Tamron Hall + Telling My Secret + Mia St. John, widow ofGuests: Mia St. John, Keshia Knight Pulliam.. + Talk Shows + + + TVPG + + + + Sherri + Ventriloquist and comic Terry Fator (Guests: Terry Fator.. + Talk Shows + + + TVPG + + + + Karamo + DNA: I Took the Wrong Baby Home; Unlock: Broken Phone and Promises + Raylene believes that her real daughter was switched at birth and that Undrea isn't hers; Servilia says her fiancé, I'sun, is spending too much time at the bus stop meeting women, and she's caught him sexting other women. + Talk Shows + + + TV14 + + + + Hot Bench + Accepting Gifts From a Stalker?!; Payback Assault?! + A woman admits to accepting gifts from a man she calls a stalker and allowing him to pay a large electric bill; the judges uncover mortgage fraud in a case involving accusations of assault and failure to repay a loan. + Reality TV + Legal + + + TVG + + + + Hot Bench + Missing Service Cat Triggers Fight! + A veteran with PTSD who is accused of intimidation while trying to find his missing service cat sues his neighbor for filing a false police report. + Reality TV + Legal + + + TVG + + + + Personal Injury Court + Mendoza vs. Sullivan + A man and his wife sue for $100,000 when a piece of luggage clobbers him during a bus trip. + Reality TV + Legal + + + TV14 + + + + Personal Injury Court + Robinson vs. Connelly + A joy ride on a horse ends in a woman suing for $90,000 after being thrown off. + Reality TV + Legal + + + TV14 + + + + Couples Court With the Cutlers + Peterson vs. Griffin + A six-year relationship is on the line after a woman finds photos and text messages from another woman and mysterious stains on her fiance's underwear. + Reality TV + Legal + + + TVPG + + + + Couples Court With the Cutlers + Scott vs. Bisnauth + A woman refuses to wear her engagement ring until she learns whether or not her fiancé of five years is being faithful. + Reality TV + Legal + + + TVPG + + + + Lauren Lake's Paternity Court + Wilson vs. Butler + A man denies fathering his promiscuous ex-girlfriend's daughters because, he claims, she was sleeping around throughout their relationship. + Reality TV + Legal + + + TV14 + + + + Lauren Lake's Paternity Court + Holland vs. Holland + An ex-Marine is convinced he is not the biological father of his wife's 2-month-old son, due to her scandalous cheating. + Reality TV + Legal + + + TV14 + + + + Lauren Lake's Paternity Court + Martin vs. Damphier + A California man refuses to believe that he is the biological father of his on-again off-again girlfriend's 4-year-old daughter after he finds scandalous text messages in the woman's phone. + Reality TV + Legal + + + TV14 + + + + Lauren Lake's Paternity Court + Wallace vs. Wallace + A woman claims her ex-husband's paternity doubt surrounding her 2-year-old daughter is fueled by his new wife, and she wants to set the record straight. + Reality TV + Legal + + + TV14 + + + + In the Heat of the Night + A Turning + Gillespie and Tibbs track the killers of two drug dealers; Althea worries about the dangers Virgil faces and suggests he change careers. + + Carroll O'Connor + Howard E. Rollins + Anne-Marie Johnson + + Drama + + + TVPG + + + + In the Heat of the Night + A Woman Much Admired + While investigating the death of the woman he once loved, Gillespie meets his daughter for the first time. + + Carroll O'Connor + Howard E. Rollins + Anne-Marie Johnson + + Drama + + + TVPG + + + + In the Heat of the Night + Baby for Sale + A friend of Bubba's, fearing the loss of his adopted son, is coerced by the boy's biological father into committing a fatal armed robbery. + + Carroll O'Connor + Howard E. Rollins + Anne-Marie Johnson + + Drama + + + TVPG + + + + Miss Juneteenth + A former beauty queen and single mom prepares her rebellious teenage daughter for the. + + Nicole Beharie + Kendrick Sampson + Alexis Chikaeze + + 2020 + Movies + Drama + + + + Kingdom Come + Members (LL Cool J, Jada Pinkett Smith, Vivica A. Fox) of a dysfunctional family bicker while mourning the loss of their patriarch. + + LL Cool J + Jada Pinkett Smith + Vivica A. Fox + + 2001 + Movies + Comedy + + + 2 + + + + Tyler Perry's A Madea Christmas + Madea (Tyler Perry) accompanies her niece to the country for a surprise holiday visit with the niece's daughter, but what they find when they arrive prompts Madea to dish out her own brand of Christmas spirit. + + Tyler Perry + Kathy Najimy + Chad Michael Murray + + 2013 + Movies + Christmas + Comedy + + + TVG + + + 1 + + + + Peeples + A man's (Craig Robinson) plan to propose to his girlfriend (Kerry Washington) goes hilariously awry when he becomes entangled in a web of white lies and comic dysfunction with her upper-crust family. + + Craig Robinson + Kerry Washington + David Alan Grier + + 2013 + Movies + Romance + + + TVG + + + 2 + + + + If Beale Street Could Talk + After her fiance is falsely imprisoned, a pregnant African-American woman sets out to clear his name and prove his innocence. + + KiKi Layne + Stephan James + Regina King + + 2018 + Movies + Romance + + + TVG + + + 3 + + + + The Jennifer Hudson Show + The EGOT winner's daytime talk show features celebrity interviews, topical stories, community heroes, viral sensations, and music, bringing fun, uplifting, and empowering conversations to the forefront. + Talk Shows + + + TVPG + + + + Tamron Hall + Tamron's Hall-o-ween Extravaganza! + Halloween: Tamron performs a dance number; giveaways; performances; Shop Tam Fam. + Talk Shows + + + TVPG + + + + Sherri + Actress, comic and Emmy Award-winning longtime co-host of. + Talk Shows + + + TVPG + + + + Karamo + 21-Year-Old DNA Mystery; Unlock My Three Phones + Amber learned about her potential father's identity when she turned 16, and Karamo hopes to put her search to a halt with a paternity test; Bernadette is fed up with her girlfriend's incessant accusations of flirting and sleeping with men. + Talk Shows + + + TV14 + + + + Hot Bench + Body Image Blowout!; Age-Inappropriate Dance Disaster?! + A woman says her trainer shamed her in public about her weight; a young woman says her dance teacher's substandard choreography caused people to tease and laugh at her after a recital. + Reality TV + Legal + + + TVG + + + + Hot Bench + Sexual Harassment Strikes Again?! + A woman says her landlord touched her inappropriately and offered to adjust her rent if she spent time with him. + Reality TV + Legal + + + TVG + + + + Personal Injury Court + Morris vs. Papadapoulos + A woman sues a restaurant owner for $140,000 when the performance of a popular Greek wedding tradition almost takes her eye out. + Reality TV + Legal + + + TV14 + + + + Personal Injury Court + Taylor vs. Taylor + A mother sues for $120,000 after being attacked by her daughter's pet cat. + Reality TV + Legal + + + TV14 + + + + Couples Court With the Cutlers + Bayne vs. Keene + An engagement is on the line because a man suspects his fiancée cheated with a man she met online, and the court appoints an expert interrogator to get the truth. + Reality TV + Legal + + + TVPG + + + + Couples Court With the Cutlers + Woods vs. Brooks + A bride-to-be brings her fiancée and the reported other woman to court to find out the extent of their. + Reality TV + Legal + + + TVPG + + + + Lauren Lake's Paternity Court + Update Show: Shocking Fan Favorites + Judge Lauren Lake provides surprising updates on some of the most shocking and outrageous paternity cases that have been presented in her courtroom. + Reality TV + Legal + + + TV14 + + + + Lauren Lake's Paternity Court + Pringle vs. Brown + A woman says her ex-boyfriend is her daughter's biological father, because they are both lactose intolerant, but he has doubts, because she cheated. + Reality TV + Legal + + + TV14 + + + + Lauren Lake's Paternity Court + Seaton vs. McPeek + A woman believed her mother's deceased lover was her biological father, until a medical emergency proved it wasn't possible and a 30-year secret was revealed. + Reality TV + Legal + + + TV14 + + + + Lauren Lake's Paternity Court + Morris vs. Thorpe + A man searches for answers regarding the paternity of his girlfriend's twin daughters and believes he fathered only one of the girls. + Reality TV + Legal + + + TV14 + + + + In the Heat of the Night + Obsession + Gillespie and Tibbs meet legal resistance trying to protect a high-school teacher from a disturbed admirer. + + Carroll O'Connor + Howard E. Rollins Jr. + Anne-Marie Johnson + + Drama + + + TVPG + + + + In the Heat of the Night + Liar's Poker + Gillespie attempts to prove the innocence of a prostitute charged with murdering one of Sparta's wealthiest citizens. + + Carroll O'Connor + Howard E. Rollins Jr. + Anne-Marie Johnson + + Drama + + + TVPG + + + + In the Heat of the Night + Ruda's Awakening + Virgil's Aunt Ruda observes the shooting of a black man who was resisting arrest, but her rage clouds her recollection of the incident. + + Carroll O'Connor + Howard E. Rollins Jr. + Anne-Marie Johnson + + Drama + + + TVPG + + + + Underclassman + A rookie policeman (Nick Cannon) works under cover at a prep school to investigate the mysterious death of a student. + + Nick Cannon + Shawn Ashmore + Roselyn Sánchez + + 2005 + Movies + Comedy + + + TVG + + + 1 + + + + Cradle 2 the Grave + A Taiwanese intelligence agent (Jet Li) and a thief (DMX) try to recover stolen diamonds and the latter's kidnapped daughter. + + Jet Li + DMX + Anthony Anderson + + 2003 + Movies + Action + + + TVPG + + + 2 + + + + The Crow + A black bird resurrects a rock musician (Brandon Lee) who then avenges his own murder and his fiancee's. + + Brandon Lee + Ernie Hudson + Michael Wincott + + 1994 + Movies + Action + + + TVPG + + + 3 + + + + Crank + A hit man (Jason Statham) awakes to the news that he has been poisoned and will die in an hour unless he keeps adrenaline coursing through his body. + + Jason Statham + Amy Smart + Jose Pablo Cantillo + + 2006 + Movies + Action + + + TVPG + + + 2 + + + + Romeo Must Die + While seeking vengeance for his brother's murder, a former Hong Kong policeman (Jet Li) falls for his foe's daughter (Aaliyah). + + Jet Li + Aaliyah + Isaiah Washington + + 2000 + Movies + Action + + + TVPG + + + 2 + + + + Romeo Must Die + While seeking vengeance for his brother's murder, a former Hong Kong policeman (Jet Li) falls for his foe's daughter (Aaliyah). + + Jet Li + Aaliyah + Isaiah Washington + + 2000 + Movies + Action + + + TVPG + + + 2 + + + + Someone They Knew With Tamron Hall + Who Shot The Sheriff? + When an unknown assailant guns down sheriff-elect Derwin Brown shortly after winning his election, investigators suspect a political assassination, only to instead uncover an extensive trail of corruption. + Documentary + + + TV14 + + + + The Jennifer Hudson Show + The EGOT winner's daytime talk show features celebrity interviews, topical stories, community heroes, viral sensations, and music, bringing fun, uplifting, and empowering conversations to the forefront. + Talk Shows + + + TVPG + + + + Tamron Hall + Actor Henry Winkler (memoirGuests: Henry Winkler.. + Talk Shows + + + TVPG + + + + Sherri + Actress, comic and Emmy Award-winning longtime co-host of. + Talk Shows + + + TVPG + + + + Karamo + Unlock: Are We Breaking Up Again?; Unlock: Your Cheating Caused My Miscarriage + After a nasty argument with her boyfriend, Devante, Kyanna left the house and decided she was never going back; April doesn't fully trust her boyfriend, Joey, after hearing him have sex with another woman. + Talk Shows + + + TV14 + + + + Hot Bench + Wedding Ring Repo?!; Bus-Stop Bogus Friendship?! + A woman gives her estranged brother-in-law her wedding rings as collateral on personal loans; people who met at a bus stop reconnect months later to fight over disposed luggage and $50. + Reality TV + Legal + + + TVG + + + + Hot Bench + Love Triangle Tragedy!; Sugar Mamma Payback?! + A man's baby mama and fiancee fight over unpaid rent; a man says his ex-girlfriend bullied him for repayment of a loan. + Reality TV + Legal + + + TVG + + + + Personal Injury Court + Morgan vs. Jolly + A utility worker seeks $505,000 in damages after being hit by a religious grandmother. + Reality TV + Legal + + + TV14 + + + + Personal Injury Court + Betts vs. Kim + A cookie baker takes a slide on the ice and sues for $600,000 for injuries. + Reality TV + Legal + + + TV14 + + + + Couples Court With the Cutlers + Shippy vs. Green + A Georgia woman says there won't be any wedding bells ringing if the evidence she's found against her fiancé rings true. + Reality TV + Legal + + + TVPG + + + + Couples Court With the Cutlers + Allen vs. Anderson + A woman says she will end her marriage after a yearlong separation from her serial-cheater husband if it's proven that he hasn't changed. + Reality TV + Legal + + + TVPG + + + + Lauren Lake's Paternity Court + Holman vs. Drumgold/Rich + There's conflict and heated emotion when a woman brings three of her lovers to court to determine which man is the father of her 3-month-old daughter. + Reality TV + Legal + + + TV14 + + + + Lauren Lake's Paternity Court + Holman vs. Drumgold/Rich + There's conflict and heated emotion when a woman brings three of her lovers to court to determine which man is the father of her 3-month-old daughter. + Reality TV + Legal + + + TV14 + + + + Lauren Lake's Paternity Court + Mullins vs. Lamb + After engaging in a threesome, a woman conceives a child but is certain her ex-husband, and not his friend, is the biological father. + Reality TV + Legal + + + TV14 + + + + Lauren Lake's Paternity Court + Woodbury vs. Cage + Reality-television personality Caylea Woodbury hopes to end the tabloids' rumors by proving that her fiancé, and not another man, fathered her son.Guests: Caylea Woodbury.. + Reality TV + Legal + + + TV14 + + + + In the Heat of the Night + Unfinished Business + While in Los Angeles to testify in an organized-crime case, Bubba tries to protect a boy who is the state's key witness. + + Carroll O'Connor + Howard E. Rollins Jr. + Anne-Marie Johnson + + Drama + + + TVPG + + + + In the Heat of the Night + The More Things Change + A woman is the prime suspect in the murder of her father, while a more likely culprit continues an affair with the dead man's wife. + + Carroll O'Connor + Howard E. Rollins Jr. + Anne-Marie Johnson + + Drama + + + TVPG + + + + In the Heat of the Night + Sweet, Sweet Blues + A blues singer (Bobby Short) claims he witnessed the 40-year-old race-motivated slaying of Sweet's grandfather. + + Carroll O'Connor + Howard E. Rollins Jr. + Anne-Marie Johnson + + Drama + + + TVPG + + + + The Contract + A man (John Cusack) and his young son (Jamie Anderson) encounter an assassin (Morgan Freeman) while hiking in a forest. + + Morgan Freeman + John Cusack + Jamie Anderson + + 2006 + Movies + Thriller + + + TVPG + + + 3 + + + + The Last Boy Scout + An ex-Secret Service agent (Bruce Willis) plays private eye with an ex-quarterback (Damon Wayans) on a case of sports gambling and murder. + + Bruce Willis + Damon Wayans + Chelsea Field + + 1991 + Movies + Action + + + TVPG + + + 3 + + + + Vanderpump Rules + Reunion Part 2 + Andy Cohen presses Scheana for details of the altercation that led to Raquel's restraining order; the group debates the origins of the open relationship rumor; Raquel must face the group for the first time since news of the affair became public. + Reality TV + Performing Arts + + + TV14 + + + + Vanderpump Rules + Reunion Part 3 + Raquel faces her former friends; the group revisits the disastrous girls' trip to Las Vegas and Lake Havasu; they discuss Tom Schwartz's alleged role in covering up the affair; Andy questions Sandoval and Raquel about their relationship. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Beverly Hills + The Eaglewoman Has Landed + Dorit hosts the ladies at a retreat; Erika seeks to rebuild her life following her husband's indictment; Garcelle tries to navigate her relationships with her teenage boys; Kyle's new focus on self-care offers a sobering look at her home life. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Beverly Hills + An Unwise Surprise + Erika apologizes for spilling tea about Dorit's marriage, but PK's glitzy anniversary surprise may land him in hot water with his wife; Sutton seeks help from a matchmaker, but soon realizes that finding Mr. Right may be difficult. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Miami + Nuevos Horizontes + Lisa navigates a new relationship while battling through her divorce; Alexia hosts a party in hopes of bringing the group back together, but her husband is MIA; Guerdy receives a devastating health update that will affect her life forever. + Reality TV + + + TV14 + + + + The Real Housewives of Salt Lake City + Moms, Missions, and Matrimony + Tensions escalate as Monica has dinner with her mother; Angie goes to her dad for advice; Lisa focuses on party planning; Whitney meets Mary for dinner. + Reality TV + + + TV14 + + + + The Real Housewives of New York City + Reunion Part 2 + Tensions escalate as Sai opens up about her relationship with her mom; Jessel tries to find closure with Erin and Sai; Ubah sets the record straight about the reason she was so upset with Erin in Anguilla; Brynn reveals personal details about an ex. + Reality TV + Performing Arts + + + TV14 + + + + Southern Charm + Bra-gate + Shep decides the guys need a break from the chaos of Charleston, S.C., so they escape to his family home in the North Carolina mountains; when Rod finds out about a secret rendezvous between Olivia and Austen, all bets are off for a tranquil getaway. + Reality TV + Drama + + + TV14 + + + + Winter House + Loverboys, City Girls, and Yachties - Oh My! + Kyle arranges a ski vacation with friends from all around the globe; a newly single Danielle is ready to move on from heartbreak; Malia and Katie are quickly intrigued by Kory's charm; Kyle drops the bomb that Tom Schwartz will be joining them. + Reality TV + + + TV14 + + + + Winter House + Pirate Ships and Situationships + Kyle rallies the house to brighten Tom's spirit and help him become vibe-worthy again; while Kyle, Casey and Malia hit the slopes, a grocery run becomes a bonding experience for Katie and Tom. + Reality TV + + + TV14 + + + + Married to Medicine + Divine Intervention + Jackie's surprise open marriage discussion has some couples tongue tied, but others lean in; old tensions rise up as Heavenly and Contessa finally say what's on their mind; Toya confronts Quad about the cheating allegations. + Reality TV + Performing Arts + + + TV14 + + + + Married to Medicine + Reunion + Host Andy Cohen reflects on some of the season's biggest moments; Contessa confronts Heavenly before the cameras are even ready; Quad goes to extreme lengths to combat allegations made against her; Heavenly shows a different side of herself. + Reality TV + Performing Arts + + + TV14 + + + + Married to Medicine + Reunion + Toya reveals what was really going on with her this season; Quad and Anila point the finger at each other when it comes to who started the rumors about Toya's affair; the ladies finally confront Heavenly on her behavior. + Reality TV + Performing Arts + + + TV14 + + + + Married to Medicine + Reunion + Kiran and Eugene try to settle the score; Scott surprises everyone, revealing a shocking career move; the women join the stage as Contessa confronts Damon. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Potomac + How They Got Here 2022 + A half-hour special spilling the tea on all the juicy gossip, disagreements and love affairs. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Potomac + Queen vs. Queen + After Mia and Wendy argue, the ladies must decide with whom their loyalty lies; Candiace arrives to find that Wendy has been ostracized from the group but she makes up for it by bringing her to meet rap legend Trina. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Potomac + Ambush in Paradise + Karen and Mia struggle to recover after an explosive confrontation; when Candiace is caught talking trash about the group to the public, Robyn confronts the issue with the help of a special guest; Ashley brings a rumor about Karen to the table. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Potomac + Cleaning Up the Mess + The ladies return to Potomac and get back to business; Gizelle and Robyn prepare for their. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Potomac + Show Time! + When Gizelle and Robyn put on their live podcast, Karen takes shady notes for her own live show; Candiace shoots a music video with rapper Trina; Robyn broaches a tough subject with Juan; Wendy and Eddie deal with an unexpected emergency. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Potomac + Mic Drop + Karen hosts her first-ever live show as the ladies brace themselves for a Grande Dame Experience; Mia and Gordon discuss their relationship with Jacqueline. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Potomac + Sisterhood of the Traveling Beefs + Gizelle receives some serious news from her doctor; Robyn is adamant about keeping some guests off the list while planning her wedding. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Potomac + Shake-Ups and Makeups + Karen reveals the reason she stopped being friends with Charrisse and the ladies question her version of the truth; Mia does something that causes her and Jacqueline's friendship to hang in the balance. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Potomac + Indecent Disclosure + Karen questions the validity of Robyn's upcoming nuptials and brings up alleged rumors about Juan; Robyn shares a suspicious photo with the ladies; Mia reaches her breaking point with Jacqueline but attempts to repair her friendship with Wendy. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Potomac + The Naked Truth + After returning from vacation, the ladies discover that what happens in Mexico doesn't always stay in Mexico; Ashley spills the beans about Mia and Wendy's interesting exchange; Charrisse shares a story about Karen that leaves the ladies shocked. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Potomac + A Grande Finale + Ashley lands her dream home with a little help; Robyn makes an unexpected change to her wedding plans; Gizelle reveals her health diagnosis; Karen and Charrisse have a showdown at Candiace's music video reveal party; Mia confronts Karen. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Potomac + Reunion Part 1 + Ashley reveals the reason behind her recent breakup with Luke and what she is set to gain from her divorce settlement with Michael; Mia discloses how she and Gordon lost control of their businesses and updates the group on their financial status. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Potomac + Reunion Part 2 + The rift between Candiace and Gizelle continues as they address Gizelle's allegations against Chris; Gizelle opens up about her recent surgery and dating a younger man, but the ladies question her willingness to share information about her life. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Potomac + Reunion Part 3 + Ashley and Candiace discuss what led to the dissolution of their once burgeoning friendship; the husbands join and Chris confronts Gizelle about the accusations she made against him; Karen faces off against Charrisse and sets the record straight. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Potomac + Projections and Deflections + Gizelle has a new love interest, Ashley has a new house and Mia has a new lifestyle; rumors of Juan's alleged infidelity return, but he stands firm on his innocence; with Robyn remaining by his side, Gizelle has no choice but to confront her BFF. + Reality TV + Performing Arts + + + TV14 + + + + Married to Medicine + Southern Sweet Tea + Dr. Jackie and Dr. Heavenly bond over shopping at their friend Miss Phaedra Parks' store; Dr. Simone and Toya catch up and speculate on where Quad has been, but there's a new sheriff in town - Lateasha, best known as Sweet Tea, Dr. G's new fiancée. + Reality TV + Performing Arts + + + TV14 + + + + Married to Medicine + Southern Sweet Tea + Dr. Jackie and Dr. Heavenly bond over shopping at their friend Miss Phaedra Parks' store; Dr. Simone and Toya catch up and speculate on where Quad has been, but there's a new sheriff in town - Lateasha, best known as Sweet Tea, Dr. G's new fiancée. + Reality TV + Performing Arts + + + TV14 + + + + BravoCon Live With Andy Cohen + The Bravos + A night of glitz and glamor honoring Bravo's iconic stars with awards. + Reality TV + + + + BravoCon Live With Andy Cohen + The Bravos + A night of glitz and glamor honoring Bravo's iconic stars with awards. + Reality TV + + + + The Real Housewives of Potomac + Projections and Deflections + Gizelle has a new love interest, Ashley has a new house and Mia has a new lifestyle; rumors of Juan's alleged infidelity return, but he stands firm on his innocence; with Robyn remaining by his side, Gizelle has no choice but to confront her BFF. + Reality TV + Performing Arts + + + TV14 + + + + Married to Medicine + Southern Sweet Tea + Dr. Jackie and Dr. Heavenly bond over shopping at their friend Miss Phaedra Parks' store; Dr. Simone and Toya catch up and speculate on where Quad has been, but there's a new sheriff in town - Lateasha, best known as Sweet Tea, Dr. G's new fiancée. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Beverly Hills + An Unwise Surprise + Erika apologizes for spilling tea about Dorit's marriage, but PK's glitzy anniversary surprise may land him in hot water with his wife; Sutton seeks help from a matchmaker, but soon realizes that finding Mr. Right may be difficult. + Reality TV + Performing Arts + + + TV14 + + + + Watch What Happens Live With Andy Cohen + BravoCon: Andy's Mystery Door + A show full of surprises for the fans, where different Bravolebrities appear at the door through the course of the show. + Talk Shows + Comedy + + + TV14 + + + + The Kelly Clarkson Show + Kellyoke:Guests: Meg Ryan, David Duchovny, Kat Graham.. + Talk Shows + Variety + + + TVPG + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + Paid Program + + + TV14 + + + + Cindy Crawford and Ellen Pompeo share secrets + Join Cindy Crawford and Ellen Pompeo as they discuss their busy lives and the breakthrough skin care discovery that keeps them looking their best. Take a trip to the stunning French countryside to see a rare French melon that defies aging. + Paid Program + + + + The Real Housewives of Potomac + Projections and Deflections + Gizelle has a new love interest, Ashley has a new house and Mia has a new lifestyle; rumors of Juan's alleged infidelity return, but he stands firm on his innocence; with Robyn remaining by his side, Gizelle has no choice but to confront her BFF. + Reality TV + Performing Arts + + + TV14 + + + + Married to Medicine + Southern Sweet Tea + Dr. Jackie and Dr. Heavenly bond over shopping at their friend Miss Phaedra Parks' store; Dr. Simone and Toya catch up and speculate on where Quad has been, but there's a new sheriff in town - Lateasha, best known as Sweet Tea, Dr. G's new fiancée. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Miami + Nuevos Horizontes + Lisa navigates a new relationship while battling through her divorce; Alexia hosts a party in hopes of bringing the group back together, but her husband is MIA; Guerdy receives a devastating health update that will affect her life forever. + Reality TV + + + TV14 + + + + Vanderpump Rules + See You Next Tuesday + Ariana's role in releasing Jax's scandalous audio recording leads to a fight with Sandoval; Scheana and Katie declare a truce; at SUR, James hustles to make sure his first DJ event is a success; Lala bonds with Billie, the new hostess. + Reality TV + Performing Arts + + + TV14 + + + + Vanderpump Rules + It's Not About the Pasta + Scheana spirals out of control when she suspects Rob is pulling away; Stassi assists in dressing the staff for SUR's annual Gay Pride celebration; James erupts after Lala insults his girlfriend; Jax turns to an unlikely form of therapy. + Reality TV + Performing Arts + + + TV14 + + + + Vanderpump Rules + Best Mates + Kristen tests Jax's patience when she flies out Brittany's mother for a visit; Lala schemes to repair Scheana and Katie's friendship; Lisa rewards Peter for years of loyal service; a salacious rumor about James and his best friend makes the rounds. + Reality TV + Performing Arts + + + TV14 + + + + Vanderpump Rules + Call Me Jason + Stassi helps organize a party to honor Lisa Vanderpump's new role at Beverly Hills Lifestyle magazine; Schwartz's triplet brothers come for a visit and a Tom Sandoval makeover; Katie becomes the victim of body-shaming comments. + Reality TV + Performing Arts + + + TV14 + + + + Vanderpump Rules + Screams and Queens + Ariana shines as the belle of the ball, while an embarrassed Stassi runs off in tears; Schwartz and Sandoval celebrate the approval of TomTom's permits by writing hefty checks; Sandoval and Ariana work through their intimacy issues. + Reality TV + Performing Arts + + + TV14 + + + + Vanderpump Rules + It's All Happening + Lisa channels all her energy into restoring SUR after the devastating fire; Stassi consults a tarot card reader about her future with Patrick; James makes a startling admission about his feelings for Lala; Jax feels left behind. + Reality TV + Performing Arts + + + TV14 + + + + Vanderpump Rules + Wishful Sinking + Jax cheats death when an attempt to show off goes horribly wrong; Raquel questions whether James still harbors romantic feelings for Lala; Ariana gets upset when Sandoval does not invite her on a business trip; Stassi interviews Lisa for her podcast. + Reality TV + Performing Arts + + + TV14 + + + + Vanderpump Rules + Vegas! Baby? + Lisa takes Sandoval and Schwartz on a business trip to Las Vegas to design their new bar, but the guys focus more on partying than professionalism; Brittany tells Katie and Ariana she needs to take a pregnancy test. + Reality TV + Performing Arts + + + TV14 + + + + Vanderpump Rules + Watch Your Back + Jax shows his lack of maturity when confronted with a reminder of his infidelity; Scheana sets Brittany up with SUR's hottest new bartender; Ariana's brother asks out new SUR hostess Billie Lee; James has an emotional reunion with his father. + Reality TV + Performing Arts + + + TV14 + + + + BravoCon Live With Andy Cohen + The Bravos + A night of glitz and glamor honoring Bravo's iconic stars with awards. + Reality TV + + + + Below Deck Mediterranean + Max Tension + A deckhand's questionable work ethic gets on the rest of the team's nerves; two stews hope to bury the hatchet for the sake of crew morale; past charter guests arrive with a new baby and a lot of energy; things get heated between two deckhands. + Reality TV + Travel + + + TV14 + + + + Below Deck Mediterranean + Never Before Scene 806 + Bonus footage, extended scenes and never-before-seen content. + Reality TV + Travel + + + TV14 + + + + Below Deck Mediterranean + Tightly Unwound + Some of the crew takes notice of a group of attractive young women chartering the yacht; a miscommunication between the chief stewardess and the interior department leaves them uncertain; Capt. Sandy has an accident. + Reality TV + Travel + + + TV14 + + + + BravoCon Live With Andy Cohen + Dynamic Duos + The titillating twosomes from the Bravo universe sit down with Andy Cohen. + Reality TV + + + + Below Deck Mediterranean + Tightly Unwound + Some of the crew takes notice of a group of attractive young women chartering the yacht; a miscommunication between the chief stewardess and the interior department leaves them uncertain; Capt. Sandy has an accident. + Reality TV + Travel + + + TV14 + + + + BravoCon Live With Andy Cohen + Dynamic Duos + The titillating twosomes from the Bravo universe sit down with Andy Cohen. + Reality TV + + + + The Real Housewives of Miami + Nuevos Horizontes + Lisa navigates a new relationship while battling through her divorce; Alexia hosts a party in hopes of bringing the group back together, but her husband is MIA; Guerdy receives a devastating health update that will affect her life forever. + Reality TV + + + TV14 + + + + The Real Housewives of Potomac + Projections and Deflections + Gizelle has a new love interest, Ashley has a new house and Mia has a new lifestyle; rumors of Juan's alleged infidelity return, but he stands firm on his innocence; with Robyn remaining by his side, Gizelle has no choice but to confront her BFF. + Reality TV + Performing Arts + + + TV14 + + + + Married to Medicine + Southern Sweet Tea + Dr. Jackie and Dr. Heavenly bond over shopping at their friend Miss Phaedra Parks' store; Dr. Simone and Toya catch up and speculate on where Quad has been, but there's a new sheriff in town - Lateasha, best known as Sweet Tea, Dr. G's new fiancée. + Reality TV + Performing Arts + + + TV14 + + + + Married to Medicine + Viva Las Vegas! + As the fun continues in Vegas, the ladies play a game where Toya reveals a secret; Audra calls out Toya for questioning her skills as an attorney; the dispute between Contessa and Heavenly rears its ugly head; Toya faces her greatest fears. + Reality TV + Performing Arts + + + TV14 + + + + The Kelly Clarkson Show + Kellyoke:Guests: Jenna Bush Hager, Barbara Pierce Bush, Cailee Spaeny, Danielle Kartes.. + Talk Shows + Variety + + + TVPG + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + BravoCon Live With Andy Cohen + The Bravos + A night of glitz and glamor honoring Bravo's iconic stars with awards. + Reality TV + + + + Below Deck Mediterranean + The Italian Job + Capt. Sandy embarks on a new charter season on the beautiful waters of the Italian Riviera; two of her stews have unprecedented issues getting to the yacht; the deck team faces unforeseen obstacles; Capt. Sandy has to make a difficult decision. + Reality TV + Travel + + + TV14 + + + + Below Deck Mediterranean + Two Many Cooks + A deckhand steps up after a surprise incident; the crew is challenged by seasick guests, which leads to an impromptu excursion to Portofino; Natalya attempts to keep the interior team afloat before she meets her new chief stew for the first time. + Reality TV + Travel + + + TV14 + + + + Below Deck Mediterranean + We've Only Just Begun + Tumi and Natalya grapple with differences in management styles; Kyle and a new deckhand join the crew on board; the interior team scrambles to keep everyone happy; Tumi and chef Jack have trouble with communication. + Reality TV + Travel + + + TV14 + + + + Below Deck Mediterranean + Take It to the Bridge + A stew is torn between their open relationship and a growing onboard flirtation; the deck team's communication is strained during a rough docking; the rivalry amongst stews spills into the workplace, and Capt. Sandy is forced to intervene. + Reality TV + Travel + + + TV14 + + + + Below Deck Mediterranean + Max Tension + A deckhand's questionable work ethic gets on the rest of the team's nerves; two stews hope to bury the hatchet for the sake of crew morale; past charter guests arrive with a new baby and a lot of energy; things get heated between two deckhands. + Reality TV + Travel + + + TV14 + + + + Below Deck Mediterranean + Pirate's Booty Call + The crew orchestrates an intricate pirate-themed day for charter guests; a tense docking tests the deck crew; crew members kiss. + Reality TV + Travel + + + TV14 + + + + Below Deck Mediterranean + Tightly Unwound + Some of the crew takes notice of a group of attractive young women chartering the yacht; a miscommunication between the chief stewardess and the interior department leaves them uncertain; Capt. Sandy has an accident. + Reality TV + Travel + + + TV14 + + + + Winter House + Loverboys, City Girls, and Yachties - Oh My! + Kyle arranges a ski vacation with friends from all around the globe; a newly single Danielle is ready to move on from heartbreak; Malia and Katie are quickly intrigued by Kory's charm; Kyle drops the bomb that Tom Schwartz will be joining them. + Reality TV + + + TV14 + + + + Winter House + Pirate Ships and Situationships + Kyle rallies the house to brighten Tom's spirit and help him become vibe-worthy again; while Kyle, Casey and Malia hit the slopes, a grocery run becomes a bonding experience for Katie and Tom. + Reality TV + + + TV14 + + + + The Real Housewives of Salt Lake City + The Nastiness and Rumors + Heather talks to her daughters about the effect her book has had on them; Whitney and Justin struggle with their changing roles now that Justin is back at work; Lisa hosts an event and confronts Monica. + Reality TV + + + TV14 + + + + The Real Housewives of Salt Lake City + Après Rumor + The rumor about Angie's marriage has a ripple effect in the group; Meredith finds comfort in her family after a traumatic incident on the road; old issues between Lisa and Heather resurface; Monica's parenting is called into question by her mother. + Reality TV + + + TV14 + + + + The Real Housewives of Salt Lake City + An Olive Branch With Thorns + Mary's son's relationship status is revealed; Meredith retreats from the group; Heather confronts Lisa about Jack's mission; Angie tries to get clarification about the rumors, but things go awry when Monica's mom intervenes at Angie's Easter party. + Reality TV + + + TV14 + + + + The Real Housewives of Salt Lake City + Moms, Missions, and Matrimony + Tensions escalate as Monica has dinner with her mother; Angie goes to her dad for advice; Lisa focuses on party planning; Whitney meets Mary for dinner. + Reality TV + + + TV14 + + + + The Real Housewives of Salt Lake City + Don't Come for My Sound Bath + After Angie and Monica reconcile, Angie gets caught in the middle of Lisa and Monica's feud; Whitney juggles parenthood and career by throwing two parties in one weekend; Heather tries to come to an understanding with Lisa. + Reality TV + + + TV14 + + + + Winter House + Exes and Oohs + Tom hosts an ex-hour cocktail game where the group makes drinks that represent their exes; Danielle's mojo seems to have returned after a steamy hot tub makeout; Jordan feels empowered by the other women in the house to shoot her shot on her crush. + Reality TV + + + TV14 + + + + Winter House + Exes and Oohs + Tom hosts an ex-hour cocktail game where the group makes drinks that represent their exes; Danielle's mojo seems to have returned after a steamy hot tub makeout; Jordan feels empowered by the other women in the house to shoot her shot on her crush. + Reality TV + + + TV14 + + + + BravoCon Live With Andy Cohen + Bravo's Showgirls + Bringing together all the favorite Bravolebs that are the life of the party; the girls are the straws that stir the drink and always have a great night. + Reality TV + + + + The Real Housewives of Salt Lake City + Don't Come for My Sound Bath + After Angie and Monica reconcile, Angie gets caught in the middle of Lisa and Monica's feud; Whitney juggles parenthood and career by throwing two parties in one weekend; Heather tries to come to an understanding with Lisa. + Reality TV + + + TV14 + + + + BravoCon Live With Andy Cohen + Bravo's Showgirls + Bringing together all the favorite Bravolebs that are the life of the party; the girls are the straws that stir the drink and always have a great night. + Reality TV + + + + E! News + BravoCon + Interviews with Usher and Martha Stewart; Chrishell Stause joins live in studio. + Talk Shows + News + + + + BravoCon Live With Andy Cohen + The Bravos + A night of glitz and glamor honoring Bravo's iconic stars with awards. + Reality TV + + + + The Real Housewives of Beverly Hills + A Book, a Bachelorette and a Breakdown + Pandora has her bachelorette party in Las Vegas. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Beverly Hills + Uninvited + The women debate turning Taylor away from Kyle's white party after her husband threatens Camille with a lawsuit. + Reality TV + Performing Arts + + + TV14 + + + + The Kelly Clarkson Show + Kellyoke:. + Talk Shows + Variety + + + TVPG + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + BravoCon Live With Andy Cohen + Dynamic Duos + The titillating twosomes from the Bravo universe sit down with Andy Cohen. + Reality TV + + + + BravoCon Live With Andy Cohen + Bravo's Showgirls + Bringing together all the favorite Bravolebs that are the life of the party; the girls are the straws that stir the drink and always have a great night. + Reality TV + + + + The Real Housewives of Beverly Hills + Backed Into a Corner + Tensions run high at Mauricio's party in Mexico, as Kyle demands to know exactly what Lisa Rinna said about her sister, Kim; Erika advises Lisa Rinna to come clean with Kyle; the Mexico trip wraps up with a wild boat ride and a dance to remember. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Beverly Hills + Feeding a Need + Lisa Rinna confronts Eden over the. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Beverly Hills + Cake Therapy + Erika rehearses for her soap opera role with Eileen; Lisa Vanderpump and Ken visit their new dog rescue center; Kyle throws a cake tasting for singer Carnie Wilson; Lisa Rinna makes a startling -- and public -- confession to Kim. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Beverly Hills + Sweet Georgia Jayne + Kyle hosts a party at her store where Lisa Vanderpump's invitations to Hong Kong get out of hand; the women gather at Villa Rosa for lunch; Erika flies back home to Georgia to see her mother and reconnect with her roots. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Beverly Hills + Hong Kong Fireworks + The women set off for Hong Kong where Lisa Vanderpump continues her efforts to stop animal cruelty; Erika confides in Kyle about visiting her mother in Georgia; aboard a historic junk boat, old conflicts explode between Dorit, Lisa Rinna and Erika. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Beverly Hills + Big Buddha Brawl + Tensions between Dorit and Erika continue to rock the boat in Hong Kong; Lisa Rinna and Eileen pick a side while Lisa Vanderpump and Kyle watch in shock; the women visit the second largest Buddha. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Beverly Hills + From Dogs to Diamonds + Still in Hong Kong, Lisa Rinna defends her accusations; the women visit an animal shelter; back in Beverly Hills, Erika shoots her scenes for. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Beverly Hills + Diamonds Under Pressure + Lisa Rinna and Erika's issues with Dorit escape at Lisa Vanderpump's Diamonds and Rosé party, which is filled with fabulous food and glittering ponies; Dorit's husband joins the fray and Eden unleashes a tirade on Lisa Rinna. + Reality TV + Performing Arts + + + TV14 + + + + The Real Housewives of Beverly Hills + Don't Cry Over Spilled Wine + Kyle and Lisa Vanderpump charter a private jet to take the ladies to Las Vegas for a group birthday celebration; Dorit's new friend hits it off with Lisa Vanderpump over drinks; familiar faces Adrienne Maloof and Camille Grammar join the festivities. + Reality TV + Performing Arts + + + TV14 + + + + To Tell the Truth + Celebrity panelists quiz three contestants to identify the imposters. + Game Shows + + + + To Tell the Truth + Celebrity panelists quiz three contestants to identify the imposters. + Game Shows + + + + The Newlywed Game + Newly married couples compete for prizes. + Game Shows + + + TVPG + + + + The Newlywed Game + Newly married couples compete for prizes. + Game Shows + + + TVPG + + + + The Newlywed Game + Newly married couples compete for prizes. + Game Shows + + + TVPG + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + TVG + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + TVG + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Match Game PM + Contestants try to match celebrity answers. + Game Shows + + + TVPG + + + + Password Plus + Two teams consisting of a celebrity guest and a contestant guess words from clues.Guests: Elaine Joyce, Scoey Mitchell.. + Game Shows + + + TVG + + + + Password Plus + Two teams consisting of a celebrity guest and a contestant guess words from clues.Guests: Elaine Joyce, Scoey Mitchell.. + Game Shows + + + TVG + + + + Super Password + Passwords are clues to theGuests: Marsha Warfield, Tom Poston.. + Game Shows + + + TVG + + + + Super Password + Passwords are clues to theGuests: Marsha Warfield, Tom Poston.. + Game Shows + + + TVG + + + + Press Your Luck + Contestants compete to earn spins on the. + Game Shows + + + TVG + + + + Press Your Luck + Contestants compete to earn spins on the. + Game Shows + + + TVG + + + + Blockbusters + A question-and-answer game pits two players or teams against a single player in a race to connect boxes from one side of the Blockbuster game board to the other. + Game Shows + + + TVG + + + + Blockbusters + A question-and-answer game pits two players or teams against a single player in a race to connect boxes from one side of the Blockbuster game board to the other. + Game Shows + + + TVG + + + + Blockbusters + A question-and-answer game pits two players or teams against a single player in a race to connect boxes from one side of the Blockbuster game board to the other. + Game Shows + + + TVG + + + + Blockbusters + A question-and-answer game pits two players or teams against a single player in a race to connect boxes from one side of the Blockbuster game board to the other. + Game Shows + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Honoring America's Heroes + Trace Adkins and Wounded Warrior Dan Nevins share the inspiring journeys of four injured veterans and their families. Find out how you can join Wounded Warrior Project in serving those who have sacrificed so much for us. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Tomorrow's World + Tomorrow's World helps in understanding the world through the pages of the Bible. + Paid Program + Religious + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Wild America + The Bill Makes the Bird + Different birds utilize their specialized beaks accordingly. + Animals + Instructional + + + TVG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVG + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + TVG + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + TVG + + + + Temptation + Contestants earn cash by answering a series of questions about pop culture and current events. + Game Shows + + + TVPG + + + + Temptation + Contestants earn cash by answering a series of questions about pop culture and current events. + Game Shows + + + TVPG + + + + Sale of the Century + Three contestants compete in a rapid fire question & answer game, with players offered a chance to spend their accumulated bankroll to buy instant bargains of merchandise. + Game Shows + + + TVG + + + + Sale of the Century + Three contestants compete in a rapid fire question & answer game, with players offered a chance to spend their accumulated bankroll to buy instant bargains of merchandise. + Game Shows + + + TVG + + + + Press Your Luck + Contestants compete to earn spins on the. + Game Shows + + + TVG + + + + Press Your Luck + Contestants compete to earn spins on the. + Game Shows + + + TVG + + + + Super Password + Passwords are clues to theGuests: Marsha Warfield, Tom Poston.. + Game Shows + + + TVG + + + + Super Password + Passwords are clues to theGuests: Marsha Warfield, Tom Poston.. + Game Shows + + + TVG + + + + Match Game PM + Contestants try to match celebrity answers. + Game Shows + + + TVPG + + + + Match Game PM + Contestants try to match celebrity answers. + Game Shows + + + TVPG + + + + Match Game Hollywood Squares Hour + Contestants compete to win cash prizes in a mash-up of two game show formats, first by trying to match celebrities' answers to fill-in-the-blank questions and then by choosing to either agree or disagree with celebrities' answers to trivia questions. + Game Shows + + + + Tattletales + Celebrity couples answer questions to win money for the audience. + Game Shows + + + TVPG + + + + Tattletales + Celebrity couples answer questions to win money for the audience. + Game Shows + + + TVPG + + + + To Tell the Truth + Celebrity panelists quiz three contestants to identify the imposters. + Game Shows + + + + To Tell the Truth + Celebrity panelists quiz three contestants to identify the imposters. + Game Shows + + + + The Newlywed Game + Newly married couples compete for prizes. + Game Shows + + + TVPG + + + + The Newlywed Game + Newly married couples compete for prizes. + Game Shows + + + TVPG + + + + The Newlywed Game + Newly married couples compete for prizes. + Game Shows + + + TVPG + + + + The Newlywed Game + Newly married couples compete for prizes. + Game Shows + + + TVPG + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Password Plus + Guests: Peggy Cass, Bill Cullen.Guests: Peggy Cass, Bill Cullen.. + Game Shows + + + TVG + + + + Password Plus + Guests: Peggy Cass, Bill Cullen.Guests: Peggy Cass, Bill Cullen.. + Game Shows + + + TVG + + + + Super Password + Passwords are clues to theGuests: Marsha Warfield, Tom Poston.. + Game Shows + + + TVG + + + + Super Password + Passwords are clues to theGuests: Marsha Warfield, Tom Poston.. + Game Shows + + + TVG + + + + Press Your Luck + Contestants compete to earn spins on the. + Game Shows + + + TVG + + + + Press Your Luck + Contestants compete to earn spins on the. + Game Shows + + + TVG + + + + Blockbusters + A question-and-answer game pits two players or teams against a single player in a race to connect boxes from one side of the Blockbuster game board to the other. + Game Shows + + + TVG + + + + Blockbusters + A question-and-answer game pits two players or teams against a single player in a race to connect boxes from one side of the Blockbuster game board to the other. + Game Shows + + + TVG + + + + Supermarket Sweep + Teams answer questions to earn time and advantages over their competitors before going on a supermarket shopping spree; the team that adds the most valuable items to its cart wins. + Game Shows + + + + Supermarket Sweep + Teams answer questions to earn time and advantages over their competitors before going on a supermarket shopping spree; the team that adds the most valuable items to its cart wins. + Game Shows + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigate Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Through the Bible With Les Feldick + Religious programming. + Religious + + + TVG + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVG + + + + Card Sharks + Contestants vie for money and prizes with playing cards. + Game Shows + + + + Card Sharks + Contestants vie for money and prizes with playing cards. + Game Shows + + + + Match Game + Contestants try to match celebrity answers. + Game Shows + + + TVPG + + + + Match Game + Contestants try to match celebrity answers. + Game Shows + + + TVPG + + + + Tattletales + Celebrity couples answer questions to win money for the audience. + Game Shows + + + TVPG + + + + Tattletales + Celebrity couples answer questions to win money for the audience. + Game Shows + + + TVPG + + + + Password Plus + Two teams consisting of a celebrity guest and a contestant guess words from clues.Guests: Elaine Joyce, Scoey Mitchell.. + Game Shows + + + TVG + + + + Password Plus + Two teams consisting of a celebrity guest and a contestant guess words from clues.Guests: Elaine Joyce, Scoey Mitchell.. + Game Shows + + + TVG + + + + Super Password + Passwords are clues to theGuests: Marsha Warfield, Tom Poston.. + Game Shows + + + TVG + + + + Super Password + Passwords are clues to theGuests: Marsha Warfield, Tom Poston.. + Game Shows + + + TVG + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Match Game PM + Contestants try to match celebrity answers. + Game Shows + + + TVPG + + + + Match Game PM + Contestants try to match celebrity answers. + Game Shows + + + TVPG + + + + Match Game + Contestants try to match celebrity answers. + Game Shows + + + TVPG + + + + Match Game + Contestants try to match celebrity answers. + Game Shows + + + TVPG + + + + To Tell the Truth + Celebrity panelists quiz three contestants to identify the imposters. + Game Shows + + + + To Tell the Truth + Celebrity panelists quiz three contestants to identify the imposters. + Game Shows + + + + The Newlywed Game + Game Shows + + + + The Newlywed Game + Game Shows + + + + The Newlywed Game + Game Shows + + + + The Newlywed Game + Game Shows + + + + Let's Make a Deal + Costumed contestants compete for prizes. + Game Shows + + + TVG + + + + Let's Make a Deal + Costumed contestants compete for prizes. + Game Shows + + + TVG + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Password Plus + Two teams consisting of a celebrity guest and a contestant guess words from clues.Guests: Elaine Joyce, Scoey Mitchell.. + Game Shows + + + TVG + + + + Password Plus + Two teams consisting of a celebrity guest and a contestant guess words from clues.Guests: Elaine Joyce, Scoey Mitchell.. + Game Shows + + + TVG + + + + Super Password + Passwords are clues to theGuests: Marsha Warfield, Tom Poston.. + Game Shows + + + TVG + + + + Super Password + Passwords are clues to theGuests: Marsha Warfield, Tom Poston.. + Game Shows + + + TVG + + + + Match Game Hollywood Squares Hour + Contestants compete to win cash prizes in a mash-up of two game show formats, first by trying to match celebrities' answers to fill-in-the-blank questions and then by choosing to either agree or disagree with celebrities' answers to trivia questions. + Game Shows + + + + To Tell the Truth + Celebrity panelists quiz three contestants to identify the imposters. + Game Shows + + + TVG + + + + What's My Line? + A long-running panel show in which a celebrity panel questions members of the public to try to guess their jobs. + Game Shows + + + TVG + + + + I've Got a Secret + Panelists try to guess a contestant's secret. + Game Shows + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Through the Bible With Les Feldick + Religious programming. + Religious + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVG + + + + Card Sharks + Contestants vie for money and prizes with playing cards. + Game Shows + + + + Card Sharks + Contestants vie for money and prizes with playing cards. + Game Shows + + + + Match Game + Contestants try to match celebrity answers. + Game Shows + + + TVPG + + + + Match Game + Contestants try to match celebrity answers. + Game Shows + + + TVPG + + + + Tattletales + Celebrity couples answer questions to win money for the audience. + Game Shows + + + TVPG + + + + Tattletales + Celebrity couples answer questions to win money for the audience. + Game Shows + + + TVPG + + + + Password Plus + Two teams consisting of a celebrity guest and a contestant guess words from clues.Guests: Elaine Joyce, Scoey Mitchell.. + Game Shows + + + TVG + + + + Password Plus + Two teams consisting of a celebrity guest and a contestant guess words from clues.Guests: Elaine Joyce, Scoey Mitchell.. + Game Shows + + + TVG + + + + Super Password + Passwords are clues to theGuests: Marsha Warfield, Tom Poston.. + Game Shows + + + TVG + + + + Super Password + Passwords are clues to theGuests: Marsha Warfield, Tom Poston.. + Game Shows + + + TVG + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Match Game PM + Contestants try to match celebrity answers. + Game Shows + + + TVPG + + + + Match Game PM + Contestants try to match celebrity answers. + Game Shows + + + TVPG + + + + Match Game + Contestants try to match celebrity answers. + Game Shows + + + TVPG + + + + Match Game + Contestants try to match celebrity answers. + Game Shows + + + TVPG + + + + To Tell the Truth + Celebrity panelists quiz three contestants to identify the imposters. + Game Shows + + + + To Tell the Truth + Celebrity panelists quiz three contestants to identify the imposters. + Game Shows + + + + The Newlywed Game + Game Shows + + + + The Newlywed Game + Game Shows + + + + The Newlywed Game + Game Shows + + + + The Newlywed Game + Game Shows + + + + Let's Make a Deal + Costumed contestants compete for prizes. + Game Shows + + + TVG + + + + Let's Make a Deal + Costumed contestants compete for prizes. + Game Shows + + + TVG + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Password Plus + Two teams consisting of a celebrity guest and a contestant guess words from clues.Guests: Elaine Joyce, Scoey Mitchell.. + Game Shows + + + TVG + + + + Password Plus + Two teams consisting of a celebrity guest and a contestant guess words from clues.Guests: Elaine Joyce, Scoey Mitchell.. + Game Shows + + + TVG + + + + Super Password + Passwords are clues to theGuests: Marsha Warfield, Tom Poston.. + Game Shows + + + TVG + + + + Super Password + Passwords are clues to theGuests: Marsha Warfield, Tom Poston.. + Game Shows + + + TVG + + + + Match Game Hollywood Squares Hour + Contestants compete to win cash prizes in a mash-up of two game show formats, first by trying to match celebrities' answers to fill-in-the-blank questions and then by choosing to either agree or disagree with celebrities' answers to trivia questions. + Game Shows + + + + To Tell the Truth + Celebrity panelists quiz three contestants to identify the imposters. + Game Shows + + + TVG + + + + What's My Line? + A long-running panel show in which a celebrity panel questions members of the public to try to guess their jobs. + Game Shows + + + TVG + + + + I've Got a Secret + Panelists try to guess a contestant's secret. + Game Shows + + + TVG + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + Through the Bible With Les Feldick + Religious programming. + Religious + + + TVG + + + + Lung Cancer From Asbestos? + Have you or a loved one been diagnosed with lung cancer? You may be entitled to compensation! + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVG + + + + Card Sharks + Contestants vie for money and prizes with playing cards. + Game Shows + + + + Card Sharks + Contestants vie for money and prizes with playing cards. + Game Shows + + + + Match Game + Contestants try to match celebrity answers. + Game Shows + + + TVPG + + + + Match Game + Contestants try to match celebrity answers. + Game Shows + + + TVPG + + + + Tattletales + Celebrity couples answer questions to win money for the audience. + Game Shows + + + TVPG + + + + Tattletales + Celebrity couples answer questions to win money for the audience. + Game Shows + + + TVPG + + + + Password Plus + Two teams consisting of a celebrity guest and a contestant guess words from clues.Guests: Elaine Joyce, Scoey Mitchell.. + Game Shows + + + TVG + + + + Password Plus + Two teams consisting of a celebrity guest and a contestant guess words from clues.Guests: Elaine Joyce, Scoey Mitchell.. + Game Shows + + + TVG + + + + Super Password + Passwords are clues to theGuests: Marsha Warfield, Tom Poston.. + Game Shows + + + TVG + + + + Super Password + Passwords are clues to theGuests: Marsha Warfield, Tom Poston.. + Game Shows + + + TVG + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Classic Concentration + Two contestants match prizes in order to uncover and solve a picture puzzle for the chance to win a car in the. + Game Shows + + + + Match Game PM + Contestants try to match celebrity answers. + Game Shows + + + TVPG + + + + Match Game PM + Contestants try to match celebrity answers. + Game Shows + + + TVPG + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + Washington This Week + Capitol Hill hearings, speeches from policy makers and political coverage from around the country. + Political + + + + Washington This Week + Capitol Hill hearings, speeches from policy makers and political coverage from around the country. + Political + + + + Books That Shaped America + My Antonia + History + + + + Prime Minister's Questions + The British Prime Minister answers questions from members of Parliament in the House of Commons. + Political + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + Books That Shaped America + My Antonia + History + + + + Prime Minister's Questions + The British Prime Minister answers questions from members of Parliament in the House of Commons. + Political + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + Washington Journal + A forum for leading journalists and public policy makers to discuss key events and legislation. + Talk Shows + News Magazine + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + U.S. House of Representatives + Live gavel-to-gavel coverage of the U.S. House of Representatives from the Capitol Building in Washington, D.C. + Political + + + + Books That Shaped America + Their Eyes Were Watching God + History + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + Books That Shaped America + Their Eyes Were Watching God + History + + + + Books That Shaped America + Their Eyes Were Watching God + History + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + Washington Journal + A forum for leading journalists and public policy makers to discuss key events and legislation. + Talk Shows + News Magazine + + + + U.S. House of Representatives + Live gavel-to-gavel coverage of the U.S. House of Representatives from the Capitol Building in Washington, D.C. + Political + + + + U.S. House of Representatives + Live gavel-to-gavel coverage of the U.S. House of Representatives from the Capitol Building in Washington, D.C. + Political + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + Washington Journal + A forum for leading journalists and public policy makers to discuss key events and legislation. + Talk Shows + News Magazine + + + + U.S. House of Representatives + Live gavel-to-gavel coverage of the U.S. House of Representatives from the Capitol Building in Washington, D.C. + Political + + + + U.S. House of Representatives + Live gavel-to-gavel coverage of the U.S. House of Representatives from the Capitol Building in Washington, D.C. + Political + + + + Lectures in History + Abraham Lincoln & Emancipation + Virginia Tech professor Paul Quigley discusses President Abraham Lincoln's shifting policies on emancipation during the Civil War. + History + Instructional + + + TVG + + + + Reel America + 1972 Shirley Chisholm Presidential Campaign Announcement + Rep. Shirley Chisholm (D-N.Y.) announces her bid for the Democratic presidential nomination in 1972; she is the first woman and first African American to seek a major party's presidential nomination. + History + Documentary + + + + The Presidency + C.W. Goodyear, President Garfield + Historian C.W. Goodyear talks about his biography of President James Garfield, the first full-length look at the 20th president's life in a generation; he speaks at the James A. Garfield National Historic Site in Mentor, Ohio. + History + Political + + + + Reel America + Environmental Protection Agency History, 1970-1985 + In 1985, the Environmental Protection Agency creates a film documenting the rationale for its creation by the Nixon administration in 1970, and highlighting its most significant achievements. + History + + + + Lectures in History + Abraham Lincoln & Emancipation + Virginia Tech professor Paul Quigley discusses President Abraham Lincoln's shifting policies on emancipation during the Civil War. + History + Instructional + + + TVG + + + + Reel America + 1972 Shirley Chisholm Presidential Campaign Announcement + Rep. Shirley Chisholm (D-N.Y.) announces her bid for the Democratic presidential nomination in 1972; she is the first woman and first African American to seek a major party's presidential nomination. + History + Documentary + + + + The Presidency + C.W. Goodyear, President Garfield + Historian C.W. Goodyear talks about his biography of President James Garfield, the first full-length look at the 20th president's life in a generation; he speaks at the James A. Garfield National Historic Site in Mentor, Ohio. + History + Political + + + + The Presidency + Richard Norton Smith, An Ordinary Man + Historian Richard Norton Smith talks about his decade-long look into the life of President Gerald Ford and his assessment of the man and his presidency, based on new interviews and thousands of documents. + History + Political + + + + The Presidency + Richard Norton Smith, An Ordinary Man + Historian Richard Norton Smith talks about his decade-long look into the life of President Gerald Ford and his assessment of the man and his presidency, based on new interviews and thousands of documents. + History + Political + + + + The Civil War + A Tale of Two Jeb Stuart Raids + Historian Robert O'Neill talks about Confederate Gen. + History + Instructional + + + + Slavery to Freedom at Appomattox + Appomattox Courthouse is commonly known as the site of the end of the Civil War; Chief of Education Ernie Price talks about life after the Civil War, highlighting the local African American experience transitioning from slavery to freedom. + Specials + Documentary + + + + Jean Pfaelzer, California, a Slave State + Specials + History + + + + H.W. Brands, Founding Partisans + Historian H.W. Brands talks about the political differences between founders Hamilton, Madison, Jefferson and Adams. + Specials + History + + + + Samuel Freedman, Into the Bright Sunshine + Author Samuel Freedman explores Hubert Humphrey's early political career and his advocacy for civil rights at the 1948 Democratic National Convention. + Specials + History + + + + Luke Nichter, The Year That Broke Politics + Chapman University professor Luke Nichter discusses his book on the 1968 presidential race between Vice President Hubert Humphrey (D), former Vice President Richard Nixon (R), and former Alabama Gov. George Wallace (D). + Specials + History + + + + 2023 Kirkus Book Prize + Book TV presents coverage of the 10th annual Kirkus Prize, given by the literary publication Kirkus Reviews to authors of nonfiction, fiction and young readers' books. + Specials + Awards + + + + Mike Rothschild, Jewish Space Lasers + Journalist Mike Rothschild talks about 200 years of conspiracy theories involving the Rothschild family and its wealth. + Specials + Documentary + + + + After Words + Ruth Simmons, Up Home: One Girl's Journey + Ruth Simmons talks about her journey from poverty to academia, serving as president of Smith College, Brown University and Prairie View A&M University. + Political + + + TVG + + + + Karen Pence, When It's Your Turn to Serve + Karen Pence talks about her journey from elementary school teacher to second lady of the United States. + Specials + Documentary + + + + In Depth + Nadine Strossen + Author and former American Civil Liberties Union President Nadine Strossen talks and take calls about civil rights, free speech, censorship and more. + Instructional + + + + In Depth + Nadine Strossen + Author and former American Civil Liberties Union President Nadine Strossen talks and take calls about civil rights, free speech, censorship and more. + Instructional + + + + Author Discussion on Memoirs + BookTV provides coverage of the 2023 Boston Book Festival with author discussions on memoirs, book banning, wildlife preservation and more. + Specials + Documentary + + + + Author Discussion on Understanding Knowledge + BookTV provides coverage of the 2023 Boston Book Festival with author discussions on memoirs, book banning, wildlife preservation and more. + Specials + Documentary + + + + Author Discussion on Wildlife Preservation + BookTV provides coverage of the 2023 Boston Book Festival with author discussions on memoirs, book banning, wildlife preservation and more. + Specials + Documentary + + + + Author Discussion on Book Banning + BookTV provides coverage of the 2023 Boston Book Festival with author discussions on memoirs, book banning, wildlife preservation and more. + Specials + Documentary + + + + 2023 Kirkus Book Prize + Book TV presents coverage of the 10th annual Kirkus Prize, given by the literary publication Kirkus Reviews to authors of nonfiction, fiction and young readers' books. + Specials + Awards + + + + Mike Rothschild, Jewish Space Lasers + Journalist Mike Rothschild talks about 200 years of conspiracy theories involving the Rothschild family and its wealth. + Specials + Documentary + + + + After Words + Ruth Simmons, Up Home: One Girl's Journey + Ruth Simmons talks about her journey from poverty to academia, serving as president of Smith College, Brown University and Prairie View A&M University. + Political + + + TVG + + + + Karen Pence, When It's Your Turn to Serve + Karen Pence talks about her journey from elementary school teacher to second lady of the United States. + Specials + Documentary + + + + In Depth + Nadine Strossen + Author and former American Civil Liberties Union President Nadine Strossen talks and take calls about civil rights, free speech, censorship and more. + Instructional + + + + In Depth + Nadine Strossen + Author and former American Civil Liberties Union President Nadine Strossen talks and take calls about civil rights, free speech, censorship and more. + Instructional + + + + In Depth + Nadine Strossen + Author and former American Civil Liberties Union President Nadine Strossen talks and take calls about civil rights, free speech, censorship and more. + Instructional + + + + Author Discussion on Memoirs + BookTV provides coverage of the 2023 Boston Book Festival with author discussions on memoirs, book banning, wildlife preservation and more. + Specials + Documentary + + + + Author Discussion on Understanding Knowledge + BookTV provides coverage of the 2023 Boston Book Festival with author discussions on memoirs, book banning, wildlife preservation and more. + Specials + Documentary + + + + Author Discussion on Wildlife Preservation + BookTV provides coverage of the 2023 Boston Book Festival with author discussions on memoirs, book banning, wildlife preservation and more. + Specials + Documentary + + + + Author Discussion on Book Banning + BookTV provides coverage of the 2023 Boston Book Festival with author discussions on memoirs, book banning, wildlife preservation and more. + Specials + Documentary + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + U.S. Senate + The Senate considers the nomination of Dr. Monica Bertagnolli to be director of the National Institutes of Health (NIH). + Political + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + U.S. Senate + Live gavel-to-gavel coverage of the U.S. Senate from the Capitol Building in Washington, D.C. + Political + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + U.S. Senate + Live gavel-to-gavel coverage of the U.S. Senate from the Capitol Building in Washington, D.C. + Political + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + U.S. Senate + Live gavel-to-gavel coverage of the U.S. Senate from the Capitol Building in Washington, D.C. + Political + + + + U.S. Senate + Live gavel-to-gavel coverage of the U.S. Senate from the Capitol Building in Washington, D.C. + Political + + + + After Words + A guest host who shares an interest in the subject matter and a non-fiction author pair up to discuss the author's writings. + Political + + + TVG + + + + Book TV + Non-fiction books and authors. + Instructional + + + + Book TV + Non-fiction books and authors. + Instructional + + + + After Words + A guest host who shares an interest in the subject matter and a non-fiction author pair up to discuss the author's writings. + Political + + + TVG + + + + After Words + A guest host who shares an interest in the subject matter and a non-fiction author pair up to discuss the author's writings. + Political + + + TVG + + + + Book TV + Non-fiction books and authors. + Instructional + + + + Author Discussion on American Slavery Today + BookTV presents coverage of the 2023 Brooklyn Book Festival. + Specials + Documentary + + + + Author Discussion on Cultural Consciousness + BookTV presents coverage of the 2023 Brooklyn Book Festival. + Specials + Documentary + + + + Author Discussion on White Violence + BookTV presents coverage of the 2023 Brooklyn Book Festival. + Specials + Documentary + + + + Author Discussion on Racial Justice + BookTV presents coverage of the 2023 Brooklyn Book Festival. + Specials + Documentary + + + + Martha Hodes, My Hijacking + New York University professor Martha Hodes talks about being hijacked as a 12-year-old in 1970 by the Popular Front for the Liberation of Palestine during a flight from Israel to New York City. + Specials + + + + James Lockhart, America: Underwater and Sinking + James Lockhart, former director of the Federal Housing Finance Agency, talks about America's fiscal burden and how to address it. + Specials + Documentary + + + + About Books + Book Bans & School Libraries + Bridgette Exman discusses her actions when she was criticized nationally for her efforts to comply with a state law on age-appropriate books in Mason City, Iowa, school libraries. + Instructional + + + + Lectures in History + Classroom lectures on American history. + History + Instructional + + + TVG + + + + Reel America + A Special Report on Polio -- 1955 + A June 1955 broadcast by the radio and television networks in cooperation with the U.S. Public Health Service hopes to dispel fears about the safety of the new Salk polio vaccine. + History + Documentary + + + + Reel America + Dental Hygiene -- 1941 + A U.S. Public Health Service Film emphasizes the importance of good teeth and regular visits to the dentist. + History + Documentary + + + + The Presidency + A Friendship of Rivals -- Gerald Ford & Jimmy Carter + Republican Gerald Ford and Democrat Jimmy Carter, political rivals in the 1976 presidential campaign, become lifelong friends who find common cause after they leave the White House. + History + Political + + + + Reel America + Telegram for America -- 1956 + This 1956 Western Union Telegraph Co. film features the history of the telegram, current use, and developing communication technology. + History + Documentary + + + + Lectures in History + The Woodworking Industry in South Carolina + The woodworking industry in early-20th century South Carolina is the subject of a class co-taught by University of South Carolina professor Jessica Elfenbein and former museum executive director Lynn Robertson. + History + Instructional + + + TVG + + + + Reel America + A Special Report on Polio -- 1955 + A June 1955 broadcast by the radio and television networks in cooperation with the U.S. Public Health Service hopes to dispel fears about the safety of the new Salk polio vaccine. + History + Documentary + + + + Reel America + Dental Hygiene -- 1941 + A U.S. Public Health Service Film emphasizes the importance of good teeth and regular visits to the dentist. + History + Documentary + + + + The Presidency + A Friendship of Rivals -- Gerald Ford & Jimmy Carter + Republican Gerald Ford and Democrat Jimmy Carter, political rivals in the 1976 presidential campaign, become lifelong friends who find common cause after they leave the White House. + History + Political + + + + Reel America + Telegram for America -- 1956 + This 1956 Western Union Telegraph Co. film features the history of the telegram, current use, and developing communication technology. + History + Documentary + + + + The Civil War + A look at the people and events that shaped the American Civil War and Reconstruction. + History + Instructional + + + + Building the Statue of Liberty + Author Elizabeth Mitchell discusses her book. + Specials + History + + + + Peter Cozzens, A Brutal Reckoning + Author Peter Cozzens talks about the 1813 Creek War, Andrew Jackson's role in the conflict, and the subsequent removal of Native Americans on the Trail of Tears. + Specials + History + + + + Benjamin Carp, The Great New York Fire of 1776 + Brooklyn College professor Benjamin Carp talks about the 1776 fire that burned down much of New York City shortly after the British took the city during the Revolutionary War. + Specials + History + + + + Robert Watson, When Washington Burned + Author Robert Watson talks about the War of 1812, detailing the British military campaign and American resistance on August 24, 1814, the day the British burned the Capitol. + Specials + History + + + + Douglas Brunt, The Mysterious Case of Rudolf Diesel + Douglas Brunt recounts the life of Rudolf Diesel, inventor of the diesel engine, and his disappearance in the lead-up to World War I; The Corner Bookstore in New York City hosts this event. + Specials + History + + + + Lectures in History + Classroom lectures on American history. + History + Instructional + + + TVG + + + + Reel America + A Special Report on Polio -- 1955 + A June 1955 broadcast by the radio and television networks in cooperation with the U.S. Public Health Service hopes to dispel fears about the safety of the new Salk polio vaccine. + History + Documentary + + + + Reel America + Dental Hygiene -- 1941 + A U.S. Public Health Service Film emphasizes the importance of good teeth and regular visits to the dentist. + History + Documentary + + + + The Presidency + A Friendship of Rivals -- Gerald Ford & Jimmy Carter + Republican Gerald Ford and Democrat Jimmy Carter, political rivals in the 1976 presidential campaign, become lifelong friends who find common cause after they leave the White House. + History + Political + + + + Reel America + Telegram for America -- 1956 + This 1956 Western Union Telegraph Co. film features the history of the telegram, current use, and developing communication technology. + History + Documentary + + + + Lectures in History + Classroom lectures on American history. + History + Instructional + + + TVG + + + + Reel America + A Special Report on Polio -- 1955 + A June 1955 broadcast by the radio and television networks in cooperation with the U.S. Public Health Service hopes to dispel fears about the safety of the new Salk polio vaccine. + History + Documentary + + + + Reel America + Dental Hygiene -- 1941 + A U.S. Public Health Service Film emphasizes the importance of good teeth and regular visits to the dentist. + History + Documentary + + + + The Presidency + Historic speeches of former U.S. presidents as well as their policies and legacies. + History + Political + + + + The Presidency + A Friendship of Rivals -- Gerald Ford & Jimmy Carter + Republican Gerald Ford and Democrat Jimmy Carter, political rivals in the 1976 presidential campaign, become lifelong friends who find common cause after they leave the White House. + History + Political + + + + Reel America + Telegram for America -- 1956 + This 1956 Western Union Telegraph Co. film features the history of the telegram, current use, and developing communication technology. + History + Documentary + + + + The Civil War + A look at the people and events that shaped the American Civil War and Reconstruction. + History + Instructional + + + + Building the Statue of Liberty + Author Elizabeth Mitchell discusses her book. + Specials + History + + + + Peter Cozzens, A Brutal Reckoning + Author Peter Cozzens talks about the 1813 Creek War, Andrew Jackson's role in the conflict, and the subsequent removal of Native Americans on the Trail of Tears. + Specials + History + + + + Benjamin Carp, The Great New York Fire of 1776 + Brooklyn College professor Benjamin Carp talks about the 1776 fire that burned down much of New York City shortly after the British took the city during the Revolutionary War. + Specials + History + + + + Robert Watson, When Washington Burned + Author Robert Watson talks about the War of 1812, detailing the British military campaign and American resistance on August 24, 1814, the day the British burned the Capitol. + Specials + History + + + + Douglas Brunt, The Mysterious Case of Rudolf Diesel + Douglas Brunt recounts the life of Rudolf Diesel, inventor of the diesel engine, and his disappearance in the lead-up to World War I; The Corner Bookstore in New York City hosts this event. + Specials + History + + + + Sen. Cassidy & Rep. Larson on Future of Social Security + Sen. Bill Cassidy (R-La.) and Rep. John Larson (D-Conn.) discuss the future of Social Security at AARP headquarters in Washington, D.C. + Specials + Documentary + + + + Law Professors Discuss Freedom of Expression and First Amendment Cases + Legal scholars discuss high-profile cases from the Supreme Court's 2022-23 term, as well as upcoming cases in the 2023-24 term at the Cato Institute's annual Constitution Day symposium in Washington, D.C. + Specials + Documentary + + + + Hearing on Washington, DC's Violent Crime + A House Judiciary subcommittee holds a hearing on violent crime issues affecting Washington, D.C.; witnesses include victims who share their experiences and Deputy Mayor Lindsey Appiah. + Specials + + + + Nat'l Security Adviser on Threats to Democracy + National security adviser Jake Sullivan discusses domestic and international threats to democracy during a forum hosted by the Atlantic Festival in Washington, D.C. + Specials + + + + Sen. Cassidy & Rep. Larson on Future of Social Security + Sen. Bill Cassidy (R-La.) and Rep. John Larson (D-Conn.) discuss the future of Social Security at AARP headquarters in Washington, D.C. + Specials + Documentary + + + + Law Professors Discuss Freedom of Expression and First Amendment Cases + Legal scholars discuss high-profile cases from the Supreme Court's 2022-23 term, as well as upcoming cases in the 2023-24 term at the Cato Institute's annual Constitution Day symposium in Washington, D.C. + Specials + Documentary + + + + Hearing on Washington, DC's Violent Crime + A House Judiciary subcommittee holds a hearing on violent crime issues affecting Washington, D.C.; witnesses include victims who share their experiences and Deputy Mayor Lindsey Appiah. + Specials + + + + Nat'l Security Adviser on Threats to Democracy + National security adviser Jake Sullivan discusses domestic and international threats to democracy during a forum hosted by the Atlantic Festival in Washington, D.C. + Specials + + + + Sen. Cassidy & Rep. Larson on Future of Social Security + Sen. Bill Cassidy (R-La.) and Rep. John Larson (D-Conn.) discuss the future of Social Security at AARP headquarters in Washington, D.C. + Specials + Documentary + + + + Law Professors Discuss Freedom of Expression and First Amendment Cases + Legal scholars discuss high-profile cases from the Supreme Court's 2022-23 term, as well as upcoming cases in the 2023-24 term at the Cato Institute's annual Constitution Day symposium in Washington, D.C. + Specials + Documentary + + + + Hearing on Washington, DC's Violent Crime + A House Judiciary subcommittee holds a hearing on violent crime issues affecting Washington, D.C.; witnesses include victims who share their experiences and Deputy Mayor Lindsey Appiah. + Specials + + + + Nat'l Security Adviser on Threats to Democracy + National security adviser Jake Sullivan discusses domestic and international threats to democracy during a forum hosted by the Atlantic Festival in Washington, D.C. + Specials + + + + Sen. Cassidy & Rep. Larson on Future of Social Security + Sen. Bill Cassidy (R-La.) and Rep. John Larson (D-Conn.) discuss the future of Social Security at AARP headquarters in Washington, D.C. + Specials + Documentary + + + + Sen. Cassidy & Rep. Larson on Future of Social Security + Sen. Bill Cassidy (R-La.) and Rep. John Larson (D-Conn.) discuss the future of Social Security at AARP headquarters in Washington, D.C. + Specials + Documentary + + + + Law Professors Discuss Freedom of Expression and First Amendment Cases + Legal scholars discuss high-profile cases from the Supreme Court's 2022-23 term, as well as upcoming cases in the 2023-24 term at the Cato Institute's annual Constitution Day symposium in Washington, D.C. + Specials + Documentary + + + + Hearing on Washington, DC's Violent Crime + A House Judiciary subcommittee holds a hearing on violent crime issues affecting Washington, D.C.; witnesses include victims who share their experiences and Deputy Mayor Lindsey Appiah. + Specials + + + + Nat'l Security Adviser on Threats to Democracy + National security adviser Jake Sullivan discusses domestic and international threats to democracy during a forum hosted by the Atlantic Festival in Washington, D.C. + Specials + + + + Sen. Cassidy & Rep. Larson on Future of Social Security + Sen. Bill Cassidy (R-La.) and Rep. John Larson (D-Conn.) discuss the future of Social Security at AARP headquarters in Washington, D.C. + Specials + Documentary + + + + Law Professors Discuss Freedom of Expression and First Amendment Cases + Legal scholars discuss high-profile cases from the Supreme Court's 2022-23 term, as well as upcoming cases in the 2023-24 term at the Cato Institute's annual Constitution Day symposium in Washington, D.C. + Specials + Documentary + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + Key Capitol Hill Hearings + Hearings, speeches and political coverage from around the United States. + Political + + + + Key Capitol Hill Hearings + Hearings, speeches and political coverage from around the United States. + Political + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + Public Affairs Events + Public affairs events, congressional hearings, speeches, and interviews. + Political + + + TVG + + + + Key Capitol Hill Hearings + Hearings, speeches and political coverage from around the United States. + Political + + + + Key Capitol Hill Hearings + Hearings, speeches and political coverage from around the United States. + Political + + + + Los Angeles Auto Show + Dodge, BMW, Rivian, Maserati, Chevy, GMC. + + + + Concorso Italiano + Ferrari; Alfa Romeo; Rolls Royce. + + + + Concorso Italiano + Lamborghini, Ferrari, De Tomaso, and Alfa Romeo. + + + + Pebble Beach Concours d'Elegance + Bugatti; Bentley; Duesenberg; Peugeot. + + + + The American Athlete + One-on-one interviews with sports superstars. + + + + Pebble Beach Concours d'Elegance + Bentley; Ferrari; Talbot Lago; De Tomaso. + + + + Lions Drag Stip Museum + Wills; Hot Rods; Oldsmobile; Ford. + + + + SEMA Show + Acura; Lingenfelter; ARP. + + + + SEMA Show + Lexus; Chevy; APR; BASF. + + + + Pebble Beach Concours d'Elegance + McLaren; Porsche; Jaguar; Cadillac; Ferrari. + + + + Grand National Roadster Show + Ford; Chevy; Hot Rods; Customs. + + + + Los Angeles Auto Show + JEEP; Buick; Porsche; Subaru; Alfa Romeo; Nissan. + + + + Pebble Beach Concours d'Elegance + Aston Martin; Ferrari; Porsche; Bentley; Mullen. + + + + Concorso Italiano + Lamborghini; Ferrari; Fiat; Maserati. + + + + Los Angeles Auto Show + Dodge, BMW, Rivian, Maserati, Chevy, GMC. + + + + Concorso Italiano + Ferrari; Alfa Romeo; Rolls Royce. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + THE AMAZING TELIKIN ONE TOUCH, THE WORLD'S EASIEST COMPUTER! + A single touch takes you to Email, Web, Video Chat, Contracts, Photos, Games, and more in this sleek, simple and sophisticated computer. Say hello to TELIKIN! TELIKIN is an ALL IN ONE computer that is easy to set up and navigate. SPECIAL OFFER! + + + + In Touch With Dr. Charles Stanley + In Touch Ministries is the broadcast teaching ministry of Dr. Charles Stanley. + + + + Concorso Italiano + Lamborghini; Ferrari; Pantera. + + + + RacePro Technologies + Justin Peck and Ray Griffith; Off-Road Racers. + + + + Pebble Beach Concours d'Elegance + Derek Hill; Ford; Byton; Duesenberg. + + + + Pebble Beach Concours d'Elegance + Derek Hill; Tucker; Lexus; Polestar; SSC Tuatara. + + + + Cars.TV + Cars and the people who create, buy and collect them. + + + + John Force Racing + John Force and Brittany Force. + + + + John Force Racing + Courtney Force and Robert Hight. + + + + NASCAR Sonoma Raceway + + + + NASCAR Sonoma Raceway + + + + Rodeo Drive Concours d'Elegance + Mercedes; Corvette; Ferrari; Fiat; Hispano-Suiza. + + + + TruSpeed AutoSport + Porsche; Audi; the Toyota Grand Prix of Long Beach. + + + + Grand National Roadster Show + Ford; Chevy; Hot Rods; Roadsters. + + + + Concorso Italiano + Lamborghini; Ferrari; Pantera. + + + + RacePro Technologies + Justin Peck and Ray Griffith; Off-Road Racers. + + + + Pebble Beach Concours d'Elegance + Derek Hill; Ford; Byton; Duesenberg. + + + + Pebble Beach Concours d'Elegance + Derek Hill; Tucker; Lexus; Polestar; SSC Tuatara. + + + + Cars.TV + Cars and the people who create, buy and collect them. + + + + John Force Racing + John Force and Brittany Force. + + + + John Force Racing + Courtney Force and Robert Hight. + + + + NASCAR Sonoma Raceway + + + + NASCAR Sonoma Raceway + + + + Rodeo Drive Concours d'Elegance + Mercedes; Corvette; Ferrari; Fiat; Hispano-Suiza. + + + + TruSpeed AutoSport + Porsche; Audi; the Toyota Grand Prix of Long Beach. + + + + Grand National Roadster Show + Ford; Chevy; Hot Rods; Roadsters. + + + + Concorso Italiano + Lamborghini; Ferrari; Pantera. + + + + RacePro Technologies + Justin Peck and Ray Griffith; Off-Road Racers. + + + + Pebble Beach Concours d'Elegance + Derek Hill; Ford; Byton; Duesenberg. + + + + Pebble Beach Concours d'Elegance + Derek Hill; Tucker; Lexus; Polestar; SSC Tuatara. + + + + Cars.TV + Cars and the people who create, buy and collect them. + + + + John Force Racing + John Force and Brittany Force. + + + + John Force Racing + Courtney Force and Robert Hight. + + + + NASCAR Sonoma Raceway + + + + NASCAR Sonoma Raceway + + + + Rodeo Drive Concours d'Elegance + Mercedes; Corvette; Ferrari; Fiat; Hispano-Suiza. + + + + TruSpeed AutoSport + Porsche; Audi; the Toyota Grand Prix of Long Beach. + + + + Grand National Roadster Show + Ford; Chevy; Hot Rods; Roadsters. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Cars.TV + Cars and the people who create, buy and collect them. + + + + Cars.TV + Cars and the people who create, buy and collect them. + + + + Cars.TV + Cars and the people who create, buy and collect them. + + + + Cars.TV + Cars and the people who create, buy and collect them. + + + + Cars.TV + Cars and the people who create, buy and collect them. + + + + Cars.TV + Cars and the people who create, buy and collect them. + + + + Cars.TV + Cars and the people who create, buy and collect them. + + + + Cars.TV + Cars and the people who create, buy and collect them. + + + + Cars.TV + Cars and the people who create, buy and collect them. + + + + Cars.TV + Cars and the people who create, buy and collect them. + + + + Cars.TV + Cars and the people who create, buy and collect them. + + + + Cars.TV + Cars and the people who create, buy and collect them. + + + + Cars.TV + Cars and the people who create, buy and collect them. + + + + Cars.TV + Cars and the people who create, buy and collect them. + + + + Cars.TV + Cars and the people who create, buy and collect them. + + + + Cars.TV + Cars and the people who create, buy and collect them. + + + + Cars.TV + Cars and the people who create, buy and collect them. + + + + Cars.TV + Cars and the people who create, buy and collect them. + + + + Cars.TV + Cars and the people who create, buy and collect them. + + + + Cars.TV + Cars and the people who create, buy and collect them. + + + + Cars.TV + Duesenberg; Rolls Royce; Mercedes; Bugatti; Maybach. + + + + Cars.TV + Race car drivers Ron Capps, Antron Brown and Alexis Dejoria. + + + + Cars.TV + Ford; Chevy; roadsters; customs; vintage race cars. + + + + Cars.TV + Shelby; Ford GT40; Toyota; Lexus; custom trucks. + + + + Cars.TV + Cars and the people who create, buy and collect them. + + + + Cars.TV + Bugatti; Peugeot; Talbot-Lago; Duesenberg; prototypes. + + + + Cars.TV + Duesenberg; Ferrari; Aston Martin; BMW; Packard. + + + + Cars.TV + Concorso Italiano President Tom McDowell; Ferrari; Italian prototype; Alfa; Lambo. + + + + Cars.TV + Cars and the people who create, buy and collect them. + + + + Cars.TV + Race car drivers Tony Schumacher, Antron Brown and Ron Capps. + + + + Cars.TV + Porsche race cars; GT Celebration; Thermal Club. + + + + Cars.TV + Shelby Cobra; Shelby Mustang; Ford GT 40; prototypes. + + + + Cars.TV + Duesenberg; Rolls Royce; Mercedes; Bugatti; Maybach. + + + + Cars.TV + Race car drivers Ron Capps, Antron Brown and Alexis Dejoria. + + + + Cars.TV + Ford; Chevy; roadsters; customs; vintage race cars. + + + + Cars.TV + Shelby; Ford GT40; Toyota; Lexus; custom trucks. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Cars.TV + Toyota; Land Rover; JEEP; custom trucks and one-offs. + + + + Concorso Italiano + Ferrari, Alfa Romeo, Czinger, De Tomaso P72, Maserati. + + + + Cars.TV + Ferrari prototypes; Austin-Healey; Hell's Chariot from the movie "Grease.". + + + + Cars.TV + Ragtime racers; Bugatti; Porsche; Sadler; vintage racers. + + + + Cars.TV + A 1932 Ford Split-Window Gauntt Coup. + + + + Concorso Italiano + Ferrari, Dino, Czinger, De Tomaso P72, Lamborghini. + + + + Pebble Beach Concours d'Elegance + Le Mans Champions, Delorean, Rolls Royce, Stutz, Lincoln. + + + + Cars.TV + Rolls Royce; Mercury; Ferrari; Corvette. + + + + Hollywood Hot Rods + Customs, classics and one-offs. + + + + La Jolla Concours d'Elegance + With Ghia, Bugatti, Ferrari, Mercedes, Jaguar, and MG TA. + + + + Hollywood Hot Rods + + + + Hollywood Hot Rods + Family owned 1940 Ford Custom Coupe. + + + + Cars.TV + Toyota; Land Rover; JEEP; custom trucks and one-offs. + + + + Concorso Italiano + Ferrari, Alfa Romeo, Czinger, De Tomaso P72, Maserati. + + + + Cars.TV + Ferrari prototypes; Austin-Healey; Hell's Chariot from the movie "Grease.". + + + + Cars.TV + Ragtime racers; Bugatti; Porsche; Sadler; vintage racers. + + + + Cars.TV + A 1932 Ford Split-Window Gauntt Coup. + + + + Concorso Italiano + Ferrari, Dino, Czinger, De Tomaso P72, Lamborghini. + + + + Pebble Beach Concours d'Elegance + Le Mans Champions, Delorean, Rolls Royce, Stutz, Lincoln. + + + + Cars.TV + Rolls Royce; Mercury; Ferrari; Corvette. + + + + Hollywood Hot Rods + Customs, classics and one-offs. + + + + La Jolla Concours d'Elegance + With Ghia, Bugatti, Ferrari, Mercedes, Jaguar, and MG TA. + + + + Hollywood Hot Rods + + + + Hollywood Hot Rods + Family owned 1940 Ford Custom Coupe. + + + + Cars.TV + Toyota; Land Rover; JEEP; custom trucks and one-offs. + + + + Concorso Italiano + Ferrari, Alfa Romeo, Czinger, De Tomaso P72, Maserati. + + + + Cars.TV + Ferrari prototypes; Austin-Healey; Hell's Chariot from the movie "Grease.". + + + + Cars.TV + Ragtime racers; Bugatti; Porsche; Sadler; vintage racers. + + + + Cars.TV + A 1932 Ford Split-Window Gauntt Coup. + + + + Concorso Italiano + Ferrari, Dino, Czinger, De Tomaso P72, Lamborghini. + + + + Pebble Beach Concours d'Elegance + Le Mans Champions, Delorean, Rolls Royce, Stutz, Lincoln. + + + + Cars.TV + Rolls Royce; Mercury; Ferrari; Corvette. + + + + Hollywood Hot Rods + Customs, classics and one-offs. + + + + La Jolla Concours d'Elegance + With Ghia, Bugatti, Ferrari, Mercedes, Jaguar, and MG TA. + + + + Hollywood Hot Rods + + + + Hollywood Hot Rods + Family owned 1940 Ford Custom Coupe. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + CHRISTINA HALL and Jacuzzi® amazing bathroom makeovers + SPECIAL OFFER + Trusted brand Jacuzzi® and renowned interior designer, Christina Hall can help you transform your old bathroom into a gorgeous custom, safe and stylish space. Jacuzzi® has limited time special offers to make your dream bathroom happen today CALL NOW. + + + + Cars.TV + Race car drivers Alexander Rossi, Kyle Kirkwood and Callum Ilott. + + + + Supercross + Cooper Webb, Malcolm Stewart and Chase Sexton. + + + + Grand National Roadster Show + Ford, Chevrolet, hot rods and customs. + + + + Los Angeles Auto Show + Lexus, Toyota, Nissan, Land Rover. + + + + Los Angeles Auto Show + Fisker, Ford, Hyundai. + + + + Los Angeles Auto Show + Subaru, Kia, Fisker, Mullen. + + + + Monterey Car Week + Pantera, Lotus, Race cars. + + + + Pebble Beach Concours d'Elegance + McLaren; Concept Lawn; Porsche; Packard. + + + + MECUM Auctions + Ford GT, Ferrari, Shelby Cobra, Studebaker. + + + + Laguna Seca Historic Races + Morgan, Porsche, Mazda. + + + + Concorso Italiano + Ferrari, Alfa Romeo, Pantera, Lamborghini. + + + + Concorso Italiano + Ferrari; Alfa Romeo; OSCA; Fiat; Lamborhini. + + + + Cars.TV + Race car drivers Alexander Rossi, Kyle Kirkwood and Callum Ilott. + + + + Supercross + Cooper Webb, Malcolm Stewart and Chase Sexton. + + + + Grand National Roadster Show + Ford, Chevrolet, hot rods and customs. + + + + Los Angeles Auto Show + Lexus, Toyota, Nissan, Land Rover. + + + + Los Angeles Auto Show + Fisker, Ford, Hyundai. + + + + Los Angeles Auto Show + Subaru, Kia, Fisker, Mullen. + + + + Monterey Car Week + Pantera, Lotus, Race cars. + + + + Pebble Beach Concours d'Elegance + McLaren; Concept Lawn; Porsche; Packard. + + + + Louisiana Tech vs. Liberty + Louisiana Tech at Liberty + The Flames (8-0, 6-0 C-USA) try to stay unbeaten as they face the Bulldogs (3-6, 2-2) for the first time. Louisiana Tech looks to keep its fading playoff hopes alive after dropping three in a row. Liberty is one of eight remaining unbeaten schools. + Sports + Football + + + + Inside College Football + Adam Zucker, Rick Neuheisel and Brian Jones discuss the latest college football news and preview the SEC game of the week. + Sports + Football + + + + Inside College Football + Adam Zucker, Rick Neuheisel and Brian Jones discuss the latest college football news and preview the SEC game of the week. + Sports + Football + + + + Boise State vs. Fresno State + Boise State at Fresno State + The Bulldogs (7-1 3-1) host the Broncos (4-4, 3-1) for a crucial Mountain West contest. The winner gains the upper hand in reaching the MWC championship game for the second straight year. Fresno State topped Boise State 28-16 for the 2022 MWC title. + Sports + Football + + + + Inside College Football + Adam Zucker, Rick Neuheisel and Brian Jones discuss the latest college football news and preview the SEC game of the week. + Sports + Football + + + + Inside College Football + Adam Zucker, Rick Neuheisel and Brian Jones discuss the latest college football news and preview the SEC game of the week. + Sports + Football + + + + Inside College Football + Adam Zucker, Rick Neuheisel and Brian Jones discuss the latest college football news and preview the SEC game of the week. + Sports + Football + + + + Inside College Football + Adam Zucker, Rick Neuheisel and Brian Jones discuss the latest college football news and preview the SEC game of the week. + Sports + Football + + + + Inside College Football + Adam Zucker, Rick Neuheisel and Brian Jones discuss the latest college football news and preview the SEC game of the week. + Sports + Football + + + + Inside College Football + Adam Zucker, Rick Neuheisel and Brian Jones discuss the latest college football news and preview the SEC game of the week. + Sports + Football + + + + Inside College Football + Adam Zucker, Rick Neuheisel and Brian Jones discuss the latest college football news and preview the SEC game of the week. + Sports + Football + + + + Inside College Football + Adam Zucker, Rick Neuheisel and Brian Jones discuss the latest college football news and preview the SEC game of the week. + Sports + Football + + + + Inside College Football + Adam Zucker, Rick Neuheisel and Brian Jones discuss the latest college football news and preview the SEC game of the week. + Sports + Football + + + + Inside College Football + Adam Zucker, Rick Neuheisel and Brian Jones discuss the latest college football news and preview the SEC game of the week. + Sports + Football + + + + Inside College Football + Adam Zucker, Rick Neuheisel and Brian Jones discuss the latest college football news and preview the SEC game of the week. + Sports + Football + + + + Inside College Football + Adam Zucker, Rick Neuheisel and Brian Jones discuss the latest college football news and preview the SEC game of the week. + Sports + Football + + + + Inside College Football + Adam Zucker, Rick Neuheisel and Brian Jones discuss the latest college football news and preview the SEC game of the week. + Sports + Football + + + + Inside College Football + Adam Zucker, Rick Neuheisel and Brian Jones discuss the latest college football news and preview the SEC game of the week. + Sports + Football + + + + Inside College Football + Adam Zucker, Rick Neuheisel and Brian Jones discuss the latest college football news and preview the SEC game of the week. + Sports + Football + + + + That Other Pregame Show + Previews of the upcoming Sunday games with opinions, analysis and predictions. Host Adam Schein is joined by analysts London Fletcher, Amy Trask and Jonathan Jonesalong with fantasy contributors Jeff Ratcliffe and Keith Irizarry.Guests: Amy Trask, London Fletcher, Jonathan Jones, Jeff Ratcliffe, Keith Irizarry.. + Sports + Football + + + + Bucknell vs. Army + Patriot League Championship: Bucknell at Army + From Clinton Field in West Point, N.Y. + Sports + Soccer + + + + Champions League Weekly + A weekly show dedicated to action from the Champions League. + Sports + Soccer + + + + Italian Serie A Soccer + Fiorentina vs. Juventus + From Artemio Franchi Stadium in Florence, Tuscany, Italy. + Sports + Soccer + + + + Women's Bundesliga Soccer + Bayern Munich vs. VfL Wolfsburg + From Stadtisches Stadion an der Grunwalder Strasse in München, Bayern, Germany. + Sports + Soccer + + + + NJ/NY Gotham FC vs. Portland Thorns FC + NJ/NY Gotham FC at Portland Thorns FC + First Semifinal. + Sports + Soccer + + + + OL Reign vs. San Diego Wave FC + OL Reign at San Diego Wave FC + Second Semifinal. + Sports + Soccer + + + + World Series of Poker + 2023 World Series of Poker Main Event + Day 8 -- Part 1. + Sports + Cards + + + TVG + + + + World Series of Poker + 2023 World Series of Poker Main Event + Day 8 -- Part 2. + Sports + Cards + + + TVG + + + + World Series of Poker + 2023 World Series of Poker Main Event + Final Table Day 1 -- Part 1. + Sports + Cards + + + TVG + + + + World Series of Poker + 2023 World Series of Poker Main Event + Final Table Day 1 -- Part 2. + Sports + Cards + + + TVG + + + + World Series of Poker + 2023 World Series of Poker Main Event + Final Table Day 2. + Sports + Cards + + + TVG + + + + We Need to Talk + A unique perspective of the sports landscape from some of the most accomplished women in sports. + Sports + Talk Show + + + + Boomer and Gio + CBS Sports Network simulcasts WFAN's. + Sports + Talk Show + + + + Going Pro: SRO America + Follow grassroots racer Damon Surzshyn and the championship winning Subaru Motorsport USA TechSport Racing team in their quest for another drivers and manufacturers championship. + Sports + Auto Racing + + + + Going Pro: SRO America + Follow grassroots racer Damon Surzshyn and the championship winning Subaru Motorsport USA TechSport Racing team in their quest for another drivers and manufacturers championship. + Sports + Auto Racing + + + + P1 Racing + Offshore SuperCat- St. Petersburg, Fl + Highlights from the Powerboat P1 racing series. + Sports + Boating + + + + Auto Racing + Xtreme Outlaw Midgets: Quad Cities 150 + From Davenport, Iowa. + Sports + Auto Racing + + + + The Jim Rome Show + CBS Sports Network brings the jungle to TV with this simulcast of. + Sports + Talk Show + + + + CBS Sports HQ Spotlight + Sports news and highlights. + Sports + + + + CBS Sports HQ Spotlight + Sports news and highlights. + Sports + + + + NFL Monday QB + Media elite break down NFL games from a QB perspective. + Sports + Football + + + + Equestrian + Longines FEI Jumping World Cup- North American League + From Lexington, Ky. + Sports + Equestrian + + + TVG + + + + P1 Racing + Offshore SuperCat- St. Petersburg, Fl + Highlights from the Powerboat P1 racing series. + Sports + Boating + + + + Auto Racing + Xtreme Outlaw Midgets: Quad Cities 150 + From Davenport, Iowa. + Sports + Auto Racing + + + + We Need to Talk + A unique perspective of the sports landscape from some of the most accomplished women in sports. + Sports + Talk Show + + + + SEC Replay + Replay action from SEC football games. + Sports + Football + + + + SEC Replay + Replay action from SEC football games. + Sports + Football + + + + NFL Monday QB + Media elite break down NFL games from a QB perspective. + Sports + Football + + + + Equestrian + Longines FEI Jumping World Cup- North American League + From Lexington, Ky. + Sports + Equestrian + + + TVG + + + + NFL Monday QB + Media elite break down NFL games from a QB perspective. + Sports + Football + + + + Boomer and Gio + CBS Sports Network simulcasts WFAN's. + Sports + Talk Show + + + + NFL Monday QB + Media elite break down NFL games from a QB perspective. + Sports + Football + + + + We Need to Talk + A unique perspective of the sports landscape from some of the most accomplished women in sports. + Sports + Talk Show + + + + The Jim Rome Show + CBS Sports Network brings the jungle to TV with this simulcast of. + Sports + Talk Show + + + + UEFA Champions League Today + News and highlights from the UEFA Champions League. + Sports + Soccer + + + + UEFA Champions League Soccer + Atlético Madrid vs. Celtic + Group E. + Sports + Soccer + + + + UEFA Champions League Post Match Show + Highlights and analysis of the day's matchups. + Sports + Soccer + + + + Time to Schein + Adam Schein tackles the sports world with a unique perspective on the latest news and trends. + Sports + Talk Show + + + + Inside College Football + Adam Zucker, Rick Neuheisel and Brian Jones discuss the latest college football news and preview the SEC game of the week. + Sports + Football + + + + Ball State vs. Northern Illinois + Ball State at Northern Illinois + From Huskie Stadium in DeKalb, Ill. + Sports + Football + + + + Inside College Football + Adam Zucker, Rick Neuheisel and Brian Jones discuss the latest college football news and preview the SEC game of the week. + Sports + Football + + + + Inside College Football + Adam Zucker, Rick Neuheisel and Brian Jones discuss the latest college football news and preview the SEC game of the week. + Sports + Football + + + + SEC Replay + Replay action from SEC football games. + Sports + Football + + + + SEC Replay + Replay action from SEC football games. + Sports + Football + + + + Equestrian + Longines FEI Jumping World Cup- North American League + From Lexington, Ky. + Sports + Equestrian + + + TVG + + + + Inside College Football + Adam Zucker, Rick Neuheisel and Brian Jones discuss the latest college football news and preview the SEC game of the week. + Sports + Football + + + + Boomer and Gio + CBS Sports Network simulcasts WFAN's. + Sports + Talk Show + + + + Inside College Football + Adam Zucker, Rick Neuheisel and Brian Jones discuss the latest college football news and preview the SEC game of the week. + Sports + Football + + + + Inside College Football + Adam Zucker, Rick Neuheisel and Brian Jones discuss the latest college football news and preview the SEC game of the week. + Sports + Football + + + + The Jim Rome Show + CBS Sports Network brings the jungle to TV with this simulcast of. + Sports + Talk Show + + + + UEFA Champions League Today + News and highlights from the UEFA Champions League. + Sports + Soccer + + + + UEFA Champions League Soccer + Red Bull Salzburg vs. Internazionale Milan + Group D. + Sports + Soccer + + + + UEFA Champions League Post Match Show + Highlights and analysis of the day's matchups. + Sports + Soccer + + + + Time to Schein + Adam Schein tackles the sports world with a unique perspective on the latest news and trends. + Sports + Talk Show + + + + Inside College Football + Adam Zucker, Rick Neuheisel and Brian Jones discuss the latest college football news and preview the SEC game of the week. + Sports + Football + + + + China News + News + + + + Focus Today + Discussing the issues that matter today. + News Magazine + + + + Universal Show + Arts & Entertainment + + + + Cartoon City + Variety + + + + Memory of China + History + + + + Across The Strait + News + + + + On the Way + News + + + + China Showbiz + Arts & Entertainment + + + + Door of Fortune + Arts & Entertainment + + + + TV Drama + Chinese produced television drama. + Drama + + + + TV Drama + Chinese produced television drama. + Drama + + + + China News + News + + + + Focus Today + Discussing the issues that matter today. + News Magazine + + + + Dreamchaser + Science + + + + Nostalgia + Nostalgia aims to represent Chinese traditional culture by revealing life in villages in the way of story-telling. + Science + + + + Network News + Presents to viewer a considerable amount of information. + News + + + + Across The Strait + News + + + + Chinese Story + Science + + + + China News + News + + + + Focus Today + Discussing the issues that matter today. + News Magazine + + + + Global News + News + + + + TV Drama + Chinese produced television drama. + Drama + + + + TV Drama + Chinese produced television drama. + Drama + + + + China Showbiz + Arts & Entertainment + + + + International Depth + A weekly review of all the international news from around the world, including current and past events from the last week. + Variety + + + + China News + News + + + + Across The Strait + News + + + + Chinese Story + Science + + + + TV Drama + Chinese produced television drama. + Drama + + + + TV Drama + Chinese produced television drama. + Drama + + + + Special Program for Opera + Music + + + + TV Drama + Chinese produced television drama. + Drama + + + + TV Drama + Chinese produced television drama. + Drama + + + + China Showbiz + Arts & Entertainment + + + + China News + News + + + + China's Public Opinion Field + News + + + + International Depth + A weekly review of all the international news from around the world, including current and past events from the last week. + Variety + + + + China News + News + + + + Focus Today + Discussing the issues that matter today. + News Magazine + + + + Universal Show + Arts & Entertainment + + + + Cartoon City + Variety + + + + Dreamchaser + Science + + + + Nostalgia + Nostalgia aims to represent Chinese traditional culture by revealing life in villages in the way of story-telling. + Science + + + + Across The Strait + News + + + + TV Drama + Chinese produced television drama. + Drama + + + + A Way to Be a Super Star + Specials + Arts & Entertainment + + + + A Way to Be a Super Star + Specials + Arts & Entertainment + + + + Nostalgia + Nostalgia aims to represent Chinese traditional culture by revealing life in villages in the way of story-telling. + Science + + + + Chinese Story + Science + + + + TV Drama + Chinese produced television drama. + Drama + + + + TV Drama + Chinese produced television drama. + Drama + + + + China News + News + + + + Focus Today + Discussing the issues that matter today. + News Magazine + + + + Dreamchaser + Science + + + + Nostalgia + Nostalgia aims to represent Chinese traditional culture by revealing life in villages in the way of story-telling. + Science + + + + Network News + Presents to viewer a considerable amount of information. + News + + + + Across The Strait + News + + + + Bond with China + Science + + + + China News + News + + + + Focus Today + Discussing the issues that matter today. + News Magazine + + + + Global News + News + + + + TV Drama + Chinese produced television drama. + Drama + + + + TV Drama + Chinese produced television drama. + Drama + + + + Universal Show + Arts & Entertainment + + + + Memory of China + History + + + + China News + News + + + + Across The Strait + News + + + + China's Public Opinion Field + News + + + + TV Drama + Chinese produced television drama. + Drama + + + + TV Drama + Chinese produced television drama. + Drama + + + + Bond with China + Science + + + + TV Drama + Chinese produced television drama. + Drama + + + + TV Drama + Chinese produced television drama. + Drama + + + + China News + News + + + + Dreamchaser + Science + + + + Nostalgia + Nostalgia aims to represent Chinese traditional culture by revealing life in villages in the way of story-telling. + Science + + + + China News + News + + + + Asia Today + Current affairs for viewers across Asia. + News + + + + Universal Show + Arts & Entertainment + + + + China News + News + + + + Focus Today + Discussing the issues that matter today. + News Magazine + + + + Universal Show + Arts & Entertainment + + + + Cartoon City + Variety + + + + Bond with China + Science + + + + Across The Strait + News + + + + Voice + Arts & Entertainment + + + + Voice + Arts & Entertainment + + + + China Showbiz + Arts & Entertainment + + + + Discoveries + Following the track of our ancestors to identify and interpret mysteries and cultural implications contained in physical and human geographies. Discoveries focuses on the historical, geographical and cultural discoveries in China. + News + + + + Nostalgia + Nostalgia aims to represent Chinese traditional culture by revealing life in villages in the way of story-telling. + Science + + + + TV Drama + Chinese produced television drama. + Drama + + + + TV Drama + Chinese produced television drama. + Drama + + + + China News + News + + + + Focus Today + Discussing the issues that matter today. + News Magazine + + + + China Showbiz + Arts & Entertainment + + + + Network News + Presents to viewer a considerable amount of information. + News + + + + Across The Strait + News + + + + National Treasures Found + Arts & Entertainment + + + + China News + News + + + + Focus Today + Discussing the issues that matter today. + News Magazine + + + + Global News + News + + + + TV Drama + Chinese produced television drama. + Drama + + + + TV Drama + Chinese produced television drama. + Drama + + + + Memory of China + History + + + + On the Way + News + + + + Nostalgia + Nostalgia aims to represent Chinese traditional culture by revealing life in villages in the way of story-telling. + Science + + + + China News + News + + + + Across The Strait + News + + + + National Treasures Found + Arts & Entertainment + + + + TV Drama + Chinese produced television drama. + Drama + + + + TV Drama + Chinese produced television drama. + Drama + + + + On the Way + News + + + + Nostalgia + Nostalgia aims to represent Chinese traditional culture by revealing life in villages in the way of story-telling. + Science + + + + TV Drama + Chinese produced television drama. + Drama + + + + TV Drama + Chinese produced television drama. + Drama + + + + China News + News + + + + China Showbiz + Arts & Entertainment + + + + China News + News + + + + Asia Today + Current affairs for viewers across Asia. + News + + + + Memory of China + History + + + + National Treasures Found + Arts & Entertainment + + + + China News + News + + + + Focus Today + Discussing the issues that matter today. + News Magazine + + + + Universal Show + Arts & Entertainment + + + + Cartoon City + Variety + + + + Memory of China + History + + + + Across The Strait + News + + + + On the Way + News + + + + On the Way + News + + + + China Showbiz + Arts & Entertainment + + + + Discoveries + Following the track of our ancestors to identify and interpret mysteries and cultural implications contained in physical and human geographies. Discoveries focuses on the historical, geographical and cultural discoveries in China. + News + + + + Nostalgia + Nostalgia aims to represent Chinese traditional culture by revealing life in villages in the way of story-telling. + Science + + + + TV Drama + Chinese produced television drama. + Drama + + + + TV Drama + Chinese produced television drama. + Drama + + + + China News + News + + + + Focus Today + Discussing the issues that matter today. + News Magazine + + + + China Showbiz + Arts & Entertainment + + + + Network News + Presents to viewer a considerable amount of information. + News + + + + Across The Strait + News + + + + National Treasures Found + Arts & Entertainment + + + + China News + News + + + + Focus Today + Discussing the issues that matter today. + News Magazine + + + + Global News + News + + + + TV Drama + Chinese produced television drama. + Drama + + + + TV Drama + Chinese produced television drama. + Drama + + + + Memory of China + History + + + + On the Way + News + + + + Nostalgia + Nostalgia aims to represent Chinese traditional culture by revealing life in villages in the way of story-telling. + Science + + + + China News + News + + + + Across The Strait + News + + + + National Treasures Found + Arts & Entertainment + + + + TV Drama + Chinese produced television drama. + Drama + + + + TV Drama + Chinese produced television drama. + Drama + + + + On the Way + News + + + + Nostalgia + Nostalgia aims to represent Chinese traditional culture by revealing life in villages in the way of story-telling. + Science + + + + TV Drama + Chinese produced television drama. + Drama + + + + TV Drama + Chinese produced television drama. + Drama + + + + China News + News + + + + China Showbiz + Arts & Entertainment + + + + Understanding the Bible + With various pastors. + Religious + + + + Come on and Celebrate! + Religious + + + + Sunday 11:30AM Worship + Specials + Religious + + + + Understanding the Bible + With various pastors. + Religious + + + + Osun Dosun + Religious + + + + Special Seminar + Compass. + Local + + + + Living Life + Korean. + Religious + + + + Word and Spirit + Religious + Local + + + + Is Genesis History? + A fascinating new look at the biblical, historical, and scientific evidence for Creation and the Flood. Learn from more than a dozen scientists and scholars as they explore the world around us in light of Genesis. + + Del Tackett + + Specials + Documentary + + + TVG + + + + Understanding the Bible + With various pastors. + Religious + + + + Reading the Bible Together for 20 Minutes a Day + Religious + + + + Bible and Healing Conference + Religious + + + + Understanding the Bible + With various pastors. + Religious + + + + Living Life + Korean. + Religious + + + + To Be Announced + Programming to be announced. + Performing Arts + Music + + + TVPG + + + + Reading the Bible Together for 20 Minutes a Day + Religious + + + + Mini Concert + Music + + + + Understanding the Bible + With various pastors. + Religious + + + + Prophet of Fire + Religious + + + + Living Life + Korean. + Religious + + + + Today's Devotion and Praise + Specials + Religious + + + + Sunday Worship + Religious + + + + Understanding the Bible + With various pastors. + Religious + + + + Sunday Worship + Religious + + + + Reading the Bible Together for 20 Minutes a Day + Religious + + + + Understanding the Bible + With various pastors. + Religious + + + + Sunday Worship + Religious + + + + Living Life + Korean. + Religious + + + + Sweet Heaven + Pyo Inbong and Yoon yoo sun. + Local + + + + Prayer Makes a Difference + Religious + + + + Sunday Worship + Religious + + + + Children's Worship Service + Specials + Religious + + + + Hosanna's Bible Playhouse + Religious + + + + Sunday Worship + Religious + + + + Osun Dosun + Religious + + + + On the Road + Religious + + + + Sena + Korean. + Specials + Religious + + + TV14 + + + + Youth Worship Service + Religious + + + + Sunday Worship + Religious + + + + Communication Skill for Children Ministry + Religious + + + + Reading the Bible Together for 20 Minutes a Day + Religious + + + + Sunday Worship + Religious + + + + Sunday Worship + Religious + + + + Living Life + Korean. + Religious + + + + Sunday Worship + Religious + + + + Sunday Worship + Religious + + + + Friday Worship + Religious + + + + Back to the Gospel + With Kim Youn-Ui. + Religious + + + + Come on and Celebrate! + Religious + + + + Living Life + Korean. + Religious + + + + 40 Days of Dawn Prayer + Religious + + + + Bible Film + Religious + + + + Living Life + Korean. + Religious + + + + Reading the Bible Together for 20 Minutes a Day + Religious + + + + Pastor Yong Jo Ha's Faith + Religious + + + + Living Life + Korean. + Religious + + + + 40 Days of Dawn Prayer + Religious + + + + Living Life + Korean. + Religious + + + + Reading the Bible Together for 20 Minutes a Day + Religious + + + + View-ridge + Religious + + + + On the Road + Religious + + + + Pastor Yong Jo Ha's Faith + Religious + + + + Understanding the Bible + With various pastors. + Religious + + + + Revival by Zentezen Franklin + Religious + + + + Pastor Yong Jo Ha's People of the Holy Spirit + Religious + + + + Jung JooHo is Rooting for Your Health! + Health + + + + Living Life + Korean. + Religious + + + + 10 Minute Message + With various pastors. + Religious + + + + Reading the Bible Together for 20 Minutes a Day + Religious + + + + Sweet Sounds with Kim Young woo + Specials + Religious + + + + DIscovery Bible Characters + Religious + + + + View-ridge + Religious + + + + Just 10 Minutes + Religious + + + + Understanding the Bible + With various pastors. + Religious + + + + CGN Vision Seminar + Religious + + + + Understanding the Bible + With various pastors. + Religious + + + + Understanding the Bible + With various pastors. + Religious + + + + Children's Worship Service + Specials + Religious + + + + Sena + Korean. + Specials + Religious + + + TV14 + + + + Prayer Makes a Difference + Religious + + + + Understanding the Bible + With various pastors. + Religious + + + + Understanding the Bible + With various pastors. + Religious + + + + Understanding the Bible + With various pastors. + Religious + + + + A Pilgrimage to Korea + Specials + Religious + + + + Pastor Yong Jo Ha's People of the Holy Spirit + Religious + + + + Reading the Bible Together for 20 Minutes a Day + Religious + + + + Jung JooHo is Rooting for Your Health! + Health + + + + 10 Minute Message + With various pastors. + Religious + + + + Sunday Worship + Religious + + + + Communication Skill for Children Ministry + Religious + + + + Just 10 Minutes + Religious + + + + Living Life + Korean. + Religious + + + + Searching for Springtime + Religious + + + + Searching for Springtime + Religious + + + + Understanding the Bible + With various pastors. + Religious + + + + Understanding the Bible + With various pastors. + Religious + + + + Reading the Bible Together for 20 Minutes a Day + Religious + + + + Beyond the Gates of Splendor + Religious + + + + The Skill of Conversation with Doctor OH + Local + + + + 10 Minute Message + With various pastors. + Religious + + + + Living Life + Korean. + Religious + + + + 40 Days of Dawn Prayer + Religious + + + + Bible Film + Religious + + + + Living Life + Korean. + Religious + + + + Reading the Bible Together for 20 Minutes a Day + Religious + + + + Pastor Yong Jo Ha's 40 Day Journey to Lukes + Religious + + + + Living Life + Korean. + Religious + + + + 40 Days of Dawn Prayer + Religious + + + + Living Life + Korean. + Religious + + + + Reading the Bible Together for 20 Minutes a Day + Religious + + + + CGN World News + Religious + + + + Just 10 Minutes + Religious + + + + Understanding the Bible + With various pastors. + Religious + + + + Understanding the Bible + With various pastors. + Religious + + + + Out of the Comfort Zone + Religious + + + + Pastor Yong Jo Ha's People of the Holy Spirit + Religious + + + + Jung JooHo is Rooting for Your Health! + Health + + + + Living Life + Korean. + Religious + + + + 10 Minute Message + With various pastors. + Religious + + + + Reading the Bible Together for 20 Minutes a Day + Religious + + + + Beyond the Gates of Splendor + Religious + + + + Special Seminar + Compass. + Local + + + + CGN World News + Religious + + + + Just 10 Minutes + Religious + + + + Understanding the Bible + With various pastors. + Religious + + + + The Skill of Conversation with Doctor OH + Local + + + + Understanding the Bible + With various pastors. + Religious + + + + Understanding the Bible + With various pastors. + Religious + + + + God-Toon + Religious + Children + + + + Hosanna's Bible Playhouse + Religious + + + + Sena + Korean. + Specials + Religious + + + TV14 + + + + Bible Film + Religious + + + + Understanding the Bible + With various pastors. + Religious + + + + Understanding the Bible + With various pastors. + Religious + + + + Understanding the Bible + With various pastors. + Religious + + + + Welcome to the Old Testament for the Fifties + Religious + + + + Pastor Yong Jo Ha's People of the Holy Spirit + Religious + + + + Reading the Bible Together for 20 Minutes a Day + Religious + + + + Jung JooHo is Rooting for Your Health! + Health + + + + 10 Minute Message + With various pastors. + Religious + + + + Sunday Worship + Religious + + + + Just 10 Minutes + Religious + + + + Living Life + Korean. + Religious + + + + Revival by Zentezen Franklin + Religious + + + + Revival by Zentezen Franklin + Religious + + + + Understanding the Bible + With various pastors. + Religious + + + + Understanding the Bible + With various pastors. + Religious + + + + Reading the Bible Together for 20 Minutes a Day + Religious + + + + Osun Dosun + Religious + + + + Communication Skill for Children Ministry + Religious + + + + Seminars for the Happiness in Theology + Religious + + + + 10 Minute Message + With various pastors. + Religious + + + + Living Life + Korean. + Religious + + + + 40 Days of Dawn Prayer + Religious + + + + Bible Film + Religious + + + + Living Life + Korean. + Religious + + + + Reading the Bible Together for 20 Minutes a Day + Religious + + + + Pastor Yong Jo Ha's 40 Day Journey to Lukes + Religious + + + + Living Life + Korean. + Religious + + + + 40 Days of Dawn Prayer + Religious + + + + Living Life + Korean. + Religious + + + + Reading the Bible Together for 20 Minutes a Day + Religious + + + + View-ridge + Religious + + + + Just 10 Minutes + Religious + + + + Understanding the Bible + With various pastors. + Religious + + + + Understanding the Bible + With various pastors. + Religious + + + + Growing in Grace + Religious + + + + Pastor Yong Jo Ha's People of the Holy Spirit + Religious + + + + Jung JooHo is Rooting for Your Health! + Health + + + + Living Life + Korean. + Religious + + + + 10 Minute Message + With various pastors. + Religious + + + + Reading the Bible Together for 20 Minutes a Day + Religious + + + + Wednesday Women's Worship + Specials + Religious + + + + Seminars for the Happiness in Theology + Religious + + + + View-ridge + Religious + + + + Mini Concert + Music + + + + Understanding the Bible + With various pastors. + Religious + + + + Special Seminar + Compass. + Local + + + + Understanding the Bible + With various pastors. + Religious + + + + Understanding the Bible + With various pastors. + Religious + + + + Children's Worship Service + Specials + Religious + + + + Sena + Korean. + Specials + Religious + + + TV14 + + + + Girlfriends + Too Much Sharin' + When Joan discovers that William and her boss Sharon are secretly dating, she gets caught in the middle; Toni seeks advice for her wedding night. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TV14 + + + + Girlfriends + The Wedding + Toni's plans for a glamorous wedding at a rented Malibu mansion prove to be too much for her girlfriends and fiance; Maya makes the moves on Toni's brother, Antoine (Russell Hornsby). + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TVPG + + + + Girlfriends + The Wedding + Toni's plans for a glamorous wedding at a rented Malibu mansion prove to be too much for her girlfriends and fiance; Maya makes the moves on Toni's brother, Antoine (Russell Hornsby). + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TVPG + + + + Girlfriends + Blood Is Thicker Than Liquor + Toni's mother (Jenifer Lewis) becomes tipsy when meeting Todd's family for the first time; Maya flirts with William's new friend, Evan. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TV14 + + + + Girlfriends + Some Enchanted Evening + Joan's steamy encounter with a handsome stranger (Malik Yoba) puts her relationship with Ellis in danger. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TV14 + + + + Girlfriends + If It's Broke, Fix It + Maya becomes jealous when Joan chooses to confide in her new assistant, Peaches, about her affair with Brock. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TVPG + + + + Girlfriends + Hopelessly Devoted to Two + Ellis unknowingly invites Joan's lover (Malik Yoba) to dinner; Maya wins William over with her legal expertise. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TVPG + + + + Girlfriends + Snoop, There It Is + Lynn, distrusting of her celibate relationship, tracks down Sivad's ex-girlfriend in an attempt to learn more about his sexual history; Joan and William struggle to stop Toni from going on wild shopping sprees. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TVPG + + + + Girlfriends + You Ain't Gotta Go Home But ... You Know the Rest! + Toni's brother professes his love for Maya and refuses to return to his medical internship; Joan cleans house but takes exception to things Toni labels as junk. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TVPG + + + + Girlfriends + Inherit the Lynn + Maya agrees to let Lynn move in with her in order to cover an increase in her tuition; Lynn's attitude toward working on her next documentary drives Maya over the edge. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TVPG + + + + Girlfriends + And Baby Makes Four + Kira goes into early labor during a baby shower; Todd and Toni contemplate parenthood as they shop for baby gifts. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TVPG + + + + Girlfriends + Too Much Sharin' + When Joan discovers that William and her boss Sharon are secretly dating, she gets caught in the middle; Toni seeks advice for her wedding night. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TV14 + + + + Girlfriends + The Wedding + Toni's plans for a glamorous wedding at a rented Malibu mansion prove to be too much for her girlfriends and fiance; Maya makes the moves on Toni's brother, Antoine (Russell Hornsby). + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TVPG + + + + Girlfriends + Viva Las Vegas + Joan assumes Brock (guest star Malik Yoba) wants to marry her when he asks her to go to Las Vegas with him. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TVPG + + + + Girlfriends + Between Brock and a Hard Place + Brock (Malik Yoba) tells Joan he does not want children, causing her to question their future together. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TV14 + + + + Girlfriends + Don't You Want Me, Baby? + Todd withholds a message from Toni's ex-boyfriend; Joan fears that she may not be mother material, because William's nephew cries when she holds him. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TV14 + + + + Girlfriends + Merry Ex-mas + Maya invites her ex-husband and his new woman to a tree trimming party with the girlfriends. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + Christmas + + + TVPG + + + + KILL COVID-19 WITH CLEANBOSS! + Bye Bye Bacteria! Farewell to Germs, COVID-19, Grease & Grime in your home with CleanBoss! Wipe away the worst messes in your home and keep your children & pets safe. Bad viruses, bacteria, fungus mold & allergens don't stand a chance with CleanBoss! + Paid Program + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + Men's Health - All-Natural Secret for Prostate Health + Prosvent is a doctor formulated blend of rejuvenating herbs and nutrients that help protect overall prostate health. + Paid Program + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + Cooking for Real + Noshin N' Awlins + Shrimp pot pie; French toast with caramelized pecans; strawberries and cream; Sazarak cocktail. + Food + Instructional + + + TVG + + + + Cooking for Real + Carolina on My Mind + Apple- and onion-stuffed pork chops; vegetarian. + Food + Instructional + + + TVG + + + + Cooking for Real + Mexin' It Up + Huevos rancheros with homemade black bean puree; Mexican street corn; homemade churros with a hint of lime. + Food + Instructional + + + TVG + + + + Cooking for Real + Bistro Night In + Grilled chicken with white wine mushroom sauce; garlic hasselback potatoes with herbed sour cream; wilted green salad with warm bacon vinaigrette. + Food + Instructional + + + TVG + + + + Living by Design + Qualah Gooden + Qualah wants her living room to reflect her love of music. Jake designs an art piece with a music theme, while Jazz adds curtains, tables, and lighting to complete the look. The reveal meal is Seafood Stuffed Shells, and a Lemon Vanilla Bundt Cake. + Home + Instructional + + + + Living by Design + Yassmin Rosario + Jake & Jazz revamp Yassmin's kitchen to show off her love of baking. Jazz pops the space in shades of pink with the perfect storage options. Jake makes a combo workstation/table on wheels. The meal is Chicken Piccata and Red Velvet Cinnamon Rolls. + Home + Instructional + + + + Living by Design + Diandra and Dante Anderson + Jake & Jazz work wonders on this living room! Jake adds texture with a wall installation and Jazz adds style with unique accessories in gold and green. The meal is Stuffed Chicken Breast over Garlic Rice and Coconut-Caramel-Chocolate Cookies. + Home + Instructional + + + + Living by Design + Sunne-Ryse and Kyle Smith + Jake and Jazz redesign the bedroom with style. Jake builds an oversized headboard. Jazz adds light colors, cozy pillows, and furniture with a touch of wicker. + Home + Instructional + + + + Decor Remixed + Legacy Events + Dominique meets with Nikaya and Doug a brother/sister team owning the warehouse space they want transformed into a high end and luxurious event space in two weeks. Meanwhile, Dominique feels it's time to take new branding photos the team. + Home + + + + Decor Remixed + Aasim's House + Dominique meets with her sister Christina, a realtor, to stage a client's home, only to discover a tiny budget and short timeline. Challenged to be frugal and creative, Dominique's ideas and unexpected discovery turn a dated home into a show-stopper. + Home + + + + Decor Remixed + Dawn's Kitchen + Dominique is bringing it home as she remixes her mom's kitchen. The kitchen has been the exact same way for over 20 years and her mom, Dawn, finally thinks it's time for an upgrade. Dominique comes up with a custom design that is sure to leave her.. + Home + + + + Decor Remixed + Raina's Bedroom + Dominique and Dre transform Dre's sister Raina and her husband Jarrod's bedroom. After a terrifying experience left Raina unwilling to redesign the room herself, it's now up to Dominique and Dre to create a peaceful retreat where Raina and Jarrod ... + Home + + + + The Parkers + She's Positive + While celebrating his birthday, T meets the girl of his dreams, then finds out she is HIV-positive. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + The Parkers + Judge Not a Book + Nikki's best-selling romance novel turns the professor into an object of women's affections. Shaquille O'Neal guest stars as himself. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + The Parkers + Practice What You Preach + Nikki must help an old friend, who has become a minister, when her crazy past causes problems for the church. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + The Parkers + Could It Be You? + Desperate for some alone time with her boyfriend, Andell secretly arranges a blind date for Nikki. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + The Parkers + A Little Change Never Hurt Anyone + Nikki and Johnnie's relationship gets serious when he is offered a job in New York; Kim decides to start her own design business. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + The Parkers + At Last + The professor must stop Nikki from marrying Johnnie after realizing he loves her; Stevie and T graduate from school. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + The Parkers + Scammed Straight + Kim and Nikki take jobs at a psychic hotline; Nikki tries to score points with Professor Olgevee by dog-sitting. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVG + + + + The Parkers + Grape Nuts + Nikki decides to pledge Kim's sorority, so both try to get a picture of professor Oglevee to prove their worthiness to the girls. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + The Parkers + The Boomerang Effect + Kim and Nikki (Countess Vaughn, Mo'Nique) recruit a shy student (guest star Nicholas Gonzalez) for their pin-up calendar and turn him into a. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + The Parkers + Daddy's Girl + When Kim lands in jail after a wild party and Nikki flips out, Kim decides to move in with her easy-going father. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + The Parkers + Taking Tae-Bo, With My Beau + Desiree takes Tae-Bo classes hoping to sign Billy Blanks as a client; Kim knocks out Professor Oglevee. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + The Parkers + Three's a Shag + Kim finds herself without a date when she declines Hakeem's invitation to an. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + The Parkers + Kimberlale + A boutique owner orders one of Kim's fashion designs, but filling the order may mean putting college on hold. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + The Parkers + Quarantine + Kim and Nikki (Countess Vaughn, Mo'Nique) go stir crazy when they are quarantined after being exposed to a deadly virus. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + The Parkers + And the Band Plays On + Kim (Countess Vaughn) takes a dim view of the pretty new singer (guest star Tempestt Bledsoe) T (Ken Lawson) adds to his band. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + The Parkers + Betting on Love + When Nikki's old flame, a high-stakes gambler, tries to woo her back, Professor Oglevee stands to lose. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + The Parkers + She's Positive + While celebrating his birthday, T meets the girl of his dreams, then finds out she is HIV-positive. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + The Parkers + Judge Not a Book + Nikki's best-selling romance novel turns the professor into an object of women's affections. Shaquille O'Neal guest stars as himself. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + The Parkers + Practice What You Preach + Nikki must help an old friend, who has become a minister, when her crazy past causes problems for the church. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + The Parkers + Could It Be You? + Desperate for some alone time with her boyfriend, Andell secretly arranges a blind date for Nikki. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + The Parkers + A Little Change Never Hurt Anyone + Nikki and Johnnie's relationship gets serious when he is offered a job in New York; Kim decides to start her own design business. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + The Parkers + At Last + The professor must stop Nikki from marrying Johnnie after realizing he loves her; Stevie and T graduate from school. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + The Parkers + Scammed Straight + Kim and Nikki take jobs at a psychic hotline; Nikki tries to score points with Professor Olgevee by dog-sitting. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVG + + + + The Parkers + Grape Nuts + Nikki decides to pledge Kim's sorority, so both try to get a picture of professor Oglevee to prove their worthiness to the girls. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + The Parkers + The Boomerang Effect + Kim and Nikki (Countess Vaughn, Mo'Nique) recruit a shy student (guest star Nicholas Gonzalez) for their pin-up calendar and turn him into a. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + The Parkers + Daddy's Girl + When Kim lands in jail after a wild party and Nikki flips out, Kim decides to move in with her easy-going father. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + DST + Regular + + + + The Parkers + Three's a Shag + Kim finds herself without a date when she declines Hakeem's invitation to an. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + The Parkers + Kimberlale + A boutique owner orders one of Kim's fashion designs, but filling the order may mean putting college on hold. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + The Parkers + Quarantine + Kim and Nikki (Countess Vaughn, Mo'Nique) go stir crazy when they are quarantined after being exposed to a deadly virus. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + The Parkers + And the Band Plays On + Kim (Countess Vaughn) takes a dim view of the pretty new singer (guest star Tempestt Bledsoe) T (Ken Lawson) adds to his band. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + The Parkers + Betting on Love + When Nikki's old flame, a high-stakes gambler, tries to woo her back, Professor Oglevee stands to lose. + + Countess Vaughn + Mo'Nique + Dorien Wilson + + Sitcom + Drama + + + TVPG + + + + Peter Popoff Ministries + For over 30 years Reverend Peter Popoff has provided spiritual direction and powerful testimonies to receive God's blessings in your life. + Paid Program + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + Men's Health - All-Natural Secret for Prostate Health + Prosvent is a doctor formulated blend of rejuvenating herbs and nutrients that help protect overall prostate health. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + For Your Love + The What Have We Done? Show + Mel and Malena's newborn keeps them up with constant crying; Dean and Sheri fumble with the aftermath of their passion. + + Holly Robinson Peete + James Lesure + Tamala Jones + + Sitcom + + + TVPG + + + + For Your Love + The Great Escape + Malena leaves Mel alone with the baby for the first time; Reggie considers taking a job at a Caribbean resort. + + Holly Robinson Peete + James Lesure + Tamala Jones + + Sitcom + + + TVPG + + + + Half & Half + The Big My Funny Valentine Episode + Spencer's budding relationship with a rival record executive (Michelle Williams) causes conflict with Mona. + + Rachel True + Essence Atkins + Telma Hopkins + + Sitcom + + + TVPG + + + + Half & Half + The Big Take Me as I Am Episode + Spencer's new girlfriend (Michelle Williams) continues to resist his advances. + + Rachel True + Essence Atkins + Telma Hopkins + + Sitcom + + + TVPG + + + + Half & Half + The Big Reality Bites Episode + Dee Dee's new actor boyfriend asks her to join him when he is set to star in a new reality show. + + Rachel True + Essence Atkins + Telma Hopkins + + Sitcom + + + TVPG + + + + Half & Half + The Big Stuck in the Middle Episode + Mona is in the middle when her old boyfriend asks her to help him get a job with her current boyfriend, Chase (Lamman Rucker). + + Rachel True + Essence Atkins + Telma Hopkins + + Sitcom + + + TVPG + + + + Girlfriends + Merry Ex-mas + Maya invites her ex-husband and his new woman to a tree trimming party with the girlfriends. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + Christmas + + + TVPG + + + + Girlfriends + A Comedy of Eros + Toni tries to keep Joan from spending St. Valentine's Day alone; Joan gets reacquainted with her ex-boyfriend; William gets Lynn to spy on Donna. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TVPG + + + + Girlfriends + Prophet and Loss + A street oracle (Richard Kind) leads Joan to question her relationship with Brock and William to seek out a potential love interest. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TVPG + + + + Girlfriends + Leggo My Ego + Toni decides to start therapy after meeting her idol, supermodel Beverly Johnson; Joan organizes an auction to benefit the homeless. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TV14 + + + + One on One + Goodbye, Mr. Chips + Flex faces off with his nemesis, Kevin Frazier, during the annual celebrity poker tournament. Guest stars Claudia Jordan, John Salley. + + Flex Alexander + Kyla Pratt + Kelly Perine + + Sitcom + + + TVPG + + + + One on One + Lock Blockin' + Hoping to jar Flex out of his depression, Duane surprises him with an opportunity to sing with his favorite group, New Edition. + + Flex Alexander + Kyla Pratt + Kelly Perine + + Sitcom + + + TVPG + + + + Tia Mowry's Quick Fix + What It Was Really Like Being a Child Star + Talk Shows + Variety + + + + Tia Mowry's Quick Fix + Thanksgiving Collard Greens, Cornbread and Mac and Cheese + Hope you're hungry, because Tia is cooking up some family famous Thanksgiving sides today! First, she's making her collard greens and cornbread, then her family's favorite mac and cheese. + Talk Shows + Variety + + + + Tia Mowry's Quick Fix + Gender Reveal, Nursery Tour and More + This episode is jam packed. First, Tia's sharing her gender reveal, then a tour of the baby's new nursery. Plus some toy organization hacks no one would want to miss. + Talk Shows + Variety + + + + Tia Mowry's Quick Fix + Spaghetti With My Dad + Talk Shows + Variety + + + + Tia Mowry's Quick Fix + Recreating Iconic Hairstyles + Time for a throwback! Today Tia is recreating some iconic hairstyles from projects past, then she shows off a few of her favorite Instagram worthy styles for curly hair. + Talk Shows + Variety + + + + Tia Mowry's Quick Fix + My Baby Shower Plus Pregnancy Outfits + Oh Baby! It's time for my Tia's baby shower and you're invited! Then, check out some of her favorite pregnancy outfits for looking cute and feeling comfortable. + Talk Shows + Variety + + + + Tia Mowry's Quick Fix + Chicken's for Dinner! + Winner, winner, chicken's for dinner. First, Tia is cooking up her delicious maple glazed chicken, then she's sharing her spicy Nashville hot fried chicken. + Talk Shows + Variety + + + + Tia Mowry's Quick Fix + Internet Slang + This episode is guaranteed to make you LOL. It's time for an internet slang challenge with a special guest! Here's to hoping this game doesn't turn out sus.... + Talk Shows + Variety + + + + Girlfriends + Merry Ex-mas + Maya invites her ex-husband and his new woman to a tree trimming party with the girlfriends. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + Christmas + + + TVPG + + + + Girlfriends + A Comedy of Eros + Toni tries to keep Joan from spending St. Valentine's Day alone; Joan gets reacquainted with her ex-boyfriend; William gets Lynn to spy on Donna. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TVPG + + + + Girlfriends + Prophet and Loss + A street oracle (Richard Kind) leads Joan to question her relationship with Brock and William to seek out a potential love interest. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TVPG + + + + Girlfriends + Leggo My Ego + Toni decides to start therapy after meeting her idol, supermodel Beverly Johnson; Joan organizes an auction to benefit the homeless. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TV14 + + + + One on One + Pilot + A sportscaster (Flex Alexander) takes in his 14-year-old daughter (Kyla Pratt) when her mother moves to another country. + + Flex Alexander + Kyla Pratt + Kelly Perine + + Sitcom + + + TVPG + + + + One on One + Jailbait + Breanna breaks curfew, and Flex decides to teach her a lesson; Duane tries to avoid an angry customer. + + Flex Alexander + Kyla Pratt + Kelly Perine + + Sitcom + + + TVPG + + + + One on One + Radioactive Platonic + Breanna's friend from Atlanta turns out to be more than she appears; Duane tries to get an autograph from Cal Ripken Jr. + + Flex Alexander + Kyla Pratt + Kelly Perine + + Sitcom + + + TVPG + + + + One on One + School Dazed + Flex wants Breanna to attend a private school, while she wants to go to a school for the performing arts. + + Flex Alexander + Kyla Pratt + Kelly Perine + + Sitcom + + + TVPG + + + + One on One + My Life as a Dogg + When Breanna begins emulating her father's attitudes toward the opposite sex, Flex enlists a former girlfriend (Laila Ali) to help set a better example. + + Flex Alexander + Kyla Pratt + Kelly Perine + + Sitcom + + + TVPG + + + + One on One + Let's Wait Awhile + Flex finds condoms in Breanna's room while she's away on a school ski trip and rushes to the resort to put a stop to her plans. + + Flex Alexander + Kyla Pratt + Kelly Perine + + Sitcom + + + TVPG + + + + One on One + Playing Possum + Breanna gets a crush on a handsome football player and goes out for the cheerleading squad; Duane drafts Flex as a spokesman for his used car lot. + + Flex Alexander + Kyla Pratt + Kelly Perine + + Sitcom + + + TVPG + + + + One on One + Phantom Menace + Breanna and her friends think they witness a murder while spying on a Halloween party; Flex is haunted by a rival. + + Flex Alexander + Kyla Pratt + Kelly Perine + + Sitcom + Christmas + + + TVPG + + + + One on One + Fifteen Candles + Flex tries to outdo his ex-wife on Breanna's birthday by arranging for a private performance by the rapper Lil' Zane. + + Flex Alexander + Kyla Pratt + Kelly Perine + + Sitcom + + + TVPG + + + + One on One + Mi Casa Es Mi Casa + Flex's girlfriend develops a passion for home decorating when his pad is picked for a profile on MTV's. + + Flex Alexander + Kyla Pratt + Kelly Perine + + Sitcom + + + TVPG + + + + One on One + Pilot + A sportscaster (Flex Alexander) takes in his 14-year-old daughter (Kyla Pratt) when her mother moves to another country. + + Flex Alexander + Kyla Pratt + Kelly Perine + + Sitcom + + + TVPG + + + + One on One + Jailbait + Breanna breaks curfew, and Flex decides to teach her a lesson; Duane tries to avoid an angry customer. + + Flex Alexander + Kyla Pratt + Kelly Perine + + Sitcom + + + TVPG + + + + One on One + Radioactive Platonic + Breanna's friend from Atlanta turns out to be more than she appears; Duane tries to get an autograph from Cal Ripken Jr. + + Flex Alexander + Kyla Pratt + Kelly Perine + + Sitcom + + + TVPG + + + + One on One + School Dazed + Flex wants Breanna to attend a private school, while she wants to go to a school for the performing arts. + + Flex Alexander + Kyla Pratt + Kelly Perine + + Sitcom + + + TVPG + + + + One on One + My Life as a Dogg + When Breanna begins emulating her father's attitudes toward the opposite sex, Flex enlists a former girlfriend (Laila Ali) to help set a better example. + + Flex Alexander + Kyla Pratt + Kelly Perine + + Sitcom + + + TVPG + + + + One on One + Let's Wait Awhile + Flex finds condoms in Breanna's room while she's away on a school ski trip and rushes to the resort to put a stop to her plans. + + Flex Alexander + Kyla Pratt + Kelly Perine + + Sitcom + + + TVPG + + + + One on One + Playing Possum + Breanna gets a crush on a handsome football player and goes out for the cheerleading squad; Duane drafts Flex as a spokesman for his used car lot. + + Flex Alexander + Kyla Pratt + Kelly Perine + + Sitcom + + + TVPG + + + + One on One + Phantom Menace + Breanna and her friends think they witness a murder while spying on a Halloween party; Flex is haunted by a rival. + + Flex Alexander + Kyla Pratt + Kelly Perine + + Sitcom + Christmas + + + TVPG + + + + One on One + Fifteen Candles + Flex tries to outdo his ex-wife on Breanna's birthday by arranging for a private performance by the rapper Lil' Zane. + + Flex Alexander + Kyla Pratt + Kelly Perine + + Sitcom + + + TVPG + + + + One on One + Mi Casa Es Mi Casa + Flex's girlfriend develops a passion for home decorating when his pad is picked for a profile on MTV's. + + Flex Alexander + Kyla Pratt + Kelly Perine + + Sitcom + + + TVPG + + + + Peter Popoff Ministries + For over 30 years Reverend Peter Popoff has provided spiritual direction and powerful testimonies to receive God's blessings in your life. + Paid Program + + + + Men's Health - All-Natural Secret for Prostate Health + Prosvent is a doctor formulated blend of rejuvenating herbs and nutrients that help protect overall prostate health. + Paid Program + + + + KILL COVID-19 WITH CLEANBOSS! + Bye Bye Bacteria! Farewell to Germs, COVID-19, Grease & Grime in your home with CleanBoss! Wipe away the worst messes in your home and keep your children & pets safe. Bad viruses, bacteria, fungus mold & allergens don't stand a chance with CleanBoss! + Paid Program + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + For Your Love + The Friend in Need + Sherri and Bobbi help Malena slim down for Evan's christening. + + Holly Robinson + James Lesure + Tamala Jones + + Sitcom + + + TVPG + + + + For Your Love + The Boy From Uncle + Mel's young uncle (Eugene Byrd) visits with plans to take over the family restaurant. + + Holly Robinson + James Lesure + Tamala Jones + + Sitcom + + + TVPG + + + + Half & Half + The Big `What Have We Done' Episode + Dee Dee tries to butter up Brent by inviting him to dinner, but things do not go as planned after they both drink too much. + + Rachel True + Essence Atkins + Telma Hopkins + + Sitcom + + + TVPG + + + + Half & Half + The Big Nervous Breakup Episode + Following a brief encounter with her ex-boyfriend, Mona has provocative thoughts about other men; Big Dee Dee produces Adam's stand-up show. + + Rachel True + Essence Atkins + Telma Hopkins + + Sitcom + + + TVPG + + + + Half & Half + The Big Mother's What?! Episode + After she breaks up with Chase, Mona's emotions get out of hand and jeopardize her career; Dee Dee suspects one of her clients is having an affair. + + Rachel True + Essence Atkins + Telma Hopkins + + Sitcom + + + TVPG + + + + Half & Half + The Big Hide & Sneak Episode + Mona sees a therapist to cope with the breakup and makes a discovery about Chase; Dee Dee tries to counsel Brett about staff relations at the office. + + Rachel True + Essence Atkins + Telma Hopkins + + Sitcom + + + TVPG + + + + Girlfriends + Good Catch or Bad Hop? + Maya enjoys dating a professional athlete until she discovers he's seeing other women; Lynn baby-sits while the single mothers in her documentary go to a job fair. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TVPG + + + + Girlfriends + On the Couch + Toni finds herself in the middle of a fight between her visiting mother and Todd; William gets his first kiss. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TVPG + + + + Girlfriends + Love, Peace and Hair Grease + Joan confides in her boss, only to worry that she has put her career in jeopardy; Maya writes a passionate essay that fails to impress her teacher but inspires her friends. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TV14 + + + + Girlfriends + Wieners and Losers + At her new job selling hot dogs, Joan meets her match in her new obsessive compulsive manager; the girlfriends hide William's favorite pen, driving him mad. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TV14 + + + + One on One + Rock and a Hard Place + Spirit starts dating the lead singer of a rival band, jeopardizing her relationship with Breanna and Arnaz. + + Flex Alexander + Kyla Pratt + Kelly Perine + + Sitcom + + + TVPG + + + + One on One + Contract High + Flex becomes frustrated when his co-star gets preferential treatment, so he hires a high-powered agent to get him what he believes he deserves. + + Flex Alexander + Kyla Pratt + Kelly Perine + + Sitcom + + + TVPG + + + + Boss Girl's Guide + Uptown Fitness and Flavor + Tiffany take us on a boat tour of and gets an up close look at some of New York's landmarks and must see hot spots. Then it's off to the. + Local + Business + + + + Boss Girl's Guide + Food Scene In Brooklyn + Kela takes us to some of her favorite food spots in Brooklyn. First it's. + Local + Business + + + + Boss Girl's Guide + Food, Home & Style + The Dutchess takes us out and about and gives us a taste of some great food at. + Local + Business + + + + Boss Girl's Guide + Self Care + Tiffany M. Battle shows us how she does a little selfcare. She kicks things off with the ultimate facial at. + Local + Business + + + + CLEO Chronicles + NJ Boss Ladies with Dutchess of Ink + Dutchess of Ink celebrates NJ's boss ladies. We Meet Izzie Livingston of Closet Savvy Consignment, Next is Shalea Walker of Walker's Apothecary for a facial, then we meet Rashena Burroughs owner of The Zucchini Bar. + Performing Arts + + + + CLEO Chronicles + Life Lessons with Cuban Link + Cuban Link gets some first-hand life lessons. She start with a self-defense class with tips for every woman. Then she gets a cooking lesson with Cleo's Chef Jernard Wells. + Performing Arts + + + + CLEO Chronicles + Down to Business with Angel Gregorio + DC Influencer Angel Gregorio shares her insight on running a business in DC and we meet some black women entrepreneurs. Then she heads to Turning Natural Juice Bar. + Performing Arts + + + + CLEO Chronicles + The Best of Brooklyn with Kela Walker + Kéla Walker shares the best of Brooklyn! On deck is DaleView Biscuits & Beer, then we meet the woman behind Style Eyes Optical, we end with black art at Richard Beavers Gallery. + Performing Arts + + + + Girlfriends + Good Catch or Bad Hop? + Maya enjoys dating a professional athlete until she discovers he's seeing other women; Lynn baby-sits while the single mothers in her documentary go to a job fair. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TVPG + + + + Girlfriends + On the Couch + Toni finds herself in the middle of a fight between her visiting mother and Todd; William gets his first kiss. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TVPG + + + + Girlfriends + Love, Peace and Hair Grease + Joan confides in her boss, only to worry that she has put her career in jeopardy; Maya writes a passionate essay that fails to impress her teacher but inspires her friends. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TV14 + + + + Girlfriends + Wieners and Losers + At her new job selling hot dogs, Joan meets her match in her new obsessive compulsive manager; the girlfriends hide William's favorite pen, driving him mad. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TV14 + + + + Eve + They've Come Undone + After J.T.'s parents see Shelly in a racy reality video, he admits to her his doubts about marrying her. + + Eve + Jason George + Ali Landry + + Sitcom + + + TVPG + + + + Eve + They've Come Undone + A humiliated J.T. admits to Shelly that he doubts whether she is the kind of woman he can marry. + + Eve + Jason George + Ali Landry + + Sitcom + + + TVPG + + + + Eve + OVER + Just when Shelly thinks she and J.T. are making progress, she learns that his idea of compromise involves her changing who she is. + + Eve + Jason George + Ali Landry + + Sitcom + + + TVPG + + + + Eve + Self Helpless + Shelly reads a self-help book that encourages her to spend time with herself in order to get over her breakup. + + Eve + Jason George + Ali Landry + + Sitcom + + + TVPG + + + + Eve + All My Exes Havin' Sexes + Rita and Janie warn Shelly about sleeping with J.T., but Shelly ignores them until she realizes that she is behaving as if she and J.T. were still together. + + Eve + Jason George + Ali Landry + + Sitcom + + + TVPG + + + + Eve + The Hate-Trix Reloaded + Shelly takes the advice of a self help book and sends an e-mail to J.T. asking for her stuff, sparking petty attempts at payback that spiral out of control. + + Eve + Jason George + Ali Landry + + Sitcom + + + TVPG + + + + Eve + Footloose + When Shelly turns to J.T. for help with a knee injury, she ends up getting a date with a doctor and making J.T. jealous. + + Eve + Jason George + Ali Landry + + Sitcom + + + TVPG + + + + Eve + Splice of Life + Shelly feels left out when Rita, after being evicted, comes to stay with Janie and the two rediscover their Cajun roots together. + + Eve + Jason George + Ali Landry + + Sitcom + + + TVPG + + + + Eve + Friend or Foe? + After Shelly and J.T.'s bickering ruins a night at a movie, she turns to her new friend, Claudia (Danica McKellar), for advice. + + Eve + Jason George + Ali Landry + + Sitcom + + + TVPG + + + + Eve + Love TKO + J.T. thinks he accepts Shelly dating other people until he meets her new beau, Adrian (Amaury Nolasco), a handsome boxer. + + Eve + Jason George + Ali Landry + + Sitcom + + + TVPG + + + + Eve + They've Come Undone + After J.T.'s parents see Shelly in a racy reality video, he admits to her his doubts about marrying her. + + Eve + Jason George + Ali Landry + + Sitcom + + + TVPG + + + + Eve + They've Come Undone + A humiliated J.T. admits to Shelly that he doubts whether she is the kind of woman he can marry. + + Eve + Jason George + Ali Landry + + Sitcom + + + TVPG + + + + Eve + OVER + Just when Shelly thinks she and J.T. are making progress, she learns that his idea of compromise involves her changing who she is. + + Eve + Jason George + Ali Landry + + Sitcom + + + TVPG + + + + Eve + Self Helpless + Shelly reads a self-help book that encourages her to spend time with herself in order to get over her breakup. + + Eve + Jason George + Ali Landry + + Sitcom + + + TVPG + + + + Eve + All My Exes Havin' Sexes + Rita and Janie warn Shelly about sleeping with J.T., but Shelly ignores them until she realizes that she is behaving as if she and J.T. were still together. + + Eve + Jason George + Ali Landry + + Sitcom + + + TVPG + + + + Eve + The Hate-Trix Reloaded + Shelly takes the advice of a self help book and sends an e-mail to J.T. asking for her stuff, sparking petty attempts at payback that spiral out of control. + + Eve + Jason George + Ali Landry + + Sitcom + + + TVPG + + + + Eve + Footloose + When Shelly turns to J.T. for help with a knee injury, she ends up getting a date with a doctor and making J.T. jealous. + + Eve + Jason George + Ali Landry + + Sitcom + + + TVPG + + + + Eve + Splice of Life + Shelly feels left out when Rita, after being evicted, comes to stay with Janie and the two rediscover their Cajun roots together. + + Eve + Jason George + Ali Landry + + Sitcom + + + TVPG + + + + Eve + Friend or Foe? + After Shelly and J.T.'s bickering ruins a night at a movie, she turns to her new friend, Claudia (Danica McKellar), for advice. + + Eve + Jason George + Ali Landry + + Sitcom + + + TVPG + + + + Eve + Love TKO + J.T. thinks he accepts Shelly dating other people until he meets her new beau, Adrian (Amaury Nolasco), a handsome boxer. + + Eve + Jason George + Ali Landry + + Sitcom + + + TVPG + + + + Relieve your foot pain with WalkFit! + WalkFit® Platinum - A Customizable Orthotic to Relieve Your Body Pain at an Unbeatable Price. Over 25 million people have improved the quality of their lives! + Paid Program + + + + Ninja Woodfire Outdoor Grill + Meet the Shark Ninja Wood Fire Grill, with Master Grill, BBQ Smoke, and Air Fry outdoor capabilities. Powered by electricity and flavored by real burning wood pellets, Woodfire Technology allows you to easily create rich flavor you can see and taste. + Paid Program + + + + H2O X5 - Super Powerful 5-In-1 Multi-Use Steam Cleaner + Kills 990f Bacteria, Viruses, and Germs with Steam! The 5-in-1 Lightweight, Fast, Powerful, And Completely Chemical Free Steam Cleaner! Lift and remove dirt and stains all around the home! + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + For Your Love + The Re-Union + Sheri thinks about giving her marriage another shot as her birthday draws near; Malena juggles patients and breast-feeding. + + Holly Robinson + James Lesure + Tamala Jones + + Sitcom + + + TVPG + + + + For Your Love + The Picture Perfect Family + Malena and Mel knock heads over dressing the baby as a daisy for a calendar photo; Sheri has Dean begging for mercy. + + Holly Robinson + James Lesure + Tamala Jones + + Sitcom + + + TV14 + + + + Half & Half + The Big Who You Gonna Call Episode + Mona decides to take charge of her life and dates both Chase and Lorenzo; the decision causes complications; Dee Dee starts dating a health fanatic. + + Rachel True + Essence Atkins + Telma Hopkins + + Sitcom + + + TVPG + + + + Half & Half + The Big Pilot Episode + Half sisters live in the same San Francisco apartment building. In this episode: A guy falls for Dee Dee. + + Rachel True + Essence Atkins + Telma Hopkins + + Sitcom + + + TVPG + + + + Half & Half + The Big Forget-Me-Not Episode + Mona suspects her sister is scheming to steal her best friend, Spencer; Mona pretends to date a guy who never called her back after their first date. + + Rachel True + Essence Atkins + Telma Hopkins + + Sitcom + + + TVPG + + + + Half & Half + The Big Crappy Birthday Episode + Mona is reminded of painful moments from her childhood during a birthday party; Phyllis decides to come clean. + + Rachel True + Essence Atkins + Telma Hopkins + + Sitcom + + + TVPG + + + + Girlfriends + He Loves Her, He Loves Her Not + Tensions rise when William introduces his girlfriend (Jill Scott) to Joan. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TVPG + + + + Girlfriends + The Partnerless Partner + William realizes he cannot replace his relationship with Joan after flaunting his date (Traci Bingham) at an office party. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TV14 + + + + Girlfriends + Just the Three of Us + Toni's therapy with Dr. Miller (Julie Hagerty) reveals that it is easier for her to express her love to friends than to Todd. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TV14 + + + + Girlfriends + Love Thy Neighbor + After Maya rejects advances from her handsome neighbor (Rockmond Dunbar), he gets close to Lynn; Todd tells Toni he wants a separation. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TVPG + + + + One on One + Accidental Love + An epiphany after a car accident sends Flex into the arms of an old girlfriend (guest star Tamala Jones). + + Flex Alexander + Kyla Pratt + Kelly Perine + + Sitcom + + + TVPG + + + + One on One + Accidental Love + Flex finds it difficult to make things work with Tonya (Tamala Jones), especially after he learns Danielle's true feelings for him. + + Flex Alexander + Kyla Pratt + Kelly Perine + + Sitcom + + + TVPG + + + + Living by Design + Aria Christian + Jake and Jazz merge fashion and function for Aria and her impressive book collection. Jake makes a custom bookshelf, and Jazz brings in new lighting and accent pieces. On the menu is Jake's Fettucine with Crab Cake Bake and Jazz makes Kiwi Lime pie. + Home + Instructional + + + + Living by Design + Kalen Allen + Kalen is a busy host and influencer. He wants a hotel vibe in his bedroom. Jazz brings it with dramatic curtains, colors, and accessories. Jake adds refurbished classic nightstands. Jake makes Truffle Mafaldine, and Jazz makes a Tiramisu. + Home + Instructional + + + + Living by Design + Qualah Gooden + Qualah wants her living room to reflect her love of music. Jake designs an art piece with a music theme, while Jazz adds curtains, tables, and lighting to complete the look. The reveal meal is Seafood Stuffed Shells, and a Lemon Vanilla Bundt Cake. + Home + Instructional + + + + Living by Design + Yassmin Rosario + Jake & Jazz revamp Yassmin's kitchen to show off her love of baking. Jazz pops the space in shades of pink with the perfect storage options. Jake makes a combo workstation/table on wheels. The meal is Chicken Piccata and Red Velvet Cinnamon Rolls. + Home + Instructional + + + + Living by Design + Diandra and Dante Anderson + Jake & Jazz work wonders on this living room! Jake adds texture with a wall installation and Jazz adds style with unique accessories in gold and green. The meal is Stuffed Chicken Breast over Garlic Rice and Coconut-Caramel-Chocolate Cookies. + Home + Instructional + + + + Living by Design + Sunne-Ryse and Kyle Smith + Jake and Jazz redesign the bedroom with style. Jake builds an oversized headboard. Jazz adds light colors, cozy pillows, and furniture with a touch of wicker. + Home + Instructional + + + + Living by Design + Madia Hill Scott + This episode is all about the baby. Jazz lays out a warm cozy design, while Jake refurbishes a dresser that gives the baby tons of storage space. The reveal meal is sea bass with creamy garlic pasta and banana cream toffee cannoli. + Home + Instructional + + + + Living by Design + Tandria Cooper + Tandria wants a living room that is urban and modern. Jake makes a wood art piece that adds style and texture, and Jazz adds big bold colors that makes the room pop. + Home + Instructional + + + + Girlfriends + He Loves Her, He Loves Her Not + Tensions rise when William introduces his girlfriend (Jill Scott) to Joan. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TVPG + + + + Girlfriends + The Partnerless Partner + William realizes he cannot replace his relationship with Joan after flaunting his date (Traci Bingham) at an office party. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TV14 + + + + Girlfriends + Just the Three of Us + Toni's therapy with Dr. Miller (Julie Hagerty) reveals that it is easier for her to express her love to friends than to Todd. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TV14 + + + + Girlfriends + Love Thy Neighbor + After Maya rejects advances from her handsome neighbor (Rockmond Dunbar), he gets close to Lynn; Todd tells Toni he wants a separation. + + Tracee Ellis Ross + Golden Brooks + Jill Marie Jones + + Sitcom + + + TVPG + + + + Half & Half + The Big Doormat No More Episode + When Dee Dee turns down Mona's request for a favor, Mona regrets telling her not to let people take advantage of her. + + Rachel True + Essence Atkins + Telma Hopkins + + Sitcom + + + TVPG + + + + Half & Half + The Big Who's Wooing Who? Episode + When Mona is offered a different job at another record label, she must decide whether to stay or move on. + + Rachel True + Essence Atkins + Telma Hopkins + + Sitcom + + + TVPG + + + + Selena + A beautiful Mexican-American singer's (Jennifer Lopez) skyrocketing international career ends abruptly. + + Jennifer Lopez + Edward James Olmos + Jon Seda + + 1997 + Movies + Drama + + + TVG + + + 3 + + + + Steel Magnolias + Based on the play about six Southern women who become close friends despite their eccentricities and complicated lives. + + Sally Field + Dolly Parton + Shirley MacLaine + + 1989 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Steel Magnolias + Based on the play about six Southern women who become close friends despite their eccentricities and complicated lives. + + Sally Field + Dolly Parton + Shirley MacLaine + + 1989 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Reba + Sweet Child O' Mine + Reba deals with Kyra and Cheyenne, who are at odds because Kyra feels her sister can not get enough of the family spotlight. + + Reba McEntire + Christopher Rich + JoAnna Garcia Swisher + + Sitcom + + + TVPG + + + + Reba + Locked and Loaded + Kyra posts a video of Van on the Internet; Reba advises Brock to make a romantic gesture in order to save his marriage. + + Reba McEntire + Christopher Rich + JoAnna Garcia Swisher + + Sitcom + + + TVPG + + + + Reba + As We Forgive Those .. + Barbra Jean suspects that the station's new intern (Kelly Clarkson) was brought in to be her successor. + + Reba McEntire + Christopher Rich + JoAnna Garcia Swisher + + Sitcom + + + TVPG + + + + Reba + Bullets Over Brock + Reba discovers that Brock has been living secretly in the garage for several days to spend time apart from Barbra Jean. + + Reba McEntire + Christopher Rich + JoAnna Garcia Swisher + + Sitcom + + + TVPG + + + + Reba + Cheyenne's Rival + Reba finds the perfect first home for Cheyenne and Van, but Cheyenne discovers that her high-school rival is selling it. + + Reba McEntire + Christopher Rich + JoAnna Garcia Swisher + + Sitcom + + + TVPG + + + + Reba + She's With the Band + Kyra tells Reba and Brock that she is postponing college to tour with her band; Cheyenne and Van cannot agree on how to decorate their new house. + + Reba McEntire + Christopher Rich + JoAnna Garcia Swisher + + Sitcom + + + TVPG + + + + Reba + The Housewarming + Reba drops by Cheyenne and Van's house unexpectedly; Barbra Jean has a meltdown during her weather report. + + Reba McEntire + Christopher Rich + JoAnna Garcia Swisher + + Sitcom + + + TVPG + + + + CMT Music + Music videos. + Music + + + TVPG + + + + CMT Music + Music videos. + Music + + + TVPG + + + + CMT Music + Music videos. + Music + + + TVPG + + + + CMT Music + Music videos. + Music + + + TVPG + + + + CMT Music + Music videos. + Music + + + TVPG + + + + Hot20 Countdown + Hardy and Lainey Wilson + Music + + + TVPG + + + + Tombstone + Doc Holliday (Val Kilmer) joins Wyatt Earp (Kurt Russell) and his brothers for an OK Corral showdown with the Clanton gang. + + Kurt Russell + Val Kilmer + Michael Biehn + + 1993 + Movies + Western + + + TVPG + + + 3 + + + + The Lincoln Lawyer + A lawyer (Matthew McConaughey) who operates out of the back of his Lincoln Continental lands the case of a lifetime when he defends a Beverly Hills playboy accused of attempted murder. + + Matthew McConaughey + Marisa Tomei + Ryan Phillippe + + 2011 + Movies + Thriller + + + TVG + + + 3 + + + + Tombstone + Doc Holliday (Val Kilmer) joins Wyatt Earp (Kurt Russell) and his brothers for an OK Corral showdown with the Clanton gang. + + Kurt Russell + Val Kilmer + Michael Biehn + + 1993 + Movies + Western + + + TVPG + + + 3 + + + + Mama's Family + Aunt Gert Rides Again + Mama brings some fun to her cousin who is living in a nursing home. + + Vicki Lawrence + Ken Berry + Dorothy Lyman + + Sitcom + + + TVPG + + + + Mama's Family + Amateur Night + Vint is sure he has a shot at stardom after winning a talent contest. + + Vicki Lawrence + Ken Berry + Dorothy Lyman + + Sitcom + + + TVPG + + + + Mama's Family + The Mama Who Came to Dinner + Mama's paralyzing back problems flare up just when guests start arriving for Naomi's dinner party. + + Vicki Lawrence + Ken Berry + Dorothy Lyman + + Sitcom + + + TVPG + + + + Mama's Family + Mama Learns to Drive + The family decides to teach Mama to drive. + + Vicki Lawrence + Ken Berry + Dorothy Lyman + + Sitcom + + + TVPG + + + + Mama's Family + Black Belt Mama + Mama takes a self-defense class after being mugged. + + Vicki Lawrence + Ken Berry + Dorothy Lyman + + Sitcom + + + TVPG + + + + Mama's Family + Mama Buys a Car + Mama takes revenge on a used-car salesman. + + Vicki Lawrence + Ken Berry + Dorothy Lyman + + Sitcom + + + TVPG + + + + Mama's Family + Supermarket + A supermarket hires Mama as a consultant. + + Vicki Lawrence + Ken Berry + Dorothy Lyman + + Sitcom + + + TVPG + + + + Mama's Family + No Room at the Inn + Mama disrupts Vint and Naomi's plans for a romantic anniversary. + + Vicki Lawrence + Ken Berry + Dorothy Lyman + + Sitcom + + + TVPG + + + + Roseanne + Arsenic and Old Mom + Roseanne and Dan are surprised by the arrival of Dan's mom, who has been released from a psychiatric hospital. + + Roseanne Arnold + John Goodman + Michael Fishman + + Sitcom + + + TVPG + + + + Roseanne + Into That Good Night + Darlene and David bring home their baby girl. + + Roseanne Arnold + John Goodman + Laurie Metcalf + + Sitcom + + + TVPG + + + + Roseanne + Into That Good Night + The Conners and friends gather when Darlene and David bring home their baby girl. + + Roseanne Arnold + John Goodman + Laurie Metcalf + + Sitcom + + + TVPG + + + + Roseanne + Life and Stuff + Roseanne believes Dan should share domestic responsibilities. + + Roseanne Arnold + John Goodman + Alicia Goranson + + Sitcom + + + TVG + + + + CMT Music + Music videos. + Music + + + TVPG + + + + CMT Music + Music videos. + Music + + + TVPG + + + + CMT Music + Music videos. + Music + + + TVPG + + + + CMT Music + Music videos. + Music + + + TVPG + + + + CMT Music + Music videos. + Music + + + TVPG + + + + CMT Music + Music videos. + Music + + + TVPG + + + + Roseanne + Playing With Matches + Roseanne has a little advice for Darlene after David is caught kissing Molly; Bev finds romance in the retirement home. + + Roseanne Arnold + John Goodman + Laurie Metcalf + + Sitcom + + + TVPG + + + + Roseanne + Promises, Promises + Darlene and David go to the prom; Dan and a pal plan a venture. + + Roseanne Arnold + John Goodman + Laurie Metcalf + + Sitcom + + + TVPG + + + + Roseanne + Glengarry, Glen Rosey + Roseanne and Dan fear a financial crisis when they cannot sell the house they refurbished and their partner skips town. + + Roseanne Arnold + John Goodman + Laurie Metcalf + + Sitcom + + + TVPG + + + + Roseanne + Tooth or Consequences + Roseanne's dental problems bring Dan to the realization that he needs a steady job to take care of his family. + + Roseanne Arnold + John Goodman + Laurie Metcalf + + Sitcom + + + TVPG + + + + Roseanne + Daughters and Other Strangers + Roseanne worries that Darlene may be planning to run away from home; a new neighbor tries to befriend D.J. + + Roseanne Arnold + John Goodman + Laurie Metcalf + + Sitcom + + + TVPG + + + + Roseanne + Two Down, One to Go + Darlene leaves for college; Roseanne wants to have another child. + + Roseanne Arnold + John Goodman + Sara Gilbert + + Sitcom + + + TVG + + + + Mike & Molly + Near Death Do Us Part + A near-death experience on the job inspires Carl to announce that he is planning to propose to Victoria. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mike & Molly + The Bitter Man and the Sea + Mike and Molly must rescind Carl's invitation to their anniversary cruise after his nasty breakup with Victoria. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mike & Molly + Cops on the Rocks + Carl and Mike try to reconcile their partnership with couples counseling; after Peggy decides she won't participate in a promotional radio interview, Molly does it on her own. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mike & Molly + One Small Step for Mike + Molly gives Mike a device that will track his activity in hopes of helping him get healthier and take better care of himself, but Mike has other plans. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + The King of Queens + Richie's Song + Doug can't work up the courage to tell Richie (Larry Romano) that his wife (Michele Maika) is cheating on him. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Paternal Affairs + Arthur is immediately smitten with Doug's favorite aunt (Brenda Vaccaro) and asks permission to court her. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVG + + + + The King of Queens + Head First + Doug makes an effort to be more friendly with Arthur and soon discovers the benefits and risks of allowing his father-in-law to tag along with him in public. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + The Rock + Doug and Carrie debate the advantages of selling her engagement ring after discovering that it is worth a fortune. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Educating Doug + Carrie feels that she and Doug are getting stupid as a couple, so she enrolls them and Spence into a class where they read a book and discuss it. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Road Rayge + Doug loses his license to drive after Ray Barone (Ray Romano) cheats off his driving test. Brad Garrett and Peter Boyle also guest star. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Supermarket Story + Doug, Carrie and Arthur face a chaotic trip to the grocery store on the day before Thanksgiving; Doug encounters a stranger from his past. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Noel Cowards + Arthur's Christmas gift to Doug and Carrie provides a solution to the couple's car troubles that ends up being worse than the problem. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + Christmas + + + TVPG + + + + The King of Queens + Fixer Upper + Carrie fixes Spence (Patton Oswalt) up with an extremely timid girl from her office, but advice from Doug threatens a good thing. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Best Man + Doug learns that Carrie was once the lover of the groom at a wedding they are attending; Arthur is unhappy when he doesn't get the entree that he ordered at the reception. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + Mama's Family + Mama for Mayor + Mama announces her plans to run for mayor. + + Vicki Lawrence + Ken Berry + Dorothy Lyman + + Sitcom + + + TVPG + + + + Mama's Family + Mama for Mayor + Mama discovers that the mayor's job is overwhelming. + + Vicki Lawrence + Ken Berry + Dorothy Lyman + + Sitcom + + + TVPG + + + + Mama's Family + Harper Versus Harper + Mama and Naomi battle in court over the issue of a broken vacuum cleaner. + + Vicki Lawrence + Ken Berry + Dorothy Lyman + + Sitcom + + + TVPG + + + + Mama's Family + Mama's Birthday + Buzz discovers why Mama dislikes celebrating her birthday. + + Vicki Lawrence + Ken Berry + Dorothy Lyman + + Sitcom + + + TVPG + + + + Mama's Family + Mama Cries Uncle + Mama's long-lost brother-in-law arrives and charms everyone except her. + + Vicki Lawrence + Ken Berry + Dorothy Lyman + + Sitcom + + + TVPG + + + + Mama's Family + Ask Aunt Fran + Mama helps Fran write an advice column. + + Vicki Lawrence + Ken Berry + Dorothy Lyman + + Sitcom + + + TVPG + + + + Mama's Family + A Grave Mistake + Mama discovers a stranger has been buried next to her husband. + + Vicki Lawrence + Ken Berry + Dorothy Lyman + + Sitcom + + + TVPG + + + + Mama's Family + Farewell, Frannie + Mama Harper hopes she can keep the cause of her sister's death a secret. + + Vicki Lawrence + Ken Berry + Dorothy Lyman + + Sitcom + + + TVPG + + + + Mama's Family + Where There's a Will + Aunt Fran's will contains one last condition. + + Vicki Lawrence + Ken Berry + Dorothy Lyman + + Sitcom + + + TVPG + + + + Mama's Family + Best Medicine + Mama's daughter (Betty White) secretly checks into the hospital for an operation. + + Vicki Lawrence + Ken Berry + Dorothy Lyman + + Sitcom + + + TVPG + + + + The Golden Girls + Not Another Monday + Sophia faces a moral dilemma when an ill friend (Geraldine Fitzgerald) asks for help in ending her life. + + Bea Arthur + Rue McClanahan + Betty White + + Sitcom + + + TVPG + + + + The Golden Girls + That Old Feeling + Blanche turns the tables and proposes to her brother-in-law (George Grizzard). + + Bea Arthur + Rue McClanahan + Betty White + + Sitcom + + + TVPG + + + + The Golden Girls + Comedy of Errors + Dorothy's stab at stand-up shtick is sidetracked by Sophia's heckling. + + Bea Arthur + Rue McClanahan + Betty White + + Sitcom + + + TVPG + + + + The Golden Girls + All That Jazz + Dorothy sends her unemployed son (Scott Jacoby) to live with his equally irresponsible father (Herb Edelman). + + Bea Arthur + Rue McClanahan + Betty White + + Sitcom + + + TVPG + + + + The Golden Girls + Ebb Tide + Blanche renews hostilities with her sister (Sheree North) when she travels home to attend her father's funeral. + + Bea Arthur + Rue McClanahan + Betty White + + Sitcom + + + TVPG + + + + The Golden Girls + Have Yourself a Very Little Christmas + The ladies volunteer to serve Christmas dinner at a soup kitchen. + + Bea Arthur + Rue McClanahan + Betty White + + Sitcom + Christmas + + + TVPG + + + + The Golden Girls + Mary Has a Little Lamb + The girls help a pregnant teen (Julie McCullough) and play host to Blanche's visiting pen pal (John Dennis Jonston). + + Bea Arthur + Rue McClanahan + Betty White + + Sitcom + + + TVPG + + + + The Golden Girls + Great Expectations + Blanche cannot bring herself to enter the hospital following her boyfriend's (Robert Mandan) heart attack. + + Bea Arthur + Rue McClanahan + Betty White + + Sitcom + + + TVPG + + + + CMT Music + Music videos. + Music + + + TVPG + + + + CMT Music + Music videos. + Music + + + TVPG + + + + CMT Music + Music videos. + Music + + + TVPG + + + + CMT Music + Music videos. + Music + + + TVPG + + + + CMT Music + Music videos. + Music + + + TVPG + + + + Roseanne + The Mommy's Curse + Roseanne and Jackie may be getting a new business partner -- the smarmy Leon Carp. + + Roseanne Arnold + John Goodman + Laurie Metcalf + + Sitcom + + + TVPG + + + + Roseanne + Party Politics + Roseanne tries to use Darlene's visit to curb D.J.'s rebelliousness. + + Roseanne Arnold + John Goodman + Sara Gilbert + + Sitcom + + + TVPG + + + + Roseanne + A Stash From the Past + Foreman Dan feels lower than low for getting tough with his employees at work. + + Roseanne Arnold + John Goodman + Sara Gilbert + + Sitcom + + + TVPG + + + + Roseanne + Be My Baby + After Roseanne expresses interest in having another child, Jackie reveals her own pregnancy. + + Roseanne Arnold + John Goodman + Michael Fishman + + Sitcom + + + TVPG + + + + Roseanne + Halloween V + Dan wants to play a Halloween prank on Nancy; David and Darlene spook Roseanne. + + Roseanne Arnold + John Goodman + Sara Gilbert + + Sitcom + Christmas + + + TVPG + + + + Roseanne + Homeward Bound + A surprise visit from Darlene makes David realize how much he misses her. + + Roseanne Arnold + John Goodman + Sara Gilbert + + Sitcom + + + TVPG + + + + Mike & Molly + Baby, Please Don't Go + When Molly discovers that a pregnant former student has nowhere to live, she decides to bring her home. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mike & Molly + Baby Bump + Mike and Molly discover that Frannie doesn't have a plan for the baby's birth, so they try to help by reuniting her with her estranged sister, Maura. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mike & Molly + The Adoption Option + When the adoption agency schedules a home visit with Mike and Molly, they need everyone's cooperation to make a good impression. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mike & Molly + Curse of the Bambino + Carl and Mike visit a psychic; Peggy takes Molly to her church to pray for something they've been waiting to receive. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + The King of Queens + Dog Days + A barking dog means sleepless nights for Doug and Carrie; Arthur thinks that a popular comic strip is based on his life. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Crappy Birthday + Doug forgets Carrie's 30th birthday and has plans to watch the wrestling match; Doug must scramble to put together a romantic evening. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + S'ain't Valentine's + Arthur meets an intoxicating stranger at a singles' dance; Carrie and Doug's romantic evening is spoiled. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + Christmas + + + TVPG + + + + The King of Queens + Court Date + Doug encourages Carrie to date the police officer who stopped her, hoping to get out of her fourth traffic ticket of the year and avoid a hefty increase in their car insurance. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + White Collar + Doug inherits his shift supervisor's job after an untimely death but soon misses his old responsibilities. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Rayny Day + Ray (Ray Romano) invites Doug to play golf at an exclusive country club; Marie (Doris Roberts) teaches Carrie how to clean a house. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + Last Man Standing + Halloween + When Mike and Chuck decide to spend Halloween watching football instead of passing out candy, their wives decide to prank them; Kyle dresses up as Ed. + + Tim Allen + Nancy Travis + Molly Ephraim + + Sitcom + Christmas + + + TVPG + + + + Last Man Standing + The Dad Hat + Mike has a difficult time treating Kristin like an employee rather than his daughter; Kyle and Mandy hope Ed wants their help rekindling his romance with Wendi. + + Tim Allen + Nancy Travis + Molly Ephraim + + Sitcom + + + TVPG + + + + Last Man Standing + The Big Sleepover + When Eve's annoying friend needs a place to stay, Mike tries to pawn her off on someone else; conflict ensues after Kristin asks Mandy to design new uniforms for the Outdoor Man Grill. + + Tim Allen + Nancy Travis + Molly Ephraim + + Sitcom + + + TVPG + + + + Last Man Standing + The Gratitude List + Vanessa is upset when Eve doesn't want to participate in a holiday tradition; Kristin learns that Mandy is lying about where she and Kyle will be on Thanksgiving. + + Tim Allen + Nancy Travis + Molly Ephraim + + Sitcom + Christmas + + + TVPG + + + + Last Man Standing + The Puck Stops Here + Mike surprises everyone by suggesting Ryan become the coach for Boyd's hockey team; Vanessa doesn't understand why Eve is doing poorly in chemistry. + + Tim Allen + Nancy Travis + Molly Ephraim + + Sitcom + + + TVPG + + + + Last Man Standing + Gift of the Wise Man + Mike asks the family to help get ready for Christmas in order to take the pressure off a stressed-out Vanessa. + + Tim Allen + Nancy Travis + Molly Ephraim + + Sitcom + Christmas + + + TVPG + + + + Mom + Fancy Crackers and Giant Women + Bonnie suffers withdrawal after giving up cable TV to help Christy; the women rally around Jill after she has a breakdown in her favorite department store. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + Mom + Poodle Fuzz and a Twinge of Jealousy + An injury temporarily puts Bonnie in a wheelchair; Christy takes over as building manager and makes a surprising discovery. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + Mom + Smooth Jazz and a Weird Floaty Eye + Bonnie insists on meeting Adam's estranged brother, Patrick; things get weird when Patrick takes a romantic interest in Christy. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + Mom + Too Many Hippies and Huevos Rancheros + Christy and Bonnie rally around Marjorie when her husband has a stroke. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + Mom + Teenage Vampires and a White Russian + Bonnie is upset when her brother is arrested and calls Adam instead of her to bail him out; Christy gets fired from her job at the restaurant. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + Mom + A Bear and a Bladder Infection + When Christy's long-distance relationship fizzles, she seeks the company of a former fling; Bonnie tries to give up coffee. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + Mom + Bert and Ernie and a Blessing of the People + After Bonnie and Adam attend a traditional wedding, they discover they're not on the same page about their own wedding; Christy and Patrick have trouble setting the mood for their. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + Mom + Push-Down Coffee and a Working Turn Signal + When Christy's car dies, Bonnie refuses to let Adam loan her money for a new one. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + The Golden Girls + Brotherly Love + Dorothy makes her ex-husband (Herbert Edelman) jealous when she has an affair with his brother (McLean Stevenson). + + Bea Arthur + Rue McClanahan + Betty White + + Sitcom + + + TVPG + + + + The Golden Girls + A Visit From Little Sven + Rose's cousin (Casey Sander) falls madly in love with Blanche. + + Bea Arthur + Rue McClanahan + Betty White + + Sitcom + + + TVPG + + + + The Golden Girls + The Audit + Dorothy hocks an expensive ring to pay off the debt she and her ex-husband owe to the Internal Revenue Service. + + Bea Arthur + Rue McClanahan + Betty White + + Sitcom + + + TVPG + + + + The Golden Girls + Three on a Couch + Dorothy, Rose and Blanche seek professional help when living with one another becomes unbearable. + + Bea Arthur + Rue McClanahan + Betty White + + Sitcom + + + TVPG + + + + The Golden Girls + Charlie's Buddy + Rose decides to move in with one of her deceased husband's former buddies (Milo O'Shea). + + Bea Arthur + Rue McClanahan + Betty White + + Sitcom + + + TVPG + + + + The Golden Girls + The Artist + Blanche agrees to pose in the nude for a suave European sculptor (Tony Jay). + + Bea Arthur + Rue McClanahan + Betty White + + Sitcom + + + TVPG + + + + The Golden Girls + Blanche's Little Girl + Blanche is reunited with her daughter (Shawn Schepps) after a four-year estrangement. With Joe Regalbuto and Scott Menville. + + Bea Arthur + Rue McClanahan + Betty White + + Sitcom + + + TVPG + + + + The Golden Girls + Dorothy's New Friend + Blanche and Rose despise Dorothy's pompous friend, novelist Barbara Thorndyke (Bonnie Bartlett). + + Bea Arthur + Rue McClanahan + Betty White + + Sitcom + + + TVPG + + + + CMT Music + Music videos. + Music + + + TVPG + + + + CMT Music + Music videos. + Music + + + TVPG + + + + CMT Music + Music videos. + Music + + + TVPG + + + + CMT Music + Music videos. + Music + + + TVPG + + + + CMT Music Videos: 90s Country + Music videos from the hottest artists in '90s country music. + Music + + + TVPG + + + + Roseanne + Guilt by Imagination + Dan tries to conceal the fact he had lunch with an old flame. + + Roseanne Arnold + John Goodman + Michael Fishman + + Sitcom + + + TVPG + + + + Roseanne + Homecoming + Becky and Mark return to help celebrate a momentous anniversary for Dan. Sarah Chalke joins the cast as Becky. + + Roseanne Arnold + John Goodman + Sarah Chalke + + Sitcom + + + TVPG + + + + Roseanne + Thanksgiving '93 + A fight, a revealed secret and a fleeing grandmother mark Thanksgiving. + + Roseanne Arnold + John Goodman + Sarah Chalke + + Sitcom + Christmas + + + TVPG + + + + Roseanne + The Driver's Seat + Roseanne and Leon squabble over the Lunch Box diner; D.J. goes joy riding. + + Roseanne Arnold + John Goodman + Sarah Chalke + + Sitcom + + + TVPG + + + + Roseanne + White Trash Christmas + The Conners annoy the neighborhood association by putting up tacky Christmas decorations. + + Roseanne Arnold + John Goodman + Sarah Chalke + + Sitcom + Christmas + + + TVPG + + + + Roseanne + Suck Up or Shut Up + Roseanne joins a women's group to promote business and leaves D.J. in a tough spot with a schoolmate. + + Roseanne Arnold + John Goodman + Sarah Chalke + + Sitcom + + + TVPG + + + + Mike & Molly + I See Love + When Mike and Molly bring their loved ones together for a significant event, they reflect on everything that brought them to this moment. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mike & Molly + Pilot + Teacher Molly Flynn invites officer Mike Biggs to speak to her fourth-grade class after becoming smitten with him at an Overeaters' Anonymous meeting. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TVPG + + + + Mike & Molly + First Date + When Molly gets a cold before her first date with Mike, she takes cold medicine to feel better. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mike & Molly + First Kiss + Mike's ego takes a hit during a bowling date with Molly. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + The King of Queens + Train Wreck + Doug is disappointed when Carrie isn't jealous of his beautiful trainee; Arthur feels he's been scammed when he orders a gravestone. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Hungry Man + Carrie is embarrassed by Doug when he shows up unexpectedly and famished at her boss's elegant. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Time Share + Carrie befriends her annoying neighbors so that their week at a Hamptons time share does not go unused; Arthur develops a nasty rash. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Where's Poppa? + Doug convinces cousin Danny (Gary Valentine) to take Arthur for the weekend; Doug is hit by a baseball and meets a new friend (Bill Cosby) at Dr. Becker's (Ted Danson) office. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + Dual City + Features field experts as they share their insights and dialogues on various communities, urban developments and emerging trends in Taiwan. + Performing Arts + News + + + + Cti Global-War Zone + Variety + + + + 1100 CTI Noon News + Features the latest developments and special events that take place in Taiwan and around the world, ranging from social issues to international affairs. + News + + + + Local News plus Global Forecast + Features the latest developments and special events that take place in Taiwan and around the world, ranging from social issues to international affairs. + News + + + + The Hunger Games + Game show contestants are required to stop eating 12 hours before filming begins, and they are awarded snacks if they win the game. + Game Shows + + + + Weekend News Hit + Features a compilation of the top stories of the week, along with thorough analyses by experts from different fields. + News + + + + Weekend News Hit + Features a compilation of the top stories of the week, along with thorough analyses by experts from different fields. + News + + + + Dual City + Features field experts as they share their insights and dialogues on various communities, urban developments and emerging trends in Taiwan. + Performing Arts + News + + + + 1800 CTI News + Features the latest developments and special events that take place in Taiwan and around the world, ranging from social issues to international affairs. + News + + + + 1900 CTI News + Features the latest developments and special events that take place in Taiwan and around the world, ranging from social issues to international affairs. + News + + + + Discover China + Documentary + + + TVPG + + + + Golbal Battle + Documentary + + + + CTI Anchor's Time + Features the latest updates and developments on local and global issues with discussions from experts in various fields. + Talk Shows + News + + + + 2000 CTI News + Features the latest developments and special events that take place in Taiwan and around the world, ranging from social issues to international affairs. + News + + + + Art of Life + Spiritual leader Ravi Shankar imparts his knowledge of various meditation and yoga techniques to help his followers find their inner peace. + Local + Religious + + + + Health News + Features the latest stories about healthcare and scientific discoveries to increase people's awareness of physical and mental wellness. + News + Health + + + + Bin Bin Gourmet + Singer Pai Bing Bing challenges professional chefs to demonstrate their culinary skills by preparing a variety of delectable dishes. + Local + Food + + + + 2000 CTI News + Features the latest developments and special events that take place in Taiwan and around the world, ranging from social issues to international affairs. + News + + + + The Hunger Games + Game show contestants are required to stop eating 12 hours before filming begins, and they are awarded snacks if they win the game. + Game Shows + + + + Tribes Fashion Design + Indigenous designers showcase their collections, which are deeply rooted in tribal art, to promote and preserve their cultures. + Performing Arts + Fashion + + + + Mai's Healthy Tips + Host Mai Yujie invites health practitioners to discuss various physical and mental conditions and provide helpful tips to maintain overall wellness. + Variety + Health + + + + Trans-Global Talk + Features discussions on the latest developments and special events that take place in Taiwan and around the world, ranging from social issues to international affairs. + Drama + Talk Shows + + + + 0800 News Breakfast + Features the latest stories and developments from around the world that covers various topics such as politics, sports and weather updates. + News + + + + 60 Minutes + Newsmagazine with features focusing on people, and events in the news and behind the headlines. + News Magazine + + + + Global Battle + Features stories and expert analyses on the dynamics between two world superpowers, the United States and China, and how both countries continue to evolve on a global scale. + News + + + + 1200 CTI Noon News + Features the latest developments and special events that take place in Taiwan and around the world, ranging from social issues to international affairs. + Local + + + + Local News plus Global Forecast + Features the latest developments and special events that take place in Taiwan and around the world, ranging from social issues to international affairs. + News + + + + SearcHome + Features conversations with homeowners and experts about the inspirations behind the designs of their living spaces. + Variety + + + + CTI Talk + Features one-on-one conversations with prominent experts and their comprehensive analyses on current affairs, international relations, and the global economy. + Talk Shows + + + + News Hit + Features a compilation of the top stories of the day, along with thorough analyses by experts from different fields. + News + + + + News Hit + Features a compilation of the top stories of the day, along with thorough analyses by experts from different fields. + News + + + + 1600 CTI News + Features the latest developments and special events that take place in Taiwan and around the world, ranging from social issues to international affairs. + News + + + + Discover China + Documentary + + + TVPG + + + + 1800 CTI Evening News + Features the latest developments and special events that take place in Taiwan and around the world, ranging from social issues to international affairs. + News + + + + 1900 CTI Evening News + Features the latest developments and special events that take place in Taiwan and around the world, ranging from social issues to international affairs. + News + + + + Hit The Headlines + Features the latest updates on major events, geopolitical tensions and interviews with influential figures and experts. + News + + + + Political Insight + Political + + + + 1900 CTI News + Features the latest developments and special events that take place in Taiwan and around the world, ranging from social issues to international affairs. + News + + + + Fight Authority + Performing Arts + + + + Art of Life + Spiritual leader Ravi Shankar imparts his knowledge of various meditation and yoga techniques to help his followers find their inner peace. + Local + Religious + + + + Health News + Features the latest stories about healthcare and scientific discoveries to increase people's awareness of physical and mental wellness. + News + Health + + + + Bin Bin Gourmet + Singer Pai Bing Bing challenges professional chefs to demonstrate their culinary skills by preparing a variety of delectable dishes. + Local + Food + + + + 2400 CTI News + News + + + + Entertainment News + News + Performing Arts + + + + Political Forum + Political + + + + Health News + Features the latest stories about healthcare and scientific discoveries to increase people's awareness of physical and mental wellness. + News + Health + + + + Talk Show: Mystery Area + Performing Arts + + + + 0700 News Breakfast at Eight + News + + + + Local News + Features a comprehensive coverage of significant events, public issues and discussions with prominent individuals in Taiwan. + News + + + + Fight Authority + Performing Arts + + + + News Storm + News + + + + Sisy's Dream Stop + Performing Arts + + + + CTI Global News + Features the latest updates and developments on pressing issues across the globe, from political affairs to socio-economic challenges. + News + + + + Local News / Commercial Report / Weather Forecast + News + + + + Super Followers + Hosts Jacky Wu and Sandy Wu invite prominent figures and celebrities as they touch on a variety of topics and engage in activities. + Performing Arts + Talk Shows + + + + Political Forum + Political + + + + Political Insight + Political + + + + 1500 Political Insight + News + + + + 1600 CTI News + Features the latest developments and special events that take place in Taiwan and around the world, ranging from social issues to international affairs. + News + + + + 1700 CTI News + Features the latest developments and special events that take place in Taiwan and around the world, ranging from social issues to international affairs. + Specials + News + + + + The Queen's Legendary Show + Local + + + + 1800 CTI News + Features the latest developments and special events that take place in Taiwan and around the world, ranging from social issues to international affairs. + News + + + + 1900 CTI News + Features the latest developments and special events that take place in Taiwan and around the world, ranging from social issues to international affairs. + News + + + + Political Insight + Political + + + + 1900 CTI News + Features the latest developments and special events that take place in Taiwan and around the world, ranging from social issues to international affairs. + News + + + + Fight Authority + Performing Arts + + + + Art of Life + Spiritual leader Ravi Shankar imparts his knowledge of various meditation and yoga techniques to help his followers find their inner peace. + Local + Religious + + + + Health News + Features the latest stories about healthcare and scientific discoveries to increase people's awareness of physical and mental wellness. + News + Health + + + + Bin Bin Gourmet + Singer Pai Bing Bing challenges professional chefs to demonstrate their culinary skills by preparing a variety of delectable dishes. + Local + Food + + + + 2400 CTI News + News + + + + Super Followers + Hosts Jacky Wu and Sandy Wu invite prominent figures and celebrities as they touch on a variety of topics and engage in activities. + Performing Arts + Talk Shows + + + + Political Forum + Political + + + + Health News + Features the latest stories about healthcare and scientific discoveries to increase people's awareness of physical and mental wellness. + News + Health + + + + The Advisors Alliance + Life of Sima Yi, an ancient Chinese advisor during the Three Kingdom Era who helps Cao Pi to usurp the throne. + + Xiu Bo Wu + Chen Li + Tao Liu + + Drama + Biography + + + + 0700 News Breakfast at Eight + News + + + + Local News + Features a comprehensive coverage of significant events, public issues and discussions with prominent individuals in Taiwan. + News + + + + Fight Authority + Performing Arts + + + + Small Swallow's Night + Local + + + + The Advisors Alliance + Life of Sima Yi, an ancient Chinese advisor during the Three Kingdom Era who helps Cao Pi to usurp the throne. + + Xiu Bo Wu + Chen Li + Tao Liu + + Drama + Biography + + + + CTI Global News + Features the latest updates and developments on pressing issues across the globe, from political affairs to socio-economic challenges. + News + + + + Local News / Commercial Report / Weather Forecast + News + + + + Super Followers + Hosts Jacky Wu and Sandy Wu invite prominent figures and celebrities as they touch on a variety of topics and engage in activities. + Performing Arts + Talk Shows + + + + Political Forum + Political + + + + Political Insight + Political + + + + 1500 Political Insight + News + + + + 1600 CTI News + Features the latest developments and special events that take place in Taiwan and around the world, ranging from social issues to international affairs. + News + + + + 1700 CTI News + Features the latest developments and special events that take place in Taiwan and around the world, ranging from social issues to international affairs. + Specials + News + + + + The Queen's Legendary Show + Local + + + + 1800 CTI News + Features the latest developments and special events that take place in Taiwan and around the world, ranging from social issues to international affairs. + News + + + + 1900 CTI News + Features the latest developments and special events that take place in Taiwan and around the world, ranging from social issues to international affairs. + News + + + + Political Insight + Political + + + + 1900 CTI News + Features the latest developments and special events that take place in Taiwan and around the world, ranging from social issues to international affairs. + News + + + + Fight Authority + Performing Arts + + + + Art of Life + Spiritual leader Ravi Shankar imparts his knowledge of various meditation and yoga techniques to help his followers find their inner peace. + Local + Religious + + + + Health News + Features the latest stories about healthcare and scientific discoveries to increase people's awareness of physical and mental wellness. + News + Health + + + + Bin Bin Gourmet + Singer Pai Bing Bing challenges professional chefs to demonstrate their culinary skills by preparing a variety of delectable dishes. + Local + Food + + + + 2400 CTI News + News + + + + Super Followers + Hosts Jacky Wu and Sandy Wu invite prominent figures and celebrities as they touch on a variety of topics and engage in activities. + Performing Arts + Talk Shows + + + + Political Forum + Political + + + + Health News + Features the latest stories about healthcare and scientific discoveries to increase people's awareness of physical and mental wellness. + News + Health + + + + The Advisors Alliance + Life of Sima Yi, an ancient Chinese advisor during the Three Kingdom Era who helps Cao Pi to usurp the throne. + + Xiu Bo Wu + Chen Li + Tao Liu + + Drama + Biography + + + + Cowboys & Aliens + Bearing a mysterious metal shackle on his wrist, an amnesiac gunslinger (Daniel Craig) wanders into a frontier town called Absolution. He quickly finds that strangers are unwelcome, and no one does anything without the approval of tyrannical Col. Dolarhyde (Harrison Ford). But when Absolution faces a threat from beyond Earth, the stranger finds that he is its only hope of salvation. He unites townspeople, outlaws and Apache warriors against the alien forces in an epic battle for survival. + + + + The Liquidator + Jeff forgets to book staff for an auction and now must be a one-man clerk, cashier, locker cracker and auctioneer. + + + + TMZ + The very latest celebrity news. + + + + Up in the Air + An idea from a young, new co-worker (Anna Kendrick) would put an end to the constant travel of corporate downsizer Ryan Bingham (George Clooney), so he takes her on a tour to demonstrate the importance of face-to-face meetings with those they must fire. While mentoring his colleague, he arranges hookups with another frequent-flier (Vera Farmiga), and his developing feelings for the woman prompt him to see others in a new light. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + + + + Paid Programming + Paid programming. + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + + + + Joint Gel provides total comfort with daily joint care + Joint Gel delivers support for joint comfort & flexibility with a patented matrix of krill oil, astaxanthin, and hyaluronic acid - in as few as 7 days! + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + + + + Rare Silver Coin Set + Add the First Day of Issue 2023 Morgan and Peace Dollars graded in perfect Mint State and Proof 70 condition to your collection. With Mint State mintages of only 275,000 examples and 400,00 for Proof, these coins are incredible absolute rarities! + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Tomorrow's World With Roderick Meredith + + + + In Touch With Dr. Charles Stanley + In Touch Ministries is the broadcast teaching ministry of Dr. Charles Stanley. + + + + Key of David + Covering today's most important events with a unique perspective based on Bible prophecy; the program tells what is happening to society and the world, as well as explaining why. + + + + Catholic Mass + Religious service. + + + + Manna-Fest With Perry Stone + In-depth study of the word of God. + + + + Paid Programming + Paid programming. + + + + Get Fit with Total Gym, Risk Free + Get in the best shape of your life with the Total Gym 30 Day Risk-Free Trial Offer. + + + + Let's Make Medicare Easier + Aetna licensed agents can simplify Medicare and help you choose coverage that's right for you! + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + + + + Vacancy + When David (Luke Wilson) and Amy's (Kate Beckinsale) car breaks down, they have little choice but to spend the night at a remote hotel. The couple entertain themselves by watching low-budget slasher movies on TV -- until they realize that the horrifying images they see were recorded in the room in which they are staying. With hidden cameras capturing their every move, David and Amy must find a way out before they become the latest stars in another film in the series of snuff films. + + + + Bloodline Detectives + Dade County police in Georgia work to uncover the identity of a Jane Doe and locate the perpetrator responsible for her murder. + + + + Highway Thru Hell + A local heavy recovery firm works through the hard winters to help highway users who fall victim to the brutal road conditions. + + + + WOW - Women Of Wrestling + Princess Aussie defends her title against Tormenta; Adriana Gambino takes on Stephy Slays; BK Rhythm and Gigi Gianni vs. Chantilly Chella and Tiki Chamorro; Goldie Collins attempts to break Kandi Krush's winning streak. + + + + Family Guy + When Mayor West and Lois' sister, Carol (Julie Hagerty), get married and move in with the Griffins, Stewie must give up his bedroom; Peter and Mayor West become friends. + + + + Family Guy + The dry cleaner loses Peter's favorite shirt; Brian and Quagmire compete for the affections of each other's former flames. + + + + Sullivan's Crossing + Maggie makes a difficult decision after Sully lets his temper get the best of him. + + + + The Chosen + Jesus delivers the Sermon on the Mount to thousands of believers before he and his disciples return to their families. + + + + Whose Line Is It Anyway? + Special guests Penn & Teller. + + + + The Liquidator + The company next door wants to unload $100,000 worth of motors; Jeff must decide to make friends or make money. + + + + The Good Doctor + Dr. Murphy questions his decision to give the new residents autonomy when an intern's misdiagnosis has dire consequences; a patient has a ruptured cyst affecting key functions of her brain; Dr. Morgan Reznick and Park bond over failed relationships. + + + + WOW - Women Of Wrestling + Princess Aussie defends her title against Tormenta; Adriana Gambino takes on Stephy Slays; BK Rhythm and Gigi Gianni vs. Chantilly Chella and Tiki Chamorro; Goldie Collins attempts to break Kandi Krush's winning streak. + + + + Moviefone TV + Filmmaking from script to screen, on-camera and behind the scenes; where to watch in theaters, streaming and on demand. + + + + Made in Hollywood + New movie releases: on set, on location and behind the screen. + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + + + + Paid Programming + Paid programming. + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Chicago P.D. + An armed robbery case quickly turns into a homicide investigation; when one suspect's background suggests domestic violence, Upton is forced to reckon with her childhood; Voight and Halstead butt heads over Halstead's righteous instinct. + + + + The Liquidator + After receiving a load of rotten furniture, Jeff heads to Indonesia to challenge the shady manufacturer. + + + + We the People With Judge Lauren Lake + Dispute between neighbors over a loud party and damaged speakers; woman blames her friend for her missed flight after they're pulled over by the police. + + + + Divorce Court + Judge Star Jones uses her wisdom and experience as she presides over the courtroom, hearing disputes involving the highs and lows of relationships. + + + + Divorce Court + Zon-Tavious says he's living a nightmare with a lying, deceiving and disrespectful husband. + + + + The Steve Wilkos Show + Becky accuses her daughter of physically abusing her two children, but Angela says she is lying; Shamon denies that he physically and sexually abused his girlfriend's children and insists she has accused other men of hurting her kids. + + + + Karamo + Amber learned about her potential father's identity when she turned 16, and Karamo hopes to put her search to a halt with a paternity test; Bernadette is fed up with her girlfriend's incessant accusations of flirting and sleeping with men. + + + + Maury + The discovery of sex toys in their car leads Lawanda to think her babies' daddy is unfaithful; Alauna fears that her brother is an accomplice to her cheating boyfriend; Antoinette thinks the most important people in her life have betrayed her. + + + + Paid Programming + Paid programming. + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + + + + Stories of Love to the Rescue by Shriners Hospitals for Children® + Alec and Kaleb interview patients and their families, and how their lives have been changed because of the life-changing pediatric specialty care they received at Shriners Hospitals for Children®. + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + + + + Jerry Springer + Emma purposely sabotaged her sister's relationship; Dustin wants to know if his wife and his friend have been hooking up; Lottie confronts her husband and a woman he has been texting. + + + + Maury + After moving in with her fiance and his family, Breanna started sleeping with his father and wound up pregnant; Nera and Amanda have opposing views of their relationship; Antwaneice finds out which of her ex-boyfriends is her babies' daddy. + + + + Karamo + Amber learned about her potential father's identity when she turned 16, and Karamo hopes to put her search to a halt with a paternity test; Bernadette is fed up with her girlfriend's incessant accusations of flirting and sleeping with men. + + + + The Steve Wilkos Show + Chamone told the doctor that her 5-year-old was to blame for her baby's broken arm, but detectives discovered a picture of another child with a swollen eye, so the state took all of her children; Meah's baby was found duct taped to a wall. + + + + TMZ Live + Harvey Levin invites viewers inside TMZ's newsroom to see how news is made. + + + + Dish Nation + Entertaining entertainment news: the show dishes on celebrity gossip with humorous commentary on pop culture. + + + + TMZ + The very latest celebrity news. + + + + Penn & Teller: Fool Us + Featured magicians include Alexandra, Artem, Anthony Dempsey and Rune Carlsen. + + + + Masters of Illusion + Featured magicians include Ed Alonzo, Deadly Game, Lucy Darling, Joshua Jay, Lioz and Caleb Alexander. + + + + World's Funniest Animals + Super cute and smart cats and dogs; cows playing ball; bears celebrating; horsing around; commentary provided by Carmen Hodgson, Devon Werkheiser and Daniel Curtis Lee. + + + + Dish Nation + Entertaining entertainment news: the show dishes on celebrity gossip with humorous commentary on pop culture. + + + + TMZ + The very latest celebrity news. + + + + Family Guy + When Chris and Meg trade roles with their parents, Chris works at the brewery and Meg runs the house. + + + + Family Guy + Brian and Stewie go back in time to try and stop Bertram (Wallace Shawn) from killing Leonardo da Vinci. + + + + Bob's Burgers + Tina and Darryl team up to win the Cupid's Couple contest; Linda plans a week of Valentine's Day activities for her and Bob. + + + + Bob's Burgers + When Linda's sister, Gayle (Megan Mullally), comes to the restaurant in tears because her date was canceled, the kids compete to be her companion for the evening. + + + + TMZ + The very latest celebrity news. + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Chicago P.D. + Voight enlists the help of a reformed gang member to get a key witness' testimony in a murder case; more lives are put on the line as a gang war brews. + + + + The Liquidator + Jeff heads to Indonesia to fill up a container of furniture; his tough-guy negotiating style doesn't go down well with the locals. + + + + We the People With Judge Lauren Lake + Woman sues her ex-boyfriend for selling her dog while she was in prison; man blames his flooded apartment on his neighbor's leaky washing machine. + + + + Divorce Court + Robert says his wife is taking his love for granted with her inconsiderate and deceitful behavior, and it's hard to ignore all of the red flags that now point toward divorce. + + + + Divorce Court + Nikeia says Antwain is the love of her life, but she can't compete with his pill addiction; she says this is his last chance to get clean and save their marriage. + + + + The Steve Wilkos Show + Kassie says Anthony thinks she is cheating on him but actually has a secret of his own; Walter insists he is not having sex with any of the beautiful women who surround him at his job, but girlfriend Katherine isn't so sure. + + + + Karamo + After a nasty argument with her boyfriend, Devante, Kyanna left the house and decided she was never going back; April doesn't fully trust her boyfriend, Joey, after hearing him have sex with another woman. + + + + Maury + Danny says he does not recall having sex with Kenyetta, but she is promiscuous, and he is only one on a list of possible fathers of her child; April says her baby-daddy vanished after their son's first birthday; Hikean claims he cannot procreate. + + + + Paid Programming + Paid programming. + + + + Stories of Love to the Rescue by Shriners Hospitals for Children® + Alec and Kaleb interview patients and their families, and how their lives have been changed because of the life-changing pediatric specialty care they received at Shriners Hospitals for Children®. + + + + Paid Programming + Paid programming. + + + + The Journey: Stories of Sacrifice with Disabled American Veterans + They sacrificed nearly everything fighting for their country and returned home injured. Host Jack Maxwell profiles three of our nation's heroes. Learn how DAV (Disabled American Veterans) helps them receive the benefits they earned at HelpDAV.org. + + + + Jerry Springer + Amber learns her ex's secret; Bobby learns that his fiancee cheated with his brother; Danny realizes he made a mistake in dumping his girlfriend for two blowup dolls. + + + + Maury + Chell's fiance, Drama, and his friend, Concrete, tell her that when they are out all night, they are at Drama's grandmother's house; Diane's boyfriend tells her that the woman she saw get into his car was a ghost; Amber saw Josh on a dating website. + + + + Karamo + After a nasty argument with her boyfriend, Devante, Kyanna left the house and decided she was never going back; April doesn't fully trust her boyfriend, Joey, after hearing him have sex with another woman. + + + + The Steve Wilkos Show + Daija was jailed and away from her boyfriend, Aerieyon, for two years, but now that she's home, Aerieyon says he has a confession to make; there were some big issues Kayla and Michael should have addressed before marrying. + + + + TMZ Live + Harvey Levin invites viewers inside TMZ's newsroom to see how news is made. + + + + Dish Nation + Entertaining entertainment news: the show dishes on celebrity gossip with humorous commentary on pop culture. + + + + TMZ + The very latest celebrity news. + + + + Inside the NFL + Recaping the greatest moments from week nine. + + + + Whose Line Is It Anyway? + A special episode featuring a compilation of games, moments, and outtakes of never-before-seen footage. + + + + Whose Line Is It Anyway? + A compilation of games, moments, and outtakes of never-before-seen footage. + + + + Dish Nation + Entertaining entertainment news: the show dishes on celebrity gossip with humorous commentary on pop culture. + + + + TMZ + The very latest celebrity news. + + + + Family Guy + Bonnie and Lois take a trip to Paris; Peter uses unorthodox teaching methods while homeschooling Chris and Meg. + + + + Family Guy + A storm hits Quahog, Stoolbend and Langley Falls; Brian consumes questionable substances in an attempt to calm his nerves; Meg loses it after the family takes one too many jabs at her. + + + + Bob's Burgers + When Bob's automatic helicopter falls apart, he battles the manufacturer to get a refund; Tina gets help preparing for her oral book report. + + + + Bob's Burgers + Linda is disappointed by Bob's idea of romance; when the school's chinchilla, which Linda was supposed to be watching, escapes, a wild chase ensues. + + + + TMZ + The very latest celebrity news. + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Chicago P.D. + Intelligence does everything they can to build a case against the elusive leader of a drug ring, but things get complicated when Rojas realizes someone she cares about might be involved. + + + + The Liquidator + Jeff's second store's grand opening appears to be a bland opening, but his micro managing may turn things around. + + + + We the People With Judge Lauren Lake + A one-night stand is blamed for a red wine stain; dispute between ex-friends over money given to benefit goddaughter. + + + + Divorce Court + Samantha says her husband is a "treasure hunter," and his obsession to collect things has led to their property looking like a junkyard: his hoarding has gotten out of control and needs to stop. + + + + Divorce Court + She's already divorced him once, now she's taken him back, but Michele says Jason is up to his old ways, and she's not sure marrying him again is the right choice. + + + + The Steve Wilkos Show + Lorrie says her new husband received sexual advances from another woman; Leslie accuses Lawrence of cheating on her and killing her cat; if Taneisha passes a lie detector test about her fidelity, boyfriend Rasul says he will stop cheating on her. + + + + Karamo + Renee refuses to marry Obediah until he can prove that he's not messing around with his ex; Jason says that Carolyn is his daughter, but his questionable behavior has caused her to have doubts. + + + + Maury + Tia caught her boyfriend in bed with her homeless best friend, but they say they were just watching television; Shelly admits that she had a threesome with her fiance's family member; Terrell's girlfriend may have cheated with his brother. + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + + + + Honoring America's Heroes + Trace Adkins and Wounded Warrior Dan Nevins share the inspiring journeys of four injured veterans and their families. Find out how you can join Wounded Warrior Project in serving those who have sacrificed so much for us. + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + + + + Paid Programming + Paid programming. + + + + Jerry Springer + Bianca's mom and sister weigh in when lying, cheating Felipe tries to win her back; Frankie tries to convince his crush to leave her boyfriend for him. + + + + Maury + Shannon is sure someone else fathered Charlese's child and wants her to stop harassing him; Destiny wants to know if Terry was her biological father; Tyrus says his ex is a liar and a cheater, and he refuses to be a father to another man's child. + + + + Karamo + Renee refuses to marry Obediah until he can prove that he's not messing around with his ex; Jason says that Carolyn is his daughter, but his questionable behavior has caused her to have doubts. + + + + The Steve Wilkos Show + Lanie says that when she told her mother that her ex-boyfriend molested her at age 10, she was called a liar; Lariah says her childhood behavior changed for the worse because her mom's friend molested her. + + + + TMZ Live + Harvey Levin invites viewers inside TMZ's newsroom to see how news is made. + + + + KTLA 5 News at 5 + News + + + + KTLA 5 News at 6 + News + + + + KTLA 5 News at 6:30 + News + + + + Friends + The One With the Baby on the Bus + Joey and Chandler decide to baby-sit and use Ben as a way to pick up women; Phoebe loses her job singing at Central Perk. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Cowboys & Aliens + A 19th-century gunslinger (Daniel Craig) unites townspeople, outlaws, and a band of Apache warriors against an extraterrestrial threat. + + Daniel Craig + Harrison Ford + Olivia Wilde + + 2011 + Movies + Sci-Fi + + + TVPG + + + 2 + + + + KTLA 5 News at 10 + News + + + + KTLA 5 Sports Final + Sports + + + + KTLA 5 News at 11 + News + + + + KTLA 5 Sports Final + Sports + + + + The Silver and Black Show + Player interviews; discussing matchups. + Sports + Football + + + TVPG + + + + The Big Bang Theory + The Spaghetti Catalyst + Sheldon goes to extremes to keep Leonard and Penny happy when they stop speaking to each other. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TV14 + + + + The Big Bang Theory + The Plimpton Stimulation + Sheldon invites a famous physicist to the apartment, and competes with Leonard for her attention. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TV14 + + + + Two and a Half Men + Rough Night in Hump Junction + Alan fears that Charlie's womanizing is getting out of control. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Whipped Unto the Third Generation + Charlie's house is taken over by women when Chelsea convinces him to let Alan's girlfriend move in. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + California Cooking With Jessica Holmes + Sweet Potato and Shishita Pepper Hash, Korean Corn Cheese, Creamy Pumpkin Carbonara, Homemade Apple + Jesssica cooks up some fall foods with sweet potato and shishito pepper hash, Korean corn cheese and a creamy pumpkin carbonara. Then, Jessica finishes it off with homemade apple cinnamon donuts. + Food + + + TVG + + + + Frank Buckley Interviews + KTLA anchor Frank Buckley sits down with various celebrities, political figures and locals for one on one chats about topics of importance. + Political + Performing Arts + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Frank Buckley Interviews + KTLA anchor Frank Buckley sits down with various celebrities, political figures and locals for one on one chats about topics of importance. + Political + Performing Arts + + + TVG + + + + Inside California Politics + Political + + + + KTLA 5 Morning News at 6 + News + + + + KTLA 5 Morning News at 7 + News + + + + KTLA 5 Morning News at 9 + News + + + + KTLA 5 Morning News at 10 + News + + + + In Touch With Dr. Charles Stanley + The Stages of Faith; Overcoming Discouragement + In Touch Ministries is the broadcast teaching ministry of Dr. Charles Stanley. + Religious + + + TVG + + + + Joel Osteen + Joel and Victoria Osteen's message of unconditional love and unending hope reaches everyone across the world. + Religious + + + TVPG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Jack Hanna's Into the Wild + Going Batty + Bats, birds and other jungle creatures in Panama; echolocation; Canopy Tower. + Animals + Instructional + + + TVG + + + + Jack Hanna's Into the Wild + Sea Turtles of Pongara + One-ton leatherback sea turtles return to shore to lay their eggs. + Animals + Instructional + + + TVG + + + + Jack Hanna's Into the Wild + The Wilds + The Wilds conservation center in Ohio: the takin, the Asian one-horned rhinoceros, the white rhinoceros; wild dogs; the cheetah. + Animals + Instructional + + + TVG + + + + Jack Hanna's Into the Wild + Exploring El Valle + Panamanian golden frogs; zip-lining; a cacao plantation. + Animals + Instructional + + + TVG + + + + KTLA 5 News at 4 + News + + + + KTLA 5 News at 5 + News + + + + KTLA 5 News at 6 + News + + + + KTLA 5 News at 6:30 + News + + + + Sullivan's Crossing + Pressure Drop + Maggie makes a difficult decision after Sully lets his temper get the best of him. + + Morgan Kohan + Chad Michael Murray + Scott Patterson + + Drama + + + TVPG + + + + The Chosen + Homecoming + Jesus delivers the Sermon on the Mount to thousands of believers before he and his disciples return to their families. + + Jonathan Roumie + Shahar Isaac + Elizabeth Tabish + + Drama + + + TVPG + + + + Whose Line Is It Anyway? + Penn & Teller 2 + Special guests Penn & Teller.Guests: Penn & Teller.. + Comedy + Game Shows + + + TV14 + + + + KTLA 5 News at 10 + News + + + + KTLA 5 Sports Final + Sports + + + + KTLA 5 News at 11 + News + + + + KTLA 5 Sports Final + Sports + + + + Raiders Gameday + Sports + Football + + + + In Touch With Dr. Charles Stanley + The Stages of Faith + In Touch Ministries is the broadcast teaching ministry of Dr. Charles Stanley. + Religious + + + TVG + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + Court Cam + A teacher pays a shocking price for an affair with an underage student; a murderer must face the parents of his victims in court; a handcuffed defendant resorts to spitting to send a message. + Reality TV + Legal + + + TV14 + + + + Pawn Stars + Gotham Pawn + Limited-edition Batman and Joker Bolin guitars; a bronze sculpture by M.L. Snowden; a pair of signed Betty Crocker letters; a WWII-era Adolf Hitler pincushion. + Reality TV + History + + + TVPG + + + + Family Guy + Friends of Peter G + Brian and Peter are required to attend a 12-step program to deal with their drinking problems; Death (Adam Carolla) gives Peter a glimpse of what life would be like without alcohol. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + The Goldbergs + Man of the House + With everyone preoccupied with the new baby on the way, Erica's graduation is met with lackluster enthusiasm from Beverly and Geoff; Adam's new job is in jeopardy; Barry tries to be the new man of the house. + + Wendi McLendon-Covey + Sean Giambrone + Troy Gentile + + Sitcom + + + TVPG + + + + KTLA 5 Morning News at 4 + News + + + + KTLA 5 Morning News at 4:30 + News + + + + KTLA 5 Morning News at 5 + News + + + + KTLA 5 Morning News at 6 + News + + + + KTLA 5 Morning News at 7 + News + + + + KTLA 5 Morning News at 9 + News + + + + KTLA 5 Morning News at 10 + News + + + + KTLA 5 Morning News at 11 + News + + + + KTLA 5 News at Noon + News + + + + KTLA 5 News at 1 + News + + + + Off The Clock + Chris Schauble, Megan Henderson and Henry DiCarlo give viewers their take on the latest tech trends, superhero news, healthy headlines and more, as well as showing their favorite Southern California spots while discovering more. + Local + Performing Arts + + + + KTLA 5 News at 3 + News + + + + KTLA 5 News at 4 + News + + + + KTLA 5 News at 5 + News + + + + KTLA 5 News at 6 + News + + + + KTLA 5 News at 6:30 + News + + + + L.A. Unscripted + Join KTLA Entertainment Reporter Dayna Devon and friends as they discuss the unique and fun liestyles of the Los Angeles area. + Performing Arts + + + + Two and a Half Men + Phase One, Complete + Jake and Evelyn befriend one of Charlie's one-night stands, causing her to stay longer than expected. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TVPG + + + + Penn & Teller: Fool Us + 2 Dead in Tonight's Episode + Featured magicians include Alexandra, Artem, Anthony Dempsey and Rune Carlsen. + Reality TV + Performing Arts + + + TVPG + + + + Masters of Illusion + Knives Out and Other Strange Magic + Featured magicians include Ed Alonzo, Deadly Game, Lucy Darling, Joshua Jay, Lioz and Caleb Alexander. + Variety + Performing Arts + + + TVPG + + + + World's Funniest Animals + Episode 418 + Super cute and smart cats and dogs; cows playing ball; bears celebrating; horsing around; commentary provided by Carmen Hodgson, Devon Werkheiser and Daniel Curtis Lee.Guests: Carmen Hodgson, Devon Werkheiser, Daniel Curtis Lee.. + Animals + Performing Arts + + + TVPG + + + + KTLA 5 News at 10 + News + + + + KTLA 5 Sports Final + Sports + + + + KTLA 5 News at 11 + News + + + + Friends + The One With Joey's Interview + When Soap Opera Digest requests an interview, Joey enlists his friends to make sure he does not say anything that could cost him his role. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The One With the Baby Shower + During her baby shower, Rachel realizes she is unprepared to be a mother and accepts her mother's (Marlo Thomas) offer to move in to help with the child. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + The Big Bang Theory + The Creepy Candy Coating Corollary + Sheldon seeks revenge on his nemesis, Wil Wheaton; Wolowitz wants Penny to set him up with one of her friends. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + The Big Bang Theory + The Military Miniaturization + Wolowitz has a meeting with Colonel Williams, a representative from the Air Force Department of Material Command. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + Two and a Half Men + Does This Smell Funny to You? + Charlie unknowingly sleeps with an elderly man's (Orson Bean) hot trophy wife. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Court Cam + A murderer found guilty of a crime holds nothing back at sentencing; a convict attempts to get a judge's attention through any means necessary; a man breaks into a courthouse at 3 a.m. and calls 911 to report himself. + Reality TV + Legal + + + TV14 + + + + Pawn Stars + Priciest Pawns + Another look at some of the Priciest items the Pawn Stars have ever seen: a mint condition 1967 Ford Shelby G.T. 350, a Hotchkiss revolving Cannon from the 1800's; $85,000 Gibson guitar once owned by Stephen Stills. + Reality TV + History + + + TVPG + + + + Family Guy + Trading Places + When Chris and Meg trade roles with their parents, Chris works at the brewery and Meg runs the house. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + The Goldbergs + Uncle-ing + With her due date approaching, Erica is over pregnancy and demands a babymoon; Adam and Barry seek out advice on being an uncle from some unexpected sources. + + Wendi McLendon-Covey + Sean Giambrone + Troy Gentile + + Sitcom + + + TVPG + + + + KTLA 5 Morning News at 4 + News + + + + KTLA 5 Morning News at 4:30 + News + + + + KTLA 5 Morning News at 5 + News + + + + KTLA 5 Morning News at 6 + News + + + + KTLA 5 Morning News at 7 + News + + + + KTLA 5 Morning News at 9 + News + + + + KTLA 5 Morning News at 10 + News + + + + KTLA 5 Morning News at 11 + News + + + + KTLA 5 News at Noon + News + + + + KTLA 5 News at 1 + News + + + + Off The Clock + Chris Schauble, Megan Henderson and Henry DiCarlo give viewers their take on the latest tech trends, superhero news, healthy headlines and more, as well as showing their favorite Southern California spots while discovering more. + Local + Performing Arts + + + + KTLA 5 News at 3 + News + + + + KTLA 5 News at 4 + News + + + + KTLA 5 News at 5 + News + + + + KTLA 5 News at 6 + News + + + + KTLA 5 News at 6:30 + News + + + + L.A. Unscripted + Join KTLA Entertainment Reporter Dayna Devon and friends as they discuss the unique and fun liestyles of the Los Angeles area. + Performing Arts + + + + Two and a Half Men + Alan Harper, Frontier Chiropractor + Alan reluctantly agrees to a makeover after running into his ex-wife and her new beau; when the brothers go shopping, they clash over what to buy. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TVPG + + + + Inside the NFL + Week 9 + Recaping the greatest moments from week nine. + Sports + Football + + + TVPG + + + + Whose Line Is It Anyway? + Special 1 + A special episode featuring a compilation of games, moments, and outtakes of never-before-seen footage. + Comedy + Game Shows + + + TV14 + + + + Whose Line Is It Anyway? + Special 2 + A compilation of games, moments, and outtakes of never-before-seen footage. + Comedy + Game Shows + + + TV14 + + + + KTLA 5 News at 10 + News + + + + KTLA 5 Sports Final + Sports + + + + KTLA 5 News at 11 + News + + + + Friends + The One With the Cooking Class + A food critic blasts Monica's cooking in a newspaper review; a cute saleswoman (Rena Sofer) riles Rachel when she flirts with Ross; Phoebe coaches Chandler for a job interview. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The One Where Rachel Is Late + Monica and Phoebe make a bet after Rachel passes her delivery date; Chandler falls asleep at the premiere screening of Joey's new film. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + The Big Bang Theory + The Cornhusker Vortex + Sheldon teaches Leonard how to understand football; a kite-fighting incident threatens Howard and Raj's friendship. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + The Big Bang Theory + The Dependence Transcendence + Sheldon tries to stay awake with an energy drink as the gang races to finish its government project on time; Penny and Amy attend a gathering at Bert the Geologist's house; Koothrappali learns Bernadette's true feeling about her pregnancy. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + Two and a Half Men + The Sea Is a Harsh Mistress + Charlie is convinced he saw his late father while having a near-death experience. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Court Cam + A man accused of killing two of his girlfriends is brought to justice; a deputy recalls his surprising discovery deep in the Montana wilderness; multiple bailiffs are targeted during a defendant's violent outburst. + Reality TV + Legal + + + TV14 + + + + Pawn Stars + Monumental Pawn + Rick goes to look at 1966 Chevy II; a program from the unveiling of the Statue of Liberty; Corey attempts to convince Rick to buy him a company car. + Reality TV + History + + + TVPG + + + + Family Guy + Foreign Affairs + Bonnie and Lois take a trip to Paris; Peter uses unorthodox teaching methods while homeschooling Chris and Meg. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + The Goldbergs + Rhinestones and Roses + The country music craze hits the town, and everyone is line dancing; Adam scores a new job, but his lack of time to spend with Pop-Pop results in some comically disastrous outcomes. + + Wendi McLendon-Covey + Sean Giambrone + Troy Gentile + + Sitcom + + + TVPG + + + + KTLA 5 Morning News at 4 + News + + + + KTLA 5 Morning News at 4:30 + News + + + + KTLA 5 Morning News at 5 + News + + + + KTLA 5 Morning News at 6 + News + + + + KTLA 5 Morning News at 7 + News + + + + KTLA 5 Morning News at 9 + News + + + + KTLA 5 Morning News at 10 + News + + + + KTLA 5 Morning News at 11 + News + + + + KTLA 5 News at Noon + News + + + + KTLA 5 News at 1 + News + + + + Off The Clock + Chris Schauble, Megan Henderson and Henry DiCarlo give viewers their take on the latest tech trends, superhero news, healthy headlines and more, as well as showing their favorite Southern California spots while discovering more. + Local + Performing Arts + + + + KTLA 5 News at 3 + News + + + + Hombres de tierra caliente + Un hombre pierde la razón luego del asesinato de su padre y llega a convertirse en vengador de la justicia. + + Gerardo Reyes + Isabel Rojas + Federico Villa + + 1983 + Movies + Action + + + + C4 en alerta + Información exclusiva, las imágenes y los rostros de los protagonistas de la noticia. + News + + + + Los galleros de Jalisco + Hace 25 años, Juan Huitrón y Matías Carrasco murieron tras una pelea sangrienta en una riña de gallos y les dejaron un antecedente feroz a sus hijos. + + Luis Aguilar + Juan Gallardo + + 1974 + Movies + Drama + + + + Noticias 22 a las 10pm + Las noticias nacionales, internacionales, deportivas y de entretenimiento más relevantes. + News + + + + C4 en alerta + Información exclusiva, las imágenes y los rostros de los protagonistas de la noticia. + News + + + + ¡Ah qué Kiko! + Uno de los personajes más queridos del mundo siempre está en problemas. + + Carlos Villagrán + + Comedy + Children + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + La Dra. Polo Investiga + La Dra. Polo y el fundador Ken Meares investigan una solución totalmente natural para el dolor articular causado por la inflamación. + Paid Program + + + + Javier Romero y Roxana Garcia Introducen + Javier Romero y Roxana Garcia introducen historias de personas que han encontrado una solución totalmente natural para aliviar el dolor articular causado por inflamación. + Paid Program + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + AAA Benefits and Savings + Learn how you could save everyday with AAA, from 24-hour Roadside Assistance and Travel to Insurance and Member Discounts. + Paid Program + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Milenio noticias a las 4 p. m. + Las últimas novedades y las noticias más importantes del día. + News + + + + Milenio noticias a las 4 p. m. + Las últimas novedades y las noticias más importantes del día. + News + + + + Cuando Los Hijos No Vienen + + Raúl Ramírez + Marcela Daviland + + Movies + Drama + + + + Milenio Noticias a las 7 pm con Priscila Cantú y Miguel Karcz + Programa en donde se transmiten noticias de actualidad. + News + + + + C4 en alerta + Información exclusiva, las imágenes y los rostros de los protagonistas de la noticia. + News + + + + El Cristo de los milagros + Tres jinetes maleantes viajan a un pueblo con el fin de robar todo el oro de la iglesia. + + Juan Gallardo + Norma Lazareno + Claudio Lamuza + + 1986 + Movies + Drama + + + + Noticias 22 a las 10pm + Las noticias nacionales, internacionales, deportivas y de entretenimiento más relevantes. + News + + + + C4 en alerta + Información exclusiva, las imágenes y los rostros de los protagonistas de la noticia. + News + + + + ¡Ah qué Kiko! + Uno de los personajes más queridos del mundo siempre está en problemas. + + Carlos Villagrán + + Comedy + Children + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + La Dra. Polo Investiga + La Dra. Polo y el fundador Ken Meares investigan una solución totalmente natural para el dolor articular causado por la inflamación. + Paid Program + + + + 22 Niños + Children + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Cineteca 22 + Performing Arts + + + + Milenio noticias con Tania Díaz y Luis Carlos Ortiz + Un programa que gira en torno a las noticias de actualidad, política y otros asuntos de interés. + News + + + + El mexicano feo + Dos organilleros viven en la misma vecindad, ambos muy diferentes: uno irresponsable y borracho, otro serio y juicioso. + + Raúl Ramírez + Raúl Marcelo + Sergio Ramos + + 1984 + Movies + Drama + + + + Vivalavi + Programa matutino con entrevistas, música, belleza. + Variety + + + + Cosas de la Vida + Rocío Sánchez Azuara conduce este espacio abierto a todo el público en donde se exponen situaciones verídicas de problemas que padece la sociedad. Un programa que defiende a los más necesitados en donde tienen un espacio par ser escuchados. + Talk Shows + + + + El Cali TV show + Un programa de entretenimiento en el que se tocan temas de salud, esparcimiento, belleza y otros asuntos de interés de la comunidad. + News + Performing Arts + + + + Operación Repo + El complejo mundo de los embargos. Este grupo de profesionales no se detendrá hasta cumplir su misión: recuperar para sus propietarios originales los bienes que los nuevos dueños no terminaron de pagar. + Reality TV + Drama + + + TV14 + + + + Chismorreo + Un espacio de noticias y entretenimiento, con un estilo fresco y único. + News Magazine + Performing Arts + + + + Universo Xtremo + Los nightcrawlers pasan largas horas de espera para llegar a las escenas de los sucesos antes que los demás y cubrir accidentes brutales, persecuciones alucinantes, incendios y demás desastres naturales. + Reality TV + + + TVPG + + + + Operación Repo + El complejo mundo de los embargos. Este grupo de profesionales no se detendrá hasta cumplir su misión: recuperar para sus propietarios originales los bienes que los nuevos dueños no terminaron de pagar. + Reality TV + Drama + + + TV14 + + + + Milenio Noticias a las 7 pm con Priscila Cantú y Miguel Karcz + Programa en donde se transmiten noticias de actualidad. + News + + + + C4 en alerta + Información exclusiva, las imágenes y los rostros de los protagonistas de la noticia. + News + + + + ...Y la mujer hizo al hombre + Un general revolucionario analfabeto se. + + Eric del Castillo + Patricia Aspíllaga + + 1974 + Movies + Adventure + + + + Noticias 22 a las 10pm + Las noticias nacionales, internacionales, deportivas y de entretenimiento más relevantes. + News + + + + C4 en alerta + Información exclusiva, las imágenes y los rostros de los protagonistas de la noticia. + News + + + + Mentalista Marcos show + El Mentalista Marcos ayuda a tomar decisiones de vida, recuperar el amor y tomar las riendas de la vida. + Variety + Health + + + + Operación Repo + El complejo mundo de los embargos. Este grupo de profesionales no se detendrá hasta cumplir su misión: recuperar para sus propietarios originales los bienes que los nuevos dueños no terminaron de pagar. + Reality TV + Drama + + + TV14 + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + 22 Niños + Children + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Yo Quiero Ser Mala + Una modesta artista se siente muy amargada al enterarse de que su amado la traiciona con una artista y decide ser mala. + + Maria Elena Marquez + Abel Salazar + Pedro Vargas + + 1949 + Movies + Comedy + + + + Milenio noticias con Tania Díaz y Luis Carlos Ortiz + Un programa que gira en torno a las noticias de actualidad, política y otros asuntos de interés. + News + + + + Fantoche + Un joven es testigo de la muerte de su mejor amigo en un accidente automovilístico, y busca con paciencia vengarse. + + Joaquín Cordero + Lilia Michel + Jorge Alvarez + + 1977 + Movies + Comedy + + + + Vivalavi + Programa matutino con entrevistas, música, belleza. + Variety + + + + Cosas de la Vida + Rocío Sánchez Azuara conduce este espacio abierto a todo el público en donde se exponen situaciones verídicas de problemas que padece la sociedad. Un programa que defiende a los más necesitados en donde tienen un espacio par ser escuchados. + Talk Shows + + + + El Cali TV show + Un programa de entretenimiento en el que se tocan temas de salud, esparcimiento, belleza y otros asuntos de interés de la comunidad. + News + Performing Arts + + + + Operación Repo + El complejo mundo de los embargos. Este grupo de profesionales no se detendrá hasta cumplir su misión: recuperar para sus propietarios originales los bienes que los nuevos dueños no terminaron de pagar. + Reality TV + Drama + + + TV14 + + + + Chismorreo + Un espacio de noticias y entretenimiento, con un estilo fresco y único. + News Magazine + Performing Arts + + + + Universo Xtremo + Los nightcrawlers pasan largas horas de espera para llegar a las escenas de los sucesos antes que los demás y cubrir accidentes brutales, persecuciones alucinantes, incendios y demás desastres naturales. + Reality TV + + + TVPG + + + + Operación Repo + El complejo mundo de los embargos. Este grupo de profesionales no se detendrá hasta cumplir su misión: recuperar para sus propietarios originales los bienes que los nuevos dueños no terminaron de pagar. + Reality TV + Drama + + + TV14 + + + + Milenio Noticias a las 7 pm con Priscila Cantú y Miguel Karcz + Programa en donde se transmiten noticias de actualidad. + News + + + + C4 en alerta + Información exclusiva, las imágenes y los rostros de los protagonistas de la noticia. + News + + + + Cine Mexicano Estelar + Drama + + + + Noticias 22 a las 10pm + Las noticias nacionales, internacionales, deportivas y de entretenimiento más relevantes. + News + + + + C4 en alerta + Información exclusiva, las imágenes y los rostros de los protagonistas de la noticia. + News + + + + Mentalista Marcos show + El Mentalista Marcos ayuda a tomar decisiones de vida, recuperar el amor y tomar las riendas de la vida. + Variety + Health + + + + Operación Repo + El complejo mundo de los embargos. Este grupo de profesionales no se detendrá hasta cumplir su misión: recuperar para sus propietarios originales los bienes que los nuevos dueños no terminaron de pagar. + Reality TV + Drama + + + TV14 + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + 22 Niños + Children + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Si volvieras a mí + Una mujer trata de convencer a la hija de su amante para que mate a su propia madre, pero el hombre descubre el plan. + + Libertad Lamarque + Silvia Pinal + Miguel Torruco + + 1954 + Movies + Drama + + + + Milenio noticias con Tania Díaz y Luis Carlos Ortiz + Un programa que gira en torno a las noticias de actualidad, política y otros asuntos de interés. + News + + + + La banda de la sotana negra + Un sacerdote se relaciona con delincuentes, cabareteras y contrabandistas para descubrir a la banda que le robó su sotana y que comete fechorías amparado en ella. + + Álvaro Zermeño + Lyn May + Narciso Busquets + + 1983 + Movies + Action + + + + Vivalavi + Programa matutino con entrevistas, música, belleza. + Variety + + + + Cosas de la Vida + Rocío Sánchez Azuara conduce este espacio abierto a todo el público en donde se exponen situaciones verídicas de problemas que padece la sociedad. Un programa que defiende a los más necesitados en donde tienen un espacio par ser escuchados. + Talk Shows + + + + Programación de Canal Once + Programación del Canal Once. + Performing Arts + + + + Programación de Canal Once + Programación del Canal Once. + Performing Arts + + + + Programación de Canal Once + Programación del Canal Once. + Performing Arts + + + + Programación de Canal Once + Programación del Canal Once. + Performing Arts + + + + Programación de Canal Once + Programación del Canal Once. + Performing Arts + + + + Programación de Canal Once + Programación del Canal Once. + Performing Arts + + + + Programación de Canal Once + Programación del Canal Once. + Performing Arts + + + + Programación de Canal Once + Programación del Canal Once. + Performing Arts + + + + Programación de Canal Once + Programación del Canal Once. + Performing Arts + + + + Programación de Canal Once + Programación del Canal Once. + Performing Arts + + + + Programación de Canal Once + Programación del Canal Once. + Performing Arts + + + + Programación de Canal Once + Programación del Canal Once. + Performing Arts + + + + Programación de Canal Once + Programación del Canal Once. + Performing Arts + + + + Programación de Canal Once + Programación del Canal Once. + Performing Arts + + + + Programación de Canal Once + Programación del Canal Once. + Performing Arts + + + + Programación de Canal Once + Programación del Canal Once. + Performing Arts + + + + Programación de Canal Once + Programación del Canal Once. + Performing Arts + + + + Programación de Canal Once + Programación del Canal Once. + Performing Arts + + + + Programación de Canal Once + Programación del Canal Once. + Performing Arts + + + + Programación de Canal Once + Programación del Canal Once. + Performing Arts + + + + Programación de Canal Once + Programación del Canal Once. + Performing Arts + + + + Programación de Canal Once + Programación del Canal Once. + Performing Arts + + + + Programación de Canal Once + Programación del Canal Once. + Performing Arts + + + + Programación de Canal Once + Programación del Canal Once. + Performing Arts + + + + Programación de Canal Once + Programación del Canal Once. + Performing Arts + + + + Programación de Canal Once + Programación del Canal Once. + Performing Arts + + + + Programación de Canal Once + Programación del Canal Once. + Performing Arts + + + + El otro lado del paraíso + En el burdel Clara llega a ver a Dooda y ve a Laerte en el piso, ésta piensa que fue Clara y se echa la culpa. Clara pide a Patrick defenderla. + + Bianca Bin + Sergio Guizé + Grazi Massafera + + Soaps + Drama + + + TVG + + + + El otro lado del paraíso + Adriana, la nueva abogada de Dooda, va a visitarla, pero ella no quiere que la defiendan. Clara lleva a Susy al departamento de Samuel y Ciso. + + Bianca Bin + Sergio Guizé + Grazi Massafera + + Soaps + Drama + + + TVG + + + + El otro lado del paraíso + Patrick le revela a Dooda que presiente que ella es mamá de Clara. Susy deja a Samuel, él le ofrece dinero para no revelar su secreto. + + Bianca Bin + Sergio Guizé + Grazi Massafera + + Soaps + Drama + + + TVG + + + + El otro lado del paraíso + Livia va a buscar a Tomaz a Piedra Santa y se confronta con Clara. Ciso termina su compromiso con Irene. + + Bianca Bin + Sergio Guizé + Grazi Massafera + + Soaps + Drama + + + TVG + + + + Rock Story + Gui encuentra a Diana en Som Discos y los dos discuten. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + Rock Story + Gui consigue la confesión de Carlos Barbosa. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + Rock Story + Gui consigue la confesión de Carlos Barbosa. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + Rock Story + Gui le cuenta con detalle a Lázaro cómo descubrió el robo de la canción. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + Rock Story + Alex le prohibe a Lorena pedirle perdón a Julia. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + El otro lado del paraíso + Adriana, la nueva abogada de Dooda, va a visitarla, pero ella no quiere que la defiendan. Clara lleva a Susy al departamento de Samuel y Ciso. + + Bianca Bin + Sergio Guizé + Grazi Massafera + + Soaps + Drama + + + TVG + + + + El otro lado del paraíso + Patrick le revela a Dooda que presiente que ella es mamá de Clara. Susy deja a Samuel, él le ofrece dinero para no revelar su secreto. + + Bianca Bin + Sergio Guizé + Grazi Massafera + + Soaps + Drama + + + TVG + + + + El otro lado del paraíso + Livia va a buscar a Tomaz a Piedra Santa y se confronta con Clara. Ciso termina su compromiso con Irene. + + Bianca Bin + Sergio Guizé + Grazi Massafera + + Soaps + Drama + + + TVG + + + + En el día del señor + Misa en español, es un programa semanal para todos los hispanos producido desde los estudios de Radio Paz en Miami. + Religious + + + + Sabor y fusión + El chef peruano Emmanuel Piqueras hace un recorrido por los mejores restaurantes y huariques de los Estados Unidos que llevan el sello del sabor peruano y de una manera ágil y amena promueve la gastronomía y productos peruanos. + Food + + + + Esto es guerra + Un concurso juvenil que divide a los concursantes en dos equipos mixtos, cada equipo con un capitán y un reto por cumplir que es ordenado por el tribunal. + Game Shows + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + En el día del señor + Misa en español, es un programa semanal para todos los hispanos producido desde los estudios de Radio Paz en Miami. + Religious + + + + Reporte semanal + Un resumen de las noticias más relevantes de la semana del Perú y el mundo. + News Magazine + + + + Rock Story + Gui inventa una disculpa a Lázaro por haber entrado a su casa, pero el representante no queda convencido. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + Rock Story + Gui encuentra a Diana en Som Discos y los dos discuten. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + Rock Story + Gui consigue la confesión de Carlos Barbosa. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + Rock Story + Gui le cuenta con detalle a Lázaro cómo descubrió el robo de la canción. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + Rock Story + Alex le prohibe a Lorena pedirle perdón a Julia. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + El otro lado del paraíso + Patrick le revela a Dooda que presiente que ella es mamá de Clara. Susy deja a Samuel, él le ofrece dinero para no revelar su secreto. + + Bianca Bin + Sergio Guizé + Grazi Massafera + + Soaps + Drama + + + TVG + + + + El otro lado del paraíso + Livia va a buscar a Tomaz a Piedra Santa y se confronta con Clara. Ciso termina su compromiso con Irene. + + Bianca Bin + Sergio Guizé + Grazi Massafera + + Soaps + Drama + + + TVG + + + + Punto final + Un exhaustivo análisis político, social y económico de los principales eventos que ocupan la agenda nacional e internacional. + News + Discussion + + + + Punto final + Un exhaustivo análisis político, social y económico de los principales eventos que ocupan la agenda nacional e internacional. + News + Discussion + + + + El otro lado del paraíso + En el burdel Clara llega a ver a Dooda y ve a Laerte en el piso, ésta piensa que fue Clara y se echa la culpa. Clara pide a Patrick defenderla. + + Bianca Bin + Sergio Guizé + Grazi Massafera + + Soaps + Drama + + + TVG + + + + El otro lado del paraíso + Adriana, la nueva abogada de Dooda, va a visitarla, pero ella no quiere que la defiendan. Clara lleva a Susy al departamento de Samuel y Ciso. + + Bianca Bin + Sergio Guizé + Grazi Massafera + + Soaps + Drama + + + TVG + + + + El otro lado del paraíso + Patrick le revela a Dooda que presiente que ella es mamá de Clara. Susy deja a Samuel, él le ofrece dinero para no revelar su secreto. + + Bianca Bin + Sergio Guizé + Grazi Massafera + + Soaps + Drama + + + TVG + + + + El otro lado del paraíso + Livia va a buscar a Tomaz a Piedra Santa y se confronta con Clara. Ciso termina su compromiso con Irene. + + Bianca Bin + Sergio Guizé + Grazi Massafera + + Soaps + Drama + + + TVG + + + + Rock Story + Gui le cuenta con detalle a Lázaro cómo descubrió el robo de la canción. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + Rock Story + Alex le prohibe a Lorena pedirle perdón a Julia. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + Latina noticias matinal + Las noticias del Perú y el mundo. + News + + + + El otro lado del paraíso + Caetana al fin revela a Elena que su padre es Josafá. Aura y Gael duermen juntos. Laerte habla con Sofía, la chantajea y ésta lo mata. + + Bianca Bin + Sergio Guizé + Grazi Massafera + + Soaps + Drama + + + TVG + + + + El otro lado del paraíso + En el burdel Clara llega a ver a Dooda y ve a Laerte en el piso, ésta piensa que fue Clara y se echa la culpa. Clara pide a Patrick defenderla. + + Bianca Bin + Sergio Guizé + Grazi Massafera + + Soaps + Drama + + + TVG + + + + El otro lado del paraíso + Adriana, la nueva abogada de Dooda, va a visitarla, pero ella no quiere que la defiendan. Clara lleva a Susy al departamento de Samuel y Ciso. + + Bianca Bin + Sergio Guizé + Grazi Massafera + + Soaps + Drama + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Rock Story + Gui consigue la confesión de Carlos Barbosa. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Rock Story + Gui le cuenta con detalle a Lázaro cómo descubrió el robo de la canción. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + Resumen: El otro lado del paraíso + Un resumen sobre. + Specials + Soaps + + + + Noticiero edición mediodía + Información permanente, enlaces y reportajes de Uruguay e internacionales. + News + + + + Esto es guerra + Un concurso juvenil que divide a los concursantes en dos equipos mixtos, cada equipo con un capitán y un reto por cumplir que es ordenado por el tribunal. + Game Shows + + + TVG + + + + Rock Story + Alex le prohibe a Lorena pedirle perdón a Julia. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + El otro lado del paraíso + Livia va a buscar a Tomaz a Piedra Santa y se confronta con Clara. Ciso termina su compromiso con Irene. + + Bianca Bin + Sergio Guizé + Grazi Massafera + + Soaps + Drama + + + TVG + + + + Rock Story + Diana cuenta a Vanessa que inventó su embarazo para intentar regresar con Gui. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + El otro lado del paraíso + Juvenal le confiesa a Mariano que está enamorado de Estela. Toña besa a Bruno frente a Raquel en el restaurante donde se ven para cenar. + + Bianca Bin + Sergio Guizé + Grazi Massafera + + Soaps + Drama + + + TVG + + + + Rock Story + Alex le prohibe a Lorena pedirle perdón a Julia. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + Rock Story + Diana cuenta a Vanessa que inventó su embarazo para intentar regresar con Gui. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + El otro lado del paraíso + Juvenal le confiesa a Mariano que está enamorado de Estela. Toña besa a Bruno frente a Raquel en el restaurante donde se ven para cenar. + + Bianca Bin + Sergio Guizé + Grazi Massafera + + Soaps + Drama + + + TVG + + + + Esto es guerra + Un concurso juvenil que divide a los concursantes en dos equipos mixtos, cada equipo con un capitán y un reto por cumplir que es ordenado por el tribunal. + Game Shows + + + TVG + + + + El otro lado del paraíso + Juvenal le confiesa a Mariano que está enamorado de Estela. Toña besa a Bruno frente a Raquel en el restaurante donde se ven para cenar. + + Bianca Bin + Sergio Guizé + Grazi Massafera + + Soaps + Drama + + + TVG + + + + Rock Story + Alex le prohibe a Lorena pedirle perdón a Julia. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + Rock Story + Diana cuenta a Vanessa que inventó su embarazo para intentar regresar con Gui. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + Latina noticias matinal + Las noticias del Perú y el mundo. + News + + + + El otro lado del paraíso + Adriana, la nueva abogada de Dooda, va a visitarla, pero ella no quiere que la defiendan. Clara lleva a Susy al departamento de Samuel y Ciso. + + Bianca Bin + Sergio Guizé + Grazi Massafera + + Soaps + Drama + + + TVG + + + + Rock Story + Gui consigue la confesión de Carlos Barbosa. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + El otro lado del paraíso + Patrick le revela a Dooda que presiente que ella es mamá de Clara. Susy deja a Samuel, él le ofrece dinero para no revelar su secreto. + + Bianca Bin + Sergio Guizé + Grazi Massafera + + Soaps + Drama + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Rock Story + Gui le cuenta con detalle a Lázaro cómo descubrió el robo de la canción. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Rock Story + Alex le prohibe a Lorena pedirle perdón a Julia. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + Resumen: El otro lado del paraíso + Un resumen sobre. + Specials + Soaps + + + + Noticiero edición mediodía + Información permanente, enlaces y reportajes de Uruguay e internacionales. + News + + + + Esto es guerra + Un concurso juvenil que divide a los concursantes en dos equipos mixtos, cada equipo con un capitán y un reto por cumplir que es ordenado por el tribunal. + Game Shows + + + TVG + + + + Rock Story + Diana cuenta a Vanessa que inventó su embarazo para intentar regresar con Gui. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + El otro lado del paraíso + Juvenal le confiesa a Mariano que está enamorado de Estela. Toña besa a Bruno frente a Raquel en el restaurante donde se ven para cenar. + + Bianca Bin + Sergio Guizé + Grazi Massafera + + Soaps + Drama + + + TVG + + + + Rock Story + Julia se niega a perdonar a Lorena. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + El otro lado del paraíso + Bruno le pide a Patrick le ayude con el trámite de divorcio con Toña. Bruno visita a Toña para reclamarle por el altercado del restaurante. + + Bianca Bin + Sergio Guizé + Grazi Massafera + + Soaps + Drama + + + TVG + + + + Rock Story + Diana cuenta a Vanessa que inventó su embarazo para intentar regresar con Gui. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + Rock Story + Julia se niega a perdonar a Lorena. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + El otro lado del paraíso + Bruno le pide a Patrick le ayude con el trámite de divorcio con Toña. Bruno visita a Toña para reclamarle por el altercado del restaurante. + + Bianca Bin + Sergio Guizé + Grazi Massafera + + Soaps + Drama + + + TVG + + + + Esto es guerra + Un concurso juvenil que divide a los concursantes en dos equipos mixtos, cada equipo con un capitán y un reto por cumplir que es ordenado por el tribunal. + Game Shows + + + TVG + + + + El otro lado del paraíso + Bruno le pide a Patrick le ayude con el trámite de divorcio con Toña. Bruno visita a Toña para reclamarle por el altercado del restaurante. + + Bianca Bin + Sergio Guizé + Grazi Massafera + + Soaps + Drama + + + TVG + + + + Rock Story + Diana cuenta a Vanessa que inventó su embarazo para intentar regresar con Gui. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + Rock Story + Julia se niega a perdonar a Lorena. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + Latina noticias matinal + Las noticias del Perú y el mundo. + News + + + + El otro lado del paraíso + Patrick le revela a Dooda que presiente que ella es mamá de Clara. Susy deja a Samuel, él le ofrece dinero para no revelar su secreto. + + Bianca Bin + Sergio Guizé + Grazi Massafera + + Soaps + Drama + + + TVG + + + + Rock Story + Gui le cuenta con detalle a Lázaro cómo descubrió el robo de la canción. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + El otro lado del paraíso + Livia va a buscar a Tomaz a Piedra Santa y se confronta con Clara. Ciso termina su compromiso con Irene. + + Bianca Bin + Sergio Guizé + Grazi Massafera + + Soaps + Drama + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Rock Story + Alex le prohibe a Lorena pedirle perdón a Julia. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Rock Story + Diana cuenta a Vanessa que inventó su embarazo para intentar regresar con Gui. + + Vladimir Brichta + Nathália Dill + Alinne Moraes + + Soaps + Drama + + + + Resumen: El otro lado del paraíso + Un resumen sobre. + Specials + Soaps + + + + Noticiero edición mediodía + Información permanente, enlaces y reportajes de Uruguay e internacionales. + News + + + + Esto es guerra + Un concurso juvenil que divide a los concursantes en dos equipos mixtos, cada equipo con un capitán y un reto por cumplir que es ordenado por el tribunal. + Game Shows + + + TVG + + + + Película + Movie to be disclosed. + Performing Arts + + + + Película + Movie to be disclosed. + Performing Arts + + + + La voz de la ciudad + News + + + + Genesis + Religious + + + + Problemas y soluciones + Religious + + + + Prosperidad con Dios + Religious + + + + Problemas y soluciones + Religious + + + + Problemas y soluciones + Religious + + + + Prosperidad con Dios + Religious + + + + Vicios tienen cura + Religious + + + + Problemas y soluciones + Religious + + + + Nuestro tiempo + Religious + + + + Punto de luz + Religious + + + + La hora de fe + Religious teaching. + Religious + + + + Programa pagado + Paid programming. + Paid Program + Shopping + + + TVG + + + + Problemas y soluciones + Religious + + + + Latina kids + Children + Performing Arts + + + + Programa del Templo + Religious + + + + La hora de fe + Religious teaching. + Religious + + + + Problemas y soluciones + Religious + + + + Prosperidad con Dios + Se enseña cómo tener una vida económica próspera con Dios. + Religious + + + + Emprendedores de la fe + Se motiva a las personas a salir adelante en sus negocios y se enseña a usar la fe para prosperar en sus finanzas. + Religious + + + + Santo Culto + Religious + + + + Mano amiga + Religious + + + + Arena latina + El repaso a toda la información del deporte en Visión Latina 57.1. + Sports + Talk Show + + + + El rico y Lázaro + Inspirada en la parábola que contó Jesucristo a sus discípulos, narra la historia de dos hombres que mueren el mismo día. Uno de ellos va al cielo, el otro al infierno. + + Milena Toscano + Igor Rickli + Dudu Azevedo + + Soaps + + + + Latina kids + Un programa de variedad con entretenidos dibujos animados, manualidades, videos divertidos y amenas actividades para los niños. + Children + Performing Arts + + + + Película + Lo mejor del arte cinematográfico mundial. + Performing Arts + + + + Película + Lo mejor del arte cinematográfico mundial. + Performing Arts + + + + Génesis + Adaptación de uno de los libros más reconocidos de la Biblia, que aborda la historia del origen de la humanidad, invitando a entender el presente, volviendo al principio de todo. La caída de Lucifer, la vida de Adán y Eva, Noé y el diluvio, y otros. + + Carlo Porto + Juliana Boller + Igor Rickli + + Soaps + History + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + Prosperidad con Dios + Se enseña cómo tener una vida económica próspera con Dios. + Religious + + + + Terapia del amor + Un programa enfocado en el éxito de la vida sentimental, con consejos para que una persona pueda ser feliz en el amor. + Religious + + + + Prosperidad con Dios + Se enseña cómo tener una vida económica próspera con Dios. + Religious + + + + Vicios tienen cura + Programa que trata problemas de adicciones que han destruido familias. Se explica cómo terminar con ellos a partir de casos reales de personas que lograron vencer sus adicciones. + Religious + + + + Punto de luz + Familiares entregan sus peticiones para la oración por los enfermos; una reunión de sanidad para encontrar la cura por medio de la fuerza de la oración. + Religious + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Nuestro tiempo + El tratamiento de temas cotidianos como el suicidio, los vicios, la brujería o la depresión, y cómo Dios ayuda a la gente que cree en él, a superarlos. + Religious + + + + Punto de luz + Familiares entregan sus peticiones para la oración por los enfermos; una reunión de sanidad para encontrar la cura por medio de la fuerza de la oración. + Religious + + + + Hora de Fe + Religious + + + + La hora del impacto + Se comparten y atienden en vivo las peticiones de oración que los seguidores envían. + Local + + + + Problemas y soluciones + Religious + + + + Latina kids + Un programa de variedad con entretenidos dibujos animados, manualidades, videos divertidos y amenas actividades para los niños. + Children + Performing Arts + + + + Mañana latina + Magazine matutino dedicado a toda la familia, con una gran variedad de temas, grandes invitados y mucha diversión. + Performing Arts + + + + Revelando misterios + Explicación sobre las razones por las que acontecen ciertas cosas en la vida. + Religious + + + + Prosperidad con Dios + Se enseña cómo tener una vida económica próspera con Dios. + Religious + + + + La voz de la ciudad + Información sobre las noticias del mundo. + News + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + El rico y Lázaro + Inspirada en la parábola que contó Jesucristo a sus discípulos, narra la historia de dos hombres que mueren el mismo día. Uno de ellos va al cielo, el otro al infierno. + + Milena Toscano + Igor Rickli + Dudu Azevedo + + Soaps + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + La voz de la ciudad: Segunda edición + News + + + + Latina kids + Un programa de variedad con entretenidos dibujos animados, manualidades, videos divertidos y amenas actividades para los niños. + Children + Performing Arts + + + + Latina kids + Un programa de variedad con entretenidos dibujos animados, manualidades, videos divertidos y amenas actividades para los niños. + Children + Performing Arts + + + + Bonnie Bear + Bonnie Bear utiliza sus manos y hermosos sonidos para crear sus hermosos cuadros. + Children + Instructional + + + + Rompiendo el silencio + Se presentan variedades de temas que ayudan en ciertas situaciones que se viven en la vida diaria. + Talk Shows + + + + El rico y Lázaro + Inspirada en la parábola que contó Jesucristo a sus discípulos, narra la historia de dos hombres que mueren el mismo día. Uno de ellos va al cielo, el otro al infierno. + + Milena Toscano + Igor Rickli + Dudu Azevedo + + Soaps + + + + Génesis + Adaptación de uno de los libros más reconocidos de la Biblia, que aborda la historia del origen de la humanidad, invitando a entender el presente, volviendo al principio de todo. La caída de Lucifer, la vida de Adán y Eva, Noé y el diluvio, y otros. + + Carlo Porto + Juliana Boller + Igor Rickli + + Soaps + History + + + + Visión latina famosos + Información actualizada sobre los famosos y el mundo del entretenimiento. + News Magazine + Performing Arts + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + La voz de la ciudad + Información sobre las noticias del mundo. + News + + + + Terapia del amor + Un programa enfocado en el éxito de la vida sentimental, con consejos para que una persona pueda ser feliz en el amor. + Religious + + + + Prosperidad con Dios + Se enseña cómo tener una vida económica próspera con Dios. + Religious + + + + Vicios tienen cura + Programa que trata problemas de adicciones que han destruido familias. Se explica cómo terminar con ellos a partir de casos reales de personas que lograron vencer sus adicciones. + Religious + + + + Punto de luz + Familiares entregan sus peticiones para la oración por los enfermos; una reunión de sanidad para encontrar la cura por medio de la fuerza de la oración. + Religious + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Nuestro tiempo + El tratamiento de temas cotidianos como el suicidio, los vicios, la brujería o la depresión, y cómo Dios ayuda a la gente que cree en él, a superarlos. + Religious + + + + Punto de luz + Familiares entregan sus peticiones para la oración por los enfermos; una reunión de sanidad para encontrar la cura por medio de la fuerza de la oración. + Religious + + + + Hora de Fe + Religious + + + + La hora del impacto + Se comparten y atienden en vivo las peticiones de oración que los seguidores envían. + Local + + + + Problemas y soluciones + Religious + + + + Latina kids + Un programa de variedad con entretenidos dibujos animados, manualidades, videos divertidos y amenas actividades para los niños. + Children + Performing Arts + + + + Mañana latina + Magazine matutino dedicado a toda la familia, con una gran variedad de temas, grandes invitados y mucha diversión. + Performing Arts + + + + Revelando misterios + Explicación sobre las razones por las que acontecen ciertas cosas en la vida. + Religious + + + + Prosperidad con Dios + Se enseña cómo tener una vida económica próspera con Dios. + Religious + + + + La voz de la ciudad + Información sobre las noticias del mundo. + News + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + El rico y Lázaro + Inspirada en la parábola que contó Jesucristo a sus discípulos, narra la historia de dos hombres que mueren el mismo día. Uno de ellos va al cielo, el otro al infierno. + + Milena Toscano + Igor Rickli + Dudu Azevedo + + Soaps + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + La voz de la ciudad: Segunda edición + News + + + + Latina kids + Un programa de variedad con entretenidos dibujos animados, manualidades, videos divertidos y amenas actividades para los niños. + Children + Performing Arts + + + + Latina kids + Un programa de variedad con entretenidos dibujos animados, manualidades, videos divertidos y amenas actividades para los niños. + Children + Performing Arts + + + + Bonnie Bear + Bonnie Bear utiliza sus manos y hermosos sonidos para crear sus hermosos cuadros. + Children + Instructional + + + + Rompiendo el silencio + Se presentan variedades de temas que ayudan en ciertas situaciones que se viven en la vida diaria. + Talk Shows + + + + El rico y Lázaro + Inspirada en la parábola que contó Jesucristo a sus discípulos, narra la historia de dos hombres que mueren el mismo día. Uno de ellos va al cielo, el otro al infierno. + + Milena Toscano + Igor Rickli + Dudu Azevedo + + Soaps + + + + Génesis + Adaptación de uno de los libros más reconocidos de la Biblia, que aborda la historia del origen de la humanidad, invitando a entender el presente, volviendo al principio de todo. La caída de Lucifer, la vida de Adán y Eva, Noé y el diluvio, y otros. + + Carlo Porto + Juliana Boller + Igor Rickli + + Soaps + History + + + + Visión latina famosos + Información actualizada sobre los famosos y el mundo del entretenimiento. + News Magazine + Performing Arts + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + La voz de la ciudad + Información sobre las noticias del mundo. + News + + + + Terapia del amor + Un programa enfocado en el éxito de la vida sentimental, con consejos para que una persona pueda ser feliz en el amor. + Religious + + + + Prosperidad con Dios + Se enseña cómo tener una vida económica próspera con Dios. + Religious + + + + Vicios tienen cura + Programa que trata problemas de adicciones que han destruido familias. Se explica cómo terminar con ellos a partir de casos reales de personas que lograron vencer sus adicciones. + Religious + + + + Punto de luz + Familiares entregan sus peticiones para la oración por los enfermos; una reunión de sanidad para encontrar la cura por medio de la fuerza de la oración. + Religious + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Nuestro tiempo + El tratamiento de temas cotidianos como el suicidio, los vicios, la brujería o la depresión, y cómo Dios ayuda a la gente que cree en él, a superarlos. + Religious + + + + Punto de luz + Familiares entregan sus peticiones para la oración por los enfermos; una reunión de sanidad para encontrar la cura por medio de la fuerza de la oración. + Religious + + + + Hora de Fe + Religious + + + + La hora del impacto + Se comparten y atienden en vivo las peticiones de oración que los seguidores envían. + Local + + + + Problemas y soluciones + Religious + + + + Latina kids + Un programa de variedad con entretenidos dibujos animados, manualidades, videos divertidos y amenas actividades para los niños. + Children + Performing Arts + + + + Mañana latina + Magazine matutino dedicado a toda la familia, con una gran variedad de temas, grandes invitados y mucha diversión. + Performing Arts + + + + Revelando misterios + Explicación sobre las razones por las que acontecen ciertas cosas en la vida. + Religious + + + + Prosperidad con Dios + Se enseña cómo tener una vida económica próspera con Dios. + Religious + + + + La voz de la ciudad + Información sobre las noticias del mundo. + News + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + El rico y Lázaro + Inspirada en la parábola que contó Jesucristo a sus discípulos, narra la historia de dos hombres que mueren el mismo día. Uno de ellos va al cielo, el otro al infierno. + + Milena Toscano + Igor Rickli + Dudu Azevedo + + Soaps + + + + Problemas y soluciones + Se tratan casos impactantes sobre trabajos de brujería y depresión, y cómo, por medio de la oración, la paz regresa a la vida de las personas. + Religious + + + + La voz de la ciudad: Segunda edición + News + + + + Noticias Caracol + Edición central del noticiero informativo que registra todos los días de la semana los hechos más importantes de Colombia y el mundo, en los campos de entretenimiento, deportes, salud, arte y muchas más. + News + + + + Sábados felices + El legendario programa televisivo presenta en sus segmentos característicos, una gama variada de estilos de comedia, cuenta chistes, parodias originales, caracterizaciones de importantes personalidades, cuenteros y troveros. + + Fabiola Posada + Álvaro Lemmon + Norberto López + + Comedy + Performing Arts + + + + Se dice de mí + Un programa que muestra la historia de vida y trayectoria de cantantes, deportistas, actores y presentadores, donde hablan sobre los aspectos positivos y negativos de sus vidas. + Talk Shows + Reality TV + + + + La red + Los chismes, la información más detallada de los famosos de la farándula y lo que está sucediendo en el mundo del entretenimiento, son transmitidos en este espacio en que se revela lo más íntimo y secreto de las estrellas y sus escándalos. + News Magazine + Performing Arts + + + TVG + + + + La red + Los chismes, la información más detallada de los famosos de la farándula y lo que está sucediendo en el mundo del entretenimiento, son transmitidos en este espacio en que se revela lo más íntimo y secreto de las estrellas y sus escándalos. + News Magazine + Performing Arts + + + TVG + + + + Sábados felices + El legendario programa televisivo presenta en sus segmentos característicos, una gama variada de estilos de comedia, cuenta chistes, parodias originales, caracterizaciones de importantes personalidades, cuenteros y troveros. + + Fabiola Posada + Álvaro Lemmon + Norberto López + + Comedy + Performing Arts + + + + La sartén por el mango + Un grupo de expertos enseñan diferentes técnicas, recetas, consejos prácticos, guías de compras, aportes nutricionales y curiosidades de la cocina. + Health + Food + + + + Noticias Caracol + Edición central del noticiero informativo que registra todos los días de la semana los hechos más importantes de Colombia y el mundo, en los campos de entretenimiento, deportes, salud, arte y muchas más. + News + + + + Caracol cine + Alfombras rojas, estrenos y entrevistas, junto a las mejores noticias cinematográficas de Colombia y el mundo. + News + Performing Arts + + + TVG + + + + La finca de hoy + Programa dedicado a la producción agropecuaria, economía campesina, tecnología, investigación, sanidad y muchos temas más, relacionados con el campo y su gente. + Regular + + + + La Dolce Vita + En cada programa, una invitación a conocer una variedad de personas muy particulares, lugares placenteros y estilos de vida. + Documentary + + + TVG + + + + Santa Misa + Celebración de la Santa Misa. + Religious + + + TVG + + + + Las mujeres de mi tierra + Mujeres que inspiran y deslumbran con sus logros y acciones. Las mejores historias de las mujeres más destacadas de Colombia. + Regular + + + + Latinos por el mundo + Historias de latinos que dejaron sus tierras para introducirse en nuevas culturas y conocer nuevos lugares. + Travel + Performing Arts + + + TVG + + + + Deportes 360 + Un recorrido por el deporte mundial y el desempeño de los deportistas colombianos en eventos internacionales. + Sports + Talk Show + + + TVG + + + + Los magos de la cocina + Un recorrido por los principales municipios gastronómicos de Colombia. Alex Burgy investiga acerca de la gastronomía típica de cada uno de estos sitios. + Food + + + TVG + + + + La sartén por el mango + Un grupo de expertos enseñan diferentes técnicas, recetas, consejos prácticos, guías de compras, aportes nutricionales y curiosidades de la cocina. + Health + Food + + + + Travesía + Programa de turismo y aventuras lleno de adrenalina que presenta las travesías más impactantes alrededor del mundo. + Travel + + + TVG + + + + Noticias Caracol + Edición de mediodía del noticiero informativo que registra todos los días de la semana los hechos más importantes de Colombia y el mundo, en los campos de entretenimiento, deportes, salud, arte y muchas más. + News + + + + La red + Los chismes, la información más detallada de los famosos de la farándula y lo que está sucediendo en el mundo del entretenimiento, son transmitidos en este espacio en que se revela lo más íntimo y secreto de las estrellas y sus escándalos. + News Magazine + Performing Arts + + + TVG + + + + Expediente final + Un programa que saca a la luz los secretos de las muertes de las celebridades de Colombia, porque no todo lo investigado es revelado. + Documentary + + + + Suso's show + Un programa de comedia y talk show en donde. + + Dany Alejandro Hoyos + + Comedy + Performing Arts + + + + Noticias Caracol + Edición central del noticiero informativo que registra todos los días de la semana los hechos más importantes de Colombia y el mundo, en los campos de entretenimiento, deportes, salud, arte y muchas más. + News + + + + Los informantes + Un programa de análisis y opinión conformado por un excelente equipo periodístico que se encarga de contar historias a través de crónicas, perfiles y entrevistas. + News Magazine + Talk Shows + + + TVG + + + + Séptimo día + Un programa periodístico que trata temas de actualidad controversiales. Se habla sobre temas polémicos como problemas sociales, económicos, educativos y más en Colombia. + News Magazine + + + + Caracol cine + Alfombras rojas, estrenos y entrevistas, junto a las mejores noticias cinematográficas de Colombia y el mundo. + News + Performing Arts + + + TVG + + + + Suso's show + Un programa de comedia y talk show en donde. + + Dany Alejandro Hoyos + + Comedy + Performing Arts + + + + Los magos de la cocina + Un recorrido por los principales municipios gastronómicos de Colombia. Alex Burgy investiga acerca de la gastronomía típica de cada uno de estos sitios. + Food + + + TVG + + + + Séptimo día + Un programa periodístico que trata temas de actualidad controversiales. Se habla sobre temas polémicos como problemas sociales, económicos, educativos y más en Colombia. + News Magazine + + + + Séptimo día + Un programa periodístico que trata temas de actualidad controversiales. Se habla sobre temas polémicos como problemas sociales, económicos, educativos y más en Colombia. + News Magazine + + + + La sartén por el mango + Un grupo de expertos enseñan diferentes técnicas, recetas, consejos prácticos, guías de compras, aportes nutricionales y curiosidades de la cocina. + Health + Food + + + + La Dolce Vita + En cada programa, una invitación a conocer una variedad de personas muy particulares, lugares placenteros y estilos de vida. + Documentary + + + TVG + + + + De moda con Ericka + Programa de entretenimiento que muestra lo mejor de la vida social, eventos, gastronomía y otros de la región del Caribe. + Fashion + + + + Se dice de mí + Un programa que muestra la historia de vida y trayectoria de cantantes, deportistas, actores y presentadores, donde hablan sobre los aspectos positivos y negativos de sus vidas. + Talk Shows + Reality TV + + + + Expediente final + Un programa que saca a la luz los secretos de las muertes de las celebridades de Colombia, porque no todo lo investigado es revelado. + Documentary + + + + La finca de hoy + Programa dedicado a la producción agropecuaria, economía campesina, tecnología, investigación, sanidad y muchos temas más, relacionados con el campo y su gente. + Regular + + + + Deportes 360 + Un recorrido por el deporte mundial y el desempeño de los deportistas colombianos en eventos internacionales. + Sports + Talk Show + + + TVG + + + + Los informantes + Un programa de análisis y opinión conformado por un excelente equipo periodístico que se encarga de contar historias a través de crónicas, perfiles y entrevistas. + News Magazine + Talk Shows + + + TVG + + + + La red + Los chismes, la información más detallada de los famosos de la farándula y lo que está sucediendo en el mundo del entretenimiento, son transmitidos en este espacio en que se revela lo más íntimo y secreto de las estrellas y sus escándalos. + News Magazine + Performing Arts + + + TVG + + + + Los magos de la cocina + Un recorrido por los principales municipios gastronómicos de Colombia. Alex Burgy investiga acerca de la gastronomía típica de cada uno de estos sitios. + Food + + + TVG + + + + Random 360 + Noticias e historias de las celebridades, músicos, artistas y talentosos personajes que hacen de sus momentos y oficios toda una inspiración. + News Magazine + + + + De moda con Ericka + Programa de entretenimiento que muestra lo mejor de la vida social, eventos, gastronomía y otros de la región del Caribe. + Fashion + + + + Travesía + Programa de turismo y aventuras lleno de adrenalina que presenta las travesías más impactantes alrededor del mundo. + Travel + + + TVG + + + + El diario de Diana + Junto a entrevistas a diferentes expertos, lecciones sobre cómo armonizar todas las áreas de la vida, manejar las emociones y cambiar creencias para entender la felicidad como una oportunidad de vivir a plenitud. + News Magazine + Performing Arts + + + TVG + + + + Caracol cine + Alfombras rojas, estrenos y entrevistas, junto a las mejores noticias cinematográficas de Colombia y el mundo. + News + Performing Arts + + + TVG + + + + Noticias Caracol + Edición de mediodía del noticiero informativo que registra todos los días de la semana los hechos más importantes de Colombia y el mundo, en los campos de entretenimiento, deportes, salud, arte y muchas más. + News + + + + Se dice de mí + Un programa que muestra la historia de vida y trayectoria de cantantes, deportistas, actores y presentadores, donde hablan sobre los aspectos positivos y negativos de sus vidas. + Talk Shows + Reality TV + + + + La vuelta al mundo en 80 risas + La vuelta al mundo en 80 risas busca que se conozca la cultura de otros países con humor. + Performing Arts + + + + Bermudez + Gonzalo es el eterno amor platónico de Silvia mientras que Bérmudez es el peor recuerdo de su paso por la universidad. Luego de graduarse como periodistas se reencuentran al cabo de diez años en una cena de exalumnos y ya nada será como entonces. + + Victor Hugo Cabrera + Diego Bertie + Valentina Rendón + + Soaps + + + TVG + + + + El diario de Diana + Junto a entrevistas a diferentes expertos, lecciones sobre cómo armonizar todas las áreas de la vida, manejar las emociones y cambiar creencias para entender la felicidad como una oportunidad de vivir a plenitud. + News Magazine + Performing Arts + + + TVG + + + + Testigo directo + Un programa periodístico moderno, con reporteros y periodistas arriesgados que cubren sucesos y casos impactantes de la vida real. + News Magazine + + + + Séptimo día + Un programa periodístico que trata temas de actualidad controversiales. Se habla sobre temas polémicos como problemas sociales, económicos, educativos y más en Colombia. + News Magazine + + + + Noticias Caracol + Edición central del noticiero informativo que registra todos los días de la semana los hechos más importantes de Colombia y el mundo, en los campos de entretenimiento, deportes, salud, arte y muchas más. + News + + + + La vuelta al mundo en 80 risas + La vuelta al mundo en 80 risas busca que se conozca la cultura de otros países con humor. + Performing Arts + + + + Bermudez + Gonzalo es el eterno amor platónico de Silvia mientras que Bérmudez es el peor recuerdo de su paso por la universidad. Luego de graduarse como periodistas se reencuentran al cabo de diez años en una cena de exalumnos y ya nada será como entonces. + + Victor Hugo Cabrera + Diego Bertie + Valentina Rendón + + Soaps + + + TVG + + + + Los magos de la cocina + Un recorrido por los principales municipios gastronómicos de Colombia. Alex Burgy investiga acerca de la gastronomía típica de cada uno de estos sitios. + Food + + + TVG + + + + Las mujeres de mi tierra + Mujeres que inspiran y deslumbran con sus logros y acciones. Las mejores historias de las mujeres más destacadas de Colombia. + Regular + + + + El diario de Diana + Junto a entrevistas a diferentes expertos, lecciones sobre cómo armonizar todas las áreas de la vida, manejar las emociones y cambiar creencias para entender la felicidad como una oportunidad de vivir a plenitud. + News Magazine + Performing Arts + + + TVG + + + + Una mirada al mundo + Programa donde especialistas analizan los hechos más importantes de la actualidad mundial y su incidencia en la realidad cotidiana. + News + + + TVG + + + + La vuelta al mundo en 80 risas + La vuelta al mundo en 80 risas busca que se conozca la cultura de otros países con humor. + Performing Arts + + + + Bermudez + Gonzalo es el eterno amor platónico de Silvia mientras que Bérmudez es el peor recuerdo de su paso por la universidad. Luego de graduarse como periodistas se reencuentran al cabo de diez años en una cena de exalumnos y ya nada será como entonces. + + Victor Hugo Cabrera + Diego Bertie + Valentina Rendón + + Soaps + + + TVG + + + + Los magos de la cocina + Un recorrido por los principales municipios gastronómicos de Colombia. Alex Burgy investiga acerca de la gastronomía típica de cada uno de estos sitios. + Food + + + TVG + + + + Deportes 360 + Un recorrido por el deporte mundial y el desempeño de los deportistas colombianos en eventos internacionales. + Sports + Talk Show + + + TVG + + + + Tu voz estéreo + Un programa en el que convergen desde relatos de amor y despecho hasta conflictos juveniles y familiares que impulsa a los oyentes a comunicarse para desahogarse, denunciar y compartir. + + Lucas Buelvas + Tania Valencia + Alejandra Buitrago + + Comedy + + + + El diario de Diana + Junto a entrevistas a diferentes expertos, lecciones sobre cómo armonizar todas las áreas de la vida, manejar las emociones y cambiar creencias para entender la felicidad como una oportunidad de vivir a plenitud. + News Magazine + Performing Arts + + + TVG + + + + Testigo directo + Un programa periodístico moderno, con reporteros y periodistas arriesgados que cubren sucesos y casos impactantes de la vida real. + News Magazine + + + + La finca de hoy + Programa dedicado a la producción agropecuaria, economía campesina, tecnología, investigación, sanidad y muchos temas más, relacionados con el campo y su gente. + Regular + + + + Día a día I + Un programa para iniciar el día cargado de buena energía con reflexiones que ayudan a superar obstáculos y ver la vida de forma positiva gracias a la sección. + Performing Arts + + + + Noticias Caracol + La primera edición del noticiero informativo que registra todos los días de la semana los hechos más importantes de Colombia y el mundo, en los campos de entretenimiento, deportes, salud, arte y muchas más. + News + + + + Día a día I + Un programa para iniciar el día cargado de buena energía con reflexiones que ayudan a superar obstáculos y ver la vida de forma positiva gracias a la sección. + Performing Arts + + + + El diario de Diana + Junto a entrevistas a diferentes expertos, lecciones sobre cómo armonizar todas las áreas de la vida, manejar las emociones y cambiar creencias para entender la felicidad como una oportunidad de vivir a plenitud. + News Magazine + Performing Arts + + + TVG + + + + Random 360 + Noticias e historias de las celebridades, músicos, artistas y talentosos personajes que hacen de sus momentos y oficios toda una inspiración. + News Magazine + + + + Noticias Caracol + Edición de mediodía del noticiero informativo que registra todos los días de la semana los hechos más importantes de Colombia y el mundo, en los campos de entretenimiento, deportes, salud, arte y muchas más. + News + + + + La vuelta al mundo en 80 risas + La vuelta al mundo en 80 risas busca que se conozca la cultura de otros países con humor. + Performing Arts + + + + Bermudez + Gonzalo es el eterno amor platónico de Silvia mientras que Bérmudez es el peor recuerdo de su paso por la universidad. Luego de graduarse como periodistas se reencuentran al cabo de diez años en una cena de exalumnos y ya nada será como entonces. + + Victor Hugo Cabrera + Diego Bertie + Valentina Rendón + + Soaps + + + TVG + + + + El diario de Diana + Junto a entrevistas a diferentes expertos, lecciones sobre cómo armonizar todas las áreas de la vida, manejar las emociones y cambiar creencias para entender la felicidad como una oportunidad de vivir a plenitud. + News Magazine + Performing Arts + + + TVG + + + + Travesía + Programa de turismo y aventuras lleno de adrenalina que presenta las travesías más impactantes alrededor del mundo. + Travel + + + TVG + + + + Expediente final + Un programa que saca a la luz los secretos de las muertes de las celebridades de Colombia, porque no todo lo investigado es revelado. + Documentary + + + + Noticias Caracol + Edición central del noticiero informativo que registra todos los días de la semana los hechos más importantes de Colombia y el mundo, en los campos de entretenimiento, deportes, salud, arte y muchas más. + News + + + + La vuelta al mundo en 80 risas + La vuelta al mundo en 80 risas busca que se conozca la cultura de otros países con humor. + Performing Arts + + + + Bermudez + Gonzalo es el eterno amor platónico de Silvia mientras que Bérmudez es el peor recuerdo de su paso por la universidad. Luego de graduarse como periodistas se reencuentran al cabo de diez años en una cena de exalumnos y ya nada será como entonces. + + Victor Hugo Cabrera + Diego Bertie + Valentina Rendón + + Soaps + + + TVG + + + + Travesía + Programa de turismo y aventuras lleno de adrenalina que presenta las travesías más impactantes alrededor del mundo. + Travel + + + TVG + + + + Travesía + Programa de turismo y aventuras lleno de adrenalina que presenta las travesías más impactantes alrededor del mundo. + Travel + + + TVG + + + + El diario de Diana + Junto a entrevistas a diferentes expertos, lecciones sobre cómo armonizar todas las áreas de la vida, manejar las emociones y cambiar creencias para entender la felicidad como una oportunidad de vivir a plenitud. + News Magazine + Performing Arts + + + TVG + + + + Última edición + El final del día bien informado, con los hechos que fueron noticia en Colombia y el mundo, bajo la mirada crítica y analítica del equipo de Noticias Caracol. + News + + + + La vuelta al mundo en 80 risas + La vuelta al mundo en 80 risas busca que se conozca la cultura de otros países con humor. + Performing Arts + + + + Bermudez + Gonzalo es el eterno amor platónico de Silvia mientras que Bérmudez es el peor recuerdo de su paso por la universidad. Luego de graduarse como periodistas se reencuentran al cabo de diez años en una cena de exalumnos y ya nada será como entonces. + + Victor Hugo Cabrera + Diego Bertie + Valentina Rendón + + Soaps + + + TVG + + + + Random 360 + Noticias e historias de las celebridades, músicos, artistas y talentosos personajes que hacen de sus momentos y oficios toda una inspiración. + News Magazine + + + + Travesía + Programa de turismo y aventuras lleno de adrenalina que presenta las travesías más impactantes alrededor del mundo. + Travel + + + TVG + + + + Tu voz estéreo + Un programa en el que convergen desde relatos de amor y despecho hasta conflictos juveniles y familiares que impulsa a los oyentes a comunicarse para desahogarse, denunciar y compartir. + + Lucas Buelvas + Tania Valencia + Alejandra Buitrago + + Comedy + + + + El diario de Diana + Junto a entrevistas a diferentes expertos, lecciones sobre cómo armonizar todas las áreas de la vida, manejar las emociones y cambiar creencias para entender la felicidad como una oportunidad de vivir a plenitud. + News Magazine + Performing Arts + + + TVG + + + + Las mujeres de mi tierra + Mujeres que inspiran y deslumbran con sus logros y acciones. Las mejores historias de las mujeres más destacadas de Colombia. + Regular + + + + La finca de hoy + Programa dedicado a la producción agropecuaria, economía campesina, tecnología, investigación, sanidad y muchos temas más, relacionados con el campo y su gente. + Regular + + + + Día a día I + Un programa para iniciar el día cargado de buena energía con reflexiones que ayudan a superar obstáculos y ver la vida de forma positiva gracias a la sección. + Performing Arts + + + + Noticias Caracol + La primera edición del noticiero informativo que registra todos los días de la semana los hechos más importantes de Colombia y el mundo, en los campos de entretenimiento, deportes, salud, arte y muchas más. + News + + + + Día a día I + Un programa para iniciar el día cargado de buena energía con reflexiones que ayudan a superar obstáculos y ver la vida de forma positiva gracias a la sección. + Performing Arts + + + + El diario de Diana + Junto a entrevistas a diferentes expertos, lecciones sobre cómo armonizar todas las áreas de la vida, manejar las emociones y cambiar creencias para entender la felicidad como una oportunidad de vivir a plenitud. + News Magazine + Performing Arts + + + TVG + + + + La Dolce Vita + En cada programa, una invitación a conocer una variedad de personas muy particulares, lugares placenteros y estilos de vida. + Documentary + + + TVG + + + + Noticias Caracol + Edición de mediodía del noticiero informativo que registra todos los días de la semana los hechos más importantes de Colombia y el mundo, en los campos de entretenimiento, deportes, salud, arte y muchas más. + News + + + + La vuelta al mundo en 80 risas + La vuelta al mundo en 80 risas busca que se conozca la cultura de otros países con humor. + Performing Arts + + + + Bermudez + Gonzalo es el eterno amor platónico de Silvia mientras que Bérmudez es el peor recuerdo de su paso por la universidad. Luego de graduarse como periodistas se reencuentran al cabo de diez años en una cena de exalumnos y ya nada será como entonces. + + Victor Hugo Cabrera + Diego Bertie + Valentina Rendón + + Soaps + + + TVG + + + + El diario de Diana + Junto a entrevistas a diferentes expertos, lecciones sobre cómo armonizar todas las áreas de la vida, manejar las emociones y cambiar creencias para entender la felicidad como una oportunidad de vivir a plenitud. + News Magazine + Performing Arts + + + TVG + + + + Travesía + Programa de turismo y aventuras lleno de adrenalina que presenta las travesías más impactantes alrededor del mundo. + Travel + + + TVG + + + + Se dice de mí + Un programa que muestra la historia de vida y trayectoria de cantantes, deportistas, actores y presentadores, donde hablan sobre los aspectos positivos y negativos de sus vidas. + Talk Shows + Reality TV + + + + King of the Hill + Flush With Power + A drought in Arlen forces Hank to install inefficient toilets. Voices of Mike Judge, Kathy Najimy, Pamela Segall and Brittany Murphy. + Animated + Sitcom + + + TVPG + + + + King of the Hill + Transnational Amusements Presents: Peggy's Magic Sex Feet + Peggy finds out that fetishists are admiring her big feet on the Internet. Voices of Mike Judge, Kathy Najimy, Pamela Segall and Brittany Murphy. Guest voices: Chuck Mangione and Sydney Pollack. + Animated + Sitcom + + + TVPG + + + + King of the Hill + Peggy's Fan Fair + At a festival in Nashville, Tenn., Peggy hears country music star Randy Travis singing a song she wrote. + Animated + Sitcom + + + TVPG + + + + King of the Hill + The Perils of Polling + Hank and Peggy disagree on presidential candidates. Voices of Mike Judge, Kathy Najimy, Pamela Segall Adlon and Brittany Murphy. + Animated + Sitcom + + + TVPG + + + + Bob's Burgers + Bad Tina + Tina hangs out with bad girl Tammy in an effort to get closer to Jimmy Junior. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TV14 + + + + Bob's Burgers + Beefsquatch + Bob appears on the local morning show's cooking segment, but Gene steals the spotlight when he crashes the set in a sasquatch mask. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TV14 + + + + Bob's Burgers + Ear-sy Rider + A gang of bikers mourning the loss of their leader hang out at Bob's Burgers; Louise's bunny ears are stolen. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TV14 + + + + American Dad! + She Swill Survive + Afraid that Hayley lacks life skills, Stan makes her take a job as a bartender; when Bullock (Patrick Stewart) becomes Hayley's best customer, Stan uses his daughter's knowledge to get ahead at work. + Animated + Sitcom + + + TV14 + + + + American Dad! + Rubberneckers + Stan learns how to slyly check out other women; Roger and Klaus try to cover up a stain on a new couch. + Animated + Sitcom + + + TV14 + + + + American Dad! + Great Space Roaster + Roger wants to be roasted on his birthday but ends up being distraught by the jokes; the Smith family goes on the run. + Animated + Sitcom + + + TV14 + + + + American Dad! + News Glance With Genevieve Vavance + Hayley takes a job as an intern at a local news station for a reporter -- who is actually Roger in disguise. + Animated + Sitcom + + + TV14 + + + + Rick and Morty + Big Trouble in Little Sanchez + Rick don joins in on some hijinks in this one broh. Beth and Jerry sort out their relationship too broh. + Animated + Comedy + + + TV14 + + + + Rick and Morty + JuRicksic Mort + Seemingly out of the blue, Earth's old rulers return and make a great case for changing the way society does business, but Rick doesn't put up with it. + + Justin Roiland + Sarah Chalke + Spencer Grammer + + Animated + Comedy + + + TV14 + + + + Attack on Titan + The Final Chapters Special 1 + As the Rumbling advances, the remaining members of the Scout Regiment race against the clock with their Marleyan and Azumabito allies to catch up to Eren and stop the Rumbling before the rest of the world is crushed under the Wall Titans' feet. + + Bryce Papenbrook + Jessie James Grelle + Trina Nishimura + + Animated + + + TVMA + + + + Attack on Titan + The Final Chapters Special 1 + As the Rumbling advances, the remaining members of the Scout Regiment race against the clock with their Marleyan and Azumabito allies to catch up to Eren and stop the Rumbling before the rest of the world is crushed under the Wall Titans' feet. + + Bryce Papenbrook + Jessie James Grelle + Trina Nishimura + + Animated + + + TVMA + + + + IGPX + Time to Shine + Immortal Grand Prix is the world's most popular sport and Team Satomi competes to be the best. + Animated + + + TVY7 + + + + IGPX + To Win or to Lose + Immortal Grand Prix is the world's most popular sport and Team Satomi competes to be the best. + Animated + + + TVY7 + + + + Rick and Morty + Extras: The Great Yokai Battle of Akihabara + Rick's plans to build the ultimate AI toaster take a strange turn when he and Morty are forced to travel to Akihabara for spare parts. Check out this Halloween inspired masterpiece from our friends at Sola Digital, directed by Masaru Matsumoto. + + Justin Roiland + Sarah Chalke + Spencer Grammer + + Animated + Comedy + + + TV14 + + + + Unicorn: Warriors Eternal + The Awakening + A young girl, unwittingly infused with magical ability, discovers that she is part of a group of eternal heroes destined to fight a supernatural evil throughout time. + + Ron Bottitta + Victor Alli + + Animated + Drama + + + TV14 + + + + The Venture Bros. + The Terminus Mandate + The members of Guild Council must face their archrivals for one last time, while Doc happily falls into a black widow's deadly web. + + Christopher McCulloch + Michael Sinterniklaas + Patrick Warburton + + Animated + Comedy + + + TV14 + + + + Futurama + The Mutants Are Revolting + Leela leads an army of underground mutants in a rebellion against the surface people. + + Billy West + Katey Sagal + John DiMaggio + + Animated + Sitcom + + + TVPG + + + + Futurama + Neutopia + The crew encounters a bizarre alien with power to change their characteristics. + + Billy West + Katey Sagal + John DiMaggio + + Animated + Sitcom + + + TV14 + + + + King of the Hill + Flush With Power + A drought in Arlen forces Hank to install inefficient toilets. Voices of Mike Judge, Kathy Najimy, Pamela Segall and Brittany Murphy. + Animated + Sitcom + + + TVPG + + + + King of the Hill + Transnational Amusements Presents: Peggy's Magic Sex Feet + Peggy finds out that fetishists are admiring her big feet on the Internet. Voices of Mike Judge, Kathy Najimy, Pamela Segall and Brittany Murphy. Guest voices: Chuck Mangione and Sydney Pollack. + Animated + Sitcom + + + TVPG + + + + The Amazing World of Gumball + The Origins + When Mom and Dad struggle to keep hyperactive, toddler-aged Gumball from trashing the house and exhausting them, they decide to buy him a pet. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Origins + Via the sewers, Darwin finds himself flushed out to sea; he is terrified but determined to make his way back to the Wattersons; a fish can't get very far on land so Darwin does millions of years of evolution in a matter of hours. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Advice + Gumball and Darwin try to cheer up Mr. Small, who feels depressed because he believes he has not inspired his students. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Signal + When Gumball develops a bizarre stutter, he unintentionally offends Darwin. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Parasite + Gumball and Darwin read Anais' diary and discover her relationship with a new friend is one-sided. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Love + The people of Elmore search for the meaning of love. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Awkwardness + Gumball runs into Hot Dog Guy while on the way to the store to get ketchup. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Nest + Upon a neighbor's mysterious disappearance, the Wattersons' search for clues leads them to a strange egg. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + We Bare Bears + The Mall + The Bears go the mall and encounter their human counterparts. + + Bobby Moynihan + Eric Edelstein + Demetri Martin + + Animated + Children + + + TVY7 + + + + We Bare Bears + Tunnels + The Bears discover a network of tunnels underneath the cave. + + Bobby Moynihan + Eric Edelstein + Demetri Martin + + Animated + Children + + + TVY7 + + + + We Bare Bears + Ramen + The Baby Bears help a struggling ramen chef perfect her ramen and save her shop. + + Bobby Moynihan + Eric Edelstein + Demetri Martin + + Animated + Children + + + TVY7 + + + + We Bare Bears + The Gym + The Bears go to the gym and get quite the workout. + + Bobby Moynihan + Eric Edelstein + Demetri Martin + + Animated + Children + + + TVY7 + + + + Scooby-Doo: Mask of the Blue Falcon + Mr. Hyde releases monster bats, howling hounds and sinister slimes at a convention. The Mystery Inc. team follows the clues and sets traps to stop the monsters before they smother the event in ghoulish green goo. + + Frank Welker + Mindy Cohn + Matthew Lillard + + 2013 + Movies + Animated + + + TVG + + + + We Bare Bears + Imaginary Friend + The Baby Bears invent an imaginary friend, but the trouble he causes is all too real. + + Bobby Moynihan + Eric Edelstein + Demetri Martin + + Animated + Children + + + TVY7 + + + + The Powerpuff Girls + Moral Decay; Meet the Beat Alls + When Buttercup accidentally knocks out Bubbles' tooth she gets a business idea; Mojo, Him, Princess and Fuzzy form an alliance intent on destroying the Powerpuff Girls. + + Tara Strong + Cathy Cavadini + E.G. Daily + + Animated + Children + + + TVY7 + + + + The Powerpuff Girls + The Headsucker's Moxy; Equal Fights + A villain sucks information from people's brains; a female villain pleads for feminine solidarity. + + Tara Strong + Cathy Cavadini + E.G. Daily + + Animated + Children + + + TVY7 + + + + The Powerpuff Girls + Keen on Keane; Not So Awesome Blossom + The girls try their hand at matchmaking; Blossom loses confidence in herself. + + Tara Strong + Cathy Cavadini + E.G. Daily + + Animated + Children + + + TVY7 + + + + The Powerpuff Girls + Bubblevicious; The Bare Facts + Bubbles wants a tough reputation; the girls relate to saving the mayor. + + Tara Strong + Cathy Cavadini + E.G. Daily + + Animated + Children + + + TVY7 + + + + Teen Titans Go! + A Sticky Situation + Sticky Joe's search for a can opener leads to a series of adventures. + + Scott Menville + Hynden Walch + Tara Strong + + Animated + Children + + + TVPG + + + + Teen Titans Go! + The Perfect Pitch? + Having watched everything on TV, the Titans decide to make their own show. + + Scott Menville + Hynden Walch + Tara Strong + + Animated + Children + + + TVPG + + + + Teen Titans Go! + Pool Season + Black Manta offers to build the Titans a new pool but Robin thinks the construction process is too slow. + + Scott Menville + Hynden Walch + Tara Strong + + Animated + Children + + + TVPG + + + + Teen Titans Go! + Kyle + The Titans time travel back to the 1990s so they can visit a video store, but they encounter a familiar foe. + + Scott Menville + Hynden Walch + Tara Strong + + Animated + Children + + + TVPG + + + + Teen Titans Go! + We'll Be Right Back + Since the commercials are the only part of the show he likes, Control Freak creates extra ads to torment the Titans. + + Scott Menville + Hynden Walch + Tara Strong + + Animated + Children + + + TVPG + + + + Teen Titans Go! + TV Knight 7 + To avoid chores, Batman and Gordon time travel to the future, but still find ways to watch TV. + + Scott Menville + Hynden Walch + Tara Strong + + Animated + Children + + + TVPG + + + + Teen Titans Go! + Jump City Rock + The Titans team up with Nandi and Thomas Bushell to take down The Joker. + + Scott Menville + Hynden Walch + Tara Strong + + Animated + Children + + + TVPG + + + + Teen Titans Go! + Natural Gas + Outraged at the price they pay for water, gas, and electricity, the Titans go off the grid. + + Scott Menville + Hynden Walch + Tara Strong + + Animated + Children + + + TVPG + + + + The Amazing World of Gumball + The Points + In order for Tobias to let them use his points in a video game, Gumball and Darwin must do his chores for him. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Bus + Parents try to teach the students of Elmore High a lesson about skipping school. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Night + As night falls in Elmore, the Moon goes on a tour through the various dreams and nightmares of the town's slumbering inhabitants; each character's dream shows their innermost desires, their greatest fears or just how plain weird they are. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Misunderstandings + Gumball has a misunderstanding about his date with Penny; he thought they were meeting for dinner but they were actually meeting for lunch at a diner called Dinner. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Roots + Thinking that he is homesick for the sea, the family try to make Darwin connect with his roots. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Blame + Gumball gives Billy his first taste of video games, but the sheer excitement causes him to pass out; his mother, Felicity, summons the PTA and threatens to ban video games all across Elmore. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Detective + Anais believes Gumball and Darwin stole Daisy. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Fury + The kids are surprised that Nicole doesn't fight back when insulted by a strange figure. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + National Lampoon's Christmas Vacation + The Griswolds (Chevy Chase, Beverly D'Angelo) spend the holiday in a garish way, especially when a country cousin (Randy Quaid) pulls up in an RV. + + Chevy Chase + Beverly D'Angelo + Randy Quaid + + 1989 + Movies + Christmas + Comedy + + + TVG + + + 3 + + + + Bob's Burgers + Just One of the Boyz 4 Now for Now + Convinced she's met the love of her life, Tina disguises herself as a boy and sneaks into the Boyz 4 Now auditions to find him; Teddy asks the rest of the Belcher gang to nurse his baby rat back to health. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TV14 + + + + Bob's Burgers + The Taking of Funtime One Two Three + Louise, Tina and Gene devise a master plan to get the grand prize dune buggy at their local arcade; Teddy convinces Bob and Linda to take in a chicken by promising fresh eggs. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TV14 + + + + Bob's Burgers + Tweentrepreneurs + Tina, Louise and Gene get a taste of business when they join the school's Tweentrepeneurs club; Bob and Linda find themselves outsmarted by a dine-and-dasher. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TV14 + + + + Bob's Burgers + Live and Let Fly + The kids seek revenge on their school guidance counselor; they get entangled in sibling rivalry between two pilots; Linda and Bob put their game faces on when Teddy invites them to a paper airplane contest. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TVPG + + + + American Dad! + A Roger Story + Steve and Snot's friendship gets put to the test when their mothers start to fight. + + Seth MacFarlane + Wendy Schaal + Rachael MacFarlane + + Animated + Sitcom + + + TV14 + + + + American Dad! + Epic Powder Dump + Stan insists everyone help him re-create the rustic family ski trips of his childhood while Klaus falls in love with a tech support operator. + + Seth MacFarlane + Wendy Schaal + Rachael MacFarlane + + Animated + Sitcom + + + TV14 + + + + American Dad! + American Dad Graffito + To save a beloved restaurant from closing, Stan must bring the 1950s back to Langley. + + Seth MacFarlane + Wendy Schaal + Rachael MacFarlane + + Animated + Sitcom + + + TV14 + + + + Rick and Morty + Air Force Wong + Rick and The President are back at it. + + Justin Roiland + Sarah Chalke + Spencer Grammer + + Animated + Comedy + + + TV14 + + + + Rick and Morty + That's Amorte + A sociopathic scientist arrives at his daughter's doorstep 20 years after disappearing and moves in with her family, setting up a laboratory in the garage and taking his grandson on wild adventures across the universe. + + Justin Roiland + Sarah Chalke + Spencer Grammer + + Animated + Comedy + + + TV14 + + + + Royal Crackers + Pilot + Tragedy strikes the Hornsby family when its beloved patriarch and founder of Royal Crackers, Theodore Hornsby Sr., falls into a super coma. + + Jason Ruiz + Andrew Santino + Jessica St. Clair + + Animated + Sitcom + + + + The Eric Andre Show + Bugs Weekly + Eric Andre is back; Lil Nas X and Karrueche Tran sit in the chair; Denzel Curry gets his teeth done; a Jewish exterminator hopes to capture the mother of all flies before the High Holy Days. + Talk Shows + Comedy + + + TV14 + + + + The Eric Andre Show + Jaleel Blanco + Eric welcomes Mia Khalifa and Jaleel White; human statutes have a brutal fight in New York City; Goober Driver goes off-roading. + Talk Shows + Comedy + + + TV14 + + + + Aqua Teen Hunger Force + Hospice + Carl maxes out his mom's credit cards. + + Carey Means + Dana Snyder + Dave Willis + + Animated + Comedy + + + TVPG + + + + Aqua Teen Hunger Force + The Greatest Story Ever Told + Frylock and Carl use shampoo to become immortal; Shake becomes religious. + + Carey Means + Dana Snyder + Dave Willis + + Animated + Comedy + + + TVPG + + + + American Dad! + The Longest Distance Relationship + Hayley meets a millionaire who tries to help her move on from her heartbreak; Snot and Steve make a discovery. + Animated + Sitcom + + + TV14 + + + + American Dad! + A Roger Story + Steve and Snot's friendship gets put to the test when their mothers start to fight. + + Seth MacFarlane + Wendy Schaal + Rachael MacFarlane + + Animated + Sitcom + + + TV14 + + + + American Dad! + Epic Powder Dump + Stan insists everyone help him re-create the rustic family ski trips of his childhood while Klaus falls in love with a tech support operator. + + Seth MacFarlane + Wendy Schaal + Rachael MacFarlane + + Animated + Sitcom + + + TV14 + + + + Rick and Morty + Air Force Wong + Rick and The President are back at it. + + Justin Roiland + Sarah Chalke + Spencer Grammer + + Animated + Comedy + + + TV14 + + + + Rick and Morty + That's Amorte + A sociopathic scientist arrives at his daughter's doorstep 20 years after disappearing and moves in with her family, setting up a laboratory in the garage and taking his grandson on wild adventures across the universe. + + Justin Roiland + Sarah Chalke + Spencer Grammer + + Animated + Comedy + + + TV14 + + + + Royal Crackers + Pilot + Tragedy strikes the Hornsby family when its beloved patriarch and founder of Royal Crackers, Theodore Hornsby Sr., falls into a super coma. + + Jason Ruiz + Andrew Santino + Jessica St. Clair + + Animated + Sitcom + + + + The Eric Andre Show + Bugs Weekly + Eric Andre is back; Lil Nas X and Karrueche Tran sit in the chair; Denzel Curry gets his teeth done; a Jewish exterminator hopes to capture the mother of all flies before the High Holy Days. + Talk Shows + Comedy + + + TV14 + + + + The Eric Andre Show + Jaleel Blanco + Eric welcomes Mia Khalifa and Jaleel White; human statutes have a brutal fight in New York City; Goober Driver goes off-roading. + Talk Shows + Comedy + + + TV14 + + + + Aqua Teen Hunger Force + Hospice + Carl maxes out his mom's credit cards. + + Carey Means + Dana Snyder + Dave Willis + + Animated + Comedy + + + TVPG + + + + Aqua Teen Hunger Force + The Greatest Story Ever Told + Frylock and Carl use shampoo to become immortal; Shake becomes religious. + + Carey Means + Dana Snyder + Dave Willis + + Animated + Comedy + + + TVPG + + + + Bob's Burgers + Just One of the Boyz 4 Now for Now + Convinced she's met the love of her life, Tina disguises herself as a boy and sneaks into the Boyz 4 Now auditions to find him; Teddy asks the rest of the Belcher gang to nurse his baby rat back to health. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TV14 + + + + Bob's Burgers + The Taking of Funtime One Two Three + Louise, Tina and Gene devise a master plan to get the grand prize dune buggy at their local arcade; Teddy convinces Bob and Linda to take in a chicken by promising fresh eggs. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TV14 + + + + The Amazing World of Gumball + The Plan + After finding a strange letter in the trash, the Watterson children devise a fool-proof plan to save Nicole. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Finale + The Wattersons learn that their past actions have consequences. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Fan + Gumball and Darwin meet a slightly obsessive fan. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + Cocomelon + Lost Hamster + JJ, TomTom, and YoYo continue looking for Jelly Bean. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Batwheels + The Dark Night + Much to everyone's surprise, Bam is secretly afraid of the dark; when Poison Ivy knocks out all the power in Gotham, Bam must conquer his fears to stop her. + + Ethan Hawke + Jacob Bertrand + Jordan Reed + + Animated + Children + + + TVY7 + + + + Cocomelon + Wheels on the Bus + JJ and his friends put on a show featuring a cardboard bus. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Thomas & Friends: All Engines Go + The Waiting Game + When an important shipment is delayed, Bruno and the gang have to learn the great value of waiting patiently. + + Meesha Contreras + Neil Crone + Luke Marty + + Animated + Children + + + TVG + + + + Cocomelon + Yes Yes Dress for the Rain + JJ prepares to go outdoors on a rainy day. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Bugs Bunny Builders + Splash Zone + Mayor Foghorn Leghorn hires The Looney Builders to build a giant water slide for Looneyburg's waterpark. He keeps adding onto the design with the support of Bugs until problems arise. + + Eric Bauza + Bob Bergen + Chandni Parekh + + Children + Performing Arts + + + TVY + + + + The Looney Tunes Show + Bugs & Daffy Get a Job + Bugs starts working at Porky's accounting firm. Daffy gets a nose job. + + Jeff Bergman + Bob Bergen + + Animated + Children + + + TVPG + + + + The Looney Tunes Show + That's My Baby + Daffy's girlfriend ropes him into babysitting. + + Jeff Bergman + Bob Bergen + Fred Armisen + + Animated + Children + + + TVPG + + + + Craig of the Creek + Heart of the Forrest Finale + The epic Heart of the Forest quest ends. + + Philip Solomon + Noël Wells + H. Michael Croner + + Animated + Children + + + TVY7 + + + + Craig of the Creek + Too Many Treasures + Hoping to fix the fort, Craig enlists the 10 Speeds for a ride to the legendary Junk Pile. + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Treasure + Gumball, Anais and Darwin investigate why mom and dad are trying to get some extra cash. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Words + Gumball teaches Darwin to be direct. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + Tiny Toons Looniversity + The Show Must Hop On + Babs is excited to be the first student director of the annual toon showcase, but she quickly learns it won't be as easy as she thought; Hamton learns to shine. + Animated + Children + + + TVPG + + + + Clarence + The Trade + After he accidentally trades away Chad's favorite baseball card, Clarence transforms into a slick salesman to get it back. + + Spencer Rothbell + Tom Kenny + Sean Giambrone + + Animated + Children + + + TVPG + + + + Clarence + Animal Day + Clarence feels the call of the wild and decides to live a life free of the modern world; with a few friends, Clarence finds a place to live in the wild, but realizes he lacks basic survival skills. + + Spencer Rothbell + Tom Kenny + Sean Giambrone + + Animated + Children + + + TVPG + + + + Craig of the Creek + The Brood + Craig's determination to get his granddad a cicada shell causes him, Kelsey and JP to become trapped in their stump. + Animated + Children + + + TVY7 + + + + Teen Titans Go! + Lucky Stars + Raven explains astrology to the Titans and tells their horoscopes, but Cyborg is not a believer. + + Scott Menville + Hynden Walch + Tara Strong + + Animated + Children + + + TVPG + + + + Teen Titans Go! + Cool Uncles + The Titans take a trip to Wackadoodles, but Trigon makes Raven babysit her little brothers. + + Scott Menville + Hynden Walch + Tara Strong + + Animated + Children + + + TVPG + + + + The Amazing World of Gumball + The Bet + Gumball realizes robots obey everyone's command when Bobert becomes his servant for a week. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Watch + Gumball and Darwin try to get a family heirloom back from an old man. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Flakers + Darwin abandons Gumball before a pounding, so Gumball decides to teach him a lesson. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Virus + Gumball thinks Teri is too scared of germs. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + Dexter's Laboratory + Big Bots; Gooey Aliens That Control Your Mind; Misplaced in Space + Dexter builds a robot for Dee Dee; an alien takes over the brains of Mom, Dad and Dee Dee; Dexter works on an alien planet. + + Christine Cavanaugh + Jeff Bennett + Kath Soucie + + Animated + Children + + + TVG + + + + Ed, Edd 'n Eddy + Brother, Can You Spare an Ed?; The Day the Ed Stood Still + Ed spends Sarah's money on jawbreakers; Ed terrorizes the neighborhood in a monster suit. + + Tony Sampson + Sam Vincent + Matt Hill + + Animated + Children + + + TVG + + + + The Grim Adventures of Billy and Mandy + Substitute Teacher; Which Came First? + Nergal Jr. starts school with Billy and Mandy; Grim and Mandy must rescue Billy from a failed experiment. + + Richard Steven Horvitz + Grey Griffin + Greg Eagles + + Animated + Children + + + TVY7 + + + + Courage the Cowardly Dog + Nowhere TV; Mega Muriel the Magnificent + The television breaks before a lottery drawing; Muriel's body is taken over by The Computer. + + Marty Grabstein + Thea White + Lionel G. Wilson + + Animated + Children + + + TVY7 + + + + King of the Hill + The Buck Stops Here + When Buck Strickland takes Bobby on a gambling spree in Hot Springs, Ark., Hank must track them down and bail them out. + Animated + Sitcom + + + TVPG + + + + King of the Hill + I Don't Want to Wait .. + Bobby becomes envious when his best friend, Joseph, begins to change physically after hitting puberty. + Animated + Sitcom + + + TVPG + + + + Bob's Burgers + Motor, She Boat + Tina and Bob participate in the Thundergirls father-daughter cardboard boat race; Tina tries to hide her feelings about Bob's terrible boat-building skills; Linda drags Louise and Gene to a fire station open house and overstays her welcome. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TV14 + + + + Bob's Burgers + Legends of the Mall + On a Belcher family trip to the mall, Tina is mistaken for a sleeping boy's girlfriend; Gene and Louise are turned loose on motorized animals; Linda disrupts a book reading; Bob struggles to shop for acceptable pants. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TV14 + + + + Bob's Burgers + The Hawkening: Look Who's Hawking Now + Bob and Louise host an exclusive screening of a Hawk & Chick movie at the restaurant, until the actor who plays Hawk throws a wrench into the works. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TVPG + + + + Bob's Burgers + Land of the Loft + Bob and Linda challenge themselves and attend a loft party on a stormy night; the kids challenge their babysitter and face the storm in an ice cream truck. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TV14 + + + + Bob's Burgers + All That Gene + Gene auditions for a small role in a local theater production, but things backfire when he discovers that Linda actually bargained with the director to get Gene the part. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TV14 + + + + American Dad! + Blonde Ambition + Hayley decides she might get more attention if she becomes a blonde, while Steve and Stan search for a new home for the Smiths. + Animated + Sitcom + + + TV14 + + + + American Dad! + CIAPOW + Stan is determined to prove that humans are better than robots, while Francine and the rest of the family have a slow motion race in the living room. + Animated + Sitcom + + + TV14 + + + + Rick and Morty + The Ricklantis Mixup + Atlantis here we come broh! A nice self contained episode about Atlantis! + + Justin Roiland + Sarah Chalke + Spencer Grammer + + Animated + Comedy + + + TV14 + + + + Rick and Morty + Morty's Mind Blowers + Morty asks Rick to remove a bad memory from his mind; Morty finds out the truth when his memories are restored, and he sees it's not the first time. + Animated + Comedy + + + TV14 + + + + Robot Chicken + Executed by the State + G.I. Joe faces a big challenge; being a vegetarian; questions about Starbucks' logo; Orville Redenbacher in. + + Seth Green + Dan Milano + Breckin Meyer + + Animated + Comedy + + + TV14 + + + + Robot Chicken + Crushed by a Steamroller on My 53rd Birthday + Alvin and the Chipmunks have a wild time; Mary Poppins; B.A. Baracus hates flying; G.I. Joe in a real war situation. + + Seth Green + Dan Milano + Breckin Meyer + + Animated + Comedy + + + TV14 + + + + Aqua Teen Hunger Force + Time Machine + Frylock and Shake use a time machine, then compete for ruler of dimension boob. + Animated + Comedy + + + TVMA + + + + Aqua Teen Hunger Force + 2-and-a-Half-Star Wars Out of Five + The trio is offered a deal on their lawn service. + Animated + Comedy + + + TV14 + + + + American Dad! + Scents and Sensei-bility + Fed up with being bullied, Steve and Snot join a karate class, where Snot is brainwashed by the sensei; Klaus is forced to be and outside pet when he develops a horrible odor. + Animated + Sitcom + + + TV14 + + + + American Dad! + I Am the Walrus + Stan resorts to extreme and cruel measures to humiliate Steve and maintain his alpha-male status in the house; Hayley and Jeff turn to Principal Lewis for marriage counseling. + Animated + Sitcom + + + TV14 + + + + American Dad! + School Lies + Overlooked for promotion for 20 years, Stan decides to woo the senator who supervises the CIA task force; Stan makes Steve go to the same private academy. + Animated + Sitcom + + + TV14 + + + + Rick and Morty + The Ricklantis Mixup + Atlantis here we come broh! A nice self contained episode about Atlantis! + + Justin Roiland + Sarah Chalke + Spencer Grammer + + Animated + Comedy + + + TV14 + + + + Rick and Morty + Morty's Mind Blowers + Morty asks Rick to remove a bad memory from his mind; Morty finds out the truth when his memories are restored, and he sees it's not the first time. + Animated + Comedy + + + TV14 + + + + Three Busy Debras + A Very Debra Christmas + Debra, Debra and Debra make a big mess on the way to brunch and must clean up the evidence before it's too late. + + Sandy Honig + Mitra Jouhari + Alyssa Stonoha + + Sitcom + + + TV14 + + + + Three Busy Debras + Cartwheel Club + Debra, Debra and Debra all try out for a club, and only Debra and Debra get in. + + Sandy Honig + Mitra Jouhari + Alyssa Stonoha + + Sitcom + + + TV14 + + + + Your Pretty Face Is Going to Hell + Krampus Nacht + Gary and Claude pull Krampus out of retirement in order to help ruin Christmas. + + Matt Servitto + Henry Zebrowski + + Comedy + + + TV14 + + + + Your Pretty Face Is Going to Hell + Heaven + When a typo is corrected, Gary gets to go to heaven. + + Matt Servitto + Henry Zebrowski + + Comedy + + + TV14 + + + + Bob's Burgers + Motor, She Boat + Tina and Bob participate in the Thundergirls father-daughter cardboard boat race; Tina tries to hide her feelings about Bob's terrible boat-building skills; Linda drags Louise and Gene to a fire station open house and overstays her welcome. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TV14 + + + + Bob's Burgers + Legends of the Mall + On a Belcher family trip to the mall, Tina is mistaken for a sleeping boy's girlfriend; Gene and Louise are turned loose on motorized animals; Linda disrupts a book reading; Bob struggles to shop for acceptable pants. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TV14 + + + + The Amazing World of Gumball + The Vacation + The Wattersons go on vacation and wind up running for their lives. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Fraud + Gumball and Darwin discover that Principal Brown's diploma is a fake. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Void + Gumball and Darwin discover a mysterious void while looking for a missing classmate. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Boss + Gumball and Darwin help Rocky get a corporate job, so he can stop being a disappointment to his father, Mr. Robinson. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Move + Gumball learns that Clayton, a compulsive liar, was telling the truth about an awesome martial arts move. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Law + Donut Cop shows Gumball and Darwin that the smallest misdemeanor can lead to a breakdown in law. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + Cocomelon + 12345 Once I Caught a Fish Alive! V2 + JJ and pals learn about letters, numbers, animal sounds, and more in this musical series featuring nursery rhymes. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Batwheels + License to Joke + Redbird tries his hand at espionage as V-8, the Super-Spy, but gets in over his head. + + Ethan Hawke + Jacob Bertrand + Jordan Reed + + Animated + Children + + + TVY7 + + + + Cocomelon + Gardening Song + JJ and friends start growing their own gardens. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Thomas & Friends: All Engines Go + Thomas for a Day + When Percy is accidentally doused in blue paint, he gets the opportunity to be Thomas for a day. + + Meesha Contreras + Neil Crone + Luke Marty + + Animated + Children + + + TVG + + + + Cocomelon + Tie Your Shoes Song + Mom and Dad teach the kids how to tie their shoelaces. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Bugs Bunny Builders + Ice Creamed + It's Taz's birthday, so the Looney Builders build him a huge ice cream sundae; Porky worries about making a mistake and delays the build, causing the ice cream to start to melt. + + Eric Bauza + Bob Bergen + Chandni Parekh + + Children + Performing Arts + + + TVY + + + + The Looney Tunes Show + Sunday Night Slice + Bugs is upset when his favorite pizza place closes. + + Jeff Bergman + Fred Armisen + Bob Bergen + + Animated + Children + + + TVPG + + + + The Looney Tunes Show + DMV + Daffy must take a test to get his driver's license. + + Jeff Bergman + Fred Armisen + Bob Bergen + + Animated + Children + + + TVPG + + + + Craig of the Creek + Sunday Clothes + JP dirties his last clean clothes and he must wear his Sunday best to the creek. + Animated + Children + + + TVY7 + + + + Craig of the Creek + Escape From Family Dinner + Craig tries to escape a family dinner so he can attend a water balloon fight at the creek. + Animated + Children + + + TVY7 + + + + Craig of the Creek + Monster in the Garden + Craig is determined to catch the monster that has been wreaking havoc in Granddad's garden. + Animated + Children + + + TVY7 + + + + Craig of the Creek + The Curse + Craig, Kelsey and JP run afoul of some no-good teenage witches and are cursed. + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Hero + Gumball and Darwin want to prove to their father that he is their hero. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Dream + Gumball blames Darwin for kissing Penny in his dream. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Sidekick + Darwin suspects he is stuck playing second-fiddle to Gumball. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Photo + Gumball needs his school picture to be good to keep his legacy intact. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + Tiny Toons Looniversity + Tears of a Clone + Buster finds a cloning machine at Wile E. Coyote's yard sale; Sweetie finds a time machine. + Animated + Children + + + TVPG + + + + Clarence + Talent Show + Clarence throws a big talent show in his yard to showcase all the fun hidden talents of his friends, but when Brady claims he has no talent, Clarence sets out to prove that everyone has something special to share. + + Spencer Rothbell + Tom Kenny + Sean Giambrone + + Animated + Children + + + TVPG + + + + Clarence + RC Car + Clarence spends a day outside with his toy RC car, which he names Carla; Clarence becomes convinced Carla has a mind of her own and decides to follow her to new adventures. + + Spencer Rothbell + Tom Kenny + Sean Giambrone + + Animated + Children + + + TVPG + + + + Clarence + Dog King Clarence + When Clarence's neighbor Gale recruits him to dog sit for her, he knows it will be a breeze; however, Gale's dog proves to be a little more challenging than he expects. + + Spencer Rothbell + Tom Kenny + Sean Giambrone + + Animated + Children + + + TVPG + + + + Clarence + Trampoline + Mary buys a new trampoline for the family, but an accident lands her on the couch for a while; determined to fight the boredom of being stuck indoors, she discovers her neighbor may be hiding something exciting. + + Spencer Rothbell + Tom Kenny + Sean Giambrone + + Animated + Children + + + TVPG + + + + Craig of the Creek + Kelsey Quest + Kelsey accepts a quest from the Elders of the Creek; she readies herself to face a terrifying opponent. + Animated + Children + + + TVY7 + + + + Craig of the Creek + JPony + JP decides to follow his heart and tries to join the Horse Girls. + Animated + Children + + + TVY7 + + + + Teen Titans Go! + BBRAEBDAY + Raven's demon side has the same birthday as Beast Boy, so the Titans go to Azarath to celebrate her Sinister Sixteen. + + Scott Menville + Hynden Walch + Tara Strong + + Animated + Children + + + TVPG + + + + Teen Titans Go! + Don't Press Play + The Titans must help the music group De La Soul save their music after it is stolen by an alien who is up to no good. + + Scott Menville + Hynden Walch + Tara Strong + + Animated + Children + + + TVPG + + + + Teen Titans Go! + Real Art + After Starfire buys an ugly painting, the Titans take her to the museum so she can experience real art. + + Scott Menville + Hynden Walch + Tara Strong + + Animated + Children + + + TVPG + + + + Teen Titans Go! + Just a Little Patience…Yeah…Yeah + Robin tries to teach the other Titans to have patience. + Animated + Children + + + TVPG + + + + The Amazing World of Gumball + The Tag + Gumball and Darwin get caught in the middle of a trash can feud. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Storm + Gumball is caught in the center of an emotional hurricane. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Lesson + Gumball and Darwin find that detention is very similar to prison. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Game + The Wattersons are carried away by. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Limit + While at the supermarket, Richard and the children try different ways to get candy, making Nicole angry at them. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Voice + Gumball and Darwin receive a scary email. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Promise + Darwin promises to play video games with Gumball, but faces a Banana Joe problem. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Castle + Dad's lack of rules attracts unwelcome guests. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + Dexter's Laboratory + Old Flame; Don't Be a Hero; My Favorite Martian + Dexter tries to be like his favorite superhero; Dee Dee hides on Dexter's rocket; Dexter goes back in time to visit a caveman. + + Christine Cavanaugh + Jeff Bennett + Kath Soucie + + Animated + Children + + + TVG + + + + Ed, Edd 'n Eddy + If It Smells Like an Ed, Pts. 1 and 2 + When someone on the cul-de-sac frames Ed, Edd and Eddy, they must try to find a way to clear their names. + + Tony Sampson + Sam Vincent + Matt Hill + + Animated + Children + + + TVG + + + + The Grim Adventures of Billy and Mandy + Grim for a Day; Chicken Ball Z; Halls of Time + Billy and Grim trade places for a day; with the help of a chicken ball, Mandy enters the karate championship; Grim takes Billy and Mandy on a field trip to the Halls of Time, where the past, present and future are monitored. + + Richard Steven Horvitz + Grey Griffin + Greg Eagles + + Animated + Children + + + TVY7 + + + + Courage the Cowardly Dog + The Tower of Dr. Zalost Pts. 1 & 2 + Pink cannonballs, raining down on Nowhere from a tower, depress the town's residents. + + Marty Grabstein + Thea White + Lionel G. Wilson + + Animated + Children + + + TVY7 + + + + King of the Hill + When Cotton Comes Marching Home + Cotton is down and out in Arlen, Texas, taking a job as a bathroom attendant. Voices of Mike Judge, Kathy Najimy, Pamela Segall Adlon and Brittany Murphy. + Animated + Sitcom + + + TVPG + + + + King of the Hill + Chasing Bobby + Hank refuses to give up on his beloved truck even after a mechanic predicts that it will soon die. Voices of Mike Judge, Kathy Najimy, Pamela Segall Adlon and Brittany Murphy. + Animated + Sitcom + + + TVPG + + + + Bob's Burgers + Bed, Bob and Beyond + A Valentine's Day fight between Bob and Linda has the kids feeling confused; Tina, Louise and Gene tell their own story as a distraction from awkward tension. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + + + TVPG + + + + Bob's Burgers + Every Which Way but Goose + Tina, discouraged by not being asked to the prom by Jimmy Jr., forms an unhealthy attachment to a goose from the nearby park; Linda joins a dating app to help Gretchen find a match. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TVPG + + + + Bob's Burgers + The Fresh Princ-ipal + Things get out of hand when Louise wins a contest to be principal for a day; Teddy has a unique suggestion to help Bob when he suddenly finds himself unable to flip burgers. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TVPG + + + + American Dad! + Big Stan on Campus + Stan volunteers as a campus security guard when the CIA is forced to make cutbacks; Roger opens a bed and breakfast to boost the family's income. + Animated + Sitcom + + + TV14 + + + + American Dad! + Now and Gwen + Francine's sister, Gwen, comes to town and Hayley suspects she is up to no good; Stan teaches Steve the art of hugging Aunt Gwen. + Animated + Sitcom + + + TV14 + + + + American Dad! + LGBSteve + The roller derby team will only let Hayley play if her. + Animated + Sitcom + + + TV14 + + + + American Dad! + Morning Mimosa + Francine refuses to cook for Steve when he cusses at her and he becomes a successful chef; Stan thinks he can make people invisible by snapping his fingers. + Animated + Sitcom + + + TV14 + + + + Rick and Morty + The ABCs of Beth + Jerry pulls in some lady in this one broh. Beth revisits her childhood. + + Justin Roiland + Sarah Chalke + Spencer Grammer + + Animated + Comedy + + + TV14 + + + + Rick and Morty + The Rickchurian Mortydate + Rick goes toe to toe with the President in this one broh. + Animated + Comedy + + + TV14 + + + + Robot Chicken + Disemboweled by an Orphan + Demented minds see Gadget from Chip 'n Dale in a brand new way; the writers imagine what could happen if Frosty's hat landed on a few other things. + + Seth Green + Sarah Chalke + Breckin Meyer + + Animated + Comedy + + + TV14 + + + + Robot Chicken + Choked on Multi-Colored Scarves + A TV theme song that never ends. + + Seth Green + Dan Milano + Breckin Meyer + + Animated + Comedy + + + TV14 + + + + Aqua Teen Hunger Force + Fry Legs + Frylock begins acting strangely after falling for a girl. + Animated + Comedy + + + TV14 + + + + Aqua Teen Hunger Force + Der Inflatable Fuhrer + Frylock takes up some side work. + Animated + Comedy + + + TV14 + + + + American Dad! + License to Till + Klaus and Roger try, unsuccessfully, to elevate Steve to a higher social circle; Stan and Francine prank each other. + Animated + Sitcom + + + TV14 + + + + American Dad! + Jenny Fromdabloc + Steve and Roger try to cheer up Snot after he is rejected by Hayley; Stan wants to live like a man from the 1960s. + Animated + Sitcom + + + TV14 + + + + American Dad! + Home Wrecker + Stan and Francine's fight over how to redecorate the house escalates into them splitting the house down the middle. + Animated + Sitcom + + + TV14 + + + + Rick and Morty + The ABCs of Beth + Jerry pulls in some lady in this one broh. Beth revisits her childhood. + + Justin Roiland + Sarah Chalke + Spencer Grammer + + Animated + Comedy + + + TV14 + + + + Rick and Morty + The Rickchurian Mortydate + Rick goes toe to toe with the President in this one broh. + Animated + Comedy + + + TV14 + + + + Three Busy Debras + Sleepover! + Debra, Debra and Debra get together for an impromptu sleepover at Debra's house, where unspoken tensions rise to the surface. + + Sandy Honig + Mitra Jouhari + Alyssa Stonoha + + Sitcom + + + TV14 + + + + Three Busy Debras + Barbra + Debra, Debra and Debra welcome a very cool visitor who threatens to tear Debra and Debra away from Debra. + + Sandy Honig + Mitra Jouhari + Alyssa Stonoha + + Sitcom + + + TV14 + + + + Your Pretty Face Is Going to Hell + Straight Outta Hades + Gary produces a new orientation video for Hell's new arrivals. + + Matt Servitto + Henry Zebrowski + + Comedy + + + TVMA + + + + Your Pretty Face Is Going to Hell + Circle Jerk MCMCVIII + Satan meets with mysterious co-workers in the fringes of Hell. + + Matt Servitto + Henry Zebrowski + + Comedy + + + TV14 + + + + Bob's Burgers + Bed, Bob and Beyond + A Valentine's Day fight between Bob and Linda has the kids feeling confused; Tina, Louise and Gene tell their own story as a distraction from awkward tension. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + + + TVPG + + + + Bob's Burgers + Every Which Way but Goose + Tina, discouraged by not being asked to the prom by Jimmy Jr., forms an unhealthy attachment to a goose from the nearby park; Linda joins a dating app to help Gretchen find a match. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TVPG + + + + The Amazing World of Gumball + The Bros + When Darwin gets jealous of Gumball and Penny's relationship, he sets out to find information on Penny that will break them up. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Mirror + Against Darwin's advice, Gumball refuses to forward a scare email, bringing down a curse on the whole family. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Man + When Granny Jojo brings her new boyfriend to her birthday dinner, Dad bans her from seeing the boyfriend again. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Pizza + Frustrated, Larry quits all of his jobs, unraveling the commercial structure of Elmore. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Lie + Noticing that everyone is in the doldrums of January, Gumball and Anais invent a new holiday to spark excitement. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Butterfly + After a butterfly emerges from its chrysalis, Gumball releases it, and it wreaks havoc all over Elmore. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + Cocomelon + Balloon Boat Race + Everyone inflates their balloons to prepare for the great Balloon Boat Race. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Batwheels + Bibi's Bad Day + Bibi has a bad day after she keeps messing up and lets Joker get away. + + Ethan Hawke + Jacob Bertrand + Jordan Reed + + Animated + Children + + + TVY7 + + + + Cocomelon + Five Senses Song + JJ and friends learn about the five senses. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Thomas & Friends: All Engines Go + The Super Axle + When aging Toby comes to Knapford, he struggles to keep up with all the young engines; he still has a lot of zip in him, but around all the modern engines, he loses his confidence. + + Meesha Contreras + Neil Crone + Luke Marty + + Animated + Children + + + TVG + + + + Cocomelon + Three Little Kittens + Have fun singing along to this traditional nursery rhyme about three little kittens and their lost mittens. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Bugs Bunny Builders + Race Track Race + The Looney Builders race against the clock to build Cecil Turtle a new racetrack; Daffy gets caught up in his own desire to race and changes part of the build. + + Eric Bauza + Bob Bergen + Chandni Parekh + + Children + Performing Arts + + + TVY + + + + The Looney Tunes Show + Off Duty Cop + Daffy pretends that he is a television detective from the '70s. + + Bob Bergen + Jeff Bergman + Maurice LaMarche + + Animated + Children + + + TVPG + + + + The Looney Tunes Show + Working Duck + After getting fired for sleeping on the job, Daffy is kicked out of the house. + + Fred Armisen + Bob Bergen + Jeff Bergman + + Animated + Children + + + TVPG + + + + Craig of the Creek + Dog Decider + Unable to make tough decisions, Craig decides to put his choices in the hands of a dog named Fred. + Animated + Children + + + TVY7 + + + + Craig of the Creek + Bring Out Your Beast + Craig wants to play a popular card game, so he decides to borrow Bernard's vintage and valuable cards. + Animated + Children + + + TVY7 + + + + Craig of the Creek + Lost in the Sewer + Craig agrees to help The Sewer Queen map the sewers, but he quickly finds himself in over his head. + Animated + Children + + + TVY7 + + + + Craig of the Creek + The Future Is Cardboard + The kids meet an eccentric cardboard creator that invites Craig to help finish his masterpiece. + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Boombox + Gumball and Darwin try to decipher Juke's urgent beatbox message. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Tape + Gumball and Darwin fail to make instant home movie classics. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Sweaters + Gumball and Darwin's reputation is challenged and they really couldn't care less. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Internet + After accidentally creating an embarrassing viral video, Gumball is determined to take down the Internet. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + Tiny Toons Looniversity + Save The Loo Bru + Buster meets his nemesis, Montana Max, and must apply a new lesson from Bugs about drag. + Animated + Children + + + TVPG + + + + Clarence + Chadsgiving + Clarence is excited for Thanksgiving dinner with Chad's parents, but Chad worries that their bizarre customs will make him look irresponsible. + + Spencer Rothbell + Tom Kenny + Sean Giambrone + + Animated + Children + + + TVPG + + + + Clarence + Clarence The Movie + When Clarence starts to play around with his home video camera, he becomes increasingly drawn into the world of filmmaking. + + Spencer Rothbell + Tom Kenny + Sean Giambrone + + Animated + Children + + + TVPG + + + + Clarence + Belson Gets a Girlfriend + Clarence is in disbelief when he learns his best friend Belson has a new girlfriend named Pipi; but when he observes their less than romantic behavior, he decides that he needs to teach them the ways of love. + + Spencer Rothbell + Tom Kenny + Sean Giambrone + + Animated + Children + + + TVPG + + + + Clarence + Brain TV + After a marathon of classic sitcom episodes, Clarence becomes stuck as alter-ego Clarry, an obnoxiously overacting sitcom version of himself, and his friends and family must help him snap out of it. + + Spencer Rothbell + Tom Kenny + Sean Giambrone + + Animated + Children + + + TVPG + + + + Craig of the Creek + Heart of the Forrest Finale + The epic Heart of the Forest quest ends. + + Philip Solomon + Noël Wells + Michael Croner + + Animated + Children + + + TVY7 + + + + Teen Titans Go! + Villains in a Van Getting Gelato + Four of the Titans' greatest villains reminisce about past incidents and recall how the Titans wronged them. + + Scott Menville + Hynden Walch + Tara Strong + + Animated + Children + + + TVPG + + + + Teen Titans Go! + I Am Chair + During a stressful trip to the mall, Robin finds peace in a massage chair. + + Scott Menville + Hynden Walch + Tara Strong + + Animated + Children + + + TVPG + + + + Teen Titans Go! + Bumgorf + When the Titans realize they have not seen Silkie for a long time, they take turns guessing what happened to him. + + Scott Menville + Hynden Walch + Tara Strong + + Animated + Children + + + TVPG + + + + Teen Titans Go! + The Mug + Robin dreams of receiving a #1 Dad mug so Raven magically turns them into a sitcom family. + + Scott Menville + Hynden Walch + Tara Strong + + Animated + Children + + + TVPG + + + + The Amazing World of Gumball + The Plan + After finding a strange letter in the trash, the Watterson children devise a fool-proof plan to save Nicole. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The World + Elmore's world is full of inanimate objects. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Finale + The Wattersons learn that their past actions have consequences. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + The Amazing World of Gumball + The Kids + Gumball and Darwin's voices break. + + Logan Grove + Kwesi Boakye + Kyla Rae Kowalewski + + Animated + Children + + + TVY7 + + + + Night Court + Razing Bull + Distraught over the impending demise of a neighborhood theater, Bull chains himself to the old building. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + My Three Dads + Harry, Bull and Dan (Harry Anderson, Richard Moll, John Larroquette) all pitch in to help at Christine's (Markie Post) Lamaze class. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + A Night Court at the Opera + Dan (John Larroquette) uses a night at the opera to make his moves on Margaret (Mary Cadorette). With Harry Anderson. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Get Me to the Roof on Time + Bull flees to the courthouse roof when others take over his wedding plans; Dan has a date with triplets. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + World War III + A Russian emigre and his visiting brother, who's hoping to defect, appear in court after causing a disturbance at a circus. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + The Birthday Visitor + Billie helps Harry celebrate his birthday and an unexpected guest arrives in the form of a gun-toting burglar. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Dan's Parents + Dan is embarrassed when his country-bumpkin parents (Jeanette Nolan, John McIntire) visit. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Nuts About Harry + Four mental patients charged with defrauding a cab driver escape from their psychiatrist after appearing in court. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Married Alive + Dan's colleagues question his ulterior motives when he proposes to an awkward heiress. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Mac and Quon Le: Together Again + Mac sees Quon Le for the first time since their wedding when she is arrested for solicitation and discovers she is homeless and in debt. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Walk, Don't Wheel + Harry turns down a physically challenged woman's invitation to a graduation ball. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Hello, Goodbye + Harry has to find a replacement for recently deceased bailiff Selma as well as try to comfort the inconsolable Bull, while Christine Sullivan returns as the defense attorney from Legal Aid. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Mac and Quon Le: No Reservations + Mac (Charles Robinson) is crushed when his grandfather disapproves of his Vietnamese bride, Quon Le (Denice Kumagai). + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Best of Friends + Dan's(John Larroquette) former college buddy (guest star Jim Bailey) has had a sex-change operation. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Dan's Boss + Dan (John Larroquette) is fired when he fails to get along with his diminutive new boss (Daniel Frishman). Guest: Robert Englund. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Up on the Roof + Harry (Harry Anderson) deals with a rock star whose psychiatrist is only interested in the performer's money. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Wheels of Justice + Harry (Harry Anderson) feels helpless when he's forced to rule against victims of circumstance. Guest star: Susan Ruttan. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Wheels of Justice + Harry (Harry Anderson) returns to his job after coping with his inability to help a destitute defendant (Susan Ruttan) and her son. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Dan's Escort + Desperate for money, Dan moonlights as a male escort. His second job becomes problematic when the woman he's escorting demands that he sleep with her. Meanwhile, Yakov returns to the courtroom to announce his wife is arriving in America. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + The Night Off + A substitute judge arrests the staff when Harry takes a night off. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Harry and Leon + Harry becomes a foster father to the courthouse shoeshine boy. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + The Apartment + Mac's in-laws arrive from Vietnam and move in with him and Quon Le, while Harry plans a surprise birthday party in Dan's honor. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Leon, We Hardly Knew Ye + Harry loses custody of Leon and bungles a chance to meet Mel Torme. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + The Muggee + Florence (Florence Halop) is taken hostage by a grenade-carrying man who mugged Christine (Markie Post). + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Could This Be Magic? + A has-been magician (Carl Ballantine) rejects Harry's advice. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Monkey Business + Bull hides an orangutan who has been introduced as evidence in a case. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + The Hurricane + Several expectant mothers are stranded in the courtroom when a hurricane strikes the city. Dick Butkus, Brent Spiner and Pam Grier guest star. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + The Hurricane + Four expectant mothers are stranded in the courtroom while a hurricane rages outside. Guest: Dick Butkus. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + The Next Voice You Hear.. + Harry receives a letter from his mother, who deserted him when he was a child. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Giving Thanks + Dan (John Larroquette) saves Christine's (Markie Post) life and insists that she sleep with him to return the favor. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Author, Author + Dan (John Larroquette) is tormented by a woman (Fran Drescher) with a split personality; Bull's (Richard Moll) children's story is deemed too frightening for kids. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Dan's Operation + Dan collapses when he returns to work too soon after having an operation. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Dan's Operation + Dan (John Larroquette) slips into a coma after an amorous former girlfriend (Leslie Bevis) pays him a visit in the hospital. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + The New Judge + While Harry is away, the replacement judge offers Dan a bribe. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Prince of a Guy + While Harry (Harry Anderson) is attempting to help a South Pacific princess avoid an arranged marriage, her brother pursues Christine (Markie Post). Jeanne Mori guest stars. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Murder + A woman disrupts the court proceedings to confess to murdering her husband, while Dan decides to become a donor for a sperm bank. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Baby Talk + Depressed over their financial problems, Mac (Charlie Robinson) decides to leave Quon Le (Denise Kumagai). + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + The Modest Proposal + Christine shocks her coworkers when she announces that she is getting married. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + A Day in the Life + Harry and the courtroom staff have until midnight to decide 200 cases. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Her Honor + Through connections Mac gets advance notice about the new judges list and discovers that Christine is one of the new appointees. Meanwhile, the Wheelers return to the courtroom and buy the snack bar newsstand in the cafeteria. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Her Honor + While Christine's (Markie Post) being sworn in as the new judge, Harry (Harry Anderson) plans a colossal stunt. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Her Honor + Christine (Markie Post) assumes her new role as a judge; Harry (Harry Anderson) prepares to launch his incredible stunt. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Her Honor + While attempting to perform his stunt on the Brooklyn Bridge, Harry (Harry Anderson) is confronted by a man who intends to commit suicide. With Richard Frank and Kenneth Tigar. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Ladies Night + After Roz and her boyfriend break up Christine decides to help Roz recover, so they go out together to one of Roz's favorite hang-outs: a male strip club. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Who Was That Mashed Man? + A veteran actor contemplates suicide when a lawsuit prevents him from portraying the Western hero that made him famous. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + No Hard Feelings + Dan's world has come crashing down: he's suffering from impotence. Meanwhile, Harry is given a personal assistant, a blind woman with a terrible attitude. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Constitution + Harry fights with a man threatening to destroy an original draft of the Constitution; Roz's illness concerns the staff. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Constitution + Harry reasons with the man who is threatening to destroy an original draft of the Constitution; Roz has diabetes. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Danny Got His Gun + Dan (John Larroquette) is called to active duty by his Army Reserve unit. With Harry Anderson. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Danny Got His Gun + The court staff holds a memorial service for Dan (John Larroquette). With Harry Anderson. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Danny Got His Gun + Dan is forced to perform an appendectomy on one of his rescuers because of an injury to the doctor's hands. The court staff, meanwhile, prepares to hold Dan's memorial service. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Fools Rush In + Christine's (Markie Post) ex-husband Tony (Ray Aruzzo) disrupts her blossoming romance with Harry (Harry Anderson). With John Larroquette. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Fools Rush In + Harry is arrested after spying on Christine and Tony in the park; Dan is swindled out of his. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + A Guy Named Phantom + The replacement (Gilbert Gottfried) for Dan (John Larroquette) is even more objectionable; Harry and Christine (Harry Anderson, Markie Post) face breaking up. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + A Guy Named Phantom + Dan, costumed as the. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + My Life as a Dog Lawyer + Dan (John Larroquette) is humiliated by appearing in dog court when he returns to work. With Harry Anderson. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Puppy Love + Roz (Marsha Warfield) is shocked when her long-lost husband (Roger E. Mosley) arrives asking for a divorce. Guest star: Bever-Leigh Banfield. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Pop Goes the Question + Over a candlelit dinner in the cafeteria, Bull and Wanda (Richard Moll, Cathy McAuley) make romantic plans. Stars Harry Anderson. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Guess Who's Listening to Dinner? + Dan (John Larroquette) wears an FBI wire while dining with the gangster father (Tony Jay) of his latest ladylove (Teresa Parente). + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Looking for Mr. Shannon + Dan (John Larroquette) throws a bachelor party for Bull (Richard Moll) and the celebrants wind up at a seedy motel. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Teacher's Pet + Christine's role model at college reveals a terrible secret; Bull thinks his sex life needs more vigor. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + The System Works + Harry does the learning while moonlighting as an instructor; Christine's days as a children's author may be numbered. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Shave and a Haircut + Harry's pleasure at presenting an award to Mel Torme turns to embarrassment; Dan hatches a get-rich-quick scheme. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + A New York Story + Harry hears the case of a man who claims to own the Brooklyn Bridge -- and has the check to prove it. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Undressed for Success + Mac (Charlie Robinson) agrees to pose for an underwear advertisement; Dan (John Larroquette) gets caught red-handed. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Party Girl + Christine (Markie Post) decides to run for Congress; Dan (John Larroquette) takes a job as a sexual surrogate. Stars Harry Anderson. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Party Girl + Christine (Markie Post) goes to her opponent's office to confront him on his vicious campaign tactics. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + P.S. Do I Know You? + Roz (Marsha Warfield) devises a charade when her pen pal (James McDonnell) comes to town to meet her. With Markie Post. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + The 1992 Boat Show + Dan's (John Larroquette) plan to land an interview in a high-society newspaper backfires. With Harry Anderson. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Full House + Michelle Rides Again + Michelle suffers amnesia and the rest of the gang tries to help by recalling moments from the past. + + John Stamos + Bob Saget + Dave Coulier + + Sitcom + + + TVG + + + + Full House + Michelle Rides Again + Michelle suffers amnesia and the rest of the gang tries to help by recalling moments from the past. + + John Stamos + Bob Saget + Dave Coulier + + Sitcom + + + TVG + + + + Full House + Our Very First Show + A widowed father (Bob Saget) of three young girls asks two friends (John Stamos, Dave Coulier) to move in and help raise his family. + + John Stamos + Bob Saget + Dave Coulier + + Sitcom + + + TVG + + + + Full House + Our Very First Night + While baby-sitting Danny's girls, Jesse jams with members of his rock band. + + John Stamos + Bob Saget + Dave Coulier + + Sitcom + + + TVG + + + + The Brady Bunch + Tell It Like It Is + Carol writes a story for a women's magazine and the Bradys prematurely celebrate the article's success. + + Robert Reed + Florence Henderson + Ann B. Davis + + Sitcom + + + TVG + + + + The Brady Bunch + Ghost Town U.S.A + The Bradys camp in a deserted mining town where a grizzled prospector thinks they've come to jump his claim. + + Robert Reed + Florence Henderson + Ann B. Davis + + Sitcom + + + TVG + + + + Family Affair + The Birthday Boy + The twins plan a surprise birthday party for French. + + Brian Keith + Sebastian Cabot + Kathy Garver + + Sitcom + + + TVG + + + + The Donna Reed Show + A Night to Howl + Donna and Alex try to have a romantic night out. + + Donna Reed + Carl Betz + Shelley Fabares + + Sitcom + + + TVPG + + + + The Carol Burnett Show + Rita Moreno + Rita Moreno guest stars, appearing in a sketch as a nurse to the accident-prone Carol; Tim plays a hapless officer attempting to dishonorably discharge sergeant Harvey.Guests: Rita Moreno.. + + Carol Burnett + Harvey Korman + Vicki Lawrence + + Comedy + Variety + + + TVG + + + + The Lucy Show + Lucy Gets Jack Benny's Account + Lucy designs a vault in an attempt to get Jack Benny's account. + + Lucille Ball + Gale Gordon + Roy Roberts + + Sitcom + + + TVG + + + + The Lucy Show + Little Old Lucy + Mr. Mooney orders Lucy to masquerade as an elderly lady for a date with the bank president. + + Lucille Ball + Gale Gordon + Mary Jane Croft + + Sitcom + + + TVG + + + + I Love Lucy + Lucy Gets Ricky on the Radio + Ricky misleads Lucy into thinking he knows all the answers to a radio quiz show; she gets them booked onto the next broadcast. When Ricky reveals the truth, Lucy tries to sneak a peek at the questions in advance but things backfire on her scheme. + + Lucille Ball + Desi Arnaz + Vivian Vance + + Sitcom + + + TVG + + + + I Love Lucy + Lucy's Schedule + After taking so long to get dressed that they miss a dinner with his new boss, Ricky puts Lucy on a strict schedule. On a follow-up dinner with Ricky's boss and his wife, the women give the men a taste of what it's like to be on a schedule. + + Lucille Ball + Desi Arnaz + Vivian Vance + + Sitcom + + + TVG + + + + The Mary Tyler Moore Show + Mary's Aunt + Mary's Aunt Flo (Eileen Heckart), a well-known newspaper journalist, visits Mary and the newsroom staff. + + Mary Tyler Moore + Edward Asner + Gavin MacLeod + + Sitcom + + + TVPG + + + + Rhoda + The Weekend + Rhoda decides, without asking her mother's permission, to spend a weekend alone with her new boyfriend. + + Valerie Harper + Julie Kavner + Nancy Walker + + Sitcom + + + TVPG + + + + Laverne & Shirley + Watch the Fur Fly + Shirley is infuriated when she sees Rhonda wearing a fur coat. + + Penny Marshall + Cindy Williams + Leslie Easterbrook + + Sitcom + + + TVPG + + + + Laverne & Shirley + Rocky Ragu + Carmine auditions to play a boxer in a movie after Rhonda convinces her she is right for the part. + + Penny Marshall + Cindy Williams + Eddie Mekka + + Sitcom + + + TVG + + + + Mama's Family + Educating Mama + Bubba convinces Mama to join him in night school. + + Vicki Lawrence + Ken Berry + Dorothy Lyman + + Sitcom + + + TVPG + + + + Mama's Family + Zirconias Are a Girl's Best Friend + The Harpers hope to cure Mama of her addiction to home-shopping TV shows. + + Vicki Lawrence + Ken Berry + Dorothy Lyman + + Sitcom + + + TVPG + + + + The Love Boat + And One to Grow On; Seems Like Old Times; I'll Never Forget What's Her Name + Vicki learns of her father's alcoholism; a widow searches for her college beau; a woman aids her supposedly amnesiac former fiance. + + Gavin MacLeod + Bernie Kopell + Fred Grandy + + Drama + + + TVG + + + + The Odd Couple + The Odd Monks + Felix and Oscar attempt to escape the turmoil of modern living by taking up residence in a religious retreat. + + Tony Randall + Jack Klugman + + Sitcom + + + TVPG + + + + The Odd Couple + I'm Dying of Unger + Oscar gets the deadline jitters after committing himself to writing a book. + + Tony Randall + Jack Klugman + + Sitcom + + + TVPG + + + + Good Times + The Investigation + Michael's research for a bicentennial report leads to strange happenings for the Evans family. + + Esther Rolle + John Amos + Jimmie Walker + + Sitcom + + + TVPG + + + + Good Times + J.J. in Trouble + When an old girlfriend visits J.J., she brings along some upsetting news. + + Ja'net DuBois + Jimmie Walker + Ralph Carter + + Sitcom + + + TVPG + + + + Sanford & Son + A House Is Not a Poolroom + Fred's buddies turn his house into a pool hall when Lamont buys him a pool table. + + Redd Foxx + Demond Wilson + Lynn Hamilton + + Sitcom + + + TVPG + + + + Sanford & Son + Grady, the Star Boarder + Grady is sick of being a boarder for the bickering Ferguson's and vents his frustrations to Fred. + + Redd Foxx + Demond Wilson + Whitman Mayo + + Sitcom + + + TVPG + + + + All in the Family + Grandpa Blues + Archie is upset over Gloria and Mike's ideas for names for the baby and needs to remain calm for a physical at his workplace. + + Carroll O'Connor + Jean Stapleton + Rob Reiner + + Sitcom + + + TVPG + + + + All in the Family + Gloria Suspects Mike + Gloria suspects the worst after Mike's once-a-week job of tutoring a college student turns into a twice-a-week job. + + Carroll O'Connor + Jean Stapleton + Rob Reiner + + Sitcom + + + TVPG + + + + Night Court + Harry on Trial + Harry is brought before the judicial ethics committee when it appears he has been consorting with a hooker. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Auntie Maim + Harry (Harry Anderson) must deal with a flamboyant former actress (Magda Harout) accused of assaulting a policeman. Also guest stars Della Reese. With John Larroquette. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + The Dick Van Dyke Show + A Word a Day + Ritchie's expanding vocabulary starts to branch out in unexpected directions. + + Dick Van Dyke + Mary Tyler Moore + Rose Marie + + Sitcom + + + TVG + + + + The Dick Van Dyke Show + The Talented Neighborhood + When his show announces a talent contest, Rob finds himself besieged by the parents of neighborhood prodigies. + + Dick Van Dyke + Mary Tyler Moore + Rose Marie + + Sitcom + + + TVG + + + + Cheers + Cheers Has Chili + Sam tries to sabotage Rebecca's efforts to operate a successful tea-room in what was formerly his pool-room; Woody's chili is a hit. + + Ted Danson + Kirstie Alley + Rhea Perlman + + Sitcom + + + TVPG + + + + Cheers + Carla Loves Clavin + Cliff tells Carla that he is one of the judges in the Miss Boston barmaid contest, and that if she wants to win, she must be nice to him, even if it kills her. + + Ted Danson + Kirstie Alley + Rhea Perlman + + Sitcom + + + TVPG + + + + Taxi + Jim's Mario's + Jim tries to convince his family that he did not squander his inheritance by buying a run-down restaurant. + + Judd Hirsch + Danny DeVito + Marilu Henner + + Sitcom + + + TVPG + + + + The Bob Newhart Show + The Crash of 29 Years Old + Feeling unfulfilled and having just turned 29, Carol quits her job as Bob's receptionist, then suddenly shows up at one of Bob's group-therapy sessions, creating a situation in which Bob finds himself more of a patient than a doctor. + + Bob Newhart + Suzanne Pleshette + Marcia Wallace + + Sitcom + + + TVG + + + + Newhart + I Do, Okay? + Joanna and Dick (Mary Frann, Bob Newhart) renew their marriage vows. + + Bob Newhart + Mary Frann + Tom Poston + + Sitcom + + + TVPG + + + + The Honeymooners + Suspense; Two Tickets to the Fight + Ralph thinks Alice wants him dead; Ralph's fight plans get ruined. + + Jackie Gleason + Audrey Meadows + Art Carney + + Sitcom + + + TVG + + + + The Phil Silvers Show + Bilko's De Luxe Tours + Bilko heads for disaster when he invests his platoon's money in the transportation business. + + Phil Silvers + Harvey Lembeck + Allan Melvin + + Sitcom + + + TVG + + + + The Many Loves of Dobie Gillis + Dobie Gillis: Boy Actor + Dobie auditions for the school play in order to impress a girl, but discovers that he is up against Milton to be leading man. + + Dwayne Hickman + Bob Denver + Frank Faylen + + Sitcom + + + TVG + + + + Rowan & Martin's Laugh-In + Sketches include the marriage counselor, Captain Amazing, the salute to the press, the good news, the senator blackouts, news stories, the Indian tradition, the Burbank beauties; featuring William Conrad, Henry Mancini, and Dan and Mary Rowan.Guests: William Conrad, Bob Crane, Nanette Fabray, Henry Mancini.. + + Dan Rowan + Dick Martin + Ruth Buzzi + + Comedy + Variety + + + TVPG + + + + The Ed Sullivan Show + Performances by Tom Jones, the Muppets, Patty Duke and Dancers, Totie Fields and Pavel. + Variety + + + TVG + + + + The Ed Sullivan Show + Nancy Wilson; the Muppets; Dusty Springfield; the Highwaymen; Robert Goulet; Nipsey Russell. + Variety + + + TVG + + + + Our Miss Brooks + Noodnick, Daughter of Medic + After overhearing part of a conversation, Conklin thinks Miss Brooks is about to replace him as principal. + + Eve Arden + Gale Gordon + Jane Morgan + + Sitcom + + + TVPG + + + + Our Miss Brooks + The Stuffed Gopher + Madison High protects its star athlete from Mr. Conklin's wrath. + + Eve Arden + Gale Gordon + Jane Morgan + + Sitcom + + + TVPG + + + + Full House + The First Day of School + Anxiety reigns supreme as Stephanie prepares to enter kindergarten. + + John Stamos + Bob Saget + Dave Coulier + + Sitcom + + + TVG + + + + Full House + The Return of Grandma + Trouble comes in threes when Grandma Claire (Alice Herson) and both Jesse and Joey's mothers (Rhoda Gemignani, Beverly Sanders) pay unexpected visits. + + John Stamos + Bob Saget + Dave Coulier + + Sitcom + + + TVG + + + + Full House + Sea Cruise + Danny has mixed emotions about dating again when several women join the for-men-only fishing trip. + + John Stamos + Bob Saget + Dave Coulier + + Sitcom + + + TVG + + + + Full House + Daddy's Home + Danny feels guilty because he hasn't been spending enough time with his children. + + John Stamos + Bob Saget + Dave Coulier + + Sitcom + + + TVG + + + + The Brady Bunch + Grand Canyon or Bust + The Bradys break out of the jail an old prospector locked them in and discover their car missing. + + Robert Reed + Florence Henderson + Ann B. Davis + + Sitcom + + + TVG + + + + The Brady Bunch + The Brady Braves + Cindy and Bobby are aided by an American Indian boy when they become lost in the Grand Canyon. + + Robert Reed + Florence Henderson + Ann B. Davis + + Sitcom + + + TVG + + + + Family Affair + The Stowaway + The twins hide a runaway orphan in the apartment. + + Brian Keith + Sebastian Cabot + Kathy Garver + + Sitcom + + + TVG + + + + The Donna Reed Show + The Editorial + An editorial gets Jeff fired from the school paper. + + Donna Reed + Carl Betz + Shelley Fabares + + Sitcom + + + TVPG + + + + The Carol Burnett Show + Emmett Kelly, The Jackson Five + A stacked show tonight, with clown Emmett Kelly; a musical performance from The Jackson 5; Carol in a dual role for the movie spoof, A Swiped Life.Guests: Emmett Kelly, The Jackson Five.. + + Carol Burnett + Harvey Korman + Vicki Lawrence + + Comedy + Variety + + + TVG + + + + The Lucy Show + Lucy and Robert Goulet + Lucy tries to enter a truck driver in a Robert Goulet. + + Lucille Ball + Gale Gordon + + Sitcom + + + TVG + + + + The Lucy Show + Lucy Gets Mooney Fired + When Lucy tries to help Mr. Mooney, she gets him fired instead. + + Lucille Ball + Gale Gordon + Mary Jane Croft + + Sitcom + + + TVG + + + + I Love Lucy + Ricky Thinks He's Going Bald + Ricky is horrified to notice his hair-line is receding; Lucy tries a number of unorthodox treatments in order to convince Ricky that the products and treatments aren't worth the worry about his hair. + + Lucille Ball + Desi Arnaz + Vivian Vance + + Sitcom + + + TVG + + + + I Love Lucy + Ricky Asks for a Raise + Ricky's boss won't give him a raise, so he quits. Lucy and the Mertzes decide that to convince the boss to hire Ricky back, they should pretend to be different patrons of the club who, once they discover Ricky isn't there anymore, would leave. + + Lucille Ball + Desi Arnaz + Vivian Vance + + Sitcom + + + TVG + + + + The Mary Tyler Moore Show + Chuckles Bites the Dust + The newsroom is shocked at the bizarre death of Chuckles the Clown during a circus parade. + + Mary Tyler Moore + Ed Asner + Gavin MacLeod + + Sitcom + + + TVPG + + + + Rhoda + Home Movies + Rhoda and Brenda spend another Friday evening with their parents watching old home movies. + + Valerie Harper + Julie Kavner + Nancy Walker + + Sitcom + + + TVPG + + + + Laverne & Shirley + Star Peepers + The girls avenge their treatment at the hands of a nasty singing star by selling gossip. + + Penny Marshall + Cindy Williams + Leslie Easterbrook + + Sitcom + + + TVPG + + + + Laverne & Shirley + An Affair to Forget + Laverne's date shoves her into the aquarium at a seafood restaurant. + + Penny Marshall + Cindy Williams + Eddie Mekka + + Sitcom + + + TVG + + + + Mama's Family + The Key to the Crime + Iola and Mama set out to prove that Vint isn't Raytown's serial burglar. + + Vicki Lawrence + Ken Berry + Dorothy Lyman + + Sitcom + + + TVPG + + + + Mama's Family + Breaking Up Is Hard to Do + Even though Naomi and Vint separate, they must continue to live with Mama. + + Vicki Lawrence + Ken Berry + Dorothy Lyman + + Sitcom + + + TVPG + + + + The Love Boat + Aerobic April; Wager; Story of the Century + April Lopez boards ship; rich brothers bet they will not fall in love; a reporter (Ralph Bellamy) pursues a woman to get a major story. + + Gavin MacLeod + Bernie Kopell + Fred Grandy + + Drama + + + TVG + + + + The Odd Couple + The Odd Couples + Oscar tries to conceal his divorce from his mother. + + Tony Randall + Jack Klugman + + Sitcom + + + TVG + + + + The Odd Couple + Felix's First Commercial + Felix is told he can direct a razor commercial on television provided he can get football star Deacon Jones to appear in it. + + Tony Randall + Jack Klugman + + Sitcom + + + TVPG + + + + Good Times + Florida the Woman + Fed up with being treated like a servant by her family, Florida accepts a luncheon invitation from a man. + + Esther Rolle + John Amos + Ja'net DuBois + + Sitcom + + + TVPG + + + + Good Times + The Break Up + Thelma's indecision turns to agony when Harry accepts a new job and moves to California. + + Esther Rolle + John Amos + Ja'net DuBois + + Sitcom + + + TVPG + + + + Sanford & Son + Wine, Women and Aunt Esther + Fred and his friends plan a cheer-up party after attending a friend's funeral. + + Redd Foxx + Demond Wilson + LaWanda Page + + Sitcom + + + TVPG + + + + Sanford & Son + Mama's Baby, Papa's Maybe + A question arises as to whether Fred is really Lamont's father. + + Redd Foxx + Demond Wilson + LaWanda Page + + Sitcom + + + TVPG + + + + All in the Family + Archie's Civil Rights + When Archie is mugged, he ends up on trial for having an illegal weapon in his possession. + + Carroll O'Connor + Jean Stapleton + Rob Reiner + + Sitcom + + + TVPG + + + + All in the Family + Gloria Is Nervous + Gloria is fed up with pregnancy and frustrated that she is nine days overdue and Mike finds himself the target of her anger. + + Jean Stapleton + Rob Reiner + Sally Struthers + + Sitcom + + + TVPG + + + + Night Court + Branded + Dan's (John Larroquette) future hangs in the balance when he attempts to get a shady law firm chief disbarred. With Harry Anderson and Richard Moll. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + Night Court + Branded + Dan (John Larroquette), now waiting tables at a French restaurant, is convinced to attend his disbarment hearing. With Harry Anderson and Marsha Warfield. + + Harry Anderson + John Larroquette + Richard Moll + + Sitcom + + + TVPG + + + + The Dick Van Dyke Show + Father of the Week + Rob's paternal pride suffers a cruel shock when he finds out his 6-year-old son is ashamed of him. + + Dick Van Dyke + Mary Tyler Moore + Rose Marie + + Sitcom + + + TVG + + + + The Dick Van Dyke Show + The Boarder Incident + While his wife is away, Buddy accepts Rob's invitation to move in as a house guest. + + Dick Van Dyke + Mary Tyler Moore + Rose Marie + + Sitcom + + + TVG + + + + Cheers + Pitch It Again, Sam + Sam pitches in an exhibition match but is strong-armed by the promoter; the bar gets a mascot. + + Ted Danson + Kirstie Alley + Rhea Perlman + + Sitcom + + + TVPG + + + + Cheers + Rat Girl + Frasier is concerned about the depth of Lilith's grief when one of her lab rats dies. + + Ted Danson + Kirstie Alley + Rhea Perlman + + Sitcom + + + TVPG + + + + Taxi + A Grand Gesture + Jim gives each of the cabbies $1,000 to give to a needy soul so they can experience the joy he feels by giving it away. + + Judd Hirsch + Danny DeVito + Marilu Henner + + Sitcom + + + TVPG + + + + The Bob Newhart Show + The Man With the Golden Wrist + Bob refuses to wear the beautiful gold watch Emily gave him for his 40th birthday after he learns just how expensive it was. + + Bob Newhart + Suzanne Pleshette + Marcia Wallace + + Sitcom + + + TVG + + + + Newhart + The Snowmen Cometh + The annual snow carnival may be postponed due to the dry forecast -- until Larry, Darryl and Darryl come up with a possible solution. + + Bob Newhart + Mary Frann + Tom Poston + + Sitcom + + + TVPG + + + + The Honeymooners + Anniversary Gift; Finger Man + Trixie and Ralph buy Alice the same gift; Ralph nabs a killer. + + Jackie Gleason + Audrey Meadows + Art Carney + + Sitcom + + + TVG + + + + The Phil Silvers Show + Bilko, the Potato Sack King + Bilko leaves the Army to take a job at a company that sells burlap bags. + + Phil Silvers + Harvey Lembeck + Allan Melvin + + Sitcom + + + TVG + + + + The Many Loves of Dobie Gillis + The Gaucho + Overshadowed by an Argentine, Dobie plots revenge. + + Dwayne Hickman + Bob Denver + Yvonne Lime + + Sitcom + + + TVG + + + + Rowan & Martin's Laugh-In + Lucie Arnaz portrays a tax consultant, a roller derby recruit, and a baby bird in the nest; the casts salutes the world of adult books and magazines.Guests: Lucie Arnaz, Rich Little, Ross Martin.. + + Dan Rowan + Dick Martin + Ruth Buzzi + + Comedy + Variety + + + TVPG + + + + The Ed Sullivan Show + Diana Ross and The Supremes, Spanky and Our Gang, Charlie Cairoli and Company, Franco Corelli, the Muppets and George Carlin.Guests: Franco Corelli, George Carlin, The Supremes, Diana Ross.. + Variety + + + TVG + + + + The Ed Sullivan Show + The newspaper columnist hosts a variety of entertainment acts, including Richard Pryor, Gwen Verdon, Mamas and the Papas, Jack Lord, The Supremes, The Beatles, Frank Gorshin, Nancy Sinatra, Charo, Petula Clark, Bobby Vinton and more. + Variety + + + TVG + + + + Our Miss Brooks + Safari O'Toole + Connie plans a birthday party for her landlady. + + Eve Arden + Gale Gordon + Jane Morgan + + Sitcom + + + TVPG + + + + Our Miss Brooks + Weighing Machine + Connie's furious when a penny scale refuses to register her weight. + + Eve Arden + Gale Gordon + Jane Morgan + + Sitcom + + + TVPG + + + + Full House + Knock Yourself Out + Danny is knocked out while interviewing a prizefighter when he mentions his wife left him. + + John Stamos + Bob Saget + Dave Coulier + + Sitcom + + + TVG + + + + Full House + Jesse's Girl + Jesse's new guitar student girlfriend becomes attracted to Joey. + + John Stamos + Bob Saget + Dave Coulier + + Sitcom + + + TVG + + + + Full House + Joey's Place + Joey returns from a comedy tour convinced that Danny and the gang don't need him anymore. In reality, the group has decided that Joey needs his own room instead of living in an alcove in the living room. + + John Stamos + Bob Saget + Dave Coulier + + Sitcom + + + TVG + + + + Full House + The Big Three-O + A surprise birthday party for Danny turns grim when he learns that Jesse has totaled his prized car. + + John Stamos + Bob Saget + Dave Coulier + + Sitcom + + + TVG + + + + The Brady Bunch + The Wheeler-Dealer + Greg gets his driver's license and his first vehicle with the help of his fast-talking buddy. But the car turns out to be beat-up and there is no restoring it. + + Robert Reed + Florence Henderson + Ann B. Davis + + Sitcom + + + TVG + + + + The Brady Bunch + My Sister Benedict Arnold + Greg and Marcia date each other's school rivals to get back at each other. The younger Brady siblings build a dunking tank for the upcoming school carnival. + + Robert Reed + Florence Henderson + Ann B. Davis + + Sitcom + + + TVG + + + + Family Affair + Number One Boy + Bill's valet from Hong Kong usurps French's place. + + Brian Keith + Sebastian Cabot + Kathy Garver + + Sitcom + + + TVG + + + + The Donna Reed Show + The Gentle Dew + Alex and Donna think Mary is out after curfew. + + Donna Reed + Carl Betz + Shelley Fabares + + Sitcom + + + TVPG + + + + The Carol Burnett Show + Family Show + The Family steps out as Mama, Eunice, and Ed go to a fancy restaurant; Tim's Oldest Man is a Wild West sheriff. + + Carol Burnett + Harvey Korman + Vicki Lawrence + + Comedy + Variety + + + TVG + + + + The Lucy Show + Lucy's Mystery Guest + Lucy tears up a letter before she can find out who's coming to visit her. + + Lucille Ball + Gale Gordon + Mary Jane Croft + + Sitcom + + + TVG + + + + The Lucy Show + Lucy the Philanthropist + Lucy befriends a kindly old man she finds sitting on a park bench. + + Lucille Ball + Gale Gordon + Roy Roberts + + Sitcom + + + TVG + + + + I Love Lucy + Job Switching + Ricky and Fred think doing housework is much easier than earning money but Lucy and Ethel feel the opposite; so the boys try doing the housework while the girls attempt to hold down a job on a conveyer belt at a candy factory. + + Lucille Ball + Desi Arnaz + Vivian Vance + + Sitcom + + + TVG + + + + I Love Lucy + The Saxophone + Ricky won't let Lucy go with him on the road, so she auditions for him with her saxophone; Lucy tries to make Ricky jealous, but Ricky gets even by planting men in their closet, so he can act out his jealousy in front of a bewildered Lucy. + + Lucille Ball + Desi Arnaz + Vivian Vance + + Sitcom + + + TVG + + + + The Mary Tyler Moore Show + Mary's Delinquent + Mary and Sue Ann volunteer to be big sisters to two delinquent girls. + + Mary Tyler Moore + Ed Asner + Gavin MacLeod + + Sitcom + + + TVPG + + + + Rhoda + Johnny's Solo Flight + Rhoda tries to cheer up Johnny Venture when his big nightclub debut flops. + + Valerie Harper + Julie Kavner + Nancy Walker + + Sitcom + + + TVPG + + + + Laverne & Shirley + Whatever Happened to the Class of '56 + Lenny and Squiggy tell people at their class reunion that the girls are Hollywood stars. + + Penny Marshall + Cindy Williams + Eddie Mekka + + Sitcom + + + TVG + + + + Laverne & Shirley + The Ski Show + Laverne and Shirley hope to meet men when they go on a weekend ski trip. + + Penny Marshall + Cindy Williams + Phil Foster + + Sitcom + + + TVPG + + + + Mama's Family + A Big Hand for Mama + Mama has a new outlook on life when she's almost hit by lightning. + + Vicki Lawrence + Ken Berry + Dorothy Lyman + + Sitcom + + + TVPG + + + + Mama's Family + Flounder's Day + Mama wants to sing at Raytown's Founder's Day. + + Vicki Lawrence + Ken Berry + Dorothy Lyman + + Sitcom + + + TVPG + + + + The Love Boat + Watching the Master; Starting Over; Last Heist + The beau of Doc's ex-wife observes Doc's methods; a new divorcee confides in Judy; a girl learns of her uncle's (Patrick Macnee) past. + + Gavin MacLeod + Bernie Kopell + Fred Grandy + + Drama + + + TVG + + + + The Odd Couple + The First Baby + Oscar tells Myrna the story of why Felix is banned from Midtown Memorial Hospital. + + Tony Randall + Jack Klugman + + Sitcom + + + TVG + + + + The Odd Couple + Oscar's Birthday + Felix plans to give Oscar a surprise birthday party. + + Tony Randall + Jack Klugman + + Sitcom + + + TVG + + + + Good Times + The Big Move + As the Evanses prepare to join James in Mississippi, a damper is thrown on everything. + + Esther Rolle + Jimmie Walker + Ja'net DuBois + + Sitcom + + + TVPG + + + + Good Times + The Big Move + Florida's attitude toward James' death causes dissension in an already saddened household. + + Esther Rolle + Jimmie Walker + Ja'net DuBois + + Sitcom + + + TVPG + + + + Inmigrantes, el camino hacia un sueño + La realidad de la comunidad centroamericana en Estados Unidos, con énfasis en sus problemas migratorios. Relatos conmovedores de inmigrantes que comparten sus experiencias de lucha constante e incansable. + Local + + + + Este es El Salvador + Un programa que recorre paraísos turísticos con un periodismo de primera clase y reportajes de los pueblos más interesantes de El Salvador. + Travel + News Magazine + + + TVPG + + + + El noticiero + Noticias con lo más importante ocurrido en El Salvador y el mundo. Un equipo de periodistas cubre de forma objetiva todas las informaciones de interés para la comunidad. + News + + + + Hoy mismo + Programa especializado en periodismo, con el mejor equipo de comunicadores de República Dominicana. + News + + + + LD Alajuelense vs. Deportivo Saprissa + Deportivo Saprissa vs. Alajuelense + Jornada 18 del torneo Apertura 2023. Deportivo Saprissa se enfrenta a Alajuelense. Desde el estadio Ricardo Saprissa. + Sports + Soccer + + + + Hola El Salvador USA + Un programa dedicado a difundir y promover la cultura, tradiciones y raíces de la comunidad salvadoreña. Un recorrido a los pueblos, ciudades, a la belleza y riquezas con las que cuenta el corazón de Centroamérica. + Travel + Performing Arts + + + + Reencuentro + Una forma diferente de viajar por El Salvador. Descubriendo cada rincón de su tierra, caminando por sus calles y caminos para indagar sus secretos, su historia escondida y sus tradiciones ancestrales. + Travel + Performing Arts + + + + Reencuentro + Una forma diferente de viajar por El Salvador. Descubriendo cada rincón de su tierra, caminando por sus calles y caminos para indagar sus secretos, su historia escondida y sus tradiciones ancestrales. + Travel + Performing Arts + + + + El noticiero + Noticias con lo más importante ocurrido en El Salvador y el mundo. Un equipo de periodistas cubre de forma objetiva todas las informaciones de interés para la comunidad. + News + + + + Hoy mismo estelar + Un noticiero dinámico, completo y actualizado presentado por un equipo de periodistas que llega a la noticia, satisfaciendo las necesidades informativas de los televidentes. + News + + + + Reencuentro + Una forma diferente de viajar por El Salvador. Descubriendo cada rincón de su tierra, caminando por sus calles y caminos para indagar sus secretos, su historia escondida y sus tradiciones ancestrales. + Travel + Performing Arts + + + + Guatemusical + Las melodías más hermosas de Guatemala para disfrutar, con los mejores intérpretes y las canciones que conmueven o que alegran. Guatemusical toca los corazones chapines más allá de las fronteras de la patria. + Music + Performing Arts + + + + Los secretos mejor guardados + Un programa que destaca los secretos mejor guardados de los lugares paradisíacos, de sitios arqueológicos, mostrando el folclore, proyectos eco turísticos y el medio ambiente. + Local + + + TV14 + + + + Este es El Salvador + Un programa que recorre paraísos turísticos con un periodismo de primera clase y reportajes de los pueblos más interesantes de El Salvador. + Travel + News Magazine + + + TVPG + + + + Amanecer Tropical + Presentación de los mejores grupos musicales y orquestas de El Salvador con los videos y los mejores éxitos que dejaron huella dentro de la música tropical. + Music + Performing Arts + + + + Los secretos mejor guardados + Un programa que destaca los secretos mejor guardados de los lugares paradisíacos, de sitios arqueológicos, mostrando el folclore, proyectos eco turísticos y el medio ambiente. + Local + + + TV14 + + + + Reencuentro + Una forma diferente de viajar por El Salvador. Descubriendo cada rincón de su tierra, caminando por sus calles y caminos para indagar sus secretos, su historia escondida y sus tradiciones ancestrales. + Travel + Performing Arts + + + + Amanecer Tropical + Presentación de los mejores grupos musicales y orquestas de El Salvador con los videos y los mejores éxitos que dejaron huella dentro de la música tropical. + Music + Performing Arts + + + + Guatemusical + Las melodías más hermosas de Guatemala para disfrutar, con los mejores intérpretes y las canciones que conmueven o que alegran. Guatemusical toca los corazones chapines más allá de las fronteras de la patria. + Music + Performing Arts + + + + Este es El Salvador + Un programa que recorre paraísos turísticos con un periodismo de primera clase y reportajes de los pueblos más interesantes de El Salvador. + Travel + News Magazine + + + TVPG + + + + Hola El Salvador USA + Un programa dedicado a difundir y promover la cultura, tradiciones y raíces de la comunidad salvadoreña. Un recorrido a los pueblos, ciudades, a la belleza y riquezas con las que cuenta el corazón de Centroamérica. + Travel + Performing Arts + + + + Guatemusical + Las melodías más hermosas de Guatemala para disfrutar, con los mejores intérpretes y las canciones que conmueven o que alegran. Guatemusical toca los corazones chapines más allá de las fronteras de la patria. + Music + Performing Arts + + + + Los secretos mejor guardados + Un programa que destaca los secretos mejor guardados de los lugares paradisíacos, de sitios arqueológicos, mostrando el folclore, proyectos eco turísticos y el medio ambiente. + Local + + + TV14 + + + + Hola El Salvador USA + Un programa dedicado a difundir y promover la cultura, tradiciones y raíces de la comunidad salvadoreña. Un recorrido a los pueblos, ciudades, a la belleza y riquezas con las que cuenta el corazón de Centroamérica. + Travel + Performing Arts + + + + Llévatelo + Un programa de concursos donde los participantes compiten virtualmente y los presentadores los representan en los juegos en el estudio. + Game Shows + Performing Arts + + + + Este es El Salvador + Un programa que recorre paraísos turísticos con un periodismo de primera clase y reportajes de los pueblos más interesantes de El Salvador. + Travel + News Magazine + + + TVPG + + + + Luis Ángel Firpo vs. CD Dragón + Dragón vs. Luis Ángel Firpo + Dragón, en octava posición, recibe a Luis Ángel Firpo, en segundo sitio, en cotejo de la Jornada 18 del torneo Apertura. Desde el estadio Juan Francisco Barraza. + Sports + Soccer + + + + Este es El Salvador + Un programa que recorre paraísos turísticos con un periodismo de primera clase y reportajes de los pueblos más interesantes de El Salvador. + Travel + News Magazine + + + TVPG + + + + Inmigrantes, el camino hacia un sueño + La realidad de la comunidad centroamericana en Estados Unidos, con énfasis en sus problemas migratorios. Relatos conmovedores de inmigrantes que comparten sus experiencias de lucha constante e incansable. + Local + + + + Universidad Pedagógica nacional Francisco Morazán vs. Club Olimpia Deportivo + Olimpia vs. Lobos UPNFM + Olimpia, primero en la tabla, recibe a Lobos UPNFM, penúltimo sitio, en acción de la Jornada 16 del torneo Apertura. En su último encuentro, el 213 de septiembre pasado, ambos equipos igualaron cartones 3-3. Desde el estadio nacional Chelato Uclés. + Sports + Soccer + + + + El noticiero + Noticias con lo más importante ocurrido en El Salvador y el mundo. Un equipo de periodistas cubre de forma objetiva todas las informaciones de interés para la comunidad. + News + + + + Inmigrantes, el camino hacia un sueño + La realidad de la comunidad centroamericana en Estados Unidos, con énfasis en sus problemas migratorios. Relatos conmovedores de inmigrantes que comparten sus experiencias de lucha constante e incansable. + Local + + + + Noticiero Guatevisión + Un noticiero ágil, dinámico y responsable que ayuda a despertar la conciencia nacional con toda la información de lo acontecido en Guatemala. + News + + + + El noticiero + Noticias con lo más importante ocurrido en El Salvador y el mundo. Un equipo de periodistas cubre de forma objetiva todas las informaciones de interés para la comunidad. + News + + + + Inmigrantes, el camino hacia un sueño + La realidad de la comunidad centroamericana en Estados Unidos, con énfasis en sus problemas migratorios. Relatos conmovedores de inmigrantes que comparten sus experiencias de lucha constante e incansable. + Local + + + + Llévatelo + Un programa de concursos donde los participantes compiten virtualmente y los presentadores los representan en los juegos en el estudio. + Game Shows + Performing Arts + + + + Llévatelo + Un programa de concursos donde los participantes compiten virtualmente y los presentadores los representan en los juegos en el estudio. + Game Shows + Performing Arts + + + + Noticiero Guatevisión + Un noticiero ágil, dinámico y responsable que ayuda a despertar la conciencia nacional con toda la información de lo acontecido en Guatemala. + News + + + + Hola El Salvador USA + Un programa dedicado a difundir y promover la cultura, tradiciones y raíces de la comunidad salvadoreña. Un recorrido a los pueblos, ciudades, a la belleza y riquezas con las que cuenta el corazón de Centroamérica. + Travel + Performing Arts + + + + Este es El Salvador + Un programa que recorre paraísos turísticos con un periodismo de primera clase y reportajes de los pueblos más interesantes de El Salvador. + Travel + News Magazine + + + TVPG + + + + Amanecer Tropical + Presentación de los mejores grupos musicales y orquestas de El Salvador con los videos y los mejores éxitos que dejaron huella dentro de la música tropical. + Music + Performing Arts + + + + Noticiero Telemetro + Un programa con las noticias más relevantes y acontecimientos actuales que se producen en la jornada. Un equipo de reporteros brinda información veraz y objetiva del acontecer nacional e internacional. + News + + + + Noticias El Salvador + Un espacio en el que se brindan noticias de actualidad. + News + + + + Viva la mañana + Un programa dinámico y analítico que ofrece las noticias más importantes, además de segmentos útiles e interesantes. + News + + + + Noticias El Salvador + Un espacio en el que se brindan noticias de actualidad. + News + + + + Frente a frente + Espacio de discusión y análisis donde protagonistas de la vida pública discuten los temas más importantes del momento. Debates vitales que ayudan a la apertura y democratización en El Salvador. + News + Discussion + + + + Hoy mismo estelar + Un noticiero dinámico, completo y actualizado presentado por un equipo de periodistas que llega a la noticia, satisfaciendo las necesidades informativas de los televidentes. + News + + + + Teledos + Las noticias más recientes y relevantes del acontecer diario, y las notas que destacan la labor de aquellos salvadoreños que luchan todos los días por sacar al país adelante. + News + + + + NotiVOS + Noticiero que presenta una información completa de los sucesos que son noticias en el ámbito social, económico, político, empresarial y cultural de Nicaragua. + News + + + + Deportivos + Un programa para los fanáticos deportivos nicaragüenses, con toda la información deportiva presentada de forma ágil, dinámica, versátil y entretenida. + Sports + Talk Show + + + + Los secretos mejor guardados + Un programa que destaca los secretos mejor guardados de los lugares paradisíacos, de sitios arqueológicos, mostrando el folclore, proyectos eco turísticos y el medio ambiente. + Local + + + TV14 + + + + Noticiero Guatevisión + Un noticiero ágil, dinámico y responsable que ayuda a despertar la conciencia nacional con toda la información de lo acontecido en Guatemala. + News + + + + Teledos + Las noticias más recientes y relevantes del acontecer diario, y las notas que destacan la labor de aquellos salvadoreños que luchan todos los días por sacar al país adelante. + News + + + + Más que noticias + Noticiero de Costa Rica que cada día indaga mediante reportajes a personalidades y empresas únicas, con historias extraordinarias e inolvidables. + News + + + + Telenoticias + Espacio informativo con reportes de la actualidad nacional e internacional, deportes y espectáculos. El resumen de noticias más prestigioso de Costa Rica. + News + + + + Noticiero Guatevisión + Un noticiero ágil, dinámico y responsable que ayuda a despertar la conciencia nacional con toda la información de lo acontecido en Guatemala. + News + + + + Hoy mismo estelar + Un noticiero dinámico, completo y actualizado presentado por un equipo de periodistas que llega a la noticia, satisfaciendo las necesidades informativas de los televidentes. + News + + + + El noticiero + Noticias con lo más importante ocurrido en El Salvador y el mundo. Un equipo de periodistas cubre de forma objetiva todas las informaciones de interés para la comunidad. + News + + + + Noticias 4Visión + Los sucesos y hechos más impresionantes, reportajes conmovedores y los casos que otros no se animan a contar. + News + + + + El noticiero + Noticias con lo más importante ocurrido en El Salvador y el mundo. Un equipo de periodistas cubre de forma objetiva todas las informaciones de interés para la comunidad. + News + + + + Noticias 4Visión + Los sucesos y hechos más impresionantes, reportajes conmovedores y los casos que otros no se animan a contar. + News + + + + NotiVOS + Noticiero que presenta una información completa de los sucesos que son noticias en el ámbito social, económico, político, empresarial y cultural de Nicaragua. + News + + + + Deportivos + Un programa para los fanáticos deportivos nicaragüenses, con toda la información deportiva presentada de forma ágil, dinámica, versátil y entretenida. + Sports + Talk Show + + + + Telenoticias + Espacio informativo con reportes de la actualidad nacional e internacional, deportes y espectáculos. El resumen de noticias más prestigioso de Costa Rica. + News + + + + Noticiero Guatevisión + Un noticiero ágil, dinámico y responsable que ayuda a despertar la conciencia nacional con toda la información de lo acontecido en Guatemala. + News + + + + Hoy mismo estelar + Un noticiero dinámico, completo y actualizado presentado por un equipo de periodistas que llega a la noticia, satisfaciendo las necesidades informativas de los televidentes. + News + + + + Noticiero Telemetro + Un programa con las noticias más relevantes y acontecimientos actuales que se producen en la jornada. Un equipo de reporteros brinda información veraz y objetiva del acontecer nacional e internacional. + News + + + + Noticias El Salvador + Un espacio en el que se brindan noticias de actualidad. + News + + + + Viva la mañana + Un programa dinámico y analítico que ofrece las noticias más importantes, además de segmentos útiles e interesantes. + News + + + + Noticias El Salvador + Un espacio en el que se brindan noticias de actualidad. + News + + + + Frente a frente + Espacio de discusión y análisis donde protagonistas de la vida pública discuten los temas más importantes del momento. Debates vitales que ayudan a la apertura y democratización en El Salvador. + News + Discussion + + + + Hoy mismo estelar + Un noticiero dinámico, completo y actualizado presentado por un equipo de periodistas que llega a la noticia, satisfaciendo las necesidades informativas de los televidentes. + News + + + + Teledos + Las noticias más recientes y relevantes del acontecer diario, y las notas que destacan la labor de aquellos salvadoreños que luchan todos los días por sacar al país adelante. + News + + + + NotiVOS + Noticiero que presenta una información completa de los sucesos que son noticias en el ámbito social, económico, político, empresarial y cultural de Nicaragua. + News + + + + Deportivos + Un programa para los fanáticos deportivos nicaragüenses, con toda la información deportiva presentada de forma ágil, dinámica, versátil y entretenida. + Sports + Talk Show + + + + Reencuentro + Una forma diferente de viajar por El Salvador. Descubriendo cada rincón de su tierra, caminando por sus calles y caminos para indagar sus secretos, su historia escondida y sus tradiciones ancestrales. + Travel + Performing Arts + + + + Noticiero Guatevisión + Un noticiero ágil, dinámico y responsable que ayuda a despertar la conciencia nacional con toda la información de lo acontecido en Guatemala. + News + + + + Teledos + Las noticias más recientes y relevantes del acontecer diario, y las notas que destacan la labor de aquellos salvadoreños que luchan todos los días por sacar al país adelante. + News + + + + Más que noticias + Noticiero de Costa Rica que cada día indaga mediante reportajes a personalidades y empresas únicas, con historias extraordinarias e inolvidables. + News + + + + Telenoticias + Espacio informativo con reportes de la actualidad nacional e internacional, deportes y espectáculos. El resumen de noticias más prestigioso de Costa Rica. + News + + + + Noticiero Guatevisión + Un noticiero ágil, dinámico y responsable que ayuda a despertar la conciencia nacional con toda la información de lo acontecido en Guatemala. + News + + + + Hoy mismo estelar + Un noticiero dinámico, completo y actualizado presentado por un equipo de periodistas que llega a la noticia, satisfaciendo las necesidades informativas de los televidentes. + News + + + + El noticiero + Noticias con lo más importante ocurrido en El Salvador y el mundo. Un equipo de periodistas cubre de forma objetiva todas las informaciones de interés para la comunidad. + News + + + + Noticias 4Visión + Los sucesos y hechos más impresionantes, reportajes conmovedores y los casos que otros no se animan a contar. + News + + + + El noticiero + Noticias con lo más importante ocurrido en El Salvador y el mundo. Un equipo de periodistas cubre de forma objetiva todas las informaciones de interés para la comunidad. + News + + + + Noticias 4Visión + Los sucesos y hechos más impresionantes, reportajes conmovedores y los casos que otros no se animan a contar. + News + + + + NotiVOS + Noticiero que presenta una información completa de los sucesos que son noticias en el ámbito social, económico, político, empresarial y cultural de Nicaragua. + News + + + + Deportivos + Un programa para los fanáticos deportivos nicaragüenses, con toda la información deportiva presentada de forma ágil, dinámica, versátil y entretenida. + Sports + Talk Show + + + + Telenoticias + Espacio informativo con reportes de la actualidad nacional e internacional, deportes y espectáculos. El resumen de noticias más prestigioso de Costa Rica. + News + + + + Noticiero Guatevisión + Un noticiero ágil, dinámico y responsable que ayuda a despertar la conciencia nacional con toda la información de lo acontecido en Guatemala. + News + + + + Hoy mismo estelar + Un noticiero dinámico, completo y actualizado presentado por un equipo de periodistas que llega a la noticia, satisfaciendo las necesidades informativas de los televidentes. + News + + + + Noticiero Telemetro + Un programa con las noticias más relevantes y acontecimientos actuales que se producen en la jornada. Un equipo de reporteros brinda información veraz y objetiva del acontecer nacional e internacional. + News + + + + Noticias El Salvador + Un espacio en el que se brindan noticias de actualidad. + News + + + + Viva la mañana + Un programa dinámico y analítico que ofrece las noticias más importantes, además de segmentos útiles e interesantes. + News + + + + Noticias El Salvador + Un espacio en el que se brindan noticias de actualidad. + News + + + + Frente a frente + Espacio de discusión y análisis donde protagonistas de la vida pública discuten los temas más importantes del momento. Debates vitales que ayudan a la apertura y democratización en El Salvador. + News + Discussion + + + + Hoy mismo estelar + Un noticiero dinámico, completo y actualizado presentado por un equipo de periodistas que llega a la noticia, satisfaciendo las necesidades informativas de los televidentes. + News + + + + Teledos + Las noticias más recientes y relevantes del acontecer diario, y las notas que destacan la labor de aquellos salvadoreños que luchan todos los días por sacar al país adelante. + News + + + + NotiVOS + Noticiero que presenta una información completa de los sucesos que son noticias en el ámbito social, económico, político, empresarial y cultural de Nicaragua. + News + + + + Deportivos + Un programa para los fanáticos deportivos nicaragüenses, con toda la información deportiva presentada de forma ágil, dinámica, versátil y entretenida. + Sports + Talk Show + + + + Hola El Salvador USA + Un programa dedicado a difundir y promover la cultura, tradiciones y raíces de la comunidad salvadoreña. Un recorrido a los pueblos, ciudades, a la belleza y riquezas con las que cuenta el corazón de Centroamérica. + Travel + Performing Arts + + + + Noticiero Guatevisión + Un noticiero ágil, dinámico y responsable que ayuda a despertar la conciencia nacional con toda la información de lo acontecido en Guatemala. + News + + + + Teledos + Las noticias más recientes y relevantes del acontecer diario, y las notas que destacan la labor de aquellos salvadoreños que luchan todos los días por sacar al país adelante. + News + + + + Más que noticias + Noticiero de Costa Rica que cada día indaga mediante reportajes a personalidades y empresas únicas, con historias extraordinarias e inolvidables. + News + + + + 72 horas para morir + Una guerra sangrienta se libra entre el Texano y el Tony para controlar la expansión de el cartel, cuando, de repente, un ataque terrorista impregna el aire de la ciudad de una sustancia química muy poderosa. + + Wences Romo + Alejandro Zent + Mario Miranda + + 2016 + Movies + Action + + + + El cartel de Víctor Flores + Víctor Flores es un inmigrante que llega a Estados Unidos lleno de sueños, los cuales se ven frustrados desde el momento de cruzar la frontera como ilegal, ya que tiene que enfrentarse a un pollero que trata de robarle su dinero. + + Victor Flores + John Solís + Valentín Trujillo Jr. + + 2016 + Movies + Action + + + + Empoderada + Alondra es una mujer enamorada de su esposo, pero una infidelidad y las actitudes que él tiene con ella la hacen tomar una decisión muy difícil: dejarlo definitivamente. Sin embargo, esto no será fácil, ya que José Alberto la considera su propiedad. + + Margarita Villa + Baltazar Álvarez + Tamara Alcantara + + 2022 + Movies + Drama + + + + Los elegidos del terror + Un hombre regresa del mundo de los muertos para vengarse de su esposa, quien lo asesinó con conjuros y magia. + + Carlos De La Mora + Ana Jiménez + Bonifacio Jaimez + + Movies + Horror + + + + Los elegidos del terror + Un hombre regresa del mundo de los muertos para vengarse de su esposa, quien lo asesinó con conjuros y magia. + + Carlos De La Mora + Ana Jiménez + Bonifacio Jaimez + + Movies + Horror + + + + La venganza de un comando + Un comando de guerrilleros comete una masacre, pero culpan a un militar de ser el culpable. Perseguido por los criminales y por el propio Ejército, el soldado tendrá que sobrevivir y demostrar que es inocente. + + Max Hernández Jr. + Evelyn Romero + José Reyes + + 2017 + Movies + Action + + + + María Navajas 3 + Un hombre escapa de la cárcel para planear el rescate de su hermana quien ha sido secuestrada por un peligroso narcotraficante. + + Cecilia Ponce + Anna Cepinska + Guillermo Iván + + 2008 + Movies + Action + + + + Empoderada + Alondra es una mujer enamorada de su esposo, pero una infidelidad y las actitudes que él tiene con ella la hacen tomar una decisión muy difícil: dejarlo definitivamente. Sin embargo, esto no será fácil, ya que José Alberto la considera su propiedad. + + Margarita Villa + Baltazar Álvarez + Tamara Alcantara + + 2022 + Movies + Drama + + + + La venganza del campesino + Pancracio, un humilde campesino, contrae una deuda con Vicente, un poderoso y arbitrario terrateniente. Sus hombres son enviados para despojarlo de sus fértiles tierras y las hostilidades se tornan cada vez más violentas. + + Javier Siria + Daniel Infante + Angel Reyna + + 2021 + Movies + Action + + + + Se suicidó un asesino + Un policía dedicado a su trabajo es encargado de traer a la Justicia a su propio padre, un narcotraficante. + + Roberto Guzmán + Arturo Martinez Jr. + Fernando Saenz + + Movies + Action + + + + La venganza del vaquero + Guadalupe Bojórquez es propietaria de un terreno donde se dice que un cargamento de plata fue enterrado por indios hace muchos años atrás. El ambicioso Antonio y su despiadado hijo intentan quedarse con el botín. + + Jorge Aldama + Alejandro Aldama + Pilar Bojórquez + + 2021 + Movies + Action + + + + Cita con la muerte + El médico de un puerto lucha contra la drogadicción, y llama a un periodista para que descubra a los narcotraficantes. + + Carmen Montejo + Fernando Fernández + Rodolfo Landa + + 1948 + Movies + Drama + + + + Refugio mariscal + Un campesino honesto y trabajador organiza un levantamiento de armas en contra de Demetrio, el hacendado ma´s poderoso de El Salitre, y promete restaurar la paz. + + Valentín Trujillo Jr. + Estrella Almada + Moisés Cardez + + 2018 + Movies + Action + + + + Empoderada + Alondra es una mujer enamorada de su esposo, pero una infidelidad y las actitudes que él tiene con ella la hacen tomar una decisión muy difícil: dejarlo definitivamente. Sin embargo, esto no será fácil, ya que José Alberto la considera su propiedad. + + Margarita Villa + Baltazar Álvarez + Tamara Alcantara + + 2022 + Movies + Drama + + + + La venganza del campesino + Pancracio, un humilde campesino, contrae una deuda con Vicente, un poderoso y arbitrario terrateniente. Sus hombres son enviados para despojarlo de sus fértiles tierras y las hostilidades se tornan cada vez más violentas. + + Javier Siria + Daniel Infante + Angel Reyna + + 2021 + Movies + Action + + + + Se suicidó un asesino + Un policía dedicado a su trabajo es encargado de traer a la Justicia a su propio padre, un narcotraficante. + + Roberto Guzmán + Arturo Martinez Jr. + Fernando Saenz + + Movies + Action + + + + La venganza del vaquero + Guadalupe Bojórquez es propietaria de un terreno donde se dice que un cargamento de plata fue enterrado por indios hace muchos años atrás. El ambicioso Antonio y su despiadado hijo intentan quedarse con el botín. + + Jorge Aldama + Alejandro Aldama + Pilar Bojórquez + + 2021 + Movies + Action + + + + Cita con la muerte + El médico de un puerto lucha contra la drogadicción, y llama a un periodista para que descubra a los narcotraficantes. + + Carmen Montejo + Fernando Fernández + Rodolfo Landa + + 1948 + Movies + Drama + + + + Refugio mariscal + Un campesino honesto y trabajador organiza un levantamiento de armas en contra de Demetrio, el hacendado ma´s poderoso de El Salitre, y promete restaurar la paz. + + Valentín Trujillo Jr. + Estrella Almada + Moisés Cardez + + 2018 + Movies + Action + + + + Empoderada + Alondra es una mujer enamorada de su esposo, pero una infidelidad y las actitudes que él tiene con ella la hacen tomar una decisión muy difícil: dejarlo definitivamente. Sin embargo, esto no será fácil, ya que José Alberto la considera su propiedad. + + Margarita Villa + Baltazar Álvarez + Tamara Alcantara + + 2022 + Movies + Drama + + + + La venganza del campesino + Pancracio, un humilde campesino, contrae una deuda con Vicente, un poderoso y arbitrario terrateniente. Sus hombres son enviados para despojarlo de sus fértiles tierras y las hostilidades se tornan cada vez más violentas. + + Javier Siria + Daniel Infante + Angel Reyna + + 2021 + Movies + Action + + + + La venganza del campesino + Pancracio, un humilde campesino, contrae una deuda con Vicente, un poderoso y arbitrario terrateniente. Sus hombres son enviados para despojarlo de sus fértiles tierras y las hostilidades se tornan cada vez más violentas. + + Javier Siria + Daniel Infante + Angel Reyna + + 2021 + Movies + Action + + + + Se suicidó un asesino + Un policía dedicado a su trabajo es encargado de traer a la Justicia a su propio padre, un narcotraficante. + + Roberto Guzmán + Arturo Martinez Jr. + Fernando Saenz + + Movies + Action + + + + La venganza del vaquero + Guadalupe Bojórquez es propietaria de un terreno donde se dice que un cargamento de plata fue enterrado por indios hace muchos años atrás. El ambicioso Antonio y su despiadado hijo intentan quedarse con el botín. + + Jorge Aldama + Alejandro Aldama + Pilar Bojórquez + + 2021 + Movies + Action + + + + Cita con la muerte + El médico de un puerto lucha contra la drogadicción, y llama a un periodista para que descubra a los narcotraficantes. + + Carmen Montejo + Fernando Fernández + Rodolfo Landa + + 1948 + Movies + Drama + + + + Refugio mariscal + Un campesino honesto y trabajador organiza un levantamiento de armas en contra de Demetrio, el hacendado ma´s poderoso de El Salitre, y promete restaurar la paz. + + Valentín Trujillo Jr. + Estrella Almada + Moisés Cardez + + 2018 + Movies + Action + + + + Los tres gallos michoacanos 2 + Para tener el control de Texas, el capo más peligroso del estado, apodado el Halcón Negro, secuestra y asesina a uno de los tres gallos michoacanos, lo que desata una guerra sangrienta. + + Raúl González + Gregorio Cortez + Flavio Peniche + + 2015 + Movies + Action + + + + Texas huele a sangre + Diego, un sheriff retirado, disfruta sus días tranquilos en el pequeño pueblo de McAllen, Texas. Sin embargo, un viejo enemigo y una cuenta pendiente aparecen. + + Leonardo Daniel + Leslie González + Manuel González + + 2019 + Movies + Western + + + + Atrapados + Tres estudiantes de psicología pasan las noches en una escuela habitada por un demonio y quedan atrapados sin ninguna salida. + + Juan Manuel Concha + Fuensanta Valdez + + 2011 + Movies + Horror + + + + 7 mujeres, un homosexual y Carlos + Un joven de 21 años debe descubrir si el matrimonio y la fidelidad están pasados de moda luego del embarazo de su novia. + + Mauricio Ochmann + Adriana Fonseca + Ninel Conde + + 2004 + Movies + Romance + + + + Predicción fatal + El tarot le dice a Manuel que será el causante de la muerte de Acrisio, su suegro y un político inescrupuloso. Ahora debe correr por su vida mientras busca la manera de liberar a su amada. + + Diego Medrano + Thalía Pok + Lorna Jiménez + + 2019 + Movies + Thriller + + + + El Diputeibol + Tres historias en torno a los centros nocturnos en los que bailan chicas nudistas, la de un diputado, un campesino y un ferviente devoto religioso dueño de uno de estos negocios. + + Carlos Benavides + Irene Arcila + + Movies + Comedy + + + + Los tres gallos michoacanos 2 + Para tener el control de Texas, el capo más peligroso del estado, apodado el Halcón Negro, secuestra y asesina a uno de los tres gallos michoacanos, lo que desata una guerra sangrienta. + + Raúl González + Gregorio Cortez + Flavio Peniche + + 2015 + Movies + Action + + + + Texas huele a sangre + Diego, un sheriff retirado, disfruta sus días tranquilos en el pequeño pueblo de McAllen, Texas. Sin embargo, un viejo enemigo y una cuenta pendiente aparecen. + + Leonardo Daniel + Leslie González + Manuel González + + 2019 + Movies + Western + + + + Atrapados + Tres estudiantes de psicología pasan las noches en una escuela habitada por un demonio y quedan atrapados sin ninguna salida. + + Juan Manuel Concha + Fuensanta Valdez + + 2011 + Movies + Horror + + + + 7 mujeres, un homosexual y Carlos + Un joven de 21 años debe descubrir si el matrimonio y la fidelidad están pasados de moda luego del embarazo de su novia. + + Mauricio Ochmann + Adriana Fonseca + Ninel Conde + + 2004 + Movies + Romance + + + + Predicción fatal + El tarot le dice a Manuel que será el causante de la muerte de Acrisio, su suegro y un político inescrupuloso. Ahora debe correr por su vida mientras busca la manera de liberar a su amada. + + Diego Medrano + Thalía Pok + Lorna Jiménez + + 2019 + Movies + Thriller + + + + El Diputeibol + Tres historias en torno a los centros nocturnos en los que bailan chicas nudistas, la de un diputado, un campesino y un ferviente devoto religioso dueño de uno de estos negocios. + + Carlos Benavides + Irene Arcila + + Movies + Comedy + + + + Los tres gallos michoacanos 2 + Para tener el control de Texas, el capo más peligroso del estado, apodado el Halcón Negro, secuestra y asesina a uno de los tres gallos michoacanos, lo que desata una guerra sangrienta. + + Raúl González + Gregorio Cortez + Flavio Peniche + + 2015 + Movies + Action + + + + Texas huele a sangre + Diego, un sheriff retirado, disfruta sus días tranquilos en el pequeño pueblo de McAllen, Texas. Sin embargo, un viejo enemigo y una cuenta pendiente aparecen. + + Leonardo Daniel + Leslie González + Manuel González + + 2019 + Movies + Western + + + + Texas huele a sangre + Diego, un sheriff retirado, disfruta sus días tranquilos en el pequeño pueblo de McAllen, Texas. Sin embargo, un viejo enemigo y una cuenta pendiente aparecen. + + Leonardo Daniel + Leslie González + Manuel González + + 2019 + Movies + Western + + + + Atrapados + Tres estudiantes de psicología pasan las noches en una escuela habitada por un demonio y quedan atrapados sin ninguna salida. + + Juan Manuel Concha + Fuensanta Valdez + + 2011 + Movies + Horror + + + + 7 mujeres, un homosexual y Carlos + Un joven de 21 años debe descubrir si el matrimonio y la fidelidad están pasados de moda luego del embarazo de su novia. + + Mauricio Ochmann + Adriana Fonseca + Ninel Conde + + 2004 + Movies + Romance + + + + Predicción fatal + El tarot le dice a Manuel que será el causante de la muerte de Acrisio, su suegro y un político inescrupuloso. Ahora debe correr por su vida mientras busca la manera de liberar a su amada. + + Diego Medrano + Thalía Pok + Lorna Jiménez + + 2019 + Movies + Thriller + + + + La Cueva de los Secretos + La vida de un escritor en busca del éxito cambia cuando se enfrenta a un famoso autor que está por publicar un libro con el mismo titulo que su novela. + + Beto Giraldo + Jorge Consejo + + 2008 + Movies + Thriller + + + + Texas huele a sangre + Diego, un sheriff retirado, disfruta sus días tranquilos en el pequeño pueblo de McAllen, Texas. Sin embargo, un viejo enemigo y una cuenta pendiente aparecen. + + Leonardo Daniel + Leslie González + Manuel González + + 2019 + Movies + Western + + + + Noches de cartas + Un grupo de narcotraficantes decide darse una tregua durante un juego de cartas, sin imaginarse el infame destino para uno de ellos. + + Luis Huizar + Vianey Huizar + Chuy Valencia + + 2018 + Movies + Drama + + + + Frontera Texas 1848 + Una familia de rancheros mexicanos sufre terribles agresiones de quienes reclaman un territorio durante la guerra contra Estados Unidos en 1848. + + Ricardo Cárdenas + Alonso López + Jorge Quiñones + + 2020 + Movies + Western + + + + Traición al contrabando + Una narcotraficante en una osada maniobra traiciona a su patrón, robándole 4 millones de dólares. + 2022 + Movies + Drama + + + + Ovnis vs. Narcos + Dos policías algo corruptos, ignorantes y vagos quieren ascender, pero su jefe no accede. Entonces, ellos inventan que un chupacabras extraterrestre está delinquiendo en el pueblo y violando mujeres. + + Verónica Alvarez + Luis Felipe Montoya + Brenda Castro + + 2015 + Movies + Comedy + + + + La Cueva de los Secretos + La vida de un escritor en busca del éxito cambia cuando se enfrenta a un famoso autor que está por publicar un libro con el mismo titulo que su novela. + + Beto Giraldo + Jorge Consejo + + 2008 + Movies + Thriller + + + + Noches de cartas + Un grupo de narcotraficantes decide darse una tregua durante un juego de cartas, sin imaginarse el infame destino para uno de ellos. + + Luis Huizar + Vianey Huizar + Chuy Valencia + + 2018 + Movies + Drama + + + + Frontera Texas 1848 + Una familia de rancheros mexicanos sufre terribles agresiones de quienes reclaman un territorio durante la guerra contra Estados Unidos en 1848. + + Ricardo Cárdenas + Alonso López + Jorge Quiñones + + 2020 + Movies + Western + + + + Traición al contrabando + Una narcotraficante en una osada maniobra traiciona a su patrón, robándole 4 millones de dólares. + 2022 + Movies + Drama + + + + Ovnis vs. Narcos + Dos policías algo corruptos, ignorantes y vagos quieren ascender, pero su jefe no accede. Entonces, ellos inventan que un chupacabras extraterrestre está delinquiendo en el pueblo y violando mujeres. + + Verónica Alvarez + Luis Felipe Montoya + Brenda Castro + + 2015 + Movies + Comedy + + + + La Cueva de los Secretos + La vida de un escritor en busca del éxito cambia cuando se enfrenta a un famoso autor que está por publicar un libro con el mismo titulo que su novela. + + Beto Giraldo + Jorge Consejo + + 2008 + Movies + Thriller + + + + Noches de cartas + Un grupo de narcotraficantes decide darse una tregua durante un juego de cartas, sin imaginarse el infame destino para uno de ellos. + + Luis Huizar + Vianey Huizar + Chuy Valencia + + 2018 + Movies + Drama + + + + Noches de cartas + Un grupo de narcotraficantes decide darse una tregua durante un juego de cartas, sin imaginarse el infame destino para uno de ellos. + + Luis Huizar + Vianey Huizar + Chuy Valencia + + 2018 + Movies + Drama + + + + Frontera Texas 1848 + Una familia de rancheros mexicanos sufre terribles agresiones de quienes reclaman un territorio durante la guerra contra Estados Unidos en 1848. + + Ricardo Cárdenas + Alonso López + Jorge Quiñones + + 2020 + Movies + Western + + + + Traición al contrabando + Una narcotraficante en una osada maniobra traiciona a su patrón, robándole 4 millones de dólares. + 2022 + Movies + Drama + + + + Ovnis vs. Narcos + Dos policías algo corruptos, ignorantes y vagos quieren ascender, pero su jefe no accede. Entonces, ellos inventan que un chupacabras extraterrestre está delinquiendo en el pueblo y violando mujeres. + + Verónica Alvarez + Luis Felipe Montoya + Brenda Castro + + 2015 + Movies + Comedy + + + + Ciudad perdida + Un recién nacido queda oculto en un barrio pobre, donde lo protegen de un perverso rufián que ha robado la fortuna de sus padres y pretende deshacerse del legítimo heredero. + + Martha Roth + Roberto Romaña + Esperanza Issa + + 1950 + Movies + Drama + + + + Regresando a mis raíces + Padres mexicanos arriesgan todo para darle una mejor vida a su hijo en Estados Unidos, pero el joven, mal influenciado, actúa como quien olvida sus raíces y los valores que le fueron inculcados. + + Rey Cantu + Armando Infante + Andul Zambrano + + 2021 + Movies + Drama + + + + Traición y venganza + El narcotraficante más poderoso de la región es traicionado por una de sus compañeras, pero este, en forma de venganza, secuestra a la hija de la traidora, por lo que el comandante entra en acción y, así, el lugar se convierte en tierra caliente. + + Carlos De La Mora + Ana Jiménez + Adilene Ramos + + 2023 + Movies + Action + + + + Genio + Tlatzo es un niño que posee un talento innato para tocar el piano, pero los adultos utilizan su don para sus propios intereses. + + Esperanza Camacho + Josá Ángel Cuevas + Francisco Devero + + 2019 + Movies + + + + Leviatán: El juego de la muerte + Ocho amigos y un juego maldito en el que todas las almas de los participantes deberán ser ofrecidas. Enfrentarán a sus peores fantasmas y demonios personales. Solo una persona justa y honesta podrá salir bien librada de esta siniestra partida. + + Fabián López + Michael Viván + Brenda Corro + + 2018 + Movies + Horror + + + + Huyendo del infierno + Un hombre muy pobre se ve forzado a dejar a su familia para buscar trabajo. Sin saber lo que le depara la suerte, se adentra en un laberinto oscuro del que le costará lágrimas de sangre poder salir. + + John Solís + Reynaldo Huerta + Olga Ramírez + + 2015 + Movies + + + + Ciudad perdida + Un recién nacido queda oculto en un barrio pobre, donde lo protegen de un perverso rufián que ha robado la fortuna de sus padres y pretende deshacerse del legítimo heredero. + + Martha Roth + Roberto Romaña + Esperanza Issa + + 1950 + Movies + Drama + + + + Regresando a mis raíces + Padres mexicanos arriesgan todo para darle una mejor vida a su hijo en Estados Unidos, pero el joven, mal influenciado, actúa como quien olvida sus raíces y los valores que le fueron inculcados. + + Rey Cantu + Armando Infante + Andul Zambrano + + 2021 + Movies + Drama + + + + Traición y venganza + El narcotraficante más poderoso de la región es traicionado por una de sus compañeras, pero este, en forma de venganza, secuestra a la hija de la traidora, por lo que el comandante entra en acción y, así, el lugar se convierte en tierra caliente. + + Carlos De La Mora + Ana Jiménez + Adilene Ramos + + 2023 + Movies + Action + + + + Genio + Tlatzo es un niño que posee un talento innato para tocar el piano, pero los adultos utilizan su don para sus propios intereses. + + Esperanza Camacho + Josá Ángel Cuevas + Francisco Devero + + 2019 + Movies + + + + No eres tú, soy yo + Los recuerdos de su primera esposa mandan a un hombre a través de una montaña rusa emocional mientras intenta encontrar nuevamente el amor. + + Eugenio Derbez + Alejandra Barros + Martina García + + 2010 + Movies + Romance + + + 2 + + + + Mariachi gringo + Edward, un apasionado por la música mexicana, se siente atrapado en la rutina de la pequeña ciudad donde reside. Con el propósito de huir de todo, Edward se muda a México para convertirse en un mariachi. + + Shawn Ashmore + Martha Higareda + Kate Burton + + 2012 + Movies + Romance + + + 2 + + + + Fragmentos de amor + Una mujer le cuenta las historias de amor de sus parejas anteriores a su novio actual, y él se convierte en uno de esos fragmentos de amor. + + Laura Aleman + Angélica Aragón + Angélica Blandón + + 2016 + Movies + Drama + + + + Fragmentos de amor + Una mujer le cuenta las historias de amor de sus parejas anteriores a su novio actual, y él se convierte en uno de esos fragmentos de amor. + + Laura Aleman + Angélica Aragón + Angélica Blandón + + 2016 + Movies + Drama + + + + Sol de medianoche + Un detective especializado en casos de adulterio sufre un flagelo por la muerte de su hermano. + + Ana Isabelle + Laura Aleman + Julitza Berberena + + 2017 + Movies + Drama + + + + Te juro que yo no fui + Un talentoso músico se involucra por accidente con una seductora mujer, a quien ayuda a escapar de dos ladrones que buscan un diamante. + + Mauricio Ochmann + Marta Hazas + Ariadne Díaz + + 2018 + Movies + Comedy + + + + Ya veremos + Un niño hace una lista de lugares para visitar y cosas para ver, después de enterarse de que podría perder la vista. Para cumplir sus sueños, sus padres distanciados acuerdan reunirse y llevar a su hijo a un viaje lleno de aventureras. + + Mauricio Ochmann + Fernanda Castillo + Erik Hayser + + 2018 + Movies + Comedy + Drama + + + + Hijos de su madre + Día de entrenamiento + Cansado del maltrato de Chema, Freddy decide hacer algo al respecto. Además, Germán decide ayudar a su medio hermano y lo somete a un entrenamiento arduo para darle celos a su jefe. + + Nora Velázquez + Freddy Ortega + Germán Ortega + + Comedy + + + + Los Rodríguez y el más allá + Los Rodríguez viven como una familia normal hasta que descubren que el difunto abuelo era literalmente de otro planeta y que, además, ocultaba en su casa un portal dimensional que lleva a su mundo. + + Edu Soto + Mariana Treviño + Geraldine Chaplin + + 2019 + Movies + Comedy + + + + Las niñas bien + Una mujer perteneciente a la alta sociedad y su esposo deben lidiar con la crisis económica que afectó a México durante 1982. + + Ilse Salas + Flavio Medina + Cassandra Ciangherotti + + 2018 + Movies + Drama + + + + Prometo no enamorarme + Iván y Julieta se conocen mientras ella espera a Daniel, su marido, con quien pretende revivir una historia de amor. Pero Daniel no llega a la cita y Julieta convive con Iván durante 24 horas, tiempo suficiente para que él se enamore de ella. + + Alfonso Dosal + Pedro De Tavira + Natalia Varela + + 2016 + Movies + Drama + + + + Loca por el trabajo + Una exitosa ejecutiva es adicta al trabajo y antepone su empresa a su familia, hasta que un día pierde todo lo que tiene por una confusión. + + Bárbara de Regil + Adriana Barraza + Alberto Guerra + + 2018 + Movies + Comedy + + + + La promesa + Leo es un niño rebelde e inteligente que, a pesar de su comportamiento, tiene un talento que lo distingue de los demás alumnos. Sus seres queridos le muestran a Leo un mundo que descubrirá a través de sus enseñanzas. + + Rafael Inclán + Lumi Cavazos + Alessio Valentini + + 2018 + Movies + Drama + + + + Cómo cortar a tu patán + Una especialista en separación de parejas, reconocida por construir elaboradas escenas, es contratada por una mujer. + + Mariana Treviño + Camila Sodi + Marianna Burelli + + 2017 + Movies + Comedy + + + + A la mala + Después de que su mejor amiga la contrata para poner a prueba la fidelidad de su pareja, una joven encuentra una nueva carrera lucrativa. Pero los problemas se presentan cuando ella se enamora de la persona que vigila. + + Aislinn Derbez + Mauricio Ochmann + Aurora Papile + + 2015 + Movies + Romance + + + 2 + + + + Dulce obsesión + Cuando una estudiante se muda con una familia a la Ciudad de México, un romance con el padre, un vínculo con la hija y la tensión con la madre conducen a un secreto que sacudirá a la familia. + + Regina Pavón + María Elisa Camargo + Andrés Palacios + + 2021 + Movies + Drama + + + + Dulce obsesión + Cuando una estudiante se muda con una familia a la Ciudad de México, un romance con el padre, un vínculo con la hija y la tensión con la madre conducen a un secreto que sacudirá a la familia. + + Regina Pavón + María Elisa Camargo + Andrés Palacios + + 2021 + Movies + Drama + + + + Cinderelo + Un hombre cree que debe dejar de ser quien es para conseguir a la mujer de sus sueños, pero la vida le mostrará que el verdadero amor estaba donde menos lo imaginó. + + William Levy + Joaquín Cosio + Hans Martínez + + 2017 + Movies + Comedy + + + + Una fiesta inolvidable + Unos jóvenes deciden hacer una fiesta en la casa donde años atrás una mujer se suicidó. Lo que no saben es que, en la misma fiesta, la hija de esa mujer inicia un plan de venganza contra los hijos de los hombres que provocaron el suicido de su madre. + + Christian Alvarez + Ivan Aybar + Virginia Del Sol + + 2019 + Movies + Thriller + + + + Laugh Factory en español + Presentaciones de stand up en las que se reúnen los mejores comediantes de habla hispana. + Comedy + + + + A la mala + Después de que su mejor amiga la contrata para poner a prueba la fidelidad de su pareja, una joven encuentra una nueva carrera lucrativa. Pero los problemas se presentan cuando ella se enamora de la persona que vigila. + + Aislinn Derbez + Mauricio Ochmann + Aurora Papile + + 2015 + Movies + Romance + + + 2 + + + + La Liga de los 5 + Chema les pide a la Liga de los 5 que le ayuden a rescatar a su hermana, secuestrada por un villano. ¿Qué es la Liga de los 5? ¡El mejor equipo de superhéroes que jamás haya existido en México! + + Regina Blandón + Mario Iván Martínez + José Ángel Torres + + 2020 + Movies + Animated + + + + La promesa + Leo es un niño rebelde e inteligente que, a pesar de su comportamiento, tiene un talento que lo distingue de los demás alumnos. Sus seres queridos le muestran a Leo un mundo que descubrirá a través de sus enseñanzas. + + Rafael Inclán + Lumi Cavazos + Alessio Valentini + + 2018 + Movies + Drama + + + + La garra del Guaraguao + Dos primos se disputan el amor de la misma mujer. La abuela se cierne a su fe religiosa para mantener unida la familia ante la ola criminal que los arropa. + + Carlos Esteban Fonseca + Jorge Luis Ramos + Roxana Badillo + + 2021 + Movies + Drama + + + + Olimpia + Un niño de ocho años encuentra en su casa un libro emblemático del movimiento estudiantil de 1968 que contiene algunas páginas con imágenes. + + Daniel Mandoki + Nicolasa Ortíz Monasterio + Luis Curiel + + 2018 + Movies + Thriller + + + + Recuperando a mi ex + Francisco, un actor inmaduro y egoísta que vive atrapado por la fama de un antiguo personaje, se entera de que Laura, su exesposa, va a casarse, irse a vivir al extranjero y llevarse a su hija. Francisco intentará arruinar la boda. + + Norma Angélica + Jan Cornet + Andrés Almeida + + 2018 + Movies + Comedy + + + + Las niñas bien + Una mujer perteneciente a la alta sociedad y su esposo deben lidiar con la crisis económica que afectó a México durante 1982. + + Ilse Salas + Flavio Medina + Cassandra Ciangherotti + + 2018 + Movies + Drama + + + + El club de los idealistas + La historia de un grupo de amigos de la universidad que se reúnen tras muchos años para inaugurar la casa de campo donde planearon retirarse juntos. + + Juan Pablo Medina + Giselle Kuri + Nailea Norvind + + 2020 + Movies + Comedy + Drama + + + + Paraíso perdido + Unas vacaciones en el Caribe se tornan mortales para tres buenos amigos cuando deciden explorar una isla desierta. + + Ana Claudia Talancón + Iván Sánchez + Andrés Almeida + + 2016 + Movies + Thriller + + + + Dulce obsesión + Cuando una estudiante se muda con una familia a la Ciudad de México, un romance con el padre, un vínculo con la hija y la tensión con la madre conducen a un secreto que sacudirá a la familia. + + Regina Pavón + María Elisa Camargo + Andrés Palacios + + 2021 + Movies + Drama + + + + Dulce obsesión + Cuando una estudiante se muda con una familia a la Ciudad de México, un romance con el padre, un vínculo con la hija y la tensión con la madre conducen a un secreto que sacudirá a la familia. + + Regina Pavón + María Elisa Camargo + Andrés Palacios + + 2021 + Movies + Drama + + + + En brazos de un asesino + Víctor es un sicario que visita la casa de un narcotraficante para cobrar un trabajo. Allí se encuentra con Sarai, una joven que lleva los últimos 9 años secuestrada, e intentará rescatarla de las garras de su captor. + + William Levy + Alicia Sanz + Dalisa Alegría + + 2019 + Movies + Thriller + + + + En brazos de un asesino + Víctor es un sicario que visita la casa de un narcotraficante para cobrar un trabajo. Allí se encuentra con Sarai, una joven que lleva los últimos 9 años secuestrada, e intentará rescatarla de las garras de su captor. + + William Levy + Alicia Sanz + Dalisa Alegría + + 2019 + Movies + Thriller + + + + Tijuana I Love You + Siete complejas historias de amor que, representando cada una un pecado capital, tienen como verdadero protagonista a la ciudad de Tijuana. + + Dino García + Marisol Rivera + Edgar Wuoutto + + 2021 + Movies + Drama + + + + Laugh Factory en español + Presentaciones de stand up en las que se reúnen los mejores comediantes de habla hispana. + Comedy + + + + Paraíso perdido + Unas vacaciones en el Caribe se tornan mortales para tres buenos amigos cuando deciden explorar una isla desierta. + + Ana Claudia Talancón + Iván Sánchez + Andrés Almeida + + 2016 + Movies + Thriller + + + + Hoy + La historia de cuatro conductores, cada uno enfrentando su realidad, en el transcurso de sus carreras. Durante sus viajes afrontan un conflicto que hará cambiar su forma de ver la vida, y juntos hacen frente a 12 años de guerra civil en El Salvador. + + Ariana Chong + Rodrigo Marroquín + Norman Miranda + + 2020 + Movies + Drama + + + + Un filósofo en la arena + Un viaje por carretera para analizar las corridas de toros con el filósofo Francis Wolff, quien investiga esta práctica controvertida que es también su pasión. + + Francisco Blastez + Albert Boadella + Sebastian Castellana + + 2018 + Movies + Docu-Drama + + + + Se Busca + Un hombre huye de su medio ambiente urbano y parte hacia el campo en donde se enamora. + + Anthony Albano + Pat Asanti + Justin Berfield + + 1999 + Movies + Crime Story + + + 2 + + + + Ni tú ni yo + El Halcón Negro era el mejor luchador de su país, pero ahora es la burla de todos al perder la pelea más importante de su carrera, y deberá trabajar con su hermano Gabino para recuperar su prestigio. + + Mauricio Argüelles + César Rodríguez + Bárbara de Regil + + 2018 + Movies + Comedy + + + + Después de ti + Una mujer que no tiene amigas se ve obligada a seguir una lista de instrucciones para superar la muerte de su prometido. La joven conoce a Gil y Matías, quienes la acompañan en sus intentos de hacerse una amiga hasta que conoce a Ana. + + Paulina Dávila + Natalia Téllez + Rodrigo Guirao + + 2021 + Movies + Comedy + + + + Cinco de mayo, la batalla + El general mexicano Ignacio Zaragoza encabeza a unas tropas militares superadas en número y armas para defender la ciudad de Puebla de las fuerzas invasoras francesas. + + Kuno Becker + Angélica Aragón + William Miller + + 2013 + Movies + History + + + + Morenita, el escándalo + Desesperado por salvar a su familia de la amenaza de muerte de un famoso narcotraficante, Mateo Cruz se ve obligado a robar la figura de la Virgen de Guadalupe. Sin embargo, las consecuencias de su acto son demoledoras. + + Horacio Garcia-Rojas + Ignacio López Tarso + Dagoberto Gama + + 2008 + Movies + Action + + + TVG + + + + Bajadores de narcos + Un exmilitar convence a sus vecinos de robar un dinero que pertenece a la mafia. Luego de un tiempo, uno a uno van apareciendo sin vida. + + Hugo Stiglitz + Diana Golden + Toño Infante + + 2000 + Movies + Action + + + + La siembro, cosecho y vendo + Un hombre no solo siembra, sino que además cosecha y vende marihuana. El dinero que obtiene compra hasta al más honesto de los ciudadanos. + + Roberto Guzmán + Manuel Ojeda + Carlos Cardán + + 1998 + Movies + Action + + + + Regreso sangriento + Un hombre regresa a su pueblo natal a cumplir una promesa que hizo de niño, pero encuentra odio y violencia desmedida. + + Fernando Almada + Gerardo Albarrán + Susan León + + 1998 + Movies + Action + + + + Drive-By Chronicles: Sidewayz + Un joven nos lleva a dos mundos separados dentro la misma ciudad. Después de la muerte de sus padres, el joven se queda con su hermano y son criados como huérfanos en una zona peligrosa y de mal ejemplo. + + Alvaro Orlando + Kurt Caceres + David Castaneda + + 2009 + Movies + Drama + + + + Drive-By Chronicles: Sidewayz + Un joven nos lleva a dos mundos separados dentro la misma ciudad. Después de la muerte de sus padres, el joven se queda con su hermano y son criados como huérfanos en una zona peligrosa y de mal ejemplo. + + Alvaro Orlando + Kurt Caceres + David Castaneda + + 2009 + Movies + Drama + + + + Reinas de la calle + Tres mujeres buscan vengar a una amiga que fue brutalmente golpeada por su novio, un líder pandillero muy poderoso en su ciudad. + + Donnabella Mortel + June Marie Sparagna + Arden Cho + + 2008 + Movies + Action + + + 1 + + + + Laugh Factory en español + Presentaciones de stand up en las que se reúnen los mejores comediantes de habla hispana. + Comedy + + + + Morenita, el escándalo + Desesperado por salvar a su familia de la amenaza de muerte de un famoso narcotraficante, Mateo Cruz se ve obligado a robar la figura de la Virgen de Guadalupe. Sin embargo, las consecuencias de su acto son demoledoras. + + Horacio Garcia-Rojas + Ignacio López Tarso + Dagoberto Gama + + 2008 + Movies + Action + + + TVG + + + + Después de ti + Una mujer que no tiene amigas se ve obligada a seguir una lista de instrucciones para superar la muerte de su prometido. La joven conoce a Gil y Matías, quienes la acompañan en sus intentos de hacerse una amiga hasta que conoce a Ana. + + Paulina Dávila + Natalia Téllez + Rodrigo Guirao + + 2021 + Movies + Comedy + + + + La última gira + El legendario cantante Daniel Santos vive en Ocala, Florida, y prepara su biografía con Secre, un joven periodista. El recuerdo de glorias pasadas hace que Daniel se embarque en una aventura más: una gira de países de Sur América. + + Isel Rodríguez + Ektor Rivera + Carlos Rivera Marchand + + 2021 + Movies + Drama + + + + Chiapas el corazón del café + Un aventurero inglés, y su joven esposa llegan al Soconusco Chiapaneco. Ahí buscan cumplir su sueño de prosperidad y convertirse en los primeros productores de café en la zona. + + Jaime Camil + Carmen Aub + Hugo Speer + + 2012 + Movies + Drama + + + + Los adioses + Rosario Castellanos es una estudiante universitaria introvertida que no parece pertenecer a su tiempo. A principios de la década de 1950, en Ciudad de México, Rosario lucha por el movimiento feminista. + + Karina Gidi + Daniel Giménez Cacho + Tessa Ía + + 2018 + Movies + Drama + + + + Plan V + Paula se prepara para darle una sorpresa de aniversario a su novio, Chema, un famoso actor. Pero ella descubre que él la engaña con su agente. Paula y sus amigas creen que ella necesita a alguien puro que la valore. + + David Allegre + Agustín Arana + Roberto Beck + + 2018 + Movies + Comedy + + + + Cuando los hijos regresan + Una pareja de jubilados se prepara para defender su casa ante una amenaza impensada: sus hijos adultos vuelven. + + Carmen Maura + Cecilia Suárez + Irene Azuela + + 2017 + Movies + Comedy + + + + Sin hijos + Después de descubrir que el amor de su vida odia a los niños, un padre finge que su hija de 9 años es su hermana. + + Alfonso Dosal + Regina Blandón + Francesca Mercadante + + 2020 + Movies + Comedy + + + + Horrible Bosses 2 + After a shady investor steals their new invention, Nick (Jason Bateman), Dale (Charlie Day) and Kurt (Jason Sudeikis) conspire to kidnap the man's adult son and ransom him to pay off their debts. + + Jason Bateman + Charlie Day + Jason Sudeikis + + 2014 + Movies + Comedy + + + TVPG + + + 2 + + + + I Love You, Man + As a bridegroom's (Paul Rudd) bond with his new best friend (Jason Segel) grows, it threatens his relationship with his fiancee (Rashida Jones). + + Paul Rudd + Jason Segel + Rashida Jones + + 2009 + Movies + Comedy + + + TVPG + + + 3 + + + + Blair Witch + A group of friends (James Allen McCune, Callie Hernandez, Corbin Reid) and their two guides encounter the legendary Blair Witch while exploring the Black Hills Forest in Maryland. + + James Allen McCune + Callie Hernandez + Corbin Reid + + 2016 + Movies + Horror + + + TVPG + + + 2 + + + + Slice + In a spooky small town, when a slew of pizza delivery boys are slain on the job, two daring survivors set out to catch the culprits behind the cryptic crime spree. + + Zazie Beetz + Chance the Rapper + Rae Gray + + 2018 + Movies + Horror + + + + Slice + In a spooky small town, when a slew of pizza delivery boys are slain on the job, two daring survivors set out to catch the culprits behind the cryptic crime spree. + + Zazie Beetz + Chance the Rapper + Rae Gray + + 2018 + Movies + Horror + + + + Road Trip + Friends (Seann William Scott, Breckin Meyer, D.J. Qualls) embark on a lengthy car trip to intercept an illicit videotape mistakenly mailed to one's girlfriend. + + Seann William Scott + Breckin Meyer + D.J. Qualls + + 2000 + Movies + Comedy + + + TVPG + + + 2 + + + + Road Trip: Beer Pong + Andy can't stop thinking about his old high school love, Jenna, who dumped him and went on to become a high-profile beer pong model. When he learns Jenna is on tour, he and a friend decide to go on a road trip to find her. + + Preston Jones + Danny Pudi + Julia Levy-Boeken + + 2009 + Movies + Comedy + + + TVPG + + + 1 + + + + The Pick-Up Artist + A New York playboy (Robert Downey Jr.) finds a way to impress a girl (Molly Ringwald) set on getting her gambling father (Dennis Hopper) out of debt. + + Molly Ringwald + Robert Downey Jr. + Dennis Hopper + + 1987 + Movies + Romance + + + TVG + + + 2 + + + + I Now Pronounce You Chuck and Larry + When bureaucratic red tape prevents him from naming his children as life insurance beneficiaries, a firefighter (Kevin James) asks his buddy (Adam Sandler) to pose as his domestic partner. + + Adam Sandler + Kevin James + Jessica Biel + + 2007 + Movies + Comedy + + + TVPG + + + 1 + + + + The New Guy + In jail, a teenager (D.J. Qualls) meets another inmate who shows him how to act cool at his high school. + + D.J. Qualls + Eliza Dushku + Zooey Deschanel + + 2002 + Movies + Comedy + + + TVG + + + 1 + + + + Fifty Shades Freed + Believing they've left behind the shadowy figures from the past, Christian Grey and his new wife, Anastasia, fully embrace their inextricable connection -- until sinister events start to jeopardize their happy ending before it even begins. + + Dakota Johnson + Jamie Dornan + Eric Johnson + + 2018 + Movies + Romance + + + TV14 + + + 1 + + + + Big Momma's House + To protect a woman (Nia Long) and her son from a robber, a male FBI agent (Martin Lawrence) assumes the guise of a large grandmother. + + Martin Lawrence + Nia Long + Paul Giamatti + + 2000 + Movies + Comedy + + + TVG + + + 2 + + + + Big Momma's House 2 + An FBI agent (Martin Lawrence) reprises his disguise as a corpulent old lady and takes a job as a nanny in a crime suspect's house. + + Martin Lawrence + Nia Long + Emily Procter + + 2006 + Movies + Comedy + + + TVG + + + 1 + + + + The Cold Light of Day + A vacation in Spain turns nightmarish when a man's (Henry Cavill) family is kidnapped by agents who are hell-bent on recovering a mysterious briefcase. + + Henry Cavill + Verónica Echegui + Bruce Willis + + 2012 + Movies + Action + + + TVPG + + + 1 + + + + Moonfall + The world stands on the brink of annihilation when a mysterious force knocks the moon from its orbit and sends it hurtling toward Earth. With only weeks before impact, three unlikely heroes team up for a dangerous mission into space to save humanity. + + Halle Berry + Patrick Wilson + John Bradley + + 2022 + Movies + Sci-Fi + + + TVG + + + 2 + + + + The Dead Don't Die + The citizens of the sleepy little town of Centerville find themselves under attack by flesh-eating zombies when the dead rise from their graves. + + Bill Murray + Adam Driver + Tilda Swinton + + 2019 + Movies + Horror + + + TVPG + + + 2 + + + + Heist + When their attempt to rob a gangster's (Robert De Niro) casino goes awry, a desperate man (Jeffrey Dean Morgan) and his partner (Dave Bautista) hijack a city bus to escape from the police and a maniacal thug (Morris Chestnut). + + Jeffrey Dean Morgan + Robert De Niro + Kate Bosworth + + 2015 + Movies + Action + + + TVPG + + + + Push + A 13-year-old clairvoyant (Dakota Fanning) and the son (Chris Evans) of a murdered assassin join forces against a covert government agency that dabbles in psychic drugs and warfare. + + Chris Evans + Dakota Fanning + Camilla Belle + + 2009 + Movies + Thriller + + + TVG + + + 1 + + + + The Crazies + A lawman (Timothy Olyphant) and his wife (Radha Mitchell) and two companions fight to make it out of town alive after an unknown toxin turns ordinary citizens into bloodthirsty lunatics. + + Timothy Olyphant + Radha Mitchell + Joe Anderson + + 2010 + Movies + Horror + + + TVPG + + + 2 + + + + The Crazies + A lawman (Timothy Olyphant) and his wife (Radha Mitchell) and two companions fight to make it out of town alive after an unknown toxin turns ordinary citizens into bloodthirsty lunatics. + + Timothy Olyphant + Radha Mitchell + Joe Anderson + + 2010 + Movies + Horror + + + TVPG + + + 2 + + + + The Field Guide to Evil + This global anthology of eight narratives explores dark folklore through a series of myths and tales that have captivated, galvanized and frightened communities throughout history. + + Jilon Ghai + Birgit Minichmayr + Fatma Mohamed + + 2018 + Movies + Horror + + + + A Prayer Before Dawn + The amazing true story of Billy Moore, an English boxer incarcerated in Thailand's most notorious prison. Thrown into a world of drugs and violence, he finds his best chance to escape is to fight his way out in Muay Thai tournaments. + + Joe Cole + Billy Moore + Pornchanok Mabklang + + 2017 + Movies + Action + + + 3 + + + + Buffy the Vampire Slayer + Valley girl Buffy (Kristy Swanson) departs from cheerleading to train with her recruiter (Donald Sutherland) for a vampire invasion. + + Kristy Swanson + Luke Perry + Donald Sutherland + + 1992 + Movies + Comedy + + + TVG + + + 1 + + + + My Bodyguard + A shrimpy Chicago teen (Chris Makepeace) hires a big, brooding classmate (Adam Baldwin) to protect him from bullies. + + Chris Makepeace + Adam Baldwin + Martin Mull + + 1980 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Little Black Book + To learn more about his past, a young woman (Brittany Murphy) interviews three of her boyfriend's former sweethearts. + + Brittany Murphy + Holly Hunter + Kathy Bates + + 2004 + Movies + Romance + + + TVG + + + 2 + + + + I Love You, Beth Cooper + A nerdy high-school valedictorian proclaims his love for the hottest girl (Hayden Panettiere) in his school who later goes to his house to give him the night of his life. + + Hayden Panettiere + Paul Rust + Jack T. Capenter + + 2009 + Movies + Comedy + + + TVPG + + + 1 + + + + (500) Days of Summer + After his girlfriend (Zooey Deschanel) dumps him, a greeting-card writer (Joseph Gordon-Levitt) reflects on their 500 days together to try to figure out where their love affair went wrong. + + Joseph Gordon-Levitt + Zooey Deschanel + Geoffrey Arend + + 2009 + Movies + Romance + + + TVG + + + 3 + + + + Prince Avalanche + Two road-crew workers (Paul Rudd, Emile Hirsch) spend the summer of 1988 isolated and away from their city lives, eventually finding themselves at odds with each other and their women back home. + + Paul Rudd + Emile Hirsch + Lance LeGault + + 2013 + Movies + Comedy + Drama + + + TV14 + + + 3 + + + + My Life in Ruins + A travel guide (Nia Vardalos) gains a new perspective on her life as she leads a ragtag group of tourists through her native Greece. + + Nia Vardalos + Richard Dreyfuss + María Adanez + + 2009 + Movies + Romance + + + TVG + + + 2 + + + + Knocked Up + A rising journalist (Katherine Heigl) and an irresponsible slacker (Seth Rogen) ponder their future after a boozy one-night stand results in a pregnancy. + + Seth Rogen + Katherine Heigl + Paul Rudd + + 2007 + Movies + Romance + + + TVPG + + + 3 + + + + Office Space + A computer programmer's (Ron Livingston) hypnosis-induced, lackadaisical attitude about work puts him on the corporate fast-track. + + Ron Livingston + Jennifer Aniston + David Herman + + 1999 + Movies + Comedy + + + TVG + + + 2 + + + + Hustle & Flow + A pimp (Terrence Howard) in Memphis, Tenn., sees rap music as the way to escape his dead-end existence and achieve something meaningful. + + Terrence Howard + Anthony Anderson + Taryn Manning + + 2005 + Movies + Drama + + + TVPG + + + 3 + + + + Killing Me Softly + A woman (Heather Graham) grows suspicious of her controlling husband (Joseph Fiennes) after she discovers secrets about the women in his past. + + Heather Graham + Joseph Fiennes + Natascha McElhone + + 2002 + Movies + Thriller + + + TV14 + + + 1 + + + + Equals + Nia (Kristen Stewart) and Silas (Nicholas Hoult) begin a forbidden and passionate romance in a futuristic society where emotions have been outlawed, leading them to attempt a dangerous escape. + + Kristen Stewart + Nicholas Hoult + Guy Pearce + + 2015 + Movies + Sci-Fi + + + TVG + + + 2 + + + + Equals + Nia (Kristen Stewart) and Silas (Nicholas Hoult) begin a forbidden and passionate romance in a futuristic society where emotions have been outlawed, leading them to attempt a dangerous escape. + + Kristen Stewart + Nicholas Hoult + Guy Pearce + + 2015 + Movies + Sci-Fi + + + TVG + + + 2 + + + + Life After Beth + A guy (Dane DeHaan) discovers that his girlfriend (Aubrey Plaza) has returned from the dead, but his joy turns to horror as she slowly undergoes a horrible transformation. + + Aubrey Plaza + Dane DeHaan + John C. Reilly + + 2014 + Movies + Comedy + + + TVPG + + + 2 + + + + The Missing + In 1885 a woman (Cate Blanchett) must join forces with her estranged father (Tommy Lee Jones) to rescue her kidnapped daughter (Evan Rachel Wood). + + Tommy Lee Jones + Cate Blanchett + Evan Rachel Wood + + 2003 + Movies + Western + + + TVPG + + + 3 + + + + Escape From Alcatraz + Based on the true story of a hardened convict who engineered an elaborate plan to bust out of the famed prison in 1962. + + Clint Eastwood + Patrick McGoohan + Jack Thibeau + + 1979 + Movies + Thriller + + + TVG + + + 3 + + + + Pawn Sacrifice + American chess legend Bobby Fischer (Tobey Maguire) and Soviet Grandmaster Boris Spassky (Liev Schreiber) enthrall the world with their intense battle of wills and strategy during the 1972 World Chess Championship. + + Tobey Maguire + Peter Sarsgaard + Liev Schreiber + + 2014 + Movies + History + + + TVG + + + 3 + + + + Speed Racer + Defying a corrupt business mogul, Speed (Emile Hirsch) enters the same arduous cross-country race that caused his brother's death. + + Emile Hirsch + Christina Ricci + Susan Sarandon + + 2008 + Movies + Action + + + TVG + + + 2 + + + + Slums of Beverly Hills + The niece (Marisa Tomei) of a divorced man (Alan Arkin) helps raise his adolescent daughter (Natasha Lyonne) and two sons on the outskirts of Beverly Hills. + + Natasha Lyonne + Alan Arkin + Marisa Tomei + + 1998 + Movies + Comedy + + + TVPG + + + 2 + + + + Let Me In + A misfit boy (Kodi Smit-McPhee) suspects that his only friend (Chloë Grace Moretz), an eerie child who only appears at night, is hiding a terrible secret. + + Kodi Smit-McPhee + Chloë Grace Moretz + Richard Jenkins + + 2010 + Movies + Horror + + + TVPG + + + 3 + + + + Line of Duty + FBI agents Bobby (Jeremy Ray Valdez) and Julian (Will Rothhaar) infiltrate a drug cartel run by Jason (Walter Perez) and Derek (Joseph Julian Soria), their childhood friends. + + Jeremy Ray Valdez + Will Rothhaar + Walter Perez + + 2013 + Movies + Thriller + + + + Predator + A sneaky alien monster attacks commandos (Arnold Schwarzenegger, Carl Weathers, Jesse Ventura) on a jungle mission in South America. + + Arnold Schwarzenegger + Carl Weathers + Jesse Ventura + + 1987 + Movies + Action + + + TVPG + + + 3 + + + + The Haunting + A parapsychologist (Liam Neeson) and three others stay in a house reputed to be the site of many awful tragedies. + + Liam Neeson + Catherine Zeta-Jones + Owen Wilson + + 1999 + Movies + Horror + + + TVG + + + 1 + + + + Blair Witch + A group of friends (James Allen McCune, Callie Hernandez, Corbin Reid) and their two guides encounter the legendary Blair Witch while exploring the Black Hills Forest in Maryland. + + James Allen McCune + Callie Hernandez + Corbin Reid + + 2016 + Movies + Horror + + + TVPG + + + 2 + + + + Slice + In a spooky small town, when a slew of pizza delivery boys are slain on the job, two daring survivors set out to catch the culprits behind the cryptic crime spree. + + Zazie Beetz + Chance the Rapper + Rae Gray + + 2018 + Movies + Horror + + + + Orphan + A series of alarming events leads a woman (Vera Farmiga) to believe that something evil lurks behind the angelic face of her recently adopted daughter (Isabelle Fuhrman). + + Vera Farmiga + Peter Sarsgaard + Isabelle Fuhrman + + 2009 + Movies + Horror + + + TVPG + + + 2 + + + + Sorority Row + The body count rises as a group of sorority sisters (Briana Evigan, Leah Pipes, Rumer Willis) begin receiving messages from a friend whose death they covered up a year earlier. + + Briana Evigan + Leah Pipes + Rumer Willis + + 2009 + Movies + Horror + + + TVPG + + + 1 + + + + Sorority Row + The body count rises as a group of sorority sisters (Briana Evigan, Leah Pipes, Rumer Willis) begin receiving messages from a friend whose death they covered up a year earlier. + + Briana Evigan + Leah Pipes + Rumer Willis + + 2009 + Movies + Horror + + + TVPG + + + 1 + + + + Dope + A high-school senior (Shameik Moore) and his friends have a wild adventure in Los Angeles as they try to stay one step ahead of armed thugs who want the Ecstasy that a drug dealer secretly stashed in the youth's backpack. + + Shameik Moore + Tony Revolori + Kiersey Clemons + + 2015 + Movies + Comedy + + + TVPG + + + 3 + + + + The Promise + An Armenian medical student (Oscar Isaac) and an American photojournalist (Christian Bale) compete for the love of the same woman (Charlotte Le Bon) as the Ottoman Empire crumbles into war-torn chaos. + + Oscar Isaac + Charlotte Le Bon + Christian Bale + + 2016 + Movies + History + + + TV14 + + + 2 + + + + Teen Wolf + A high-school student's popularity soars when it is discovered that he is cursed with the mark of the werewolf. + + Michael J. Fox + James Hampton + Scott Paulin + + 1985 + Movies + Comedy + + + TVG + + + 2 + + + + Me and Earl and the Dying Girl + An awkward high-school senior (Thomas Mann) and a gravely ill classmate (Olivia Cooke) surprise themselves by becoming inseparable friends. + + Thomas Mann + Olivia Cooke + RJ Cyler + + 2015 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Laggies + Caught in a panic over her boyfriend's marriage proposal, Megan pretends to go on a business trip but, in reality, hangs out with a teenage friend, Annika. + + Keira Knightley + Chloë Grace Moretz + Sam Rockwell + + 2014 + Movies + Romance + + + TVG + + + 3 + + + + Taxi + A bumbling policeman enlists the help of a skillful cab driver to chase Brazilian bank robbers through New York City. + + Queen Latifah + Jimmy Fallon + Jennifer Esposito + + 2004 + Movies + Comedy + + + TVG + + + 1 + + + + Heist + When their attempt to rob a gangster's (Robert De Niro) casino goes awry, a desperate man (Jeffrey Dean Morgan) and his partner (Dave Bautista) hijack a city bus to escape from the police and a maniacal thug (Morris Chestnut). + + Jeffrey Dean Morgan + Robert De Niro + Kate Bosworth + + 2015 + Movies + Action + + + TVPG + + + + Push + A 13-year-old clairvoyant (Dakota Fanning) and the son (Chris Evans) of a murdered assassin join forces against a covert government agency that dabbles in psychic drugs and warfare. + + Chris Evans + Dakota Fanning + Camilla Belle + + 2009 + Movies + Thriller + + + TVG + + + 1 + + + + Big Momma's House + To protect a woman (Nia Long) and her son from a robber, a male FBI agent (Martin Lawrence) assumes the guise of a large grandmother. + + Martin Lawrence + Nia Long + Paul Giamatti + + 2000 + Movies + Comedy + + + TVG + + + 2 + + + + The Dead Don't Die + The citizens of the sleepy little town of Centerville find themselves under attack by flesh-eating zombies when the dead rise from their graves. + + Bill Murray + Adam Driver + Tilda Swinton + + 2019 + Movies + Horror + + + TVPG + + + 2 + + + + Horrible Bosses 2 + Después de que un inversionista sombrío les roba su nueva compañía, Nick, Dale y Kurt conspiran para secuestrar al hijo adulto del hombre y piden un rescate para recuperar el control. + + Jason Bateman + Charlie Day + Jason Sudeikis + + 2014 + Movies + Comedy + + + TVPG + + + 2 + + + + I Love You, Man + Peter está a punto de casarse, pero se da cuenta de que no tiene ningún amigo que pueda hacer de padrino. A partir de aquí concierta una serie de alocadas citas para agenciarse uno. + + Paul Rudd + Jason Segel + Rashida Jones + + 2009 + Movies + Comedy + + + TVPG + + + 3 + + + + Blair Witch + Unos jóvenes investigan la desaparición de la hermana de uno de ellos, de quien se perdió el rastro en 1994 en un bosque vinculado a la leyenda de la bruja de Blair. Cuando llegan al lugar, conocen a un grupo de personas que se ofrecen a guiarlos. + + James Allen McCune + Callie Hernandez + Corbin Reid + + 2016 + Movies + Horror + + + TVPG + + + 2 + + + + Slice + Cuando una gran cantidad de repartidores de pizzas son asesinados, dos supervivientes intentan detener a los culpables de la matanza. + + Zazie Beetz + Chance the Rapper + Rae Gray + + 2018 + Movies + Horror + + + + Slice + Cuando una gran cantidad de repartidores de pizzas son asesinados, dos supervivientes intentan detener a los culpables de la matanza. + + Zazie Beetz + Chance the Rapper + Rae Gray + + 2018 + Movies + Horror + + + + Road Trip + Un joven envía por error a su novia una cinta de video en la que sale él con otra chica. Ayudado por sus amigos, iniciará un viaje desesperado para recuperar la cinta. + + Seann William Scott + Breckin Meyer + D.J. Qualls + + 2000 + Movies + Comedy + + + TVPG + + + 2 + + + + Road Trip: Beer Pong + Tres universitarios se unen a un grupo de chicas para competir en un Torneo Nacional de Cerveza. + + Preston Jones + Danny Pudi + Julia Levy-Boeken + + 2009 + Movies + Comedy + + + TVPG + + + 1 + + + + The Pick-Up Artist + Un Don Juan se enamora de la guía turística de un museo, cuyo padre alcohólico tiene contactos con el crimen organizado. + + Molly Ringwald + Robert Downey Jr. + Dennis Hopper + + 1987 + Movies + Romance + + + TVG + + + 2 + + + + I Now Pronounce You Chuck and Larry + Cuando una disposición burocrática no le permite a un bombero nombrar a sus niños como beneficiarios de un seguro de vida, él le pide a un amigo que se haga pasar por su pareja homosexual. + + Adam Sandler + Kevin James + Jessica Biel + + 2007 + Movies + Comedy + + + TVPG + + + 1 + + + + The New Guy + Un niño de noveno grado es expulsado de la escuela y, tras recibir algunos consejos, decide renovar su imagen para volverse un joven cool. + + D.J. Qualls + Eliza Dushku + Zooey Deschanel + + 2002 + Movies + Comedy + + + TVG + + + 1 + + + + Fifty Shades Freed + El millonario Christian Grey y su nueva esposa, Anastasia, disfrutan la vida al máximo sin sospechar que una amenaza terrible se cierne sobre ellos. + + Dakota Johnson + Jamie Dornan + Eric Johnson + + 2018 + Movies + Romance + + + TV14 + + + 1 + + + + Big Momma's House + Un agente federal se hace pasar por una abuela de gran tamaño para lograr atrapar a un ladrón de bancos. + + Martin Lawrence + Nia Long + Paul Giamatti + + 2000 + Movies + Comedy + + + TVG + + + 2 + + + + Big Momma's House 2 + Un agente del FBI utiliza nuevamente su disfraz de una enorme abuela anciana y trabaja como niñera para una infeliz mujer casada que es sospechosa de un asesinato. + + Martin Lawrence + Nia Long + Emily Procter + + 2006 + Movies + Comedy + + + TVG + + + 1 + + + + The Cold Light of Day + Unas vacaciones en España se transforman en una pesadilla cuando la familia de un hombre es secuestrada por unos agentes, quienes desean recuperar un misterioso maletín. + + Henry Cavill + Verónica Echegui + Bruce Willis + + 2012 + Movies + Action + + + TVPG + + + 1 + + + + Moonfall + El mundo se enfrenta a la posibilidad de la extinción porque una fuerza desconocida empuja a la luna de su órbita rumbo a la Tierra. Un equipo de astronautas asume la misión de evitar el apocalipsis. + + Halle Berry + Patrick Wilson + John Bradley + + 2022 + Movies + Sci-Fi + + + TVG + + + 2 + + + + The Dead Don't Die + En la pequeña localidad de Centerville empiezan a ocurrir fenómenos extraños. A raíz de esto, los muertos vuelven a la vida y un variado grupo de personajes tendrá que enfrentarse a ellos. + + Bill Murray + Adam Driver + Tilda Swinton + + 2019 + Movies + Horror + + + TVPG + + + 2 + + + + Heist + Un padre se asocia con su compañero de trabajo para robar un casino y así poder pagar una medicina costosa que su hija necesita. Dado que las cosas salen mal, se ven obligados a secuestrar un autobús urbano. + + Jeffrey Dean Morgan + Robert De Niro + Kate Bosworth + + 2015 + Movies + Action + + + TVPG + + + + Push + Una clarividente de 13 años y el hijo de un homicida asesinado unen fuerzas en contra de una agencia del Gobierno encubierta que investiga temas de drogas y de guerras. + + Chris Evans + Dakota Fanning + Camilla Belle + + 2009 + Movies + Thriller + + + TVG + + + 1 + + + + The Crazies + Una misteriosa toxina convierte a la gente en asesinos sin escrúpulos. Cuando una ciudad empieza a sucumbir a la plaga, el Ejército bloquea los accesos a la misma, aislando a los pocos ciudadanos no infectados y dejándolos a merced de los asesinos. + + Timothy Olyphant + Radha Mitchell + Joe Anderson + + 2010 + Movies + Horror + + + TVPG + + + 2 + + + + The Crazies + Una misteriosa toxina convierte a la gente en asesinos sin escrúpulos. Cuando una ciudad empieza a sucumbir a la plaga, el Ejército bloquea los accesos a la misma, aislando a los pocos ciudadanos no infectados y dejándolos a merced de los asesinos. + + Timothy Olyphant + Radha Mitchell + Joe Anderson + + 2010 + Movies + Horror + + + TVPG + + + 2 + + + + The Field Guide to Evil + Una antología global de ocho narrativas que explora una serie de mitos y cuentos que han cautivado y asustado a comunidades a lo largo de la historia. + + Jilon Ghai + Birgit Minichmayr + Fatma Mohamed + + 2018 + Movies + Horror + + + + A Prayer Before Dawn + La increíble historia Billy Moore, un boxeador inglés encarcelado en la prisión más conocida de Tailandia. En un mundo de drogas y violencia, Billy sa da cuenta que su mejor oportunidad para escapar es luchar en los torneos de Muay Thai. + + Joe Cole + Billy Moore + Pornchanok Mabklang + + 2017 + Movies + Action + + + 3 + + + + Buffy the Vampire Slayer + Una porrista de escuela secundaria acepta con desgano su herencia como la última de una larga lista de caza vampiros. + + Kristy Swanson + Luke Perry + Donald Sutherland + + 1992 + Movies + Comedy + + + TVG + + + 1 + + + + My Bodyguard + El nuevo estudiante de una escuela de Chicago contrata al más feroz de la clase para que lo proteja de unos rufianes. + + Chris Makepeace + Adam Baldwin + Martin Mull + + 1980 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Little Black Book + Para saber más de su pasado, una joven entrevista a tres de las exnovias de su novio. + + Brittany Murphy + Holly Hunter + Kathy Bates + + 2004 + Movies + Romance + + + TVG + + + 2 + + + + I Love You, Beth Cooper + Durante su discurso de graduación, el estudiante Denis declara su amor por Beth Cooper, la chica más popular en la escuela. Para sorpresa de Denis, el mismo día Beth aparece en la puerta de su casa para ofrecerle la mejor noche de su vida. + + Hayden Panettiere + Paul Rust + Jack T. Capenter + + 2009 + Movies + Comedy + + + TVPG + + + 1 + + + + Prince Avalanche + Dos trabajadores de la carretera pasan el verano de 1988 aislados y lejos de las ciudades donde viven, y con el tiempo viven un conflicto entre ellos y con sus mujeres. + + Paul Rudd + Emile Hirsch + Lance LeGault + + 2013 + Movies + Comedy + Drama + + + TV14 + + + 3 + + + + My Life in Ruins + Georgia trabaja como guía en una agencia de viajes griega donde lidia con estrafalarios turistas más interesados en comprar souvenirs que visitar Grecia. Mientras acompaña a un grupo, ella misma empieza a ver la vida de otra manera. + + Nia Vardalos + Richard Dreyfuss + María Adanez + + 2009 + Movies + Romance + + + TVG + + + 2 + + + + Knocked Up + Una periodista exitosa y un hombre irresponsable analizan su futuro después de que su aventura amorosa termina en un embarazo. + + Seth Rogen + Katherine Heigl + Paul Rudd + + 2007 + Movies + Romance + + + TVPG + + + 3 + + + + Office Space + Una sesión de hipnosis cambia la actitud de un programador de computadoras hacia el mundo empresarial. + + Ron Livingston + Jennifer Aniston + David Herman + + 1999 + Movies + Comedy + + + TVG + + + 2 + + + + Hustle & Flow + En Memphis, Tennesse, un alcahuete usa la música rap para escapar de su vida turbulenta y lograr algo significativo. + + Terrence Howard + Anthony Anderson + Taryn Manning + + 2005 + Movies + Drama + + + TVPG + + + 3 + + + + Killing Me Softly + Una mujer desconfía cada vez más de su marido, después de que conoce el destino de las mujeres de su pasado. + + Heather Graham + Joseph Fiennes + Natascha McElhone + + 2002 + Movies + Thriller + + + TV14 + + + 1 + + + + A Hijacking + Después de que unos piratas somalíes secuestran un barco de carga danés y a su tripulación, las autoridades en Copenhague inician las negociaciones con los piratas para liberar a los hombres. + + Søren Malling + Dar Salim + Gary Skjoldmose Porter + + 2013 + Movies + Drama + + + TV14 + + + 3 + + + + A Hijacking + Después de que unos piratas somalíes secuestran un barco de carga danés y a su tripulación, las autoridades en Copenhague inician las negociaciones con los piratas para liberar a los hombres. + + Søren Malling + Dar Salim + Gary Skjoldmose Porter + + 2013 + Movies + Drama + + + TV14 + + + 3 + + + + Life After Beth + Un chico descubre que su novia ha regresado de entre los muertos, pero su alegría se convierte en terror cuando ella lentamente sufre una horrible transformación. + + Aubrey Plaza + Dane DeHaan + John C. Reilly + + 2014 + Movies + Comedy + + + TVPG + + + 2 + + + + The Missing + En el Nuevo México del siglo XIX, una mujer debe unirse a su distante padre para rescatar a su hija raptada. + + Tommy Lee Jones + Cate Blanchett + Evan Rachel Wood + + 2003 + Movies + Western + + + TVPG + + + 3 + + + + Escape From Alcatraz + La fascinante historia de los tres únicos hombres que lograron escapar de la famosa prisión de máxima seguridad de Alcatraz en 1962. + + Clint Eastwood + Patrick McGoohan + Jack Thibeau + + 1979 + Movies + Thriller + + + TVG + + + 3 + + + + Pawn Sacrifice + En una historia englobada en el marco de la Guerra Fría, el estadounidense Bobby Fischer, un prodigio del ajedrez, queda atrapado entre dos superpotencias cuando se enfrenta a la Unión Soviética. + + Tobey Maguire + Peter Sarsgaard + Liev Schreiber + + 2014 + Movies + History + + + TVG + + + 3 + + + + Speed Racer + Después de rechazar una lucrativa oferta de un empresario, Speed Racer descubre que algunas de las más importantes carreras están arregladas por magnates sin principios, que manipulan a los principales pilotos de carrera para tener más ganancias. + + Emile Hirsch + Christina Ricci + Susan Sarandon + + 2008 + Movies + Action + + + TVG + + + 2 + + + + Slums of Beverly Hills + En 1976, una sensual joven judía apela a su liberal prima como su guía en los problemas propios de la adolescencia. + + Natasha Lyonne + Alan Arkin + Marisa Tomei + + 1998 + Movies + Comedy + + + TVPG + + + 2 + + + + Let Me In + Owen es un niño maltratado por sus compañeros de clase y abandonado por sus padres divorciados. Sin embargo, su vida solitaria cambiará cuando conozca a su nueva vecina Abby, que vive con su silencioso padre. + + Kodi Smit-McPhee + Chloë Grace Moretz + Richard Jenkins + + 2010 + Movies + Horror + + + TVPG + + + 3 + + + + Line of Duty + Un oficial de policía se une a una joven que graba todos sus movimientos en vivo para tratar de salvar a la hija del jefe. + + Dina Meyer + Giancarlo Esposito + Aaron Eckhart + + 2019 + Movies + Action + + + TVPG + + + + Predator + Un furtivo monstruo alienígena ataca a varios comandos durante una misión en las selvas de América Central. + + Arnold Schwarzenegger + Carl Weathers + Jesse Ventura + + 1987 + Movies + Action + + + TVPG + + + 3 + + + + The Haunting + El doctor Marrow es especialista en trastornos del sueño. Para realizar un experimento, pide la colaboración de varios de sus pacientes. Así pues, todos ellos se trasladan a una antigua y solitaria mansión para llevar a cabo el estudio. + + Liam Neeson + Catherine Zeta-Jones + Owen Wilson + + 1999 + Movies + Horror + + + TVG + + + 1 + + + + Blair Witch + Unos jóvenes investigan la desaparición de la hermana de uno de ellos, de quien se perdió el rastro en 1994 en un bosque vinculado a la leyenda de la bruja de Blair. Cuando llegan al lugar, conocen a un grupo de personas que se ofrecen a guiarlos. + + James Allen McCune + Callie Hernandez + Corbin Reid + + 2016 + Movies + Horror + + + TVPG + + + 2 + + + + Slice + Cuando una gran cantidad de repartidores de pizzas son asesinados, dos supervivientes intentan detener a los culpables de la matanza. + + Zazie Beetz + Chance the Rapper + Rae Gray + + 2018 + Movies + Horror + + + + Orphan + Una serie de eventos alarmantes llevan a una mujer a creer que algo endemoniado se oculta detrás del rostro angelical de su hija recién adoptada. + + Vera Farmiga + Peter Sarsgaard + Isabelle Fuhrman + + 2009 + Movies + Horror + + + TVPG + + + 2 + + + + Sorority Row + Cuando cinco chicas de una hermandad matan sin querer a una de sus amigas, acuerdan deshacerse del cuerpo y no volver a hablar nunca más del tema. Un año después, el terror vuelve a llamar a sus puertas. + + Briana Evigan + Leah Pipes + Rumer Willis + + 2009 + Movies + Horror + + + TVPG + + + 1 + + + + Sorority Row + Cuando cinco chicas de una hermandad matan sin querer a una de sus amigas, acuerdan deshacerse del cuerpo y no volver a hablar nunca más del tema. Un año después, el terror vuelve a llamar a sus puertas. + + Briana Evigan + Leah Pipes + Rumer Willis + + 2009 + Movies + Horror + + + TVPG + + + 1 + + + + Dope + El joven Malcolm sobrevive en un barrio difícil de Los Ángeles mientras manda solicitudes a universidades y realiza entrevistas académicas. Pero una oportuna invitación a una fiesta clandestina lo lleva a una aventura inesperada. + + Shameik Moore + Tony Revolori + Kiersey Clemons + + 2015 + Movies + Comedy + + + TVPG + + + 3 + + + + The Promise + A finales de 1914, mientras el Imperio Otomano se derrumba, Michael, un estudiante de medicina, se enamora de Ana, profesora de danza. Ambos son de etnia armenia y sienten una enorme atracción, pero Ana tiene novio, un fotógrafo estadounidense. + + Oscar Isaac + Charlotte Le Bon + Christian Bale + + 2016 + Movies + History + + + TV14 + + + 2 + + + + Teen Wolf + Cuando se transforma en hombre lobo, el tímido Scott Howard pasa a ser la estrella del equipo de baloncesto y el chico más popular de la escuela secundaria. + + Michael J. Fox + James Hampton + Scott Paulin + + 1985 + Movies + Comedy + + + TVG + + + 2 + + + + Me and Earl and the Dying Girl + Un estudiante tímido y su compañera de clase enferma de leucemia se sorprenden a ellos mismos al convertirse en amigos inseparables. + + Thomas Mann + Olivia Cooke + RJ Cyler + + 2015 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Laggies + Atrapada por el pánico de la propuesta de matrimonio de su novio, una mujer finge realizar un viaje de negocios, pero en realidad se pasea con una amiga adolescente. + + Keira Knightley + Chloë Grace Moretz + Sam Rockwell + + 2014 + Movies + Romance + + + TVG + + + 3 + + + + Taxi + Belle Williams es una taxista de Nueva York que sueña con ganar una carrera automovilística. Un día, el azar quiere que se tropiece con el torpe policía Andy Washburn, quien está persiguiendo a una banda de astutas ladronas de bancos. + + Queen Latifah + Jimmy Fallon + Jennifer Esposito + + 2004 + Movies + Comedy + + + TVG + + + 1 + + + + Heist + Un padre se asocia con su compañero de trabajo para robar un casino y así poder pagar una medicina costosa que su hija necesita. Dado que las cosas salen mal, se ven obligados a secuestrar un autobús urbano. + + Jeffrey Dean Morgan + Robert De Niro + Kate Bosworth + + 2015 + Movies + Action + + + TVPG + + + + Push + Una clarividente de 13 años y el hijo de un homicida asesinado unen fuerzas en contra de una agencia del Gobierno encubierta que investiga temas de drogas y de guerras. + + Chris Evans + Dakota Fanning + Camilla Belle + + 2009 + Movies + Thriller + + + TVG + + + 1 + + + + Big Momma's House + Un agente federal se hace pasar por una abuela de gran tamaño para lograr atrapar a un ladrón de bancos. + + Martin Lawrence + Nia Long + Paul Giamatti + + 2000 + Movies + Comedy + + + TVG + + + 2 + + + + The Dead Don't Die + En la pequeña localidad de Centerville empiezan a ocurrir fenómenos extraños. A raíz de esto, los muertos vuelven a la vida y un variado grupo de personajes tendrá que enfrentarse a ellos. + + Bill Murray + Adam Driver + Tilda Swinton + + 2019 + Movies + Horror + + + TVPG + + + 2 + + + + The Office + Initiation + Dwight takes Ryan on his first sales call, subjecting him to an outrageous series of tests along the way. + + Steve Carell + Jenna Fischer + John Krasinski + + Sitcom + + + TV14 + + + + The Office + Diwali + Michael urges the staff to support Kelly and attend a local celebration of the Hindu Festival of Lights. + + Steve Carell + Jenna Fischer + John Krasinski + + Sitcom + + + TV14 + + + + The Office + The Merger + Jim and Pam reunite when the Scranton and Stamford branches of the company merge. + + Steve Carell + Jenna Fischer + John Krasinski + + Sitcom + + + TV14 + + + + The Office + The Convict + Michael tries to be supportive after learning that a new employee is an ex-convict, then the staff compares the office to a prison. + + Steve Carell + Jenna Fischer + John Krasinski + + Sitcom + + + TV14 + + + + The Office + A Benihana Christmas + Strife on the party-planning committee results in two competing Christmas parties; Michael gets dumped for the holidays. + + Steve Carell + Rainn Wilson + John Krasinski + + Sitcom + + + TV14 + + + + The Office + Back From Vacation + Michael returns from his Jamaican vacation; an e-mail of a racy vacation photo makes the rounds of the office. + + Steve Carell + Jenna Fischer + John Krasinski + + Sitcom + + + TV14 + + + + The Office + Traveling Salesmen + Andy suggests that Michael team up the staff for sales calls; Dwight tries to cover for Angela when she misses a deadline. + + Steve Carell + Jenna Fischer + John Krasinski + + Sitcom + + + TV14 + + + + The Office + The Return + Oscar returns from his long vacation; Andy takes advantage of events to get closer to Michael; Jim gets Karen and Pam to help stage a prank on a new target. + + Steve Carell + Jenna Fischer + John Krasinski + + Sitcom + + + TV14 + + + + The Office + Ben Franklin + Michael brings two adult performers into the office in honor of Phyllis' wedding shower; Karen confronts Pam about her past with Jim. + + Steve Carell + Jenna Fischer + John Krasinski + + Sitcom + + + TV14 + + + + We're the Millers + Indebted to a big-time drug lord, a pot dealer (Jason Sudeikis) travels to Mexico with a fake family and a camper to pick up a large shipment and smuggle it into the U.S. + + Jennifer Aniston + Jason Sudeikis + Will Poulter + + 2013 + Movies + Comedy + + + TVPG + + + 2 + + + + We're the Millers + Indebted to a big-time drug lord, a pot dealer (Jason Sudeikis) travels to Mexico with a fake family and a camper to pick up a large shipment and smuggle it into the U.S. + + Jennifer Aniston + Jason Sudeikis + Will Poulter + + 2013 + Movies + Comedy + + + TVPG + + + 2 + + + + South Park + Cat Orgy + A meteor shower hits South Park; Shelly baby-sits Cartman. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Two Guys Naked in a Hot Tub + The boys' call to the police creates a stand-off. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Jewbilee + South Park waits for the meteor shower; Kyle and Ike go camping. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Chinpoko Mon + The children in South Park are fanatics about Chinpoko Mon. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Hooked on Monkey Fonics + The boys compete against home-schooled kids in the annual spelling bee. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Red Badge of Gayness + Cartman suits up for the Confederacy during the annual Civil War re-enactment. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Worldwide Recorder Concert + The group travels to Arkansas for the first worldwide recorder concert. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Cartman's Silly Hate Crime 2000 + The girls of South Park Elementary challenge the boys to a sledding race, and Cartman gets sentenced to juvenile hall for 13 years. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + The Tooth Fairy's Tats 2000 + The boys start stealing teeth from less fortunate children and selling them to the Tooth Fairy at a premium. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Quintuplets 2000 + A family of quintuplets takes up residence in South Park and a media circus surrounds their every move. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Timmy 2000 + Timmy is excused from class when he is diagnosed with Attention Deficit Disorder. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + Paid Program + + + TV14 + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + Parks and Recreation + Pawnee Zoo + Hoping to promote the local zoo, Leslie arranges a penguin. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + + + TVPG + + + + Parks and Recreation + Leslie and Ron + Ben stages an intervention of sorts, locking Leslie and Ron alone in a room together so that they can forget their rivalry. + + Amy Poehler + Aziz Ansari + Nick Offerman + + Sitcom + + + TVPG + + + + Parks and Recreation + Gryzzlbox + Ben and Leslie think the residents of Pawnee are undergoing a privacy invasion; April speaks to the new interns; Tom assists Andy with a contract negotiation. + + Amy Poehler + Aziz Ansari + Nick Offerman + + Sitcom + + + TVPG + + + + Parks and Recreation + Save J.J.'s + In hope of keeping J.J.'s diner open, Leslie organizes a rally; Tom has a surprise pre-wedding gift for Donna. + + Amy Poehler + Aziz Ansari + Nick Offerman + + Sitcom + + + TVPG + + + + Parks and Recreation + Donna and Joe + April tries to keep Donna and Joe's wedding running smoothly; Ron creates awkwardness between Tom and Lucy; Jen Barkley arrives at Ben and Leslie's home with an opportunity. + + Amy Poehler + Aziz Ansari + Nick Offerman + + Sitcom + + + TVPG + + + + Parks and Recreation + Ms. Ludgate-Dwyer Goes to Washington + While on a business trip to Washington with Leslie, April struggles with her future; Andy looks for a job for April. + + Amy Poehler + Aziz Ansari + Nick Offerman + + Sitcom + + + TVPG + + + + Parks and Recreation + Pie-Mary + Leslie and Ben are criticized for taking part in a Pawnee tradition; Ron and April go on a scavenger hunt; Donna and Garry reminisce. + + Amy Poehler + Aziz Ansari + Nick Offerman + + Sitcom + + + TVPG + + + + Parks and Recreation + The Johnny Karate Super Awesome Musical Explosion Show + For the final episode of Andy's TV show, Leslie hijacks part of the production, bringing Andy's pals in to honor his efforts. + + Amy Poehler + Aziz Ansari + Nick Offerman + + Sitcom + + + TVPG + + + + Parks and Recreation + Two Funerals + Leslie helps Tom prepare for a big evening; April and Ben conduct interviews; Donna and Andy assist Ron with a life change. + + Amy Poehler + Aziz Ansari + Nick Offerman + + Sitcom + + + TVPG + + + + We're the Millers + Indebted to a big-time drug lord, a pot dealer (Jason Sudeikis) travels to Mexico with a fake family and a camper to pick up a large shipment and smuggle it into the U.S. + + Jennifer Aniston + Jason Sudeikis + Will Poulter + + 2013 + Movies + Comedy + + + TVPG + + + 2 + + + + Vacation + Following in his father's (Chevy Chase) footsteps, Rusty Griswold (Ed Helms) takes his wife (Christina Applegate) and two sons on a cross-country road trip to America's favorite fun park, Walley World. + + Ed Helms + Christina Applegate + Skyler Gisondo + + 2015 + Movies + Comedy + + + TVPG + + + 2 + + + + South Park + White People Renovating Houses + Protestors armed with tiki torches and confederate flags take to the streets of South Park; Randy comes to grips with what it means to be white in today's society. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Put It Down + North Korea takes aim at South Park. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TVMA + + + + South Park + Holiday Special + An undeniable bond forms between a white man and a Native American man. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TVMA + + + + South Park + Franchise Prequel + Facebook is the ultimate weapon for Professor Chaos. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Hummels & Heroin + Beloved entertainers are being cut down in their prime due to massive overdoses of opiates and Stan is about to be exposed as the source of the illegal drugs. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TVMA + + + + South Park + Sons a Witches + At the annual Halloween get-together, a witch casts a spell that terrorizes everyone in town. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Doubling Down + Kyle is playing with fire when he gets in the middle of Cartman and Heidi's relationship. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TVMA + + + + South Park + Moss Piglets + Jimmy and Timmy's experiment could win them first prize in the annual science fair. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Super Hard PCness + It's never been more challenging to be a PC Principal. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Splatty Tomato + The children of South Park claim to have seen Mr. Garrison lurking around town; the townspeople are angry that the president is scaring their children. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TVMA + + + + South Park + Dead Kids + Randy is desperate to help Sharon get her emotions under control; Cartman unexpectedly fails his math test. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TVMA + + + + South Park + A Boy and a Priest + A very special relationship has developed between Butters and the Parish Priest; when the town finds the church doors locked and no sign of the pair, they call in the Catholic Church. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TVMA + + + + South Park + The Problem With a Poo + Mr. Hankey's offensive behavior puts him in jeopardy of being fired as the Director of the Annual Christmas Pageant; at South Park Elementary, Strong Woman and PC Principal face a whole new set of challenges in their relationship. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TVMA + + + + South Park + Tegridy Farms + Butters sells vape pens and all kinds of fruit-flavored vape accessories at school; Randy decides he should move the family to the country and take up farming. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TVMA + + + + South Park + The Scoots + The kids plan to use the latest revolution in mobility to get even more candy on Halloween; the adults hoard emergency supplies and hope to survive until morning. + + Trey Parker + Matt Stone + + Animated + Christmas + + + TVMA + + + + South Park + Buddha Box + Cartman is diagnosed with anxiety. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TVMA + + + + South Park + Unfulfilled + South Park is chosen to be the home for Amazon's newest fulfillment center. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TVMA + + + + South Park + Bike Parade + The Bike Parade is still on, but the boys' chance of winning is in jeopardy when Kenny resists commercialism in solidarity with the Amazon Fulfillment Center's striking workers. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TVMA + + + + South Park + Mexican Joker + Randy fights against home-grown weed; Kyle goes to camp. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TVMA + + + + South Park + Band in China + Randy sees an opportunity for Tegridy in China. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TVMA + + + + South Park + SHOTS!!! + Randy celebrates the success of Tegridy Farms; Cartman refuses to get a shot. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TVMA + + + + South Park + Let Them Eat Goo + Cartman is sure the new plant-based diet in the school cafeteria gave him a heart attack. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TVMA + + + + South Park + Tegridy Farms Halloween Special + Randy tries to deal with his daughter's marijuana problem on Halloween. + + Trey Parker + Matt Stone + + Animated + Christmas + + + TVMA + + + + South Park + Season Finale + The citizens of South Park have had enough of Randy and Tegridy Farms and they just want to lock him up. + + Trey Parker + Matt Stone + Mona Marshall + + Animated + Sitcom + + + TVMA + + + + South Park + Board Girls + The annual Strong Woman competition pushes everyone to their limits. + + Trey Parker + Matt Stone + Mona Marshall + + Animated + Sitcom + + + TVMA + + + + South Park + Turd Burglars + Kyle's mom has a fecal transplant and the boys are on a quest for the best microbiome. + + Trey Parker + Matt Stone + Mona Marshall + + Animated + Sitcom + + + TVMA + + + + South Park + Basic Cable + Scott Malkinson is desperate to impress the new girl in his class. + + Trey Parker + Matt Stone + Mona Marshall + + Animated + Sitcom + + + TVMA + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + Paid Program + + + TV14 + + + + Get Fit with Total Gym, Risk Free + Get in the best shape of your life with the Total Gym 30 Day Risk-Free Trial Offer. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + The Cleveland Show + Pilot + Cleveland decides it is time for Cleveland Jr. and him to leave Quahog; Cleveland reunites with an old high-school crush, Donna Tubbs. + Animated + Sitcom + + + TV14 + + + + The Cleveland Show + Da Daggone Daddy-Daughter Dinner Dance + Cleveland tries to win over his new stepdaughter, Roberta, by asking her to the school's father/daughter dance. + Animated + Sitcom + + + TV14 + + + + The Cleveland Show + The One About Friends + Afraid that Cleveland Jr. has no friends, Cleveland invites his neighbor's son, Ernie, to the house; when Ernie gets too attached to the family, Cleveland has trouble getting him to go home. + Animated + Sitcom + + + TV14 + + + + Futurama + The Butterjunk Effect + Amy and Leela become addicted to nectar, a nutritional supplement that boosts their performance in the future sport of Butterfly Derby. + + Billy West + Katey Sagal + John DiMaggio + + Animated + Sitcom + + + TVPG + + + + Futurama + The Six Million Dollar Mon + Hermes replaces his body parts with mechanics after being fed up with his inferiority to machines. + + Billy West + Katey Sagal + John DiMaggio + + Animated + Sitcom + + + TVPG + + + + Futurama + Fun on a Bun + Fry finds himself the victim of a horrific sausage-making accident. + + Billy West + Katey Sagal + John DiMaggio + + Animated + Sitcom + + + TVPG + + + + Futurama + Free Will Hunting + As a robot, Bender lacks free will so he embarks on a quest for the meaning of life. + + Billy West + Katey Sagal + John DiMaggio + + Animated + Sitcom + + + TVPG + + + + South Park + Cartman Joins NAMBLA + Cartman seeks mature friends; Kenny tries to prevent the conception of a sibling. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Cherokee Hair Tampons + A haggling Cartman holds the key to saving Kyle, who faces death due to a rare kidney disease and his mother's holistic remedies. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Chef Goes Nanners + Chef's passionate protest against the South Park Flag enflames the entire town including the children. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Something You Can Do With Your Finger + The boys form their own boy band, and everyone in town lines up to audition for a spot as the fifth band member. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Do the Handicapped Go to Hell? + Priest Max threatens eternal damnation, and the boys seek religion; Saddam returns. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Probably + Satan is torn between two lovers as he tries to choose between his new boyfriend and his ex, Saddam Hussein. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + 4th Grade + The boys build a time machine to return to happier school days. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + Seinfeld + The Glasses + George and Elaine go to an optician after George loses his glasses at his health club; Elaine fears she has rabies after being bitten by a dog. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Puffy Shirt + Jerry appears on. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Sniffing Accountant + Jerry, Kramer and Newman (Wayne Knight) investigate their accountant's unexplained sniffles; Elaine's new boyfriend has an annoying habit. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Bris + Jerry and Elaine are apprehensive about being the godparents to their friends' newborn son; George is thrilled with his new parking spot. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Lip Reader + George asks Jerry's date (Marlee Matlin) to read the lips of his ex-girlfriend at a party; Elaine has trouble communicating with a limo driver. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Non-Fat Yogurt + Jerry and Elaine begin gaining weight and suspect a nonfat-yogurt shop may be making false claims; Jerry's use of a bad word influences Maryedith's son. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Barber + Jerry decides to change barbers because his has a history of giving bad haircuts; George poses as an employee after a job interview. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVG + + + + Seinfeld + The Masseuse + Jerry becomes tense when he can't get his masseuse girlfriend (Jennifer Coolidge) to give him a massage. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + The Office + Phyllis' Wedding + Phyllis regrets giving Michael an important job at her wedding; Dwight plans to catch wedding crashers. + + Steve Carell + Jenna Fischer + John Krasinski + + Sitcom + + + TV14 + + + + The Office + Business School + Ryan invites Michael to be a guest speaker at his business school; Dwight battles a bat that is loose in the office; Pam invites co-workers to her first art show. + + Steve Carell + Jenna Fischer + John Krasinski + + Sitcom + + + TV14 + + + + The Office + Cocktails + Michael and Jan make their relationship public during a party; Jim meets Karen's ex; the staff goes to happy hour for drinks. + + Steve Carell + Jenna Fischer + John Krasinski + + Sitcom + + + TV14 + + + + The Office + The Negotiation + Darryl meets with Michael to negotiate a pay increase; Jim deals with the consequences of Pam's confession to Roy. + + Steve Carell + Jenna Fischer + John Krasinski + + Sitcom + + + TV14 + + + + The Office + Safety Training + Andy returns from anger-management classes, planning to make a fresh start with his co-workers; Michael and Dwight try to illustrate the dangers of the workplace. + + Steve Carell + Jenna Fischer + John Krasinski + + Sitcom + + + TV14 + + + + The Office + Product Recall + The staff goes into crisis mode after a shipment of paper goes out with an obscene watermark; Michael holds an impromptu press conference; Jim and Andy handle harried clients who used the paper. + + Steve Carell + Jenna Fischer + John Krasinski + + Sitcom + + + TV14 + + + + The Office + Women's Appreciation + Outrage breaks out in the office when Phyllis gets an eyeful from a flasher; Dwight and Andy work on catching the perpetrator. + + Steve Carell + Jenna Fischer + John Krasinski + + Sitcom + + + TV14 + + + + The Office + Beach Games + Michael must recommend his own replacement when the company considers him for a corporate position; Pam must watch Jim and Karen have fun together at a company outing. + + Steve Carell + Jenna Fischer + John Krasinski + + Sitcom + + + TV14 + + + + The Office + The Job, Part 1 + Michael, Jim and Karen go to New York to interview for a job opening; in Scranton, the new regime institutes sweeping reforms; Jan brings exciting news. + + Steve Carell + Rainn Wilson + John Krasinski + + Sitcom + + + TV14 + + + + The Office + The Job, Part 2 + Michael, Jim and Karen go to New York to be interviewed for a job opening; in Scranton, the new regime institutes sweeping reforms; Jan comes in with exciting news. + + Steve Carell + Rainn Wilson + John Krasinski + + Sitcom + + + TV14 + + + + The Daily Show + A satirical look at news, trends, pop culture, current events, politics, sports, and entertainment. + Talk Shows + Comedy + + + TV14 + + + + South Park + Trapper Keeper + A futuristic life form helps destroy a superbeing; kindergarten elections heat up. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Helen Keller: The Musical + The 4th grade Thanksgiving play is in trouble and Stan, Kyle and Kenny are going to great lengths to make their production a hit. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Fat Camp + Cartman's friends and family stage an intervention, forcing him to go to Fat Camp. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Wacky Molestation Adventure + The kids take over South Park, and Cartman becomes the mayor. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + It Hits the Fan + Cartman and his foul mouth make television history. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TVMA + + + + South Park + Cripple Fight! + Big Gay Al becomes the boys' troop leader; a new kid steals Timmy's spotlight. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Terrance and Phillip: Behind the Blow + When the boys discover their idols, Terrance & Phillip, have called it quits, they'll go to any length to reunite the duo. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Cartmanland + Cartman inherits a fortune and buys an amusement park. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Proper Condom Use + Panic and confusion ensue when the children are exposed to sex education classes. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Osama bin Laden Has Farty Pants + When the boys receive a package from the children of Afghanistan, every government agency descends upon the town to investigate. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + How to Eat With Your Butt + The funniest thing Cartman's ever seen comes to town; realizing he'll never see anything funnier, he loses his sense of humor. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + Sex Toys - 50 Percent OFF! + Adam & Eve, America's most trusted source for adult products. + Paid Program + + + TVMA + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Ninja Woodfire Outdoor Grill + Meet the Shark Ninja Wood Fire Grill, with Master Grill, BBQ Smoke, and Air Fry outdoor capabilities. Powered by electricity and flavored by real burning wood pellets, Woodfire Technology allows you to easily create rich flavor you can see and taste. + Paid Program + + + + Car Repair Secrets! + Save thousands on car repairs. + Paid Program + + + + The Cleveland Show + Birth of a Salesman + Tim wishes that bad things would happen to Cleveland after he is named top salesman at Waterman Cable. + Animated + Sitcom + + + TV14 + + + + The Cleveland Show + Cleveland Jr. Cherry Bomb + Cleveland Jr. takes a vow of chastity when Cleveland has. + Animated + Sitcom + + + TV14 + + + + The Cleveland Show + Ladies' Night + Cleveland discovers that Donna is still attending a support group for single mothers. + Animated + Sitcom + + + TV14 + + + + Futurama + Near-Death Wish + The Professor is upset when his parents return from virtual retirement aboard the Near-Death Star. + + Billy West + Katey Sagal + John DiMaggio + + Animated + Sitcom + + + TVPG + + + + Futurama + 31st Century Fox + Bender becomes the hunted after saving a robotic fox from hunters. + + Billy West + Katey Sagal + John DiMaggio + + Animated + Sitcom + + + TVPG + + + + Futurama + Viva Mars Vegas + The crew needs to recover stolen property from the Robot Mafia so they stage a casino heist. + + Billy West + Katey Sagal + John DiMaggio + + Animated + Sitcom + + + TVPG + + + + Futurama + Naturama + Bender and the crew are reimagined as wild animals in a nature documentary. + + Billy West + Katey Sagal + John DiMaggio + + Animated + Sitcom + + + TVPG + + + + South Park + The Entity + Kyle tries to ditch his cousin, Kyle, who comes to South Park for an extended visit and embarrasses him in front of his friends. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Here Comes the Neighborhood + Token is teased as the only rich kid in town so he begins to lure others like himself to South Park but the town tries to drive them out. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TVMA + + + + South Park + Kenny Dies + Cartman has a personal stake in stem cell research. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Butters' Very Own Episode + Butters reveals a dark family secret. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Freak Strike + The boys sign Butters up as a guest on a popular afternoon talk show that features people with weird deformities. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Jared Has Aides + The boys see an opportunity to make money from a weight-loss program. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TVMA + + + + South Park + Asspen + The boys' parents are offered a free ski trip to Aspen; Stan has a run in with one of the locals. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + The New Terrance and Phillip Movie Trailer + The boys eagerly anticipate the trailer to the new Terrance and Philip movie. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + Seinfeld + The Cigar-Store Indian + Elaine's American Indian friend thinks Jerry is a racist after he gives Elaine a cigar-store Indian statue as a present. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Conversion + Jerry thinks his girlfriend (Kimberly Campbell) has a fungus; George converts to the Latvian Orthodox religion. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Stall + Elaine's toilet stall has no tissue and the woman in the next stall refuses to give her some; George acts giddy around Elaine's boyfriend (Dan Cortese). + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Dinner Party + Jerry, Elaine, George and Kramer search for something to take to a dinner party; Jerry and Elaine forget to take a number at the bakery; Kramer and George have trouble buying wine. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Marine Biologist + George poses as a marine biologist while on a date with a former college classmate (Rosalind Allen); Elaine loses her electronic organizer. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVG + + + + Seinfeld + The Pie + Jerry becomes obsessed when his date refuses to sample his pie; a clothing store mannequin resembles Elaine . + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Stand-In + Kramer befriends a little person when he is hired as a stand-in for a soap opera; George wants to break up with a girlfriend. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Wife + Jerry lets his girlfriend (Courteney Cox) pose as his wife so she can receive a discount at the dry cleaner. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + The Office + Fun Run + A freak accident causes Michael to think the office is cursed; Michael decides to hold a charity 5K fun run; further developments in co-workers' romances. + + Steve Carell + Rainn Wilson + John Krasinski + + Sitcom + + + TV14 + + + + The Office + Fun Run + A freak accident causes Michael to think the office is cursed; Michael decides to hold a charity 5K fun run; further developments in co-workers' romances. + + Steve Carell + Rainn Wilson + John Krasinski + + Sitcom + + + TV14 + + + + The Office + Dunder-Mifflin Infinity + Ryan returns to Dunder-Mifflin's Scranton branch to bring the company into the digital age; Angela remains unhappy about her cat. + + Steve Carell + Rainn Wilson + John Krasinski + + Sitcom + + + TV14 + + + + The Office + Dunder-Mifflin Infinity + Ryan returns to Dunder-Mifflin's Scranton branch to bring the company into the digital age; Angela remains unhappy about her cat. + + Steve Carell + Rainn Wilson + John Krasinski + + Sitcom + + + TV14 + + + + The Office + Launch Party + Michael anticipates going to New York for the company's Web site launch party; Dwight tries to sell more paper in one day than the Web site does. + + Steve Carell + Rainn Wilson + John Krasinski + + Sitcom + + + TV14 + + + + The Office + Launch Party + Michael anticipates going to New York for the company's Web site launch party; Dwight tries to sell more paper in one day than the Web site does. + + Steve Carell + Rainn Wilson + John Krasinski + + Sitcom + + + TV14 + + + + The Office + Money + Michael tries to combat his growing debt by asking employees for loans; Jim and Pam spend a night at Dwight's family farm. + + Steve Carell + Rainn Wilson + John Krasinski + + Sitcom + + + TV14 + + + + The Office + Money + Michael tries to combat his growing debt by asking employees for loans; Jim and Pam spend a night at Dwight's family farm. + + Steve Carell + Rainn Wilson + John Krasinski + + Sitcom + + + TV14 + + + + The Office + Local Ad + Michael seizes the opportunity to exhibit his creativity when the Scranton branch must participate in a company ad; Dwight explores an online world. + + Steve Carell + Rainn Wilson + John Krasinski + + Sitcom + + + TV14 + + + + The Daily Show + A satirical look at news, trends, pop culture, current events, politics, sports, and entertainment. + Talk Shows + Comedy + + + TV14 + + + + South Park + Fun With Veal + The boys fly to the rescue of helpless calves destined for slaughter. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Professor Chaos + Butters unleashes a sinister alter-ego after his friends reject him. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Simpsons Already Did It + The boys panic when it appears they caused a woman's death. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Red Hot Catholic Love + Scandal impacts church attendance in South Park. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Free Hat + The boys form a club in order to stop Hollywood directors from wrecking their own films. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Bebe's Boobs Destroy Society + All the kids in South Park are mysteriously drawn to Bebe. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TVMA + + + + South Park + Child Abduction Is Not Funny + South Park parents go to extreme measures to protect their children from kidnappers. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TVMA + + + + South Park + A Ladder to Heaven + When the boys go to Heaven to find Kenny, the Feds investigate the possibility that Saddam Hussein may be hiding weapons there. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TVMA + + + + South Park + The Death Camp of Tolerance + Principal Victoria promotes Mr. Garrison to the fourth grade to teach the boys. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + The Biggest Douche in the Universe + Cartman resorts to the supernatural in trying to get Kenny out of his body. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + My Future Self 'n' Me + Stan faces his future as a loser; Cartman ventures into the business of revenge. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + Sex Toys - 50 Percent OFF! + Adam & Eve, America's most trusted source for adult products. + Paid Program + + + TVMA + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Get Fit with Total Gym, Risk Free + Get in the best shape of your life with the Total Gym 30 Day Risk-Free Trial Offer. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + The Cleveland Show + A Brown Thanksgiving + Cleveland celebrates his first Thanksgiving with his new family and discovers a shocking secret about Donna's Auntie Momma. + Animated + Christmas + + + TV14 + + + + The Cleveland Show + From Bed to Worse + Cleveland and Donna are excited to have the house to themselves when Cleveland Jr. and Roberta are away, but disgruntled Rallo does whatever it takes to keep them apart. + Animated + Sitcom + + + TV14 + + + + The Cleveland Show + A Cleveland Brown Christmas + Cleveland lets a secret slip when he fills in as Santa Claus at the office holiday party; Roberta becomes an animal-rights activist and tries to save a reindeer. + Animated + Christmas + + + TV14 + + + + Futurama + Forty Percent Leadbelly + Bender meets a famous folk singer at a maximum security prison and attempts to make a copy of his precious guitar. + + Billy West + Katey Sagal + John DiMaggio + + Animated + Sitcom + + + TVPG + + + + Futurama + 2-D Blacktop + Professor Farnsworth rescues the ship from the junkyard and joins a gang of street-racing punks. + + Billy West + Katey Sagal + John DiMaggio + + Animated + Sitcom + + + TVPG + + + + Futurama + T.: The Terrestrial + After being marooned on an distant planet, Fry is befriended by a young monster. + + Billy West + Katey Sagal + John DiMaggio + + Animated + Sitcom + + + TVPG + + + + Futurama + Fry and Leela's Big Fling + Fry and Leela try to get some privacy, but their romantic vacation goes very wrong. + + Billy West + Katey Sagal + John DiMaggio + + Animated + Sitcom + + + TVPG + + + + South Park + I'm a Little Bit Country + The boys learn about the politics of war and the consequences of homework. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Krazy Kripples + When a recently disabled star visits South Park and steals Jimmy's limelight, he and Timmy fight back by forming a handicapped gang. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Toilet Paper + The boys' friendship undergoes a test when they become suspects in a criminal investigation. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Canceled + The boys learn life on Earth is an alien reality show about to be canceled. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Fat Butt and Pancake Head + Cartman is forced to deal with the pressures of stardom. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Lil' Crime Stoppers + The boys are named junior deputies and open up their own detective agency. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TV14 + + + + South Park + Red Man's Greed + Townspeople fight the take-over by casino owners. + + Trey Parker + Matt Stone + + Animated + Sitcom + + + TVMA + + + + Seinfeld + The Raincoats + Kramer has a scheme to sell vintage raincoats; Jerry and his girlfriend can't get any alone time; George sells his father's cabana clothes. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Raincoats + Kramer's scheme to sell vintage raincoats backfires; George tries to dump his. + + Jerry Seinfeld + Julia Louis-Dreyfus + Jason Alexander + + Sitcom + + + TVPG + + + + Seinfeld + The Fire + George is forced to confront his cowardliness after he runs from a kitchen fire; Kramer dates one of Elaine's co-workers. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Hamptons + George fears Jerry's girlfriend will give his girlfriend an inaccurate description after she sees him naked. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Grimm + The Three Bad Wolves + An arson case exposes a family feud; Monroe confronts people from his troubled past. (repeat). + + David Giuntoli + Russell Hornsby + Silas Weir Mitchell + Reggie Lee + Sasha Roiz + Sharon Sachs + Norberto Barba + Terrence O'Hara + Sean Hayes + Thomas Ian Griffith + + 2011 + Drama + Horror + Suspense + Science Fiction + + S1 + 1 E6 + + TV-14 + + + 5.8/10 + + + + The X-Files + Fresh Bones + An apparent suicide may involve voodoo and a mental battle between the man (Daniel Benzali) in charge of a holding facility and the leader of its inhabitants. Bauvais: Bruce Young. McAlpin: Kevin Conway. Dunham: Matt Hill. Chester: Jamil Walker Smith. Scully: Gillian Anderson. (repeat). + + David Duchovny + Gillian Anderson + Mitch Pileggi + James Pickens Jr. + William B. Davis + Mimi Rogers + Mark Snow + Kim Manners + David Nutter + Paul Rabwin + Frank Spotnitz + + 1995 + Drama + Fantasy + Suspense + Science Fiction + + S2 E15 + + TV-14 + + + 6.5/10 + + + + The X-Files + Colony + A CIA agent (Tom Butler) claims that Russian-made clones are being killed. But his story is contradicted by an unimpeachable source. Part 1 of two. Gregors: Dana Gladstone. Pilot: Brian Thompson. Samantha: Megan Leitch. Mulder's Father: Peter Donat. Mulder's Mother: Rebecca Toolan. Scully: Gillian Anderson. (repeat). + + David Duchovny + Gillian Anderson + Mitch Pileggi + James Pickens Jr. + William B. Davis + Mimi Rogers + Mark Snow + Kim Manners + David Nutter + Paul Rabwin + Frank Spotnitz + + 1995 + Drama + Fantasy + Suspense + Science Fiction + + S2 E16 + + TV-14 + + + 6.5/10 + + + + The X-Files + End Game + Conclusion. Samantha (Megan Leitch) discloses the pilot's mission, and Skinner helps try to save Scully when the pilot demands her in exchange for Samantha. Pilot: Brian Thompson. Skinner: Mitch Pileggi. Mulder's Father: Peter Donat. Mr. X: Steven Williams. Mulder: David Duchovny. Scully: Gillian Anderson. (repeat). + + David Duchovny + Gillian Anderson + Mitch Pileggi + James Pickens Jr. + William B. Davis + Mimi Rogers + Mark Snow + Kim Manners + David Nutter + Paul Rabwin + Frank Spotnitz + + 1995 + Drama + Fantasy + Suspense + Science Fiction + + S2 E17 + + TV-14 + + + 6.5/10 + + + + Grimm + Key Move + Nick and Monroe travel overseas on a dangerous journey that brings them closer to the source of a long-gestating mystery. Elsewhere, a deadly move by Black Claw sends Portland into disarray. (repeat). + + David Giuntoli + Russell Hornsby + Silas Weir Mitchell + Reggie Lee + Sasha Roiz + Sharon Sachs + Norberto Barba + Terrence O'Hara + Sean Hayes + Thomas Ian Griffith + + 2011 + Drama + Horror + Suspense + Science Fiction + + S5 + 5 E11 + + TV-14 + + + 5.8/10 + + + + Grimm + Into the Schwarzwald + Nick and Monroe find trouble in Germany after discovering a treasure that has been hidden for centuries. Back home, there's havoc in the streets of Portland as Capt. Renard, Hank and Wu attempt to stop a deadly assassin; at the same time, Eve is hunting down the same man. Meanwhile, Rosalee is tracked down by someone from her past. (repeat). + + David Giuntoli + Russell Hornsby + Silas Weir Mitchell + Reggie Lee + Sasha Roiz + Sharon Sachs + Norberto Barba + Terrence O'Hara + Sean Hayes + Thomas Ian Griffith + + 2011 + Drama + Horror + Suspense + Science Fiction + + S5 + 5 E12 + + TV-14 + + + 5.8/10 + + + + The Outer Limits + First Anniversary + Following the sudden breakup of his friends' marriage, a man (Matt Frewer) begins to feel repulsed by his own wife after only one year of marriage. Michelle Johnson. Based on a story by Richard Matheson. (repeat). + + Dominic Frontiere + Mario Azzopardi + Brad Turner + Justis Greene + Sam Egan + + 1996 + Drama + Horror + Science Fiction + S2 E7 + + TV-PG + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Friday the 13th + The Shaman's Apprentice + Deaths and unexpected recoveries at a hospital lead to a cursed artifact that's linked to Dr. John White Cloud (Paul Miceli-Sanchez). Blair: Isabelle Mejias. Spotted Owl: Gordon Tootoosis. (repeat). + + Steve Monarque + Robey + Chris Wiggins + Andrew Jackson + Timothy Bond + William Fruet + + 1989 + Drama + Horror + Fantasy + + S2 E24 + + TV-MA + + + + Friday the 13th + The Prisoner + A man in prison for robbery escapes after receiving a WWII kamikaze jacket that renders him invisible. Johnny Ventura: Steve Monarque. Dell Arkwright: Les Carlson. (repeat). + + Steve Monarque + Robey + Chris Wiggins + Andrew Jackson + Timothy Bond + William Fruet + + 1989 + Drama + Horror + Fantasy + + S2 E25 + + TV-MA + + + + Friday the 13th + Coven of Darkness + The leader of a witches coven convinces Ryan she's working for the powers of good, while she's really plotting to retrieve a cursed ladder for evil purposes. Brother Gareth: Maurice E. Evans. Brother Shannon: Mark Wilson. Micki: Robey. (repeat). + + Steve Monarque + Robey + Chris Wiggins + Andrew Jackson + Timothy Bond + William Fruet + + 1989 + Drama + Horror + Fantasy + + S2 E26 + + TV-MA + + + + Friday the 13th + The Prophecies + Jack travels to France to investigate a nun, unaware that Astaroth, a follower of the Devil, is also there to fulfill the six prophecies that will make Satan ruler of the world. Johnny Ventura: Steven Monarque. Micki: Robey. Jack: Chris Wiggins. Ryan: John D. LeMay. + + Steve Monarque + Robey + Chris Wiggins + Andrew Jackson + Timothy Bond + William Fruet + + 1989 + Drama + Horror + Fantasy + + + TV-MA + + + + Flash Gordon + Heroic earthling Flash Gordon saves the world from the nefarious Ming the Merciless in this adaptation of the sci-fi comic strip. (repeat). + + Melody Anderson + Sam J. Jones + Topol + Ornella Muti + Timothy Dalton + Brian Blessed + Howard Blake + Mike Hodges + Dino De Laurentiis + Lorenzo Semple Jr. + + 1980 + Family + Action & Adventure + Science Fiction + + + TV-PG + + + 5.8/10 + + + + Pumpkinhead + A widowed farmer loses his 10-year-old son to a hit-and-run accident, and calls upon the demonic Pumpkinhead to help him get revenge. (repeat). + + Lance Henriksen + Jeff East + John DiAquino + Kimberly Ross + Matthew Hurley + Joel Hoffman + Richard Stone + Stan Winston + Alex DeBenedetti + Gary Gerani + + 1988 + Horror + + + TV-14 + + + 4.7/10 + + + + Ghost Town + A deputy (Franc Luz) tries to free a traveler (Catherine Hickland) held captive by the ghost of an outlaw (Jimmie F. Skaggs). Grace: Penelope Windust. Dealer: Bruce Glover. Blacksmith: Zitto Kazann. Harper: Blake Conway. (repeat). + + Franc Luz + Catherine Hickland + Jimmie F. Skaggs + Penelope Windust + Bruce Glover + Zitto Kazann + Harvey R. Cohen + Richard Governor + Charles Band + Duke Sandefur + + 1988 + + + + The X-Files + Fearful Symmetry + After an elephant goes on a rampage killing a construction worker, witnesses say they saw the force but not the source. Willa Ambrose: Jayne Atkinson. Meecham: Jack Rader. Lang: Lance Guest. Scully: Gillian Anderson. Mulder: David Duchovny. (repeat). + + David Duchovny + Gillian Anderson + Mitch Pileggi + James Pickens Jr. + William B. Davis + Mimi Rogers + Mark Snow + Kim Manners + David Nutter + Paul Rabwin + Frank Spotnitz + + 1995 + Drama + Fantasy + Suspense + Science Fiction + + S2 E18 + + TV-14 + + + 6.5/10 + + + + The X-Files + Dod Kalm + The lone survivor of a missing Navy destroyer has rapidly aged, as has his ship, which the agents find in the Norwegian Sea. Trondheim: John Savage. Olafsson: Vladimir Kulich. Barclay: David Cubitt. Halverson: Mar Anderson. Harper: Dmitry Chepovetsky. Scully: Gillian Anderson. Mulder: David Duchovny. (repeat). + + David Duchovny + Gillian Anderson + Mitch Pileggi + James Pickens Jr. + William B. Davis + Mimi Rogers + Mark Snow + Kim Manners + David Nutter + Paul Rabwin + Frank Spotnitz + + 1995 + Drama + Fantasy + Suspense + Science Fiction + + S2 E19 + + TV-14 + + + 6.5/10 + + + + The X-Files + Humbug + There's a circus of suspects in the murder of a retired escape artist. Sheriff: Wayne Grace. Blockhead: Jimi Rose. Lanny: Vincent Schiavelli. Conundrum: The Enigma. Hepcat Helm: Gordon Tipple. Waitress: Debis Simpson. Scully: Gillian Anderson. Mulder: David Duchovny. (repeat). + + David Duchovny + Gillian Anderson + Mitch Pileggi + James Pickens Jr. + William B. Davis + Mimi Rogers + Mark Snow + Kim Manners + David Nutter + Paul Rabwin + Frank Spotnitz + + 1995 + Drama + Fantasy + Suspense + Science Fiction + + S2 E20 + + TV-14 + + + 6.5/10 + + + + Retroactive + After seeing a man kill his wife, a psychiatrist employs a scientist's time machine in hopes of saving the woman's life. (repeat). + + Kylie Travis + James Belushi + Shannon Whirry + Frank Whaley + M. Emmet Walsh + Jesse Borrego + Tim Truman + Louis Morneau + David Bixler + Michael Hamilton-Wright + + 1997 + Drama + Suspense + Action & Adventure + Science Fiction + + + TV-PG + + + + Friday the 13th + The Prophecies + Conclusion. With Jack comatose and Ryan under Astaroth's spell, Micki sends for Johnny Ventura (Steven Monarque) to help save her friends. Astaroth: Fritz Weaver. Mrs. Dallion: Jill Frappier. Ryan: John D. LeMay. Micki: Robey. Jack: Chris Wiggins. (repeat). + + Steve Monarque + Robey + Chris Wiggins + Andrew Jackson + Timothy Bond + William Fruet + + 1989 + Drama + Horror + Fantasy + + S3 E2 + + TV-MA + + + + Joint Relief Secrets + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + 2022 + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Crepe Erase Ultra + Crepe Erase Ultra visibly transforms your skin with 9 super hydrators! Tune in to see how Jane Seymour and Kate Walsh keep their skin so smooth. Treat and repair the look of crepey skin.Shop at CrepeErase.com. + 2022 + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Farscape + Durka Returns + Menacing Peacekeeper Durka resurfaces after he's undergone a "mental cleansing" by the powerful Nebaris. Yet Rygel still seeks revenge against his former tormentor. Durka: David Wheeler. Chiana: Gigi Edgley. Salis: Tiriel Mora. Rygel: John Eccleston. Voice of Rygel: Jonathan Hardy. (repeat). + + Claudia Black + Ben Browder + John Eccleston + Anthony Simcoe + Gigi Edgley + Sean Masterson + Tony Tilse + Andrew Prowse + Matt Carroll + David Kemper + + 1999 + Drama + Fantasy + Action & Adventure + Science Fiction + + S1 E15 + + TV-PG + + + 7.5/10 + + + + Stargate SG-1 + The First Ones + When scientist Daniel Jackson (Michael Shanks) is captured by an Unas, he's forced to use his skills and wits to survive. O'Neill: Richard Dean Anderson. Teal'c: Christopher Judge. Dr. Carter: Amanda Tapping. (repeat). + + Amanda Tapping + Michael Shanks + Christopher Judge + Carmen Argenziano + Isaac Hayes + David Hewlett + Joel Goldsmith + Peter DeLuise + Martin Wood + Joseph Mallozzi + Brad Wright + + 2000 + Action & Adventure + Science Fiction + + S4 + 4 E8 + + TV-PG + + + 4.8/10 + + + + Stargate SG-1 + Scorched Earth + The crew gets caught between two warring civilizations who are trying to colonize a planet. O'Neill: Richard Dean Anderson. Jackson: Michael Shanks. Samantha: Amanda Tapping. Hammond: Don S. Davis. (repeat). + + Amanda Tapping + Michael Shanks + Christopher Judge + Carmen Argenziano + Isaac Hayes + David Hewlett + Joel Goldsmith + Peter DeLuise + Martin Wood + Joseph Mallozzi + Brad Wright + + 2000 + Action & Adventure + Science Fiction + + S4 + 4 E9 + + TV-PG + + + 4.8/10 + + + + Stargate SG-1 + Beneath the Surface + The team members of SG-1 find themselves toiling on an alien power station, but have no recollection of their former lives. O'Neill: Richard Dean Anderson. Dr. Carter: Amanda Tapping. Teal'c: Christopher Judge. Jackson: Michael Shanks. (repeat). + + Amanda Tapping + Michael Shanks + Christopher Judge + Carmen Argenziano + Isaac Hayes + David Hewlett + Joel Goldsmith + Peter DeLuise + Martin Wood + Joseph Mallozzi + Brad Wright + + 2000 + Action & Adventure + Science Fiction + + S4 + 4 E10 + + TV-PG + + + 4.8/10 + + + + Stargate SG-1 + Point of No Return + O'Neill encounters an unusual being who is surprisingly knowledgeable about the Stargate program. O'Neill: Richard Dean Anderson. Dr. Carter: Amanda Tapping. Jackson: Michael Shanks. Teal'c: Christopher Judge. (repeat). + + Amanda Tapping + Michael Shanks + Christopher Judge + Carmen Argenziano + Isaac Hayes + David Hewlett + Joel Goldsmith + Peter DeLuise + Martin Wood + Joseph Mallozzi + Brad Wright + + 2000 + Action & Adventure + Science Fiction + + S4 + 4 E11 + + TV-PG + + + 4.8/10 + + + + Grimm + Let Your Hair Down + A murder investigation in the woods leads to the reopening of a missing-person case; Nick asks Monroe to make contact with a feral creature. (repeat). + + David Giuntoli + Russell Hornsby + Silas Weir Mitchell + Reggie Lee + Sasha Roiz + Sharon Sachs + Norberto Barba + Terrence O'Hara + Sean Hayes + Thomas Ian Griffith + + 2011 + Drama + Horror + Suspense + Science Fiction + + S1 + 1 E7 + + TV-14 + + + 5.8/10 + + + + Grimm + Game Ogre + A prison escapee seeks revenge against those who put him behind bars, and his strength and high tolerance for pain makes Nick suspect the fugitive is a monster. (repeat). + + David Giuntoli + Russell Hornsby + Silas Weir Mitchell + Reggie Lee + Sasha Roiz + Sharon Sachs + Norberto Barba + Terrence O'Hara + Sean Hayes + Thomas Ian Griffith + + 2011 + Drama + Horror + Suspense + Science Fiction + + S1 + 1 E8 + + TV-14 + + + 5.8/10 + + + + Grimm + Of Mouse and Man + A gruesome homicide may be linked to a man's troubling childhood; Monroe receives a disturbing message from the creature community. (repeat). + + David Giuntoli + Russell Hornsby + Silas Weir Mitchell + Reggie Lee + Sasha Roiz + Sharon Sachs + Norberto Barba + Terrence O'Hara + Sean Hayes + Thomas Ian Griffith + + 2011 + Drama + Horror + Suspense + Science Fiction + + S1 + 1 E9 + + TV-14 + + + 5.8/10 + + + + Buffy the Vampire Slayer + Tough Love + While Buffy is preoccupied with the pressure of being her obstinate sister's keeper, Glory and her minions set out to grab the person whom they believe to be the Key---Tara. Unfortunately, Tara is more vulnerable than usual, as both she and Willow are stunned from the aftereffects of their first big fight. Tara: Amber Benson. Glory: Clare Kramer. Willow: Alyson Hannigan. (repeat). + + Sarah Michelle Gellar + Alyson Hannigan + Nicholas Brendon + Anthony Head + Thomas Wanker + Joss Whedon + David Solomon + Gail Berman + Joss Whedon + + 2001 + Drama + Fantasy + Comedy + Action & Adventure + Science Fiction + + S5 E19 + + TV-14 + + + 8.5/10 + + + + Buffy the Vampire Slayer + Spiral + Buffy and the Scoobies---including Tara, sadly rendered mentally disabled by Glory's brain drain---hightail it out of Sunnydale to escape the hellgod, who now knows the truth about Dawn. Spike's RV provides transportation but not much defense against the legion of Knights of Byzantium out to destroy the Key. Tara: Amber Benson. Spike: James Marsters. Glory: Clare Kramer. (repeat). + + Sarah Michelle Gellar + Alyson Hannigan + Nicholas Brendon + Anthony Head + Thomas Wanker + Joss Whedon + David Solomon + Fran Rubel Kuzui + Joss Whedon + + 2001 + Drama + Fantasy + Comedy + Action & Adventure + Science Fiction + + S5 E20 + + TV-PG + + + 8.5/10 + + + + Buffy the Vampire Slayer + The Weight of the World + Willow psychically enters Buffy's troubled subconscious in an effort to somehow reach the Slayer, who has been rendered catatonic by Glory's abduction of Dawn. Meanwhile, Glory vents her frustrations on the limitations of being part human to a frightened Dawn; and Spike, Xander and Giles work on undermining the hell god's nefarious plans. Doc: Joel Grey. Glory: Clare Kramer. Willow: Alyson Hannigan. (repeat). + + Sarah Michelle Gellar + Alyson Hannigan + Nicholas Brendon + Anthony Head + Thomas Wanker + Joss Whedon + David Solomon + Fran Rubel Kuzui + Joss Whedon + + 2001 + Drama + Fantasy + Comedy + Action & Adventure + Science Fiction + + S5 E21 + + TV-PG + + + 8.5/10 + + + + The X-Files + The Calusari + Mulder suspects poltergeist activity in the death of a child, whose grandmother (Lilyan Chauvin) is practicing Old World mysticism to protect her other grandson. Charlie: Joel Palmer. Steve: Ric Reid. Maggie: Helene Clarkson. Chuck: Bill Dow. Scully: Gillian Anderson. Mulder: David Duchovny. (repeat). + + David Duchovny + Gillian Anderson + Mitch Pileggi + James Pickens Jr. + William B. Davis + Mimi Rogers + Mark Snow + Kim Manners + David Nutter + Paul Rabwin + Frank Spotnitz + + 1995 + Drama + Fantasy + Suspense + Science Fiction + + S2 E21 + + TV-14 + + + 6.5/10 + + + + The X-Files + F. Emasculata + Scully and Mulder assist in a manhunt for two escaped murderers, who may be infected with a deadly virus. U.S. Marshal: Dean Norris. Osborne: Charles Martin Smith. Paul: John Pyper Ferguson. Steve: John Tench. Angelo: Angelo Vacco. Elizabeth: Linda Boyd. Bobby Lawrence: Kim Kondrashoft. Scully: Gillian Anderson. (repeat). + + David Duchovny + Gillian Anderson + Mitch Pileggi + James Pickens Jr. + William B. Davis + Mimi Rogers + Mark Snow + Kim Manners + David Nutter + Paul Rabwin + Frank Spotnitz + + 1995 + Drama + Fantasy + Suspense + Science Fiction + + S2 E22 + + TV-14 + + + 6.5/10 + + + + The X-Files + Soft Light + Three missing-persons cases have a common link: scorch marks left behind where the people were last seen. Dr. Chester Banton: Tony Shalhoub. Det. Ryan: Kate Twa. Davey: Kevin McNulty. Mr. X: Steven Williams. Det. Barron: Nathaniel Deveaux. Scully: Gillian Anderson. Mulder: David Duchovny. (repeat). + + David Duchovny + Gillian Anderson + Mitch Pileggi + James Pickens Jr. + William B. Davis + Mimi Rogers + Mark Snow + Kim Manners + David Nutter + Paul Rabwin + Frank Spotnitz + + 1995 + Drama + Fantasy + Suspense + Science Fiction + + S2 E23 + + TV-14 + + + 6.5/10 + + + + Grimm + Key Move + Nick and Monroe travel overseas on a dangerous journey that brings them closer to the source of a long-gestating mystery. Elsewhere, a deadly move by Black Claw sends Portland into disarray. (repeat). + + David Giuntoli + Russell Hornsby + Silas Weir Mitchell + Reggie Lee + Sasha Roiz + Sharon Sachs + Norberto Barba + Terrence O'Hara + Sean Hayes + Jim Kouf + + 2011 + Drama + Horror + Suspense + Science Fiction + + S5 + 5 E11 + + TV-14 + + + 5.8/10 + + + + Grimm + Into the Schwarzwald + Nick and Monroe find trouble in Germany after discovering a treasure that has been hidden for centuries. Back home, there's havoc in the streets of Portland as Capt. Renard, Hank and Wu attempt to stop a deadly assassin; at the same time, Eve is hunting down the same man. Meanwhile, Rosalee is tracked down by someone from her past. (repeat). + + David Giuntoli + Russell Hornsby + Silas Weir Mitchell + Reggie Lee + Sasha Roiz + Sharon Sachs + Norberto Barba + Terrence O'Hara + Sean Hayes + Jim Kouf + + 2011 + Drama + Horror + Suspense + Science Fiction + + S5 + 5 E12 + + TV-14 + + + 5.8/10 + + + + The Outer Limits + First Anniversary + Following the sudden breakup of his friends' marriage, a man (Matt Frewer) begins to feel repulsed by his own wife after only one year of marriage. Michelle Johnson. Based on a story by Richard Matheson. (repeat). + + Dominic Frontiere + Mario Azzopardi + Brad Turner + Justis Greene + Sam Egan + + 1996 + Drama + Horror + Science Fiction + S2 E7 + + TV-PG + + + + Paid Programming + Paid Programming. + + TV-14 + + + + True Crime 2023 + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + 2022 + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Farscape + A Human Reaction + A return to Earth invites chaos for Crichton, whose military father figures in the fates of the Moya crew and especially the destiny of his son, who reveals his passion for Aeryn. Maj. Jack Crichton: Kent McCord. Chiana: Gigi Edgley. Wilson: Phillip Gordon. John Crichton: Ben Browder. Aeryn: Claudia Black. (repeat). + + Claudia Black + Ben Browder + John Eccleston + Anthony Simcoe + Gigi Edgley + Sean Masterson + Tony Tilse + Andrew Prowse + Matt Carroll + David Kemper + + 1999 + Drama + Fantasy + Action & Adventure + Science Fiction + + S1 E16 + + TV-PG + + + 7.5/10 + + + + Stargate SG-1 + Tangent + When the test flight of a recovered Goa'uld death ship malfunctions, O'Neill and Teal'c are sent hurtling through space. O'Neill: Richard Dean Anderson. Teal'c: Christopher Judge. Dr. Carter: Amanda Tapping. Jackson: Michael Shanks. (repeat). + + Amanda Tapping + Michael Shanks + Christopher Judge + Carmen Argenziano + Isaac Hayes + David Hewlett + Neal Acree + Peter DeLuise + Martin Wood + Robert C. Cooper + Robert C. Cooper + + 2000 + Action & Adventure + Science Fiction + + S4 + 4 E12 + + TV-PG + + + 4.8/10 + + + + Stargate SG-1 + The Curse + Daniel's mentor dies, which leads to a reunion with both a former friend and a former foe from their past. (repeat). + + Amanda Tapping + Michael Shanks + Christopher Judge + Carmen Argenziano + Isaac Hayes + David Hewlett + Neal Acree + Peter DeLuise + Martin Wood + Robert C. Cooper + Robert C. Cooper + + 2000 + Action & Adventure + Science Fiction + + S4 + 4 E13 + + TV-PG + + + 4.8/10 + + + + Stargate SG-1 + Serpent's Venom + When it's discovered that two powerful system lords are planning an alliance, the team is sent to investigate. O'Neill: Richard Dean Anderson. Dr. Carter: Amanda Tapping. Jackson: Michael Shanks. Teal'c: Christopher Judge. (repeat). + + Amanda Tapping + Michael Shanks + Christopher Judge + Carmen Argenziano + Isaac Hayes + David Hewlett + Neal Acree + Peter DeLuise + Martin Wood + Robert C. Cooper + Robert C. Cooper + + 2000 + Action & Adventure + Science Fiction + + S4 + 4 E14 + + TV-PG + + + 4.8/10 + + + + Stargate SG-1 + Chain Reaction + Gen. Hammond announces his retirement, leaving the crew aghast. (repeat). + + Amanda Tapping + Michael Shanks + Christopher Judge + Carmen Argenziano + Isaac Hayes + David Hewlett + Neal Acree + Peter DeLuise + Martin Wood + Robert C. Cooper + Robert C. Cooper + + 2001 + Action & Adventure + Science Fiction + + S4 + 4 E15 + + TV-PG + + + 4.8/10 + + + + Grimm + Organ Grinder + Nick finds a black market that supplies the creature world with human organs; Nick and Juliette befriend a pair of homeless siblings whose friends have vanished. (repeat). + + David Giuntoli + Russell Hornsby + Silas Weir Mitchell + Reggie Lee + Sasha Roiz + Sharon Sachs + Norberto Barba + Terrence O'Hara + Sean Hayes + Jim Kouf + + 2012 + Drama + Horror + Suspense + Science Fiction + + S1 + 1 E10 + + TV-14 + + + 5.8/10 + + + + Grimm + Tarantella + A trail of homicides puts Nick and Hank in pursuit of a deadly heartbreaker; Nick's rising stature in the creature world prompts concerns about Juliette's safety. (repeat). + + David Giuntoli + Russell Hornsby + Silas Weir Mitchell + Reggie Lee + Sasha Roiz + Sharon Sachs + Norberto Barba + Terrence O'Hara + Sean Hayes + Jim Kouf + + 2011 + Drama + Horror + Suspense + Science Fiction + + S1 + 1 E11 + + TV-14 + + + 5.8/10 + + + + Grimm + Last Grimm Standing + A double-homicide investigation lands Nick and Monroe in a creature fight club. (repeat). + + David Giuntoli + Russell Hornsby + Silas Weir Mitchell + Reggie Lee + Sasha Roiz + Sharon Sachs + Norberto Barba + Terrence O'Hara + Sean Hayes + Jim Kouf + + 2011 + Drama + Horror + Suspense + Science Fiction + + S1 + 1 E12 + + TV-14 + + + 5.8/10 + + + + Buffy the Vampire Slayer + The Gift + Buffy and the Scoobies put together a plan to stop Glory from spilling Dawn's blood, which would open a portal to Glory's hellish dimension and bring about the end of the world. Also, Xander decides to take his relationship with Anya to the next level. Dawn: Michelle Trachtenberg. Glory: Clare Kramer. Ben: Charlie Webber. (repeat). + + Sarah Michelle Gellar + Alyson Hannigan + Nicholas Brendon + Anthony Head + Thomas Wanker + Joss Whedon + David Solomon + Fran Rubel Kuzui + Joss Whedon + + 2001 + Drama + Fantasy + Comedy + Action & Adventure + Science Fiction + + S5 E22 + + TV-14 + + + 8.5/10 + + + + Buffy the Vampire Slayer + Bargaining, Part 1 + Part 1 of two. As Buffy's mourning friends try to combat a sudden influx of demons into Sunnydale, a plot is hatched to bring the Slayer back from the dead. Razor: Franc Ross. Shempy Vamp: Paul Greenberg. Mag: Geoff Meed. Tara: Amber Benson. Willow: Alyson Hannigan. Spike: James Marsters. Xander: Nicholas Brendon. Giles: Anthony Stewart Head. Anya: Emma Caulfield. (repeat). + + Sarah Michelle Gellar + Alyson Hannigan + Nicholas Brendon + Anthony Head + Thomas Wanker + Joss Whedon + David Solomon + Fran Rubel Kuzui + Joss Whedon + + 2001 + Drama + Fantasy + Comedy + Action & Adventure + Science Fiction + + S6 E1 + + TV-14 + + + 8.5/10 + + + + Buffy the Vampire Slayer + Bargaining, Part 2 + Conclusion. The gang splits up and heads for safety after Willow's resurrection ritual is disrupted by Razor's rampaging demons, which also capture the damaged Buffybot. Willow: Alyson Hannigan. Razor: Franc Ross. Spike: James Marsters. Tara: Amber Benson. Xander: Nicholas Benson. Dawn: Michelle Trachtenberg. (repeat). + + Sarah Michelle Gellar + Alyson Hannigan + Nicholas Brendon + Anthony Head + Thomas Wanker + Joss Whedon + David Solomon + Fran Rubel Kuzui + Joss Whedon + + 2001 + Drama + Fantasy + Comedy + Action & Adventure + Science Fiction + + S6 E2 + + TV-14 + + + 8.5/10 + + + + The X-Files + Our Town + The disappearance of a poultry inspector is linked to the bizarre behavior exhibited by two workers, symptomatic of a rare neurological disorder. Chaco: John Milford. Harold: Tim Webber. Doris: Caroline Kava. Sheriff: Gary Grubbs. Scully: Gillian Anderson. (repeat). + + David Duchovny + Gillian Anderson + Mitch Pileggi + James Pickens Jr. + William B. Davis + Mimi Rogers + Mark Snow + Kim Manners + David Nutter + Paul Rabwin + Frank Spotnitz + + 1995 + Drama + Fantasy + Suspense + Science Fiction + + S2 E24 + + TV-14 + + + 6.5/10 + + + + The X-Files + Anasazi + Part 1 of 3. Mulder receives encrypted files citing government knowledge of extraterrestrials, and learns that his father may have been involved in a related project. Albert: Floyd Red Crow Westerman. Cigarette-Smoking Man: William B. Davis. Skinner: Mitch Pileggi. Mulder: David Duchovny. (repeat). + + David Duchovny + Gillian Anderson + Mitch Pileggi + James Pickens Jr. + William B. Davis + Mimi Rogers + Mark Snow + Kim Manners + David Nutter + Paul Rabwin + Frank Spotnitz + + 1995 + Drama + Fantasy + Suspense + Science Fiction + + S2 E25 + + TV-14 + + + 6.5/10 + + + + The X-Files + The Blessing Way + Part 2 of three. Mulder (David Duchovny) undergoes a Native American ritual and hovers between life and death; Scully is suspended for misconduct and warned she'll be killed. Albert: Floyd Red Crow Westerman. Cigarette Smoking Man: William B. Davis. Scully: Gillian Anderson. (repeat). + + David Duchovny + Gillian Anderson + Mitch Pileggi + James Pickens Jr. + William B. Davis + Mimi Rogers + Mark Snow + Kim Manners + David Nutter + Paul Rabwin + Frank Spotnitz + + 1995 + Drama + Fantasy + Suspense + Science Fiction + + S3 E1 + + TV-14 + + + 6.5/10 + + + + Grimm + Silence of the Slams + An ancient Wesen warrior tradition finds its way into the modern world of Luchador wrestling thanks to a local maskmaker. As Nick, Hank, Monroe and Rosalee try to put a stop to the bloodshed that is taking place, Capt. Renard mulls over an offer that could bring him closer to claiming his destiny. Meanwhile, new questions are raised as a result of Eve's snooping around. (repeat). + + David Giuntoli + Russell Hornsby + Silas Weir Mitchell + Reggie Lee + Sasha Roiz + Sharon Sachs + Norberto Barba + Terrence O'Hara + Sean Hayes + Jim Kouf + + 2011 + Drama + Horror + Suspense + Science Fiction + + S5 + 5 E13 + + TV-14 + + + 5.8/10 + + + + Grimm + Lycanthropia + A forgotten Wesen disease makes a terrifying return, as Nick and Hank learn while investigating a brutal attack in the woods. Elsewhere, Adalind considers entering into an uneasy alliance in order to get back what she wants most; and Eve discovers a surprising revelation. (repeat). + + David Giuntoli + Russell Hornsby + Silas Weir Mitchell + Reggie Lee + Sasha Roiz + Sharon Sachs + Norberto Barba + Terrence O'Hara + Sean Hayes + Jim Kouf + + 2011 + Drama + Horror + Suspense + Science Fiction + + S5 + 5 E14 + + TV-14 + + + 5.8/10 + + + + The Outer Limits + Straight and Narrow + A problem child (Ryan Phillippe) enrolled at a private school discovers the administration is implanting computer chips in students' brains. Peter Donat, Charlie Walters, Tom Butler. (repeat). + + Dominic Frontiere + Mario Azzopardi + Brad Turner + Justis Greene + Sam Egan + + 1996 + Drama + Horror + Science Fiction + S2 E8 + + TV-PG + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + True Crime 2023 + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + 2022 + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Farscape + Through the Looking Glass + A rip between dimensions threatens Moya, whose crew are stuck in a time warp engendered by an alien creature on a destructive mission. Chiana: Gigi Edgley. Crichton: Ben Browder. Aeryn: Claudia Black. D'Argo: Anthony Simcoe. (repeat). + + Claudia Black + Ben Browder + John Eccleston + Anthony Simcoe + Gigi Edgley + Sean Masterson + Tony Tilse + Andrew Prowse + Matt Carroll + David Kemper + + 1999 + Drama + Fantasy + Action & Adventure + Science Fiction + + S1 E17 + + TV-PG + + + 7.5/10 + + + + Stargate SG-1 + 2010 + The year 2010 dawns and brings many significant changes to both Earth and to the SGC. (repeat). + + Amanda Tapping + Michael Shanks + Christopher Judge + Carmen Argenziano + Isaac Hayes + David Hewlett + Neal Acree + Peter DeLuise + Martin Wood + Robert C. Cooper + Robert C. Cooper + + 2001 + Action & Adventure + Science Fiction + + S4 + 4 E16 + + TV-PG + + + 4.8/10 + + + + Stargate SG-1 + Absolute Power + After he's reunited with the Harsesis child, Daniel's behavior changes, making the crew concerned. (repeat). + + Amanda Tapping + Michael Shanks + Christopher Judge + Carmen Argenziano + Isaac Hayes + David Hewlett + Neal Acree + Peter DeLuise + Martin Wood + Robert C. Cooper + Robert C. Cooper + + 2001 + Action & Adventure + Science Fiction + + S4 + 4 E17 + + TV-PG + + + 4.8/10 + + + + Stargate SG-1 + The Light + On a visit to a strange planet, the crew becomes mesmerized by a stunning mechanism that apparently has an ugly side. (repeat). + + Amanda Tapping + Michael Shanks + Christopher Judge + Carmen Argenziano + Isaac Hayes + David Hewlett + Neal Acree + Peter DeLuise + Martin Wood + Robert C. Cooper + Robert C. Cooper + + 2001 + Action & Adventure + Science Fiction + + S4 + 4 E18 + + TV-PG + + + 4.8/10 + + + + Stargate SG-1 + Prodigy + Carter makes it her business to offer guidance to a promising cadet who is on the verge of ruining her future with SG-1. (repeat). + + Amanda Tapping + Michael Shanks + Christopher Judge + Carmen Argenziano + Isaac Hayes + David Hewlett + Neal Acree + Peter DeLuise + Martin Wood + Robert C. Cooper + Robert C. Cooper + + 2001 + Action & Adventure + Science Fiction + + S4 + 4 E19 + + TV-PG + + + 4.8/10 + + + + Grimm + Three Coins in a Fuchsbau + A botched jewelry-store robbery results in murder and raises questions about rare coins; a friend of Aunt Marie's visits Nick with information about his family. (repeat). + + David Giuntoli + Russell Hornsby + Silas Weir Mitchell + Reggie Lee + Sasha Roiz + Sharon Sachs + Norberto Barba + Terrence O'Hara + Sean Hayes + Jim Kouf + + 2011 + Drama + Horror + Suspense + Science Fiction + + S1 + 1 E13 + + TV-14 + + + 5.8/10 + + + + Grimm + Plumed Serpent + An arson-related-homicide investigation brings Nick and Hank to the world of Portland fire dancing, and the case threatens Nick's relationship with Juliette. (repeat). + + David Giuntoli + Russell Hornsby + Silas Weir Mitchell + Reggie Lee + Sasha Roiz + Sharon Sachs + Norberto Barba + Terrence O'Hara + Sean Hayes + Jim Kouf + + 2011 + Drama + Horror + Suspense + Science Fiction + + S1 + 1 E14 + + TV-14 + + + 5.8/10 + + + + Grimm + Island of Dreams + Nick and Monroe investigate the murder of a spice-shop owner, and the victim's sister may prove to be an ally for Nick; Capt. Renard recruits Adalind to hex Hank; Sgt. Wu gets caught up in Adalind's scheme. (repeat). + + David Giuntoli + Russell Hornsby + Silas Weir Mitchell + Reggie Lee + Sasha Roiz + Sharon Sachs + Norberto Barba + Terrence O'Hara + Sean Hayes + Jim Kouf + + 2011 + Drama + Horror + Suspense + Science Fiction + + S1 + 1 E15 + + TV-14 + + + 5.8/10 + + + + Buffy the Vampire Slayer + After Life + As Buffy adjusts to life after resurrection, a shadowy presence menaces her sidekicks---a side effect of the spell cast by Willow (Alyson Hannigan) to bring the Slayer back. Tara: Amber Bensen. Dawn: Michelle Trachtenberg. Spike: James Marsters. Anya: Emma Caulfield. Xander: Nicholas Brendon. Buffy: Sarah Michelle Gellar. (repeat). + + Sarah Michelle Gellar + Alyson Hannigan + Nicholas Brendon + Anthony Head + Thomas Wanker + Joss Whedon + David Solomon + Fran Rubel Kuzui + Joss Whedon + + 2001 + Drama + Fantasy + Comedy + Action & Adventure + Science Fiction + + S6 E3 + + TV-14 + + + 8.5/10 + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Monk + Mr. Monk Gets Drunk + A relaxing getaway in wine country turns into a crime-filled weekend for Monk. + + Tony Shalhoub + Ted Levine + Traylor Howard + + Comedy + Drama + + + TVPG + + + + Monk + Mr. Monk Stays in Bed + Natalie pursues a case while Monk is sick in bed with the flu. + + Tony Shalhoub + Ted Levine + Traylor Howard + + Comedy + Drama + + + TVPG + + + + Columbo + Lovely but Lethal + A cosmetics manufacturer is suspected of murdering an employee (Martin Sheen) who stole a wrinkle-removing formula. + + Peter Falk + + Drama + + + TVG + + + + Columbo + Double Exposure + A motivational researcher blackmails to further his career, kills a man, then frames the victim's wife. + + Peter Falk + + Drama + + + TVG + + + + Las Vegas + Games People Play + Nessa questions everything Ed has told her about her father when a mysterious woman tells her that he is still alive and wishes to contact her. + + James Caan + Josh Duhamel + Molly Sims + + Drama + + + TV14 + + + + Las Vegas + Montecito Lancers + Danny and Mike prepare their youth football team for the Casino League championship game and search for a missing casino employee and aspiring inventor, who is the father of one of the team members. + + James Caan + Josh Duhamel + Molly Sims + + Drama + + + TV14 + + + + Las Vegas + Two of a Kind + Ed, Danny and Mike work to help Dr. Jordan Cavanaugh (Jill Hennessy) and Detective Woody Hoyt (Jerry O'Connell) as they try to solve the murder of a high-stakes gambler who appears to have had many enemies. + + James Caan + Josh Duhamel + Molly Sims + + Drama + + + TV14 + + + + Las Vegas + Silver Star + Danny and Mike's attempt to find a missing girl leads them to a man with a criminal past; Delinda becomes enamored with the Polyphonic Spree, an unusual musical group, and its leader, Tim DeLaughter. + + James Caan + Josh Duhamel + Molly Sims + + Drama + + + TV14 + + + + Las Vegas + Degas Away With It + Ed uses past connections and old-school tactics to track down the thief who stole a priceless work of art from the Montecito, leading to a tense reunion with his former partner (Alec Baldwin). + + James Caan + Josh Duhamel + Molly Sims + + Drama + + + TV14 + + + + Las Vegas + My Beautiful Launderette + Sam learns one of her clients is laundering money for a drug cartel through the resort; Mike is convinced he has met the woman of his dreams and works hard to persuade her to date him. + + James Caan + Josh Duhamel + Molly Sims + + Drama + + + TV14 + + + + Murdoch Mysteries + Everything Is Broken Part 1 + The brutal murder of a woman from Murdoch's past complicates his life. + + Yannick Bisson + Helene Joy + Jonny Harris + + Drama + + + TVPG + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + Paid Program + + + TV14 + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Heartland + Making the Grade + When Ty helps Jack and Tim on a cattle drive, an accident jeopardizes their plans. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Wild Child + Wild, Wild Southeast Asia + Sheinelle Jones travels to Southeast Asia to find baby animals, from the ripe reptiles to mini mammals that thrive and survive in the wild. + Reality TV + Animals + + + TVG + + + + Earth Odyssey With Dylan Dreyer + Ingenious Animals + Dylan Dreyer travels the world to find the most ingenious creatures in the animal kingdom; from mammals to amphibians, these animals show off their smarts by surviving and thriving in the wild. + Instructional + + + TVG + + + + Earth Odyssey With Dylan Dreyer + European Vacation + Dylan Dreyer heads east of the Atlantic to see the incredible animals living in Europe's mountains, valleys and riverbanks. + Instructional + + + TVG + + + + Wild Child + Stars of the Southern Hemisphere + Sheinelle Jones travels back to Australia, Argentina and Southeast Asia to revisit the most incredible animals she's met in the Southern Hemisphere. + Reality TV + Animals + + + TVG + + + + Harlem Globetrotters: Play It Forward + Back to the Moon + The Globetrotters visit NASA's Kennedy Space Center to learn how teamwork gets a rocket to the moon and back, travel to Phoenix to help empower and motivate a renowned after-school program's youth and remember some favorite places around the world. + Instructional + Sports + + + TVG + + + + One Team: The Power of Sports + When Fates Align + Fate brought two Olympic swimmers together to save a life; figure skater Ilia Malinin aims for a 4.0 while achieving a quadruple axel; Corey Robinson sits down with a legend in the Huddle. + Reality TV + + + TVG + + + + Roots Less Traveled + Connecting to the Civil War + Father and daughter Paul and Kalina visit a Civil War battleground in Virginia to discover Paul's great-grandfather Austin D. Springer was a Union Army drummer boy who was taken prisoner by the Confederate Army but escaped and hid in slave huts. + Reality TV + + + TVG + + + + The Voyager With Josh Garcia + Pizza Perfection + Josh visits Naples, Italy, where he takes a cruise, learns a traditional dance and tries local cuisine. + Travel + + + TVG + + + + Bones + The Beaver in the Otter + The body of a fraternity brother is discovered inside a rival school's mascot uniform; Booth tries to help his brother find a new job. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The Critic in the Cabernet + Brennan asks Booth to be the father of her child; Stewie Griffin (Seth MacFarlane) offers the couple advice. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The End in the Beginning + When a body is discovered at a popular nightclub, everyone is a suspect. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + Harbingers in the Fountain + Angela's psychic, Avalon Harmonia (Cyndi Lauper), alerts Brennan and Booth to the presence of a mass grave beneath a fountain. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The Bond in the Boot + Booth and Brennan investigate when a man is murdered for the undisclosed contents of his briefcase; the team looks for alternate funding for Wendell when he loses his scholarship. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The Plain in the Prodigy + Human remains are found next to a railroad; Cam deals with the stress of being a new parent; Booth tries to keep Cam's stepdaughter in line. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Meet the Press + Interviews with public figures and those making news, setting the political agenda and spotlighting the impact Washington decision-making has on Americans. + Talk Shows + Political + + + + Bones + A Night at the Bones Museum + Brennan and Booth investigate what appear to be charred human remains on an electrical fence; Brennan goes on a date with Booth's supervisor; Sweets' girlfriend returns to the Jeffersonian. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The Tough Man in the Tender Chicken + The Jeffersonian team investigates when the mutilated remains of a chicken farmer are found near a river; the case prompts Angela to launch an animal-rights campaign. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Monk + Mr. Monk on Wheels + When Natalie unwittingly helps a thief steal the bicycle of a biotech CEO (Bradley Whitford), she ropes Monk into solving the crime. + + Tony Shalhoub + Ted Levine + Traylor Howard + + Comedy + Drama + + + TVPG + + + + Monk + Mr. Monk and the Other Brother + Monk's half-brother, Jack Jr., breaks into Monk's apartment and manipulates him into helping find the person Jack Jr. claims framed him for murder. + + Tony Shalhoub + Ted Levine + Traylor Howard + + Comedy + Drama + + + TVPG + + + + Monk + Mr. Monk Fights City Hall + When the parking garage where his wife was killed is set for demolition, Monk intervenes, but finds himself investigating the disappearance of a city official who is key to preserving the site. + + Tony Shalhoub + Ted Levine + Traylor Howard + + Comedy + Drama + + + TVPG + + + + Las Vegas + When You Got to Go, You Got to Go + When Ed is kidnapped, Danny and Mike franticly search the city for him, a task made more difficult by Ed refusing to let them call the police or pay the ransom. + + James Caan + Josh Duhamel + Molly Sims + + Drama + + + TV14 + + + + Las Vegas + Sperm Whales and Spearmint Rhinos + A hotel guest is an apparent suicide, but further investigation by Delinda points to murder, so she sends Danny and Ed to search for the killer. + + James Caan + Josh Duhamel + Molly Sims + + Drama + + + TV14 + + + + Las Vegas + The Lie Is Cast + Danny's generous act gets him into trouble with the police, leaving Ed to clean up the mess; Delinda enlists the aid of a singer to convince the chef that the restaurant should be open for lunch. + + James Caan + Josh Duhamel + Molly Sims + + Drama + + + TV14 + + + + Las Vegas + Whale of a Time + A beautiful former co-worker pays a visit to Ed, but her presence puts everyone in danger; when Delinda and Nessa compete for the attentions of a high roller, their friendly competition quickly gets out of hand. + + James Caan + Josh Duhamel + Molly Sims + + Drama + + + TV14 + + + + Las Vegas + Can You See What I See? + Ed decides to shake things up as the casino enters the slow season, so he orders the staff to swap jobs. + + James Caan + Josh Duhamel + Molly Sims + + Drama + + + TV14 + + + + Murdoch Mysteries + Everything Is Broken Part 2 + Reeling from a personal revelation, Murdoch seeks to avenge the murder of Anna Fulford. + + Yannick Bisson + Helene Joy + Jonny Harris + + Drama + + + TVPG + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + Paid Program + + + TV14 + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Heartland + Risky Business + Amy and Cass try to save a racehorse with a career-ending condition; when Tim's ex-girlfriend arrives, he sees his new relationship differently. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Little House on the Prairie + The Wolves + A pack of wild dogs, crazed with hunger, kills the livestock of Walnut Grove farmers. With Michael Landon, Karen Grassle, Melissa Sue Anderson and Melissa Gilbert. + + Michael Landon + Karen Grassle + Melissa Gilbert + + Drama + + + TVG + + + + Little House on the Prairie + The Creeper of Walnut Grove + After an unknown thief plagues Walnut Grove, Laura (Melissa Gilbert) and her friend investigate. With Michael Landon and Karen Grassle. + + Michael Landon + Karen Grassle + Melissa Gilbert + + Drama + + + TVG + + + + Little House on the Prairie + To Run and Hide + Doc Baker (Kevin Hagen) decides to retire after a patient dies. With Michael Landon, Karen Grassle, Melissa Sue Anderson and Melissa Gilbert. + + Michael Landon + Karen Grassle + Melissa Sue Anderson + + Drama + + + TVPG + + + + Emergency! + Insanity Epidemic + The paramedics dread an upcoming inspection by their reportedly strict battalion commander; an accident traps teenagers in their car. + + Robert Fuller + Julie London + Bobby Troup + + Drama + + + TVPG + + + + Emergency! + Breakdown + Over the objections of the station repairman, Gage and DeSoto attempt to fix a rescue vehicle themselves, with embarrassing results. + + Robert Fuller + Julie London + Bobby Troup + + Drama + + + TVPG + + + + Emergency! + Family Ties + Early and Brackett compete for a working vacation in Hawaii; DeSoto frets about an impending visit from his critical mother-in-law. + + Robert Fuller + Julie London + Bobby Troup + + Drama + + + TVPG + + + + Monk + Mr. Monk Takes a Punch + During a case, Monk meets a boxer trying to make an in-ring comeback, which inspires him to try to get reinstated. + + Tony Shalhoub + Ted Levine + Traylor Howard + + Comedy + Drama + + + TVPG + + + + Monk + Mr. Monk and the Genius + Monk goes up against a chess genius who always seems to be two steps ahead of him. + + Tony Shalhoub + Ted Levine + Traylor Howard + + Comedy + Drama + + + TVPG + + + + Monk + Mr. Monk Is Underwater + When Monk investigates a death aboard a submarine, the vessel suddenly descends, trapping Monk and the crew underwater. + + Tony Shalhoub + Ted Levine + Traylor Howard + + Comedy + Drama + + + TVPG + + + + Bones + The Crank in the Shaft + Booth and Brennan investigate when the remains of a disliked office manager are found in a building elevator shaft; Angela and Hodgins try to figure out their altered relationship. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The He in the She + Skeletal remains with remnants of breast implants are found in the Chesapeake Bay; when the body's lower half is discovered, the team realizes that initial assumptions about the victim may be wrong. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Mom + Jell-O Shots and the Truth About Santa + Bonnie pushes Christy to mend her relationship with Violet; Adam prepares for the grand opening of his bar. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + Young Sheldon + Quirky Eggheads and Texas Snow Globes + After Dr. Sturgis experiences a nervous breakdown, Mary worries Sheldon is headed down a similar path; Georgie discovers he has a knack for sales. + + Iain Armitage + Zoe Perry + Lance Barber + + Sitcom + + + TVPG + + + + Frasier + Love Bites Dog + Pleasantly surprised by the woman Roz set him up with on a blind date, Frasier ends up competing with Bulldog for her attentions. + + Kelsey Grammer + John Mahoney + Jane Leeves + + Sitcom + + + TVPG + + + + Frasier + The Impossible Dream + Frasier seeks help deciphering a recurring dream from friends and family. + + Kelsey Grammer + John Mahoney + Jane Leeves + + Sitcom + + + TVPG + + + + Frasier + A Crane's Critique + After pursuing a reclusive author, Frasier and Niles return to find the esteemed writer having a beer with their father. + + Kelsey Grammer + John Mahoney + Jane Leeves + + Sitcom + + + TVPG + + + + Frasier + Head Game + Niles fills in for Frasier on the radio and helps an NBA star out of a slump. + + Kelsey Grammer + John Mahoney + Jane Leeves + + Sitcom + + + TVPG + + + + Roseanne + Therapy + Roseanne visits a therapist with Jackie; Arnie persuades Dan to hire a tattoo artist for the motorcycle shop. + + Roseanne Arnold + John Goodman + Alicia Goranson + + Sitcom + + + TVPG + + + + Roseanne + Lies + Darlene seeks advice from Dan and Becky but not Roseanne; Roseanne worries about passing a lie detector test. + + Roseanne Arnold + John Goodman + Alicia Goranson + + Sitcom + + + TVPG + + + + The Nanny + Fran Lite + Mr. Sheffield goes to a hot new club with Fran and Val and meets a woman who looks and sounds exactly like Fran. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + The Playwright + A former high-school classmate (guest star Richard Kind) of Fran's (Fran Drescher) threatens to jump off a ledge unless she marries him. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + Everybody Needs a Bubby + Fran's (Fran Drescher) Grandma Yetta (guest star Ann Guilbert) moves in with the Sheffields while her retirement home is treated for termites. Also starring Charles Shaughnessy. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + Material Fran + A millionaire (Efrem Zimbalist Jr.) invites Fran (Fran Drescher) to go to dinner with him -- in Paris. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + Roseanne + Girl Talk + Dan does not like Roseanne meddling in Becky's marital problems. + + Roseanne Arnold + John Goodman + Sarah Chalke + + Sitcom + + + TVPG + + + + Roseanne + Sleeper + David reveals the woman who appeared in his racy dream, disquieting all. + + Roseanne Arnold + John Goodman + Sarah Chalke + + Sitcom + + + TVPG + + + + 3rd Rock From the Sun + Two-Faced Dick + The Big Giant Head switches Dick's body with Sally's, causing confusion and complicating their relationships. + + John Lithgow + Jane Curtin + Kristen Johnston + + Sitcom + Sci-Fi + + + TV14 + + + + 3rd Rock From the Sun + Dick Solomon of the Indiana Solomons + The Solomons travel to Indiana to meet their family at a reunion that was actually meant for someone else. + + John Lithgow + Jane Curtin + Kristen Johnston + + Sitcom + Sci-Fi + + + TVPG + + + + Amen + Rolly's Proposal + Frye (Sherman Hemsley) sets up Rolly (Jester Hairston) with one of his in-laws (Rosetta LeNoire). + + Sherman Hemsley + Clifton Davis + Anna Maria Horsford + + Sitcom + + + TVPG + + + + Amen + Rolly's Wedding + Rolly (Jester Hairston) gets cold feet as the wedding ceremony is about to start. Rosetta LeNoire guest stars. + + Sherman Hemsley + Clifton Davis + Anna Maria Horsford + + Sitcom + + + TVPG + + + + Gimme a Break + Mama + Nell's patience is tested when her cranky mother comes to visit. + + Nell Carter + Dolph Sweet + Lauri Hendler + + Sitcom + + + TVG + + + + Gimme a Break + Addy's Goodbye + Addy takes a job in New York and then doesn't invite Nell to the going-away party. + + Nell Carter + Kari Michaelson + Lauri Hendler + + Sitcom + + + TVG + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + Heartland + Making a Move + Lou must contend with the new ranch hand and a threatening food truck when she returns from New York. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Little House on the Prairie + The Aftermath + Mary (Melissa Sue Anderson) is held hostage by the outlaw Jesse James (guest star Dennis Rucker). With Michael Landon, Karen Grassle and Melissa Gilbert. + + Michael Landon + Karen Grassle + Melissa Gilbert + + Drama + + + TVG + + + + Little House on the Prairie + The High Cost of Being Right + Jonathan Garvey's barn burns down leaving the family with no means of support, but Jonathan is angry when his wife takes a job at the post office. + + Michael Landon + Karen Grassle + Melissa Gilbert + + Drama + + + TVG + + + + Little House on the Prairie + Meet Me at the Fair + Mary plans to meet a shy suitor at the Mankato Fair, until she encounters his charming balloonist boss. + + Michael Landon + Karen Grassle + Melissa Gilbert + + Drama + + + TVG + + + + Emergency! + Bottom Line + Paramedics out in the field begin to question the judgement of overcautious Dr. Morton who believes in acting strictly by the book. + + Robert Fuller + Julie London + Bobby Troup + + Drama + + + TVPG + + + + Emergency! + Firehouse Quintet + A heavy load of rescue calls and a sleepless night dim the hopes of Station 51 for a victory in the fire department basketball finals. + + Robert Fuller + Julie London + Bobby Troup + + Drama + + + TVPG + + + + Emergency! + The Boat + The firefighters of Station 51 negotiate for use of an expensive jet boat they plan to purchase as a group from Charlie, the mechanic. + + Robert Fuller + Julie London + Bobby Troup + + Drama + + + TVPG + + + + Monk + Mr. Monk Falls in Love + When Monk develops a crush on a model who is accused of murder, he is determined to prove her innocence, even though she confessed. + + Tony Shalhoub + Ted Levine + Traylor Howard + + Comedy + Drama + + + TVPG + + + + Monk + Mr. Monk's 100th Case + The gang gathers for a viewing party when a TV show covers Monk's handling of a serial-killer case; while watching the show, Monk realizes someone else killed the third victim. + + Tony Shalhoub + Ted Levine + Traylor Howard + + Comedy + Drama + + + TVPG + + + + Monk + Mr. Monk Gets Hypnotized + When Monk undergoes hypnosis therapy, he reverts to his 9-year-old personality. + + Tony Shalhoub + Ted Levine + Traylor Howard + + Comedy + Drama + + + TVPG + + + + Bones + The Con Man in the Meth Lab + A con man misleads the team during a murder investigation; Booth's younger brother, Jared, takes a job at the Pentagon; Brennan agrees to go on a date with Jared to a White House function. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The Passenger in the Oven + While en route to China to identify prehistoric anthropological remains, Booth and Brennan are called upon to solve a murder in midair when the flight attendant discovers a fully cooked human body in the plane's microwave. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Mom + Pork Loin and a Beat-up Monte Carlo + Christy competes with her classmates for a prestigious internship; Bonnie baby-sits Tammy following her oral surgery. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + Young Sheldon + A Broom Closet and Satan's Monopoly Board + Without Dr. Sturgis' university class, Sheldon must find a new way to stay academically challenged; Mary helps Pastor Jeff avoid temptation with his girlfriend. + + Iain Armitage + Zoe Perry + Lance Barber + + Sitcom + + + TVPG + + + + Frasier + Mixed Doubles + Niles' opportunity with Daphne slips away when he hesitates after her breakup. + + Kelsey Grammer + John Mahoney + Jane Leeves + + Sitcom + + + TVPG + + + + Frasier + A Lilith Thanksgiving + The Cranes journey to Boston to celebrate Thanksgiving with Lilith and Frederick (Bebe Neuwirth and Trevor Einhorn). + + Kelsey Grammer + John Mahoney + Jane Leeves + + Sitcom + Christmas + + + TVPG + + + + Frasier + Our Father Whose Art Ain't Heaven + Martin buys gifts for Frasier and Niles; Niles plans a party. + + Kelsey Grammer + John Mahoney + Jane Leeves + + Sitcom + + + TVPG + + + + Frasier + Dad Loves Sherry, the Boys Just Whine + Frasier and Niles discover their father is dating two women simultaneously. + + Kelsey Grammer + John Mahoney + Jane Leeves + + Sitcom + + + TVPG + + + + Roseanne + Deliverance + Crystal goes into labor, and Dan coaches her in the delivery room; Roseanne is delayed at the coffee shop. + + Roseanne Arnold + John Goodman + Alicia Goranson + + Sitcom + + + TVPG + + + + Roseanne + Secrets + Mark turns to alcohol to solve his problems with Becky, and Dan lies to Roseanne to cover both their tracks. + + Roseanne Arnold + John Goodman + Alicia Goranson + + Sitcom + + + TVPG + + + + The Nanny + Curse of the Grandmas + Fran's anniversary as a nanny for the Sheffields is coming up, but Maxwell seems to have forgotten all about it; Gracie visits a nursing home. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + The Nanny Napper + Fran is arrested on kidnapping charges when she brings home a baby who she believes has been abandoned. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + A Star Is Unborn + Fran lands the lead in an off-Broadway production of. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + Pishke Business + Fran (Fran Drescher) poses as Maxwell's (Charles Shaughnessy) business partner to convince a millionaire (Wallace Shawn) to invest in his play. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + Roseanne + Skeleton in the Closet + Roseanne's attempts to prank everybody at Leon's Halloween party. + + Roseanne Arnold + John Goodman + Sarah Chalke + + Sitcom + Christmas + + + TVPG + + + + Roseanne + Follow the Son + Roseanne is jealous of Dan's new bond with D.J.; David dislikes Darlene's new beau. + + Roseanne Arnold + John Goodman + Michael Fishman + + Sitcom + + + TVPG + + + + 3rd Rock From the Sun + Dick and Taxes + The Solomons concoct a bogus tax history when the IRS audits them. + + John Lithgow + Jane Curtin + Kristen Johnston + + Sitcom + Sci-Fi + + + TVPG + + + + 3rd Rock From the Sun + Sally Forth + The Solomons get into a battle with the landlady (Elmarie Wendel) over faulty bathroom plumbing; Don pops the question. + + John Lithgow + Jane Curtin + Kristen Johnston + + Sitcom + Sci-Fi + + + TVPG + + + + Amen + Thelma's Birthday + Reuben (Clifton Davis) becomes jealous of Thelma's (Anna Maria Horsford) relationship with another man. + + Sherman Hemsley + Clifton Davis + Anna Maria Horsford + + Sitcom + + + TVPG + + + + Amen + The Twelve Songs of Christmas + Members of the choir quarrel over the selection of a Christmas carol for the city's annual song competition. + + Sherman Hemsley + Clifton Davis + Anna Maria Horsford + + Sitcom + + + TVPG + + + + Gimme a Break + Sam's Little Girl + Samantha shirks her duties as a Big Sister to date a handsome new neighbor. + + Nell Carter + Kari Michaelson + Lauri Hendler + + Sitcom + + + TVG + + + + Gimme a Break + Katie's Apartment + Though living on her own, Katie still feels as if she's being hounded by Nell. + + Nell Carter + Kari Michaelson + Lauri Hendler + + Sitcom + + + TVG + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Ninja Woodfire Outdoor Grill + Meet the Shark Ninja Wood Fire Grill, with Master Grill, BBQ Smoke, and Air Fry outdoor capabilities. Powered by electricity and flavored by real burning wood pellets, Woodfire Technology allows you to easily create rich flavor you can see and taste. + Paid Program + + + + Heartland + Love is Just a Word + When Amy helps Cass handle a spirited horse, a lot rides on their success. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Little House on the Prairie + The Fighter + Charles take Jonathan's place in a bout with an aging fighter (Moses Gunn), but victory dims when Charles realizes the boxer is badly injured. + + Michael Landon + Karen Grassle + Melissa Gilbert + + Drama + + + TVG + + + + Little House on the Prairie + Be My Friend + Laura finds a bottle bearing a message floating downstream, then another containing an infant's picture. + + Michael Landon + Karen Grassle + Melissa Gilbert + + Drama + + + TVG + + + + Emergency! + Isolation + Stranded Gage and DeSoto, with the assistance of a local physician, provide the only medical help in a town isolated by severe rains. + + Robert Fuller + Julie London + Bobby Troup + + Drama + + + TVPG + + + + Emergency! + Limelight + The rest of the squad is resentful when Brice becomes the center of press and television attention during a series of rescue calls. + + Robert Fuller + Julie London + Bobby Troup + + Drama + + + TVPG + + + + Emergency! + Upward and Onward + A desperate producer attempts to broadcast a show from the hospital after his star is stricken just before he is to go on the air. + + Robert Fuller + Julie London + Bobby Troup + + Drama + + + TVPG + + + + Monk + Mr. Monk and the Miracle + When three homeless men seek Monk's services at the holidays, Natalie convinces him to investigate their friend's death; Stottlemeyer's faith reawakens when a visit to a monastery fountain rids him of crippling pain. + + Tony Shalhoub + Ted Levine + Traylor Howard + + Comedy + Christmas + + + TVPG + + + + Monk + Mr. Monk Makes the Playoffs + Monk and Stottlemeyer cannot go into the biggest football game of the year until they discover who tried to blow up a fan in the parking lot. + + Tony Shalhoub + Ted Levine + Traylor Howard + + Comedy + Drama + + + TVPG + + + + Richard Bangs' Adventures With Purpose -- New Zealand: Quest for Kaitiakitanga + Richard Bangs uncovers New Zealand's natural beauty and mythology. + Specials + Travel + + + TVG + + + + Rick Steves' Europe + Switzerland's Jungfrau Region: Best of the Alps + Hiking, biking and parasailing in the Swiss Alps; riding Europe's highest lift up the Jungfrau. + Travel + + + TVG + + + + Christopher Kimball's Milk Street Television + Breakfast Baking + Liberian banana-rice bread; Swedish cardamom buns; sweet and tangy orange-cranberry soda bread with white chocolate chunks. + Instructional + Food + + + TVG + + + + Pati's Mexican Table + Mexican Wine Country + The wine region of Valle de Guadalupe. + Food + + + TVG + + + + The Great American Recipe + Love Language + From first date cuisine to sentimental recipes passed down through generations, eight cooks prepare comfort foods and a dish inspired by a loved one. + Food + + + TVPG + + + + The Best of the Joy of Painting + Graceful Waterfall + An elegant waterfall deep in the forest. + Instructional + Arts & Entertainment + + + TVG + + + + The Best of the Joy of Painting + Secluded Forest + Painting the deepest, darkest place in the forest on a vertical canvas. + Instructional + Arts & Entertainment + + + TVG + + + + Richard Bangs' Adventures With Purpose -- New Zealand: Quest for Kaitiakitanga + Richard Bangs uncovers New Zealand's natural beauty and mythology. + Specials + Travel + + + TVG + + + + Baking With Julia + Tarts and Pies With Leslie Mackie + Leslie Mackie prepares a French apple tart, a fruit and yogurt tart, a blueberry-nectarine pie and raspberry-fig crostata. + Food + Instructional + + + TVG + + + + Welcome to My Farm + Apple of My Eye + Picking apples at an orchard; baking a pie; mixing up a batch of homemade apple cider vinegar; making apple snacks for the chickens. + Regular + + + TVG + + + + George Hirsch Lifestyle + The Amazing Potato + Potato-crusted chicken; farmers vegetable gratin; sweet potato pie; the roots of Long Island potato farming; a family that grows and cooks its own small-batch artisanal potato chips. + Food + + + TVG + + + + Cook's Country + Fried Chicken and Biscuits + Lard-fried chicken; a tasting of regional potato chips; BLT salad; blueberry biscuits. + Food + + + TVG + + + + Modern Pioneering With Georgia Pellegrini + Traditions in Tuscany + A visit to Italy's Tuscany region includes truffle hunting, making fresh pasta, tasting wine and sampling cheese. + Travel + Food + + + TVG + + + + Ellie's Real Good Food + Cheese-Crazy Daddy + Skillet macaroni and cheese; Parmesan-crusted chicken breast; pan-steamed broccoli with lemon, garlic and parsley. + Food + Instructional + + + TVG + + + + Modern Pioneering With Georgia Pellegrini + Traditions in Tuscany + A visit to Italy's Tuscany region includes truffle hunting, making fresh pasta, tasting wine and sampling cheese. + Travel + Food + + + TVG + + + + Ellie's Real Good Food + Cheese-Crazy Daddy + Skillet macaroni and cheese; Parmesan-crusted chicken breast; pan-steamed broccoli with lemon, garlic and parsley. + Food + Instructional + + + TVG + + + + The Best of the Joy of Painting + Graceful Waterfall + An elegant waterfall deep in the forest. + Instructional + Arts & Entertainment + + + TVG + + + + The Best of the Joy of Painting + Secluded Forest + Painting the deepest, darkest place in the forest on a vertical canvas. + Instructional + Arts & Entertainment + + + TVG + + + + The Great American Recipe + Love Language + From first date cuisine to sentimental recipes passed down through generations, eight cooks prepare comfort foods and a dish inspired by a loved one. + Food + + + TVPG + + + + Richard Bangs' Adventures With Purpose -- New Zealand: Quest for Kaitiakitanga + Richard Bangs uncovers New Zealand's natural beauty and mythology. + Specials + Travel + + + TVG + + + + Ellie's Real Good Food + Cheese-Crazy Daddy + Skillet macaroni and cheese; Parmesan-crusted chicken breast; pan-steamed broccoli with lemon, garlic and parsley. + Food + Instructional + + + TVG + + + + Christina Cooks: Back to the Cutting Board + What a Gutsy Move + Carrot parsnip tatin; burdock kinpira; winter vegetable salad; miso varieties, how to use them and their impact on digestion; pre and probiotics; fermented foods. + Food + Instructional + + + TVG + + + + Classical Stretch: By Essentrics + Leg Toning + A full-body standing and floor workout stretches and strengthens all muscles and tones the lower body. + Health + + + TVG + + + + Happy Yoga With Sarah Starr + Sunflowers at Dusk + Gentle sun salutations; accessible moves to improve posture and strengthen the core while activating hip flexors and quadriceps. + Health + + + TVG + + + + It's Sew Easy + Tips and Tricks + Finishing a skirt with buttons and buttonholes; a lesson on combining multiple patterns. + Instructional + + + TVG + + + + Painting and Travel With Roger & Sarah Bansemer + Florida Waterways, Part 2 + St. Augustine Alligator Farm in Florida, home to many birds and 800 alligators and crocodiles; Roger adds details to his large Florida wilderness landscape painting. + Travel + Instructional + + + TVG + + + + Classical Stretch: By Essentrics + Spine Strengthening + Strengthening the spine. + Health + + + TVG + + + + Classical Stretch: By Essentrics + Leg Toning + A full-body standing and floor workout stretches and strengthens all muscles and tones the lower body. + Health + + + TVG + + + + Ellie's Real Good Food + No Brainer Breakfasts + Make-ahead mini frittatas with leeks and asparagus; morning glory baked oatmeal; peanut butter and grapes wrap; avocado toast with egg. + Food + Instructional + + + TVG + + + + Christina Cooks: Back to the Cutting Board + The 3 C's of Health -- Carrots, Cauliflower and Cabbage + Split pea cauliflower bisque; carrots osso buco; spicy Asian cole slaw; brine pickles of carrots, cabbage and cauliflower; nightshade vegetables and health. + Food + Instructional + + + TVG + + + + Trails to Oishii Tokyo + Japanese food available at Tokyo's iconic market, from seafood to produce. + Travel + + + TVG + + + + Journeys in Japan + English-speaking visitors travel the length of Japan, exploring the local culture, meeting the people and offering travel hints rarely found in guidebooks. + Travel + + + TVG + + + + J Schwanke's Life in Bloom + Mum's the Word + The many shapes and sizes of the chrysanthemum; a visit to a flower farm; chrysanthemum cocktail. + Instructional + + + TVG + + + + Family Plot: Gardening in the Mid-South + Horticulture expert Dr. Chris Cooper and other experts share their garden wisdom and answer e-mails and letters about lawn and gardens. + Regular + + + TVG + + + + Jazzy Vegetarian + A Taste of Italy + Spaghetti and wheatballs; egg-free Caesar salad with cashew parmesan; pear, apple and walnut crostata. + Instructional + Food + + + TVG + + + + Christina Cooks: Back to the Cutting Board + How It All Vegan + The Italian history of food; recipes include creamy pasta e fagioli and sauteed escarole with raisins and pine nuts. + Food + Instructional + + + TVG + + + + Christopher Kimball's Milk Street Television + All-Star Vegetables + Indian-spiced butternut squash soup with yogurt; lentils with Swiss chard and pomegranate molasses; cauliflower steaks with chipotle-cashew sauce. + Instructional + Food + + + TVG + + + + Jazzy Vegetarian + Fabulous Fall Fare + Cauliflower, sweet potato and celery chowder; butternut squash with apples and cranberries; kale with creamy walnut sauce. + Instructional + Food + + + TVG + + + + Sara's Weeknight Meals + No Meat, All Flavor + Korean barbecue tacos; spaghetti squash with goat cheese sauce; vanilla beans; dried fruit pot stickers. + Food + + + TVG + + + + Jazzy Vegetarian + Sunday Brunch + A plant-based morning meal consists of vegan spinach-tomato omelet, baked home fries, breakfast sunshine salad and coconut-grape muffins.Guests: Julieanna Hever.. + Instructional + Food + + + TVG + + + + Christopher Kimball's Milk Street Television + Greek Meze + Classic Greek dishes; Greek meatballs with tomato sauce; Greek-style baked white beans in tomato sauce; Greek baked vegetables garnished with feta and olive oil. + Instructional + Food + + + TVG + + + + Jazzy Vegetarian + Holiday Brunch + Vegan spinach, onion and red pepper crustless quiche; baby greens, carrot and cranberry salad; lemon-cranberry muffins; maple-chocolate pots de creme. + Instructional + Food + + + TVG + + + + Steven Raichlen's Project Fire + Killer Barbecue -- Hold the Meat + Nashville hot cauliflower; smoked acorn squash with Parmesan flan; a new raclette. + Instructional + Food + + + TVG + + + + Jazzy Vegetarian + Easy Vegan Weeknight Meal + A family-style menu featuring tofu tomato bake, crisp green salad with peppers, tomatoes and sunflower seeds and Laura's jazzy cookies. + Instructional + Food + + + TVG + + + + The Dooky Chase Kitchen: Leah's Legacy + Dooky Chase's Second Act + Stuffed eggplant with shrimp and crabmeat; pan-seared whole trout; spicy jalapeno hibiscus margarita. + Food + Instructional + + + TVG + + + + Family Ingredients + O'ahu Mango + Surfer, photographer, actor and environmentalist Ha'a Keaulana promotes food sustainability to protect Makaha Beach's fragile ecosystem. + Food + + + TVPG + + + + A Chef's Life + Liver Lover + A simple beef liver and onions recipe inspires Vivian to add a fancy liver dish to the menu. + Reality TV + Food + + + TVG + + + + Lidia's Kitchen + A Kind Gesture + Freezer-friendly pork guazzetto with beans; wine; baking an apple cranberry crumble. + Food + + + TVG + + + + Moveable Feast With Relish + Rhode Island + Chefs Eli Dunn and Andrew McQuesten introduce their innovative styles of sustainable cuisine; an eco-friendly oyster hatchery; a cliffside feast features grilled oysters, clam chowder and a New England blueberry pie. + Food + + + TVG + + + + Cook's Country + Seafood Two Ways + Seafood fra diavolo; when to splurge at the grocery store; roasted garlic-parmesan bread; salmon piccata. + Food + + + TVG + + + + The Great American Recipe + Moveable Feasts + From picnics to tailgating to poolside, seven cooks prepare grab-and-go handheld treats and the ultimate in outdoor dining. + Food + + + TVPG + + + + Jazzy Vegetarian + A Taste of Italy + Spaghetti and wheatballs; egg-free Caesar salad with cashew parmesan; pear, apple and walnut crostata. + Instructional + Food + + + TVG + + + + Christina Cooks: Back to the Cutting Board + How It All Vegan + The Italian history of food; recipes include creamy pasta e fagioli and sauteed escarole with raisins and pine nuts. + Food + Instructional + + + TVG + + + + Richard Bangs' Adventures With Purpose Norway: Quest for the Viking Spirit + Richard Bangs seeks a modern Viking spirit in Norway's Arctic north, its mountainous sea coast and its cities. + Specials + Travel + + + TVG + + + + Yan Can Cook: Spice Kingdom + Back to Roots + Dinner with a farming family; authentic farmers cooking. + Instructional + Food + + + TVG + + + + Lidia's Kitchen + Chicken for Dinner + Balsamic chicken with an Italian-style sweet-and-sour glaze; chicken legs with artichokes and apple cider vinegar; chicken scaloppine in lemon caper sauce with fresh spinach. + Food + + + TVG + + + + Christopher Kimball's Milk Street Television + Udon Noodles at Home + Making udon noodles with Japanese cooking instructor Sonoko Sakai; udon noodles in soy broth and udon noodles with spicy meat and mushroom sauce.Guests: Sonoko Sakai.. + Instructional + Food + + + TVG + + + + America's Test Kitchen From Cook's Illustrated + Chinese Noodles and Meatballs + Sichuan noodles with chili sauce and pork; mortars and pestles; Lion's Head meatballs. + Instructional + Food + + + TVG + + + + America's Test Kitchen From Cook's Illustrated + Breakfast Baking + Yeasted doughnuts; vegan chocolate ice cream tasting; banana muffins with coconut and macadamia. + Instructional + Food + + + TVG + + + + Christina Cooks: Back to the Cutting Board + The 3 C's of Health -- Carrots, Cauliflower and Cabbage + Split pea cauliflower bisque; carrots osso buco; spicy Asian cole slaw; brine pickles of carrots, cabbage and cauliflower; nightshade vegetables and health. + Food + Instructional + + + TVG + + + + Jazzy Vegetarian + A Taste of Italy + Spaghetti and wheatballs; egg-free Caesar salad with cashew parmesan; pear, apple and walnut crostata. + Instructional + Food + + + TVG + + + + Christina Cooks: Back to the Cutting Board + How It All Vegan + The Italian history of food; recipes include creamy pasta e fagioli and sauteed escarole with raisins and pine nuts. + Food + Instructional + + + TVG + + + + The Great American Recipe + Moveable Feasts + From picnics to tailgating to poolside, seven cooks prepare grab-and-go handheld treats and the ultimate in outdoor dining. + Food + + + TVPG + + + + Richard Bangs' Adventures With Purpose Norway: Quest for the Viking Spirit + Richard Bangs seeks a modern Viking spirit in Norway's Arctic north, its mountainous sea coast and its cities. + Specials + Travel + + + TVG + + + + Ellie's Real Good Food + No Brainer Breakfasts + Make-ahead mini frittatas with leeks and asparagus; morning glory baked oatmeal; peanut butter and grapes wrap; avocado toast with egg. + Food + Instructional + + + TVG + + + + Christina Cooks: Back to the Cutting Board + The 3 C's of Health -- Carrots, Cauliflower and Cabbage + Split pea cauliflower bisque; carrots osso buco; spicy Asian cole slaw; brine pickles of carrots, cabbage and cauliflower; nightshade vegetables and health. + Food + Instructional + + + TVG + + + + Craft in America + Process + Why a person chooses a career in craft; artists who have turned to craft as a second career later in life. + History + Documentary + + + TVPG + + + + Best of Sewing With Nancy + The Absolute Easiest Way to Sew, Part 1 + Easy ways to layout, cut and mark fabric; sewing darts; gathering four different ways; adding elastic. + Instructional + + + TVG + + + + Paint This With Jerry Yarnell + Prairie Magic, Part 3 + Blending the corners; pulling the rain over the prairie grass by skimming and feathering all the edges. + Instructional + + + TVG + + + + This Old House + Lexington: Reworked and Rewired + The fully framed front of the house is revealed; work continues on the geothermal system; the connection to the interior is made; blocking is installed in the framing; replacing and rewiring old receptacles. + Home + Instructional + + + TVG + + + + Ask This Old House + Thermostat; Solar + Roger teaches Kevin about lengths to consider when mowing the lawn; Richard installs a thermostat that interfaces with a smartphone to save energy and money; Ross walks Kevin through the installation of a photovoltaic solar array on a barn. + Home + Instructional + + + TVG + + + + Dining with the Chef + Hosts Yu Hayami and Patrick Harlan, with the help of Japanese chefs Tatsuo Saito and Rika Yukimasa, introduce Americans to the techniques, ingredients and harmony of Japanese cuisine. + Food + + + TVG + + + + Fit to Eat + All About Gulf Coast Seafood + Cooking fresh Gulf Coast shrimp fajitas; touring Desporte Seafood Market in Biloxi, Miss.; healthyGuests: Joe Spraggins, Rebecca Turner.. + Health + Food + + + TVG + + + + Outdoor Nevada + Travel the state with host John Burke for outdoor adventures. + Talk Shows + + + TVG + + + + Ireland With Michael + A Taste of Cork + Ballymaloe Cookery School; Ballycotton Lighthouse and port; exploring the English Market; Shelly O'Grady and Cork musician Cormac O'Hanlon perform; sampling rare whisky from Midleton Distillery; Cobh, the last land stop for the Titanic. + Travel + + + TVG + + + + Rick Steves' Europe + The Majesty of Madrid + Madrid, Spain; museums; Picasso masterpiece; flamenco dancers. + Travel + + + TVG + + + + The Best of the Joy of Painting + Early Autumn + A mountain oval spotlights the first signs of autumn. + Instructional + Arts & Entertainment + + + TVG + + + + Baking With Julia + Triple Chocolate Truffle Treat With David Ogonowski + David Ogonowski makes crispy cocoa cookies, chocolate truffle tartlets and chocolate waves. + Food + Instructional + + + TVG + + + + Yan Can Cook: Spice Kingdom + One Belt, One Road, One World + The Silk Road railway connects Chengdu, China, to Western Europe by high speed train; sampling new food imports from Spain and Denmark. + Instructional + Food + + + TVG + + + + Best of Sewing With Nancy + The Absolute Easiest Way to Sew, Part 1 + Easy ways to layout, cut and mark fabric; sewing darts; gathering four different ways; adding elastic. + Instructional + + + TVG + + + + Paint This With Jerry Yarnell + Prairie Magic, Part 3 + Blending the corners; pulling the rain over the prairie grass by skimming and feathering all the edges. + Instructional + + + TVG + + + + This Old House + Lexington: Reworked and Rewired + The fully framed front of the house is revealed; work continues on the geothermal system; the connection to the interior is made; blocking is installed in the framing; replacing and rewiring old receptacles. + Home + Instructional + + + TVG + + + + Ask This Old House + Thermostat; Solar + Roger teaches Kevin about lengths to consider when mowing the lawn; Richard installs a thermostat that interfaces with a smartphone to save energy and money; Ross walks Kevin through the installation of a photovoltaic solar array on a barn. + Home + Instructional + + + TVG + + + + Best of Sewing With Nancy + The Absolute Easiest Way to Sew, Part 1 + Easy ways to layout, cut and mark fabric; sewing darts; gathering four different ways; adding elastic. + Instructional + + + TVG + + + + America's Test Kitchen + Seafood Feast + Portuguese seafood stew; fish sticks; the science of blanching; broiled shrimp. + Instructional + Food + + + TVG + + + + Baking With Julia + Triple Chocolate Truffle Treat With David Ogonowski + David Ogonowski makes crispy cocoa cookies, chocolate truffle tartlets and chocolate waves. + Food + Instructional + + + TVG + + + + Fit to Eat + All About Gulf Coast Seafood + Cooking fresh Gulf Coast shrimp fajitas; touring Desporte Seafood Market in Biloxi, Miss.; healthyGuests: Joe Spraggins, Rebecca Turner.. + Health + Food + + + TVG + + + + Outdoor Nevada + Travel the state with host John Burke for outdoor adventures. + Talk Shows + + + TVG + + + + Ireland With Michael + A Taste of Cork + Ballymaloe Cookery School; Ballycotton Lighthouse and port; exploring the English Market; Shelly O'Grady and Cork musician Cormac O'Hanlon perform; sampling rare whisky from Midleton Distillery; Cobh, the last land stop for the Titanic. + Travel + + + TVG + + + + Rick Steves' Europe + The Majesty of Madrid + Madrid, Spain; museums; Picasso masterpiece; flamenco dancers. + Travel + + + TVG + + + + The Dooky Chase Kitchen: Leah's Legacy + Queen's Day + Celebrating Queen's Day in honor of chef Leah Chase with seafood stew, fish cakes with citrus beurre blanc and Queen's Cake paired with the cocktail Zoe's Dream. + Food + Instructional + + + TVG + + + + Family Ingredients + California Smoked Fish + Connections between Hawaiian families and their favorite family recipes. + Food + + + TVPG + + + + Cook's Country + Two Tastes From the Bay Area + Bryan Roof visits Oakland, Calif., and shares his version of sinigang; the backstory of the food incubator La Cocina; Neorm sach moan. + Food + + + TVG + + + + America's Test Kitchen From Cook's Illustrated + Pork Chops and Blondies + Mustardy apple butter-glazed pork chops; a white chocolate chip tasting; reviewing grill spatulas; the secrets to browned butter blondies. + Instructional + Food + + + TVG + + + + The Dooky Chase Kitchen: Leah's Legacy + Queen's Day + Celebrating Queen's Day in honor of chef Leah Chase with seafood stew, fish cakes with citrus beurre blanc and Queen's Cake paired with the cocktail Zoe's Dream. + Food + Instructional + + + TVG + + + + Christopher Kimball's Milk Street Television + All-Star Vegetables + Indian-spiced butternut squash soup with yogurt; lentils with Swiss chard and pomegranate molasses; cauliflower steaks with chipotle-cashew sauce. + Instructional + Food + + + TVG + + + + Jazzy Vegetarian + Fabulous Fall Fare + Cauliflower, sweet potato and celery chowder; butternut squash with apples and cranberries; kale with creamy walnut sauce. + Instructional + Food + + + TVG + + + + Rick Steves' Europe + The Majesty of Madrid + Madrid, Spain; museums; Picasso masterpiece; flamenco dancers. + Travel + + + TVG + + + + Ireland With Michael + A Taste of Cork + Ballymaloe Cookery School; Ballycotton Lighthouse and port; exploring the English Market; Shelly O'Grady and Cork musician Cormac O'Hanlon perform; sampling rare whisky from Midleton Distillery; Cobh, the last land stop for the Titanic. + Travel + + + TVG + + + + In the Americas With David Yetman + Father Kino and the Southwest + Missionary Eusebio Francisco Kino, founder of the Mission San Xavier del Bac, which became known as the architectural masterpiece of the Southwest. + Travel + + + TVG + + + + The Best of the Joy of Painting + Early Autumn + A mountain oval spotlights the first signs of autumn. + Instructional + Arts & Entertainment + + + TVG + + + + The Dooky Chase Kitchen: Leah's Legacy + Queen's Day + Celebrating Queen's Day in honor of chef Leah Chase with seafood stew, fish cakes with citrus beurre blanc and Queen's Cake paired with the cocktail Zoe's Dream. + Food + Instructional + + + TVG + + + + America's Test Kitchen From Cook's Illustrated + Pork Chops and Blondies + Mustardy apple butter-glazed pork chops; a white chocolate chip tasting; reviewing grill spatulas; the secrets to browned butter blondies. + Instructional + Food + + + TVG + + + + Family Ingredients + California Smoked Fish + Connections between Hawaiian families and their favorite family recipes. + Food + + + TVPG + + + + Cook's Country + Two Tastes From the Bay Area + Bryan Roof visits Oakland, Calif., and shares his version of sinigang; the backstory of the food incubator La Cocina; Neorm sach moan. + Food + + + TVG + + + + Christopher Kimball's Milk Street Television + All-Star Vegetables + Indian-spiced butternut squash soup with yogurt; lentils with Swiss chard and pomegranate molasses; cauliflower steaks with chipotle-cashew sauce. + Instructional + Food + + + TVG + + + + Jazzy Vegetarian + Fabulous Fall Fare + Cauliflower, sweet potato and celery chowder; butternut squash with apples and cranberries; kale with creamy walnut sauce. + Instructional + Food + + + TVG + + + + Baking With Julia + Triple Chocolate Truffle Treat With David Ogonowski + David Ogonowski makes crispy cocoa cookies, chocolate truffle tartlets and chocolate waves. + Food + Instructional + + + TVG + + + + Yan Can Cook: Spice Kingdom + One Belt, One Road, One World + The Silk Road railway connects Chengdu, China, to Western Europe by high speed train; sampling new food imports from Spain and Denmark. + Instructional + Food + + + TVG + + + + This Old House + Lexington: Reworked and Rewired + The fully framed front of the house is revealed; work continues on the geothermal system; the connection to the interior is made; blocking is installed in the framing; replacing and rewiring old receptacles. + Home + Instructional + + + TVG + + + + Ask This Old House + Thermostat; Solar + Roger teaches Kevin about lengths to consider when mowing the lawn; Richard installs a thermostat that interfaces with a smartphone to save energy and money; Ross walks Kevin through the installation of a photovoltaic solar array on a barn. + Home + Instructional + + + TVG + + + + Rick Steves' Europe + The Majesty of Madrid + Madrid, Spain; museums; Picasso masterpiece; flamenco dancers. + Travel + + + TVG + + + + The Best of the Joy of Painting + Early Autumn + A mountain oval spotlights the first signs of autumn. + Instructional + Arts & Entertainment + + + TVG + + + + Baby Makes 3 + Boy or Girl + Designing a gender-neutral nursery starts with bringing the outdoors in with a reclaimed wood wall; refurbishing an old dresser; personal project. + Home + Instructional + + + TVG + + + + J Schwanke's Life in Bloom + A Moment in Bloom + Drying fresh flowers; bouquets, crafts and projects with dried and preserved flowers; creating a bouquet, garland and wreath with dried and preserved hydrangeas; a cocktail featuring lavender bitters. + Instructional + + + TVG + + + + Quilting Arts + Artful Imagery + Resizing human figures within a composition; using paint to stamp imagery onto fabric or directly onto quilt tops to incorporate motifs without drawing. + Instructional + + + TVG + + + + Painting and Travel With Roger & Sarah Bansemer + Florida Waterways, Part 3 + The alligator's diet, habits and lifespan; adding an egret in flight to finish the Florida Waterways painting. + Travel + Instructional + + + TVG + + + + Woodsmith Shop + Top-Notch Tips + Ideas to help improve skills, including how to use tools more efficiently, build projects with more confidence and organize a workshop better. + Instructional + + + TVG + + + + J Schwanke's Life in Bloom + A Moment in Bloom + Drying fresh flowers; bouquets, crafts and projects with dried and preserved flowers; creating a bouquet, garland and wreath with dried and preserved hydrangeas; a cocktail featuring lavender bitters. + Instructional + + + TVG + + + + Welcome to My Farm + Welcome to My Winter Wonderland + Choosing a tree at a Christmas tree farm; basics for keeping chickens; beating the winter blues with lemons. + Regular + + + TVG + + + + Lidia's Kitchen + A Kind Gesture + Freezer-friendly pork guazzetto with beans; wine; baking an apple cranberry crumble. + Food + + + TVG + + + + The Daytripper + Texas Tacos Road Trip + Ray's Drive Inn in San Antonio; tacos. + Travel + + + TVG + + + + Joseph Rosendo's Travelscope + South Africa -- Into the Wild! + A visit to the Cape of Good Hope includes encounters with ostriches and a colony of 3,000 African penguins; a safari at Shamwari Game Reserve, a 61,000 acre preserve. + Travel + + + TVG + + + + Rick Steves' Europe + Highlights of Castile: Toledo and Salamanca + Castile; pickles; medieval walls; bachelorette party; troubadours. + Travel + + + TVG + + + + The Best of the Joy of Painting + Wayside Pond + A quiet pond lies in a densely covered spot hidden from the road. + Instructional + Arts & Entertainment + + + TVG + + + + Welcome to My Farm + Welcome to My Winter Wonderland + Choosing a tree at a Christmas tree farm; basics for keeping chickens; beating the winter blues with lemons. + Regular + + + TVG + + + + Lidia's Kitchen + A Kind Gesture + Freezer-friendly pork guazzetto with beans; wine; baking an apple cranberry crumble. + Food + + + TVG + + + + Quilting Arts + Artful Imagery + Resizing human figures within a composition; using paint to stamp imagery onto fabric or directly onto quilt tops to incorporate motifs without drawing. + Instructional + + + TVG + + + + Painting and Travel With Roger & Sarah Bansemer + Florida Waterways, Part 3 + The alligator's diet, habits and lifespan; adding an egret in flight to finish the Florida Waterways painting. + Travel + Instructional + + + TVG + + + + Woodsmith Shop + Top-Notch Tips + Ideas to help improve skills, including how to use tools more efficiently, build projects with more confidence and organize a workshop better. + Instructional + + + TVG + + + + J Schwanke's Life in Bloom + A Moment in Bloom + Drying fresh flowers; bouquets, crafts and projects with dried and preserved flowers; creating a bouquet, garland and wreath with dried and preserved hydrangeas; a cocktail featuring lavender bitters. + Instructional + + + TVG + + + + Quilting Arts + Artful Imagery + Resizing human figures within a composition; using paint to stamp imagery onto fabric or directly onto quilt tops to incorporate motifs without drawing. + Instructional + + + TVG + + + + Cook's Country + Thai Comforts + Khao man gai; pad gra prow; a visit to Portland, Ore.; history of holy basil. + Food + + + TVG + + + + Welcome to My Farm + Welcome to My Winter Wonderland + Choosing a tree at a Christmas tree farm; basics for keeping chickens; beating the winter blues with lemons. + Regular + + + TVG + + + + Lidia's Kitchen + A Kind Gesture + Freezer-friendly pork guazzetto with beans; wine; baking an apple cranberry crumble. + Food + + + TVG + + + + The Daytripper + Texas Tacos Road Trip + Ray's Drive Inn in San Antonio; tacos. + Travel + + + TVG + + + + Joseph Rosendo's Travelscope + South Africa -- Into the Wild! + A visit to the Cape of Good Hope includes encounters with ostriches and a colony of 3,000 African penguins; a safari at Shamwari Game Reserve, a 61,000 acre preserve. + Travel + + + TVG + + + + Rick Steves' Europe + Highlights of Castile: Toledo and Salamanca + Castile; pickles; medieval walls; bachelorette party; troubadours. + Travel + + + TVG + + + + The Dooky Chase Kitchen: Leah's Legacy + Hortensia's Garden + Re-creating Hortensia Lange's vegetable soup; Leah's strawberry shortcake; strawberry spritzer. + Food + Instructional + + + TVG + + + + Wine First + Millahue Valley, Chile + Vik Winery's terroir and wine production in the Chilean countryside. + Travel + Food + + + TVPG + + + + Kevin Belton's Cookin' Louisiana + Delta Delights: Northeast Louisiana + White bean salad; chicken and dumplings; hog's head cheese. + Instructional + Food + + + TVG + + + + Christopher Kimball's Milk Street Television + Moroccan Flatbread + The traditional, all purpose flatbread, khobz; Moroccan harissa-garlic shrimp; salmon with matbucha, a cooked salad with olive oil, garlic, tomatoes, sweet peppers and chilies. + Instructional + Food + + + TVG + + + + The Dooky Chase Kitchen: Leah's Legacy + Hortensia's Garden + Re-creating Hortensia Lange's vegetable soup; Leah's strawberry shortcake; strawberry spritzer. + Food + Instructional + + + TVG + + + + Sara's Weeknight Meals + No Meat, All Flavor + Korean barbecue tacos; spaghetti squash with goat cheese sauce; vanilla beans; dried fruit pot stickers. + Food + + + TVG + + + + Jazzy Vegetarian + Sunday Brunch + A plant-based morning meal consists of vegan spinach-tomato omelet, baked home fries, breakfast sunshine salad and coconut-grape muffins.Guests: Julieanna Hever.. + Instructional + Food + + + TVG + + + + Rick Steves' Europe + Highlights of Castile: Toledo and Salamanca + Castile; pickles; medieval walls; bachelorette party; troubadours. + Travel + + + TVG + + + + Joseph Rosendo's Travelscope + South Africa -- Into the Wild! + A visit to the Cape of Good Hope includes encounters with ostriches and a colony of 3,000 African penguins; a safari at Shamwari Game Reserve, a 61,000 acre preserve. + Travel + + + TVG + + + + The Daytripper + Texas Tacos Road Trip + Ray's Drive Inn in San Antonio; tacos. + Travel + + + TVG + + + + The Best of the Joy of Painting + Wayside Pond + A quiet pond lies in a densely covered spot hidden from the road. + Instructional + Arts & Entertainment + + + TVG + + + + The Dooky Chase Kitchen: Leah's Legacy + Hortensia's Garden + Re-creating Hortensia Lange's vegetable soup; Leah's strawberry shortcake; strawberry spritzer. + Food + Instructional + + + TVG + + + + Christopher Kimball's Milk Street Television + Moroccan Flatbread + The traditional, all purpose flatbread, khobz; Moroccan harissa-garlic shrimp; salmon with matbucha, a cooked salad with olive oil, garlic, tomatoes, sweet peppers and chilies. + Instructional + Food + + + TVG + + + + Wine First + Millahue Valley, Chile + Vik Winery's terroir and wine production in the Chilean countryside. + Travel + Food + + + TVPG + + + + Kevin Belton's Cookin' Louisiana + Delta Delights: Northeast Louisiana + White bean salad; chicken and dumplings; hog's head cheese. + Instructional + Food + + + TVG + + + + Sara's Weeknight Meals + No Meat, All Flavor + Korean barbecue tacos; spaghetti squash with goat cheese sauce; vanilla beans; dried fruit pot stickers. + Food + + + TVG + + + + Jazzy Vegetarian + Sunday Brunch + A plant-based morning meal consists of vegan spinach-tomato omelet, baked home fries, breakfast sunshine salad and coconut-grape muffins.Guests: Julieanna Hever.. + Instructional + Food + + + TVG + + + + Welcome to My Farm + Welcome to My Winter Wonderland + Choosing a tree at a Christmas tree farm; basics for keeping chickens; beating the winter blues with lemons. + Regular + + + TVG + + + + Lidia's Kitchen + A Kind Gesture + Freezer-friendly pork guazzetto with beans; wine; baking an apple cranberry crumble. + Food + + + TVG + + + + Woodsmith Shop + Top-Notch Tips + Ideas to help improve skills, including how to use tools more efficiently, build projects with more confidence and organize a workshop better. + Instructional + + + TVG + + + + J Schwanke's Life in Bloom + A Moment in Bloom + Drying fresh flowers; bouquets, crafts and projects with dried and preserved flowers; creating a bouquet, garland and wreath with dried and preserved hydrangeas; a cocktail featuring lavender bitters. + Instructional + + + TVG + + + + Rick Steves' Europe + Highlights of Castile: Toledo and Salamanca + Castile; pickles; medieval walls; bachelorette party; troubadours. + Travel + + + TVG + + + + The Best of the Joy of Painting + Wayside Pond + A quiet pond lies in a densely covered spot hidden from the road. + Instructional + Arts & Entertainment + + + TVG + + + + Conscious Living + !Vegan Mexican Fiesta! + A full-blown vegan Mexican fiesta including sweet potato and black bean quesadillas, guacamole and pico de gallo with tortilla chips. + Travel + Food + + + TVPG + + + + Yndi Yoga + Practice for Stability (Earth) + An all-level yoga practice to improve stability. + Health + Lifestyle + + + TVG + + + + Fit 2 Stitch + Different types of sewing machines and stitching, both serger and regular, and when to incorporate them. + Home + Instructional + + + TVG + + + + Painting With Wilson Bickford + Snow Glow, Part 1 + Developing a stormy sky and forested trees; underpainting a barn. + Arts & Entertainment + + + TVG + + + + Classic Woodworking + Shaker Hall Table + A Shaker-inspired hall table made out of cherry features tapered legs. + Instructional + + + TVG + + + + Yndi Yoga + Practice for Stability (Earth) + An all-level yoga practice to improve stability. + Health + Lifestyle + + + TVG + + + + Cook's Country + Thai Comforts + Khao man gai; pad gra prow; a visit to Portland, Ore.; history of holy basil. + Food + + + TVG + + + + America's Test Kitchen From Cook's Illustrated + Pork Chops and Blondies + Mustardy apple butter-glazed pork chops; a white chocolate chip tasting; reviewing grill spatulas; the secrets to browned butter blondies. + Instructional + Food + + + TVG + + + + Outside: Beyond the Lens + Utah Route 12 Road Trip + A scenic drive on Utah's Scenic Byway 12 to the majestic cliffs and slot canyons of Capitol Reef National Park. + Travel + Documentary + + + TVG + + + + Family Travel With Colleen Kelly + Best of Florida + Revisiting some of the best travel moments in Florida, including parasailing in Pensacola and dolphin spotting in the Emerald Coast. + Travel + + + TVG + + + + Rick Steves' Europe + Normandy: War-Torn Yet Full of Life + Normandy, France; lily ponds; artisans; composer Erik Satie; cuisine; pilgrims. + Travel + + + TVG + + + + The Best of the Joy of Painting + Waves of Wonder + Waves crash into a rocklined shore. + Instructional + Arts & Entertainment + + + TVG + + + + Cook's Country + Thai Comforts + Khao man gai; pad gra prow; a visit to Portland, Ore.; history of holy basil. + Food + + + TVG + + + + America's Test Kitchen From Cook's Illustrated + Pork Chops and Blondies + Mustardy apple butter-glazed pork chops; a white chocolate chip tasting; reviewing grill spatulas; the secrets to browned butter blondies. + Instructional + Food + + + TVG + + + + Fit 2 Stitch + Different types of sewing machines and stitching, both serger and regular, and when to incorporate them. + Home + Instructional + + + TVG + + + + Painting With Wilson Bickford + Snow Glow, Part 1 + Developing a stormy sky and forested trees; underpainting a barn. + Arts & Entertainment + + + TVG + + + + Classic Woodworking + Shaker Hall Table + A Shaker-inspired hall table made out of cherry features tapered legs. + Instructional + + + TVG + + + + Yndi Yoga + Practice for Stability (Earth) + An all-level yoga practice to improve stability. + Health + Lifestyle + + + TVG + + + + Fit 2 Stitch + Different types of sewing machines and stitching, both serger and regular, and when to incorporate them. + Home + Instructional + + + TVG + + + + America's Test Kitchen + Spring Chicken Dinner + Roast chicken with couscous, roasted red peppers and basil; grains; the potential of chocolate; rhubarb upside-down cake. + Instructional + Food + + + TVG + + + + The Great American Recipe + Love Language + From first date cuisine to sentimental recipes passed down through generations, eight cooks prepare comfort foods and a dish inspired by a loved one. + Food + + + TVPG + + + + The Best of the Joy of Painting + Graceful Waterfall + An elegant waterfall deep in the forest. + Instructional + Arts & Entertainment + + + TVG + + + + The Best of the Joy of Painting + Secluded Forest + Painting the deepest, darkest place in the forest on a vertical canvas. + Instructional + Arts & Entertainment + + + TVG + + + + Richard Bangs' Adventures With Purpose -- New Zealand: Quest for Kaitiakitanga + Richard Bangs uncovers New Zealand's natural beauty and mythology. + Specials + Travel + + + TVG + + + + Baking With Julia + Tarts and Pies With Leslie Mackie + Leslie Mackie prepares a French apple tart, a fruit and yogurt tart, a blueberry-nectarine pie and raspberry-fig crostata. + Food + Instructional + + + TVG + + + + Welcome to My Farm + Apple of My Eye + Picking apples at an orchard; baking a pie; mixing up a batch of homemade apple cider vinegar; making apple snacks for the chickens. + Regular + + + TVG + + + + George Hirsch Lifestyle + The Amazing Potato + Potato-crusted chicken; farmers vegetable gratin; sweet potato pie; the roots of Long Island potato farming; a family that grows and cooks its own small-batch artisanal potato chips. + Food + + + TVG + + + + Cook's Country + Fried Chicken and Biscuits + Lard-fried chicken; a tasting of regional potato chips; BLT salad; blueberry biscuits. + Food + + + TVG + + + + Modern Pioneering With Georgia Pellegrini + Traditions in Tuscany + A visit to Italy's Tuscany region includes truffle hunting, making fresh pasta, tasting wine and sampling cheese. + Travel + Food + + + TVG + + + + Ellie's Real Good Food + Cheese-Crazy Daddy + Skillet macaroni and cheese; Parmesan-crusted chicken breast; pan-steamed broccoli with lemon, garlic and parsley. + Food + Instructional + + + TVG + + + + Modern Pioneering With Georgia Pellegrini + Traditions in Tuscany + A visit to Italy's Tuscany region includes truffle hunting, making fresh pasta, tasting wine and sampling cheese. + Travel + Food + + + TVG + + + + Ellie's Real Good Food + Cheese-Crazy Daddy + Skillet macaroni and cheese; Parmesan-crusted chicken breast; pan-steamed broccoli with lemon, garlic and parsley. + Food + Instructional + + + TVG + + + + The Best of the Joy of Painting + Graceful Waterfall + An elegant waterfall deep in the forest. + Instructional + Arts & Entertainment + + + TVG + + + + The Best of the Joy of Painting + Secluded Forest + Painting the deepest, darkest place in the forest on a vertical canvas. + Instructional + Arts & Entertainment + + + TVG + + + + The Great American Recipe + Love Language + From first date cuisine to sentimental recipes passed down through generations, eight cooks prepare comfort foods and a dish inspired by a loved one. + Food + + + TVPG + + + + Richard Bangs' Adventures With Purpose -- New Zealand: Quest for Kaitiakitanga + Richard Bangs uncovers New Zealand's natural beauty and mythology. + Specials + Travel + + + TVG + + + + Ellie's Real Good Food + Cheese-Crazy Daddy + Skillet macaroni and cheese; Parmesan-crusted chicken breast; pan-steamed broccoli with lemon, garlic and parsley. + Food + Instructional + + + TVG + + + + Christina Cooks: Back to the Cutting Board + What a Gutsy Move + Carrot parsnip tatin; burdock kinpira; winter vegetable salad; miso varieties, how to use them and their impact on digestion; pre and probiotics; fermented foods. + Food + Instructional + + + TVG + + + + Classical Stretch: By Essentrics + Leg Toning + A full-body standing and floor workout stretches and strengthens all muscles and tones the lower body. + Health + + + TVG + + + + Happy Yoga With Sarah Starr + Sunflowers at Dusk + Gentle sun salutations; accessible moves to improve posture and strengthen the core while activating hip flexors and quadriceps. + Health + + + TVG + + + + It's Sew Easy + Tips and Tricks + Finishing a skirt with buttons and buttonholes; a lesson on combining multiple patterns. + Instructional + + + TVG + + + + Painting and Travel With Roger & Sarah Bansemer + Florida Waterways, Part 2 + St. Augustine Alligator Farm in Florida, home to many birds and 800 alligators and crocodiles; Roger adds details to his large Florida wilderness landscape painting. + Travel + Instructional + + + TVG + + + + Classical Stretch: By Essentrics + Spine Strengthening + Strengthening the spine. + Health + + + TVG + + + + Classical Stretch: By Essentrics + Leg Toning + A full-body standing and floor workout stretches and strengthens all muscles and tones the lower body. + Health + + + TVG + + + + Ellie's Real Good Food + No Brainer Breakfasts + Make-ahead mini frittatas with leeks and asparagus; morning glory baked oatmeal; peanut butter and grapes wrap; avocado toast with egg. + Food + Instructional + + + TVG + + + + Christina Cooks: Back to the Cutting Board + The 3 C's of Health -- Carrots, Cauliflower and Cabbage + Split pea cauliflower bisque; carrots osso buco; spicy Asian cole slaw; brine pickles of carrots, cabbage and cauliflower; nightshade vegetables and health. + Food + Instructional + + + TVG + + + + Trails to Oishii Tokyo + Japanese food available at Tokyo's iconic market, from seafood to produce. + Travel + + + TVG + + + + Journeys in Japan + English-speaking visitors travel the length of Japan, exploring the local culture, meeting the people and offering travel hints rarely found in guidebooks. + Travel + + + TVG + + + + J Schwanke's Life in Bloom + Mum's the Word + The many shapes and sizes of the chrysanthemum; a visit to a flower farm; chrysanthemum cocktail. + Instructional + + + TVG + + + + Family Plot: Gardening in the Mid-South + Horticulture expert Dr. Chris Cooper and other experts share their garden wisdom and answer e-mails and letters about lawn and gardens. + Regular + + + TVG + + + + Jazzy Vegetarian + A Taste of Italy + Spaghetti and wheatballs; egg-free Caesar salad with cashew parmesan; pear, apple and walnut crostata. + Instructional + Food + + + TVG + + + + Christina Cooks: Back to the Cutting Board + How It All Vegan + The Italian history of food; recipes include creamy pasta e fagioli and sauteed escarole with raisins and pine nuts. + Food + Instructional + + + TVG + + + + Christopher Kimball's Milk Street Television + All-Star Vegetables + Indian-spiced butternut squash soup with yogurt; lentils with Swiss chard and pomegranate molasses; cauliflower steaks with chipotle-cashew sauce. + Instructional + Food + + + TVG + + + + Jazzy Vegetarian + Fabulous Fall Fare + Cauliflower, sweet potato and celery chowder; butternut squash with apples and cranberries; kale with creamy walnut sauce. + Instructional + Food + + + TVG + + + + Sara's Weeknight Meals + No Meat, All Flavor + Korean barbecue tacos; spaghetti squash with goat cheese sauce; vanilla beans; dried fruit pot stickers. + Food + + + TVG + + + + Jazzy Vegetarian + Sunday Brunch + A plant-based morning meal consists of vegan spinach-tomato omelet, baked home fries, breakfast sunshine salad and coconut-grape muffins.Guests: Julieanna Hever.. + Instructional + Food + + + TVG + + + + Christopher Kimball's Milk Street Television + Greek Meze + Classic Greek dishes; Greek meatballs with tomato sauce; Greek-style baked white beans in tomato sauce; Greek baked vegetables garnished with feta and olive oil. + Instructional + Food + + + TVG + + + + Jazzy Vegetarian + Holiday Brunch + Vegan spinach, onion and red pepper crustless quiche; baby greens, carrot and cranberry salad; lemon-cranberry muffins; maple-chocolate pots de creme. + Instructional + Food + + + TVG + + + + Steven Raichlen's Project Fire + Killer Barbecue -- Hold the Meat + Nashville hot cauliflower; smoked acorn squash with Parmesan flan; a new raclette. + Instructional + Food + + + TVG + + + + Jazzy Vegetarian + Easy Vegan Weeknight Meal + A family-style menu featuring tofu tomato bake, crisp green salad with peppers, tomatoes and sunflower seeds and Laura's jazzy cookies. + Instructional + Food + + + TVG + + + + The Dooky Chase Kitchen: Leah's Legacy + Dooky Chase's Second Act + Stuffed eggplant with shrimp and crabmeat; pan-seared whole trout; spicy jalapeno hibiscus margarita. + Food + Instructional + + + TVG + + + + Family Ingredients + O'ahu Mango + Surfer, photographer, actor and environmentalist Ha'a Keaulana promotes food sustainability to protect Makaha Beach's fragile ecosystem. + Food + + + TVPG + + + + A Chef's Life + Liver Lover + A simple beef liver and onions recipe inspires Vivian to add a fancy liver dish to the menu. + Reality TV + Food + + + TVG + + + + Lidia's Kitchen + A Kind Gesture + Freezer-friendly pork guazzetto with beans; wine; baking an apple cranberry crumble. + Food + + + TVG + + + + Moveable Feast With Relish + Rhode Island + Chefs Eli Dunn and Andrew McQuesten introduce their innovative styles of sustainable cuisine; an eco-friendly oyster hatchery; a cliffside feast features grilled oysters, clam chowder and a New England blueberry pie. + Food + + + TVG + + + + Cook's Country + Seafood Two Ways + Seafood fra diavolo; when to splurge at the grocery store; roasted garlic-parmesan bread; salmon piccata. + Food + + + TVG + + + + The Great American Recipe + Moveable Feasts + From picnics to tailgating to poolside, seven cooks prepare grab-and-go handheld treats and the ultimate in outdoor dining. + Food + + + TVPG + + + + Jazzy Vegetarian + A Taste of Italy + Spaghetti and wheatballs; egg-free Caesar salad with cashew parmesan; pear, apple and walnut crostata. + Instructional + Food + + + TVG + + + + Christina Cooks: Back to the Cutting Board + How It All Vegan + The Italian history of food; recipes include creamy pasta e fagioli and sauteed escarole with raisins and pine nuts. + Food + Instructional + + + TVG + + + + Richard Bangs' Adventures With Purpose Norway: Quest for the Viking Spirit + Richard Bangs seeks a modern Viking spirit in Norway's Arctic north, its mountainous sea coast and its cities. + Specials + Travel + + + TVG + + + + Yan Can Cook: Spice Kingdom + Back to Roots + Dinner with a farming family; authentic farmers cooking. + Instructional + Food + + + TVG + + + + Lidia's Kitchen + Chicken for Dinner + Balsamic chicken with an Italian-style sweet-and-sour glaze; chicken legs with artichokes and apple cider vinegar; chicken scaloppine in lemon caper sauce with fresh spinach. + Food + + + TVG + + + + Christopher Kimball's Milk Street Television + Udon Noodles at Home + Making udon noodles with Japanese cooking instructor Sonoko Sakai; udon noodles in soy broth and udon noodles with spicy meat and mushroom sauce.Guests: Sonoko Sakai.. + Instructional + Food + + + TVG + + + + America's Test Kitchen From Cook's Illustrated + Chinese Noodles and Meatballs + Sichuan noodles with chili sauce and pork; mortars and pestles; Lion's Head meatballs. + Instructional + Food + + + TVG + + + + America's Test Kitchen From Cook's Illustrated + Breakfast Baking + Yeasted doughnuts; vegan chocolate ice cream tasting; banana muffins with coconut and macadamia. + Instructional + Food + + + TVG + + + + Christina Cooks: Back to the Cutting Board + The 3 C's of Health -- Carrots, Cauliflower and Cabbage + Split pea cauliflower bisque; carrots osso buco; spicy Asian cole slaw; brine pickles of carrots, cabbage and cauliflower; nightshade vegetables and health. + Food + Instructional + + + TVG + + + + Jazzy Vegetarian + A Taste of Italy + Spaghetti and wheatballs; egg-free Caesar salad with cashew parmesan; pear, apple and walnut crostata. + Instructional + Food + + + TVG + + + + Christina Cooks: Back to the Cutting Board + How It All Vegan + The Italian history of food; recipes include creamy pasta e fagioli and sauteed escarole with raisins and pine nuts. + Food + Instructional + + + TVG + + + + The Great American Recipe + Moveable Feasts + From picnics to tailgating to poolside, seven cooks prepare grab-and-go handheld treats and the ultimate in outdoor dining. + Food + + + TVPG + + + + Richard Bangs' Adventures With Purpose Norway: Quest for the Viking Spirit + Richard Bangs seeks a modern Viking spirit in Norway's Arctic north, its mountainous sea coast and its cities. + Specials + Travel + + + TVG + + + + Ellie's Real Good Food + No Brainer Breakfasts + Make-ahead mini frittatas with leeks and asparagus; morning glory baked oatmeal; peanut butter and grapes wrap; avocado toast with egg. + Food + Instructional + + + TVG + + + + Christina Cooks: Back to the Cutting Board + The 3 C's of Health -- Carrots, Cauliflower and Cabbage + Split pea cauliflower bisque; carrots osso buco; spicy Asian cole slaw; brine pickles of carrots, cabbage and cauliflower; nightshade vegetables and health. + Food + Instructional + + + TVG + + + + Craft in America + Process + Why a person chooses a career in craft; artists who have turned to craft as a second career later in life. + History + Documentary + + + TVPG + + + + Best of Sewing With Nancy + The Absolute Easiest Way to Sew, Part 1 + Easy ways to layout, cut and mark fabric; sewing darts; gathering four different ways; adding elastic. + Instructional + + + TVG + + + + Paint This With Jerry Yarnell + Prairie Magic, Part 3 + Blending the corners; pulling the rain over the prairie grass by skimming and feathering all the edges. + Instructional + + + TVG + + + + This Old House + Lexington: Reworked and Rewired + The fully framed front of the house is revealed; work continues on the geothermal system; the connection to the interior is made; blocking is installed in the framing; replacing and rewiring old receptacles. + Home + Instructional + + + TVG + + + + Ask This Old House + Thermostat; Solar + Roger teaches Kevin about lengths to consider when mowing the lawn; Richard installs a thermostat that interfaces with a smartphone to save energy and money; Ross walks Kevin through the installation of a photovoltaic solar array on a barn. + Home + Instructional + + + TVG + + + + Dining with the Chef + Hosts Yu Hayami and Patrick Harlan, with the help of Japanese chefs Tatsuo Saito and Rika Yukimasa, introduce Americans to the techniques, ingredients and harmony of Japanese cuisine. + Food + + + TVG + + + + Fit to Eat + All About Gulf Coast Seafood + Cooking fresh Gulf Coast shrimp fajitas; touring Desporte Seafood Market in Biloxi, Miss.; healthyGuests: Joe Spraggins, Rebecca Turner.. + Health + Food + + + TVG + + + + Outdoor Nevada + Travel the state with host John Burke for outdoor adventures. + Talk Shows + + + TVG + + + + Ireland With Michael + A Taste of Cork + Ballymaloe Cookery School; Ballycotton Lighthouse and port; exploring the English Market; Shelly O'Grady and Cork musician Cormac O'Hanlon perform; sampling rare whisky from Midleton Distillery; Cobh, the last land stop for the Titanic. + Travel + + + TVG + + + + Rick Steves' Europe + The Majesty of Madrid + Madrid, Spain; museums; Picasso masterpiece; flamenco dancers. + Travel + + + TVG + + + + The Best of the Joy of Painting + Early Autumn + A mountain oval spotlights the first signs of autumn. + Instructional + Arts & Entertainment + + + TVG + + + + Baking With Julia + Triple Chocolate Truffle Treat With David Ogonowski + David Ogonowski makes crispy cocoa cookies, chocolate truffle tartlets and chocolate waves. + Food + Instructional + + + TVG + + + + Yan Can Cook: Spice Kingdom + One Belt, One Road, One World + The Silk Road railway connects Chengdu, China, to Western Europe by high speed train; sampling new food imports from Spain and Denmark. + Instructional + Food + + + TVG + + + + Best of Sewing With Nancy + The Absolute Easiest Way to Sew, Part 1 + Easy ways to layout, cut and mark fabric; sewing darts; gathering four different ways; adding elastic. + Instructional + + + TVG + + + + Paint This With Jerry Yarnell + Prairie Magic, Part 3 + Blending the corners; pulling the rain over the prairie grass by skimming and feathering all the edges. + Instructional + + + TVG + + + + This Old House + Lexington: Reworked and Rewired + The fully framed front of the house is revealed; work continues on the geothermal system; the connection to the interior is made; blocking is installed in the framing; replacing and rewiring old receptacles. + Home + Instructional + + + TVG + + + + Ask This Old House + Thermostat; Solar + Roger teaches Kevin about lengths to consider when mowing the lawn; Richard installs a thermostat that interfaces with a smartphone to save energy and money; Ross walks Kevin through the installation of a photovoltaic solar array on a barn. + Home + Instructional + + + TVG + + + + Best of Sewing With Nancy + The Absolute Easiest Way to Sew, Part 1 + Easy ways to layout, cut and mark fabric; sewing darts; gathering four different ways; adding elastic. + Instructional + + + TVG + + + + America's Test Kitchen + Seafood Feast + Portuguese seafood stew; fish sticks; the science of blanching; broiled shrimp. + Instructional + Food + + + TVG + + + + Baking With Julia + Triple Chocolate Truffle Treat With David Ogonowski + David Ogonowski makes crispy cocoa cookies, chocolate truffle tartlets and chocolate waves. + Food + Instructional + + + TVG + + + + Fit to Eat + All About Gulf Coast Seafood + Cooking fresh Gulf Coast shrimp fajitas; touring Desporte Seafood Market in Biloxi, Miss.; healthyGuests: Joe Spraggins, Rebecca Turner.. + Health + Food + + + TVG + + + + Outdoor Nevada + Travel the state with host John Burke for outdoor adventures. + Talk Shows + + + TVG + + + + Ireland With Michael + A Taste of Cork + Ballymaloe Cookery School; Ballycotton Lighthouse and port; exploring the English Market; Shelly O'Grady and Cork musician Cormac O'Hanlon perform; sampling rare whisky from Midleton Distillery; Cobh, the last land stop for the Titanic. + Travel + + + TVG + + + + Rick Steves' Europe + The Majesty of Madrid + Madrid, Spain; museums; Picasso masterpiece; flamenco dancers. + Travel + + + TVG + + + + The Dooky Chase Kitchen: Leah's Legacy + Queen's Day + Celebrating Queen's Day in honor of chef Leah Chase with seafood stew, fish cakes with citrus beurre blanc and Queen's Cake paired with the cocktail Zoe's Dream. + Food + Instructional + + + TVG + + + + Family Ingredients + California Smoked Fish + Connections between Hawaiian families and their favorite family recipes. + Food + + + TVPG + + + + Cook's Country + Two Tastes From the Bay Area + Bryan Roof visits Oakland, Calif., and shares his version of sinigang; the backstory of the food incubator La Cocina; Neorm sach moan. + Food + + + TVG + + + + America's Test Kitchen From Cook's Illustrated + Pork Chops and Blondies + Mustardy apple butter-glazed pork chops; a white chocolate chip tasting; reviewing grill spatulas; the secrets to browned butter blondies. + Instructional + Food + + + TVG + + + + The Dooky Chase Kitchen: Leah's Legacy + Queen's Day + Celebrating Queen's Day in honor of chef Leah Chase with seafood stew, fish cakes with citrus beurre blanc and Queen's Cake paired with the cocktail Zoe's Dream. + Food + Instructional + + + TVG + + + + Christopher Kimball's Milk Street Television + All-Star Vegetables + Indian-spiced butternut squash soup with yogurt; lentils with Swiss chard and pomegranate molasses; cauliflower steaks with chipotle-cashew sauce. + Instructional + Food + + + TVG + + + + Jazzy Vegetarian + Fabulous Fall Fare + Cauliflower, sweet potato and celery chowder; butternut squash with apples and cranberries; kale with creamy walnut sauce. + Instructional + Food + + + TVG + + + + Rick Steves' Europe + The Majesty of Madrid + Madrid, Spain; museums; Picasso masterpiece; flamenco dancers. + Travel + + + TVG + + + + Ireland With Michael + A Taste of Cork + Ballymaloe Cookery School; Ballycotton Lighthouse and port; exploring the English Market; Shelly O'Grady and Cork musician Cormac O'Hanlon perform; sampling rare whisky from Midleton Distillery; Cobh, the last land stop for the Titanic. + Travel + + + TVG + + + + In the Americas With David Yetman + Father Kino and the Southwest + Missionary Eusebio Francisco Kino, founder of the Mission San Xavier del Bac, which became known as the architectural masterpiece of the Southwest. + Travel + + + TVG + + + + The Best of the Joy of Painting + Early Autumn + A mountain oval spotlights the first signs of autumn. + Instructional + Arts & Entertainment + + + TVG + + + + The Dooky Chase Kitchen: Leah's Legacy + Queen's Day + Celebrating Queen's Day in honor of chef Leah Chase with seafood stew, fish cakes with citrus beurre blanc and Queen's Cake paired with the cocktail Zoe's Dream. + Food + Instructional + + + TVG + + + + America's Test Kitchen From Cook's Illustrated + Pork Chops and Blondies + Mustardy apple butter-glazed pork chops; a white chocolate chip tasting; reviewing grill spatulas; the secrets to browned butter blondies. + Instructional + Food + + + TVG + + + + Family Ingredients + California Smoked Fish + Connections between Hawaiian families and their favorite family recipes. + Food + + + TVPG + + + + Cook's Country + Two Tastes From the Bay Area + Bryan Roof visits Oakland, Calif., and shares his version of sinigang; the backstory of the food incubator La Cocina; Neorm sach moan. + Food + + + TVG + + + + Christopher Kimball's Milk Street Television + All-Star Vegetables + Indian-spiced butternut squash soup with yogurt; lentils with Swiss chard and pomegranate molasses; cauliflower steaks with chipotle-cashew sauce. + Instructional + Food + + + TVG + + + + Jazzy Vegetarian + Fabulous Fall Fare + Cauliflower, sweet potato and celery chowder; butternut squash with apples and cranberries; kale with creamy walnut sauce. + Instructional + Food + + + TVG + + + + Baking With Julia + Triple Chocolate Truffle Treat With David Ogonowski + David Ogonowski makes crispy cocoa cookies, chocolate truffle tartlets and chocolate waves. + Food + Instructional + + + TVG + + + + Yan Can Cook: Spice Kingdom + One Belt, One Road, One World + The Silk Road railway connects Chengdu, China, to Western Europe by high speed train; sampling new food imports from Spain and Denmark. + Instructional + Food + + + TVG + + + + This Old House + Lexington: Reworked and Rewired + The fully framed front of the house is revealed; work continues on the geothermal system; the connection to the interior is made; blocking is installed in the framing; replacing and rewiring old receptacles. + Home + Instructional + + + TVG + + + + Ask This Old House + Thermostat; Solar + Roger teaches Kevin about lengths to consider when mowing the lawn; Richard installs a thermostat that interfaces with a smartphone to save energy and money; Ross walks Kevin through the installation of a photovoltaic solar array on a barn. + Home + Instructional + + + TVG + + + + Rick Steves' Europe + The Majesty of Madrid + Madrid, Spain; museums; Picasso masterpiece; flamenco dancers. + Travel + + + TVG + + + + The Best of the Joy of Painting + Early Autumn + A mountain oval spotlights the first signs of autumn. + Instructional + Arts & Entertainment + + + TVG + + + + Baby Makes 3 + Boy or Girl + Designing a gender-neutral nursery starts with bringing the outdoors in with a reclaimed wood wall; refurbishing an old dresser; personal project. + Home + Instructional + + + TVG + + + + J Schwanke's Life in Bloom + A Moment in Bloom + Drying fresh flowers; bouquets, crafts and projects with dried and preserved flowers; creating a bouquet, garland and wreath with dried and preserved hydrangeas; a cocktail featuring lavender bitters. + Instructional + + + TVG + + + + Quilting Arts + Artful Imagery + Resizing human figures within a composition; using paint to stamp imagery onto fabric or directly onto quilt tops to incorporate motifs without drawing. + Instructional + + + TVG + + + + Painting and Travel With Roger & Sarah Bansemer + Florida Waterways, Part 3 + The alligator's diet, habits and lifespan; adding an egret in flight to finish the Florida Waterways painting. + Travel + Instructional + + + TVG + + + + Woodsmith Shop + Top-Notch Tips + Ideas to help improve skills, including how to use tools more efficiently, build projects with more confidence and organize a workshop better. + Instructional + + + TVG + + + + J Schwanke's Life in Bloom + A Moment in Bloom + Drying fresh flowers; bouquets, crafts and projects with dried and preserved flowers; creating a bouquet, garland and wreath with dried and preserved hydrangeas; a cocktail featuring lavender bitters. + Instructional + + + TVG + + + + Welcome to My Farm + Welcome to My Winter Wonderland + Choosing a tree at a Christmas tree farm; basics for keeping chickens; beating the winter blues with lemons. + Regular + + + TVG + + + + Lidia's Kitchen + A Kind Gesture + Freezer-friendly pork guazzetto with beans; wine; baking an apple cranberry crumble. + Food + + + TVG + + + + The Daytripper + Texas Tacos Road Trip + Ray's Drive Inn in San Antonio; tacos. + Travel + + + TVG + + + + Joseph Rosendo's Travelscope + South Africa -- Into the Wild! + A visit to the Cape of Good Hope includes encounters with ostriches and a colony of 3,000 African penguins; a safari at Shamwari Game Reserve, a 61,000 acre preserve. + Travel + + + TVG + + + + Rick Steves' Europe + Highlights of Castile: Toledo and Salamanca + Castile; pickles; medieval walls; bachelorette party; troubadours. + Travel + + + TVG + + + + The Best of the Joy of Painting + Wayside Pond + A quiet pond lies in a densely covered spot hidden from the road. + Instructional + Arts & Entertainment + + + TVG + + + + Welcome to My Farm + Welcome to My Winter Wonderland + Choosing a tree at a Christmas tree farm; basics for keeping chickens; beating the winter blues with lemons. + Regular + + + TVG + + + + Lidia's Kitchen + A Kind Gesture + Freezer-friendly pork guazzetto with beans; wine; baking an apple cranberry crumble. + Food + + + TVG + + + + Quilting Arts + Artful Imagery + Resizing human figures within a composition; using paint to stamp imagery onto fabric or directly onto quilt tops to incorporate motifs without drawing. + Instructional + + + TVG + + + + Painting and Travel With Roger & Sarah Bansemer + Florida Waterways, Part 3 + The alligator's diet, habits and lifespan; adding an egret in flight to finish the Florida Waterways painting. + Travel + Instructional + + + TVG + + + + Woodsmith Shop + Top-Notch Tips + Ideas to help improve skills, including how to use tools more efficiently, build projects with more confidence and organize a workshop better. + Instructional + + + TVG + + + + J Schwanke's Life in Bloom + A Moment in Bloom + Drying fresh flowers; bouquets, crafts and projects with dried and preserved flowers; creating a bouquet, garland and wreath with dried and preserved hydrangeas; a cocktail featuring lavender bitters. + Instructional + + + TVG + + + + Quilting Arts + Artful Imagery + Resizing human figures within a composition; using paint to stamp imagery onto fabric or directly onto quilt tops to incorporate motifs without drawing. + Instructional + + + TVG + + + + Cook's Country + Thai Comforts + Khao man gai; pad gra prow; a visit to Portland, Ore.; history of holy basil. + Food + + + TVG + + + + Welcome to My Farm + Welcome to My Winter Wonderland + Choosing a tree at a Christmas tree farm; basics for keeping chickens; beating the winter blues with lemons. + Regular + + + TVG + + + + Lidia's Kitchen + A Kind Gesture + Freezer-friendly pork guazzetto with beans; wine; baking an apple cranberry crumble. + Food + + + TVG + + + + The Daytripper + Texas Tacos Road Trip + Ray's Drive Inn in San Antonio; tacos. + Travel + + + TVG + + + + Joseph Rosendo's Travelscope + South Africa -- Into the Wild! + A visit to the Cape of Good Hope includes encounters with ostriches and a colony of 3,000 African penguins; a safari at Shamwari Game Reserve, a 61,000 acre preserve. + Travel + + + TVG + + + + Rick Steves' Europe + Highlights of Castile: Toledo and Salamanca + Castile; pickles; medieval walls; bachelorette party; troubadours. + Travel + + + TVG + + + + The Dooky Chase Kitchen: Leah's Legacy + Hortensia's Garden + Re-creating Hortensia Lange's vegetable soup; Leah's strawberry shortcake; strawberry spritzer. + Food + Instructional + + + TVG + + + + Wine First + Millahue Valley, Chile + Vik Winery's terroir and wine production in the Chilean countryside. + Travel + Food + + + TVPG + + + + Kevin Belton's Cookin' Louisiana + Delta Delights: Northeast Louisiana + White bean salad; chicken and dumplings; hog's head cheese. + Instructional + Food + + + TVG + + + + Christopher Kimball's Milk Street Television + Moroccan Flatbread + The traditional, all purpose flatbread, khobz; Moroccan harissa-garlic shrimp; salmon with matbucha, a cooked salad with olive oil, garlic, tomatoes, sweet peppers and chilies. + Instructional + Food + + + TVG + + + + The Dooky Chase Kitchen: Leah's Legacy + Hortensia's Garden + Re-creating Hortensia Lange's vegetable soup; Leah's strawberry shortcake; strawberry spritzer. + Food + Instructional + + + TVG + + + + Sara's Weeknight Meals + No Meat, All Flavor + Korean barbecue tacos; spaghetti squash with goat cheese sauce; vanilla beans; dried fruit pot stickers. + Food + + + TVG + + + + Jazzy Vegetarian + Sunday Brunch + A plant-based morning meal consists of vegan spinach-tomato omelet, baked home fries, breakfast sunshine salad and coconut-grape muffins.Guests: Julieanna Hever.. + Instructional + Food + + + TVG + + + + Rick Steves' Europe + Highlights of Castile: Toledo and Salamanca + Castile; pickles; medieval walls; bachelorette party; troubadours. + Travel + + + TVG + + + + Joseph Rosendo's Travelscope + South Africa -- Into the Wild! + A visit to the Cape of Good Hope includes encounters with ostriches and a colony of 3,000 African penguins; a safari at Shamwari Game Reserve, a 61,000 acre preserve. + Travel + + + TVG + + + + The Daytripper + Texas Tacos Road Trip + Ray's Drive Inn in San Antonio; tacos. + Travel + + + TVG + + + + The Best of the Joy of Painting + Wayside Pond + A quiet pond lies in a densely covered spot hidden from the road. + Instructional + Arts & Entertainment + + + TVG + + + + The Dooky Chase Kitchen: Leah's Legacy + Hortensia's Garden + Re-creating Hortensia Lange's vegetable soup; Leah's strawberry shortcake; strawberry spritzer. + Food + Instructional + + + TVG + + + + Christopher Kimball's Milk Street Television + Moroccan Flatbread + The traditional, all purpose flatbread, khobz; Moroccan harissa-garlic shrimp; salmon with matbucha, a cooked salad with olive oil, garlic, tomatoes, sweet peppers and chilies. + Instructional + Food + + + TVG + + + + Wine First + Millahue Valley, Chile + Vik Winery's terroir and wine production in the Chilean countryside. + Travel + Food + + + TVPG + + + + Kevin Belton's Cookin' Louisiana + Delta Delights: Northeast Louisiana + White bean salad; chicken and dumplings; hog's head cheese. + Instructional + Food + + + TVG + + + + Sara's Weeknight Meals + No Meat, All Flavor + Korean barbecue tacos; spaghetti squash with goat cheese sauce; vanilla beans; dried fruit pot stickers. + Food + + + TVG + + + + Jazzy Vegetarian + Sunday Brunch + A plant-based morning meal consists of vegan spinach-tomato omelet, baked home fries, breakfast sunshine salad and coconut-grape muffins.Guests: Julieanna Hever.. + Instructional + Food + + + TVG + + + + Welcome to My Farm + Welcome to My Winter Wonderland + Choosing a tree at a Christmas tree farm; basics for keeping chickens; beating the winter blues with lemons. + Regular + + + TVG + + + + Lidia's Kitchen + A Kind Gesture + Freezer-friendly pork guazzetto with beans; wine; baking an apple cranberry crumble. + Food + + + TVG + + + + Woodsmith Shop + Top-Notch Tips + Ideas to help improve skills, including how to use tools more efficiently, build projects with more confidence and organize a workshop better. + Instructional + + + TVG + + + + J Schwanke's Life in Bloom + A Moment in Bloom + Drying fresh flowers; bouquets, crafts and projects with dried and preserved flowers; creating a bouquet, garland and wreath with dried and preserved hydrangeas; a cocktail featuring lavender bitters. + Instructional + + + TVG + + + + Rick Steves' Europe + Highlights of Castile: Toledo and Salamanca + Castile; pickles; medieval walls; bachelorette party; troubadours. + Travel + + + TVG + + + + The Best of the Joy of Painting + Wayside Pond + A quiet pond lies in a densely covered spot hidden from the road. + Instructional + Arts & Entertainment + + + TVG + + + + Conscious Living + !Vegan Mexican Fiesta! + A full-blown vegan Mexican fiesta including sweet potato and black bean quesadillas, guacamole and pico de gallo with tortilla chips. + Travel + Food + + + TVPG + + + + Yndi Yoga + Practice for Stability (Earth) + An all-level yoga practice to improve stability. + Health + Lifestyle + + + TVG + + + + Fit 2 Stitch + Different types of sewing machines and stitching, both serger and regular, and when to incorporate them. + Home + Instructional + + + TVG + + + + Painting With Wilson Bickford + Snow Glow, Part 1 + Developing a stormy sky and forested trees; underpainting a barn. + Arts & Entertainment + + + TVG + + + + Classic Woodworking + Shaker Hall Table + A Shaker-inspired hall table made out of cherry features tapered legs. + Instructional + + + TVG + + + + Yndi Yoga + Practice for Stability (Earth) + An all-level yoga practice to improve stability. + Health + Lifestyle + + + TVG + + + + Cook's Country + Thai Comforts + Khao man gai; pad gra prow; a visit to Portland, Ore.; history of holy basil. + Food + + + TVG + + + + America's Test Kitchen From Cook's Illustrated + Pork Chops and Blondies + Mustardy apple butter-glazed pork chops; a white chocolate chip tasting; reviewing grill spatulas; the secrets to browned butter blondies. + Instructional + Food + + + TVG + + + + Outside: Beyond the Lens + Utah Route 12 Road Trip + A scenic drive on Utah's Scenic Byway 12 to the majestic cliffs and slot canyons of Capitol Reef National Park. + Travel + Documentary + + + TVG + + + + Family Travel With Colleen Kelly + Best of Florida + Revisiting some of the best travel moments in Florida, including parasailing in Pensacola and dolphin spotting in the Emerald Coast. + Travel + + + TVG + + + + Rick Steves' Europe + Normandy: War-Torn Yet Full of Life + Normandy, France; lily ponds; artisans; composer Erik Satie; cuisine; pilgrims. + Travel + + + TVG + + + + The Best of the Joy of Painting + Waves of Wonder + Waves crash into a rocklined shore. + Instructional + Arts & Entertainment + + + TVG + + + + Cook's Country + Thai Comforts + Khao man gai; pad gra prow; a visit to Portland, Ore.; history of holy basil. + Food + + + TVG + + + + America's Test Kitchen From Cook's Illustrated + Pork Chops and Blondies + Mustardy apple butter-glazed pork chops; a white chocolate chip tasting; reviewing grill spatulas; the secrets to browned butter blondies. + Instructional + Food + + + TVG + + + + Fit 2 Stitch + Different types of sewing machines and stitching, both serger and regular, and when to incorporate them. + Home + Instructional + + + TVG + + + + Painting With Wilson Bickford + Snow Glow, Part 1 + Developing a stormy sky and forested trees; underpainting a barn. + Arts & Entertainment + + + TVG + + + + Classic Woodworking + Shaker Hall Table + A Shaker-inspired hall table made out of cherry features tapered legs. + Instructional + + + TVG + + + + Yndi Yoga + Practice for Stability (Earth) + An all-level yoga practice to improve stability. + Health + Lifestyle + + + TVG + + + + Fit 2 Stitch + Different types of sewing machines and stitching, both serger and regular, and when to incorporate them. + Home + Instructional + + + TVG + + + + America's Test Kitchen + Spring Chicken Dinner + Roast chicken with couscous, roasted red peppers and basil; grains; the potential of chocolate; rhubarb upside-down cake. + Instructional + Food + + + TVG + + + + Cook's Country + Thai Comforts + Khao man gai; pad gra prow; a visit to Portland, Ore.; history of holy basil. + Food + + + TVG + + + + America's Test Kitchen From Cook's Illustrated + Pork Chops and Blondies + Mustardy apple butter-glazed pork chops; a white chocolate chip tasting; reviewing grill spatulas; the secrets to browned butter blondies. + Instructional + Food + + + TVG + + + + Outside: Beyond the Lens + Utah Route 12 Road Trip + A scenic drive on Utah's Scenic Byway 12 to the majestic cliffs and slot canyons of Capitol Reef National Park. + Travel + Documentary + + + TVG + + + + Family Travel With Colleen Kelly + Best of Florida + Revisiting some of the best travel moments in Florida, including parasailing in Pensacola and dolphin spotting in the Emerald Coast. + Travel + + + TVG + + + + Rick Steves' Europe + Normandy: War-Torn Yet Full of Life + Normandy, France; lily ponds; artisans; composer Erik Satie; cuisine; pilgrims. + Travel + + + TVG + + + + The Dooky Chase Kitchen: Leah's Legacy + Humble Beginnings + French fried potato po'boy; hot sausage po'boy; pork chop and oyster BLT po'boy. + Food + Instructional + + + TVG + + + + The Menendez Murders: Erik Tells All + A Family With a Dirty Secret + The trial takes a shocking turn when the defense claims Erik and Lyle Menendez killed their parents after years of sexual abuse; Erik gives his account of growing up in a. + Miniseries + Documentary + + + TV14 + + + + The Menendez Murders: Erik Tells All + Abuse Excuse? + Erik recalls his mother's decline in the years leading up to the murders and looks on in agony as his brother Lyle testifies, vividly describing the abuse at the hands of their father. + Miniseries + Documentary + + + TV14 + + + + The Menendez Murders: Erik Tells All + Trials and Reversals + The first trial ends in a surprise verdict; Erik discusses the preparation for his second trial, his unlikely connection with O.J. Simpson, and why he alone speaks for both the brothers as a second jury weighs a sentence of life in prison or death. + Miniseries + Documentary + + + TV14 + + + + The Menendez Murders: Erik Tells All + Final Verdict + The verdict arrives; Erik and his brother, Lyle, are sent to separate prisons; Erik marries and begins to mount an appeal. + Miniseries + Documentary + + + TV14 + + + + The Menendez Murders: Erik Tells All + A Family With a Dirty Secret + The trial takes a shocking turn when the defense claims Erik and Lyle Menendez killed their parents after years of sexual abuse; Erik gives his account of growing up in a. + Miniseries + Documentary + + + TV14 + + + + The Menendez Murders: Erik Tells All + Abuse Excuse? + Erik recalls his mother's decline in the years leading up to the murders and looks on in agony as his brother Lyle testifies, vividly describing the abuse at the hands of their father. + Miniseries + Documentary + + + TV14 + + + + The Menendez Murders: Erik Tells All + Abuse Excuse? + Erik recalls his mother's decline in the years leading up to the murders and looks on in agony as his brother Lyle testifies, vividly describing the abuse at the hands of their father. + Miniseries + Documentary + + + TV14 + + + + The Menendez Murders: Erik Tells All + Trials and Reversals + The first trial ends in a surprise verdict; Erik discusses the preparation for his second trial, his unlikely connection with O.J. Simpson, and why he alone speaks for both the brothers as a second jury weighs a sentence of life in prison or death. + Miniseries + Documentary + + + TV14 + + + + The Menendez Murders: Erik Tells All + Final Verdict + The verdict arrives; Erik and his brother, Lyle, are sent to separate prisons; Erik marries and begins to mount an appeal. + Miniseries + Documentary + + + TV14 + + + + The Killer Speaks + Van Brett Watkins: Hitman + An acquaintance of Carolina Panthers wide receiver Rae Carruth is hired to murder the football player's pregnant girlfriend in November 1999. + Regular + + + TV14 + + + + The Killer Speaks + Payback: Earl Forrest + A Missouri man kills two people at a friend's home, then continues the bloodshed when authorities come looking for him. + Regular + + + TV14 + + + + Inogen Portable Oxygen - Oxygen Therapy that Moves with You + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + City Confidential + Violence in the Village + Terror sweeps through an upscale Houston, Texas, shopping district when a shooter attacks women without warning; a lucky break leads police to a ruthless killer who will stop at nothing to unleash a deep-seeded hatred. + Legal + Documentary + + + TVPG + + + + City Confidential + Bad News in Battle Creek + A small Midwestern town loses its innocence as a beautiful reporter, who believed she was being stalked, is ambushed by a mysterious assailant who turns out to be her husband. + Legal + Documentary + + + TVPG + + + + City Confidential + Durham: Dangerous Housewife + The wife of a Durham, N.C., teacher claims that she accidentally shot him to death in her sleep. + Legal + Documentary + + + TVPG + + + + City Confidential + Carthage: Frozen Assets + A popular citizen is accused of murdering a wealthy Texas widower. + Legal + Documentary + + + TVPG + + + + Casanova Killers + A Wolf in Sheep's Clothing + A recently divorced Florida woman is found murdered in her own home; family members and investigators look deeper into the apparent suicide of a San Diego biotechnology worker. + Miniseries + + + TV14 + + + + Casanova Killers + Where There's Smoke .. + An up-and-coming lawyer reports that his wife has died from a self-inflicted gunshot wound; California firefighters find the charred body of a real-estate agent. + Miniseries + + + TV14 + + + + Casanova Killers + Lethal Lovers + Two respected doctors are found shot to death by the side of a highway; a Michigan businesswoman goes missing after she returns from a trip. + Miniseries + + + TV14 + + + + Cold Case Files + Killings on Christmas Eve + The murder of two grandparents tears a family apart; two decades later, a detective races to solve the cold case that has haunted him since he was a child. + + Collin Lee Ellis + Ray D Jennings + + Legal + Documentary + + + TV14 + + + + Cold Case Files + A Killer Slips Away + Police learn the key witness in the stabbing death of a beloved aunt was an imposter; a return to the crime scene reveals a clue hidden in plain sight. + Legal + Documentary + + + TV14 + + + + Cold Case Files + A Family Cursed + Two unsolved murders of loved ones plague a family; detectives uncover a hidden crime scene that may help solve the 13-year-old cold case. + Legal + Documentary + + + TV14 + + + + Cold Case Files + Little Girl Lost + Ten years after a young girl is kidnapped and killed on her way home from a costume party, a mistake comes to light. + Legal + Documentary + + + TV14 + + + + Cold Case Files + She Never Came Home + A rookie cold-case detective investigating the brutal stabbing death of a bullied teenager notices a clue in an old crime scene photo that may help solve the 27-year-old case. + Legal + Documentary + + + TV14 + + + + Cold Case Files + Sweethearts, Silenced + A killer's book about his shady past becomes the key to solving the 29-year-old cold case of two high-school sweethearts and three other unsolved murders, leading police to believe he could be the Zodiac Killer. + Legal + Documentary + + + TV14 + + + + Cold Case Files + The Night Shift + A college student disappears from his graveyard shift at a gas station; new forensic technology and the discovery of an illegal drug ring in a squeaky-clean town helps police solve the case two decades later. + Legal + Documentary + + + TV14 + + + + Cold Case Files + Officer Down + After 33 years, police finally unravel the case of a law-enforcement officer who was shot execution-style in his home. + Legal + Documentary + + + TV14 + + + + Cold Case Files + Circle of Friends + A special cold-case unit needs a small town's help to solve the 22-year-old murder of a Michigan teenager whose body was found in the woods. + Legal + Documentary + + + TV14 + + + + Cold Case Files + Sweethearts, Silenced + A killer's book about his shady past becomes the key to solving the 29-year-old cold case of two high-school sweethearts and three other unsolved murders, leading police to believe he could be the Zodiac Killer. + Legal + Documentary + + + TV14 + + + + Cold Case Files + The Night Shift + A college student disappears from his graveyard shift at a gas station; new forensic technology and the discovery of an illegal drug ring in a squeaky-clean town helps police solve the case two decades later. + Legal + Documentary + + + TV14 + + + + Cold Case Files + Officer Down + After 33 years, police finally unravel the case of a law-enforcement officer who was shot execution-style in his home. + Legal + Documentary + + + TV14 + + + + Cold Case Files + Circle of Friends + A special cold-case unit needs a small town's help to solve the 22-year-old murder of a Michigan teenager whose body was found in the woods. + Legal + Documentary + + + TV14 + + + + Cold Case Files + Sisters in Death + In 1984, Jack Kennedy discovers his daughters brutally murdered; their mother and niece spend their lives keeping the case alive; thirty years later, an informant gives up a name, but the family's ordeal is far from over. + Legal + Documentary + + + TV14 + + + + Cold Case Files + Cold Ashes + When a deadly house fire claims the life of a family in rural Oklahoma, investigators suspect foul play and a mother goes on a decadeslong crusade to find out what happened to her missing teenage daughter and best friend. + Legal + Documentary + + + TV14 + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Help Israel & Ukraine + There is an urgent need to help Jews suffering in Israel, Ukraine, and around the world. Act now and support the International Fellowship of Christians and Jews in their lifesaving work. + Paid Program + + + + DraftKings Sportsbook Report + DraftKings Sportsbook, a top-rated sportsbook app! + Paid Program + + + + Stories of Love to the Rescue by Shriners Hospitals for Children® + Alec and Kaleb interview patients and their families, and how their lives have been changed because of the life-changing pediatric specialty care they received at Shriners Hospitals for Children®. + Paid Program + + + + American Justice + Death By Text + When 18-year-old Conrad Roy is found asphyxiated in his pickup truck, his death is quickly ruled a suicide; as detectives retrace Conrad's final moments, texts left on his cell phone reveal a toxic romance between him and Michelle Carter. + Legal + Documentary + + + TVPG + + + + American Justice + Killer Catfish + In 2012, 37-year-old single mother Cari Farver mysteriously vanishes into thin air; by the time police piece together the shocking, twisted truth behind her disappearance, one woman is dead and another woman stands accused of her murder. + Legal + Documentary + + + TVPG + + + + Cajun Justice + The Great Swamp Escape + Deputies investigate the theft of several expensive shrimp nets; a woman believes she and her mother were scammed by a phony faith healer. + Reality TV + Legal + + + TVPG + + + + Cajun Justice + Not a Moment Too Soon + An armed man believes his wife has been unfaithful; Deputy Quintal searches for a runaway child in an eerie cemetery. + Reality TV + Legal + + + TVPG + + + + Cajun Justice + Bayou Beasts + An alligator serves as a guard dog at a property filled with booby traps; two residents fight over road kill; Deputy Thibodeaux investigates a goat theft. + Reality TV + Legal + + + TVPG + + + + Cajun Justice + Geaux Speed Racers + Bayou teens engage in illegal street racing; Deputy Meeks investigates a disturbance at an allegedly haunted plantation house; death threats are delivered by bullhorn. + Reality TV + Legal + + + TVPG + + + + Runaway Squad + Jennifer + 15-year-old Jennifer ran away looking for love; Joe uses the girl's mother as bait to try to bring her home. + Reality TV + Legal + + + TVPG + + + + Runaway Squad + Letticia + Joe searches for 14-year-old Letticia who has run away for the fourth time. + Reality TV + Legal + + + TVPG + + + + Runaway Squad + Tayvela + Tayvela, 15, feels trapped by her overprotective mother; Joe learns that the teen may be held against her will. + Reality TV + Legal + + + TVPG + + + + Runaway Squad + Heather + Joe searches for a 14-year-old runaway who has been victimized in the past. + Reality TV + Legal + + + TVPG + + + + Runaway Squad + Taylor + Taylor ran away when rumors at school became too much to handle. + Reality TV + Legal + + + TVPG + + + + Manhunters: Fugitive Task Force + The Streets Talk + Detective Sgt. Luddie Austin discovers the downside of pursuing fugitives in his hometown. + Reality TV + Documentary + + + TV14 + + + + Manhunters: Fugitive Task Force + Catch Me if You Can + The team must navigate a web of relationships and conflicting stories to locate a fugitive hiding with several different girlfriends in Orlando. + Reality TV + Documentary + + + TV14 + + + + Manhunters: Fugitive Task Force + The Latin King + The team joins forces with the Puerto Rico Task Force to apprehend a high-ranking member of the Latin Kings gang, who is wanted for kidnapping and shooting a man. + Reality TV + Documentary + + + TV14 + + + + Manhunters: Fugitive Task Force + Officer on the Run + The team hunts for a Jamaican police officer who allegedly shot and killed a ten-year-old girl. + Reality TV + Documentary + + + TV14 + + + + Manhunters: Fugitive Task Force + One to Go + A fugitive escapes a massive drug sting in Puerto Rico, possibly fleeing to New York. + Reality TV + Documentary + + + TV14 + + + + Manhunters: Fugitive Task Force + Gun Store Heist + Thirty handguns are stolen from a gun store, through the roof. + Reality TV + Documentary + + + TV14 + + + + The Big House + Auburn + Liberal prison reformers found the State Penitentiary in Auburn, N.Y. + History + Documentary + + + TVPG + + + + The Big House + Kentucky State Penitentiary + Kentucky's maximum security prison was the site of a national record seven executions by electric chair in a single day. + History + Documentary + + + TVPG + + + + The Big House + Leavenworth + The history of the United States' first federal prison at Leavenworth, Kan., known for its infamous inmates and bloody riots. + History + Documentary + + + TVPG + + + + The Big House + Maze Prison + Maze Prison, located near Belfast, Northern Ireland, holds both Catholic and Protestant prisoners, members of paramilitary groups like the Irish Republican Army. + History + Documentary + + + TVPG + + + + The Big House + Attica Prison + Attica prison in rural New York, the home of the worst prison riot in U.S. history in 1971. + History + Documentary + + + TVPG + + + + The Big House + Colorado State + Colorado's first state prison in Canon City traces its roots to the days of frontier justice, incarcerating prisoners ranging from cannibal Alfred Packer to a heavyweight boxing contender. + History + Documentary + + + TVPG + + + + The Big House + Leavenworth + The history of the United States' first federal prison at Leavenworth, Kan., known for its infamous inmates and bloody riots. + History + Documentary + + + TVPG + + + + The Big House + Maze Prison + Maze Prison, located near Belfast, Northern Ireland, holds both Catholic and Protestant prisoners, members of paramilitary groups like the Irish Republican Army. + History + Documentary + + + TVPG + + + + The Big House + Attica Prison + Attica prison in rural New York, the home of the worst prison riot in U.S. history in 1971. + History + Documentary + + + TVPG + + + + The Big House + Colorado State + Colorado's first state prison in Canon City traces its roots to the days of frontier justice, incarcerating prisoners ranging from cannibal Alfred Packer to a heavyweight boxing contender. + History + Documentary + + + TVPG + + + + The Big House + Lewisburg Federal + Lewisburg Federal Penitentiary is home to one of the terrorists convicted of the World Trade Center bombing. + History + Documentary + + + TVPG + + + + The Big House + Maine State Prison + Maine State Prison inmates' handmade wood products become collectibles. + History + Documentary + + + TVPG + + + + DraftKings Sportsbook Report + DraftKings Sportsbook, a top-rated sportsbook app! + Paid Program + + + + Help Israel & Ukraine + There is an urgent need to help Jews suffering in Israel, Ukraine, and around the world. Act now and support the International Fellowship of Christians and Jews in their lifesaving work. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + American Justice + A Model Murder + Linda Sobek, a pretty, vivacious Los Angeles model turns up missing after a photo shoot; the police investigation leads to photographer Charles Rathbun, who, after much back-and-forth, says he killed her by accident. + Legal + Documentary + + + TVPG + + + + American Justice + The Bad Doctor + In February 2014, Houston police receive a tip from a conscientious bail bondsman that a murder-for-hire plot is in the works and a woman's life may be in danger. + Legal + Documentary + + + TVPG + + + + Behind Bars: Rookie Year + Predator vs. Prey + The rookie officers work to assert their authority over the inmates; Ariel supervises a death-row inmate; Lilly faces a pod full of disorderly gang members; Purto returns to work following an assault and another inmate soon confronts her. + Reality TV + Documentary + + + TV14 + + + + Behind Bars: Rookie Year + Survival of the Fittest + Antagonistic inmates cause trouble for Purto and D'Angelo; Lilly takes charge of a prison work program; Andrew wonders if he can handle the demands of the job. + Reality TV + Documentary + + + TV14 + + + + Behind Bars: Rookie Year + Boiling Point + Mangin and Cordova subdue a threatening gang member; Israel bucks prison protocol when an inmate harasses him; Lilly finds drugs in a mail delivery; Purto assists with the discharge of a high-risk inmate. + Reality TV + Documentary + + + TV14 + + + + Behind Bars: Rookie Year + Mind Games + D'Angelo has a difficult time catching inmates with contraband; Lilly learns a hard lesson about trust when a phone goes missing in the pod; Purto interviews a gang member; a new rookie hopes to live up to his father's legacy. + Reality TV + Documentary + + + TV14 + + + + Behind Bars: Rookie Year + No Room for Error + Mangin and the extraction team must forcibly remove an inmate from his cell; Israel makes a mistake when he performs a drug test; Fabian loses track of inmates in his unit; Ariel starts a new post and attempts to establish her authority. + Reality TV + Documentary + + + TV14 + + + + Nightwatch + A Light in the Darkness + With COVID-19 raging across the city, the New Orleans EMS responders face a series of crises that include a vehicle rollover from a police pursuit, a victim with close-range gunshot wounds, and a race to save a woman in respiratory distress. + Reality TV + Documentary + + + TV14 + + + + Nightwatch + Cold Hands, Warm Hearts + First responders in New Orleans battle freezing temperatures as they treat a driver who gets trapped after a serious car accident. + Reality TV + Documentary + + + TV14 + + + + Nightwatch + Heartbeat of the City + EMS first responders keep their cool and maintain their spirits as they face a series of challenges across New Orleans, including a shooting and stabbing victim and a woman whose slot machine experience takes a bizarre turn. + Reality TV + Documentary + + + TV14 + + + + To Be Announced + Programming to be announced. + Performing Arts + Music + + + TVPG + + + + Nightwatch + Circle of Life + Family matters take center stage as one EMT technician prepares for the birth of his child, two others prepare for an emergency delivery. + Reality TV + Documentary + + + TV14 + + + + Nightwatch + Keep Calm and Carry On + An EMT juggles the joys of family with the pressures of the night shift; a gunshot victim; a motorcyclist hit by a car; a man in custody; a Vietnam veteran with a grisly finger injury. + Reality TV + Documentary + + + TV14 + + + + Nightwatch + The Fire Within + First responders bring a combination of professionalism and passion for the job as they encounter a gunshot victim, a drug overdose, a reported strangulation, a seizure and a house party threatening to spin out of control. + Reality TV + Documentary + + + TV14 + + + + Nightwatch + Drama Calls + The team faces a slew of dramatic nightshift calls including a pregnant woman who has been assaulted, a 4-year-old boy with abdominal pain, a gunshot victim, and a potentially devastating car accident involving the St. Charles trolley. + Reality TV + Documentary + + + TV14 + + + + Nightwatch + Heart and Soul + An EMS captain juggles the challenges and rewards of being a wife and mother of twins with the never-ending drama of the job; the shift includes a bloody car accident, a major apartment fire and multiple victims struggling to breathe. + Reality TV + Documentary + + + TV14 + + + + Nightwatch + Keep Calm and Carry On + An EMT juggles the joys of family with the pressures of the night shift; a gunshot victim; a motorcyclist hit by a car; a man in custody; a Vietnam veteran with a grisly finger injury. + Reality TV + Documentary + + + TV14 + + + + Nightwatch + The Fire Within + First responders bring a combination of professionalism and passion for the job as they encounter a gunshot victim, a drug overdose, a reported strangulation, a seizure and a house party threatening to spin out of control. + Reality TV + Documentary + + + TV14 + + + + Nightwatch + Drama Calls + The team faces a slew of dramatic nightshift calls including a pregnant woman who has been assaulted, a 4-year-old boy with abdominal pain, a gunshot victim, and a potentially devastating car accident involving the St. Charles trolley. + Reality TV + Documentary + + + TV14 + + + + Nightwatch + Heart and Soul + An EMS captain juggles the challenges and rewards of being a wife and mother of twins with the never-ending drama of the job; the shift includes a bloody car accident, a major apartment fire and multiple victims struggling to breathe. + Reality TV + Documentary + + + TV14 + + + + Nightwatch + A Walk on the Wild Side + EMT first responders help a man stabbed in the head, a screaming woman who stumbles onto a New Orleans levee, and a car accident that results in an overturned vehicle with a victim trapped inside. + Reality TV + Documentary + + + TV14 + + + + Nightwatch + In Sync + The music scene of New Orleans provides a backdrop and surprising connections as the EMT first responders treat people after a series of major car accidents; a Brazilian soccer player has a knee injury; a hallucinating man has chest pains. + Reality TV + Documentary + + + TV14 + + + + DraftKings Sportsbook Report + DraftKings Sportsbook, a top-rated sportsbook app! + Paid Program + + + + Help Israel & Ukraine + There is an urgent need to help Jews suffering in Israel, Ukraine, and around the world. Act now and support the International Fellowship of Christians and Jews in their lifesaving work. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + American Justice + Shots Fired + On October 20, 2014, white Chicago PD Officer Jason Van Dyke fatally shoots 17-year-old African American Laquan McDonald in an act that he and the Chicago PD called self-defense. + Legal + Documentary + + + TVPG + + + + American Justice + Cops on Trial + Frank Serpico and Robert Leuci uncover corruption in the New York Police Department. + Legal + Documentary + + + TVPG + + + + The Interrogators + In the Details + Sgt. Robert Jaworski and Det. Cliff Porter break down a stabbing suspect's story; Detectives Shannon Lucy and R.J. Wilson get a shocking confession from a murder suspect; Porter plays suspects against each other. + Documentary + + + TVPG + + + + The Interrogators + Family Circle + Det. Eddie Majors thinks he's found the killer in a six-year-old case; a suspect plays insane; Det. Mark Kennedy and Cpl. Christopher Stout grill a dead man's girlfriend. + Documentary + + + TVPG + + + + The Interrogators + Baptism by Fire + A man's on-again-off-again girlfriend is questioned after he is found burned to death; police question a suspect in the murder of a teenage girl. + Documentary + + + TVPG + + + + The Interrogators + Cat and Mouse + After seven years of investigation, Sgt. Mike Huffy finally has a murder suspect; Victor Regalado uses his memory of a previous shooting to break down a suspect. + Documentary + + + TVPG + + + + The Interrogators + Ultimate Betrayal + A mother and her two sons are killed and the prime suspect is one the best friend of one of the boys; police try to crack a murder suspect. + Documentary + + + TVPG + + + + Crime 360 + Hunted + A witness claims to have seen an older man gun down a young man and then speed away; detectives investigate the crime based on the witness's description and begin to realize they have been led astray. + Computers & Technologies + Documentary + + + TV14 + + + + Crime 360 + Killing Field + A body is found face up in an abandoned lot used to shoot off guns on Independence Day. + Computers & Technologies + Documentary + + + TV14 + + + + Crime 360 + Bad Blood + A family member's testimony provides key information in a case involving two brothers, one of whom died as a result of blunt trauma to the head. + Computers & Technologies + Documentary + + + TV14 + + + + Crime 360 + Gilpin Court Shooting + Detective Baynes investigates the mysterious death of a man that had internal bleeding from a bullet wound. + Computers & Technologies + Documentary + + + TV14 + + + + Cutting Edge On Demand + Cutting Edge On Demand. + Performing Arts + + + + Cutting Edge On Demand + Cutting Edge On Demand. + Performing Arts + + + + Cutting Edge On Demand + Cutting Edge On Demand. + Performing Arts + + + + Cutting Edge On Demand + Cutting Edge On Demand. + Performing Arts + + + + Cutting Edge On Demand + Cutting Edge On Demand. + Performing Arts + + + + Cutting Edge On Demand + Cutting Edge On Demand. + Performing Arts + + + + Cutting Edge On Demand + Cutting Edge On Demand. + Performing Arts + + + + Cutting Edge On Demand + Cutting Edge On Demand. + Performing Arts + + + + Cutting Edge On Demand + Cutting Edge On Demand. + Performing Arts + + + + Cutting Edge On Demand + Cutting Edge On Demand. + Performing Arts + + + + Cutting Edge On Demand + Cutting Edge On Demand. + Performing Arts + + + + Cutting Edge On Demand + Cutting Edge On Demand. + Performing Arts + + + + Cutting Edge On Demand + Cutting Edge On Demand. + Performing Arts + + + + Cutting Edge On Demand + Cutting Edge On Demand. + Performing Arts + + + + Cutting Edge On Demand + Cutting Edge On Demand. + Performing Arts + + + + Cutting Edge On Demand + Cutting Edge On Demand. + Performing Arts + + + + Cutting Edge On Demand + Cutting Edge On Demand. + Performing Arts + + + + Cutting Edge On Demand + Cutting Edge On Demand. + Performing Arts + + + + Cutting Edge On Demand + Cutting Edge On Demand. + Performing Arts + + + + Cutting Edge On Demand + Cutting Edge On Demand. + Performing Arts + + + + Cutting Edge On Demand + Cutting Edge On Demand. + Performing Arts + + + + Cutting Edge On Demand + Cutting Edge On Demand. + Performing Arts + + + + Cutting Edge On Demand + Cutting Edge On Demand. + Performing Arts + + + + Cutting Edge On Demand + Cutting Edge On Demand. + Performing Arts + + + + Cutting Edge On Demand + Cutting Edge On Demand. + Performing Arts + + + + Cutting Edge On Demand + Cutting Edge On Demand. + Performing Arts + + + + Cutting Edge On Demand + Cutting Edge On Demand. + Performing Arts + + + + Stimulation + Active camera movements, exciting animations and moving objects, to encourage your dog's playfulness. + + + Stimulation + Active camera movements, exciting animations and moving objects, to encourage your dog's playfulness. + + + Together At Home + + + Relaxation + Scientifically designed content to keep your dog calm and relaxed. + + + Relaxation + Content that is designed to relax your dog, reduce stress levels and keep him calm with soothing music, sounds and visuals. + + + Relaxation + Content that is designed to relax your dog, reduce stress levels and keep him calm with soothing music, sounds and visuals. + + + Relaxation + Relaxing programs for dogs, featuring specially designed content and soothing music. + + + Night Time + Getting your Dog to Sleep: Ensuring a Goodnight's Rest for your pooch. + + + Night Time + Images, sounds and music to create a relaxed and peaceful night environment for your dog. + + + Night Time + Getting your Dog to Sleep: Ensuring a Goodnight's Rest for your pooch. + + + Night Time + Images, sounds and music to create a relaxed and peaceful night environment for your dog. + + + Relaxation + Relaxing programs for dogs, featuring specially designed content and soothing music. + + + Relaxation + Relaxing programs for dogs, featuring specially designed content and soothing music. + + + Relaxation + Content that is designed to relax your dog, reduce stress levels and keep him calm with soothing music, sounds and visuals. + + + Stimulation + Active camera movements, exciting animations and moving objects, to encourage your dog's playfulness. + + + Stimulation + Stimulating programs to start a dog's day in a happy, playful mood. + + + Relaxation + Content that is designed to relax your dog, reduce stress levels and keep him calm with soothing music, sounds and visuals. + + + Stimulation + Programs to increase physical and mental stimulation among dogs. + + + Stimulation + Active camera movements, exciting animations and moving objects, to encourage your dog's playfulness. + + + Exposure + Using the most advanced veterinary science, special sounds and visuals desensitize dogs and expose them to day-to-day stimuli. + + + Stimulation + It's play time! Scientifically designed programs to stimulate your dogs. + + + Stimulation + It's play time! Scientifically designed programs to stimulate your dogs. + + + Relaxation + Scientifically designed content to keep your dog calm and relaxed. + + + Exposure + Using the most advanced veterinary science, special sounds and visuals desensitize dogs and expose them to day-to-day stimuli. + + + Stimulation + It's play time! Scientifically designed programs to stimulate your dogs. + + + Stimulation + Active camera movements, exciting animations and moving objects, to encourage your dog's playfulness. + + + Stimulation + Active camera movements, exciting animations and moving objects, to encourage your dog's playfulness. + + + Together At Home + + + Relaxation + Scientifically designed content to keep your dog calm and relaxed. + + + Relaxation + Content that is designed to relax your dog, reduce stress levels and keep him calm with soothing music, sounds and visuals. + + + Relaxation + Content that is designed to relax your dog, reduce stress levels and keep him calm with soothing music, sounds and visuals. + + + Night Time + Getting your Dog to Sleep: Ensuring a Goodnight's Rest for your pooch. + + + Night Time + Images, sounds and music to create a relaxed and peaceful night environment for your dog. + + + Night Time + Getting your Dog to Sleep: Ensuring a Goodnight's Rest for your pooch. + + + Night Time + Images, sounds and music to create a relaxed and peaceful night environment for your dog. + + + Relaxation + Relaxing programs for dogs, featuring specially designed content and soothing music. + + + Relaxation + Relaxing programs for dogs, featuring specially designed content and soothing music. + + + Relaxation + Content that is designed to relax your dog, reduce stress levels and keep him calm with soothing music, sounds and visuals. + + + Stimulation + Active camera movements, exciting animations and moving objects, to encourage your dog's playfulness. + + + Stimulation + Stimulating programs to start a dog's day in a happy, playful mood. + + + Relaxation + Content that is designed to relax your dog, reduce stress levels and keep him calm with soothing music, sounds and visuals. + + + Stimulation + Programs to increase physical and mental stimulation among dogs. + + + Stimulation + Active camera movements, exciting animations and moving objects, to encourage your dog's playfulness. + + + Exposure + Using the most advanced veterinary science, special sounds and visuals desensitize dogs and expose them to day-to-day stimuli. + + + Stimulation + It's play time! Scientifically designed programs to stimulate your dogs. + + + Stimulation + It's play time! Scientifically designed programs to stimulate your dogs. + + + Relaxation + Scientifically designed content to keep your dog calm and relaxed. + + + Exposure + Using the most advanced veterinary science, special sounds and visuals desensitize dogs and expose them to day-to-day stimuli. + + + Stimulation + It's play time! Scientifically designed programs to stimulate your dogs. + + + Stimulation + Active camera movements, exciting animations and moving objects, to encourage your dog's playfulness. + + + Stimulation + Active camera movements, exciting animations and moving objects, to encourage your dog's playfulness. + + + Together At Home + + + Relaxation + Scientifically designed content to keep your dog calm and relaxed. + + + Relaxation + Content that is designed to relax your dog, reduce stress levels and keep him calm with soothing music, sounds and visuals. + + + Relaxation + Content that is designed to relax your dog, reduce stress levels and keep him calm with soothing music, sounds and visuals. + + + Night Time + Getting your Dog to Sleep: Ensuring a Goodnight's Rest for your pooch. + + + Night Time + Images, sounds and music to create a relaxed and peaceful night environment for your dog. + + + Night Time + Getting your Dog to Sleep: Ensuring a Goodnight's Rest for your pooch. + + + Night Time + Images, sounds and music to create a relaxed and peaceful night environment for your dog. + + + Relaxation + Relaxing programs for dogs, featuring specially designed content and soothing music. + + + Relaxation + Relaxing programs for dogs, featuring specially designed content and soothing music. + + + Relaxation + Content that is designed to relax your dog, reduce stress levels and keep him calm with soothing music, sounds and visuals. + + + Stimulation + Active camera movements, exciting animations and moving objects, to encourage your dog's playfulness. + + + Stimulation + Stimulating programs to start a dog's day in a happy, playful mood. + + + Relaxation + Content that is designed to relax your dog, reduce stress levels and keep him calm with soothing music, sounds and visuals. + + + Stimulation + Programs to increase physical and mental stimulation among dogs. + + + Stimulation + Active camera movements, exciting animations and moving objects, to encourage your dog's playfulness. + + + Exposure + Using the most advanced veterinary science, special sounds and visuals desensitize dogs and expose them to day-to-day stimuli. + + + Stimulation + It's play time! Scientifically designed programs to stimulate your dogs. + + + Stimulation + It's play time! Scientifically designed programs to stimulate your dogs. + + + Relaxation + Scientifically designed content to keep your dog calm and relaxed. + + + Exposure + Using the most advanced veterinary science, special sounds and visuals desensitize dogs and expose them to day-to-day stimuli. + + + Stimulation + It's play time! Scientifically designed programs to stimulate your dogs. + + + Stimulation + Active camera movements, exciting animations and moving objects, to encourage your dog's playfulness. + + + Stimulation + Active camera movements, exciting animations and moving objects, to encourage your dog's playfulness. + + + Together At Home + + + Relaxation + Scientifically designed content to keep your dog calm and relaxed. + + + Relaxation + Content that is designed to relax your dog, reduce stress levels and keep him calm with soothing music, sounds and visuals. + + + Relaxation + Content that is designed to relax your dog, reduce stress levels and keep him calm with soothing music, sounds and visuals. + + + Night Time + Getting your Dog to Sleep: Ensuring a Goodnight's Rest for your pooch. + + + Night Time + Images, sounds and music to create a relaxed and peaceful night environment for your dog. + + + Night Time + Getting your Dog to Sleep: Ensuring a Goodnight's Rest for your pooch. + + + Night Time + Images, sounds and music to create a relaxed and peaceful night environment for your dog. + + + Relaxation + Relaxing programs for dogs, featuring specially designed content and soothing music. + + + Relaxation + Relaxing programs for dogs, featuring specially designed content and soothing music. + + + Relaxation + Content that is designed to relax your dog, reduce stress levels and keep him calm with soothing music, sounds and visuals. + + + Stimulation + Active camera movements, exciting animations and moving objects, to encourage your dog's playfulness. + + + Stimulation + Stimulating programs to start a dog's day in a happy, playful mood. + + + Relaxation + Content that is designed to relax your dog, reduce stress levels and keep him calm with soothing music, sounds and visuals. + + + Stimulation + Programs to increase physical and mental stimulation among dogs. + + + Stimulation + Active camera movements, exciting animations and moving objects, to encourage your dog's playfulness. + + + Exposure + Using the most advanced veterinary science, special sounds and visuals desensitize dogs and expose them to day-to-day stimuli. + + + Stimulation + It's play time! Scientifically designed programs to stimulate your dogs. + + + Stimulation + It's play time! Scientifically designed programs to stimulate your dogs. + + + Relaxation + Scientifically designed content to keep your dog calm and relaxed. + + + Exposure + Using the most advanced veterinary science, special sounds and visuals desensitize dogs and expose them to day-to-day stimuli. + + + Healing Time with Dr. Doug Weiss + Equipping Pastors, group leaders and church members with biblical truth and tools to heal themselves and take healing to a wounded world. + + Dr. Doug Weiss + + Religious + + + + New Beginnings With Larry and Tiz Huch + Religious + + + + Discovering the Jewish Jesus + Messianic Rabbi Kirt Schneider, a Jewish believer in Jesus, shares his insights into the Old and New Testaments, provides guidance on prayer and delivers the Word of God. + Religious + + + TVG + + + + Gospel Music Showcase + Tim Menzies + Guy Penrod hosts the Grammy nominated singer-songwriter Tim Menzies. + Music + Religious + + + TVG + + + + What is it? + Abortion is one of the most hotly debated and complex topics in the world. This complex issue can be decided by answering one simple question: What is it? + + Mark Spence + Ray Comfort + + Religious + + + TVG + + + + Reflections + Familiar hymns and original music accompany Scripture to help one let go and surrender during a time of daily prayer and meditation. + Religious + Music + + + TVG + + + + Leading The Way With Dr. Michael Youssef + Leading The Way ministries and Dr. Michael Youssef share the Gospel across the globe, equipping believers to grow into a deeper walk with Christ. + Religious + + + TVG + + + + Reflections + Familiar hymns and original music accompany Scripture to help one let go and surrender during a time of daily prayer and meditation. + Religious + Music + + + TVG + + + + Leading The Way With Dr. Michael Youssef + Leading The Way ministries and Dr. Michael Youssef share the Gospel across the globe, equipping believers to grow into a deeper walk with Christ. + Religious + + + TVG + + + + Kenneth W. Hagin + Bible based teaching. + Religious + + + TVG + + + + The Green Room + Hosts Jonathan and Suzy Lamb get to know favorite. + Religious + + + TVG + + + + In Touch With Dr. Charles Stanley + In Touch Ministries is the broadcast teaching ministry of Dr. Charles Stanley. + Religious + + + TVG + + + + Manna-Fest with Perry Stone + An in-depth prophetic and practical study of the word of God with Perry Stone. + Religious + + + + Love Israel with Baruch Korman PH.D + Verse-by-verse Bible study, going through the Old and New Testaments with Baruch Korman. + Religious + + + + Israel: The Prophetic Connection + Join Rev. Dr. John Tweedie through images, on-site teaching and interviews. + Religious + + + + Discovering the Jewish Jesus + Messianic Rabbi Kirt Schneider, a Jewish believer in Jesus, shares his insights into the Old and New Testaments, provides guidance on prayer and delivers the Word of God. + Religious + + + TVG + + + + Healing Time with Dr. Doug Weiss + Equipping Pastors, group leaders and church members with biblical truth and tools to heal themselves and take healing to a wounded world. + + Dr. Doug Weiss + + Religious + + + + Ron Carpenter + Pastor Ron Carpenter of Redemption Bay Area in San Jose, Calif. + Religious + + + TVG + + + + Ron Carpenter + Pastor Ron Carpenter of Redemption Bay Area in San Jose, Calif. + Religious + + + TVG + + + + Glorius Moments with Prophet Jerome Fernando + Religious + + + TVG + + + + In Touch With Dr. Charles Stanley + In Touch Ministries is the broadcast teaching ministry of Dr. Charles Stanley. + Religious + + + TVG + + + + In Touch With Dr. Charles Stanley + In Touch Ministries is the broadcast teaching ministry of Dr. Charles Stanley. + Religious + + + TVG + + + + Reflections + Familiar hymns and original music accompany Scripture to help one let go and surrender during a time of daily prayer and meditation. + Religious + Music + + + TVG + + + + Jerusalem Dateline + Jerusalem Bureau Chief Chris Mitchell reports from the Holy Land and Middle East. + + Chris Mitchell + + News + + + TVG + + + + Israel Now News + Current events, politics and culture of Israel. + News + + + TVG + + + + Allen Jackson Ministries + From World Outreach Church in Murfreesboro, Tenn., pastor Allen Jackson mentors and challenges individuals with a biblical message that helps them become more fully devoted followers of Jesus Christ. + Religious + + + + Joyce Meyer Enjoying Everyday Life + Author and Bible teacher Joyce Meyer shares encouragement to help people enjoy daily life. + Religious + + + TVG + + + + Jesse Duplantis Ministries + Jesse Duplantis delivers life-changing, humor-filled, messages of faith. + Religious + + + + Creflo Dollar + Join the dynamic teachings of Creflo and Taffi Dollar as they shed light on the truth and bring understanding about God's grace, lasting change, and our identity in Christ. + Religious + + + + Jack Graham Power Point Ministries + Religious + + + + Kingdom Connection With Jentezen Franklin + Practical meaning to spiritual truths found in God's Word from the teaching ministry of Free Chapel. + Religious + + + + Hagee Ministries + The mission of John Hagee Ministries is to take the Gospel to all the world and to all generations. + Religious + + + TVG + + + + Joel Osteen + Joel and Victoria Osteen's message of unconditional love and unending hope reaches everyone across the world. + Religious + + + TVPG + + + + Pastor Robert Morris Ministries + Pastor Robert Morris from Gateway Church in Dallas-Fort Worth shares insights from God's word to help one in everyday life. + Religious + + + TVG + + + + In Touch With Dr. Charles Stanley + In Touch Ministries is the broadcast teaching ministry of Dr. Charles Stanley. + Religious + + + TVG + + + + Real Life with Jack Hibbs + Desire that through Jesus Christ, you will know real life. + Religious + + + + The Winning Walk with Dr. Ed Young + Religious programming. + Religious + + + + New Beginnings With Larry and Tiz Huch + Religious + + + + Live With Passion! With Fr. Cedric Pisegna + Father Cedric Pisegna is a Catholic priest with a program to inspire others and encourage them to live with passion. + Religious + + + + Discovering the Jewish Jesus + Messianic Rabbi Kirt Schneider, a Jewish believer in Jesus, shares his insights into the Old and New Testaments, provides guidance on prayer and delivers the Word of God. + Religious + + + TVG + + + + Kerry Shook + Viewers are invited to join Pastor Kerry Shook of Woodlands Church, as he uses innovative ways to share the timeless truths of the Bible. + Religious + + + + Ron Carpenter + Pastor Ron Carpenter of Redemption Bay Area in San Jose, Calif. + Religious + + + TVG + + + + Love Worth Finding + Religious + + + + Ralph Douglas West + Dr. Ralph Douglas West serves as founder and senior pastor of the Church Without Walls in Houston, Texas. + + Ralph Douglas West + + Specials + Religious + + + + Healing Time with Dr. Doug Weiss + Equipping Pastors, group leaders and church members with biblical truth and tools to heal themselves and take healing to a wounded world. + + Dr. Doug Weiss + + Religious + + + + Pursuit TV + The hosts deliver messages of hope and faith and spread God's love to the Christian community through songs and acts of praise. + Religious + + + + Dr. David Jeremiah + Practical Bible teaching. + Religious + + + TVG + + + + John Ankerberg + Regular + + + + Dr. Robert Jeffress: Pathway to Victory + The teaching ministry of Dr. Robert Jeffress. + Religious + + + TVG + + + + Harvest With Pastor Greg Laurie + Pastor and evangelist Greg Laurie teaches the simple and life-changing message of the Gospel. + Religious + + + TVG + + + + The Potter's Touch With Bishop T.D. Jakes + Bishop T.D. Jakes offers practical and spiritual solutions to life's toughest questions. + Religious + + + TVG + + + + Bishop Dale C. Bronner + Power for living encourages, empowers, and equips viewers to live a triumphant life with Christ. + Specials + Religious + + + TVG + + + + Rejoice in the Lord + The morning service from the Pensacola Christian College Campus Church. + Religious + + + TVG + + + + John Ankerberg + Regular + + + + Leading The Way With Dr. Michael Youssef + Leading The Way ministries and Dr. Michael Youssef share the Gospel across the globe, equipping believers to grow into a deeper walk with Christ. + Religious + + + TVG + + + + Discovering the Jewish Jesus + Messianic Rabbi Kirt Schneider, a Jewish believer in Jesus, shares his insights into the Old and New Testaments, provides guidance on prayer and delivers the Word of God. + Religious + + + TVG + + + + Dr. David Jeremiah + Practical Bible teaching. + Religious + + + TVG + + + + The Hal Lindsey Report + Current national and international issues from a Biblical perspective. + Religious + + + TVG + + + + Prophecy Watchers + Featuring unique and in-depth interviews, as host Gary Stearman talks with expert writers, teachers and pastors. Discussions range across the full spectrum of Bible prophecy as seen through both history and current events. + Religious + + + + Healing Time with Dr. Doug Weiss + Equipping Pastors, group leaders and church members with biblical truth and tools to heal themselves and take healing to a wounded world. + + Dr. Doug Weiss + + Religious + + + + Israel Now News + Current events, politics and culture of Israel. + News + + + TVG + + + + Kingdom Connection With Jentezen Franklin + Practical meaning to spiritual truths found in God's Word from the teaching ministry of Free Chapel. + Religious + + + + Tim Timberlake + Tim Timberlake, brings a message of hope and inspiration by going directly to God's Word, to provide solutions to life's toughest problems. + Religious + + + + Paula White Ministries + Bringing spiritual truths to practical understanding. + Religious + + + TVG + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + TVG + + + + Sid Roth's It's Supernatural! + Investigative reporter Sid Roth verifies the supernatural. + Religious + + + TVG + + + + Reflections + Familiar hymns and original music accompany Scripture to help one let go and surrender during a time of daily prayer and meditation. + Religious + Music + + + TVG + + + + Reflections + Familiar hymns and original music accompany Scripture to help one let go and surrender during a time of daily prayer and meditation. + Religious + Music + + + TVG + + + + Reflections + Familiar hymns and original music accompany Scripture to help one let go and surrender during a time of daily prayer and meditation. + Religious + Music + + + TVG + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + TVG + + + + Kingdom Connection With Jentezen Franklin + Practical meaning to spiritual truths found in God's Word from the teaching ministry of Free Chapel. + Religious + + + + Joyce Meyer Enjoying Everyday Life + The Journey to Spiritual Maturity + Going further on one's journey with God; Joyce shares truths about going deeper and growing up in one's walk with the Lord. + Religious + + + TVG + + + + Joni: Table Talk + The Overcoming Life: Unforgiveness + Discover the trap the enemy uses to gain access to your life as Jimmy Evans reveals why forgiveness matters and the dangerous consequences of withholding it. + + Jimmy Evans + Rebecca Lamb Weiss + Dehavilland Ford + + Religious + Talk Shows + + + TVG + + + + The Potter's Touch With Bishop T.D. Jakes + Worship In The Wilderness Part 2 + God wants you to come back to Him. + Religious + + + TVG + + + + Life Today With James and Betty Robison + James Robison, alongside his wife Betty, delivers motivational and inspiring messages to help people overcome difficulties. + Local + + + + Gospel Truth with Andrew Wommack + For over four and a half decades, Andrew has taught God's Word with clarity and simplicity, emphasizing the unconditional love and grace of God. + Religious + + + TVG + + + + New Beginnings With Larry and Tiz Huch + Religious + + + + Today With Marilyn and Sarah + The gospel of Jesus Christ is taught by Marilyn Hickey and Sarah Bowling. + Religious + + + TVG + + + + Kenneth Copeland + Stay out of Grief to Stay in Divine Health + Copeland says grief and sorrow are the enemies of health. + Religious + + + TVG + + + + Creflo Dollar + Join the dynamic teachings of Creflo and Taffi Dollar as they shed light on the truth and bring understanding about God's grace, lasting change, and our identity in Christ. + Religious + + + + Sid Roth's It's Supernatural! + Investigative reporter Sid Roth verifies the supernatural. + Religious + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + The Journey to Spiritual Maturity + Going further on one's journey with God; Joyce shares truths about going deeper and growing up in one's walk with the Lord. + Religious + + + TVG + + + + Ministry Now + Leading voices in Christian media, inspiring music and more fill viewers' hearts with hope for the future. + Religious + + + TVG + + + + Pursuit TV + The hosts deliver messages of hope and faith and spread God's love to the Christian community through songs and acts of praise. + Religious + + + + Jerusalem Dateline + Jerusalem Bureau Chief Chris Mitchell reports from the Holy Land and Middle East. + + Chris Mitchell + + News + + + TVG + + + + Discovering the Jewish Jesus + Messianic Rabbi Kirt Schneider, a Jewish believer in Jesus, shares his insights into the Old and New Testaments, provides guidance on prayer and delivers the Word of God. + Religious + + + TVG + + + + Today With Marilyn and Sarah + The gospel of Jesus Christ is taught by Marilyn Hickey and Sarah Bowling. + Religious + + + TVG + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + TVG + + + + Gary Keesee: Fixing the Money Thing + Pastor Gary Keesee provides insights and solutions on the topics of finances, family and faith. + Religious + Instructional + + + TVG + + + + Rick Renner + The Renners Launch Into the USSR + How the ministry found its way to the USSR. + Religious + + + TVG + + + + Believer's Walk of Faith With Bill Winston + Fighter pilot turned minister, Dr. Winston shares his way of finding the strength to face fears, failures and other problems or concerns by taking the path of faith. + Religious + + + TVPG + + + + Pastor Robert Morris Ministries + Pastor Robert Morris from Gateway Church in Dallas-Fort Worth shares insights from God's word to help one in everyday life. + Religious + + + TVG + + + + Dr. David Jeremiah + Practical Bible teaching. + Religious + + + TVG + + + + Tim Timberlake + Tim Timberlake, brings a message of hope and inspiration by going directly to God's Word, to provide solutions to life's toughest problems. + Religious + + + + Jewish Voice with Jonathan Bernis + Exploring the Jewish roots of Christian faith; learning how bible prophecy and today's world events surrounding Israel are connected. + Religious + Talk Shows + + + TVG + + + + Manna-Fest with Perry Stone + An in-depth prophetic and practical study of the word of God with Perry Stone. + Religious + + + + Hagee Ministries + The mission of John Hagee Ministries is to take the Gospel to all the world and to all generations. + Religious + + + TVG + + + + Gospel Truth with Andrew Wommack + For over four and a half decades, Andrew has taught God's Word with clarity and simplicity, emphasizing the unconditional love and grace of God. + Religious + + + TVG + + + + Joni: Table Talk + The Overcoming Life: Unforgiveness + Discover the trap the enemy uses to gain access to your life as Jimmy Evans reveals why forgiveness matters and the dangerous consequences of withholding it. + + Jimmy Evans + Rebecca Lamb Weiss + Dehavilland Ford + + Religious + Talk Shows + + + TVG + + + + Ministry Now + Leading voices in Christian media, inspiring music and more fill viewers' hearts with hope for the future. + Religious + + + TVG + + + + Jesse Duplantis Ministries + Jesse Duplantis delivers life-changing, humor-filled, messages of faith. + Religious + + + + Ron Carpenter + Pastor Ron Carpenter of Redemption Bay Area in San Jose, Calif. + Religious + + + TVG + + + + Kenneth W. Hagin + Bible based teaching. + Religious + + + TVG + + + + Kenneth Copeland + Stay out of Grief to Stay in Divine Health + Copeland says grief and sorrow are the enemies of health. + Religious + + + TVG + + + + Life Today With James and Betty Robison + James Robison, alongside his wife Betty, delivers motivational and inspiring messages to help people overcome difficulties. + Local + + + + Joyce Meyer Enjoying Everyday Life + The Journey to Spiritual Maturity + Going further on one's journey with God; Joyce shares truths about going deeper and growing up in one's walk with the Lord. + Religious + + + TVG + + + + Ministry Now + Leading voices in Christian media, inspiring music and more fill viewers' hearts with hope for the future. + Religious + + + TVG + + + + Joni: Table Talk + The Overcoming Life: Unforgiveness + Discover the trap the enemy uses to gain access to your life as Jimmy Evans reveals why forgiveness matters and the dangerous consequences of withholding it. + + Jimmy Evans + Rebecca Lamb Weiss + Dehavilland Ford + + Religious + Talk Shows + + + TVG + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + + Sid Roth's It's Supernatural! + Investigative reporter Sid Roth verifies the supernatural. + Religious + + + TVG + + + + Reflections + Familiar hymns and original music accompany Scripture to help one let go and surrender during a time of daily prayer and meditation. + Religious + Music + + + TVG + + + + Reflections + Familiar hymns and original music accompany Scripture to help one let go and surrender during a time of daily prayer and meditation. + Religious + Music + + + TVG + + + + Reflections + Familiar hymns and original music accompany Scripture to help one let go and surrender during a time of daily prayer and meditation. + Religious + Music + + + TVG + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + + Kingdom Connection With Jentezen Franklin + Practical meaning to spiritual truths found in God's Word from the teaching ministry of Free Chapel. + Religious + + + + Joyce Meyer Enjoying Everyday Life + The Journey to Spiritual Maturity + Joyce shares how the Holy Spirit helps believers. + Religious + + + TVG + + + + Joni: Table Talk + The Overcoming Life: Rejection + Do you sometimes feel trapped in the pain of past rejection? Jimmy Evans reveals the key to overcoming rejection so you can live the life God created you for. + + Jimmy Evans + Rebecca Lamb Weiss + Dehavilland Ford + + Religious + Talk Shows + + + TVG + + + + The Potter's Touch With Bishop T.D. Jakes + The Struggle To Relevance + Through struggle, service, surrender, and submission, Christians can grab onto God's promises and purpose. + Religious + + + TVG + + + + Life Today With James and Betty Robison + James Robison, alongside his wife Betty, delivers motivational and inspiring messages to help people overcome difficulties. + Local + + + + Gospel Truth with Andrew Wommack + For over four and a half decades, Andrew has taught God's Word with clarity and simplicity, emphasizing the unconditional love and grace of God. + Religious + + + TVG + + + + Discovering the Jewish Jesus + Messianic Rabbi Kirt Schneider, a Jewish believer in Jesus, shares his insights into the Old and New Testaments, provides guidance on prayer and delivers the Word of God. + Religious + + + TVG + + + + Today With Marilyn and Sarah + The gospel of Jesus Christ is taught by Marilyn Hickey and Sarah Bowling. + Religious + + + TVG + + + + Kenneth Copeland + How to Live in Divine Health + Kenneth and Gloria Copeland teach how to live in divine health through a covenant with God. + Religious + + + TVG + + + + Creflo Dollar + Join the dynamic teachings of Creflo and Taffi Dollar as they shed light on the truth and bring understanding about God's grace, lasting change, and our identity in Christ. + Religious + + + + Jewish Voice with Jonathan Bernis + Exploring the Jewish roots of Christian faith; learning how bible prophecy and today's world events surrounding Israel are connected. + Religious + Talk Shows + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + The Journey to Spiritual Maturity + Joyce shares how the Holy Spirit helps believers. + Religious + + + TVG + + + + Ministry Now + Leading voices in Christian media, inspiring music and more fill viewers' hearts with hope for the future. + Religious + + + TVG + + + + Discovering the Jewish Jesus + Messianic Rabbi Kirt Schneider, a Jewish believer in Jesus, shares his insights into the Old and New Testaments, provides guidance on prayer and delivers the Word of God. + Religious + + + TVG + + + + New Beginnings With Larry and Tiz Huch + Religious + + + + Sid Roth's It's Supernatural! + Investigative reporter Sid Roth verifies the supernatural. + Religious + + + TVG + + + + Today With Marilyn and Sarah + The gospel of Jesus Christ is taught by Marilyn Hickey and Sarah Bowling. + Religious + + + TVG + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + + Gary Keesee: Fixing the Money Thing + Pastor Gary Keesee provides insights and solutions on the topics of finances, family and faith. + Religious + Instructional + + + TVG + + + + Rick Renner + First Christian TV Network in USSR + How the Renners started a Christian TV network in the USSR. + Religious + + + TVG + + + + Believer's Walk of Faith With Bill Winston + Fighter pilot turned minister, Dr. Winston shares his way of finding the strength to face fears, failures and other problems or concerns by taking the path of faith. + Religious + + + TVPG + + + + Pastor Robert Morris Ministries + Pastor Robert Morris from Gateway Church in Dallas-Fort Worth shares insights from God's word to help one in everyday life. + Religious + + + TVG + + + + Dr. David Jeremiah + Practical Bible teaching. + Religious + + + TVG + + + + Healing Time with Dr. Doug Weiss + Equipping Pastors, group leaders and church members with biblical truth and tools to heal themselves and take healing to a wounded world. + + Dr. Doug Weiss + + Religious + + + + The OpenDoor Experience + Pastor Troy Brewer presents biblical teachings. + Religious + + + TVG + + + + Jerry Savelle Ministries + Jerry Savelle shares motivational messages from God's Word designed to teach viewers how to win in life. + Religious + + + + Hagee Ministries + The mission of John Hagee Ministries is to take the Gospel to all the world and to all generations. + Religious + + + TVG + + + + Gospel Truth with Andrew Wommack + For over four and a half decades, Andrew has taught God's Word with clarity and simplicity, emphasizing the unconditional love and grace of God. + Religious + + + TVG + + + + Joni: Table Talk + The Overcoming Life: Rejection + Do you sometimes feel trapped in the pain of past rejection? Jimmy Evans reveals the key to overcoming rejection so you can live the life God created you for. + + Jimmy Evans + Rebecca Lamb Weiss + Dehavilland Ford + + Religious + Talk Shows + + + TVG + + + + Ministry Now + Leading voices in Christian media, inspiring music and more fill viewers' hearts with hope for the future. + Religious + + + TVG + + + + Pursuit TV + The hosts deliver messages of hope and faith and spread God's love to the Christian community through songs and acts of praise. + Religious + + + + The Winning Walk With Dr. Ed Young + A broadcast from Dr. Ed Young that takes its title from his first book,. + Religious + + + + Duane Vander Klok: Walking by Faith + Teaching that changes hearts, transforms lives, and impacts faith through the truth of God's word. + Religious + + + TVG + + + + Kenneth Copeland + How to Live in Divine Health + Kenneth and Gloria Copeland teach how to live in divine health through a covenant with God. + Religious + + + TVG + + + + Life Today With James and Betty Robison + James Robison, alongside his wife Betty, delivers motivational and inspiring messages to help people overcome difficulties. + Local + + + + Joyce Meyer Enjoying Everyday Life + The Journey to Spiritual Maturity + Joyce shares how the Holy Spirit helps believers. + Religious + + + TVG + + + + Ministry Now + Leading voices in Christian media, inspiring music and more fill viewers' hearts with hope for the future. + Religious + + + TVG + + + + Joni: Table Talk + The Overcoming Life: Rejection + Do you sometimes feel trapped in the pain of past rejection? Jimmy Evans reveals the key to overcoming rejection so you can live the life God created you for. + + Jimmy Evans + Rebecca Lamb Weiss + Dehavilland Ford + + Religious + Talk Shows + + + TVG + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + TVG + + + + Sid Roth's It's Supernatural! + Investigative reporter Sid Roth verifies the supernatural. + Religious + + + TVG + + + + Reflections + Familiar hymns and original music accompany Scripture to help one let go and surrender during a time of daily prayer and meditation. + Religious + Music + + + TVG + + + + Reflections + Familiar hymns and original music accompany Scripture to help one let go and surrender during a time of daily prayer and meditation. + Religious + Music + + + TVG + + + + Reflections + Familiar hymns and original music accompany Scripture to help one let go and surrender during a time of daily prayer and meditation. + Religious + Music + + + TVG + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + TVG + + + + Kingdom Connection With Jentezen Franklin + Practical meaning to spiritual truths found in God's Word from the teaching ministry of Free Chapel. + Religious + + + + Joyce Meyer Enjoying Everyday Life + Claiming What Is Rightfully Yours + There are many promises in the Bible; Joyce shares how to receive one's God-given inheritance. + Religious + + + TVG + + + + Joni: Table Talk + Her Story: Real Talk Kim + Say goodbye to past mistakes, labels and insecurities and set into God's plan for your life as Real Talk Kim reveals the transformation the Lord did in her life. + Religious + Talk Shows + + + TVG + + + + The Potter's Touch With Bishop T.D. Jakes + Get Your Own Oil + Are you waiting until you're in the moment to get ready -- or have you been giving too much of your oil away? Don't underestimate the power of an opportunity. + Religious + + + TVG + + + + Life Today With James and Betty Robison + James Robison, alongside his wife Betty, delivers motivational and inspiring messages to help people overcome difficulties. + Local + + + + Gospel Truth with Andrew Wommack + For over four and a half decades, Andrew has taught God's Word with clarity and simplicity, emphasizing the unconditional love and grace of God. + Religious + + + TVG + + + + Healing Time with Dr. Doug Weiss + Equipping Pastors, group leaders and church members with biblical truth and tools to heal themselves and take healing to a wounded world. + + Dr. Doug Weiss + + Religious + + + + Today With Marilyn and Sarah + The gospel of Jesus Christ is taught by Marilyn Hickey and Sarah Bowling. + Religious + + + TVG + + + + Kenneth Copeland + Redeemed From Every Sickness and Disease + Copeland says to discover the power of the Blood covenant one has through Christ and His Name, which is above every name. + Religious + + + TVG + + + + Creflo Dollar + Join the dynamic teachings of Creflo and Taffi Dollar as they shed light on the truth and bring understanding about God's grace, lasting change, and our identity in Christ. + Religious + + + + Jewish Voice with Jonathan Bernis + Exploring the Jewish roots of Christian faith; learning how bible prophecy and today's world events surrounding Israel are connected. + Religious + Talk Shows + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + Claiming What Is Rightfully Yours + There are many promises in the Bible; Joyce shares how to receive one's God-given inheritance. + Religious + + + TVG + + + + Ministry Now + Leading voices in Christian media, inspiring music and more fill viewers' hearts with hope for the future. + Religious + + + TVG + + + + Pursuit TV + The hosts deliver messages of hope and faith and spread God's love to the Christian community through songs and acts of praise. + Religious + + + + Ted Shuttlesworth + Ted Shuttlesworth is an American Evangelist who brings the saving and healing power of Jesus Christ. + Religious + + + + Sid Roth's It's Supernatural! + Investigative reporter Sid Roth verifies the supernatural. + Religious + + + TVG + + + + Today With Marilyn and Sarah + The gospel of Jesus Christ is taught by Marilyn Hickey and Sarah Bowling. + Religious + + + TVG + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + TVG + + + + Gary Keesee: Fixing the Money Thing + Pastor Gary Keesee provides insights and solutions on the topics of finances, family and faith. + Religious + Instructional + + + TVG + + + + Rick Renner + The Renner's First Church in USSR + The story of how the Renners started their first church in the former USSR. + Religious + + + TVG + + + + Believer's Walk of Faith With Bill Winston + Fighter pilot turned minister, Dr. Winston shares his way of finding the strength to face fears, failures and other problems or concerns by taking the path of faith. + Religious + + + TVPG + + + + Pastor Robert Morris Ministries + Pastor Robert Morris from Gateway Church in Dallas-Fort Worth shares insights from God's word to help one in everyday life. + Religious + + + TVG + + + + Dr. David Jeremiah + Practical Bible teaching. + Religious + + + TVG + + + + Amazing Facts With Doug Batchelor + The King Returns Pt. 2 + The great climax of the world's history is going to be when Christ comes and He sets everything right. Part 2 of 2. + Religious + + + TVG + + + + Israel: The Prophetic Connection + Join Rev. Dr. John Tweedie through images, on-site teaching and interviews. + Religious + + + + El ahijado de la muerte + Un caporal de hacienda se convierte en un bandido generoso que lucha contra los crueles hacendados. + + Jorge Negrete + Rita Conde + Leopoldo + + 1946 + Movies + Western + + + + Viva el chubasco + La lucha entre dos familias rivales trae muchas complicaciones a la vida de un pueblo. Las esposas hartas de estos conflictos deciden ponerse en huelga marital hasta que terminen las hostilidades y se logre la paz. + + Antonio Aguilar + Rebeca Silva + Eulalio González + + 1983 + Movies + Drama + + + + Vuelve el ojo de vidrio + Un héroe revolucionario vuelve a la acción cuando se entera que el Presidente ha sido asesinado. + + Antonio Aguilar + Flor Silvestre + + 1969 + Movies + Drama + + + + Vuelve el ojo de vidrio + Un héroe revolucionario vuelve a la acción cuando se entera que el Presidente ha sido asesinado. + + Antonio Aguilar + Flor Silvestre + + 1969 + Movies + Drama + + + + La Valentina + Una joven es cortejada por un charro, pero un general se viste como él y la rapta porque quiere ganar su amor. + + Jorge Negrete + Esperanza Baur + Raúl de Anda + + 1938 + Movies + Drama + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Vals sin fin + Un poeta celebra su cumpleaños en casa de su prometida pero se retira de pronto en medio de la lluvia y se enferma. + + Ana Luisa Peluffo + Carlos Bracho + Félix González + + 1972 + Movies + Drama + + + + El Tesoro del Rey Salomón + TinTan y su amada se internan en. + + Germán Valdés + Ana Bertha Lepe + Ingrid Garbo + + 1963 + Movies + Comedy + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Gigantes planetarios + Un científico construye un cohete para viajar a un planeta lejano, pero es asesinado y un colega toma su lugar. + + Guillermo Murray + Adriana Roel + Rogelio Guerra + + 1966 + Movies + Sci-Fi + + + 1 + + + + Santo contra los secuestradores + La policía pide a un enmascarado rescatar a un diseñador que ha sido secuestrado por unos falsificadores de dinero. + + Santo + Rossy Mendoza + John Bell + + 1973 + Movies + Adventure + + + + El camino de los espantos + Una tormenta impide que un grupo de personas prosiga su viaje por tren a la capital y continúan por un camino hechizado. + + Elsa Cardenas + Viruta + Gaspar Henaine + + 1967 + Movies + Comedy + + + + Los Endemoniados del Ring + La mafia se ha infiltrado en el mundo de la lucha libre y un empresario es asesinado debido a los negocios ilegales. + + Karloff Lagarde + Armando Silvestre + Jorge Rivero + + 1964 + Movies + Action + + + + Santo vs. las lobas + La reina de los licántropos mata a un detective y desencadena una lucha con balas de plata para eliminarlos de la selva. + + Santo + Nubia Martí + Rodolfo de Anda + + 1976 + Movies + Adventure + + + + El Moro de Cumpas + El imbatible caballo Moro de la ciudad de Cumpas se enfrenta al imponente Zaino de Aguaprieta. Los habitantes del pueblo son capaces de apostar hasta lo que no tienen. + + Antonio Aguilar + Alicia Encinas + Gilberto Valenzuela + + 1976 + Movies + Drama + + + + El arma secreta + Un policía norteño va a la capital a capacitarse para ascender a agente federal y se hospeda en la casa de su tío. + + Sergio Goyri + Rafael Inclán + Agustín Bernal + + 1992 + Movies + Action + + + + El regreso de los 3 cuernos de chivo + Tres poderosos narcotraficantes que en el pasado fueron amigos regresan para poner en claro el límite de sus territorios. + + Sergio Goyri + Telly Filippini + Eleazar García Jr. + + 2001 + Movies + Action + + + + Dulces navajas + José Manuel Gómez Perales, alias El Jaro, vive solo en Madrid sin más compañía que la de su banda y sus navajas. Un día conoce a Toñi, una adolescente drogadicta de la que se enamora y por la que está dispuesto a hacer cualquier cosa. + + Verónica Castro + Jaime Garza + José Luis Manzano + + 1980 + Movies + Drama + + + + Dulces navajas + José Manuel Gómez Perales, alias El Jaro, vive solo en Madrid sin más compañía que la de su banda y sus navajas. Un día conoce a Toñi, una adolescente drogadicta de la que se enamora y por la que está dispuesto a hacer cualquier cosa. + + Verónica Castro + Jaime Garza + José Luis Manzano + + 1980 + Movies + Drama + + + + Juana la Cubana + Una mujer dedicada al espectáculo quiere ayudar a sus compatriotas defendiéndolos de la tiranía de un dictador, por lo que arriesga su vida constantemente. + + Rosa Gloria Chagoyán + Rolando Fernández + Erik Estrada + + 1994 + Movies + Action + + + + El camino de los espantos + Una tormenta impide que un grupo de personas prosiga su viaje por tren a la capital y continúan por un camino hechizado. + + Elsa Cardenas + Viruta + Gaspar Henaine + + 1967 + Movies + Comedy + + + + Santo contra los secuestradores + La policía pide a un enmascarado rescatar a un diseñador que ha sido secuestrado por unos falsificadores de dinero. + + Santo + Rossy Mendoza + John Bell + + 1973 + Movies + Adventure + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Las tres perfectas casadas + Tres parejas casadas se reúnen para celebrar el décimo octavo aniversario de su matrimonio y lamentan la ausencia de un amigo que fue padrino de las tres bodas. + + Arturo de Córdova + Lauro Hidalgo + José María Linares Rivas + + 1952 + Movies + Drama + + + + Mi último tango + Una mujer pierde la popularidad que tanto le costó conseguir a cambio de un gran amor en la Argentina de los año 20. + + Sara Montiel + Maurice Ronet + Isabel Garcés + + 1960 + Movies + Drama + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Las engañadas + Una joven se casa en secreto con su novio y después de su luna de miel, descubre que fue una boda falsa tramada por él. + + Luis Beristáin + Miguel Manzano + Amanda del Llano + + 1955 + Movies + Drama + + + + Chicas casaderas + Una joven acepta casarse con un hombre a quien no ama sólo para ayudar a su padre. + + Héctor Godoy + Maricruz Olivier + Sylvia Suárez + + 1961 + Movies + + + + Las tres perfectas casadas + Tres parejas casadas se reúnen para celebrar el décimo octavo aniversario de su matrimonio y lamentan la ausencia de un amigo que fue padrino de las tres bodas. + + Arturo de Córdova + Lauro Hidalgo + José María Linares Rivas + + 1952 + Movies + Drama + + + + Mi último tango + Una mujer pierde la popularidad que tanto le costó conseguir a cambio de un gran amor en la Argentina de los año 20. + + Sara Montiel + Maurice Ronet + Isabel Garcés + + 1960 + Movies + Drama + + + + Gavilán o paloma + José José muestra la realidad de la vida de una estrella y cómo la fama, el dinero, y los placeres pueden destruirlo. + + José José + Christian Bach + Gina Romand + + 1985 + Movies + Drama + + + + Gavilán o paloma + José José muestra la realidad de la vida de una estrella y cómo la fama, el dinero, y los placeres pueden destruirlo. + + José José + Christian Bach + Gina Romand + + 1985 + Movies + Drama + + + + Las engañadas + Una joven se casa en secreto con su novio y después de su luna de miel, descubre que fue una boda falsa tramada por él. + + Luis Beristáin + Miguel Manzano + Amanda del Llano + + 1955 + Movies + Drama + + + + Chicas casaderas + Una joven acepta casarse con un hombre a quien no ama sólo para ayudar a su padre. + + Héctor Godoy + Maricruz Olivier + Sylvia Suárez + + 1961 + Movies + + + + La Sobrina del Señor Cura + Un cura se ve en serios aprietos y debe disciplinar a su sobrina quien hace de las suyas en las fiestas locales. + + Domingo Soler + Gustavo Rojo + Silvia Derbez + + 1954 + Movies + Drama + + + + Barrio Bajo + Dos cargadores participan en un maratón de baile para obtener dinero y pagar la cirugía de una limosnera ciega. + + Adalberto Martínez + Carmelita González + Gloria Ríos + + 1950 + Movies + Comedy + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Juventud sin Dios + Un sacerdote se hace entrenador de fútbol de la universidad, el equipo obtiene varias victorias y ayuda a los jóvenes. + + Joaquín Cordero + Elvira Quintana + Julio Alemán + + 1962 + Movies + Drama + + + + Un mulato llamado Martín + Historia inspirada en la vida de San Martín de Porres, un joven con un futuro prometedor que entra a un convento y se gana un apodo debido a su obsesión por barrer sin descanso. + + René Muñoz + Luis Álvarez + Nerón Rojas + + 1974 + Movies + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Santa + Una prostituta y un pianista ciego se enamoran en el burdel donde ambos trabajan. + + Carlos Orellana + Mimi Derba + Ernesto Guillen + + 1932 + Movies + Drama + + + + Yo pecador + Los triunfos artísticos y la desilusión por la vida hacen que José Mojica decida convertirse en sacerdote. + + Pedro Geraldo + Pedro Armendáriz + Libertad Lamarque + + 1959 + Movies + Drama + + + + Juventud sin Dios + Un sacerdote se hace entrenador de fútbol de la universidad, el equipo obtiene varias victorias y ayuda a los jóvenes. + + Joaquín Cordero + Elvira Quintana + Julio Alemán + + 1962 + Movies + Drama + + + + Un mulato llamado Martín + Historia inspirada en la vida de San Martín de Porres, un joven con un futuro prometedor que entra a un convento y se gana un apodo debido a su obsesión por barrer sin descanso. + + René Muñoz + Luis Álvarez + Nerón Rojas + + 1974 + Movies + + + + Divinas palabras + Un joven sacristán y su esposa viven entre ladrones y seres deformes, él defiende a su mujer con sabias palabras. + + Silvia Pinal + Mario Almada + Rita Macedo + + 1978 + Movies + Drama + + + + Santa + Una prostituta y un pianista ciego se enamoran en el burdel donde ambos trabajan. + + Carlos Orellana + Mimi Derba + Ernesto Guillen + + 1932 + Movies + Drama + + + + Santa + Una prostituta y un pianista ciego se enamoran en el burdel donde ambos trabajan. + + Carlos Orellana + Mimi Derba + Ernesto Guillen + + 1932 + Movies + Drama + + + + Piel Canela + Un gran cirujano opera a una mujer con el rostro destrozado que roba y huye de la policía, sin saber que se convertirá en su gran amor. + + Sara Montiel + Manolo Fabregas + + 1953 + Movies + Drama + + + + Subida al cielo + Un joven de provincia se ve obligado a posponer sus planes de matrimonio, porque su moribunda madre le hace un encargo. + + Lilia Prado + Carmelita González + Esteban Márquez + + 1951 + Movies + Drama + + + 3 + + + + Humo en los ojos + Una bailarina de cabaret es acusada del naufragio de un barco donde sólo un marinero se salvó, pues la llaman maldita. + + David Silva + Meche Barba + María Luisa Zea + + 1946 + Movies + Drama + + + + La Virgen de Coromoto + Un drama conmovedor en que la Virgen María se le aparece a Coromoto, un indio venezolano. + + Carmen Julia Álvarez + Carto Carrero + + 1951 + Movies + Drama + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + A media luz + Un cantante de tango se enreda con varias mujeres; los problemas surgen cuando una queda embarazada y otra muere. + + Hugo del Carril + Sara Guasch + Carmen Montejo + + 1947 + Movies + Drama + + + + Las musiqueras + Una joven solterona sorprende a un ladrón en su casa, lo emplea como chofer y tres amigas de ella le juegan una broma. + + Pedro Armendáriz Jr. + Evita Muñoz + Norma Lazareno + + 1983 + Movies + Comedy + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Dos tipos de cuidado + Dos grandes amigos son muy mujeriegos, pero uno ama a la hermana del otro, pero por enredos de faldas la pierde. + + Jorge Negrete + Pedro Infante + Carmelita González + + 1953 + Movies + + + 2 + + + + El amor tiene cara de mujer + La dueña de un salón de belleza y sus empleadas se cuentan sus vidas así como sus luchas para salir adelante. + + Irán Eory + Fernando Allende + Lucy Gallardo + + 1973 + Movies + Drama + + + + A media luz + Un cantante de tango se enreda con varias mujeres; los problemas surgen cuando una queda embarazada y otra muere. + + Hugo del Carril + Sara Guasch + Carmen Montejo + + 1947 + Movies + Drama + + + + Había una vez un marido + Las peripecias que sufre un hombre que quiere declararse culpable de un crimen pero nadie se lo cree. + + Rafael Baledón + Pedro Infante + Lilia Michel + + 1952 + Movies + Comedy + + + + Cuando me vaya + Una famosa compositora escucha por radio un homenaje que se celebra en su honor y recuerda con nostalgia su vida. + + Libertad Lamarque + Miguel Torruco + Andrés Soler + + 1954 + Movies + Drama + + + + Amok + Una joven seduce a un médico para usarlo en sus propósitos de estafar a los ricos amantes de ella, pero él se niega. + + María Félix + Julián Soler + Stella Inda + + 1944 + Movies + Drama + + + + Amok + Una joven seduce a un médico para usarlo en sus propósitos de estafar a los ricos amantes de ella, pero él se niega. + + María Félix + Julián Soler + Stella Inda + + 1944 + Movies + Drama + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Subida al cielo + Un joven de provincia se ve obligado a posponer sus planes de matrimonio, porque su moribunda madre le hace un encargo. + + Lilia Prado + Carmelita González + Esteban Márquez + + 1951 + Movies + Drama + + + 3 + + + + ¡Cuando la Tierra tembló! + Los clientes y empleados de un restaurante quedan atrapados tras un temblor y sus vidas cambian durante este accidente. + + Arturo de Córdova + Emilio Tuero + Carmen Hermosillo + + 1942 + Movies + Drama + + + + Mi querido capitán + Las esposas de unos señores muy respetados descubren sus aventuras extramaritales. + + Rosita Quintana + Fernando Soler + Sara García + + 1950 + Movies + Comedy + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Rosenda + Un rufián envía a su ayudante a exigir la mano de una campesina, mas en el lapso de la entrega, éste se enamora de ella. + + Fernando Soler + Rita Macedo + Nicolás Rodríguez + + 1948 + Movies + Drama + + + + Tierra Brava + Nativos de una zona tabacalera veracruzana exaltan las costumbres folclóricas durante algunas festividades. + + Esther Fernández + Rafael Falcón + Joaquín Pardavé + + 1938 + Movies + + + + Subida al cielo + Un joven de provincia se ve obligado a posponer sus planes de matrimonio, porque su moribunda madre le hace un encargo. + + Lilia Prado + Carmelita González + Esteban Márquez + + 1951 + Movies + Drama + + + 3 + + + + Escuela de valientes + Para obligar a una mujer a que se case con él, un ranchero mata a algunos de los empleados de ella. + + Rosita Quintana + Eulalio González + Arturo Martínez + + 1961 + Movies + Drama + + + + Los Hermanos Muerte + Tres hermanos empleados de una hacienda se unen a la lucha armada en tiempos de la Revolución Mexicana. + + Lupita Ferrer + Lola Beltrán + Emilio Fernández + + 1965 + Movies + Drama + + + + Rosenda + Un rufián envía a su ayudante a exigir la mano de una campesina, mas en el lapso de la entrega, éste se enamora de ella. + + Fernando Soler + Rita Macedo + Nicolás Rodríguez + + 1948 + Movies + Drama + + + + Tierra Brava + Nativos de una zona tabacalera veracruzana exaltan las costumbres folclóricas durante algunas festividades. + + Esther Fernández + Rafael Falcón + Joaquín Pardavé + + 1938 + Movies + + + + El Rey de la Pistola + Tres delincuentes son contratados por dos enmascarados para asaltar un banco, pero uno de ellos traiciona a los demás. + + Miguel Aceves Mejía + Joaquín Cordero + Lilia Prado + + 1962 + Movies + Action + + + + Flor Silvestre + El patrón de una hacienda echa de su casa a su hijo y la mujer de él cuando descubre sus ideas revolucionarias. + + Dolores del Río + Pedro Armendáriz + Emilio Fernández + + 1943 + Movies + Drama + + + + Flor Silvestre + El patrón de una hacienda echa de su casa a su hijo y la mujer de él cuando descubre sus ideas revolucionarias. + + Dolores del Río + Pedro Armendáriz + Emilio Fernández + + 1943 + Movies + Drama + + + + Escuela de valientes + Para obligar a una mujer a que se case con él, un ranchero mata a algunos de los empleados de ella. + + Rosita Quintana + Eulalio González + Arturo Martínez + + 1961 + Movies + Drama + + + + El ahijado de la muerte + Un caporal de hacienda se convierte en un bandido generoso que lucha contra los crueles hacendados. + + Jorge Negrete + Rita Conde + Leopoldo + + 1946 + Movies + Western + + + + Subida al cielo + Un joven de provincia se ve obligado a posponer sus planes de matrimonio, porque su moribunda madre le hace un encargo. + + Lilia Prado + Carmelita González + Esteban Márquez + + 1951 + Movies + Drama + + + 3 + + + + Flor Silvestre + El patrón de una hacienda echa de su casa a su hijo y la mujer de él cuando descubre sus ideas revolucionarias. + + Dolores del Río + Pedro Armendáriz + Emilio Fernández + + 1943 + Movies + Drama + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Juventud sin Dios + Un sacerdote se hace entrenador de fútbol de la universidad, el equipo obtiene varias victorias y ayuda a los jóvenes. + + Joaquín Cordero + Elvira Quintana + Julio Alemán + + 1962 + Movies + Drama + + + + Paloma herida + Un hombre llega a una isla para abusar y robar a los indios, mas éste es asesinado por una joven desconocida. + + Emilio Fernández + Andrés Soler + Patricia Conde + + 1963 + Movies + Drama + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + La mujer ajena + Un villano desea a la mujer de otro hombre y ella ya es amante de un jugador que le pide dinero para pagar sus deudas. + + Rita Macedo + Gustavo Rojo + Manuel Fábregas + + 1954 + Movies + Drama + + + + Padre contra hijo + Al enterarse de quién es su progenitor, un hijo bastardo lo busca pero él lo rechaza y luego el joven le salva la vida. + + Julio Villarreal + Manuel Fábregas + Silvia Derbez + + 1955 + Movies + Thriller + + + + Juventud sin Dios + Un sacerdote se hace entrenador de fútbol de la universidad, el equipo obtiene varias victorias y ayuda a los jóvenes. + + Joaquín Cordero + Elvira Quintana + Julio Alemán + + 1962 + Movies + Drama + + + + Paloma herida + Un hombre llega a una isla para abusar y robar a los indios, mas éste es asesinado por una joven desconocida. + + Emilio Fernández + Andrés Soler + Patricia Conde + + 1963 + Movies + Drama + + + + Aquellos ojos verdes + Al quedar huérfana una jovencita de 14 años, va a la capital en busca de un amigo de su padre para que le brinde ayuda. + + Ramón Armengod + Carolina Barret + Felipe de Alba + + 1952 + Movies + Drama + + + + La venenosa + En un circo, una adivina le dice a la encantadora de serpientes que todo hombre que la ame morirá, por lo que ella teme por la vida de su novio. + + Ana Luisa Peluffo + Jorge Salcedo + Ramón Gay + + 1959 + Movies + Drama + + + + La mujer ajena + Un villano desea a la mujer de otro hombre y ella ya es amante de un jugador que le pide dinero para pagar sus deudas. + + Rita Macedo + Gustavo Rojo + Manuel Fábregas + + 1954 + Movies + Drama + + + + La mujer ajena + Un villano desea a la mujer de otro hombre y ella ya es amante de un jugador que le pide dinero para pagar sus deudas. + + Rita Macedo + Gustavo Rojo + Manuel Fábregas + + 1954 + Movies + Drama + + + + Padre contra hijo + Al enterarse de quién es su progenitor, un hijo bastardo lo busca pero él lo rechaza y luego el joven le salva la vida. + + Julio Villarreal + Manuel Fábregas + Silvia Derbez + + 1955 + Movies + Thriller + + + + Humo en los ojos + Una bailarina de cabaret es acusada del naufragio de un barco donde sólo un marinero se salvó, pues la llaman maldita. + + David Silva + Meche Barba + María Luisa Zea + + 1946 + Movies + Drama + + + + La Valentina + Una joven es cortejada por un charro, pero un general se viste como él y la rapta porque quiere ganar su amor. + + Jorge Negrete + Esperanza Baur + Raúl de Anda + + 1938 + Movies + Drama + + + + Marejada + Un médico va a trabajar a la costa, pero el presidente municipal lo recibe con indiferencia y solo se hace amigo de un niño. + + Bárbara Gil + Carlos Navarro + Isabela Corona + + 1952 + Movies + Drama + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + La llamada de la muerte + Un norteamericano llega a Nicaragua y recibe una llamada donde se le ordena matar a un profesor, y no debe fallar. + + Carlos López Moctezuma + Martha Roth + Víctor Junco + + 1959 + Movies + Action + + + + El Imperio de Drácula + Un hombre busca al vampiro que mató a su padre para impedir que éste vuelva a la vida y lucha contra sus mujeres. + + Lucha Villa + Cesar de Campo + Eric del Castillo + + 1967 + Movies + Horror + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + El castillo de los monstruos + Una pareja se ve forzada a quedarse en un castillo terrorífico cuando su coche queda averiado. El sitio está lleno de criaturas como un gorila, un vampiro, una momia y el monstruo de Frankenstein. + + Antonio Espino + Evangelina Elizondo + Carlos Orellana + + 1957 + Movies + Comedy + + + + Extraña pasajera + Durante un largo viaje en tren, la policía descubre unas joyas en la bolsa de una actriz, pero ella es inocente. + + Víctor Manuel Mendoza + Emilia Guiú + Miguel Angel Ferriz + + 1952 + Movies + Drama + + + + La llamada de la muerte + Un norteamericano llega a Nicaragua y recibe una llamada donde se le ordena matar a un profesor, y no debe fallar. + + Carlos López Moctezuma + Martha Roth + Víctor Junco + + 1959 + Movies + Action + + + + El Imperio de Drácula + Un hombre busca al vampiro que mató a su padre para impedir que éste vuelva a la vida y lucha contra sus mujeres. + + Lucha Villa + Cesar de Campo + Eric del Castillo + + 1967 + Movies + Horror + + + + El ataúd del vampiro + Un doctor y su ayudante roban el ataúd de un vampiro y sacan la estaca clavada en su corazón. + + Germán Robles + Ariadne Welter + Abel Salazar + + 1957 + Movies + Horror + + + + El espejo de la bruja + En el siglo XIX, en una lóbrega mansión frente a un espejo mágico, una bruja previene de muerte a una mujer. + + Rosita Arenas + Armando Calvo + Isabela Corona + + 1960 + Movies + Horror + + + TVG + + + 1 + + + + El castillo de los monstruos + Una pareja se ve forzada a quedarse en un castillo terrorífico cuando su coche queda averiado. El sitio está lleno de criaturas como un gorila, un vampiro, una momia y el monstruo de Frankenstein. + + Antonio Espino + Evangelina Elizondo + Carlos Orellana + + 1957 + Movies + Comedy + + + + El castillo de los monstruos + Una pareja se ve forzada a quedarse en un castillo terrorífico cuando su coche queda averiado. El sitio está lleno de criaturas como un gorila, un vampiro, una momia y el monstruo de Frankenstein. + + Antonio Espino + Evangelina Elizondo + Carlos Orellana + + 1957 + Movies + Comedy + + + + Extraña pasajera + Durante un largo viaje en tren, la policía descubre unas joyas en la bolsa de una actriz, pero ella es inocente. + + Víctor Manuel Mendoza + Emilia Guiú + Miguel Angel Ferriz + + 1952 + Movies + Drama + + + + Historia de un gran amor + Manuel Venegas regresa a su pueblo después de muchos años para buscar a Soledad, el amor de su vida. Para su sorpresa, la encuentra casada con otro, pero, sin importarles nada, están dispuestos a luchar por su amor. + + Jorge Negrete + Gloria Marín + + 1942 + Movies + Drama + + + + El castillo de los monstruos + Una pareja se ve forzada a quedarse en un castillo terrorífico cuando su coche queda averiado. El sitio está lleno de criaturas como un gorila, un vampiro, una momia y el monstruo de Frankenstein. + + Antonio Espino + Evangelina Elizondo + Carlos Orellana + + 1957 + Movies + Comedy + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Había una vez un marido + Las peripecias que sufre un hombre que quiere declararse culpable de un crimen pero nadie se lo cree. + + Rafael Baledón + Pedro Infante + Lilia Michel + + 1952 + Movies + Comedy + + + + A media luz + Un cantante de tango se enreda con varias mujeres; los problemas surgen cuando una queda embarazada y otra muere. + + Hugo del Carril + Sara Guasch + Carmen Montejo + + 1947 + Movies + Drama + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Historia de un gran amor + Manuel Venegas regresa a su pueblo después de muchos años para buscar a Soledad, el amor de su vida. Para su sorpresa, la encuentra casada con otro, pero, sin importarles nada, están dispuestos a luchar por su amor. + + Jorge Negrete + Gloria Marín + + 1942 + Movies + Drama + + + + El Amor No Es Ciego + Un boxeador gana un campeonato pero queda lastimado y debe retirarse, después se enamora de una joven ciega que lo ama. + + Silvia Pinal + David Silva + Nelly Montiel + + 1950 + Movies + Drama + + + + Había una vez un marido + Las peripecias que sufre un hombre que quiere declararse culpable de un crimen pero nadie se lo cree. + + Rafael Baledón + Pedro Infante + Lilia Michel + + 1952 + Movies + Comedy + + + + BBQ Pitmasters + Kings of Carolina + North Carolina cookers compete for $50,000 and the Grand Champion title. + Food + Game Shows + + + TVPG + + + + BBQ Pitmasters + Lone Star Smoke War + A battle for the title of. + Food + Game Shows + + + TVPG + + + + BBQ Pitmasters + Made in the USA + Find out which wild card competitor will emerge victorious. + Food + Game Shows + + + TVPG + + + + BBQ Pitmasters + Ribs, Ribs and More Ribs + Find out who will emerge victorious and continue on to win the title of. + Food + Game Shows + + + TVPG + + + + BBQ Pitmasters + Kings of Carolina + North Carolina cookers compete for $50,000 and the Grand Champion title. + Food + Game Shows + + + TVPG + + + + BBQ Pitmasters + Lone Star Smoke War + A battle for the title of. + Food + Game Shows + + + TVPG + + + + BBQ Pitmasters + Lone Star Smoke War + A battle for the title of. + Food + Game Shows + + + TVPG + + + + BBQ Pitmasters + Made in the USA + Find out which wild card competitor will emerge victorious. + Food + Game Shows + + + TVPG + + + + BBQ Pitmasters + Ribs, Ribs and More Ribs + Find out who will emerge victorious and continue on to win the title of. + Food + Game Shows + + + TVPG + + + + BBQ Pitmasters + Best In Beef + Thrilling BBQ pit master's semi final round. + Food + Game Shows + + + TVPG + + + + BBQ Pitmasters + Kansas City Que-off + Competing for the. + Food + Game Shows + + + TVPG + + + + Extreme RVs + The Rockin' Rollers; a Family's Stylin' Sprinter; a Tiny House on Wheels + Band buses with Hemphill Brothers. + Travel + + + TVG + + + + Extreme RVs + Entegra Cornerstone; Renegade IKON; Global Expedition Vehicles Pangea + A coach custom built on a Freightliner truck chassis; Entegra coach; Pangea, the survival vehicle. + Travel + + + TVG + + + + Extreme RVs + Featherlite Luxury Coach, Thor Toy Hauler and Duba's Horse Trailer Conversion + An insane $2,000,000 RV in Virginia; an epic toy hauler with garage and tailgate patio; a trailer for a rodeo star. + Travel + + + TVG + + + + Extreme RVs + Foretravel Quad Slide; American Coach Heritage; Heintz Designs 1957 Airfloat Landyacht + A 1.2 million-dollar custom motor home; a first-class party-mobile; a 1958 Airfloat. + Travel + + + TVG + + + + Extreme RVs + Marathon Coach's Custom RV and Trailer Combo, Volkner Mobil Performance RV and An Updated Vintage Ai + The Mobil Performance RV; Oregon's Marathon Coach; an updated vintage Airstream. + Travel + + + TVG + + + + Extreme RVs + Newmar King Aire; Forks Continental Coach; EarthRoamer + Newmar, the luxury RV builder; a 43 foot long custom trailer; EarthRoamer, the off-road expedition vehicle. + Travel + + + TVG + + + + Extreme RVs + Unicat's Off-Road Romper, TImeless Airstream Hot Rod and Bespoke's Cushy Caravan + A Unicat expedition vehicle; a vintage Airstream motor home becomes a hot rod in Colorado; a Mercedes Sprinter made into a luxury van. + Travel + + + TVG + + + + Bahamas Life + From Scrubs to Sandals + Busy doctors from New Orleans want to take time out of their hectic schedules to spend more time together in family-friendly Hopetown. + Reality TV + + + TVG + + + + Bahamas Life + Grand Bahama Grandma + A trailblazing Atlanta native gets ready to kick back and enjoy the fruits of her labor with a permanent home in Freeport, Grand Bahama, where she can relax and unwind from her busy career. + Reality TV + + + TVG + + + + Bahamas Life + Happy Anniversary + A Houston couple celebrating their 25th wedding anniversary want to mark the occasion by buying a family retreat on the island of Exuma. + Reality TV + + + TVG + + + + Bahamas Life + New Love and a New Home + Newlyweds hunt for a home with a view in Great Exuma where they can escape when he returns from overseas military duty. + Reality TV + + + TVG + + + + Bahamas Life + Out of the Montreal Cold + A Canadian couple gets ready to put the hectic pace of Montreal behind them by unwinding in an island home. + Reality TV + + + TVG + + + + Bahamas Life + Sweet Home Abaco + An Alabama couple looks for the perfect vacation home in the Abaco Islands region of the Bahamas; they hope to find a place where their large extended family and their beloved dog can get the rest and relaxation they desperately need. + Reality TV + + + TVG + + + + Bahamas Life + This Is Not Los Angeles + A London-born woman searches for a private sanctuary away from her busy life in Los Angeles on Eleuthera where she can work remotely, but also host her friends and cut loose. + Reality TV + + + TVG + + + + Bahamas Life + Traffic Jams to Golf Carts + After years of visiting, a California couple go on the hunt for a private getaway in Elbow Cay that helps balance out their busy lives. + Reality TV + + + TVG + + + + Bahamas Life + Treasure Cay Stole Their Heart + Busy London professionals want to find a place in idyllic Treasure Cay where they can escape their stressful lives and spend quality time together. + Reality TV + + + TVG + + + + Bahamas Life + A Boater's Paradise + Avid boaters from North Carolina have been hitting the open waters together for over 30 years; now, they are looking to Abaco, the boating capital of the Bahamas, to find their dream home and must choose between Great Guana Cay and Man-O-War Cay. + Reality TV + + + TVG + + + + Island Life + Family Makes Move From Tacoma to Vashon Island, Washington + A family prepares to move from Tacoma to Vashon Island, Wash., because of its eccentric reputation and seemingly untouched setting. + Reality TV + + + TVG + + + + Island Life + Family Moves From Mount Airy to Topsail Beach, North Carolina + A couple wants to leave the mountains of North Carolina for the relaxing waters of Topsail Island, where they hope to enjoy more outdoor activities. + Reality TV + + + TVG + + + + Island Life + Family Moves From New Hampshire to Marco Island, Florida + A couple want to move from New England to Marco Island, Fla., before their daughter starts school, but they must first sell their home. + Reality TV + + + TVG + + + + Island Life + Family Relocates From Johnson City, Tennessee to Topsail Beach, North Carolina + A couple wants their children to experience an outdoor lifestyle, so they set their sights on Topsail Island, N.C. + Reality TV + + + TVG + + + + Island Life + Family Relocates From Sweltering Scottsdale to Cool Coronado Island + Tired of the heat and pace of Scottsdale, Ariz., a family prepares to move to Coronado Island, Calif. + Reality TV + + + TVG + + + + Island Life + Family Relocates From the Desert to the Coastal Breezes of Coronado Island + After years of vacationing on Coronado Island, a couple decides to leave Arizona for a permanent home on the island. + Reality TV + + + TVG + + + + Island Life + Kentucky Family Moves to Marco Island, Florida + After spending their summer vacations researching places to move, Kentucky teachers Kevin and Amanda want to move to Marco Island, Fla. + Reality TV + + + TVG + + + + Island Life + Newly Married Couple Moves From Boston to Martha's Vineyard + Newlyweds decide to move from Boston to Martha's Vineyard, where they will be able to find peace and relaxation. + Reality TV + + + TVG + + + + Island Life + Orlando Couple Searches for a Home on Barrier Island, Florida + A couple want to find a house on Florida's Barrier Island, which would be suited for relaxing evenings and weekends. + Reality TV + + + TVG + + + + Island Life + Single Mom and Twin Daughters Move From Lakeland to Little Gasparilla Island + A mother and her twin daughters move from landlocked Lakeland, Fla., to the island of Little Gasparilla, Fla. + Reality TV + + + TVG + + + + Island Life + Couple Longs for Permanent Vacation on South Padre Island + A couple from San Antonio wants to settle down on South Padre Island, where they have spent many vacations. + Reality TV + + + TVG + + + + Island Life + Couple Moves From Atlanta to Be Closer to Family in South Carolina + Mervin and Chiffon search for a home closer to family on the John and Daniel Islands near Charleston; the couple hopes to find a home that feels like a permanent vacation. + Reality TV + + + TVG + + + + Island Life + Family Relocates From Sweltering Scottsdale to Cool Coronado Island + Tired of the heat and pace of Scottsdale, Ariz., a family prepares to move to Coronado Island, Calif. + Reality TV + + + TVG + + + + Island Life + Family Relocates From the Desert to the Coastal Breezes of Coronado Island + After years of vacationing on Coronado Island, a couple decides to leave Arizona for a permanent home on the island. + Reality TV + + + TVG + + + + Island Life + Kentucky Family Moves to Marco Island, Florida + After spending their summer vacations researching places to move, Kentucky teachers Kevin and Amanda want to move to Marco Island, Fla. + Reality TV + + + TVG + + + + Island Life + Newly Married Couple Moves From Boston to Martha's Vineyard + Newlyweds decide to move from Boston to Martha's Vineyard, where they will be able to find peace and relaxation. + Reality TV + + + TVG + + + + Island Life + Orlando Couple Searches for a Home on Barrier Island, Florida + A couple want to find a house on Florida's Barrier Island, which would be suited for relaxing evenings and weekends. + Reality TV + + + TVG + + + + Island Life + Single Mom and Twin Daughters Move From Lakeland to Little Gasparilla Island + A mother and her twin daughters move from landlocked Lakeland, Fla., to the island of Little Gasparilla, Fla. + Reality TV + + + TVG + + + + Island Life + Couple Longs for Permanent Vacation on South Padre Island + A couple from San Antonio wants to settle down on South Padre Island, where they have spent many vacations. + Reality TV + + + TVG + + + + Island Life + Couple Moves From Atlanta to Be Closer to Family in South Carolina + Mervin and Chiffon search for a home closer to family on the John and Daniel Islands near Charleston; the couple hopes to find a home that feels like a permanent vacation. + Reality TV + + + TVG + + + + Island Life + Family Makes Move From Tacoma to Vashon Island, Washington + A family prepares to move from Tacoma to Vashon Island, Wash., because of its eccentric reputation and seemingly untouched setting. + Reality TV + + + TVG + + + + Island Life + Family Moves From Mount Airy to Topsail Beach, North Carolina + A couple wants to leave the mountains of North Carolina for the relaxing waters of Topsail Island, where they hope to enjoy more outdoor activities. + Reality TV + + + TVG + + + + Island Life + Family Moves From New Hampshire to Marco Island, Florida + A couple want to move from New England to Marco Island, Fla., before their daughter starts school, but they must first sell their home. + Reality TV + + + TVG + + + + Island Life + Family Relocates From Johnson City, Tennessee to Topsail Beach, North Carolina + A couple wants their children to experience an outdoor lifestyle, so they set their sights on Topsail Island, N.C. + Reality TV + + + TVG + + + + Beachfront Bargain Hunt + My Heart-a Belongs to Puerto Vallarta + After visiting Puerto Vallarta, Mexico, for many years, a couple decides to find a beachfront oasis it can visit whenever it feels the need to get away. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + Not the Average Joe on the Gulf + A couple from Georgia and its dog want to find a home on a dog-friendly beach in St. Joseph's Bay, Fla. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + Passion for Port Lavaca, Texas + Tired of their commute, a couple wants to move to Port Lavaca so they can spend more time enjoying the beach. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + Passport to Rio Hato, Panama + A man from Vancouver, Canada, has planned to live on the beach since he was a teenager, and now searches for a place in Rio Hato, Panama. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + Redemption in Rockport, Texas + After spending family vacations in the Gulf Coast community of Rockport, Texas, a couple wants to find a beach house of its own. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + She Wares it Well + A woman with an affinity for beach living wants to buy a home on the Jersey Shore for her and her mother. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + Small Island, Big Beach House + After marrying on Daufuskie Island, a family of eleven wants to find a place where it can visit, relax and enjoy the beach. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + A Crucial Life Change in Crucita + After years of working sixteen-hour days, a man has decided to find an oceanfront retreat where he can find tranquility. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + All in for Agana Beach, Guam + A woman wants to leave her single-family home for a more manageable residence on Agana Beach in Guam. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + Caribbean Dreamin' in the Great White North + A young couple from Calgary, Alberta, would like to find a beachfront vacation property in Puerto Rico. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + Costa Rican Playa Persuasion + A couple want to make memories before their teenage daughters grow up, and decide to find a beachfront home in Costa Rica. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + Destination Daytona Beach, Fla + After three years of sharing space with friends, a couple wants to find a beachfront home of their own. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + Finding a Castle on the Coast in Fort Pierce, Fla + A couple looks for a family vacation home in the. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + It's a Life of Ease in the Lower Keys of Florida + Wildlife biologists from Alaska hope to find new opportunities and a home in the Lower Keys of Florida. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + Key West, Florida Comeback + A single mother wants to find a vacation home in Key West, Florida, where she can reconnect with her sons. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + Opening Up Shop in San Jacinto, Ecuador + A couple wants to open a bed and breakfast in San Jacinto, Ecuador, but the search will not be an easy one. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + Searching for a Seafront Sanctuary in Saipan + San Diego residents plan to move to Saipan in the Northern Mariana Islands with room for storage for their business. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + Sustainability on the Sands of Guanacaste, Costa Rica + Looking to escape the pace of life in Denver, a couple wants to live amongst nature and leave a smaller footprint on the Earth in Guanacaste, Costa Rica. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + Swooning for Tamuning, Guam + A man whose six-mile commute can last up to an hour each way, wants to find a home closer to his job in Tamuning, Guam. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + The Value of Friendship in Manta + Newlyweds want to find a tropical vacation getaway in Manta, Ecuador, and luckily have a friend in the area who works in the real estate business. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + A Young Couple With a Baby on the Way Searches for a Beach House on the Outer Banks + A young, active couple wants to find the perfect beach home on the shores of Outer Banks where they can spend quality time as a family. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + A Treasure on Emerald Isle + With their daughters grown, a couple wants to find a perfect getaway that is big enough for visiting family. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + A Gem of a Home on Emerald Isle, N.C + A couple wants to find the perfect weekend getaway in Emerald Isle, N.C., where their children can have memorable summers. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + A Home on the Grand Strand in South Carolina + A couple hunts for a beachfront home where they can unwind after a busy work week, and they turn their attention toward the Grand Strand in South Carolina. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + A Home to Grow in Nags Head, N.C + Fond of childhood memories, a couple wants to give their sons unforgettable summers in Nags Head, N.C. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + A Gulden Villa With a View + A couple wants a relaxing escape in the Jersey Shore, so they search for a villa, but with dogs restricted from most beaches, there may be difficulties. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + Sargent, Beachfront and Center + A family with different likes wants to find a home in Sargent, Texas, but they must agree on a home that will fit their tight budget. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + Vacation Home on the Gorgeous Crystal Coast of North Carolina + After vacationing on the Crystal Coast for years, a family decides to buy a home with easy water access in the area. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + Paradise on the Pacific in Long Beach, Washington + A family wants to buy a dream vacation home on Long Beach, Wash., but needs help from a real estate agent to get the most out of their budget. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + Pining for a Peaceful Paradise in Pine Knoll Shores + A couple wants to leave the tourist town of Atlantic Beach for the slower paced lifestyle in Pine Knoll Shores, N.C. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + Texas Living on the Shores of Crystal Beach + A couple who has been vacationing in Crystal Beach, Texas, since high school wants to find a beach home in the area. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + The Point is to be Pleasant + A family searches for a house near the beach in Point Pleasant, N.J., but must consider child safety and parking. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + This is Just Way Too Mystic + A family dreams of finding a beachfront property in Mystic, Conn., and hopes to do so under their $375,000 budget. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + A Couple Looks for a Weekend Getaway in Picturesque and Prestigious Montauk + Enjoying the ability to decompress at the beach, a couple searches for a weekend getaway on the beach in Montauk, N.Y. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + Battling Budgets in North Myrtle Beach + A couple agrees on getting a vacation home in North Myrtle Beach, S.C., but they have differing ideas on the budget. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + Beach Living on the Shores of Barrington, R.I + A man wants to give his daughter the beachfront lifestyle he had as a child, and searches for a waterfront home in Narragansett Bay. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + Paradise on the Pacific in Long Beach, Washington + A family wants to buy a dream vacation home on Long Beach, Wash., but needs help from a real estate agent to get the most out of their budget. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + Pining for a Peaceful Paradise in Pine Knoll Shores + A couple wants to leave the tourist town of Atlantic Beach for the slower paced lifestyle in Pine Knoll Shores, N.C. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + Texas Living on the Shores of Crystal Beach + A couple who has been vacationing in Crystal Beach, Texas, since high school wants to find a beach home in the area. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + The Point is to be Pleasant + A family searches for a house near the beach in Point Pleasant, N.J., but must consider child safety and parking. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + This is Just Way Too Mystic + A family dreams of finding a beachfront property in Mystic, Conn., and hopes to do so under their $375,000 budget. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + A Couple Looks for a Weekend Getaway in Picturesque and Prestigious Montauk + Enjoying the ability to decompress at the beach, a couple searches for a weekend getaway on the beach in Montauk, N.Y. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + Battling Budgets in North Myrtle Beach + A couple agrees on getting a vacation home in North Myrtle Beach, S.C., but they have differing ideas on the budget. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + Beach Living on the Shores of Barrington, R.I + A man wants to give his daughter the beachfront lifestyle he had as a child, and searches for a waterfront home in Narragansett Bay. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + A Home to Grow in Nags Head, N.C + Fond of childhood memories, a couple wants to give their sons unforgettable summers in Nags Head, N.C. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + A Gulden Villa With a View + A couple wants a relaxing escape in the Jersey Shore, so they search for a villa, but with dogs restricted from most beaches, there may be difficulties. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + Sargent, Beachfront and Center + A family with different likes wants to find a home in Sargent, Texas, but they must agree on a home that will fit their tight budget. + Reality TV + Documentary + + + TVG + + + + Beachfront Bargain Hunt + Vacation Home on the Gorgeous Crystal Coast of North Carolina + After vacationing on the Crystal Coast for years, a family decides to buy a home with easy water access in the area. + Reality TV + Documentary + + + TVG + + + + You Live in What? + Greenhouse, Winery, Bank + Home conversions; winery; tobacco warehouse; castle; cave; shipping container; greenhouse; sheep wagon; historic bank; church; firehouse; barn. + Regular + + + TVG + + + + You Live in What? + Lighthouse, Train, Brothel + House conversions; lighthouse; World War II bunker; New Orleans brothel; grist mill. + Regular + + + TVG + + + + You Live in What? + Mission; Stables; Camp + A 17th-century mission; an old train depot; a fire station. + Regular + + + TVG + + + + You Live in What? + Movie House; Dairy; Soda Plant + A home made from tomato cans; an art gallery; grocery store; schoolhouse; water plant; fruit icehouse; convent; double-decker bus; movie house; soda bottling factory. + Regular + + + TVG + + + + You Live in What? + Oast House, Bank, Charter Bus + Home conversions; oast house; airplane hangar; grist mill; bank; grocery store; whiskey barrels; charter bus; church; barn; shipping containers; firehouse. + Regular + + + TVG + + + + You Live in What? + Plane, Bus, Gas Station + Home conversions; Catholic schoolhouse; World War II bunker; Seattle tower; gas station; grocery store; barn; firehouse; bus; plane; underground bathroom. + Regular + + + TVG + + + + You Live in What? + Restaurant, Trailer, Cave + Home conversions; schoolhouse; 100-year-old barn; missile silo; submarine; historic mill; oasis of trailers; cave; auto parts warehouse. + Regular + + + TVG + + + + You Live in What? + Waterworks, Factory, Convent + Waterworks; carriage house; pipe organ factory; train station; convent; charcoal warehouse; hidden tunnel under a brewery ice house home; converted metal shop; flour mill. + Regular + + + TVG + + + + You Live in What? + Windmill, Speakeasy, Goat Shed + Windmill; furniture warehouse; goat shed; historic dovecote; speakeasy; airstream trailer; washateria; WWII Quonset hut; church; firehouse; barn. + Regular + + + TVG + + + + You Live in What? + Bakery; Church; Dance Hall + An old bakery and carriage house conversion. + Regular + + + TVG + + + + BBQ Pitmasters + Smoking in Memphis + Competing for the. + Food + Game Shows + + + TVPG + + + + BBQ Pitmasters + Sweet Georgia Ham + Robby Royal and Eric Thomas face off against John Ley in this Georgia style contest. + Food + Game Shows + + + TVPG + + + + BBQ Pitmasters + Winner Takes All + In the semi-finals, Robby Royal goes head to head with Joe Pearce for the Kingsford BBQ Pitmasters Grand Champion title. + Food + Game Shows + + + TVPG + + + + BBQ Pitmasters + Brisket Redemption + Three all-stars return to compete against each other; cooking brisket and venison tenderloin. + Food + Game Shows + + + TVPG + + + + BBQ Pitmasters + Duck, Duck, Pork + The last spot in the all-star finale is up for grabs, and three of the biggest names in the business are ready for battle. + Food + Game Shows + + + TVPG + + + + BBQ Pitmasters + Fowl Play + With the first-round battles completed, six pitmasters are still in the running for BBQ's ultimate prize. + Food + Game Shows + + + TVPG + + + + BBQ Pitmasters + Hog Wild + Judges Myron Mixon, Tuffy Stone and Big Moe Cason pull out all the stops with whole hogs and other surprises to test the two finalists. + Food + Game Shows + + + TVPG + + + + BBQ Pitmasters + In Like a Brisket, Out Like a Lamb + Tim Grant, the hottest pitmaster on the competition circuit, looks for his first win on BBQ Pitmasters. + Food + Game Shows + + + TVPG + + + + BBQ Pitmasters + Duck, Duck, Pork + The last spot in the all-star finale is up for grabs, and three of the biggest names in the business are ready for battle. + Food + Game Shows + + + TVPG + + + + BBQ Pitmasters + Fowl Play + With the first-round battles completed, six pitmasters are still in the running for BBQ's ultimate prize. + Food + Game Shows + + + TVPG + + + + BBQ Pitmasters + Hog Wild + Judges Myron Mixon, Tuffy Stone and Big Moe Cason pull out all the stops with whole hogs and other surprises to test the two finalists. + Food + Game Shows + + + TVPG + + + + BBQ Pitmasters + In Like a Brisket, Out Like a Lamb + Tim Grant, the hottest pitmaster on the competition circuit, looks for his first win on BBQ Pitmasters. + Food + Game Shows + + + TVPG + + + + BBQ Pitmasters + Winner Takes All + In the semi-finals, Robby Royal goes head to head with Joe Pearce for the Kingsford BBQ Pitmasters Grand Champion title. + Food + Game Shows + + + TVPG + + + + BBQ Pitmasters + Brisket Redemption + Three all-stars return to compete against each other; cooking brisket and venison tenderloin. + Food + Game Shows + + + TVPG + + + + Flea Market Flip + No Sibling Rivalry Here! + Married flippers versus siblings in a flea market showdown; the siblings transform a nightstand into a bar cart; the married couple turn a child's wagon into a bar; the teams meet at the Grand Bazaar NYC, where the winning team will take home $5,000. + Regular + + + TVG + + + + Flea Market Flip + DIY Daters vs Bickering Buds + Dating flippers Kelly and Jay battle against designing friends Laura and Diane; bistro set, graphic design and a mash-up project. + Regular + + + TVG + + + + Flea Market Flip + Flipping Metal Mania + Best friends compete against married metal heads; Brimfield Antique Show and Flea Market in Brimfield, Mass.;. + Regular + + + TVG + + + + Flea Market Flip + Granny Chic + Designing duo Cris and Val face off against confident DIYers Matt and Niki. + Regular + + + TVG + + + + Flea Market Flip + Flip Like Your Mama + Confident husband-and-wife team, Adrienne and Anthony, take on father-daughter duo, Jeff and Alex. + Regular + + + TVG + + + + Flea Market Flip + Dealer's Flipping Choice + Two teams of furniture flippers square off for a $5,000 prize; each team receives $500 at the flea market and an hour to find the three projects on their flip list, which includes a Midcentury Mashup, Small-Scale Style and a Dealer's Choice project. + Regular + + + TVG + + + + Flea Market Flip + Shake Your Money Maker! + Two teams of professional flippers face off for $5,000; each team gets $500 and one hour to find three projects from their flip list, which includes Symmetrical Design, Metal Makeover and Shaker Chic. + Regular + + + TVG + + + + Flea Market Flip + Sock It to Me! + Flipping buddies take on a pair of picking pals in a challenge for ultimate flea market supremacy. + Regular + + + TVG + + + + Flea Market Flip + Couples That Flip Together + Flipping newlyweds face off against a husband and wife; sets and pairs, twisted traditional and a metallics project. + Regular + + + TVG + + + + Flea Market Flip + Flipsters vs. Creative Cousins + Regular + + + TVG + + + + Flea Market Flip + Flipping Bingo + Friends Pat and Lisa take on a creative couple Russell and Marc; Hip to be Square, Mixed Mediums and Inspired-by-Design. + Regular + + + TVG + + + + Flea Market Flip + It's a Frenemy Face-Off When Two Teams of Friends Flip for the Win! + Teams of friends face off for the ultimate flipping showdown. + Regular + + + TVG + + + + Flea Market Flip + Too Hot To Flip? + Married flippers Jon and Carol face off against flipping friends Bethany and David; an old wine press and a vintage ironing board. + Regular + + + TVG + + + + Flea Market Flip + Zen and the Art of Flipping + Stylish sisters Cristal and Monique compete against experienced flippers Susan and Ericka. + Regular + + + TVG + + + + Flea Market Flip + Rainy Day Specials + Two teams of married flippers put their skills to the test for $5,000; each team gets $500 at the flea market and one hour to find three projects on their flip list, which includes Vintage Modern, Re-Wrapped Project, and Formerly Al Fresco. + Regular + + + TVG + + + + Flea Market Flip + Funky Junkers vs. Team Love + Husband-and-wife flippers dubbed. + Regular + + + TVG + + + + Flea Market Flip + Flipping Family Feud + A dumpster-diving dad and his daughter compete against a nephew and aunt with a shared love of fixing up furniture. + Regular + + + TVG + + + + Flea Market Flip + Head to Head Flip + Flipping cousins against engaged DIYers; convertible design, industrial chic and symmetrical design. + Regular + + + TVG + + + + Flea Market Flip + Trash-Talking Family Flip + Husband-and-wife pickers face off against her parents in a flea market family feud; the teams create a desk and a contemporary dresser, then they go to New York's Long Island City Flea, where one of them will go home with $5,000. + Regular + + + TVG + + + + Flea Market Flip + Clash of the Couples + New York flippers Amanda and Nick against designing sweethearts Christina and Billy; accent design, metallic's and restoration remix. + Regular + + + TVG + + + + Flea Market Flip + Eclectic Friends Compete Against Frequent Flippers + Contestants are given $500 to buy items that they can then flip and clean up for a larger profit. + Regular + + + TVG + + + + Flea Market Flip + Hollywood Regency Battle + A pair of sisters-in-law takes on a married flipping team to complete three next-level projects; a contemporary upgrade to a pair of armchairs and a golden-age improvement on a set of end tables. + Regular + + + TVG + + + + Flea Market Flip + Are You Ready For Man Chic? + Designing dudes Ruan and Keith feel confident as they take on fashionable flippers Shauna and Shauna. + Regular + + + TVG + + + + Flea Market Flip + Bring on the Bling! + Two teams who pride themselves on their glitz and glam do battle for the $5,000 prize; each team has $500 and only one hour to find three projects from their flip list, which includes Polished Imperfection, Dual Design and East Meets Modern. + Regular + + + TVG + + + + Flea Market Flip + This Flip Is Electrified! + Two designing ladies take on a team of creative metalworkers for $5,000; armed with $500, each team shops for three projects on their flip list including Heavy Rotation, Wabi-Sabi and Lara's Choice. + Regular + + + TVG + + + + Flea Market Flip + Flips Like Sugar and Honey + A couple known as. + Regular + + + TVG + + + + Mysteries of the Abandoned: Hidden America + Orangeburg: America's Hidden Massacre + At a nondescript bowling alley in South Carolina, evidence of a peaceful student protest that turned deadly comes to light; a series of tunnels in L.A. becomes a shady place for resourceful people in this sunny city. + Documentary + Science + + + TVPG + + + + Mysteries of the Abandoned + K-Pop Dreamland + This Seoul amusement park is full of rusted-out rides and unfinished renovations; forced to close due to financial problems, the park has found a second life after being used as the setting of K-pop album covers and music videos. + Documentary + Science + + + TVPG + + + + Mysteries of the Abandoned: Hidden America + Pullman, Chicago: The Town That Paralyzed the Nation + A railroad enterprise once built this company town for its workers to live in, but when thousands of employees went on strike, the military intervened; the history of the complex remains as relevant as ever. + Documentary + Science + + + TVPG + + + + Mysteries of the Abandoned + The Montauk Conspiracy + Conspiracies swirl around an abandoned military base in Long Island, where it's alleged that covert government experiments took place underground; experts discuss the critical role that the base played in defending America's coastline. + Documentary + Science + + + TVPG + + + + Mysteries of the Abandoned + Hell Island + On a picturesque island off the coast of Brazil, this penal colony was once the site of a dramatic prisoner uprising; among the ruins lies the story of the violent rebellion and the recapturing of the island by military forces. + Documentary + Science + + + TVPG + + + + Mysteries of the Abandoned: Hidden America + The Wright Brothers: Cleared for Takeoff + An unassuming factory marks a revolutionary leap forward -- and upward -- in how humans travel; due to ongoing legal battles and innovative designs from their many competitors, these historic upstarts would soon be grounded. + Documentary + Science + + + TVPG + + + + Mysteries of the Abandoned: Hidden America + Butler Island Plantation: The South's Dark Secret + The notorious owner of this Georgia plantation once held a sale of nearly 450 enslaved people; appalled at her husband's cruelty, the man's wife wrote and published a journal about the atrocities she witnessed. + Documentary + Science + + + TVPG + + + + Mysteries of the Abandoned + The Montauk Conspiracy + Conspiracies swirl around an abandoned military base in Long Island, where it's alleged that covert government experiments took place underground; experts discuss the critical role that the base played in defending America's coastline. + Documentary + Science + + + TVPG + + + + Mysteries of the Abandoned + Hell Island + On a picturesque island off the coast of Brazil, this penal colony was once the site of a dramatic prisoner uprising; among the ruins lies the story of the violent rebellion and the recapturing of the island by military forces. + Documentary + Science + + + TVPG + + + + Mysteries of the Abandoned + Hell Island + On a picturesque island off the coast of Brazil, this penal colony was once the site of a dramatic prisoner uprising; among the ruins lies the story of the violent rebellion and the recapturing of the island by military forces. + Documentary + Science + + + TVPG + + + + Mysteries of the Abandoned: Hidden America + The Wright Brothers: Cleared for Takeoff + An unassuming factory marks a revolutionary leap forward -- and upward -- in how humans travel; due to ongoing legal battles and innovative designs from their many competitors, these historic upstarts would soon be grounded. + Documentary + Science + + + TVPG + + + + Mysteries of the Abandoned: Hidden America + Butler Island Plantation: The South's Dark Secret + The notorious owner of this Georgia plantation once held a sale of nearly 450 enslaved people; appalled at her husband's cruelty, the man's wife wrote and published a journal about the atrocities she witnessed. + Documentary + Science + + + TVPG + + + + Hoffman Family Gold + Burst World Problems + After huge wins and epic fails, Todd Hoffman left gold mining four years ago; now he's taking a new gamble at a remote but gold-rich mine in Alaska; Todd and his family have just seven weeks to grab the gold before winter freezes them out. + Reality TV + + + TV14 + + + + Hoffman Family Gold + Hold My Gear + A transmission issue threatens to shut down Todd's Holy Roller, but Randy and Tater come up with a bush fix to get gold moving; chasing better paydirt, Hunter takes a big swing with a new cut; the Hoffmans push through for the season's best weigh-in. + Reality TV + + + TV14 + + + + Seasons on the Fly + SOF Lodge + A lodge on Alaska's Kvichak River. + Sports + Outdoors + + + TVG + + + + Destroyed in Seconds + Car Crash, Flying Bull Rider + Two Porsches collide at triple digit speeds; a massive refinery explosion sets off a shockwave; a torrent of water explodes through a storm wall; a severely injured snowmobiler must drive himself to the hospital; a bull launches his rider skyward. + Reality TV + Science + + + TV14 + + + + Street Outlaws: Farmtruck & AZN Down Under + Running on Empty + A nitrous shortage threatens to stall Farmtruck and AZN's Australian fishing trip. + Documentary + Reality TV + + + TV14 + + + + Kingfish Mayhem TV + 2023 Treasure Island Kingfish Mayhem; Southport Kingfish Mayhem + Leg Three of the 2023 Kingfish Mayhem Tournament comprises two events: South Leg Three: Treasure Island, Fla.; North Leg Three: Southport, N.C. + Sports + Fishing + + + TVG + + + + Tomorrow's World Today + Sustainable Steel + George sends Greg to the World of Production to explore innovative solutions and sustainable practices being implemented to meet the demand for steel in the electric vehicle industry. + Science + + + TVG + + + + Gold Rush + Down, but Not Out + Parker banks his first gold of the season from the Unforgiven cut; one of Rick's rock trucks slides down a ravine, and he tries to broker a season-saving deal with Tony; Fred Lewis makes a big decision. + Reality TV + + + TV14 + + + + The Garden: Commune or Cult + Welcome to The Garden + A mysterious off-grid community that went viral on TikTok for being called a cult opens its doors to outside cameras for the first time; located in Missouri, The Garden welcomes new members into the fold, some of whom butt heads immediately. + Documentary + + + TV14 + + + + The Garden: Commune or Cult + Suspicious Minds + Despite calling the cops, Narayah decides to stay in the commune while newcomer Tyler M.'s discomfort with the group's cult-like antics intensifies. + Documentary + + + TV14 + + + + Homestead Rescue + Black Hills Hope + The Raneys struggle to revive an inherited Wyoming hill country homestead with a tragic legacy; to bring water to the property, Marty must solve the mystery of an untapped well; Misty and Matt combine forces on one of their most ambitious builds. + Reality TV + Home + + + TVPG + + + + Homestead Rescue + Bus, Sweat and Tears + Bus-dwelling Virginia homesteaders struggle for a foothold; after learning the couple sent their son to live with his grandmother until the homestead can thrive, the Raneys undertake one of the biggest rescues ever to reunite the family. + Reality TV + Home + + + TVPG + + + + Naked and Afraid + Redemption Road + A former survivalist returns to for a chance at redemption in the jungle of Guyana, but her priorities differ from her partner's. + Reality TV + + + TV14 + + + + Naked and Afraid + The Darkest Hour + A mountain man and a former cop survive in Namibia, which is home to dangerous predators, but inner demons seem to cause more trouble. + Reality TV + + + TV14 + + + + Naked and Afraid + For Better or a Lot Worse + The first. + Reality TV + + + TV14 + + + + Naked and Afraid + Broke Back Jungle + A circus performer and an avid hunter take on 14 days in the untamed jungle of Tobago; a serious injury threatens their challenge. + Reality TV + + + TV14 + + + + Naked and Afraid + A Shart at Redemption + After poisoning the water in her fan 14-day challenge, survivalist Ashley seeks redemption in Tobago with a new partner, but making it to 21 days in a rain-sodden jungle will push them beyond their limits. + Reality TV + + + TV14 + + + + Naked and Afraid + A Shart at Redemption + After poisoning the water in her fan 14-day challenge, survivalist Ashley seeks redemption in Tobago with a new partner, but making it to 21 days in a rain-sodden jungle will push them beyond their limits. + Reality TV + + + TV14 + + + + The Garden: Commune or Cult + Group Consensus + Loyalties will be tested and friendships questioned as the vote approaches for Tyler M. and whether he can stay in the commune; Oak has trouble fitting in, while valley girl Jessica and polyamorous trucker Tisheila arrive at The Garden. + Documentary + + + TV14 + + + + Naked and Afraid + Hearts of Darkness + Survivalists have disagreements while facing extreme heat and crocodile-filled waters in the Cambodian jungle. + Reality TV + + + TV14 + + + + Naked and Afraid + A Shart at Redemption + After poisoning the water in her fan 14-day challenge, survivalist Ashley seeks redemption in Tobago with a new partner, but making it to 21 days in a rain-sodden jungle will push them beyond their limits. + Reality TV + + + TV14 + + + + The Garden: Commune or Cult + Group Consensus + Loyalties will be tested and friendships questioned as the vote approaches for Tyler M. and whether he can stay in the commune; Oak has trouble fitting in, while valley girl Jessica and polyamorous trucker Tisheila arrive at The Garden. + Documentary + + + TV14 + + + + Naked and Afraid + Hearts of Darkness + Survivalists have disagreements while facing extreme heat and crocodile-filled waters in the Cambodian jungle. + Reality TV + + + TV14 + + + + Deadliest Catch + Between Payday and Mayday + An early closure forces captains to work together to get their catch safely to port; Sig crosses a line when he repositions a rookie captain's pots; Jake and Sean race back from Adak while Linda bolsters her east coast reputation in the Bering Sea. + Reality TV + Documentary + + + TV14 + + + + Deadliest Catch + Perfect Storm Survivor + Forged by the ferocious seas of the North Atlantic, legendary east coast captain Linda Greenlaw attempts to break into the highly competitive and highly dangerous Alaskan crab fishery for the first time in her storied career. + Reality TV + Documentary + + + TVPG + + + + Ghost Adventures + Sutro Ghost Town + Zak and the crew delve into the darkness that surrounds the historic town of Sutro, Nev.; the team suspects a mining tunnel is fueling the abandoned settlement's ominous aura as they uncover numerous deaths, disasters and mysterious fires. + Reality TV + Paranormal + + + TVPG + + + + Ghost Adventures + Orcutt Ranch + Zak and the crew suspect evil forces are afoot as they investigate an estate haunted by rumors of secret rituals in the basement and a gruesome double homicide next door; the team treads on very dark grounds as they attempt to unravel the mystery. + Reality TV + Paranormal + + + TV14 + + + + Ghost Adventures + Ghost Island + Zak and the crew brave a blizzard to confront an aggressive presence at an abandoned ranch located off the coast of Utah's Great Salt Lake; unmarked graves and whispers of a curse throw a shadow over the investigation. + Reality TV + Paranormal + + + TV14 + + + + Ghost Adventures + Scotty's Castle + Zak and the crew trek through California's Death Valley to investigate a sprawling complex shrouded in mystery; the guys find themselves captivated by the desert villa's dark, powerful energy as they explore its flood and fire ravaged grounds. + Reality TV + Paranormal + + + TVPG + + + + Lone Star Law + Crash and Burn + A routine patrol turns intense when Game Wardens Kyle Allison and Dustin Delgado discover an angler is wanted for serious crimes, then rush to the scene of a plane crash. + Reality TV + Legal + + + TV14 + + + + Lone Star Law + Rock Bottom + Game Warden Kegan Gould crosses paths with a rock collector and uncovers a devastating secret; a teen is caught on camera destroying protected bird nests, and an unruly crowd threatens public safety on Lake Sam Rayburn. + Reality TV + Legal + + + TV14 + + + + Lone Star Law + Armed Invader + When security footage shows a trespasser with a firearm, game wardens track down and confront the suspect; Warden Randolph McGee races to save a deer from a painful end, and Warden Mike Boone intervenes when a poaching complaint escalates. + Reality TV + Legal + + + TV14 + + + + Lone Star Law + A Wanted Man + When an angler flees a routine stop, his strange story exposes a troubling secret; game wardens Jamal Allen and Josh Sako get hands-on with a gator living too close to people; game warden Mike Boone responds to a call from hunters of exotic deer. + Reality TV + Legal + + + TV14 + + + + Lone Star Law + Blood, Footprints and Lies + When a suspicious hunter is caught in a lie, game warden Preston Whisenhunt enlists a K-9 tracker to sniff out the evidence; two men who park illegally in a riverbed are hiding something; game wardens investigate a boat that may have been stolen. + Reality TV + Legal + + + TV14 + + + + Lone Star Law + Held at Gunpoint + A high-speed chase leads to a suspect at gunpoint and a dark discovery in his car; game warden Dusty Jansky responds to an urgent call about a rabid raccoon; a man with a warrant is caught in dangerous waters. + Reality TV + Legal + + + TV14 + + + + Contraband: Seized at the Border + New Methods, Old Lies + Officers discover methamphetamine hidden inside a truck's speakers and confiscate drugs packed deep within lead boxes; a woman denies trafficking pain pills; a man is interviewed to confirm his citizenship. + Reality TV + Documentary + + + TV14 + + + + Contraband: Seized at the Border + Blood is Thicker Than Water + Upon detaining a woman smuggling Tramadol and Xanax pills, officers discover she is part of a larger drug ring; officers arrest a daily crosser after finding cocaine in her vehicle; an officer's hunch leads to the discovery of 500 kilos of marijuana. + Reality TV + Documentary + + + TVG + + + + Contraband: Seized at the Border + Babies, Hard Drugs and Carrots + A woman is investigated for smuggling a baby; officers find packets filled with cocaine, meth, and heroin in carrots -- indicating gang involvement; two young women are caught smuggling pills; a wanted man triggers an alert. + Reality TV + Documentary + + + TV14 + + + + Contraband: Seized at the Border + Deadly Cargo + Officers discover firearms that may be intended for a Mexican drug lord; a load of Fentanyl hidden in an ice cream freezer; a truck driver transporting puppies is under scrutiny; a wanted woman is detained in Brownsville. + Reality TV + Documentary + + + TV14 + + + + Contraband: Seized at the Border + The Scales of Justice + Couriers heading south are carrying a surprise shipment of supplies for narcotics distribution; a man who didn't realize there was a warrant for his arrest is apprehended; officers get creative when bricks of narcotics are found hidden in a semi. + Reality TV + Documentary + + + TV14 + + + + Contraband: Seized at the Border + A Light Bulb Moment + The cartel tries to sneak one last shipment over the border just before midnight; officers uncover a delivery that isn't what it seems; a woman acting erratically is found with a Santa Muerte statue, indicating she may have cartel connections. + Reality TV + Documentary + + + TV14 + + + + Contraband: Seized at the Border + The Avocado Couple + A man who arrives at the border with a baby is concealing another valuable commodity; a couple who fails to declare Mexican avocados ends up causing a scene; a teenager claiming to be a U.S. citizen arrives looking to attend high school in Texas. + Reality TV + Documentary + + + TV14 + + + + Contraband: Seized at the Border + Seven Million Dollar Seizure + At the Brownsville, Texas, point of entry, officers encounter drug trafficking, fraudulent documents and illegal merchandise; authorities seize $7 million worth of marijuana hidden inside a rolled carpet during a routine cargo inspection. + Reality TV + Documentary + + + + Contraband: Seized at the Border + The Scales of Justice + Couriers heading south are carrying a surprise shipment of supplies for narcotics distribution; a man who didn't realize there was a warrant for his arrest is apprehended; officers get creative when bricks of narcotics are found hidden in a semi. + Reality TV + Documentary + + + TV14 + + + + Contraband: Seized at the Border + A Light Bulb Moment + The cartel tries to sneak one last shipment over the border just before midnight; officers uncover a delivery that isn't what it seems; a woman acting erratically is found with a Santa Muerte statue, indicating she may have cartel connections. + Reality TV + Documentary + + + TV14 + + + + Contraband: Seized at the Border + The Avocado Couple + A man who arrives at the border with a baby is concealing another valuable commodity; a couple who fails to declare Mexican avocados ends up causing a scene; a teenager claiming to be a U.S. citizen arrives looking to attend high school in Texas. + Reality TV + Documentary + + + TV14 + + + + Contraband: Seized at the Border + Seven Million Dollar Seizure + At the Brownsville, Texas, point of entry, officers encounter drug trafficking, fraudulent documents and illegal merchandise; authorities seize $7 million worth of marijuana hidden inside a rolled carpet during a routine cargo inspection. + Reality TV + Documentary + + + + Street Outlaws + Clash of the Heavy Hitters + The out-of-town drama escalates with fast racing, starting line disputes and fighting; rivalries from the track are renewed on the street as the 405 faces off against heavy hitters Larry Larson and Robin Roberts. + Reality TV + Documentary + + + TV14 + + + + Fast N' Loud + One Cool Impala + The guys put their own spin on a '65 Chevy Impala; Richard and Aaron get a '34 Five-Window Ford; Richard agrees to new air conditioning. + Reality TV + Automotive + + + TV14 + + + + Fast N' Loud + Revving Up a '69 Riviera + The Monkeys have less than a week to build a '69 Riviera to sell at the Leake Auction along with their motorcycles. + Reality TV + Automotive + + + TV14 + + + + Fast N' Loud + Rocking '76 G10 Van + Richard and Aaron transform a '76 Exploration Van; KC and the team fix the body of the Dale Earnhardt '56 Nomad. + Reality TV + Automotive + + + TV14 + + + + Fast N' Loud + Road to Barrett Jackson, Part I + Richard sells the '79 Camaro to prepare for the auction; Aaron's team builds a '68 Impala; Richard and Dennis buy a '64 Corvette Stingray. + Reality TV + Automotive + + + TV14 + + + + Fast N' Loud + Road to Barrett Jackson Part II; NHRA + The guys attend the Barrett Jackson auction; Richard's Stingray arrives just in time; Aaron attends NHRA in Las Vegas. + Reality TV + Automotive + + + TV14 + + + + Dirty Jobs + Mattress Recycler + Mike travels to Miami to recover and crush abandoned boats and then heads to San Francisco to recycle old mattresses. + Reality TV + + + TVPG + + + + Dirty Jobs + Marble Maker + Mike goes to Hawaii to learn how to make dirt shirts at The Original Dirt Shirt Company; then he heads off to Reno, Ohio to learn how to make marbles. + Reality TV + + + TV14 + + + + Dirty Jobs + Cedar Log Peeler + Mike works on a fish-processing boat in the Bering Sea, cleaning out the fish grinder; debarking, peeling and processing wood at the Rapid River Rustic Mill. + Reality TV + + + TV14 + + + + Dirty Jobs + Fish Squeezer + Mike works as a fish squeezer with the New Mexico Department of Game and Fish; the ancient art of pet acupuncture. + Reality TV + + + TV14 + + + + Dirty Jobs + Camel Rancher + Mike heads to a unique dairy farm in Ramona, Calif. where he learns how to milk, care for and breed dromedary camels. + Reality TV + + + TVPG + + + + Dirty Jobs: Down Under + Journey to Croc Country + Mike travels down the Adelaide River in a bid to capture one of Australia's deadliest creatures, the crocodile. + Reality TV + + + TVPG + + + + Dirty Jobs: Down Under + Lost in Aboriginal Land + Mike Rowe travels down the northern coast of Australia to work and hunt with Aboriginals who have lived off the land for more than 40,000 years. + Reality TV + + + TVPG + + + + Dirty Jobs: Down Under + Outback Treasure Hunter + Mike crosses Australia to try his luck at opal mining in the remote town of Coober Pedy, but he must control his claustrophobia as well as deal with extreme temperatures and an intense fly infestation to strike it rich. + Reality TV + + + TVPG + + + + Street Outlaws: Farmtruck & AZN Down Under + Vegemite vs. Cheese Whiz + Still in Brisbane, Australia, Farmtruck and AZN go visit Sketch, a racer who called them out; he helps them track down an authentic Australian vehicle to bring back to the U.S.; to keep spending in check, they set up a race for the title. + Documentary + Reality TV + + + TV14 + + + + Street Outlaws vs. the World + You Better Take Cover + In Sydney, Team USA faces high caliber cars, fiercer racers and several breakdowns that could spell disaster for the Outlaws. + Reality TV + Documentary + + + TV14 + + + + Street Outlaws: Farmtruck & AZN Down Under + By Land or by Sea + Farmtruck and AZN arrive in Sydney and find races with a real-deal steel car and a one-of-a-kind Skyline; they take to the sea to see the best of Sydney and search for something to bring back for Mrs. Farmtruck. + Documentary + Reality TV + + + TV14 + + + + Street Outlaws: Locals Only + Kye is the Limit + In Idaho, Farmtruck and AZN host eight local drivers to compete for $5,000 and a chance to race NOLA's Kye Kelley, but after a heated negotiation, Kye's not sure he's got this win in the bag. + Reality TV + Game Shows + + + TV14 + + + + Street Outlaws vs. the World + You Better Take Cover + In Sydney, Team USA faces high caliber cars, fiercer racers and several breakdowns that could spell disaster for the Outlaws. + Reality TV + Documentary + + + TV14 + + + + Street Outlaws: Farmtruck & AZN Down Under + By Land or by Sea + Farmtruck and AZN arrive in Sydney and find races with a real-deal steel car and a one-of-a-kind Skyline; they take to the sea to see the best of Sydney and search for something to bring back for Mrs. Farmtruck. + Documentary + Reality TV + + + TV14 + + + + Street Outlaws: Locals Only + Kye is the Limit + In Idaho, Farmtruck and AZN host eight local drivers to compete for $5,000 and a chance to race NOLA's Kye Kelley, but after a heated negotiation, Kye's not sure he's got this win in the bag. + Reality TV + Game Shows + + + TV14 + + + + Street Outlaws: Mega Cash Days + Make the Call + In the fourth bracket, big names including Murder Nova, Scott Taylor, and both Boddies make their first passes; Boosted is forced to make tough calls; Jerry Bird struggles with nitrous problems; Boddie Jr. lines up against an old teammate. + Reality TV + Game Shows + + + TV14 + + + + Expedition X + The Amazon's Cursed Ruins + Expedition X explores an abandoned and haunted outpost in the Amazon rainforest; meeting with tribes deep in the jungle, they hear strange things at night that cause panic. + Documentary + + + TVPG + + + + Expedition X + Mothman Phenomenon + Jessica Chobot and Phil Torres dive into the legend of Mothman by searching for clues in a long-sealed bunker and at a top-secret Air Force base. + Documentary + + + TVPG + + + + Expedition X + Mystery in Mammoth Cave + Phil Torres and Jessica Chobot investigate a strange phenomenon that's been haunting Mammoth Cave for generations. + Documentary + + + TVPG + + + + Expedition X + Alaskan Lake Monster + Phil and Jess search whitewater rapids and a frigid Alaskan lake for a legendary beast that's now the target of serious scientific inquiry. + Documentary + + + TVPG + + + + Expedition X + Monster of the Amazon + Phil tracks what could be an unknown species, while Jess hunts for evidence that a legendary creature is nearby. + Documentary + + + TVPG + + + + Expedition Bigfoot + Dual Pursuit + Evidence of a cloaked Bigfoot leads the team to investigate around the abandoned mine, while Ronny and Mireya try a baiting technique, Russell tracks strange sounds to a mysterious grove; Bryce stumbles across evidence of a possible missing person. + + Bryce Johnson + Mireya Mayor + Russell Acord + + Paranormal + + + TVPG + + + + Expedition Bigfoot + Low Tide, High Danger + After being stalked and hearing strange whistles, Ronny and Mireya decide to launch a sound trap; Russell finds himself trapped after pursuing a possible Bigfoot on a nearby island; Bryce learns a witness was withholding terrifying information. + + Bryce Johnson + Mireya Mayor + Russell Acord + + Paranormal + + + TVPG + + + + Expedition Bigfoot + Tracking Terror + Strange sounds lead to a disturbing discovery for Ronny and Mireya; Bryce hears blood-curdling screams near the target zone; Russell tracks a mysterious creature as it makes its way to the mainland. + + Bryce Johnson + Mireya Mayor + Russell Acord + + Paranormal + + + TVPG + + + + Expedition Bigfoot + Nocturnal Nightmare + When a Bigfoot tracker is taken from Prince of Wales Island, the team decides to split up; while Russell and Mireya investigate suspicious heat signatures on the mainland, Ronny stays back and encounters something unseen in his camp. + + Bryce Johnson + Mireya Mayor + Russell Acord + + Paranormal + + + TVPG + + + + Expedition Bigfoot + The Hand of Bigfoot + Following the discovery of possible Bigfoot handprints, the team splits up to investigate mysterious tracks that lead to an icy and perilous glacier; the team seeks out definitive proof of Bigfoot before the sun rises and ends the Alaska expedition. + + Bryce Johnson + Mireya Mayor + Russell Acord + + Paranormal + + + TVPG + + + + Los Busby + Ava y el primer baile + Es la locura navideña cuando los Bubsy corren de un recital a un desfile navideño a una fiesta de galletas. Danielle entra en crisis por problemas de personal en la boutique. Danielle y Adam chocan por sus dificultades para mantenerse en forma. + Reality TV + Documentary + + + TVPG + + + + Vívala o véndala + Una casa de los setenta + Una pareja deseaba remodelar su casa de la década de 1970, pero su idea se vio afectada por la ajetreada vida familiar. Ahora mamá está lista para encontrar un nuevo hogar, pero papá no está listo para renunciar a su hogar original. + Home + + + TVPG + + + + Rescatando propiedades con Tarek + Contra un muro + Un agente de bienes raíces y un diseñador tienen los ingredientes de un equipo de ensueño, pero un estrecho margen de beneficio en su proyecto en Carson los hace buscar ayuda. + Home + + + TVG + + + + Christina en el campo + Empezando en Tennessee + Christina Hall comienza un nuevo capítulo en la vida a medida que expande su negocio de diseño por todo el país y echa raíces en una granja de Tennessee. + Documentary + + + TVG + + + + Vívala o véndala + Una casa de los setenta + Una pareja deseaba remodelar su casa de la década de 1970, pero su idea se vio afectada por la ajetreada vida familiar. Ahora mamá está lista para encontrar un nuevo hogar, pero papá no está listo para renunciar a su hogar original. + Home + + + TVPG + + + + Rescatando propiedades con Tarek + Contra un muro + Un agente de bienes raíces y un diseñador tienen los ingredientes de un equipo de ensueño, pero un estrecho margen de beneficio en su proyecto en Carson los hace buscar ayuda. + Home + + + TVG + + + + Rescatando propiedades con Tarek + Contra un muro + Un agente de bienes raíces y un diseñador tienen los ingredientes de un equipo de ensueño, pero un estrecho margen de beneficio en su proyecto en Carson los hace buscar ayuda. + Home + + + TVG + + + + Christina en el campo + Empezando en Tennessee + Christina Hall comienza un nuevo capítulo en la vida a medida que expande su negocio de diseño por todo el país y echa raíces en una granja de Tennessee. + Documentary + + + TVG + + + + Vívala o véndala + Una casa de los setenta + Una pareja deseaba remodelar su casa de la década de 1970, pero su idea se vio afectada por la ajetreada vida familiar. Ahora mamá está lista para encontrar un nuevo hogar, pero papá no está listo para renunciar a su hogar original. + Home + + + TVPG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Rescatando propiedades con Tarek + Contra un muro + Un agente de bienes raíces y un diseñador tienen los ingredientes de un equipo de ensueño, pero un estrecho margen de beneficio en su proyecto en Carson los hace buscar ayuda. + Home + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Christina en el campo + Empezando en Tennessee + Christina Hall comienza un nuevo capítulo en la vida a medida que expande su negocio de diseño por todo el país y echa raíces en una granja de Tennessee. + Documentary + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Doki + La Casa Inteligente; Doki en Holanda + Cuando un molino de viento se interpone en la jugada de golf de Doki, el equipo se da cuenta de que no saben qué hacen los verdaderos molinos; Doki y Fico empacan los palos de golf y junto con los demás viajan a Holanda, en los Países Bajos. + Animated + Children + + + TVY + + + + Doki + El día rosa; Doki y Patito + El equipo trata de ayudar a Anabella a celebrar su amor por el color rosado con un viaje al lago Rosa en Senegal, y trata de determinar por qué el lago es de ese color; en el camino a un festival de cómic, Doki se topa con un patito recién nacido. + Animated + Children + + + TVY + + + + El zoo de Zu + La Cajita de Elogios + Zu crea una caja de sugerencias para que los visitantes del zoológico puedan elogiar el buen trabajo que hace la administración del lugar. Cuando descubre que los visitantes criticaron la limpieza, decide descubrir qué causa el problema. + + Ryu Murakami + Bia Jordão + Bebeto Coregio + + Children + + + + Paz + El árbol de cumpleaños; Todos a bordo; El tesoro del recuerdo; Un millón + Es el cumpleaños de Paz y Abuelo ha creado una serie de pistas para que Paz las siga hasta encontrar su regalo. + Animated + Children + + + TVG + + + + Paz + La banda; Paz consigue trabajo; El mapa del tesoro + Pappy le enseña a Paz a andar en su monopatín, pero es más difícil de lo que parece. Paz está aburrido de ser un niño y quiere tener un trabajo de verdad. Entonces, Paz y Big Penguin intercambian sus vidas por un día. + Animated + Children + + + TVG + + + + Paz + Recuerdos/Soy diferente/Las estrellas/La playa + Paz quiere preparar un desayuno el Día de las Madres, pero el resultado no es exactamente lo que tenia en mente. + Animated + Children + + + TVG + + + + Cleo y Cuquín: Familia Telerín + Un mundo gigante; Una nueva amiga; Tesoros bajo la arena + A Cuquín se le escapa un balón que destroza el nuevo invento de Tete. Cuquín saca a una sirena del agua. Mientras buscan tesoros, los niños descubren una vieja caravana oxidada en la playa. + Animated + Children + + + TVG + + + + Cleo y Cuquín: Familia Telerín + Juegos helados; El misterio del cobertizo; ¡Salvemos el bosque! + Cleo y Cuquin y Pelusin descubren que la nieve se va y Cuquín se disgusta mucho. Cuquín va a cerrar una puerta que chirría y usa un candado, pero se le rompe la llave y ya no lo pueden abrir. + Animated + Children + + + TVG + + + + Hanni and The Wild Woods + El observatorio de Coo + Coo entra en un conflicto interno y comienza a aislarse de quienes más se preocupan por su felicidad, por lo que queda en manos de Hanni, Po y Ty-Ty asegurarse que su amigo nunca pierda la esperanza de lograr sus sueños. + Animated + Children + + + + Hanni and The Wild Woods + Abrigando arbolitos + El frío de invierno se acerca al bosque y Cookie prepara a los árboles que apenas crecen para sobrevivir el invierno. + Animated + Children + + + + Hanni and The Wild Woods + Seguridad ante todo + Hanni se propone como misión hacer del bosque un lugar seguro para todos, pero pronto se da cuenta de que no siempre se puede vivir con temor a la vida y los peligros del mundo exterior. + Animated + Children + + + + Hanni and The Wild Woods + Una hora angelical + Al usar la imaginación, Hanni y sus amigos exploran mundos llenos de diversión para jugar en 'La hora angelical'. Hanni sugiere reclutar a los dos habitantes más traviesos y creativos del bosque. + Animated + Children + + + + Los cazahogares en familia + Espacio para el bebé en Carolina del Norte + Una familia de tres acaba de incorporar a un bebé al grupo y busca una vivienda en Durham, Carolina del Norte. Necesitan una casa con bastante espacio. La mamá trabaja desde casa y la hija adolescente reclama privacidad. + Reality TV + + + TVG + + + + Los cazahogares en familia + Más espacio de sobra en Carolina del Norte + Una ruidosa familia de cinco integrantes se lanza a la búsqueda de un lugar más espacioso en los suburbios de Wake Forrest. Todos esperan conseguir una mejoría, ya sea en cuestión de habitaciónes, oficinas o tierras. + Reality TV + + + TVG + + + + Rescatando propiedades + El diamante + Tarek y Christina encuentran una pequeña casa en la playa de Costa Mesa, California. El problema es que requiere una gran reforma. + Reality TV + Home + + + TVG + + + + Rescatando propiedades + Renovación pequeña + Tarek y Christina encuentran una casa en Fullerton, California, que se encuentra en un buen barrio, pero el estrecho plano de la planta plantea un problema. + Reality TV + Home + + + TVG + + + + Rescatando propiedades + Renovación millonaria + La pareja encuentra una lista de venta corta para una gran casa en el exclusivo barrio de Yorba Linda, California. + Reality TV + Home + + + TVG + + + + Rescatando propiedades + Casa dilapidada + Tarek y Christina encuentran una propiedad en Santa Ana, California, que podría transformarse en una vivienda perfecta para una familia. + Reality TV + Home + + + TVG + + + + Rescatando propiedades + Casa problemática + Tarek y Christina viajan a Santa Ana, California, para chequear una vivienda que parece estar en buen estado. + Reality TV + Home + + + TVG + + + + Rescatando propiedades + Renovación divertida + Una venta corta en Anaheim, California, atraerá el interés de los inversores, pero Tarek y Christina sólo tienen horas para determinar si restaurarán o no la propiedad. + Reality TV + Home + + + TVG + + + + Rescatando propiedades + Filtraciones + Una casa descuidada y en decadencia en Chino, California, tiene problemas más allá de los estéticos, lo que podría arruinar la inversión. + Reality TV + Home + + + TVG + + + + Rescatando propiedades + Desde la base + Tarek y Christina creen que una propiedad en Whittier, California, que está en deterioro severo podría ser transformada en un hogar moderno. + Reality TV + Home + + + TVG + + + + Rescatando propiedades + Renovación de poco margen + Una sociedad es puesta a prueba por una remodelación difícil en Anaheim, California. + Reality TV + Home + + + TVG + + + + Rescatando propiedades + Renovación de poco margen + Una sociedad es puesta a prueba por una remodelación difícil en Anaheim, California. + Reality TV + Home + + + TVG + + + + Rescatando propiedades + Renovación gatuna + Tarek y Christina deben tomar una decisión acerca de una casa sucia y vieja con gran potencial de ganancia sin verla antes. + Reality TV + Home + + + TVG + + + + Rescatando propiedades + Renovación rápida + Renovación de una vivienda en Whittier (California), en la que el margen de beneficio es exiguo. + Reality TV + Home + + + TVG + + + + Rescatando propiedades + Bungaló en la playa + Tarek y Christina compran un encantador bungaló al borde de un histórico barrio de Long Beach, Calif.; Christina ama los detalles del período y el diseño, y Tarek ama que la buena condición del interior podría significar ahorros en el presupuesto. + Reality TV + Home + + + TVG + + + + Rescatando propiedades + Renovación de la vieja escuela + Tarek y Christina trabajan en una casa de principios del siglo pasado en un histórico barrio de Santa Ana, California. + Reality TV + Home + + + TVG + + + + Dra. Sandra Lee + Queloide + Alonso quiere mostrar su progreso en el gimnasio, pero sus 70 lipomas lo están frenando. Porscha es una entusiasta de los cómics con dos bultos simétricos en la cara. Jeffrey tiene un bulto que drena, llamado Larry, en la cabeza. + Reality TV + Documentary + + + TV14 + + + + Kilos mortales + La historia de Liz + Liz, completamente en cama, tiene un linfedema severo que hace que sea imposible caminar. Completamente aislada, y sin amigos, lucha contra la depresión y vive con una madre demasiado enferma como para cuidarla. + Reality TV + Documentary + + + TVPG + + + + Secretos de mi Cuerpo + Leah + Ella es muy consciente sobre sus pechos. + Health + + + TV14 + + + + Secretos de mi Cuerpo + Samantha + Su vida ha sido destruida de cáncer de mama. + Health + + + TV14 + + + + Dra. Sandra Lee + El último unicornio + Louis es un veterano cuya piel es escamosa y seca. Johnny ha estado viviendo con un molesto bulto en su espalda por mucho tiempo. + Reality TV + Documentary + + + TV14 + + + + Kilos mortales + La historia de Liz + Liz, completamente en cama, tiene un linfedema severo que hace que sea imposible caminar. Completamente aislada, y sin amigos, lucha contra la depresión y vive con una madre demasiado enferma como para cuidarla. + Reality TV + Documentary + + + TVPG + + + + Kilos mortales + La historia de Liz + Liz, completamente en cama, tiene un linfedema severo que hace que sea imposible caminar. Completamente aislada, y sin amigos, lucha contra la depresión y vive con una madre demasiado enferma como para cuidarla. + Reality TV + Documentary + + + TVPG + + + + Secretos de mi Cuerpo + Leah + Ella es muy consciente sobre sus pechos. + Health + + + TV14 + + + + Secretos de mi Cuerpo + Samantha + Su vida ha sido destruida de cáncer de mama. + Health + + + TV14 + + + + Dra. Sandra Lee + El último unicornio + Louis es un veterano cuya piel es escamosa y seca. Johnny ha estado viviendo con un molesto bulto en su espalda por mucho tiempo. + Reality TV + Documentary + + + TV14 + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Kilos mortales + La historia de Liz + Liz, completamente en cama, tiene un linfedema severo que hace que sea imposible caminar. Completamente aislada, y sin amigos, lucha contra la depresión y vive con una madre demasiado enferma como para cuidarla. + Reality TV + Documentary + + + TVPG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Doki + Los patitos de Fico; La Dokiexcavadora + El grupo investiga tras enterarse de que el pato de caucho de Fico fue hallado en la playa. Ellos descubren que muchos de los patos se han encontrado en lugares lejanos. + Animated + Children + + + TVY + + + + Doki + Duelo de patinetas; Doki y los leones + Fico le enseña a Doki a patinar, y después los dos participan en una competición en Shangái, China; Mundi fantasea con cómo sería la vida si fuera un gigante. + Animated + Children + + + TVY + + + + El zoo de Zu + ¡Qué frío! + Nuno tiene un amuleto, un paño de bebé que lo reconforta en los momentos difíciles. Cuando el paño va a parar sin querer a las manos del Sr. Geraldo, Nuno decide ayudar al cuidador para poder recuperarlo. + + Ryu Murakami + Bia Jordão + Bebeto Coregio + + Children + + + + Paz + La obra de teatro; Mis sentidos; Muy pequeño; El globo de papel + Paz prepara una obra de teatro con sus amigos; Paz y Pappy descubren la importancia de asumir responsabilidades por sus actos. + Animated + Children + + + TVG + + + + Cleo y Cuquín: Familia Telerín + El baile; Un pícnic en el bosque; Sonrían + Cleo y Cuquin organizan una fiesta para darle la bienvenida al verano. Cleo y sus hermanos van a pasar un día al bosque. Cleo y Pelusín consiguen sacar una fotografía espectacular con la que creen que ganarán el concurso de foto de animales. + Animated + Children + + + TVG + + + + Cleo y Cuquín: Familia Telerín + No te rasques; El apagón; La remodelación + Cleo y sus hermanos juegan en el jardín con Pie Grande, que se cae sin querer en unas zarzas y tiene que ir al médico. Los niños encienden tantas cosas a la vez en la casa que se va la luz. Cleo y sus hermanos descuidan la casa. + Animated + Children + + + TVG + + + + Defensores Petronix + Misión: rescate leopardo de las nieves + Cuando Mactrapp captura al leopardo de las nieves, también conocido como el. + Children + Animated + + + TVG + + + + Defensores Petronix + Misión: rescate cría de lobo + Cuando Mactrapp captura a un cachorro de lobo, el equipo entra es escena, pero Matt está teniendo un día un poco difícil que empeora cuando pierde su súper manopla. + Children + Animated + + + TVG + + + + Doki + Fico, El Bromista; El Circo + A Fico le gusta hacer bromas, igual que a su amigo del Club, Gotcha García. Doki presume sobre la vez que domó un león y no parece más que una mentira inocente, hasta que su amigo Richard, de Nairobi, Kenia, tiene un problema real. + Animated + Children + + + TVY + + + + El zoo de Zu + Que Plumas + Cuando Zu deshace sin querer la colección de plumas de aves de Lila, ella le pide ayuda a Tío Passarinho para re-hacerla mientras aprende que debe contarles lo que siente a sus amigos. + + Ryu Murakami + Bia Jordão + Bebeto Coregio + + Children + + + + El zoo de Zu + ¡Todo en orden! + Una mariposa sale del capullo y todos la ven encantados, excepto Zu, que llegó atrasada a causa de su inmensa desorganización. Decidida a cambiar, Zu quiere ser la persona más organizada del mundo y termina exagerando. + + Ryu Murakami + Bia Jordão + Bebeto Coregio + + Children + + + + Los cazahogares en familia + Volver a las raíces en Tennessee + Una familia originaria de Los Ángeles, compuesta por cinco personas, busca una casa en Spring Hill, Tennessee, el lugar donde los padres pasaron su infancia. La familia quiere una vivienda clásica sureña, con porche en la entrada y jardín vallado. + Reality TV + + + TVG + + + + Los cazahogares en familia + Listo para renovar en Kansas City, Kansas + Una familia compuesta por cinco miembros quiere mudarse a una casa nueva en Kansas City, Kansas. La familia desea una vivienda más espaciosa con baños equipados para las tres mujeres adultas que la integran y un jardín para que su juegue su perro. + Reality TV + + + TVG + + + + Un gran mundo pequeño + Dios no se equivoca + El padre de Amy cumplirá 90 años, así que ella, Chris y los niños disfrutan de una tarde de verano en el lago a la antigua en Míchigan. Además, el bebé Jackson conoce a sus bisabuelos. + Reality TV + + + TVPG + + + + Todo en 90 días: casados en el extranjero + Miedo + Laura llega a Catar. Tiffany confronta a Ronald por su despedida de soltero. Deavan lleva a los padres de Jihoon a pasear por la ciudad. Corey intenta ganarse a la familia de Evelin con trucos de magia. Jenny y Sumit reciben noticias devastadoras. + Reality TV + Documentary + + + TVPG + + + + Vestido de novia: Atlanta + Operación Cenicienta + Novias que extrañan a sus madres y necesitan animo para decirle sí al vestido. + Reality TV + Fashion + + + TVPG + + + + Vestido de novia: Atlanta + La reina del baile + Una bailarina profesional no se puede decidir sobre su vestido. La reina del certamen lucha por encontrar el vestido de sus sueños. + Reality TV + Fashion + + + TVPG + + + + Vestido de novia: Las damas + Cuento de Dos Vestidos + Julie quiere dos grupos con vestidos diferentes. Tayla esta teniendo problemas con su fiesta de novia. Lori tiene dificultades para escoger su vestido de novia. + Reality TV + Fashion + + + TVPG + + + + Vestido de novia: Las damas + Grandes Problemas + La regla de no hombres en el salón es ignorada; los hombres causan problemas a las novias y a las damas de honor. + Reality TV + Fashion + + + TVPG + + + + Mi gran boda gitana + Baile de Máscaras + Cuatro adolescentes gitanas se preparan para un baile anual de máscaras que acontece en Atlantic City. Pero ninguna fiesta gitana está completa sin toneladas de drama familiar. + Reality TV + + + TV14 + + + + Tacaños extremos + Romance + Luego del viaje, JoAnn y Sheena deciden ir a visitar una bodega y seguir divirtiéndose; pero ninguna salida está completa sin una escena dramática de Mellie. + Reality TV + + + TV14 + + + + Christina en la playa + Una cocina osada para un británico + Un expatriado británico y su esposa deciden renovar su anticuada cocina. Christina diseña una cocina moderna y artesanal, pero conseguir que todos los elementos encajen se convierte en un gran desafío. + Reality TV + Home + + + TVG + + + + Vívala o véndala + April y Gray + A Gray le gusta la casa de su familia debido a la gran cantidad de terreno y la privacidad, pero April quiere mudarse más cerca de la ciudad. + Home + + + TVPG + + + + Rescatando propiedades + Casa de rancho en ruinas + Renovaciones en una lista de una venta de confianza en Buena Park, California, revelan problemas ocultos al rentable proyecto original. + Reality TV + Home + + + TVG + + + + Rescatando propiedades + En la cima + Una lista de venta en La Mirada, California, tiene un pequeño margen de ganancia; el contratista habitual de Tarek y Christina está ligado a otros proyectos. + Reality TV + Home + + + TVG + + + + Rescata mi restaurante + No tan satisfactorio + En Keenesburg, Colorado, el chef Robert Irvine encuentra a la propietaria del Denos I-76 trabajando sola y sin descanso. Robert decide ayudarla a encontrar nuevo personal e inspiración para convertir su negocio en un destino imprescindible. + Reality TV + Food + + + TVG + + + + En-cubiertos + La vida no es una playa + El propietario de Barefoot Bob's Beach Bar & Gaming en Las Vegas, oye quejas de los empleados sobre su nuevo gerente. + Food + + + TVG + + + + En-cubiertos + Tratamiento injusto + La propietaria de Beets Cafe en Austin, Texas se preocupa de que sus empleados estén vendiendo las recetas secretas de su menú. + Food + + + TVG + + + + Rescatando propiedades + Casa de rancho en ruinas + Renovaciones en una lista de una venta de confianza en Buena Park, California, revelan problemas ocultos al rentable proyecto original. + Reality TV + Home + + + TVG + + + + Rescatando propiedades + En la cima + Una lista de venta en La Mirada, California, tiene un pequeño margen de ganancia; el contratista habitual de Tarek y Christina está ligado a otros proyectos. + Reality TV + Home + + + TVG + + + + Rescata mi restaurante + No tan satisfactorio + En Keenesburg, Colorado, el chef Robert Irvine encuentra a la propietaria del Denos I-76 trabajando sola y sin descanso. Robert decide ayudarla a encontrar nuevo personal e inspiración para convertir su negocio en un destino imprescindible. + Reality TV + Food + + + TVG + + + + En-cubiertos + La vida no es una playa + El propietario de Barefoot Bob's Beach Bar & Gaming en Las Vegas, oye quejas de los empleados sobre su nuevo gerente. + Food + + + TVG + + + + En-cubiertos + Tratamiento injusto + La propietaria de Beets Cafe en Austin, Texas se preocupa de que sus empleados estén vendiendo las recetas secretas de su menú. + Food + + + TVG + + + + Rescatando propiedades + Casa de rancho en ruinas + Renovaciones en una lista de una venta de confianza en Buena Park, California, revelan problemas ocultos al rentable proyecto original. + Reality TV + Home + + + TVG + + + + Rescatando propiedades + En la cima + Una lista de venta en La Mirada, California, tiene un pequeño margen de ganancia; el contratista habitual de Tarek y Christina está ligado a otros proyectos. + Reality TV + Home + + + TVG + + + + Rescata mi restaurante + No tan satisfactorio + En Keenesburg, Colorado, el chef Robert Irvine encuentra a la propietaria del Denos I-76 trabajando sola y sin descanso. Robert decide ayudarla a encontrar nuevo personal e inspiración para convertir su negocio en un destino imprescindible. + Reality TV + Food + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + En-cubiertos + La vida no es una playa + El propietario de Barefoot Bob's Beach Bar & Gaming en Las Vegas, oye quejas de los empleados sobre su nuevo gerente. + Food + + + TVG + + + + En-cubiertos + Tratamiento injusto + La propietaria de Beets Cafe en Austin, Texas se preocupa de que sus empleados estén vendiendo las recetas secretas de su menú. + Food + + + TVG + + + + Rescatando propiedades + Casa de rancho en ruinas + Renovaciones en una lista de una venta de confianza en Buena Park, California, revelan problemas ocultos al rentable proyecto original. + Reality TV + Home + + + TVG + + + + Rescatando propiedades + En la cima + Una lista de venta en La Mirada, California, tiene un pequeño margen de ganancia; el contratista habitual de Tarek y Christina está ligado a otros proyectos. + Reality TV + Home + + + TVG + + + + Doki + La gran aventura del equipo Doki; Doki y los bomberos + Mientras practica trucos circenses, Doki tiene la idea de organizar un espectáculo de circo para sus amigos del Club de Expedición. La alarma de incendios suena en el club; los amigos quedan impresionados con los bomberos. + Animated + Children + + + TVY + + + + Doki + Un nuevo equipo desafía al Equipo Doki a una carrera hasta el Monte Kilimanjaro, en Tanzania, y estos aceptan, pero Fico debe competir en el equipo rival. + Animated + Children + + + TVY + + + + El zoo de Zu + Atrapados en el safari + El Sr. Gelado va al safari a observar los caimanes con Eric, pero pierden la llave del auto y quedan encerrados en un área de avestruces hostiles. Nuno y Tio Passarinho tratan de encontrar la llave de reserva, pero un animal se la comió. + + Ryu Murakami + Bia Jordão + Bebeto Coregio + + Children + + + + Paz + Un gran descubrimiento/¿Será que estoy azul?/Los pasos de Baile/La cajota + Paz y sus amigos ejercitan su imaginación haciendo cuentos acerca de los exploradores cuyos errores de navegación los condujeron hacia hermosos descubrimientos. + Animated + Children + + + TVG + + + + Cleo y Cuquín: Familia Telerín + Aventura al anochecer; La remodelación; Un cumpleanos espaciastic + Cuando llega la hora de dormir, Cuquín se da cuenta de que no tiene a Ramona. Cleo y sus hermanos descuidan la casa del árbol. Cuquín se disgusta cuando su amigo el marcianito lo invita a su cumple. + Animated + Children + + + TVY + + + + Cleo y Cuquín: Familia Telerín + Los lentes de Tete; El gran huevo de Odín; Escuela de monstruos + Jugando con Cleo, Cuquín rompe sin querer las gafas de Tete. Cleo, Cuquín, Pelusin y Colitas juegan a buscar huevos de Pascua por el jardín. El día de Halloween, Cleo, Cuquín y Maripi quieren ver películas de terror. + Animated + Children + + + TVG + + + + Defensores Petronix + Misión: rescate llama + Cuando los Petronix intentan rescatar a una llama indefensa que ha raptado la princesa Petswiper, el comportamiento impulsivo de Jia compromete la misión. + Children + Animated + + + TVG + + + + Defensores Petronix + Misión: rescate oso polar + Cuando los animales salvajes corren peligro, un grupo de jóvenes superhéroes luchan por salvarlos. Un equipo capaz de transformarse en pequeños seres utilizando increíble tecnología. + Children + Animated + + + TVG + + + + Doki + Doki, el escritor + Cuando el equipo asiste a la presentación de un libro en la biblioteca, el autor anima a Doki para que se atreva a escribir. Doki está entusiasmado: ¿de verdad podrá escribir su propio libro? + Animated + Children + + + TVY + + + + El zoo de Zu + El Tesoro del Barón + Mientras los niños juegan en una cabaña, descubren el mapa de un tesoro que pertenecía al tatarabuelo de Zu; los niños salen en pares a buscar el tesoro. + + Ryu Murakami + Bia Jordão + Bebeto Coregio + + Children + + + + El zoo de Zu + Demasiado fácil + Nuno decide ayudar a Zu a tocar la flauta para un espectáculo con el hermano. Mientras, Eric le pide ayuda al Sr. Gelado para armar el escenario. + + Ryu Murakami + Bia Jordão + Bebeto Coregio + + Children + + + + Los cazahogares en familia + Una vida activa en Nebraska + Una familia activa de cinco miembros está lista para comenzar nuevamente, después de dejar su hogar dañado por la tormenta; esperan encontrar algo mejor en Papillion, Nebraska, con un espacio de oficina para mamá y cuartos separados para los niños. + Reality TV + + + TVG + + + + Los cazahogares en familia + A lo grande en Utah + Una familia de ocho integrantes buscan una casa con suficiente espacio en Salt Lake City, Utah. Quieren una casa con habitaciones para todos. + Reality TV + + + TVG + + + + Un gran mundo pequeño + ¿De quién es esta granja? + Zach enfrenta sus mayores miedos cuando recibe inyecciones en la espalda. Además, se avecinan grandes cambios para la familia Roloff, ya que Amy debe tomar una decisión sobre el futuro de la granja. + Reality TV + + + TVPG + + + + Todo en 90 días: casados en el extranjero + Separados + Daniel, el hijo de Tiffany, tiene muchas dudas sobre el asunto de Sudáfrica. Los padres de Sumit le piden que vuelva a casa. Paul y Karine viven una aventura en el Amazonas. La propuesta de Jihoon sale mal. Evelin está harta de la actitud de Corey. + Reality TV + Documentary + + + TVPG + + + + Vestido de novia: Atlanta + Visión de túnel + Dos novias con anteojeras, pero habrá luz al final del túnel si abren sus ojos a nuevas posibilidades. + Reality TV + Fashion + + + TVPG + + + + Vestido de novia: Atlanta + Volver a empezar + Dos novias con carga emocional buscan el vestido de novia perfecto. + Reality TV + Fashion + + + TVPG + + + + Vestido de novia: Las damas + Dama de honorzilla + Una novia discute con su dama de honor, que busca ser el centro de atención. Además, en otra boda, un vestido causa disputa. + Reality TV + Fashion + + + TVPG + + + + Vestido de novia: Las damas + Gemelas no tan idénticas + Amber quiere un vestido verde pero su hermana no quiere; Dianna quiere que su hermana use un vestido. + Reality TV + Fashion + + + TVPG + + + + Mi gran boda gitana + Cuando las damas de honor se vuelven malas + Whitey, el hijo de Nettie Stanley, le pide a su hermana que asista a su boda. Sin embargo, la salvaje actitud de su hermana amenaza con arruinarle un día tan señalado; solicitan a un adolescente gitano que acoja una petición de boda en su casa. + Reality TV + + + TV14 + + + + Tacaños extremos + Vacaciones + Tacaños intentan cruzar el camino abierto sin necesidad de abrir sus billeteras; haciendo sus propias botas; en busca de cuartos en una galería; cocinando el desayuno en un motor de automóvil; envasando alimentos para evitar las cafeterías. + Reality TV + + + TVPG + + + + Christina en la playa + Matrimonio de estilos + Christina se encarga de rediseñar el baño principal de una pareja costera. Ella encuentra la manera de satisfacer a una madre centrada en el diseño mientras intenta cumplir los deseos de su marido que es doble de Hollywood. + Reality TV + Home + + + TVG + + + + Vívala o véndala + Dawayne y Joi + Joi se siente frustrada por la falta de privacidad que sufre en su vivienda. + Home + + + TVPG + + + + Rescatando propiedades + Renovación estilo Craftsman + Después de comprar de una casa de estilo artesano en Santa Ana, California, un renovador de casas necesita ayuda de Tarek y Christina para mantenerse en el presupuesto. + Reality TV + Home + + + TVG + + + + Rescatando propiedades + Una renovación abandonada + Una venta corta podría ser una inversión prometedora, pero las renovaciones están sólo parcialmente terminadas. + Reality TV + Home + + + TVG + + + + Los Busby + Blayke, la niñera + Adam y Danielle son una pareja que hace frente al trabajo cotidiano de cuidar a sus quintillizas y a su otra hija, Blakey. + Reality TV + Documentary + + + TVPG + + + + Un gran mundo pequeño + ¡Sorpresa! + Padres de corta estatura deben enfrentar las dificultades financieras y emocionales con el fin de educar a sus hijos. + Reality TV + + + TVPG + + + + Rescatando propiedades + Renovación estilo Craftsman + Después de comprar de una casa de estilo artesano en Santa Ana, California, un renovador de casas necesita ayuda de Tarek y Christina para mantenerse en el presupuesto. + Reality TV + Home + + + TVG + + + + Rescatando propiedades + Una renovación abandonada + Una venta corta podría ser una inversión prometedora, pero las renovaciones están sólo parcialmente terminadas. + Reality TV + Home + + + TVG + + + + Los Busby + Blayke, la niñera + Adam y Danielle son una pareja que hace frente al trabajo cotidiano de cuidar a sus quintillizas y a su otra hija, Blakey. + Reality TV + Documentary + + + TVPG + + + + Un gran mundo pequeño + ¡Sorpresa! + Padres de corta estatura deben enfrentar las dificultades financieras y emocionales con el fin de educar a sus hijos. + Reality TV + + + TVPG + + + + Rescatando propiedades + Renovación estilo Craftsman + Después de comprar de una casa de estilo artesano en Santa Ana, California, un renovador de casas necesita ayuda de Tarek y Christina para mantenerse en el presupuesto. + Reality TV + Home + + + TVG + + + + Rescatando propiedades + Una renovación abandonada + Una venta corta podría ser una inversión prometedora, pero las renovaciones están sólo parcialmente terminadas. + Reality TV + Home + + + TVG + + + + Los Busby + Blayke, la niñera + Adam y Danielle son una pareja que hace frente al trabajo cotidiano de cuidar a sus quintillizas y a su otra hija, Blakey. + Reality TV + Documentary + + + TVPG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Un gran mundo pequeño + ¡Sorpresa! + Padres de corta estatura deben enfrentar las dificultades financieras y emocionales con el fin de educar a sus hijos. + Reality TV + + + TVPG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Rescatando propiedades + Renovación estilo Craftsman + Después de comprar de una casa de estilo artesano en Santa Ana, California, un renovador de casas necesita ayuda de Tarek y Christina para mantenerse en el presupuesto. + Reality TV + Home + + + TVG + + + + Rescatando propiedades + Una renovación abandonada + Una venta corta podría ser una inversión prometedora, pero las renovaciones están sólo parcialmente terminadas. + Reality TV + Home + + + TVG + + + + Doki + La playa misteriosa; El cumpleaños de Oto + El Equipo va a las Islas Seychelles para presenciar un festival de tortugas marinas, pero una tormenta llenó el puerto de arena; Doki viaja a la India para conseguir unas especias que quiere regalarle a Oto por su cumpleaños. + Animated + Children + + + TVY + + + + Doki + Maravillas bajo el mar; Doki Robin Hood + El equipo Doki ayuda a un grupo de arqueólogos a encontrar unos restos en el mar Egeo; Doki siempre ha sido un gran fan de Robin Hood. + Animated + Children + + + TVY + + + + El zoo de Zu + La gymkhana de la abuela + Vovó divide al grupo en equipos y organiza una competencia. El equipo perdedor ayudará al Sr. Gelado a limpiar el vivero de los lagartos. Mientras, Eric cree que puede hipnotizar al Sr. Gelado para que el cuidador le sirva jugos y galletas. + + Ryu Murakami + Bia Jordão + Bebeto Coregio + + Children + + + + Paz + El caso de la voz perdida; el libro del abuelo; jugando solo; noche estrellada + Paz se entera de que Pig tiene un resfriado y ha perdido la voz. Paz y sus amigos pretenden ser detectives para buscar la voz de Pig. + Animated + Children + + + TVG + + + + Cleo y Cuquín: Familia Telerín + Un mundo gigante; Una nueva amiga; Tesoros bajo la arena + A Cuquín se le escapa un balón que destroza el nuevo invento de Tete. Cuquín saca a una sirena del agua. Mientras buscan tesoros, los niños descubren una vieja caravana oxidada en la playa. + Animated + Children + + + TVG + + + + Cleo y Cuquín: Familia Telerín + Juegos helados; El misterio del cobertizo; ¡Salvemos el bosque! + Cleo y Cuquin y Pelusin descubren que la nieve se va y Cuquín se disgusta mucho. Cuquín va a cerrar una puerta que chirría y usa un candado, pero se le rompe la llave y ya no lo pueden abrir. + Animated + Children + + + TVG + + + + Defensores Petronix + Misión: rescate gorila + Cuando los animales salvajes corren peligro, un grupo de jóvenes superhéroes luchan por salvarlos. Un equipo capaz de transformarse en pequeños seres utilizando increíble tecnología. + Children + Animated + + + TVG + + + + Defensores Petronix + Misión: Rescate lémur + Cuando los animales salvajes corren peligro, un grupo de jóvenes superhéroes luchan por salvarlos. Un equipo capaz de transformarse en pequeños seres utilizando increíble tecnología. + Children + Animated + + + TVG + + + + Doki + Doki y los pingüinos; La falla de Fico + El Equipo Doki viaja a la Antártica para ayudar al experto en vida salvaje Rock Seaward y a su hija, Sailor, a contar a los pingüinos; frente a una serie de coincidencias, Fico se pregunta si podrá controlar la naturaleza. + Animated + Children + + + TVY + + + + El zoo de Zu + Una leona feliz + Es verano, y la tía Mimi les pide a Nuno y a Zu que les saquen fotos a los animales para un concurso. Ambos descubren que la leona del zoológico está muy desanimada y que es culpa del calor, pero ¿cómo hacer para alegrar a una leona? + + Ryu Murakami + Bia Jordão + Bebeto Coregio + + Children + + + + El zoo de Zu + El dragón de Komodo + Los niños deciden jugar a los superhéroes, pero pronto empieza una pelea para ver quién es el mejor. Mientras, Tia Mimi trata de leer la revista número uno de su superhéroe favorito, pero Tio Passarinho nunca sacó la revista del plástico original. + + Ryu Murakami + Bia Jordão + Bebeto Coregio + + Children + + + + Los cazahogares en familia + Bungaló en los suburbios + Una pareja de Los Ángeles busca casa en Santa Clarita (California). Quieren que la cocina esté reformado y que tenga un jardín trasero amplio. + Reality TV + + + TVG + + + + Los cazahogares en familia + Diversión en Colorado + Una divertida familia de seis busca una gran casa de concepto abierto a las afueras de Denver para acomodar a su creciente familia; los padres están en busca de algo llave en mano y seguro, pero los chicos están interesados en encontrar más espacio. + Reality TV + + + TVG + + + + Un gran mundo pequeño + El siguiente episodio de Amy + Amy se prepara para mudarse de la granja, pero a Matt le preocupa que se demore más de lo esperado. Zach y Tori esperan una niña. Amy busca una nueva casa. Chris revela que tiene una gran sorpresa para ella. + Reality TV + + + TVPG + + + + Todo en 90 días: casados en el extranjero + El azar + Ronald debe enfrentar sus demonios. Por otro lado, el nuevo juguete sexual de Laura ofende a Aladin. Además, Corey y Evelin tienen visiones diferentes sobre el futuro. + Reality TV + Documentary + + + TVPG + + + + Vestido de novia: Atlanta + Las Madres Siempre Tienen la Razón + Una novia enfrenta la realidad de escoger un vestido; una novia en la línea de fuego entre su madre y su suegra. + Reality TV + Fashion + + + TVPG + + + + Vestido de novia: Atlanta + Doble Drama de Madres + La madre distanciada de una novia la hace sentir culpable. Una madre se niega a ceder su amor por el vestido de gala. + Reality TV + Fashion + + + TVPG + + + + Vestido de novia: Las damas + Minidama de honor + Una novia hace equipo con su dama de honor de siete años en contra de su insistente hermana mayor; otra novia y su hermano amante de la moda están en desacuerdo con los estilos de los vestidos. + Reality TV + Fashion + + + TVPG + + + + Vestido de novia: Las damas + Intrusos en el presupuesto y grandes damas de honor + Una dama dominante odia todo vestido que la novia ama; dama se niega a pagar más por el vestido que la novia quiere. + Reality TV + Fashion + + + TVPG + + + + Mi gran boda gitana + De la cárcel al velo de boda + Chelsey es forzada a un matrimonio de conveniencia; un bautismo comienza una disputa familiar sobre antiguas tradiciones gitanas. + Reality TV + + + TV14 + + + + Tacaños extremos + Feliz Navidad + Sarah Gracel va a depósitos de chatarra para encontrar regalos de Navidad para su familia; Shelley Watson hace una mutación del pavo de Navidad con carne molida, pollo y piernas de pavo. + Reality TV + + + TVPG + + + + Christina en la playa + Un toque de indecisión + Una pareja que atraviesa el síndrome de nido vacío están listos para remodelar la cocina de su casa de mediados de siglo. Los clientes quieren toneladas de glamur en la reforma. + Reality TV + Home + + + TVG + + + + Ultimate Cake Off + The Nutcracker Sweet + Cake artists compete to build creations for the Long Beach Ballet's annual performance of. + Reality TV + Food + + + TVPG + + + + Ultimate Cake Off + Really Sweet 16 + Three cake decorators battle to create the cake for a river boat-themed Sweet Sixteen party. + Reality TV + Food + + + TVPG + + + + Ultimate Cake Off + Griffith Observatory + Three cake artists compete to create an edible masterpiece for the celebration of the Griffith Observatory's 75th anniversary. + Reality TV + Food + + + TVPG + + + + Ultimate Cake Off + Top Dogs + A cake for the American Kennel Club. + Reality TV + Food + + + TVPG + + + + Ultimate Cake Off + The Nutcracker Sweet + Cake artists compete to build creations for the Long Beach Ballet's annual performance of. + Reality TV + Food + + + TVPG + + + + Cake Boss + Buddy and the Rockettes + To celebrate the Rockettes' 85th Anniversary Buddy is creating a cake with the famous Radio City Music Hall neon sign; a teenager who dreams of becoming a pilot gets a birthday cake surprise. + Reality TV + Food + + + TVPG + + + + Cake Boss + Superheroes and Bakers Unite + Buddy is asked to make a cake for Spiderman's 50th anniversary; the Next Great Baker shows up late for work; plans for Momma's benefit gala begin. + Reality TV + Food + + + TVPG + + + + Cake Boss + Buddy and the Rockettes + To celebrate the Rockettes' 85th Anniversary Buddy is creating a cake with the famous Radio City Music Hall neon sign; a teenager who dreams of becoming a pilot gets a birthday cake surprise. + Reality TV + Food + + + TVPG + + + + Cake Boss + Superheroes and Bakers Unite + Buddy is asked to make a cake for Spiderman's 50th anniversary; the Next Great Baker shows up late for work; plans for Momma's benefit gala begin. + Reality TV + Food + + + TVPG + + + + Buddy's Bakery Rescue + Pastry Is Art + Life in Jenny's bakery is more like a soap opera; kick-starting her business; adding more spice to the menu. + Reality TV + Food + + + TVG + + + + Ultimate Cake Off + Black-Tie Wedding + Three competitors try to build the winning cake for an elegant, black-tie wedding. + Reality TV + Food + + + TVPG + + + + Animal Cribs + Pot-Bellied Pig Palace + Antonio goes hog wild and designs the ultimate piggy paradise with a new pig house, a mud pit, space to run and an activity wall to keep Mr. Pickles happy. + Reality TV + Animals + + + TVPG + + + + How Do Animals Do That? + Secret Transformation + How caterpillars transform into magnificent butterflies in their cocoons; why cats' tongues are the way they are. + Animals + Science + + + TVG + + + + How Do Animals Do That? + Deadly Dinner + Why some cats are cross-eyed; how meerkats can eat poisonous scorpions; how hippos can sleep while holding their breath. + Animals + Science + + + TVG + + + + The Adventures of Chuck & Friends + Sleep-Driving Chuck: Daredevil Chuck + When Chuck breaks a gasket he starts. + Children + + + TVY + + + + The Adventures of Chuck & Friends + Chuck and the Lost Hubcap of Gold; Shine On + Going exploring for the. + Children + + + TVY + + + + Pound Puppies + My Fair Rebound + Agatha McLeish tries to prove that her dog is top dog when she enters Rebound in a dog show. + + Eric McCormack + Yvette Nicole Brown + John DiMaggio + + Animated + Children + + + TVY + + + + Hanni and the Wild Woods + Hanni's New Book + The Forest Friends inspire young viewers to go outside and enjoy nature, have fun with it and appreciate its beauty. + + Kang Eun-ae + Kim Haru + Kim Yul + + Animated + Children + + + TVG + + + + Hanni and the Wild Woods + Wreck & Tangle's New Angle + The Forest Friends inspire young viewers to go outside and enjoy nature, have fun with it and appreciate its beauty. + + Kang Eun-ae + Kim Haru + Kim Yul + + Animated + Children + + + TVG + + + + Hanni and the Wild Woods + Inking a Deal + When Hanni runs out of ink for her art, she takes a trip to visit her artist octopus friend and ink purveyor Octavius; the Forest Friends tag along for a fun beach adventure. + + Kang Eun-ae + Kim Haru + Kim Yul + + Animated + Children + + + TVG + + + + Hanni and the Wild Woods + Cookie Cutter + While picking berries, Hanni is startled by a huge crashing sound; she runs over to check out what's going on, only to find her friend Cookie sawing down a bunch of trees. + + Kang Eun-ae + Kim Haru + Kim Yul + + Animated + Children + + + TVG + + + + Petronix Defenders + Mission: Wolf Pup Rescue + When MacTrapp captures a wolf pup, the Petronix team is on the scene; Matt is having a rough day, which gets worse when he loses his Petronix Gauntlet. + Children + Animated + + + TVG + + + + Petronix Defenders + Mission: Llama Rescue + When the Petronix Defenders try to rescue a defenceless llama from Princess Petswiper, Jia's impulsive behavior compromises the mission. + Children + Animated + + + TVG + + + + S.M.A.S.H! + Teching Through the Wilderness + When Tori and Streak head off into the wilderness to help Mei and the science campers with a new digital map, the Super Campers learn to balance technology and nature. + Animated + Children + + + TVG + + + + S.M.A.S.H! + Doc Takes the Cake + To help out the arts part of Camp SMASH, the campers put on a bake sale where all of the desserts are art themed; when Mei's cake replica of the statue of David is stolen, everyone can only think of one suspect. + Animated + Children + + + TVG + + + + Paddington Bear + Goings on at Number 32 + Paddington learns the TV repairman is really the Portobello Prowler and alerts the police. + + Charlie Adler + Georgia Brown + Hamilton Camp + + Animated + Children + + + TVG + + + + Paddington Bear + Fishing for Paddington + A day at the seaside turns fishy when Paddington turns a paw to lifesaving. + + Charlie Adler + Georgia Brown + Hamilton Camp + + Animated + Children + + + TVG + + + + Baby Looney Tunes + These Little Piggies Went to Market; Now Museum, Now You Don't + The kids go to the market; the kids go to the museum. + + Sam Vincent + Janyse Jaud + Ian James Corlett + + Animated + Children + + + TVG + + + + Baby Looney Tunes + Take Us Out to the Ballgame; Clues Encounters of the Tweety Kind + The babies go to a ball game; the babies go on a scavenger hunt at the museum. + + Sam Vincent + Janyse Jaud + Ian James Corlett + + Animated + Children + + + TVG + + + + The Sylvester & Tweety Mysteries + Curse of De Nile + Granny, Hector, Tweety and Sylvester discover the curse of de Nile when they arrive in Egypt to locate a missing archaeologist. + + Joe Alaskey + June Foray + Tress MacNeille + + Animated + Children + + + TVY + + + + The Sylvester & Tweety Mysteries + Hawaii 33 1/3 + Granny investigates an unexplained Tiki shortage. + + Joe Alaskey + June Foray + Tress MacNeille + + Animated + Children + + + TVY + + + + The Sylvester & Tweety Mysteries + If It's Wednesday, This Must Be Holland + Granny pursues a brazen smuggler who has stolen some rare blue tulip bulbs. + + Joe Alaskey + June Foray + Tress MacNeille + + Animated + Children + + + TVY + + + + The Sylvester & Tweety Mysteries + The Scare Up There + Mischievous gnomes bother Sylvester on an airplane flight. + + Joe Alaskey + June Foray + Tress MacNeille + + Animated + Children + + + TVY + + + + My Little Pony: Friendship Is Magic + The Summer Sun Setback + Twilight is determined to make Celestia and Luna's last Summer Sun Celebration memorable, but things start going horribly wrong. + + Tara Strong + Ashleigh Ball + Andrea Libman + + Animated + Children + + + TVY + + + + My Little Pony Equestria Girls: Rainbow Rocks Shorts + The Equestria Girls embrace the magic of friendship. + Animated + Children + + + TVY + + + + My Little Pony Equestria Girls: Friendship Games + The students of Canterlot High and the students of Crystal Prep Academy compete in exciting events. + Specials + Animated + + + TVY + + + + How Do Animals Do That? + Decorative Crabs and Loud Lions + Learning what lions say when they roar and what leaf cutter ants do with all the leaves they collect. + Animals + Science + + + TVG + + + + How Do Animals Do That? + Fish Farts And Giant Eggs + Domestic cats and their tree-climbing abilities; the evolution of two jungle cats; kiwi birds lay monster-sized eggs. + Animals + Science + + + TVG + + + + Ultimate Thanksgiving Challenge + They're Called Classics for a Reason + Chefs put their spin on Thanksgiving dinner; in the first round, they reinvent a classic side; they are asked to make an entire turkey dinner in just one hour and incorporate an ingredient from the very first Thanksgiving. + Food + Christmas + + + TVG + + + + Ultimate Thanksgiving Challenge + Pies, Sides and a Leftovers Surprise + The four remaining chefs take Thanksgiving classics to new heights; in round one, the chefs turn sweet pies into a holiday side; the winner receives a huge advantage in round two during which the chefs take on everyone's leftovers. + Food + Christmas + + + TVG + + + + Ultimate Thanksgiving Challenge + A Feast to Remember + The remaining three chefs are pushed to the limits of their creativity; in the first round, crucial kitchen equipment is off limits for competitors; in the final round, the last two chefs must make a full Thanksgiving meal in just three hours. + Food + Christmas + + + TVG + + + + Ultimate Thanksgiving Challenge + Bang for your Buck + Six of America's best chefs begin their journey to being crowned the Ultimate Thanksgiving Challenge Champion; host Giada De Laurentiis sets up their first challenge: transforming a low-cost item into an extraordinary Thanksgiving appetizer. + Food + Christmas + + + TVG + + + + Holiday: Impossible + Robert travels to Joplin, Mo., location of one of the country's deadliest tornadoes, to transform the Boys and Girls Club into an up-to-date, multi-functional space and serve a thank-you dinner for a thousand volunteers. + Specials + Food + + + TVG + + + + Restaurant: Impossible + Stalled on the Runway + In Greenville, S.C., the owners of an airport cafe believe that all the kids at a nearby playground are driving away their paying customers; Robert Irvine must convince them their problems are fixable or this restaurant will be grounded permanently. + Reality TV + Food + + + TVPG + + + + Restaurant: Impossible + The Imbalanced Chef + In Rome, N.Y., The Balanced Chef owner, Brian, is facing a mountain of problems, including serious health issues; the stakes are high as Robert Irvine must help Brian figure out a plan to reduce stress personally and professionally. + Reality TV + Food + + + TVPG + + + + Cake Boss + Crane Cake and Puppy Love + Buddy must create a moving crane cake for a local scrap metal company; Buddy makes his first ever dog wedding cake. + Reality TV + Food + + + TVPG + + + + Cake Boss + A Cowboy in Hoboken + Tim McGraw is giving away a brand new house to a military veteran and needs a cake from Buddy to reveal the big surprise; the Next Great Baker winner begins work at Carlo's. + Reality TV + Food + + + TVPG + + + + Cake Boss + Buddy and the Rockettes + To celebrate the Rockettes' 85th Anniversary Buddy is creating a cake with the famous Radio City Music Hall neon sign; a teenager who dreams of becoming a pilot gets a birthday cake surprise. + Reality TV + Food + + + TVPG + + + + Cake Boss + Superheroes and Bakers Unite + Buddy is asked to make a cake for Spiderman's 50th anniversary; the Next Great Baker shows up late for work; plans for Momma's benefit gala begin. + Reality TV + Food + + + TVPG + + + + Cake Boss + We Will Survive + The family prepares for Momma Mary's Benefit Gala and Buddy has invited a special performer to surprise Momma and the guests; Buddy is asked to make a life-size chair cake for a furniture company. + Reality TV + Food + + + TVPG + + + + Cake Boss + Dinosaurs, Brush Strokes and Edible Art + The crew makes a huge Hadrosaurus cake for a local Dinosaur theme park; for the first time since the eighties, Danny has his moustache shaved off for charity. + Reality TV + Food + + + TVPG + + + + Cake Boss + Buddy and the Rockettes + To celebrate the Rockettes' 85th Anniversary Buddy is creating a cake with the famous Radio City Music Hall neon sign; a teenager who dreams of becoming a pilot gets a birthday cake surprise. + Reality TV + Food + + + TVPG + + + + Cake Boss + Superheroes and Bakers Unite + Buddy is asked to make a cake for Spiderman's 50th anniversary; the Next Great Baker shows up late for work; plans for Momma's benefit gala begin. + Reality TV + Food + + + TVPG + + + + Buddy's Bakery Rescue + Grandma Millie's Bakery & Café + A family's bakery in a small airport needs a change. + Reality TV + Food + + + TVG + + + + Ultimate Cake Off + Winter Wedding + Three master cake decorators create massive works of edible art; the winner takes home $10,000. + Reality TV + Food + + + TVPG + + + + Animal Cribs + Backyard Barnyard + Antonio builds the ultimate barn with all the modern comforts for two rescued miniature horses that insist on sleeping in their owner's bedroom. + Reality TV + Animals + + + TVPG + + + + How Do Animals Do That? + Eagle Eye + Experts answer questions about surprising animal behavior including how a squirrel takes on a dangerous rattle snake, what makes eagles' eyes so powerful and why the planet is overrun with bugs. + Animals + Science + + + TVG + + + + How Do Animals Do That? + Black and White Secrets + Experts answer questions about surprising animal behavior, including whether parrots really know what they're talking about, how electric eels manage not to electrocute themselves and why pandas are black and white. + Animals + Science + + + TVG + + + + Baby Looney Tunes + Bruce Bunny; Leader of the Pack + Baby Bugs changes his name to Bruce after being teased by Daffy; Baby Daffy excludes Bugs from his club. + + Sam Vincent + Janyse Jaud + Ian James Corlett + + Animated + Children + + + TVY + + + + Baby Looney Tunes + Flower Power; Lightning Bugs Sylvester + The babies present Granny with flowers uprooted from her garden; Baby Sylvester is afraid of thunderstorms. + + Sam Vincent + Janyse Jaud + Ian James Corlett + + Animated + Children + + + TVY + + + + The Smurfs + The Smurf Who Couldn't Say No + Pushover Smurf accidentally wakes up the Marsh Monster. + + Frank Welker + Don Messick + Michael Bell + + Animated + Children + + + TVG + + + + The Smurfs + Adventures of Robin Smurf + The Smurfs put on a play of 'Robin Smurf'. + + Frank Welker + Don Messick + Michael Bell + + Animated + Children + + + TVG + + + + Transformers Rescue Bots + Camp Cody + In order for Blades to participate in a Lad Pioneer leveling up ceremony on the mainland, Graham and Cody help disguise him - and discover surprises along the way. + + Steve Blum + Parvesh Cheena + D.C. Douglas + + Animated + Children + + + TVY7 + + + + Petronix Defenders + Mission: Polar Bear Rescue + Danny Mactrapp has invented a new gadget and plans to use it to capture a polar bear; the Petronix Defenders must swim to the rescue. + Children + Animated + + + TVG + + + + Petronix Defenders + Mission: Gorilla Rescue + When Danny MacTrapp captures a silverback gorilla, Jia and Paul-E let their anger get the best of them and rush in, leading to the capture of their teammates. + Children + Animated + + + TVG + + + + Pound Puppies + Quintuplets + Finding a home for five puppies determined to stick together. + + Eric McCormack + Yvette Nicole Brown + John DiMaggio + + Animated + Children + + + TVY + + + + Pound Puppies + Dog on a Wire + Strudel realizes her dream of being a performance dog when they return a circus dog that was accidentally left behind back to the big top. + + Eric McCormack + Yvette Nicole Brown + John DiMaggio + + Animated + Children + + + TVY + + + + My Little Pony: Friendship Is Magic + A Canterlot Wedding - Part 1 + Twilight's brother Shining Armor is marrying Princess Celestia's niece, Princess Cadance. + + Tara Strong + Ashleigh Ball + Andrea Libman + + Animated + Children + + + TVY + + + + My Little Pony: Friendship Is Magic + A Canterlot Wedding - Part 2 + Twilight discovers a dark secret about Princess Cadance right before the wedding. + + Tara Strong + Ashleigh Ball + Andrea Libman + + Animated + Children + + + TVY + + + + Super Monsters + A Mermaid in Pitchfork Pines + The Super Monsters are excited to go on an outing at Crystal Lake; the gang spot a mermaid who longs to fly. + + Elyse Maloway + Vincent Tong + Andrea Libman + + Animated + Children + + + TVY + + + + Super Monsters + Just Imagine + Putting on a play based on. + + Elyse Maloway + Vincent Tong + Andrea Libman + + Animated + Children + + + TVY + + + + S.M.A.S.H! + How Slow Can You Go? + Thinking that using her super speed powers to do everything is annoying to her friends, Streak decides to slow her life down, which she finds out is hard to do. + Animated + Children + + + TVG + + + + S.M.A.S.H! + A Shot in the Dark + When Jade and Jordan lead their campers on a campout in the woods, Flare learns that Blaze is afraid of the dark; to make matters worse, the light the campers use to comfort the pooch upsets Doc Damage's star gazing and the villain retaliates. + Animated + Children + + + TVG + + + + Littlest Pet Shop + It's the Pet Fest! + When Blythe's dream of holding a Pet Fest in Downtown City has a chance to become a reality, she must race against time to pull it all together. + + Ashleigh Ball + Tabitha St. Germain + Nicole Oliver + + Animated + Children + + + TVY + + + + Littlest Pet Shop + It's the Pet Fest! + Zoe tries to impress her new friend, Heidi; Blythe races against time to relocate the Pet Fest after the original venue falls through. + + Ashleigh Ball + Tabitha St. Germain + Nicole Oliver + + Animated + Children + + + TVY + + + + Littlest Pet Shop: A World of Our Own + The Imitation Game + Quincy discovers that he has a gift for mimicry, and he becomes a local celebrity with his popular impressions - for the first time, Quincy is a big-shot; unfortunately, his most popular impression is of Edie, and it makes her feel self-conscious. + Animated + Children + + + TVG + + + + Littlest Pet Shop: A World of Our Own + The Purr-fect Storm + When the Captain and crew of the LPS Cruise Ship become hypnotized and unable to do their jobs, Bev enlists her friends to help keep the ship running, but Bev runs a very tight ship indeed, and drives her friends to the brink of mutiny. + Animated + Children + + + TVG + + + + My Little Pony: Friendship Is Magic + Rock Solid Friendship + Pinkie Pie does everything she can to make sure her sister, Maud, sees that Ponyville has more to offer than just rocks. + + Tara Strong + Ashleigh Ball + Andrea Libman + + Animated + Children + + + TVY + + + + My Little Pony: Friendship Is Magic + Fluttershy Leans In + Determined to make her career dreams come true with the help of some very special ponies, Fluttershy must find a way to stand up and fight for her ideas. + + Tara Strong + Ashleigh Ball + Andrea Libman + + Animated + Children + + + TVY + + + + My Little Pony: Friendship Is Magic + Forever Filly + Rarity tries to surprise Sweetie Belle with a day filled with all of her favorite activities, but quickly learns her little sister is no longer the little foal she used to be. + + Tara Strong + Ashleigh Ball + Andrea Libman + + Animated + Children + + + TVY + + + + My Little Pony: Friendship Is Magic + Parental Glideance + Rainbow Dash is pushed to the brink by her parents' unbridled enthusiasm after they learn she is a Wonderbolt. + + Tara Strong + Ashleigh Ball + Andrea Libman + + Animated + Children + + + TVY + + + + My Little Pony: Friendship Is Magic + Hard to Say Anything + The CMC's figure out that Big Mac has his first crush and vow to help him win Sugar Belle's heart against the competition of Feather Bangs. + + Tara Strong + Ashleigh Ball + Andrea Libman + + Animated + Children + + + TVY + + + + Too Cute! + Puppies: Growing Up Fluffy + Revisiting Dachshund, Portuguese water dog and Rhodesian Ridgeback litters one year after their introduction. + Animals + + + TVG + + + + How Do Animals Do That? + Secret Transformation + How caterpillars transform into magnificent butterflies in their cocoons; why cats' tongues are the way they are. + Animals + Science + + + TVG + + + + How Do Animals Do That? + Deadly Dinner + Why some cats are cross-eyed; how meerkats can eat poisonous scorpions; how hippos can sleep while holding their breath. + Animals + Science + + + TVG + + + + Cake Boss: Family Feast + An Italian Thanksgiving feast; turkey cake for the bakery crew. + Specials + Christmas + + + TVPG + + + + Cake Boss + Tulips, Taxes & Take It Easy + Buddy needs to find time to relax while making an eight-tiered flower cake and a life-size accountant cake. + Reality TV + Food + + + TVPG + + + + Cake Boss + Second Anniversary, Surgery & St. Patty's + Buddy is selected to be the Grand Marshall of Hoboken's St. Patrick's Day parade; Mauro is in charge while Buddy is away for surgery. + Reality TV + Food + + + TVPG + + + + Cake Boss + Space Shuttle, Stepping Up & Surprise! + Buddy attempts to make a cake for NASA that lifts off; Buddy wants to change the store display and catalog; a special cake for Momma. + Reality TV + Food + + + TVPG + + + + Cake Boss + Houses, Help, & Hitting the Road! + To feed more than 4000 people, Buddy must make a cake that represents houses around the world for Century 21's anniversary in Las Vegas. + Reality TV + Food + + + TVPG + + + + Cake Boss + Headphones, Helicopters & Handcuffed + Buddy makes a surprise cake for Anthony that looks like a DJ set up; a client requests a cake for their medivac unit and offer Buddy a chance to deliver it in a helicopter. + Reality TV + Food + + + TVPG + + + + Cake Boss + A Big Bumblebee & a Bossy Grace + Buddy is asked to make a Bumblebee cake to promote the movie Transformers 3; Grace is left in charge of the bakery. + Reality TV + Food + + + TVPG + + + + Cake Boss + Competition, Complications, & Communion + A bowling cake that leads to a match on the lanes; it's Sophia's first communion; complications at the new factory. + Reality TV + Food + + + TVPG + + + + Cake Boss + Bugs, Break Ups & Burned-out + Buddy is asked to make a cake with real insects as the ingredients; a friend of one of the bakers needs some cheering up. + Reality TV + Food + + + TVPG + + + + Cake Boss + Moving Cake, Marbles & Mess Ups + Buddy creates a go-cart cake that must move; a friend of the family requests a birthday cake for someone who is turning 101 years old. + Reality TV + Food + + + TVPG + + + + Cake Boss + Tulips, Taxes & Take It Easy + Buddy needs to find time to relax while making an eight-tiered flower cake and a life-size accountant cake. + Reality TV + Food + + + TVPG + + + + Cake Boss + Second Anniversary, Surgery & St. Patty's + Buddy is selected to be the Grand Marshall of Hoboken's St. Patrick's Day parade; Mauro is in charge while Buddy is away for surgery. + Reality TV + Food + + + TVPG + + + + Cake Boss + Space Shuttle, Stepping Up & Surprise! + Buddy attempts to make a cake for NASA that lifts off; Buddy wants to change the store display and catalog; a special cake for Momma. + Reality TV + Food + + + TVPG + + + + Buddy's Bakery Rescue + Bing's Bakery + Bing's Bakery has been in operation since 1946, but owner Tom keeps hundreds of items on the menu even as they continue to lose money; Buddy tries to convince Tom that changes need to be made to save his bakery. + Reality TV + Food + + + TVG + + + + Ultimate Cake Off + Top Dogs + A cake for the American Kennel Club. + Reality TV + Food + + + TVPG + + + + Animal Cribs + Pygmy Goat Playground + Antonio transforms two Nigerian dwarf goats' space into the ultimate goat playground, complete with a climbing tower, observation deck, and an easy-to-clean three-story house. + Reality TV + Animals + + + TVPG + + + + How Do Animals Do That? + Secret Transformation + How caterpillars transform into magnificent butterflies in their cocoons; why cats' tongues are the way they are. + Animals + Science + + + TVG + + + + How Do Animals Do That? + Deadly Dinner + Why some cats are cross-eyed; how meerkats can eat poisonous scorpions; how hippos can sleep while holding their breath. + Animals + Science + + + TVG + + + + Baby Looney Tunes + Flush Hour; I Strain + The babies overcome their fear of the toilet; Baby Sylvester is addicted to watching television. + + Sam Vincent + Janyse Jaud + Ian James Corlett + + Animated + Children + + + TVY + + + + Baby Looney Tunes + The Sandman Is Coming; Some Assembly Required + Daffy gets scared when he hears that the Sandman is going to visit them in their sleep; Bugs asks the gang for help with his new toy. + + Sam Vincent + Janyse Jaud + Ian James Corlett + + Animated + Children + + + TVY + + + + The Smurfs + The Cursed Country + A dragon and its master are capturing the beings that work the diamond mine. + + Frank Welker + Don Messick + Michael Bell + + Animated + Children + + + TVG + + + + The Smurfs + The Black Hellebore + An evil wizard uses a deadly flower to put everyone in a trance. + + Frank Welker + Don Messick + Michael Bell + + Animated + Children + + + TVG + + + + Transformers Rescue Bots + Once Upon a Time + The Rescue Team is drawn into the woods to solve the mystery of what's making the Griffin Spruces fall. + + David Lucas + Parvesh Cheena + D.C. Douglas + + Animated + Children + + + TVG + + + + Petronix Defenders + Mission: Lemur Rescue + When the Ringmaster steals the leader of a group of lemurs so that the others will follow, the Petronix Defenders doubt they can rescue the lemurs without their own leader, Matt, helping them out. + Children + Animated + + + TVG + + + + Petronix Defenders + Mission: Elephant Family Rescue + Mactrapp invents a game in a ploy to use the Petronix Defenders to capture a Baby Elephant. Pup-E is so eager to win that he rushes and falls right into Mactrapp's trap! + Children + Animated + + + TVG + + + + Pound Puppies + Homeward Pound + The Pound Puppies try to find Squirt and Niblet after they become lost and stranded in the middle of nowhere. + + Eric McCormack + Yvette Nicole Brown + John DiMaggio + + Animated + Children + + + TVY + + + + Pound Puppies + Rebel Without a Collar + Cookie becomes smitten with a coyote that is accidentally brought into the shelter. + + Eric McCormack + Yvette Nicole Brown + John DiMaggio + + Animated + Children + + + TVY + + + + My Little Pony: Friendship Is Magic + The Return of Harmony - Part 1 + Discord escapes from his stone prison, and Twilight and her friends must act quickly to find the Elements of Harmony to stop him. + + Tara Strong + Ashleigh Ball + Andrea Libman + + Animated + Children + + + TVY + + + + My Little Pony: Friendship Is Magic + The Return of Harmony - Part 2 + Discord causes a rift between Twilight and her friends and she must bring them back together in order to defeat him. + + Tara Strong + Ashleigh Ball + Andrea Libman + + Animated + Children + + + TVY + + + + Super Monsters + The Big Show + The Super Monsters perform an all-new stage play based on the books Alice In Wonderland and Through the Looking Glass. + + Elyse Maloway + Vincent Tong + Andrea Libman + + Animated + Children + + + TVY + + + + Super Monsters + Green With Envy + Zoe grows increasingly jealous of her baby brother, Zane, when he begins to learn how to do things she can't. + + Elyse Maloway + Vincent Tong + Andrea Libman + + Animated + Children + + + TVY + + + + S.M.A.S.H! + Puppy Powers! + The super-powered puppies Felicity, Rio, Lightning and Blaze have so much fun using their superpowers that they forget how amazing their natural puppy powers can be; it's up to the super campers to help their furry sidekicks. + Animated + Children + + + TVG + + + + S.M.A.S.H! + The B-Team + The super kids get a mysterious invitation to go off on a scavenger hunt; Mei Lien and the normal campers are left on their own to defend the camp from another one of Doc Damage's evil schemes. + Animated + Children + + + TVG + + + + Littlest Pet Shop + War of the Weirds + The pets see what they believe is a UFO; Mrs. Twombly tries to boost sales at the pet shop. + + Ashleigh Ball + Tabitha St. Germain + Nicole Oliver + + Animated + Children + + + TVY + + + + Littlest Pet Shop + Secret Cupet + While trying to stop the secret pet. + + Ashleigh Ball + Tabitha St. Germain + Nicole Oliver + + Animated + Children + + + TVY + + + + Littlest Pet Shop: A World of Our Own + Scrappers Keepers + Mayor frets that the always-happily-destructive Scrappers might ruin an upcoming parade, so he enlists Roxie, Jade and Edie to baby sit the juvenile fireballs; the three do their best to tire out the Scrappers, but they run out of energy. + Animated + Children + + + TVG + + + + Littlest Pet Shop: A World of Our Own + Bev Rolls With It + Bev joins the hapless Roller Derby team, and gives the team the hope of actually winning a game. + Animated + Children + + + TVG + + + + My Little Pony: Friendship Is Magic + Honest Apple + When Rarity asks Applejack to be a judge in a fashion show, Applejack learns that an opinion, however honest, can still be hurtful. + + Tara Strong + Ashleigh Ball + Andrea Libman + + Animated + Children + + + TVY + + + + My Little Pony: Friendship Is Magic + A Royal Problem + Starlight Glimmer is sent to solve a friendship problem between Princess Celestia and Princess Luna; when it's clear that the problem is that the royal sisters don't appreciate one another, Starlight impulsively switches their cutie marks! + + Tara Strong + Ashleigh Ball + Andrea Libman + + Animated + Children + + + TVY + + + + My Little Pony: Friendship Is Magic + Not Asking for Trouble + Pinkie Pie visits Prince Rutherford and the Yaks. While there, an avalanche falls on the entire rustic village of Yakyakistan. Pinkie Pie suggests that she go to get the other ponies to come help but the proud Prince and Yaks refuse. + + Tara Strong + Ashleigh Ball + Andrea Libman + + Animated + Children + + + TVY + + + + My Little Pony: Friendship Is Magic + Discordant Harmony + When Discord invites Fluttershy to his realm for tea, he worries she won't be comfortable there and begins to change it and himself with disastrous results. + + Tara Strong + Ashleigh Ball + Andrea Libman + + Animated + Children + + + TVY + + + + My Little Pony: Friendship Is Magic + The Perfect Pear + The Apple Siblings learn about their parent's love story and find out that they're half Pear. + + Tara Strong + Ashleigh Ball + Andrea Libman + + Animated + Children + + + TVY + + + + Too Cute! + Kittens: Growing Up + Catching up with three different litters a year after they were first introduced to see how they have progressed. + Animals + + + TVG + + + + How Do Animals Do That? + Eagle Eye + Experts answer questions about surprising animal behavior including how a squirrel takes on a dangerous rattle snake, what makes eagles' eyes so powerful and why the planet is overrun with bugs. + Animals + Science + + + TVG + + + + How Do Animals Do That? + Black and White Secrets + Experts answer questions about surprising animal behavior, including whether parrots really know what they're talking about, how electric eels manage not to electrocute themselves and why pandas are black and white. + Animals + Science + + + TVG + + + + Cake Boss + Hay Bales And A Health Scare + A long-time customer's family farm wants a harvest themed cake to kick off the fall season; Mauro gets some shocking news and must undergo surgery. + Reality TV + Food + + + TVPG + + + + Cake Boss + Lumber Jacks and Giving Back + Two professional lumberjacks tie the knot and Buddy makes a tree-inspired wedding cake; Carlo's shop gives back to Feeding America, and Buddy promises a meal for all the volunteers at the Hoboken shelter. + Reality TV + Food + + + TVPG + + + + Cupcake Wars + The Nutcracker + Four bakers compete to have their treats displayed at the New York City Ballet's opening night party. + Food + Christmas + + + TVG + + + + Cupcake Wars + Hollywood Christmas Parade + The best cupcakes presented at the Hollywood Christmas Parade. + Food + Christmas + + + TVG + + + + Cupcake Wars + The Closer 100th Episode + The 100th episode celebration with four returning bakers fighting for redemption. + Food + Game Shows + + + TVG + + + + Cupcake Wars + Final Cup(Cakes) + Celebration of the Major League Soccer Cup Finals. + Food + Game Shows + + + TVG + + + + Cupcake Wars + The Nutcracker + Four bakers compete to have their treats displayed at the New York City Ballet's opening night party. + Food + Christmas + + + TVG + + + + Cupcake Wars + Hollywood Christmas Parade + The best cupcakes presented at the Hollywood Christmas Parade. + Food + Christmas + + + TVG + + + + Cupcake Wars + The Closer 100th Episode + The 100th episode celebration with four returning bakers fighting for redemption. + Food + Game Shows + + + TVG + + + + Buddy's Bakery Rescue + Not Jus' Donuts + In Houston, Texas, Myrtle passes the bakery torch onto her daughters; teamwork and patience fall short and the air-conditioning unit dies, bringing decorating to a halt. + Reality TV + Food + + + TVG + + + + Ultimate Cake Off + The Nutcracker Sweet + Cake artists compete to build creations for the Long Beach Ballet's annual performance of. + Reality TV + Food + + + TVPG + + + + Animal Cribs + Subterranean Paradise + Ricky adopted a 20-foot Burmese python he rescued from a burning building, and now needs Antonio's help to transform his basement into an epic habitat with heated rock facades, a waterfall and a pond. + Reality TV + Animals + + + TVPG + + + + How Do Animals Do That? + Eagle Eye + Experts answer questions about surprising animal behavior including how a squirrel takes on a dangerous rattle snake, what makes eagles' eyes so powerful and why the planet is overrun with bugs. + Animals + Science + + + TVG + + + + How Do Animals Do That? + Black and White Secrets + Experts answer questions about surprising animal behavior, including whether parrots really know what they're talking about, how electric eels manage not to electrocute themselves and why pandas are black and white. + Animals + Science + + + TVG + + + + Baby Looney Tunes + All Washed Up; Did Not! Did Too! + The babies coax Taz into the bathtub; Baby Lola challenges Bugs to a winner-take-all match for the leadership of the group. + + Sam Vincent + Janyse Jaud + Ian James Corlett + + Animated + Children + + + TVY + + + + Baby Looney Tunes + Tea and Basketball; Taz You Like It + The babies must learn to accept that Sylvester likes to throw tea parties, while Lola likes to play basketball; Taz's slapstick routine drives everyone to distraction. + + Sam Vincent + Janyse Jaud + Ian James Corlett + + Animated + Children + + + TVY + + + + The Smurfs + S-Shivering S-Smurfs + Tracker searches for a healing root to cure the ailing Smurfs as an early cold snap gives the whole village Smurfmonia. + + Frank Welker + Don Messick + Michael Bell + + Animated + Children + + + TVG + + + + The Smurfs + Sister Smurf + A wicked witch captures Smurfette and her new friend. + Animated + Children + + + TVG + + + + The Smurfs + Revenge of the Smurfs + The Smurfs retaliate when knights wreck their village. + + Frank Welker + Don Messick + Michael Bell + + Animated + Children + + + TVG + + + + Transformers Rescue Bots + The Need for Speed + When a mysterious criminal and unexpected visitor arrive in Griffin Rock, Blurr's future as a Rescue Bot is challenged. + + David Lucas + Parvesh Cheena + D.C. Douglas + + Animated + Children + + + TVG + + + + Petronix Defenders + Mission: Koala Rescue + Princess Petswiper captures a koala and uses a music-box to keep it awake! When Jia doesn't want to admit she's tired, she puts the rescue mission in jeopardy. + Children + Animated + + + TVG + + + + Petronix Defenders + Mission: S.O.S. Double Zebra + When the world's wild animals are in danger, a team of young superheroes rush to their rescue; they are able to transform their backpacks into small animals with incredible technology. + Children + Animated + + + TVG + + + + Pound Puppies + Taboo + The pound puppies must find a home for a dog that is convinced he's bad luck. + + Eric McCormack + Yvette Nicole Brown + John DiMaggio + + Animated + Children + + + TVY + + + + Pound Puppies + Toyoshiko Bark Friend Machine + A robot dog, who understands Strudel, comes to the pound. + + Eric McCormack + Yvette Nicole Brown + John DiMaggio + + Animated + Children + + + TVY + + + + My Little Pony: Friendship Is Magic + Lesson Zero + Panic ensues when Twilight can't find one of her friendship lessons for her letter to Princess Celestia. + + Tara Strong + Ashleigh Ball + Andrea Libman + + Animated + Children + + + TVY + + + + My Little Pony: Friendship Is Magic + Luna Eclipsed + Luna shows up at the Nightmare Night, macabre party to change her bad pony image. + + Tara Strong + Ashleigh Ball + Andrea Libman + + Animated + Children + + + TVY + + + + Super Monsters + Oops, We Shrunk the Cars + The Super Monsters arrange a car wash, but there is absolute chaos when the enchanted sponges shrink all the vehicles. + + Elyse Maloway + Vincent Tong + Andrea Libman + + Animated + Children + + + TVY + + + + Super Monsters + An Ogre in Pitchfork Pines + The Super Monsters have never seen a real ogre before, but then Luigi reveals a secret -- to the Monsters' surprise. + + Elyse Maloway + Vincent Tong + Andrea Libman + + Animated + Children + + + TVY + + + + S.M.A.S.H! + Docs Best Friend + When Doc gets fed up with the special connection the Super Campers have with their pets, he gets an alligator to scare the pups away from the lake for good but ends up with an amphibious pal of his own. + Animated + Children + + + TVG + + + + S.M.A.S.H! + Big Paw + When Tori finds a paw print from the legendary creature Big Paw, she forms an unlikely alliance with Doc Damage to track down the animal and take its picture so she can prove to the other campers that the myth is real. + Animated + Children + + + TVG + + + + Littlest Pet Shop + Some Assistance Required + Blythe fills in as assistant to a magazine editor; Russell and Zoe deal with a high-maintenance pet model at a photo shoot. + + Ashleigh Ball + Tabitha St. Germain + Nicole Oliver + + Animated + Children + + + TVY + + + + Littlest Pet Shop + Winter Wonder Wha...? + Blythe and Zoe spend a weekend at the Biskits winter chateau; the pets try to cheer up a visiting homesick penguin. + + Ashleigh Ball + Tabitha St. Germain + Nicole Oliver + + Animated + Children + + + TVY + + + + Littlest Pet Shop: A World of Our Own + CEO Trip + Trip goes on a reality show to pitch his new invention, a flying hamster wheel; he finds an investor, ramps up production and is quickly the big new thing; he finds himself with a penthouse office, all the perks of CEO status. + Animated + Children + + + TVG + + + + Littlest Pet Shop: A World of Our Own + The Incredible Roman And Ray + Bev auditions to become an assistant to Paw-Tucket's most popular magic act, a Tibetan mastiff and a rabbit who perform astonishing illusions; Bev's efforts to improve their relationship backfire, causing the act to split up. + Animated + Children + + + TVG + + + + My Little Pony: Friendship Is Magic + Fame and Misfortune + Twilight Sparkle's publishing of the friendship journal has unintended consequences when ponies start to argue over who wrote the best lessons. + + Tara Strong + Ashleigh Ball + Andrea Libman + + Animated + Children + + + TVY + + + + My Little Pony: Friendship Is Magic + Triple Threat + Spike accidentally invites Ember and Thorax to Ponyville on the same day. He's sure the two new leaders are not going to get along so he does all he can to keep them apart and cover the fact that the other is there. + + Tara Strong + Ashleigh Ball + Andrea Libman + + Animated + Children + + + TVY + + + + My Little Pony: Friendship Is Magic + Campfire Tales + When their sister camping trip is ruined by Fly-ders, Applejack, Rarity, and Rainbow Dash tell Sweetie Belle, Apple Bloom, and Scootaloo the stories of their favorite legends; inspired by the tales, the girls make the most out of their new situation. + + Tara Strong + Ashleigh Ball + Andrea Libman + + Animated + Children + + + TVY + + + + My Little Pony: Friendship Is Magic + Daring Done + When Rainbow Dash's favorite author, A.K. Yearling, announces her retirement, Dash convinces Pinkie Pie to go on a quest to find out if the book on Daring Do really will be closed forever. + + Tara Strong + Ashleigh Ball + Andrea Libman + + Animated + Children + + + TVY + + + + My Little Pony: Friendship Is Magic + A Health of Information + While helping Fluttershy gather supplies, Zecora comes down with a terrible disease called Swamp Fever; even though a cure has not been discovered, Fluttershy makes it her mission to heal Zecora no matter what it takes. + + Tara Strong + Ashleigh Ball + Andrea Libman + + Animated + Children + + + TVY + + + + Too Cute! + A look various baby animals and their first few months of life. + Animals + + + TVG + + + + How Do Animals Do That? + Cool Koalas and Elephant Calls + A look at how furry koalas keep cool in the Australian sun; how elephants communicate when they're miles apart; are vultures immune to disease; and what is the secret to a frog's amazing tongue; how spiders live so long. + Animals + Science + + + TVG + + + + How Do Animals Do That? + Cat Speech + Digging in deep to reveal animal secrets like why some of the world's most clever monkeys have turned to crime, why scorpions glow in the dark and what cats are trying to tell us. + Animals + Science + + + TVG + + + + Kids Baking Championship + Gobble Goodies + In the spirit of gathering with old friends, Duff Goldman and Valerie Bertinelli bring back four unforgettable kid bakers to make turkey cakes; they create holiday magic while competing for a $10,000 prize package of baking tools. + Food + Christmas + + + TVG + + + + Hoarding: Buried Alive + The Stench is Amazing + Tim's inheritance is dwindling and he risks losing his home; twin brothers Lorrin and Orin face a similar predicament. + Reality TV + Documentary + + + TVPG + + + + Hoarding: Buried Alive + Three Apartments, Three Hoarders + An apartment complex with three extreme hoarders; the building is now under strict management. + Reality TV + Documentary + + + TVPG + + + + Hoarding: Buried Alive + It's a Rat's Nest + Doug stands to lose two houses filled with clutter if he doesn't control his compulsion to collect. + Reality TV + Documentary + + + TVPG + + + + Hoarding: Buried Alive + The Donald Trump of Hoarding + Mike is about to undergo surgery to save his life; the biohazards in his home threaten his recovery. + Reality TV + Documentary + + + TVPG + + + + Hoarding: Buried Alive + The Stench is Amazing + Tim's inheritance is dwindling and he risks losing his home; twin brothers Lorrin and Orin face a similar predicament. + Reality TV + Documentary + + + TVPG + + + + Hoarding: Buried Alive + Three Apartments, Three Hoarders + An apartment complex with three extreme hoarders; the building is now under strict management. + Reality TV + Documentary + + + TVPG + + + + Hoarding: Buried Alive + Three Apartments, Three Hoarders + An apartment complex with three extreme hoarders; the building is now under strict management. + Reality TV + Documentary + + + TVPG + + + + Hoarding: Buried Alive + It's a Rat's Nest + Doug stands to lose two houses filled with clutter if he doesn't control his compulsion to collect. + Reality TV + Documentary + + + TVPG + + + + Hoarding: Buried Alive + The Donald Trump of Hoarding + Mike is about to undergo surgery to save his life; the biohazards in his home threaten his recovery. + Reality TV + Documentary + + + TVPG + + + + Hoarding: Buried Alive + We're Gonna Need a Bigger Boat + Ken's girlfriend is giving him one last chance to clear out; Lea could lose her children if she cannot clean her clutter. + Reality TV + Documentary + + + TVPG + + + + Hoarding: Buried Alive + A VCR for Every Day of the Week + A father and son who both hoard; one faces jail time while the other could lose his newborn son. + Reality TV + Documentary + + + TVPG + + + + My 600-Lb. Life: Where Are They Now? + Chay and Pauline + Pauline must keep her weight loss on track after a medical emergency; Chay admits to being a transgender woman, and the resulting stress may threaten his weight loss journey. + Reality TV + + + TV14 + + + + My 600-Lb. Life + Nikki's Story + Nikki finds her career as a costume designer threatened by immobility, so she undergoes gastric bypass and confronts the emotional causes for her eating. + Reality TV + Documentary + + + TVPG + + + + My 600-Lb. Life + Ashley D.'s Story + Ashley confronts medical setbacks and struggles to get past the trauma that ignited her eating disorder. + Reality TV + Documentary + + + TVPG + + + + My 600-Lb. Life: Where Are They Now? + Lupe & Ashley D + Dr. Nowzaradan is worried Lupe's emotional issues are blocking her weight loss journey since she's shed over 300-lbs but still can't walk; when Ashley is struck with sudden paralysis, her own emotional stability is thrown into peril. + Reality TV + Documentary + + + TV14 + + + + My 600-Lb. Life: Where Are They Now? + Brittani & Sean + Gastric surgery freed Brittani from her housebound life, but to achieve her ideal body she'll have to endure two more painful surgeries; Sean's super-obesity nearly killed him. + Reality TV + Documentary + + + TV14 + + + + My 600-Lb. Life: Where Are They Now? + Teretha & Chad + Surgery enables Teretha to return to family in Detroit, but it soon threatens to undo all her progress; Chad is back on the road, but his old diet is a risk. + Reality TV + Documentary + + + TV14 + + + + My 600-Lb. Life: Where Are They Now? + Nikki + After losing 250lbs, Nikki is on her way to skin surgery, but when a close friend dies from weight loss surgery, Nikki's progress is derailed by fears. + Reality TV + Documentary + + + TV14 + + + + My 600-Lb. Life: Where Are They Now? + Dottie & June + Devastated by the sudden loss of her son, Dottie's weight loss journey is in danger of going off track; June embarks on a plan to win approval for skin surgery; Melissa, Jessica and Matt prepare for skin removal surgery. + Reality TV + Documentary + + + TV14 + + + + My 600-Lb. Life: Where Are They Now? + Milla & Charity + Charity's daughter is becoming dangerously obese; devastated by the death of her husband Elroy, Milla must find a way to finally qualify for gastric bypass; check-in with individuals who have undergone skin removal surgery. + Reality TV + Documentary + + + TV14 + + + + My 600-Lb. Life: Where Are They Now? + Joe W. & Pauline + Once 800lbs, housebound and alone, Joe is now engaged and planning a wedding; after losing over 300lbs, Pauline is on the verge of independence if only she can qualify for the skin surgery she needs so badly. + Reality TV + Documentary + + + TV14 + + + + My 600-Lb. Life: Where Are They Now? + Milla & Charity + Charity's daughter is becoming dangerously obese; devastated by the death of her husband Elroy, Milla must find a way to finally qualify for gastric bypass; check-in with individuals who have undergone skin removal surgery. + Reality TV + Documentary + + + TV14 + + + + My 600-Lb. Life: Where Are They Now? + Milla & Charity + Charity's daughter is becoming dangerously obese; devastated by the death of her husband Elroy, Milla must find a way to finally qualify for gastric bypass; check-in with individuals who have undergone skin removal surgery. + Reality TV + Documentary + + + TV14 + + + + My 600-Lb. Life: Where Are They Now? + Joe W. & Pauline + Once 800lbs, housebound and alone, Joe is now engaged and planning a wedding; after losing over 300lbs, Pauline is on the verge of independence if only she can qualify for the skin surgery she needs so badly. + Reality TV + Documentary + + + TV14 + + + + My 600-Lb. Life: Where Are They Now? + Dottie & June + Devastated by the sudden loss of her son, Dottie's weight loss journey is in danger of going off track; June embarks on a plan to win approval for skin surgery; Melissa, Jessica and Matt prepare for skin removal surgery. + Reality TV + Documentary + + + TV14 + + + + My 600-Lb. Life: Where Are They Now? + Laura and Chay + Surgery enabled Laura's independence but the complications nearly killed her and she's terrified about the next skin surgery; Chay revealed to her family she was transgender, but living life as an overweight woman. + Reality TV + Documentary + + + TV14 + + + + My 600-Lb. Life + Chad's Story + After gastric bypass surgery, Chad quickly sheds his dangerous weight but faces a medical crisis when he does not follow the doctor's orders. + Reality TV + Documentary + + + TVPG + + + + My 600-Lb. Life + Brittani's Story + Brittani married a man who loves large women, but at 600-lbs, she can barely contribute to their marriage, and gets surgery to try to have a normal relationship. + Reality TV + Documentary + + + TVPG + + + + My 600-Lb. Life: Where Are They Now? + Betti Jo & Susan + A number of challenges seem to have cornered Betti Jo and her husband; Susan encounters a serious problem that can throw everything off track. + Reality TV + Documentary + + + TV14 + + + + My 600-Lb. Life: Where Are They Now? + Melissa Morris + Over 11 years, Melissa has lost 500 pounds and saw her weight drop to 137 pounds; now facing marital problems, three pregnancies, and life as a single mom, Melissa is struggling with a 150-pound weight gain and finds herself at a crossroads. + Reality TV + Documentary + + + TV14 + + + + My 600-Lb. Life + Steven & Justin's Story, Part 1 + Steven Assanti weighs nearly 800 pounds and his brother Justin almost 600 pounds, and although they can't stand each other, their father packs up the family to travel across the country and seek help. + Reality TV + Documentary + + + TVPG + + + + My 600-Lb. Life: Where Are They Now? + Kandi & Brandi + After successful sleeve gastrectomy procedures, the Dreier twins collectively lose more than 400 pounds and work toward skin surgeries when a major life event disrupts their world and threatens their progress. + Reality TV + Documentary + + + TV14 + + + + My 600-Lb. Life: Where Are They Now? + Erica + Erica must return to California to continue her weight-loss journey, but she fears past emotional trauma will derail her progress. + Reality TV + Documentary + + + TV14 + + + + My 600-Lb. Life: Where Are They Now? + Diana & Ashley R + Ashley lost over 200 lbs. in Houston, but a family of enablers threatens her progress; Diana has shed 300 lbs., but knee damage may cause her to regain weight. + Reality TV + Documentary + + + TV14 + + + + My 600-Lb. Life + Lupe's Story + Lupe has spent the last 10 years in bed and is totally dependent on her husband, prompting a cross-country move that could save her life or end up backfiring. + Reality TV + Documentary + + + TVPG + + + + My 600-Lb. Life: Where Are They Now? + Diana & Ashley R + Ashley lost over 200 lbs. in Houston, but a family of enablers threatens her progress; Diana has shed 300 lbs., but knee damage may cause her to regain weight. + Reality TV + Documentary + + + TV14 + + + + My 600-Lb. Life: Where Are They Now? + Diana & Ashley R + Ashley lost over 200 lbs. in Houston, but a family of enablers threatens her progress; Diana has shed 300 lbs., but knee damage may cause her to regain weight. + Reality TV + Documentary + + + TV14 + + + + My 600-Lb. Life + Lupe's Story + Lupe has spent the last 10 years in bed and is totally dependent on her husband, prompting a cross-country move that could save her life or end up backfiring. + Reality TV + Documentary + + + TVPG + + + + My 600-Lb. Life: Where Are They Now? + Erica + Erica must return to California to continue her weight-loss journey, but she fears past emotional trauma will derail her progress. + Reality TV + Documentary + + + TV14 + + + + My 600-Lb. Life: Where Are They Now? + Kirsten, Michael, & Roni + Kirsten must gain independence to get a full gastric bypass; Michael struggles to lose and battles anger issues; Michael's wife, Roni, wants surgery too. + Reality TV + Documentary + + + TV14 + + + + My 600-Lb. Life + June's Story + June copes with the tragic death of her son by eating, and must confront the emotional issues driving her food compulsion after gastric bypass surgery. + Reality TV + Documentary + + + TVPG + + + + My 600-Lb. Life + Gideon's Story + At 650 pounds, Gideon's weight prohibits him from working, making him completely dependent on his exhausted wife. + Reality TV + Documentary + + + TVPG + + + + My 600-Lb. Life: Where Are They Now? + Nicole & Ashley D + Ashley hits an emotional wall and is desperate for skin surgery, but she's not losing any weight; after being evicted, Nicole is forced to move back to Ohio, which could impact her weight loss journey. + Reality TV + Documentary + + + TVPG + + + + My 600-Lb. Life: Where Are They Now? + James & Cynthia + Back on Dr. Nowzaradan's program, James is suspected of cheating as he continues to gain weight and suffers a series of life-threatening illnesses; Cynthia continues to lose weight but seems satisfied to do so at her own pace. + Reality TV + Documentary + + + TV14 + + + + My 600-Lb. Life: Where Are They Now? + Lupe & Brittani + Brittani has lost over 400 pounds in two years, so she and husband Bill think about expanding their family; Lupe has struggled since surgery, but, having left her husband, may finally start to make the permanent changes she needs. + Reality TV + Documentary + + + TVPG + + + + My 600-Lb. Life: Where Are They Now? + Sean & Dottie + Sean must overcome recent tragedies in his life before he loses all the progress he made over the last two years; Dottie struggles to stay on track while maintaining her family life. + Reality TV + Documentary + + + TV14 + + + + My 600-Lb. Life: Where Are They Now? + Milla & Charity + Milla is dependent on her children and seeks to lose enough weight to be able to walk; Charity is mired in a deep depression, while her daughter, Charly, battles a food addiction; they strive to turn things around and reach their goal weight. + Reality TV + Documentary + + + TVPG + + + + My 600-Lb. Life: Where Are They Now? + Doug + Doug has lost over 200 pounds and is more involved with his family life. He is now an example of healthy habits, but eating disorders threaten to derail his progress. + Reality TV + Documentary + + + TV14 + + + + My 600-Lb. Life + June, Chad & Pauline + Pauline's self-destructive behavior continues to be a problem; Chad strives to be a better father and husband as he continues his journey; June's progress stalls when frequent travel and wedding plans cause her to slip back into bad habits. + Reality TV + Documentary + + + TVPG + + + + My 600-Lb. Life: Where Are They Now? + Doug + Doug has lost over 200 pounds and is more involved with his family life. He is now an example of healthy habits, but eating disorders threaten to derail his progress. + Reality TV + Documentary + + + TV14 + + + + My 600-Lb. Life: Where Are They Now? + Doug + Doug has lost over 200 pounds and is more involved with his family life. He is now an example of healthy habits, but eating disorders threaten to derail his progress. + Reality TV + Documentary + + + TV14 + + + + My 600-Lb. Life + June, Chad & Pauline + Pauline's self-destructive behavior continues to be a problem; Chad strives to be a better father and husband as he continues his journey; June's progress stalls when frequent travel and wedding plans cause her to slip back into bad habits. + Reality TV + Documentary + + + TVPG + + + + My 600-Lb. Life: Where Are They Now? + Milla & Charity + Milla is dependent on her children and seeks to lose enough weight to be able to walk; Charity is mired in a deep depression, while her daughter, Charly, battles a food addiction; they strive to turn things around and reach their goal weight. + Reality TV + Documentary + + + TVPG + + + + Hoarding: Buried Alive + The Stench is Amazing + Tim's inheritance is dwindling and he risks losing his home; twin brothers Lorrin and Orin face a similar predicament. + Reality TV + Documentary + + + TVPG + + + + Hoarding: Buried Alive + Three Apartments, Three Hoarders + An apartment complex with three extreme hoarders; the building is now under strict management. + Reality TV + Documentary + + + TVPG + + + + Hoarding: Buried Alive + It's a Rat's Nest + Doug stands to lose two houses filled with clutter if he doesn't control his compulsion to collect. + Reality TV + Documentary + + + TVPG + + + + Hoarding: Buried Alive + The Donald Trump of Hoarding + Mike is about to undergo surgery to save his life; the biohazards in his home threaten his recovery. + Reality TV + Documentary + + + TVPG + + + + Trauma: Life in the ER + Playing With Fire + The staff of Vanderbilt University Medical Center's emergency room deals with patients during the summer in Nashville, Tenn. + Reality TV + Documentary + + + TVPG + + + + Trauma: Life in the ER + Teachable Moments + The emergency room at Highland Hospital in Oakland, Calif., treats a large population of people struggling with poverty and substance abuse. + Reality TV + Documentary + + + TVPG + + + + Trauma: Life in the ER + Desert Crossroads + Doctors at the Good Samaritan Regional Medical Center treat a teenager who collided with a tractor-trailer; a stabbing victim. + Reality TV + Documentary + + + TVPG + + + + Trauma: Life in the ER + Passing the Puck + Denver Health Medical Center's trauma unit, which handled the Columbine High School shooting victims, regularly treats accident victims. + Reality TV + Documentary + + + TVPG + + + + Long Lost Family + Why Did You Leave Me? + Two sisters search for the father who vanished from their lives when they were very young; a woman discovers that her musical talent can be attributed to her biological mother. + Reality TV + Documentary + + + TVPG + + + + Long Lost Family + The Missing Piece + Chris tries to solve the 50-year-old mystery of why a woman was abandoned at a laundromat days after being born; a family enlists Lisa's help to track down the firstborn son that was placed for adoption, hoping to fulfill a father's dying wish. + Reality TV + Documentary + + + TVPG + + + + Long Lost Family + You Have Been Loved Your Whole Life + Lisa faces many challenges when she helps a woman locate her father -- starting with his identity; a woman seeks Chris' help to find her mother, hoping the similarities she read in her adoption paperwork are not just a fantasy. + Reality TV + Documentary + + + TVPG + + + + Long Lost Family + The Court Said No, We Were Too Young + A woman searches for her beloved sister who she tried to adopt herself years ago; after a life of longing, a couple is desperate to find the son they placed for adoption fifty years ago when they were teens. + Reality TV + Documentary + + + TVPG + + + + I'm Pregnant and... + Have Cancer + A cervical cancer patient is pregnant. + Health + + + TVPG + + + + I'm Pregnant and... + Have OCD + A pregnant woman suffers from OCD. + Health + + + TVPG + + + + Big City Greens + Cricketsitter; Backflip Bill + Bill takes Gramma to a doctor's checkup and leaves Tilly in charge of Cricket; Cricket learns that Bill never realized his childhood dream of becoming a gymnast. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Welcome Home; Raccooned + Cricket Green and his family move from the country to Big City to live with Gramma; when Cricket and Bill accidentally disturb a nest of raccoons in the garage, they invade the house. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Photo Op; Remy Rescue + Bill promises his family a trip to the mall food court, but when he reveals it was just a trick to get them to a family portrait studio, Cricket and Gramma try to escape; Remy is caught skipping his violin lessons to hang out with Cricket. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Fill Bill; Critterball Crisis + While dining at a seafood restaurant, Bill feels he must prove to the waiter that he is a Big City local, and Cricket and Tilly try to rescue a live octopus; when Cricket loses all of his critterballs over the fence, Gloria refuses to return them. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Kiff + Kiff's thirst for life takes her on countless adventures through their city alongside her best friend, Barry. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Finding Nemo + A clown fish (Albert Brooks) embarks on a journey to find his son (Alexander Gould) after losing him in the Great Barrier Reef. + + Albert Brooks + Ellen DeGeneres + Alexander Gould + + 2003 + Movies + Animated + + + TVG + + + 4 + + + + Kiff + Silly Moods; Chatterly vs. Chatterly + A trip to Table Town Museum is threatened when Kiff and Barry get into a silly mood; when a leftover slice of pizza goes missing in the Chatterley home, they must settle the matter in family court. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Kiff + Hungee Squirrel; Foreverangees + An unflattering photo of Kiff goes viral, and she's determined to stop it; a curse puts friendships to the test; Kiff and Barry's relationship is in trouble. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Hamster & Gretel + Bayou Barb; The Great Pillow War + The Grant Gomez family goes on a bayou vacation where they encounter a local legend; Kevin and Gretel battle it out in a huge pillow fight. + + Meli Povenmire + Michael Cimino + Beck Bennett + + Animated + Children + + + TVG + + + + Hamster & Gretel + Shush Hour; I Was a Teenage Mad Scientist + Gretel does a school project on herself; Kevin and Hamster stop a librarian villain; Professor Exclamation attends his high school reunion. + + Meli Povenmire + Michael Cimino + Beck Bennett + + Animated + Children + + + TVG + + + + The Ghost and Molly McGee + Smile Valley Farm; The Grand Gesture + When Scratch discovers he loves a game he stubbornly refuses to try, he must try to hide his growing obsession; June and Darryl accidentally transform Scratch's ectoplasm into a living being. + + Ashly Burch + Dana Snyder + Jordan Klepper + + Animated + Children + + + TVY7 + + + + Bluey + See Saw; Movies; Grandad + The adventures of a Blue Heeler puppy, Bluey, who lives with her mother, father and sister; her energy and lovable spirit gets her into all kinds of funny and unpredictable situations. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Library; Swim School; Bin Night + Muffin plays the game of library her way; Mum, Dad and Bingo must pass swim school; Bluey, Bingo and Dad always take out the bins. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Big City Greens + Tilly Style; I, Farmbot + Tilly searches the mall for a new look to reflect her maturity; Cricket persuades Bill to buy a farming robot to get out of chores. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Greens' Acres; Dolled Up + Flashback: Young Bill will do whatever it takes to help keep the family farm in business; Tilly and Nancy enjoy Saxon's birthday at a fancy doll store. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Level Up; Wild Side + Bill gets addicted to a farm-simulating video game; Cricket's feral wild side takes over when Bill is unable to replicate their old camping trips. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Desserted; The Gifted + Cricket treats his family to dinner, but Bill is suspicious about how he plans to pay for it; Tilly and Cricket battle to see if Bill lies about liking their Father's Day gifts. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Green Mirror; Cricket's Tickets + When the Greens visit BigTech, Tilly discovers a chance to improve her chaotic family; Cricket wins tickets to a show and must decide who to bring. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Present Tense; Hurt Bike + Cricket struggles to get the best birthday present for his best bud, Remy; due to a close call with a dirt bike, Cricket fearfully decides to live his life in shelter. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Chipocalypse Now Part 1; Chipocalypse Now Part 2 + Chip Whistler tears down the buildings around the Green's house to build a Wholesome Foods store. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + 'Rent Control; Pool's Gold + When Gloria's parents visit, she ropes the Greens into escalating lies about her success; Cricket goes on a quest to find the best pool in Big City. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Kiff + Mall Leader; Ghost Wolf's Art + Kiff leads a group to the mall to get a free pretzel, but leadership comes with responsibilities; Kiff and Barry try to learn more about the mysterious Ghost Wolf. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Kiff + Fresh Outta Grandmas; Maybe-Sitting + Tensions rise when the crew gets wrapped up in a new collection craze; when Kiff shadows Harry and Terri as they watch Kristophe, she learns that being in charge is not so easy. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Bluey + Housework; Sheepdog; Explorers + Mum and Dad need to finish their housework; Dad, Bluey and Bingo play Sheepdog; Jack pretends to be a sailor on his way home. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Phones; Pavlova; Rain + Bluey and Bingo play restaurant with Grandad; the kids play Café so Bingo can eat Pavlova; Bluey tracks mud into the house. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Pizza Girls; Tina; Whale Watching + Bluey and Bingo make mud pizzas; Bluey and Bingo's giant, invisible friend, Tina; Bluey promises her customer Bingo the best tour ever. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Faceytalk; Ragdoll; Fairytale + Bluey and Bingo love to video chat; Dad agrees to buy ice cream; Dad tells a real-life fairy tale. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Star Wars: Young Jedi Adventures + The Jellyfruit Pursuit; Creature Safari + The Jedi sneak to the pirate tower; a creature is found. + + Jamaal Avery Jr. + Juliet Donenfeld + Dee Bradley Baker + + Animated + Children + + + TVY + + + + Star Wars: Young Jedi Adventures + Squadron; Forest Defenders + The Jedi are flight tested; the kids defend a forest. + + Jamaal Avery Jr. + Juliet Donenfeld + Dee Bradley Baker + + Animated + Children + + + TVY + + + + Bluey + Family Meeting; Barky Boats; Smoochy Kiss + Dad is accused of fluffing in Bluey's face; Bluey and Mackenzie play with two older friends; Bluey and Bingo want Dad all to themselves. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bolt + Thinking he has real superpowers, the canine star (John Travolta) of a hit TV show travels cross-country from Hollywood to New York to rescue his owner and co-star (Miley Cyrus). + + John Travolta + Miley Cyrus + Susie Essman + + 2008 + Movies + Animated + + + TVG + + + 3 + + + + Kiff + Silly Moods; Chatterly vs. Chatterly + A trip to Table Town Museum is threatened when Kiff and Barry get into a silly mood; when a leftover slice of pizza goes missing in the Chatterley home, they must settle the matter in family court. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Kiff + When You Mow You Mow; Harry's Maturity Crisis + Reggie is the first kid in Table Town to mow his own lawn, and Kiff wants to be the second; when Harry runs away, Barry and Kiff do anything they can to bring him back. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Hailey's on It! + Frankly Fabulous; The Pin Is Mightier Than the Swole + Hailey enters Frank the Flamingo into a bird show, and they run into his former mean trainer; expert bowler Hailey struggles with a list item that requires her to lose to her dad at bowling. + + Auli'i Cravalho + Manny Jacinto + Gary Anthony Williams + + Animated + Children + + + TVY + + + + Hailey's on It! + The Beginning of the Friend + Hailey tries to ride every ride at the county fair and makes a new friend. + + Auli'i Cravalho + Manny Jacinto + Gary Anthony Williams + + Animated + Children + + + TVG + + + + Miraculous: Tales of Ladybug and Cat Noir + Revolution + Chloe and Monarch are more powerful than ever; Ladybug and Cat Noir wonder about their powers; Marinette and Adrien's lives are about to change forever. + + Cristina Valenzuela + Bryce Papenbrook + Mela Lee + + Animated + Children + + + TVY7 + + + + Miraculous: Tales of Ladybug and Cat Noir + Representation + Marinette discovers a secret nothing could have prepared her for. + + Cristina Valenzuela + Bryce Papenbrook + Mela Lee + + Animated + Children + + + TVY7 + + + + Miraculous: Tales of Ladybug and Cat Noir + Conformation (The Final Day - Part 1) + Monarch places the final pieces of his villainous plan on his chessboard of evil. + + Cristina Valenzuela + Bryce Papenbrook + Mela Lee + + Animated + Children + + + TVY7 + + + + Miraculous: Tales of Ladybug and Cat Noir + Re-creation (The Final Day - Part 2) + Monarch's ultimate plan is in motion; the world descends into chaos and the supervillain traps Ladybug. + + Cristina Valenzuela + Bryce Papenbrook + Mela Lee + + Animated + Children + + + TVY7 + + + + The Villains of Valley View + Bad Influence + Feeling overwhelmed by the pressures of being a superhero, Starling threatens to quit; Amy's helpful advice backfires. + + Isabella Pappas + Lucy Davis + James Patrick Stuart + + Sitcom + Children + + + TVY7 + + + + The Villains of Valley View + A Tale of Two Havocs + Havoc and Flashform go to Centropolis to stop an imposter from stealing Havoc's identity. Eva and Vic manipulate Hartley's charity auction. + + Isabella Pappas + Lucy Davis + James Patrick Stuart + + Sitcom + Children + + + TVY7 + + + + The Villains of Valley View + The Return + When a supervillain threatens the Maddens, they join together to fight; an unlikely ally comes to their rescue. + + Isabella Pappas + Lucy Davis + James Patrick Stuart + + Sitcom + Children + + + TVY7 + + + + Kiff + Hat; Lost and Found + Kiff loses a hat that gave Barry a confidence boost and attempts to recover it; Kiff and Barry try to return a lost journal without exposing its deeply personal entries. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Kiff + Two Truths and a Bunny; Nicknames + Kiff's plan to infiltrate a group sleepover and learn its secrets all depends on Barry's ability to lie; Kiff and Barry try to get nicknamed by a local movie theater ticket taker. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Kiff + The Sound of Helen; Weekly Grocery Shop + Table Town School puts on its first musical, but it's all about Helen; the Chatterleys encounter obstacles during their weekly grocery shopping trip. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Kiff + Friendship in the Time of Cheese Caves; Soup Opera + Kiff attempts to help Candle and Trevor with their new friendship; Miss Deer Teacher goes to Kiff for dating advice, not knowing Kiff has been getting her tips from a soap opera. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Big City Greens + Parade Day; DIY Guys + Cricket leaves Gloria to work the coffee shop alone while he enjoys the parade on his break; Bill uses a trip to the hardware store to teach Remy a lesson in self-reliance. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Gargoyle Gals; Supermarket Scandal + To impress her new friend, Tilly claims she saw stone gargoyles come to life; Cricket makes a deal to sell Bill's produce to a major grocery chain. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Barry Cuda; Suite Retreat + Cricket uses his first tip from working at Big Coffee to buy a singing toy fish; Gramma kicks the family out of the house for the day, so they stay in a hotel for the first time. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Family Legacy; Paint Misbehavin' + Gramma tells Cricket and Tilly that there's treasure buried on their property; Cricket adds his own doodles to Gloria's abstract paintings. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Rated Cricket; Homeshare Hoedown + On the trip to Big City movie multiplex, Cricket thinks he's too mature for a kids' movie, so he sneaks into a grown-up movie; Cricket registers his house on a home share website. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + The Wonderful Autumn of Mickey Mouse + In a leafy hamlet, Mickey Mouse is determined to undo the failures of his family's past after inheriting a rundown pumpkin farm from a distant relative and the epic legend of its futility. + + Chris Diamantopoulos + Kaitlyn Robrock + Tony Anselmo + + Specials + Animated + + + TVG + + + + Chibiverse + The Chibi Quiz Challenge + Following the adventures of characters from various Disney shows. + Animated + Children + + + TVG + + + + Hamster & Gretel + Empower Failure; Oakey Dokey + Hamster and Gretel get superpowers from aliens while Kevin grapples with being superhero-adjacent; Kevin and Gretel disagree over how to stop a meteor. + + Meli Povenmire + Michael Cimino + Beck Bennett + + Animated + Children + + + TVY + + + + Hamster & Gretel + Recipe for Disaster; Math Punch + Kevin and Gretel have to rescue Family Dinner Night; Gretel faces off against a lightning-powered cowboy as Dave struggles to get Carolina the perfect anniversary gift. + + Meli Povenmire + Michael Cimino + Beck Bennett + + Animated + Children + + + TVG + + + + Big City Greens + Cricket's Shoes; Feud Fight + When Cricket gets sick, his family steps in to fulfill his commitments for the day; the Green family's nemesis Chip Whistler shows up at the farmers' market in an attempt to steal business from them. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Breaking News; Cyberbullies + Cricket invites the local news to see the huge watermelon Bill grew; Cricket stands up to the cyberbullying of three online gamers known as the Cyber Knights. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Tilly Tour; Dinner Party + Tilly takes Gramma out to be a tourist for a day; Cricket and Remy arrange a dinner party for everyone to get to know each other. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Chibiverse + Pizza vs. Fireworks + Molly McGee and Tilly Green bring adventures from all across the Chibiverse; Scratch and Cricket Green argue over whether to end their show with a pizza party or with fireworks. + Animated + Children + + + TVG + + + + Bluey + Ice Cream / Bad Mood / Double Babysitter + Bluey and Bingo want a lick of each other's ice cream; Bingo is playing Bad Mood with Dad; two babysitters turn up to look after Bluey and Bingo. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + The Quiet Game / Postman / Cafe + Bluey and Bingo play The Quiet Game; when Mum and Dad have a disagreement, Bluey makes Dad write a love letter to Mum; in the park, Bluey meets a new playmate, Winnie. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Big City Greens + Mages and Mazes; Okay Karaoke + When the kids play a role-playing game at Remy's, his rules lead to conflict; when the Greens go out for karaoke, Tilly struggles to decide what genre of music will best express her true self. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Date Night; The Room + Bill chaperones Cricket and Gabriella's first date; a disagreement between Cricket and Tilly turns into reality-TV-like entertainment for Gloria and Gramma. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Bleeped; Sellouts + Cricket teaches the local kids a new curse word, threatening to ruin the community center's choir performance; the Greens try new methods to improve sales at their produce stand. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Fast Foodie; Spaghetti Theory + Cricket tries to prove to Bill he can eat fast food for every meal; Tilly and Cricket debate whether the lives of people in Big City are connected. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Ding Dongers; Animation Abomination + Remy uses Cricket's antics to gain views and likes on a new video-sharing app; Gloria gives Tilly and Cricket a tour of the animation studio where she's interning. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + The Van; Bat Girl + Gramma and Cricket fume over an unsightly van parked in front of their house; Nancy joins Cricket and Tilly's Little League team to get back at their unsportsmanlike rivals. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Kiff + Everyday I'm Riddlin' Riddlin'; Life on the Outside + Kiff and Barry help a local bridge troll but discover he has some tricky riddles; Kiff and Barry get detention and meet a ragtag team of students who help them plot an escape. + + Kimiko Glenn + Michael Croner + Rhys Darby + + Animated + Comedy + + + + Kiff + Weird Delivery; No Dad Ideas + Kiff and Barry want to go home, but get sucked into a strange adventure; when he realizes Kiff doesn't know what his job is, Martin is determined to prove his inventing prowess. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Miraculous: Tales of Ladybug and Cat Noir + The Puppeteer 2 + Manon becomes The Puppeteer again; she is determined to have fun like never before in a unique playground: the Grévin wax museum; Ladybug and Cat Noir cannot stand still if they want to stop her. + + Cristina Valenzuela + Bryce Papenbrook + Mela Lee + + Animated + Children + + + TVY7 + + + + Miraculous: Tales of Ladybug and Cat Noir + Cat Blanc + When Marinette makes a serious mistake, she has to face the consequences by fighting the last person she ever imagined would get akumatized. + + Cristina Valenzuela + Bryce Papenbrook + Mela Lee + + Animated + Children + + + TVY7 + + + + Star Wars: Young Jedi Adventures + Tree Troubles; Big Brother's Bounty + Nubs and the Jedi protect his favorite tree; the Jedi help a young bounty hunter find her brother. + + Jamaal Avery Jr. + Juliet Donenfeld + Dee Bradley Baker + + Animated + Children + + + TVY + + + + Bluey + The Kids; Butterflies; The Creek + Bluey decides to be Mum during a game of. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Horsey Ride; Hotel; Bike + The kids stage a horsey wedding; Bluey, Bingo and Dad play a game of Hotel; Bluey struggles to ride her bike and won't give up. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Musical Statues + At the end of a long day, Bluey and her family are out of sync and sorts; Mum gets everyone to play musical statues. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Shops; The Pool; Blue Mountains + Bluey plays a game of. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Pupstruction + Itts Bitty Barn Build; A Colorful Job + Pupstruction must construct its tiniest and most delicate build yet; Pupstruction builds a house for a chameleon that can't seem to decide what color it should be. + + Yonas Kibreab + Carson Minniear + Scarlett Kate Ferguson + + Animated + Children + + + TVG + + + + Mickey Mouse Hot Diggity-Dog Tales + Mickey's Bow-Wow Birthday! + Pluto is trying his best to make Mickey's birthday great, but everything seems to go wrong. + Animated + Children + + + TVY + + + + Marvel's Spidey and His Amazing Friends + Hide & Seek; Whale of a Time + Team Spidey and The Thing must stop Gobby from using invisibility to cause trouble in the city; Team Spidey must stop Doc Ock's mechanical whale from disrupting the real whales. + + Benjamin Valic + Lily Sanfelippo + Jakari Fraser + + Animated + Children + + + TVY + + + + Bluey + Dunny / Duck Cake / Handstand + Bingo is desperate to show off her handstand skills. Bluey turns a tree stump into a game of Helicopter. Chloe tries to teach her dad to play Bluey's game. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Family Meeting; Barky Boats; Smoochy Kiss + Dad is accused of fluffing in Bluey's face; Bluey and Mackenzie play with two older friends; Bluey and Bingo want Dad all to themselves. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Musical Statues + At the end of a long day, Bluey and her family are out of sync and sorts; Mum gets everyone to play musical statues. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Mickey Mouse Funhouse + For Pete's Sake!; Minnie Golf + The gang helps Pete the Mighty try to sculpt a statue of himself out of a mountainside, only to be thwarted by Careabelle's magic; Minnie and Martian Minnie play mini golf. + + Bret Iwan + Kaitlyn Robrock + Tony Anselmo + + Animated + Children + + + TVG + + + + SuperKitties + Lab Rat Lift-Off; Rockin' Rockhound + Lab Rat tries to stop Ginny's hero, Polaris the Astro-Cat, from being the first cat on the moon; the SuperKitties must catch Zsa-Zsa when she steals a special gem from the museum. + + Emma Berman + Cruz Flateau + JeCobi Swain + + Animated + Children + + + TVY + + + + Bluey + Wagon Ride; Taxi; The Beach + Bluey is upset when Dad keeps stopping on their walk; Bluey is Dad's only hope to make it to the airport; Bluey takes a solo adventure on the beach. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Mr Monkeyjocks / Typewriter / Burger Shop + Dad thinks Bluey and Bingo have too many toys; Bluey and friends get ambushed by the Terriers; Bluey and Bingo play a game of Burger Shop with Dad. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Firebuds + Hello, Halo! / What's Up, Woodpecker? + The Firebuds invite the new kid-helicopter in town for a day of rescue drills. The Firebuds hike through the woods in search of a rare woodpecker and save its habitat. + + Declan Whaley + Terrence Little Gardenhigh + Vivian Vencer + + Animated + Children + + + TVY + + + + Bluey + Musical Statues + At the end of a long day, Bluey and her family are out of sync and sorts; Mum gets everyone to play musical statues. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Star Wars: Young Jedi Adventures + The Young Jedi; Yoda's Mission + The Jedi arrive on Tenoo; Yoda has a mission for Kai. + + Jamaal Avery Jr. + Juliet Donenfeld + Dee Bradley Baker + + Animated + Children + + + TVY + + + + Bluey + Hammerbarn; Feather Wand; Dance Mode + The Heelers take a trip to Hammerbarn; Bingo has an idea for a new game; Dad eats Bingo's last chip. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Squash; Charades; Bingo + Bluey and Bigno help Uncle Stripe and Bandit play squash and spend the day with Nana; Bingo has to learn to play alone. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + The Ghost and Molly McGee + All Shark No Bite; Nin-Dependence + With Mom and Dad out of the house, Molly, Darryl and Scratch watch a scary movie; when Grandma Nin is no longer able to live on her own, Molly and Sharon take care of her. + + Ashly Burch + Dana Snyder + Jordan Klepper + + Animated + Children + + + TVY7 + + + + Kiff + Friendiversary; Totally Table Town + Gif swap; Kiff and the crew get lost. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Big City Greens + Long Goodbye + When the Greens return Gramma and Remy to Big City, they are determined to delay their goodbyes for as long as possible. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Truck Stopped; Jingled + Tilly and Cricket wrestle with decision making at a truck stop between Big City and the country; Tilly rises through the ranks as a Big City jingle writer. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Stand-Up Bill; Green Trial + Cricket Green, a mischievous but optimistic country boy, moves to the big city with his family. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Hamster & Gretel + For Whom the Belle Trolls; An Arthouse Divided + A social media influencer threatens to destroy Hamster and Gretel's reputation; things go terribly wrong at a movie premiere. + + Meli Povenmire + Michael Cimino + Beck Bennett + + Animated + Children + + + TVG + + + + Miraculous: Tales of Ladybug and Cat Noir + Deflagration (The Kwamis' Choice - Part 2) + Sorry to see their holders unlucky in love, Tikki and Plagg have made a drastic choice which is changing many a thing in Paris for better and for worse. + + Cristina Valenzuela + Bryce Papenbrook + Mela Lee + + Animated + Children + + + TVY7 + + + + Kiff + Brunch DJ; Career Day + Kiff and Barry investigate where Barry's brother goes when he skips class; Kiff and Barry get summer jobs at the city hall to help the citizens of Table Town in any way they can. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Kiff + The Five Pigeons of the Acapellapocalypse; Leave a LittleJuice + Kiff unleashes five forces of chaos; Helen is the only one who can help; Kiff needs to have a difficult discussion with Barry about finishing Martin's orange juice. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Kiff + Kiff's thirst for life takes her on countless adventures through their city alongside her best friend, Barry. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Big City Greens + The Move + The Greens struggle with some big changes. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Country Side; Junk Mountain + While Cricket shows Remy the fun of country life, Tilly seeks new sleeping arrangements; Cricket tries to win back his old country friend, Hector. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Farmer Remy; Homeward Hound + Remy attempts to find his. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Bunk'd: Learning the Ropes + Learning the Ropes + Lou buys a ranch in Wyoming and starts a new camp. + + Miranda May + Trevor Tordjman + Israel Johnson + + Sitcom + Children + + + TVG + + + + Bunk'd: Learning the Ropes + Never a Dull Moo-ment + Parker learns about the camp's history. + + Miranda May + Trevor Tordjman + Israel Johnson + + Sitcom + Children + + + TVG + + + + Bunk'd: Learning the Ropes + Where the Buffalo Betties Roam + Lou gives away the Jade Compass and must get it back. + + Miranda May + Trevor Tordjman + Israel Johnson + + Sitcom + Children + + + TVG + + + + Miraculous: Tales of Ladybug and Cat Noir + Backwarder + Ladybug and Cat Noir confront a friend of Master Fu. + + Cristina Valenzuela + Bryce Papenbrook + Mela Lee + + Animated + Children + + + TVY7 + + + + Miraculous: Tales of Ladybug and Cat Noir + Reflekdoll + Juleka becomes Reflekta again; the supervillain is not alone and Marinette and Adrien are having trouble with their Miraculous; the heroes must stop Reflekta and her fearsome ally. + + Cristina Valenzuela + Bryce Papenbrook + Mela Lee + + Animated + Children + + + TVY7 + + + + The Villains of Valley View + The Villain Experience + Feeling bad that Colby has never had a chance to be a villain like they did, Amy and Jake set out to create a villain experience for him. + + Isabella Pappas + Lucy Davis + James Patrick Stuart + + Sitcom + Children + + + TVY7 + + + + The Villains of Valley View + ColossaCon! + When Amy finds out that her biggest nemesis, superhero Starling, plans to appear at the upcoming superhero convention, she sets out to get revenge. + + Isabella Pappas + Lucy Davis + James Patrick Stuart + + Sitcom + Children + + + TVY7 + + + + Bluey + Muffin Cone; Circus; Road Trip + The Heelers go on a road trip! Mum bans the girls from saying the word 'dunny.' Bluey wants to help Dad make Bingo's birthday cake. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Dunny / Duck Cake / Handstand + Bingo is desperate to show off her handstand skills. Bluey turns a tree stump into a game of Helicopter. Chloe tries to teach her dad to play Bluey's game. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Big City Greens + Cousin Jilly; Gloria's Cafe + Tilly revives Cousin Jilly, an alter-ego she created to entertain Cricket when they were younger; Gloria opens a secret café in the former Big Coffee space without permission. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Boss Life; Papaganda + Bill forces his family to embrace a. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Little Buddy; Zen Garden + Cricket mentors a wild child, and Tilly develops a cult following; Nancy tries to prove herself on the farm; Bill struggles to relax at a fancy spa with Gramma. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + No Service; Takened + Cricket is halted at a convenience store due to its No Shoes, No Service policy; when Remy throws Vasquez a surprise party, Bill's secret-keeping is put to the test. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Green Greens; Truce Bomb + Tilly and Bill set off on an epic journey to recycle a fluorescent light bulb at an e-waste center; Tilly tries to solve a long-standing feud between Gramma and Mr. Grigorian. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Trivia Night; Big Trouble + Cricket wants to prove to his family that he isn't dumb during trivia night at the café; Tilly gets punished for the first time and decides to break bad. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Kiff + Faculty Lounge / Personal Assistant + Kiff is determined to see the inside of the faculty lounge, but once inside struggles to escape; Kiff tries to fail at being Helen's personal assistant so she can retake her career test. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Kiff + I Like to Move It; Hive Got an Idea + Kiff and Barry agree to move a piano for Helen in exchange for a wish, but can't agree on the wish; Kiff shows a new kid around school but can't stop his family from interfering. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Miraculous: Tales of Ladybug and Cat Noir + Felix + Adrien's cousin Felix sows discord between Adrien and his friends, Alya, Rose and Juleka get akumatized into the Punishers Trio; Ladybug and Cat Noir must stop the three villains and reason with Felix. + + Cristina Valenzuela + Bryce Papenbrook + Mela Lee + + Animated + Children + + + TVY7 + + + + Miraculous: Tales of Ladybug and Cat Noir + Ladybug + Lila manipulates all Marinette's close ones, who turn against her, but an even bigger problem awaits Marinette; she is going to have to face a sentimonster that has taken the appearance of Ladybug. + + Cristina Valenzuela + Bryce Papenbrook + Mela Lee + + Animated + Children + + + TVY7 + + + + Star Wars: Young Jedi Adventures + The Young Jedi; Yoda's Mission + The Jedi arrive on Tenoo; Yoda has a mission for Kai. + + Jamaal Avery Jr. + Juliet Donenfeld + Dee Bradley Baker + + Animated + Children + + + TVY + + + + Bluey + Promises; Magic; Mini Bluey + Bluey keeps breaking her promises; Bluey teaches Bingo how to use magic; Bluey teaches Bingo to be more like him. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Trampoline; The Dump; Zoo + Dad plays trampoline games with Bluey and Bingo; Dad is planning on throwing out Bluey's old drawings; Bingo causes chaos at Bluey's backyard zoo. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Stories + Indy thinks she's no good because her model horse looks like a cow, but Calypso encourages her not to give up, so she tries to fix it with a little help from Winton. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Unicorse; Born Yesterday; Curry Quest + The adventures of a Blue Heeler puppy, Bluey, who lives with her mother, father and sister; her energy and lovable spirit gets her into all kinds of funny and unpredictable situations. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Pupstruction + The Mayor Mover; Bobby's Balloon Blunder + When Lloyd goes out of town, Pupstruction builds a cart with wheels to help move the mayor around; Lickety Split builds a hot air balloon but gets stuck and asks the crew for help. + + Yonas Kibreab + Carson Minniear + Scarlett Kate Ferguson + + Animated + Children + + + TVY + + + + Marvel's Spidey and His Amazing Friends + Go With the Lava Flow; An Un-bee-lievable Rosh Hashanah + Team Spidey rescues wildlife after Doc Ock triggers a volcanic eruption; when Gobby steals all the bees, Team Spidey and The Thing must get them back and save Rosh Hashanah. + + Benjamin Valic + Lily Sanfelippo + Jakari Fraser + + Animated + Children + + + TVY + + + + Bluey + Chest; Omelette; Pass the Parcel + Dad tries to teach Bluey how to play chess, but Mom thinks she is still too young; Bingo helps Mom make an omelette for Dad's birthday; Lucky's Dad is outraged that modern Pass the Parcel has a present in every layer. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Hammerbarn; Feather Wand; Dance Mode + The Heelers take a trip to Hammerbarn; Bingo has an idea for a new game; Dad eats Bingo's last chip. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Stories + Indy thinks she's no good because her model horse looks like a cow, but Calypso encourages her not to give up, so she tries to fix it with a little help from Winton. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Mickey Mouse Funhouse + No Thrills, Please!; Space Doggies + The gang flies the Floaty Coaster to Sunny Gulch to give rides, but Pete and Horace have different feelings about roller coasters; Pluto and Teddy have a playdate with Zoop Bloop. + + Bret Iwan + Kaitlyn Robrock + Tony Anselmo + + Animated + Children + + + TVG + + + + SuperKitties + Fruit Loot; Buddy Wanna-Be + The SuperKitties stop Zsa-Zsa from stealing all the oranges in Kittydale; Bitsy wants to be strong like Buddy but learns she's pawesome just the way she is. + + Emma Berman + Cruz Flateau + JeCobi Swain + + Animated + Children + + + TVY + + + + Bluey + Squash; Charades; Bingo + Bluey and Bigno help Uncle Stripe and Bandit play squash and spend the day with Nana; Bingo has to learn to play alone. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + The Sleepover; Hide and Seek; Camping + Bluey and Bingo plan to stay up late at a sleepover; Bluey needs to focus during a game of hide-and-seek; Bluey makes a new friend while camping. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Firebuds + Sugar Crash / The Cut N' Chrome Caper + The Firebuds must stop a candy factory heist. The Firebuds must team up with Iggy and Rod to catch a thief at the Cut N' Chrome shop. + + Declan Whaley + Terrence Little Gardenhigh + Vivian Vencer + + Animated + Children + + + TVY + + + + Bluey + Stories + Indy thinks she's no good because her model horse looks like a cow, but Calypso encourages her not to give up, so she tries to fix it with a little help from Winton. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Star Wars: Young Jedi Adventures + Nash's Race Day; The Lost Jedi Ship + Nash competes in a race; young Jedi find a lost ship. + + Jamaal Avery Jr. + Juliet Donenfeld + Dee Bradley Baker + + Animated + Children + + + TVY + + + + Bluey + Sleepytime; Daddy Dropoff; Favorite Thing + The adventures of a Blue Heeler puppy, Bluey, who lives with her mother, father and sister; her energy and lovable spirit gets her into all kinds of funny and unpredictable situations. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Rug Island; Hairdressers; Sticky Gecko + The adventures of a Blue Heeler puppy, Bluey, who lives with her mother, father and sister; her energy and lovable spirit gets her into all kinds of funny and unpredictable situations. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Kiff + Principal Dance Socks + Kiff and her classmates from Table Town school go on a field trip to the aquarium. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Kiff + Hat; Lost and Found + Kiff loses a hat that gave Barry a confidence boost and attempts to recover it; Kiff and Barry try to return a lost journal without exposing its deeply personal entries. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Big City Greens + Bad Dad; Junk Junkie + Cricket and Tilly get to know their grandpa; Nancy scrambles to find him a job; desperate to ensure his family's future security, Bill becomes a hoarder. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Handshaken; Coffee Mates + After being mocked for his handshake, Cricket trains for a Western-style handshake duel; Gloria combines her work life and social life by hiring her friends as employees. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Iced; Chipped Off + Gramma butts heads with Nick when he crashes her special family hockey outing; Chip Whistler recounts what happened to him since. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Hamster & Gretel + The Litigator vs. The Luchador; Strawberry Fest Forever + Carolina's sister comes to visit; Kevin and Gretel infiltrate a wrestling match; Carolina and Gretel attend a festival. + + Meli Povenmire + Michael Cimino + Beck Bennett + + Animated + Children + + + TVG + + + + Miraculous: Tales of Ladybug and Cat Noir + Perfection + When Marinette's friends decide to help her get closer to Adrien, the whole gang finds out that one should always be clear with friends. + + Cristina Valenzuela + Bryce Papenbrook + Mela Lee + + Animated + Children + + + TVY7 + + + + Kiff + Kiff's Mix; Kiff's on a Plane + Kiff finally meets her mom's old college friends. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Kiff + Farley; Two for One Hot Dogs + While babysitting Barry's younger brother, Kiff accidentally stains his favorite stuffed toy. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Kiff + Kiff's thirst for life takes her on countless adventures through their city alongside her best friend, Barry. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Big City Greens + Pie Hard; Rat Tail + Brooke Dillman guest stars as diner owner Patti; Nancy tries to get Cricket to cut his new rat tail without admitting that she hates it. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Frilly Tilly; Montaged + Tilly makes changes to her country's coming-of-age ceremony, and Gramma wants none of it; Cricket fast-tracks his training for a rodeo and gets trapped in a never-ending montage. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Pizza Deliverance; Horse Girl + A pizza delivery girl from Big City must flee from a crazed country family; when Bill gets a horse for the day, Tilly must hide how much she secretly hates horses. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Bunk'd: Learning the Ropes + A Recipe for Disaster + A child genius asks Parker and Bill to help her learn to have fun; Destiny gets Winnie a drum set as an outlet for her energy; Lou and Jake set out to revitalize the food. + + Miranda May + Trevor Tordjman + Israel Johnson + + Sitcom + Children + + + TVG + + + + Bunk'd: Learning the Ropes + Back in the Saddle + Destiny, with Lou's help, competes in the Dusty Tush Rodeo Pageant; Parker, Winnie and Jake build a parade float; Bill and Noah get an announcing job at the rodeo. + + Miranda May + Trevor Tordjman + Israel Johnson + + Sitcom + Children + + + TVG + + + + The Villains of Valley View + Belts, Bulls & Superfans + When Eva turns Mother's Day into a gift-giving challenge with consequences, Amy tries to score her the best gift ever but is forced to resort to more villainous tactics to win. + + Isabella Pappas + Lucy Davis + James Patrick Stuart + + Sitcom + Children + + + TVY7 + + + + Miraculous: Tales of Ladybug and Cat Noir + Weredad + Ladybug must confront her own father who has been transformed into Weredad, a monstrous guard-dog-man who wants to lock Marinette away from the world for her own protection. + + Cristina Valenzuela + Bryce Papenbrook + Mela Lee + + Animated + Children + + + TVY7 + + + + Miraculous: Tales of Ladybug and Cat Noir + Silencer + Luka gets akumatized into Silencer, and steals people's voices to get revenge on a music producer. + + Cristina Valenzuela + Bryce Papenbrook + Mela Lee + + Animated + Children + + + TVY7 + + + + Jessie + New York, New Nanny + Jessie accepts a job as a nanny and moves in with the Ross family. + + Debby Ryan + Kevin Chamberlin + Peyton List + + Sitcom + Children + + + TVG + + + + Jessie + Used Karma + Ravi is fed up with Luke and Zuri's pranks, so he explains to them about karma, and how their bad behavior will rebound on them. When bad things start happening to Luke he thinks it's karma, until Ravi admits to Jessie he is responsible. + + Debby Ryan + Kevin Chamberlin + Peyton List + + Sitcom + Children + + + TVG + + + + Bluey + Helicopter; Octopus; Baby Race + Bluey and her friends play a game of helicopter with a tree stump; Chloe tries to teach her dad to improvise and play Bluey's game of Octopus at home; Mum reminisces about Bluey and Judo as babies, where it was a race to see who would walk first. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Mr Monkeyjocks / Typewriter / Burger Shop + Dad thinks Bluey and Bingo have too many toys; Bluey and friends get ambushed by the Terriers; Bluey and Bingo play a game of Burger Shop with Dad. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Big City Greens + DependaBill; The Delivernator + Bill goes out of his way to get on a neighbor's good side; Cricket must prove himself worthy to avoid losing his delivery job to a robot. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Listen Up!; Big Picture + Cricket loses his hearing and keeps it a secret from Bill; the Greens go to a hipster drive-in movie, where Gloria proves her life is fun by taking the perfect SnapAGram photo. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Rembo; Dirt Jar + Remy is determined to be a martial arts warrior after freezing in the face of danger; Cricket's missing dirt jar prompts the story of when the Greens left their country farm. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + The Move + The Greens struggle with some big changes. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Country Side; Junk Mountain + While Cricket shows Remy the fun of country life, Tilly seeks new sleeping arrangements; Cricket tries to win back his old country friend, Hector. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Farmer Remy; Homeward Hound + Remy attempts to find his. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Kiff + You Can't Handle the Tooth; Blooper Quest + Kiff has a lot to do today, but brushing her tooth is not on the list; Kiff, Barry and the crew set out to make a movie so they can have a fun blooper reel, but blooping is hard. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Kiff + When You Mow You Mow; Harry's Maturity Crisis + Reggie is the first kid in Table Town to mow his own lawn, and Kiff wants to be the second; when Harry runs away, Barry and Kiff do anything they can to bring him back. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Miraculous: Tales of Ladybug and Cat Noir + Heart Hunter (The Battle of the Miraculous - Part 1) + The Bourgeois couple gets akumatized; Ladybug and Cat Noir face the Bourgeois couple; Now Hearthunter, a Cerberus with two heads constantly fighting each other, they devour all the love in Paris. Ladybug seeks the help of Master Fu. + + Cristina Valenzuela + Bryce Papenbrook + Mela Lee + + Animated + Children + + + TVY7 + + + + Miraculous: Tales of Ladybug and Cat Noir + Miracle Queen (The Battle of the Miraculous - Part 2) + Hawk Moth akumatizes Chloe into Miracle Queen to help her take control of all the Miraculous wearers; Ladybug and Cat Noir must escape this fatal plan. + + Cristina Valenzuela + Bryce Papenbrook + Mela Lee + + Animated + Children + + + TVY7 + + + + Star Wars: Young Jedi Adventures + Nash's Race Day; The Lost Jedi Ship + Nash competes in a race; young Jedi find a lost ship. + + Jamaal Avery Jr. + Juliet Donenfeld + Dee Bradley Baker + + Animated + Children + + + TVY + + + + Bluey + Helicopter; Octopus; Baby Race + Bluey and her friends play a game of helicopter with a tree stump; Chloe tries to teach her dad to improvise and play Bluey's game of Octopus at home; Mum reminisces about Bluey and Judo as babies, where it was a race to see who would walk first. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Fairies; Work; Bumpy and the Wise Old Wolfhound + Invisible mischievous fairies infest the house; Bluey, Bingo and Dad play. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Puppets + Bluey and Bingo teach Unicorse proper manners so he can ask Mum on a date; things go awry when Unicorse eats a tick. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Bedroom; Perfect; Obstacle Course + Bluey gets her own room; Bluey wants her Father's Day card to be perfect; Mum sets up a backyard obstacle course just for fun. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Pupstruction + Amusement Park-ing; The Dino-Dog Dig + Pupstruction builds a parking lot for Petsburg Pier's Canine Coaster; Pupstruction unearths a dinosaur skeleton and displays it for the citizens of Petsburg. + + Yonas Kibreab + Carson Minniear + Scarlett Kate Ferguson + + Animated + Children + + + TVG + + + + Mickey Mouse Hot Diggity-Dog Tales + What Goes Pup, Must Come Down! + When Pluto and Figaro float away in a hot air balloon, Mickey and Minnie take to the skies to save their beloved pets. + Animated + Children + + + TVY + + + + Marvel's Spidey and His Amazing Friends + Rollin Rhino; The Octopus and the Kitty Cat + Rhino and Green Goblin plot to ruin a roller-skating race; Black Cat and Doc Ock make an unstoppable team as they commit a lot of trouble. + + Benjamin Valic + Lily Sanfelippo + Jakari Fraser + + Animated + Children + + + TVY + + + + Bluey + Backpackers; The Adventure; Copycat + Bluey and Bingo are worn as Mum and Dad's backpacks; Bluey and Chloe embark on a quest to save the kingdom; while playing copycat, Bluey finds a hurt budgie. + Animated + Children + + + TVY + + + + Bluey + Grannies; Yoga Ball; Calypso + Bluey and Bingo call Nana to ask one major question; Bingo finds her big girl bark; teacher Calypso has her hands full in the classroom. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Puppets + Bluey and Bingo teach Unicorse proper manners so he can ask Mum on a date; things go awry when Unicorse eats a tick. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Mickey Mouse Funhouse + Clarabelle's Pie Day; Minnie's New Puppy + Clarabelle is overwhelmed by the things she needs to do during Pie Day; Minnie adopts a new puppy and isn't prepared to train her. + + Bret Iwan + Kaitlyn Robrock + Tony Anselmo + + Animated + Children + + + TVY + + + + SuperKitties + Amara's Tiara; Furball Blooper + The SuperKitties need to find out who is stealing the sparkly things in town, including Amara's tiara; when Buddy gets a new super suit, he has to learn to use its new powers. + + Emma Berman + Cruz Flateau + JeCobi Swain + + Animated + Children + + + TVY + + + + Bluey + Pirates; Chickenrat; Neighbours + Bluey and Bingo play pirates on the hammock swing; Bingo's favorite toy goes missing; Bluey needs advice on dealing with noisy neighbors. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + The Doctor; The Claw; Markets + Honey's trip to Dr. Bingo keeps getting interrupted; Mum and Dad create their own Magic Claw machine; Bluey takes her tooth fairy money to the market. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Firebuds + Mayhem at the Museum; Wrong Way Rescue + Wiley Riley crashes the Firebuds' science museum sleepover to steal a rare meteorite; the Firebuds must save a young car stuck in reverse. + + Declan Whaley + Terrence Little Gardenhigh + Vivian Vencer + + Animated + Children + + + TVY + + + + Bluey + Puppets + Bluey and Bingo teach Unicorse proper manners so he can ask Mum on a date; things go awry when Unicorse eats a tick. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Star Wars: Young Jedi Adventures + Charhound Chase; Creature Comforts + Kai helps Bell find his runaway charhound; Lys gets attached to a lost wild creature. + + Jamaal Avery Jr. + Juliet Donenfeld + Dee Bradley Baker + + Animated + Children + + + TVY + + + + Bluey + Flat Pack; Queens; Train + Bluey and Bingo construct a mini-civilization; Mum is crowned Queen with the girls as her butlers; Bluey and Bingo commute on the Dad-Train. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Army / Fancy Restaurant / Stumpfest + Jack and Rusty play Army at school; the girls set up a fancy restaurant for Mum and Dad; Bluey, Bingo and Muffin strike a deal with the dads. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Kiff + Two Truths and a Bunny; Nicknames + Kiff's plan to infiltrate a group sleepover and learn its secrets all depends on Barry's ability to lie; Kiff and Barry try to get nicknamed by a local movie theater ticket taker. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Kiff + The Sound of Helen; Weekly Grocery Shop + Table Town School puts on its first musical, but it's all about Helen; the Chatterleys encounter obstacles during their weekly grocery shopping trip. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Big City Greens + Space Chicken; Steak Night + To impress his new neighbors, Cricket attempts to launch a chicken into space; the Greens are excited to continue their traditional monthly steak dinner, but Cricket accidentally loses the steaks on the subway. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Cricket Versus; Blue Tater + Cricket must wrestle a wild animal in order to prove himself worthy of the family name; when Cricket persuades Bill to convert his pickup into a french fry food truck, he discovers a mysterious blue potato that Gramma says is cursed with bad luck. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Pupstruction + Itts Bitty Barn Build; A Colorful Job + Pupstruction must construct its tiniest and most delicate build yet; Pupstruction builds a house for a chameleon that can't seem to decide what color it should be. + + Yonas Kibreab + Carson Minniear + Scarlett Kate Ferguson + + Animated + Children + + + TVG + + + + Firebuds + Hello, Halo! / What's Up, Woodpecker? + The Firebuds invite the new kid-helicopter in town for a day of rescue drills. The Firebuds hike through the woods in search of a rare woodpecker and save its habitat. + + Declan Whaley + Terrence Little Gardenhigh + Vivian Vencer + + Animated + Children + + + TVY + + + + Bolt + Thinking he has real superpowers, the canine star (John Travolta) of a hit TV show travels cross-country from Hollywood to New York to rescue his owner and co-star (Miley Cyrus). + + John Travolta + Miley Cyrus + Susie Essman + + 2008 + Movies + Animated + + + TVG + + + 3 + + + + Star Wars: Young Jedi Adventures + Tree Troubles; Big Brother's Bounty + Nubs and the Jedi protect his favorite tree; the Jedi help a young bounty hunter find her brother. + + Jamaal Avery Jr. + Juliet Donenfeld + Dee Bradley Baker + + Animated + Children + + + TVY + + + + SuperKitties + Sparks vs. Sparks; Poochy Playdate + When animals accuse Sparks of stealing, the SuperKitties must find the real thief; a jealous Mr. Puppypaws traps the other dogs to keep them away from the park. + + Emma Berman + Cruz Flateau + JeCobi Swain + + Animated + Children + + + TVY + + + + SuperKitties + Bird Bop; Pickle Problem + The SuperKitties stop ZsaZsa from making everyone watch her music video; when Pickles keeps lying, the SuperKitties don't believe him when he sees a Cat Burglar stealing. + + Emma Berman + Cruz Flateau + JeCobi Swain + + Animated + Children + + + TVY + + + + Bluey + The Quiet Game / Postman / Cafe + Bluey and Bingo play The Quiet Game; when Mum and Dad have a disagreement, Bluey makes Dad write a love letter to Mum; in the park, Bluey meets a new playmate, Winnie. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Faceytalk; Ragdoll; Fairytale + Bluey and Bingo love to video chat; Dad agrees to buy ice cream; Dad tells a real-life fairy tale. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + PJ Masks Power Heroes + Pirate Ice Storm / Lilyfay + Pirate Robot evades IceCub; Fairy Lilyfay is rescued. + Animated + Children + + + TVG + + + + PJ Masks Power Heroes + Gloop the Third / Gloop the Third Part II + Newton wants to be a space expert; when the team gets glooped by Gloop the Third, only Newton can stop him, but to do so, he has to take himself less seriously. + Animated + Children + + + TVG + + + + Bluey + Mr Monkeyjocks / Typewriter / Burger Shop + Dad thinks Bluey and Bingo have too many toys; Bluey and friends get ambushed by the Terriers; Bluey and Bingo play a game of Burger Shop with Dad. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Mr Monkeyjocks / Typewriter / Burger Shop + Dad thinks Bluey and Bingo have too many toys; Bluey and friends get ambushed by the Terriers; Bluey and Bingo play a game of Burger Shop with Dad. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Sleepytime; Daddy Dropoff; Favorite Thing + The adventures of a Blue Heeler puppy, Bluey, who lives with her mother, father and sister; her energy and lovable spirit gets her into all kinds of funny and unpredictable situations. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Pupstruction + The Mayor Mover; Bobby's Balloon Blunder + When Lloyd goes out of town, Pupstruction builds a cart with wheels to help move the mayor around; Lickety Split builds a hot air balloon but gets stuck and asks the crew for help. + + Yonas Kibreab + Carson Minniear + Scarlett Kate Ferguson + + Animated + Children + + + TVY + + + + Mickey Mouse Funhouse + 3:10 to Rocky Road / Please and Thank You + To help them find out if dragons are good or bad, Funny takes Mickey, Minnie, and their friends to the Kingdom of Majestica, where they are transformed into knights, knaves, and princesses. + + Bret Iwan + Kaitlyn Robrock + Tony Anselmo + + Animated + Children + + + TVG + + + + Mickey Mouse Funhouse + King Ludwig's Day Off; No Horsing Around + King Ludwig spends the day at the Funhouse, so he can do things all by himself; Minnie and Daisy have new horses for a show; Daisy learns to take care of her horse. + + Bret Iwan + Kaitlyn Robrock + Tony Anselmo + + Animated + Children + + + TVG + + + + Firebuds + Sugar Crash / The Cut N' Chrome Caper + The Firebuds must stop a candy factory heist. The Firebuds must team up with Iggy and Rod to catch a thief at the Cut N' Chrome shop. + + Declan Whaley + Terrence Little Gardenhigh + Vivian Vencer + + Animated + Children + + + TVY + + + + Marvel's Spidey and His Amazing Friends + Rhinoctopus; A Pumpkin Problem + When the team stops Ock's heist, she throws away her tentacle suit in frustration and Rhino takes her place; Spidey is sidetracked when his prize pumpkin becomes a threat. + + Benjamin Valic + Lily Sanfelippo + Jakari Fraser + + Animated + Children + + + TVY + + + + Star Wars: Young Jedi Adventures + The Ganguls; Bad Eggs + Nash's Jedi friends set out to find her missing speeder; Hap's kitchen is overrun by creatures. + + Jamaal Avery Jr. + Juliet Donenfeld + Dee Bradley Baker + + Animated + Children + + + TVY + + + + Bluey + Muffin Cone; Circus; Road Trip + The Heelers go on a road trip! Mum bans the girls from saying the word 'dunny.' Bluey wants to help Dad make Bingo's birthday cake. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Pirates; Chickenrat; Neighbours + Bluey and Bingo play pirates on the hammock swing; Bingo's favorite toy goes missing; Bluey needs advice on dealing with noisy neighbors. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + The Weekend; BBQ; Fruitbat + Bingo gets upset when Dad is too distracted to notice a walking leaf; Bingo makes the world's best side salad; Bluey dreams about being a nocturnal fruit bat. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + SuperKitties + Voice With No Choice; Brother Battle + The SuperKitties stop Zsa-Zsa from turning animals' voices into musical instruments; Sparks and Buddy accidentally hurt each other's feelings. + + Emma Berman + Cruz Flateau + JeCobi Swain + + Animated + Children + + + TVY + + + + Marvel's Spidey and His Amazing Friends + Tunnel Trouble; Mystery on Goblin Island + Electro steals the subway's electricity and the team uses its knowledge to stop her; Team Spidey must rescue Mr. Von Carnegie from Gobby and Rhino, who seek treasure. + + Benjamin Valic + Lily Sanfelippo + Jakari Fraser + + Animated + Children + + + TVY + + + + Marvel's Spidey and His Amazing Friends + Spidey Tidies Up; No Tomatoes Oh No! + Spidey and Iron Man must fix their new invention before Sandman turns Central Park into Sandman Park; Miles can't let Rhino steal the tomatoes his mom grew for the community dinner. + + Benjamin Valic + Lily Sanfelippo + Jakari Fraser + + Animated + Children + + + TVY + + + + Bluey + Backpackers; The Adventure; Copycat + Bluey and Bingo are worn as Mum and Dad's backpacks; Bluey and Chloe embark on a quest to save the kingdom; while playing copycat, Bluey finds a hurt budgie. + Animated + Children + + + TVY + + + + Star Wars: Young Jedi Adventures + The Princess and the Jedi; Kai's Bad Day + Nash and the young Jedi transport a princess; Kai's bad day worsens when a simple mission goes awry. + + Jamaal Avery Jr. + Juliet Donenfeld + Dee Bradley Baker + + Animated + Children + + + TVY + + + + Bluey + School Friends + Bluey has fun and plays various games with her school friends. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Dino Ranch + Tinhorn Trouble; Family Comes First + When the Tinhorns trick the Dino Ranchers, Min proves that no matter the circumstances, everyone should always do the right thing and help; Pitted against the Tinhorns on Rancheroo Day, Jon learns that family is more important to him than winning. + Children + + + TVY + + + + Dino Ranch + The Ten Gallon Trophy; Plane Crazy + Bopper runs off with Bo's prized 10-gallon trophy hat; Miguel gets carried away by his dream of flying and learns that he needs to believe in his dino-friends as much as he believes in an idea. + Children + + + TVY + + + + Mickey Mouse Clubhouse + The Wizard of Dizz! + Minnie and Pluto are swept up in a big, scary wind; once the dust settles, they find themselves in the wonderful world of Dizz. + + Bret Iwan + Russi Taylor + Bill Farmer + + Animated + Children + + + TVY + + + + Mickey Mouse Clubhouse + The Wizard of Dizz! + Minnie and Pluto are swept up in a big, scary wind; once the dust settles, they find themselves in the wonderful world of Dizz. + + Bret Iwan + Russi Taylor + Bill Farmer + + Animated + Children + + + TVY + + + + Bluey + Outdoor Adventures Stories + A compilation of Bluey's best outdoor adventures filled with exciting activities and learning experiences. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Mickey Mouse Hot Diggity-Dog Tales + Flamingo-A-Go-Go! + Mickey, Pluto and Goofy make lemonade when Flamingo shows up to dance in Mickey's front yard. + Animated + Children + + + TVY + + + + Bluey + The Doctor; The Claw; Markets + Honey's trip to Dr. Bingo keeps getting interrupted; Mum and Dad create their own Magic Claw machine; Bluey takes her tooth fairy money to the market. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + The Quiet Game / Postman / Cafe + Bluey and Bingo play The Quiet Game; when Mum and Dad have a disagreement, Bluey makes Dad write a love letter to Mum; in the park, Bluey meets a new playmate, Winnie. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Faceytalk; Ragdoll; Fairytale + Bluey and Bingo love to video chat; Dad agrees to buy ice cream; Dad tells a real-life fairy tale. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Blue Mountains + Bluey, Bingo, Mum and Dad play a game of hand puppets, where they trek around the Blue Mountains and outsmart the cheeky fox to locate the softest beds in the world. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Kiya & the Kimoja Heroes + It Takes a Kimoja Village; Motsie's Space Race + Jay takes over a community scavenger hunt; when Motsie learns that Haddy invented a spray that gives her supersonic speed, Motsie feels she must keep up with her nemesis. + + Fontina Fourtounes + Elliott Couillard + + Animated + Children + + + TVG + + + + Mickey and the Roadster Racers + Daisy's Photo Finish!; Super-Charged: Daisy's Grande Goal + Minnie and Daisy travel to Brazil's Amazon rainforest to help Daisy's cousin get a picture of a rare bird; during a Roadster Soccer match, Daisy's competitiveness gets out of hand. + + Bret Iwan + Bill Farmer + Tress MacNeille + + Animated + Children + + + TVY + + + + Mickey and the Roadster Racers + Mickey's Fun-tastical Field Day; Clarabelle on the Mooo-ve! + During Fun-tastical Field Day, Donald tries to do all the competitions himself; the girls reunite for a race so that Clarabelle can try to become a Roadsterette. + Animated + Children + + + TVY + + + + Mickey Mouse Clubhouse + Mickey's Thanks a Bunch Day + The gang is having a celebratory dinner for Thanks a Bunch Day, but Minnie complains her vegetables aren't growing; the genius doctor gives her a spray, but it works too well. + + Wayne Allwine + Russi Taylor + Bill Farmer + + Animated + Children + + + TVY + + + + Firebuds + Hello, Halo! / What's Up, Woodpecker? + The Firebuds invite the new kid-helicopter in town for a day of rescue drills. The Firebuds hike through the woods in search of a rare woodpecker and save its habitat. + + Declan Whaley + Terrence Little Gardenhigh + Vivian Vencer + + Animated + Children + + + TVY + + + + Bluey + Housework; Sheepdog; Explorers + Mum and Dad need to finish their housework; Dad, Bluey and Bingo play Sheepdog; Jack pretends to be a sailor on his way home. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Keepy Uppy; Magic Xylophone; Shadowlands + Bluey, Bingo and Mum enjoy a game of Keepy-Uppy around the house; Bluey and Bingo squabble over their magic xylophone; Coco keeps taking shortcuts while playing Shadowlands. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Early Baby; Hospital; Daddy Putdown + Rusty interrupts Bluey's game at playgroup; Doctor Bluey operates on a cat in Dad's tummy; Bluey misses Mum when she goes out for the night. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + The Show; Tickle Crabs; Escape + The adventures of a Blue Heeler puppy, Bluey, who lives with her mother, father and sister; her energy and lovable spirit gets her into all kinds of funny and unpredictable situations. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + PJ Masks Power Heroes + Space Fairy Hero/ Lilyfay and the Lake + When Night Ninja captures Ice Cub, it falls to Lilyfay to realize she can be a hero and save him. Lilyfay wants a beautiful vehicle to look the part and be a PJ. + Animated + Children + + + TVG + + + + Bluey + Bob Bilby; Spygame; Takeaway + It's Bingo's turn with Kindy's Bob Bilby puppet; a game goes haywire when Bingo stops playing; five minutes feels like an eternity when waiting. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Shops; The Pool; Blue Mountains + Bluey plays a game of. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Mickey Mouse Funhouse + Mayor Franken-Pete's Very Bad Day; The Lost Party Rings + Mayor Franken-Pete has a very bad day and his friends teach him the Calm Down Plan; Daisy loses rings for a party in Underwater Ocean World. + + Bret Iwan + Kaitlyn Robrock + Tony Anselmo + + Animated + Children + + + TVG + + + + SuperKitties + Cheesenado; Talented Troublemaker + Cheesenado: Bitsy learns to say goodbye to Renata and her robin babies when they have to fly away. Talented Troublemaker: The SuperKitties stop Mr. Puppypaws from cheating in the talent contest. + + Emma Berman + Cruz Flateau + JeCobi Swain + + Animated + Children + + + TVY + + + + Bluey + Library; Swim School; Bin Night + Muffin plays the game of library her way; Mum, Dad and Bingo must pass swim school; Bluey, Bingo and Dad always take out the bins. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Pupstruction + Robo Cat; Underwater Pups + Bobby tries to sabotage the Pup Crew's library build with a robotic cat; the Pupstruction crew learns they need to build a school for fish underwater. + + Yonas Kibreab + Carson Minniear + Scarlett Kate Ferguson + + Animated + Children + + + TVY + + + + Firebuds + Sugar Crash / The Cut N' Chrome Caper + The Firebuds must stop a candy factory heist. The Firebuds must team up with Iggy and Rod to catch a thief at the Cut N' Chrome shop. + + Declan Whaley + Terrence Little Gardenhigh + Vivian Vencer + + Animated + Children + + + TVY + + + + Ratatouille + A Parisian rat (Patton Oswalt) who enjoys fine food lives beneath a famous restaurant and longs to be a great chef. + + Patton Oswalt + Ian Holm + Lou Romano + + 2007 + Movies + Animated + + + TVG + + + 3 + + + + SuperKitties + Bundle of Bitsies; Frantic Flyer + The SuperKitties stop Zsa-Zsa from stealing all the oranges in Kittydale; Bitsy wants to be strong like Buddy but learns she's pawesome just the way she is. + + Emma Berman + Cruz Flateau + JeCobi Swain + + Animated + Children + + + TVY + + + + SuperKitties + Burble Bungle; Sticky Situation + Lab Rat controls the Burble toys to steal all the cheese in Kittydale; the SuperKitties stop Mr. Puppypaws from turning all the wood in the park into fetching sticks. + + Emma Berman + Cruz Flateau + JeCobi Swain + + Animated + Children + + + TVY + + + + Star Wars: Young Jedi Adventures + The Girl and Her Gargantua; The Show Must Go On + The younglings track an escaped creature; Nash's Jedi friends help reunite her favorite band. + + Jamaal Avery Jr. + Juliet Donenfeld + Dee Bradley Baker + + Animated + Children + + + TVY + + + + Bluey + Unicorse; Born Yesterday; Curry Quest + The adventures of a Blue Heeler puppy, Bluey, who lives with her mother, father and sister; her energy and lovable spirit gets her into all kinds of funny and unpredictable situations. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Wagon Ride; Taxi; The Beach + Bluey is upset when Dad keeps stopping on their walk; Bluey is Dad's only hope to make it to the airport; Bluey takes a solo adventure on the beach. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + PJ Masks: Power Heroes + Heroes of Iceworld + Romeo steals ultimate ice power from Iceworld which he uses to freeze the new HQ and send it drifting into deep space. + Animated + Children + + + TVG + + + + PJ Masks: Power Heroes + Heroes of Iceworld + Romeo steals ultimate ice power from Iceworld which he uses to freeze the new HQ and send it drifting into deep space. + Animated + Children + + + TVG + + + + Bluey + Dunny / Duck Cake / Handstand + Bingo is desperate to show off her handstand skills. Bluey turns a tree stump into a game of Helicopter. Chloe tries to teach her dad to play Bluey's game. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Grannies; Yoga Ball; Calypso + Bluey and Bingo call Nana to ask one major question; Bingo finds her big girl bark; teacher Calypso has her hands full in the classroom. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Pupstruction + Itts Bitty Barn Build; A Colorful Job + Pupstruction must construct its tiniest and most delicate build yet; Pupstruction builds a house for a chameleon that can't seem to decide what color it should be. + + Yonas Kibreab + Carson Minniear + Scarlett Kate Ferguson + + Animated + Children + + + TVG + + + + Mickey Mouse Funhouse + Dino See, Dino Do; Pete the Mighty Baby! + Mickey and the gang head to Prehistoric World for a sleepover with some baby dinos; on a visit to meet Pete's mom, Donald and Pete step into a fountain of youth, which turns them into babies. + + Bret Iwan + Kaitlyn Robrock + Tony Anselmo + + Animated + Children + + + TVG + + + + Mickey Mouse Funhouse + The Music of the Seasons; Mermaids to the Rescue + Minnie and Daisy discover a group of gnomes whose magical music welcomes new seasons; Octo-Pete invites Mickey and friends to The Big Seahorsey Show in Underwater Ocean World. + + Bret Iwan + Kaitlyn Robrock + Tony Anselmo + + Animated + Children + + + TVG + + + + Firebuds + Mayhem at the Museum; Wrong Way Rescue + Wiley Riley crashes the Firebuds' science museum sleepover to steal a rare meteorite; the Firebuds must save a young car stuck in reverse. + + Declan Whaley + Terrence Little Gardenhigh + Vivian Vencer + + Animated + Children + + + TVY + + + + Marvel's Spidey and His Amazing Friends + Rollin Rhino; The Octopus and the Kitty Cat + Rhino and Green Goblin plot to ruin a roller-skating race; Black Cat and Doc Ock make an unstoppable team as they commit a lot of trouble. + + Benjamin Valic + Lily Sanfelippo + Jakari Fraser + + Animated + Children + + + TVY + + + + Star Wars: Young Jedi Adventures + The Jedi and the Thief; The Missing Kibbin + Kai and Zia team up; Lys teams up with a bounty hunter. + + Jamaal Avery Jr. + Juliet Donenfeld + Dee Bradley Baker + + Animated + Children + + + TVY + + + + Bluey + Housework; Sheepdog; Explorers + Mum and Dad need to finish their housework; Dad, Bluey and Bingo play Sheepdog; Jack pretends to be a sailor on his way home. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Keepy Uppy; Magic Xylophone; Shadowlands + Bluey, Bingo and Mum enjoy a game of Keepy-Uppy around the house; Bluey and Bingo squabble over their magic xylophone; Coco keeps taking shortcuts while playing Shadowlands. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Early Baby; Hospital; Daddy Putdown + Rusty interrupts Bluey's game at playgroup; Doctor Bluey operates on a cat in Dad's tummy; Bluey misses Mum when she goes out for the night. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + SuperKitties + Hole Lot of Trouble; Roboctopus + The SuperKitties must keep Mr. Puppypaws from digging up the animals' Fun Run; Bitsy feels replaced after Sparks makes the SuperKitty Kit super fast to stop the Roboctopus. + + Emma Berman + Cruz Flateau + JeCobi Swain + + Animated + Children + + + TVY + + + + Marvel's Spidey and His Amazing Friends + A Syrupy Solution; Little Ant, Big Problem + Gwen teams up with her dad to save the forest from Doc Ock; Peter accidentally grows his pet ant to the size of a dog. + + Benjamin Valic + Lily Sanfelippo + Jakari Fraser + + Animated + Children + + + TVY + + + + Marvel's Spidey and His Amazing Friends + An Egg-Cellent Adventure; The Hangout Headache + When Black Cat steals a sparkly egg from the zoo, Team Spidey must save it before it hatches; Spidey's offer to let Hulk hang out in WEB-Quarters quickly turns into a disaster. + + Benjamin Valic + Lily Sanfelippo + Jakari Fraser + + Animated + Children + + + TVY + + + + Bluey + The Show; Tickle Crabs; Escape + The adventures of a Blue Heeler puppy, Bluey, who lives with her mother, father and sister; her energy and lovable spirit gets her into all kinds of funny and unpredictable situations. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Star Wars: Young Jedi Adventures + Nash's Race Day; The Lost Jedi Ship + Nash competes in a race; young Jedi find a lost ship. + + Jamaal Avery Jr. + Juliet Donenfeld + Dee Bradley Baker + + Animated + Children + + + TVY + + + + Bluey + Bob Bilby; Spygame; Takeaway + It's Bingo's turn with Kindy's Bob Bilby puppet; a game goes haywire when Bingo stops playing; five minutes feels like an eternity when waiting. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Shops; The Pool; Blue Mountains + Bluey plays a game of. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Dino Ranch + Tall in the Saddle Drive; Min-Perfection + When a Brontosaur leader gets separated from her herd, the Dino Ranchers need to keep the herd from scattering until she can reunite with them and lead the migration; Min tries to help Quack get over a scare without making a mistake. + Children + + + TVY + + + + Dino Ranch + Thunderin' Thundertot; Clara's Shortcut Rut + When Clara Tinhorn takes shortcuts on a Dino Ranch practice course, she lands her brothers in trouble; when Thundertot crashes Clover and Min's sleepover in the hatchery, Clover's plans for the night are interrupted by the baby spinosaur. + Children + + + TVY + + + + Bluey + Library; Swim School; Bin Night + Muffin plays the game of library her way; Mum, Dad and Bingo must pass swim school; Bluey, Bingo and Dad always take out the bins. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Mickey Mouse Mixed-Up Adventures + Goofy and Pete's Wild Ride; The Happiest Day of All! + Goofy and Pete accidentally launch Billy's airship; the Happy Helpers pause their celebration to help Clarabelle. + Animated + Children + + + TVY + + + + Mickey Mouse Mixed-Up Adventures + Duck, Duck Geese!; Shhhhh! + Goofy's bird call works too well when dozens of geese come around; Billy Beagle learns the difference between inside and outside voices. + Animated + Children + + + TVY + + + + Bluey + Unicorse; Born Yesterday; Curry Quest + The adventures of a Blue Heeler puppy, Bluey, who lives with her mother, father and sister; her energy and lovable spirit gets her into all kinds of funny and unpredictable situations. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Wagon Ride; Taxi; The Beach + Bluey is upset when Dad keeps stopping on their walk; Bluey is Dad's only hope to make it to the airport; Bluey takes a solo adventure on the beach. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Dunny / Duck Cake / Handstand + Bingo is desperate to show off her handstand skills. Bluey turns a tree stump into a game of Helicopter. Chloe tries to teach her dad to play Bluey's game. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Grannies; Yoga Ball; Calypso + Bluey and Bingo call Nana to ask one major question; Bingo finds her big girl bark; teacher Calypso has her hands full in the classroom. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Keepy Uppy + Bluey, Bingo and Mum play Keepy-Uppy around the house with their last balloon, but it becomes competitive when Dad joins in. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + PJ Masks Power Heroes + Iceworld; Iceworld Part II + Ice Cub wants to prove himself by going on a quest into Iceworld; Ice Cub faces dangers in the new icy world to discover the source of new powers. + Animated + Children + + + TVG + + + + Mickey and the Roadster Racers + Super-Charged: Donald's Roadster Round-Up; The Daisy Dance! + While on a quick trip to the convenience store, Donald and Pluto accidentally lose all the roadsters along the way; the Happy Helpers take over teaching Clarabelle's dance class. + Animated + Children + + + TVY + + + + Mickey and the Roadster Racers + Billy Beagle's Tip-Top Garage; Diner Dog Rescue + Billy Beagle films the garage crew as they try to turn a junker into a winning roadster in one day; the Happy Helpers help a TV chef rescue the Hot Dog Diner. + Animated + Children + + + TVY + + + + Mickey Mouse Clubhouse + Minnie's Picnic + Minnie enlists Mickey and his friends to help plan a picnic. + + Wayne Allwine + Russi Taylor + Bill Farmer + + Animated + Children + + + TVY + + + + Bluey + Ice Cream / Bad Mood / Double Babysitter + Bluey and Bingo want a lick of each other's ice cream; Bingo is playing Bad Mood with Dad; two babysitters turn up to look after Bluey and Bingo. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Barky Boats + Bluey and Mackenzie are excited to spend time with their two buddies Mia and Captain; when the older kids run off to play together without them, Calypso explains that growing up can be hard. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Promises; Magic; Mini Bluey + Bluey keeps breaking her promises; Bluey teaches Bingo how to use magic; Bluey teaches Bingo to be more like him. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Mum and Dads; Mount Mumandad; Asparagus + Indy and Rusty can't agree in a game of Mum and Dads; Bluey and Bingo work together to climb Mount MumandDad; magic asparagus turns the family into wild animals. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Musical Statues + At the end of a long day, Bluey and her family are out of sync and sorts; Mum gets everyone to play musical statues. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Mickey Mouse Funhouse + Seas the Day!; Play Nice! + Mortimer joins the gang on a sailing trip, leading to some stormy surprises; the gang builds a new snow pal named Rosie, who plays a bit too rough for Sunny. + + Bret Iwan + Kaitlyn Robrock + Tony Anselmo + + Animated + Children + + + TVG + + + + Mickey Mouse Clubhouse + Mickey's Thanks a Bunch Day + The gang is having a celebratory dinner for Thanks a Bunch Day, but Minnie complains her vegetables aren't growing; the genius doctor gives her a spray, but it works too well. + + Wayne Allwine + Russi Taylor + Bill Farmer + + Animated + Children + + + TVY + + + + Mickey Mouse Clubhouse + Goofy's Petting Zoo + The animals at the petting zoo have escaped and it's up to Mickey and Goofy to round them up. + + Wayne Allwine + Russi Taylor + Bill Farmer + + Animated + Children + + + TVY + + + + Mickey Mouse Funhouse + Spaced Out!; Treasure, Ahoy! + Funny turns into a rocket ship to take everyone to space; when Donald's impatience causes him to lose his pool floaty, Funny takes the crew to find the Lost & Found Treasure Chest. + + Bret Iwan + Kaitlyn Robrock + Tony Anselmo + + Animated + Children + + + TVG + + + + Mickey Mouse Funhouse + Farfus' Family!; The Adventure Parade + When Farfus takes the friends into the forest to meet his family, he discovers his family is missing; Mickey, Minnie and friends decorate the Funhouse Forest float for the Adventure Parade. + + Bret Iwan + Kaitlyn Robrock + Tony Anselmo + + Animated + Children + + + TVG + + + + Dino Ranch + The Bronto Bully; The Rustler and the Rumbler + Clover has a run-in with a mean wild dinosaur who takes his toys; when the Jr Ranchers return a rehabilitated T-Rex to her home, Min doubts her doctoring skills. + Children + + + TVY + + + + Dino Ranch + The Power of Two; Min's Dino Mite Mistake + When a trio of Rhinorexes blocks Miguel and Tango's way over a bridge, they'll have to work as a team in a way they've never tried before; on their first visit to the Dino Port, the excited Dino Mites are harder to control than Min anticipated. + Children + + + TVY + + + + Bluey + Squash; Charades; Bingo + Bluey and Bigno help Uncle Stripe and Bandit play squash and spend the day with Nana; Bingo has to learn to play alone. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Pizza Girls; Tina; Whale Watching + Bluey and Bingo make mud pizzas; Bluey and Bingo's giant, invisible friend, Tina; Bluey promises her customer Bingo the best tour ever. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Pupstruction + Itts Bitty Barn Build; A Colorful Job + Pupstruction must construct its tiniest and most delicate build yet; Pupstruction builds a house for a chameleon that can't seem to decide what color it should be. + + Yonas Kibreab + Carson Minniear + Scarlett Kate Ferguson + + Animated + Children + + + TVG + + + + Bluey + Musical Statues + At the end of a long day, Bluey and her family are out of sync and sorts; Mum gets everyone to play musical statues. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Helicopter; Octopus; Baby Race + Bluey and her friends play a game of helicopter with a tree stump; Chloe tries to teach her dad to improvise and play Bluey's game of Octopus at home; Mum reminisces about Bluey and Judo as babies, where it was a race to see who would walk first. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Marvel's Spidey and His Amazing Friends + Peter's Pendant Predicament; TWIST-E + Spidey's precious pendant falls into Green Goblin's hands; Spin wants his own robot, but when he rushes to build it without Spidey's help, his robot ends up with a big flaw. + + Benjamin Valic + Lily Sanfelippo + Jakari Fraser + + Animated + Children + + + TVY + + + + Marvel's Spidey and His Amazing Friends + The Wozzlesnook; Superhero Switcheroo + Spin's favorite mythical creature may actually exist; when Spidey and Hulk's powers are switched by Doc Ock, they must teach each other how to be each other to defeat her. + + Benjamin Valic + Lily Sanfelippo + Jakari Fraser + + Animated + Children + + + TVY + + + + SuperKitties + Fireworks Fright; Cheese Trees + Mr. Puppypaws steals all of Kittydale's fireworks; the SuperKitties have to stop Lab Rat from turning Kittydale into cheese. + + Emma Berman + Cruz Flateau + JeCobi Swain + + Animated + Children + + + TVY + + + + Bluey + The Kids; Butterflies; The Creek + Bluey decides to be Mum during a game of. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Trampoline; The Dump; Zoo + Dad plays trampoline games with Bluey and Bingo; Dad is planning on throwing out Bluey's old drawings; Bingo causes chaos at Bluey's backyard zoo. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Firebuds + Hello, Halo! / What's Up, Woodpecker? + The Firebuds invite the new kid-helicopter in town for a day of rescue drills. The Firebuds hike through the woods in search of a rare woodpecker and save its habitat. + + Declan Whaley + Terrence Little Gardenhigh + Vivian Vencer + + Animated + Children + + + TVY + + + + Mickey Mouse Funhouse + Mickey and the Cornstalk!; King Mickey + Mickey is excited to read his new book, but can't because he is supposed to attend the Faire; King Ludwig leaves Mickey in charge of Majestica while he goes out of town. + + Bret Iwan + Kaitlyn Robrock + Tony Anselmo + + Animated + Children + + + TVY + + + + Mickey Mouse Funhouse + No Thrills, Please!; Space Doggies + The gang flies the Floaty Coaster to Sunny Gulch to give rides, but Pete and Horace have different feelings about roller coasters; Pluto and Teddy have a playdate with Zoop Bloop. + + Bret Iwan + Kaitlyn Robrock + Tony Anselmo + + Animated + Children + + + TVG + + + + Mickey Mouse Funhouse + No Thrills, Please!; Space Doggies + The gang flies the Floaty Coaster to Sunny Gulch to give rides, but Pete and Horace have different feelings about roller coasters; Pluto and Teddy have a playdate with Zoop Bloop. + + Bret Iwan + Kaitlyn Robrock + Tony Anselmo + + Animated + Children + + + TVG + + + + Kiya & the Kimoja Heroes + Double Trouble!; Size Me Up + A 7-year-old African girl who loves ballet and martial arts and her two best friends put on their magical crystal headbands to become superheroes and defend their community. + + Fontina Fourtounes + Elliott Couillard + + Animated + Children + + + TVG + + + + Bluey + Musical Statues + At the end of a long day, Bluey and her family are out of sync and sorts; Mum gets everyone to play musical statues. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Teasing; Shaun; Daddy Robot + The girls convince Mum that Dad is a Big Teaser; Bluey struggles to train her new pet; Daddy Robot helps Bluey and Bingo tidy the playroom. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + SuperKitties + Blueberry Bonanza; Snow Day + Zsa-Zsa steals all the blueberries at the blueberry festival for her special cream; it's Bitsy's first snow day, and the team must stop Lab Rat from zapping away all the snow. + + Emma Berman + Cruz Flateau + JeCobi Swain + + Animated + Children + + + TVY + + + + Bluey + Horsey Ride; Hotel; Bike + The kids stage a horsey wedding; Bluey, Bingo and Dad play a game of Hotel; Bluey struggles to ride her bike and won't give up. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Musical Statues + At the end of a long day, Bluey and her family are out of sync and sorts; Mum gets everyone to play musical statues. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + The Sleepover; Hide and Seek; Camping + Bluey and Bingo plan to stay up late at a sleepover; Bluey needs to focus during a game of hide-and-seek; Bluey makes a new friend while camping. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Mickey Mouse Funhouse + Daisy & Goofy Clean Up!; Crayon World! + Daisy and Goofy's impromptu hoedown leads to Funny slipping and creating a terrible mess; Daisy's missing the magical magenta crayon she needs to finish her garden drawing. + + Bret Iwan + Kaitlyn Robrock + Tony Anselmo + + Animated + Children + + + TVG + + + + Pupstruction + Bailey's Birthday Coaster; Doggone Tired + For his little sister's birthday, Phinny builds her the wildest roller coaster ever; the Pup Crew must save the grand opening of a new Petsburg restaurant, but Tank's too sleepy. + + Yonas Kibreab + Carson Minniear + Scarlett Kate Ferguson + + Animated + Comedy + + + TVMA + + + + Marvel's Spidey and His Amazing Friends + Camping Conundrum; The Great Green Crime Spree + The Spidey Team goes camping, but Old Dam is cracking and about to flood the park; Green Goblin frames the Hulk, and Spidey and Ghosty are determined to prove he's innocent. + + Benjamin Valic + Lily Sanfelippo + Jakari Fraser + + Animated + Children + + + TVY + + + + Firebuds + Marsh Mayhem; The Art of Friendship + Kid reporter June gets famous at school after reporting a sighting of an urban legend; the Firebuds create a giant mobile to cheer up kids in the hospital. + Animated + Children + + + TVG + + + + Bluey + Musical Statues + At the end of a long day, Bluey and her family are out of sync and sorts; Mum gets everyone to play musical statues. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Ice Cream / Bad Mood / Double Babysitter + Bluey and Bingo want a lick of each other's ice cream; Bingo is playing Bad Mood with Dad; two babysitters turn up to look after Bluey and Bingo. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Promises; Magic; Mini Bluey + Bluey keeps breaking her promises; Bluey teaches Bingo how to use magic; Bluey teaches Bingo to be more like him. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Mum and Dads; Mount Mumandad; Asparagus + Indy and Rusty can't agree in a game of Mum and Dads; Bluey and Bingo work together to climb Mount MumandDad; magic asparagus turns the family into wild animals. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Kiya & the Kimoja Heroes + Kiya and the Boombastic Blower; Acroboo! + Kiya makes a mistake and tries to cover it up; when rumors circulate that the dance studio is haunted, Kiya hides that she is afraid. + + Fontina Fourtounes + Elliott Couillard + + Animated + Children + + + TVY + + + + Bluey + Musical Statues + At the end of a long day, Bluey and her family are out of sync and sorts; Mum gets everyone to play musical statues. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Squash; Charades; Bingo + Bluey and Bigno help Uncle Stripe and Bandit play squash and spend the day with Nana; Bingo has to learn to play alone. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Marvel's Spidey and His Amazing Friends + Spin Rushes In; Bridge Bandit + When Doc Ock steals the arachno-sting power, Team Spidey has to get it back before she puts the town to sleep; Green Goblin and Rhino take over a bridge and threaten to destroy it. + + Benjamin Valic + Lily Sanfelippo + Jakari Fraser + + Animated + Children + + + TVY + + + + Marvel's Spidey and His Amazing Friends + Parade Panic; The Case of the Burgling Book Bandit + Team Spidey become the main attraction at a big parade thrown in their honor; when all the detective books in the library go missing, Team Spidey begins their own investigation. + + Benjamin Valic + Lily Sanfelippo + Jakari Fraser + + Animated + Children + + + TVY + + + + Star Wars: Young Jedi Adventures + Lys and the Snowy Mountain Rescue; Attack of the Training Droids + The Jedi herd creatures; the kids must stop droids. + + Jamaal Avery Jr. + Juliet Donenfeld + Dee Bradley Baker + + Animated + Children + + + TVY + + + + Bluey + Pizza Girls; Tina; Whale Watching + Bluey and Bingo make mud pizzas; Bluey and Bingo's giant, invisible friend, Tina; Bluey promises her customer Bingo the best tour ever. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Helicopter; Octopus; Baby Race + Bluey and her friends play a game of helicopter with a tree stump; Chloe tries to teach her dad to improvise and play Bluey's game of Octopus at home; Mum reminisces about Bluey and Judo as babies, where it was a race to see who would walk first. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Dino Ranch + Dino Patient Pileup; Sonny Wings it + A large amount of dinos with boo-boos need help at the hatchery; Min needs to find a cactus to make a soothing ointment for some wild stegos. + Children + + + TVY + + + + Dino Ranch + Birthday Bash-less; Tickle Trouble + The Jr Ranchers welcome a wild baby triceratops into Tango's birthday celebrations; when Clover brings tickly tickle bugs onto Dino Ranch, he tries to solve the problem himself and makes the problem even worse. + Children + + + TVY + + + + Bluey + The Kids; Butterflies; The Creek + Bluey decides to be Mum during a game of. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Mickey Mouse Mixed-Up Adventures + There Goes Our Fun!; Don't Wake the Baby! + It's Mickey Day at the amusement park and Mickey invites everyone to enjoy themselves; the Happy Helpers are asked to babysit the Matisses' new baby boy, Ollie. + Animated + Children + + + TVY + + + + Mickey Mouse Mixed-Up Adventures + Mickey's Sporty Day; Go, Chili Dogs! + It's time for the annual Hot Dog Hillympics; as the reigning champ, Mickey is ready to win again, unless Pete has something to do with it; the Happy Helpers coach a baseball team. + Animated + Children + + + TVY + + + + Bluey + Trampoline; The Dump; Zoo + Dad plays trampoline games with Bluey and Bingo; Dad is planning on throwing out Bluey's old drawings; Bingo causes chaos at Bluey's backyard zoo. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Teasing; Shaun; Daddy Robot + The girls convince Mum that Dad is a Big Teaser; Bluey struggles to train her new pet; Daddy Robot helps Bluey and Bingo tidy the playroom. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Horsey Ride; Hotel; Bike + The kids stage a horsey wedding; Bluey, Bingo and Dad play a game of Hotel; Bluey struggles to ride her bike and won't give up. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + The Sleepover; Hide and Seek; Camping + Bluey and Bingo plan to stay up late at a sleepover; Bluey needs to focus during a game of hide-and-seek; Bluey makes a new friend while camping. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Handstand + At a party, Bingo is desperate to show off her handstand skills; Nanna can't find a way to make herself useful. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Mickey and the Roadster Racers + Super-Charged: The Big Cheesy; Shenannygans! + During the Cooper's Hill Cheese Rolling Chase, a cheese wheel spins out of control; the Happy Helpers work as nannies in London. + Animated + Children + + + TVY + + + + Mickey and the Roadster Racers + You Quack Me Up; Tree House Trouble + For April Fool's Day, Donald decides to compete in the pranking contest; Chip and Dale have a roommate squabble. + Animated + Children + + + TVY + + + + Mickey Mouse Clubhouse + Mickey's Mousekersize! + Pete can hardly get through a game of basketball without collapsing from exhaustion. + + Wayne Allwine + Russi Taylor + Bill Farmer + + Animated + Children + + + TVY + + + + Mickey Mouse Clubhouse + Goofy in Training + Goofy's friends teach him about directions to help him with an obstacle course. + + Wayne Allwine + Russi Taylor + Bill Farmer + + Animated + Children + + + TVY + + + + Bluey + See Saw; Movies; Grandad + The adventures of a Blue Heeler puppy, Bluey, who lives with her mother, father and sister; her energy and lovable spirit gets her into all kinds of funny and unpredictable situations. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Mums and Dads + When Indy and Rusty can't agree while playing Mum and Dads, Indy has a hard time finding a new partner and Rusty finds himself in the baby role with Bluey. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Army / Fancy Restaurant / Stumpfest + Jack and Rusty play Army at school; the girls set up a fancy restaurant for Mum and Dad; Bluey, Bingo and Muffin strike a deal with the dads. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Rug Island; Hairdressers; Sticky Gecko + The adventures of a Blue Heeler puppy, Bluey, who lives with her mother, father and sister; her energy and lovable spirit gets her into all kinds of funny and unpredictable situations. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Stories + Indy thinks she's no good because her model horse looks like a cow, but Calypso encourages her not to give up, so she tries to fix it with a little help from Winton. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Mickey Mouse Funhouse + Just Plane Quackers; Frannie Takes Flight! + Daisy is afraid to fly with the gang in an air rally over the Adventure Worlds; Farfus' little sister, Frannie the griffin, is ready to fly but is really nervous. + + Bret Iwan + Kaitlyn Robrock + Tony Anselmo + + Animated + Children + + + TVG + + + + Mickey Mouse Clubhouse + Fancy Dancin' Goofy + Goofy prepares for a dance with Clarabelle the Cow. + + Wayne Allwine + Russi Taylor + Bill Farmer + + Animated + Children + + + TVY + + + + Mickey Mouse Clubhouse + Mickey Goes Fishing + Goofy drops off his kitten, Mr. Pettibone, at the Clubhouse for the day. + + Wayne Allwine + Russi Taylor + Bill Farmer + + Animated + Children + + + TVY + + + + Mickey Mouse Funhouse + The Music of the Seasons; Mermaids to the Rescue + Minnie and Daisy discover a group of gnomes whose magical music welcomes new seasons; Octo-Pete invites Mickey and friends to The Big Seahorsey Show in Underwater Ocean World. + + Bret Iwan + Kaitlyn Robrock + Tony Anselmo + + Animated + Children + + + TVG + + + + Mickey Mouse Funhouse + Homesick; Goldfish Goofy! + Mickey, Minnie and friends want to take Funny on a picnic, but Funny isn't feeling well; Funny takes the gang to Underwater Ocean World, transforming them into mer-people. + + Bret Iwan + Kaitlyn Robrock + Tony Anselmo + + Animated + Children + + + TVG + + + + Dino Ranch + The Sneakasaurus / Sonny's T-Rex Turmoil + When someone's causing mischief on Dino Ranch, Blitz becomes determined to catch them. + Children + + + TVY + + + + Firebuds + Piston's Driving School; Jazzyland + Piston tries to give driving lessons but struggles to teach on his own and must ask for help; Jazzy takes the Buds on an adventure in her imaginary world, Jazzyland. + Animated + Children + + + TVG + + + + Bluey + Flat Pack; Queens; Train + Bluey and Bingo construct a mini-civilization; Mum is crowned Queen with the girls as her butlers; Bluey and Bingo commute on the Dad-Train. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Fairies; Work; Bumpy and the Wise Old Wolfhound + Invisible mischievous fairies infest the house; Bluey, Bingo and Dad play. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Pupstruction + Builders to Bakers; Fire Truck Frenzy + When the pupcakes Harry makes for Bailey's class get ruined, the Pups help rebuild the snack; the Pup Crew and Petsburg's fire and rescue team swap to see which crew is the best. + + Yonas Kibreab + Carson Minniear + Scarlett Kate Ferguson + + Animated + Children + + + TVG + + + + Bluey + Stories + Indy thinks she's no good because her model horse looks like a cow, but Calypso encourages her not to give up, so she tries to fix it with a little help from Winton. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Hammerbarn; Feather Wand; Dance Mode + The Heelers take a trip to Hammerbarn; Bingo has an idea for a new game; Dad eats Bingo's last chip. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Marvel's Spidey and His Amazing Friends + Sonic Boom Boom; Mini Golf Goof + Team Spidey heads underwater to stop Doc Ock from disrupting sea life; Ghost-Spider teams up with Ant-Man and Wasp to stop Green Goblin from ruining the mini golf course. + + Benjamin Valic + Lily Sanfelippo + Jakari Fraser + + Animated + Children + + + TVY + + + + Marvel's Spidey and His Amazing Friends + Rhinoctopus; A Pumpkin Problem + When the team stops Ock's heist, she throws away her tentacle suit in frustration and Rhino takes her place; Spidey is sidetracked when his prize pumpkin becomes a threat. + + Benjamin Valic + Lily Sanfelippo + Jakari Fraser + + Animated + Children + + + TVY + + + + SuperKitties + Have a Ball; Zsa-Zsa Zoom + When Ginny gets a boo-boo, Sparks, Buddy and Bitsy have to learn to work as a team without her; The SuperKitties help Peanut get Nadia's stolen toy car back from Zsa-Zsa. + + Emma Berman + Cruz Flateau + JeCobi Swain + + Animated + Children + + + TVY + + + + Bluey + Chest; Omelette; Pass the Parcel + Dad tries to teach Bluey how to play chess, but Mom thinks she is still too young; Bingo helps Mom make an omelette for Dad's birthday; Lucky's Dad is outraged that modern Pass the Parcel has a present in every layer. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Bedroom; Perfect; Obstacle Course + Bluey gets her own room; Bluey wants her Father's Day card to be perfect; Mum sets up a backyard obstacle course just for fun. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Firebuds + Sugar Crash / The Cut N' Chrome Caper + The Firebuds must stop a candy factory heist. The Firebuds must team up with Iggy and Rod to catch a thief at the Cut N' Chrome shop. + + Declan Whaley + Terrence Little Gardenhigh + Vivian Vencer + + Animated + Children + + + TVY + + + + Mickey Mouse Funhouse + The Enchanted Tea Party; Unhappy Campers + The gang goes to a tea party and Goofy and Daisy both find a perfect spot; the gang accidentally disturbs a raccoon and her babies at their campsite. + + Bret Iwan + Kaitlyn Robrock + Tony Anselmo + + Animated + Children + + + TVY + + + + Mickey Mouse Funhouse + Bottled Up!; Minnie's Fairy Tale! + When Daisy takes a trip to Razzle Dazzle Dunes, she turns into a genie and needs to grant three wishes; when Minnie transforms into a fairy, she has trouble finding her talent. + + Bret Iwan + Kaitlyn Robrock + Tony Anselmo + + Animated + Children + + + TVG + + + + Mickey Mouse Funhouse + Bottled Up!; Minnie's Fairy Tale! + When Daisy takes a trip to Razzle Dazzle Dunes, she turns into a genie and needs to grant three wishes; when Minnie transforms into a fairy, she has trouble finding her talent. + + Bret Iwan + Kaitlyn Robrock + Tony Anselmo + + Animated + Children + + + TVG + + + + Kiya & the Kimoja Heroes + Stealing the Spotlight; Duel of the Inventors + While auditioning for a show, Jay gets competitive with Primadonna; Haddy declares herself the best inventor in Kimoja and challenges Motsie to an invention duel. + + Fontina Fourtounes + Elliott Couillard + + Animated + Children + + + TVG + + + + Bluey + Stories + Indy thinks she's no good because her model horse looks like a cow, but Calypso encourages her not to give up, so she tries to fix it with a little help from Winton. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + The Doctor; The Claw; Markets + Honey's trip to Dr. Bingo keeps getting interrupted; Mum and Dad create their own Magic Claw machine; Bluey takes her tooth fairy money to the market. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + SuperKitties + Silent Surprise; Fufu Snafu + Zsa-Zsa takes away the Singing Squirrels' voices before their big concert; the SuperKitties have to stop Cat Burglar after he takes a gold statue from the Kittydale Museum. + + Emma Berman + Cruz Flateau + JeCobi Swain + + Animated + Children + + + TVY + + + + Bluey + Library; Swim School; Bin Night + Muffin plays the game of library her way; Mum, Dad and Bingo must pass swim school; Bluey, Bingo and Dad always take out the bins. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Stories + Indy thinks she's no good because her model horse looks like a cow, but Calypso encourages her not to give up, so she tries to fix it with a little help from Winton. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Bus / Mum School / Piggyback + The Heelers play a game of 'Bus'; Mum and Bluey play 'Mum School' where Mum teaches Bluey how to corral her rowdy kids; Bingo decides she's too tired to walk and needs a piggyback. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Mickey Mouse Funhouse + Maybe I'm a Maze; Land of the Lost… Socks + Mortimer Mouse joins the gang for an adventure to Land of Myth; Goofy can't find his favorite socks, so Funny takes him to Lost & Found Island. + + Bret Iwan + Kaitlyn Robrock + Tony Anselmo + + Animated + Children + + + TVG + + + + Pupstruction + The Wishbone Comet; The Never-Ending Treehouse + The pups build Roxy a ramp so that she can access the observatory for a rare viewing of the Wishbone comet; the pups design a treehouse to help their new neighbor, Ollie. + + Yonas Kibreab + Carson Minniear + Scarlett Kate Ferguson + + Animated + Children + + + TVY + + + + Marvel's Spidey and His Amazing Friends + Dino-Rama; Daytime at Nighttime + The heroes stop Gobby and Rhino from wreaking havoc, but Reptil's jewel turns them into dinosaurs; the team must stop Electro from disturbing nocturnal animals in the forest. + + Benjamin Valic + Lily Sanfelippo + Jakari Fraser + + Animated + Children + + + TVY + + + + Firebuds + Hubcap Heist; Food Truck Fiasco + Bo and the Firebuds must stop a pair of wily art thieves; the Firebuds help Fernando the Food Truck get to his café in time for the lunch rush. + Animated + Children + + + TVG + + + + Bluey + Stories + Indy thinks she's no good because her model horse looks like a cow, but Calypso encourages her not to give up, so she tries to fix it with a little help from Winton. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + See Saw; Movies; Grandad + The adventures of a Blue Heeler puppy, Bluey, who lives with her mother, father and sister; her energy and lovable spirit gets her into all kinds of funny and unpredictable situations. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Army / Fancy Restaurant / Stumpfest + Jack and Rusty play Army at school; the girls set up a fancy restaurant for Mum and Dad; Bluey, Bingo and Muffin strike a deal with the dads. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Rug Island; Hairdressers; Sticky Gecko + The adventures of a Blue Heeler puppy, Bluey, who lives with her mother, father and sister; her energy and lovable spirit gets her into all kinds of funny and unpredictable situations. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Kiya & the Kimoja Heroes + A Little Birdy Told Me; The Night of 1000 Lights + When a bird takes an interest in Jay's music, Jay wishes he could hang out with it as his pet; Kiya learns that letting jealousy guide her comes with a price. + + Fontina Fourtounes + Elliott Couillard + + Animated + Children + + + TVG + + + + Bluey + Stories + Indy thinks she's no good because her model horse looks like a cow, but Calypso encourages her not to give up, so she tries to fix it with a little help from Winton. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Flat Pack; Queens; Train + Bluey and Bingo construct a mini-civilization; Mum is crowned Queen with the girls as her butlers; Bluey and Bingo commute on the Dad-Train. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Marvel's Spidey and His Amazing Friends + Going Green; Coming Clean + Team Spidey is planting trees in the park, but Green Goblin interrupts by spewing gas everywhere; Peter uses his new invention to clean up a mess. + + Benjamin Valic + Lily Sanfelippo + Jakari Fraser + + Animated + Children + + + TVY + + + + Marvel's Spidey and His Amazing Friends + Spidey to the Power of Three; Panther Patience + Spidey reminds Spin and Ghost-Spider to work as a team to track Rhino; Spidey learns about patience when he and Black Panther must take down Doc Ock. + + Benjamin Valic + Lily Sanfelippo + Jakari Fraser + + Animated + Children + + + TVY + + + + PJ Masks Power Heroes + I Scream for Wolfies / An Yu and the Gekkos + Catboy encourages Ice Cub to mess around with his snowballs but the Wolfies take advantage; An Yu finds it difficult to be a hero when things aren't the way she is used to. + Animated + Children + + + TVG + + + + Bluey + Fairies; Work; Bumpy and the Wise Old Wolfhound + Invisible mischievous fairies infest the house; Bluey, Bingo and Dad play. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Hammerbarn; Feather Wand; Dance Mode + The Heelers take a trip to Hammerbarn; Bingo has an idea for a new game; Dad eats Bingo's last chip. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Dino Ranch + Sneaky Swipers; Clover's Height Fright + When things begin to disappear from Dino Ranch, Blitz and the gang discover the importance of knowing the facts before jumping to conclusions; when Pteddy gets stuck on the Mile High Mesa, Clover must overcome his fear of heights to help his friend. + Children + + + TVY + + + + Dino Ranch + Clover Takes Over; You're More Than Your Roar + When Clover's overconfidence jeopardizes a medical air mission, the bronto learns to ask for help; when Biscuit gets a case of roaringitis and some egg-stealing Raptors invade the Ranch, Biscuit goes to ridiculous lengths to restore his roar. + Children + + + TVY + + + + Bluey + Chest; Omelette; Pass the Parcel + Dad tries to teach Bluey how to play chess, but Mom thinks she is still too young; Bingo helps Mom make an omelette for Dad's birthday; Lucky's Dad is outraged that modern Pass the Parcel has a present in every layer. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Mickey Mouse Mixed-Up Adventures + Goofy's Hot Dog Harvest; Puppy Birthday to You! + Goofy grows a hot dog tree with the help of Pete and his potent fertilizer; the Happy Helpers throw Bitsy Beagleberg's puppy, Phoebe, a birthday party. + Animated + Children + + + TVY + + + + Mickey Mouse Mixed-Up Adventures + Where's Mickey?; Cuckoo in Hot Dog Hills! + Mickey must turn lemons into lemonade while having. + Animated + Children + + + TVY + + + + Bluey + Bedroom; Perfect; Obstacle Course + Bluey gets her own room; Bluey wants her Father's Day card to be perfect; Mum sets up a backyard obstacle course just for fun. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + The Doctor; The Claw; Markets + Honey's trip to Dr. Bingo keeps getting interrupted; Mum and Dad create their own Magic Claw machine; Bluey takes her tooth fairy money to the market. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Library; Swim School; Bin Night + Muffin plays the game of library her way; Mum, Dad and Bingo must pass swim school; Bluey, Bingo and Dad always take out the bins. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Bus / Mum School / Piggyback + The Heelers play a game of 'Bus'; Mum and Bluey play 'Mum School' where Mum teaches Bluey how to corral her rowdy kids; Bingo decides she's too tired to walk and needs a piggyback. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Bingo + Bingo has to learn how to play by herself when Bluey has a play date with Chloe. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Mickey and the Roadster Racers + Hi, Jinx!; Pete's Junkyard Helpers + Mickey and Emmy Lou meet Jinx the cat and get the gang to help find the kitty a new home; the Happy Helpers run Pete's junkyard while he takes his Mama to lunch for her birthday. + Animated + Children + + + TVY + + + + Mickey and the Roadster Racers + Stop Lazlo!; The Hot Diggity Dog Show + Heist's cat gets in the way when the commander attempts to steal Von Drake's Smarty Hat; the Happy Helpers groom pets for The Hot Doggity Dog Show. + Animated + Children + + + TVY + + + + Mickey Mouse Clubhouse + Daisy's Pony Tale + A new invention causes Daisy's adorable ponytail to grow even longer; the group is unsure of how it happened. + + Bret Iwan + Russi Taylor + Bill Farmer + + Animated + Children + + + TVY + + + + Mickey Mouse Clubhouse + Goofy's Goofbot + Goofy builds a stronger, smarter robot version of himself. + + Wayne Allwine + Russi Taylor + Bill Farmer + + Animated + Children + + + TVY + + + + Bluey + Phones; Pavlova; Rain + Bluey and Bingo play restaurant with Grandad; the kids play Café so Bingo can eat Pavlova; Bluey tracks mud into the house. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Backpackers + Mom and Dad set out on an adventure and decide to wear the kids as backpacks; everything is going great until they misplace their passports. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + The Quiet Game / Postman / Cafe + Bluey and Bingo play The Quiet Game; when Mum and Dad have a disagreement, Bluey makes Dad write a love letter to Mum; in the park, Bluey meets a new playmate, Winnie. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Bluey + Unicorse; Born Yesterday; Curry Quest + The adventures of a Blue Heeler puppy, Bluey, who lives with her mother, father and sister; her energy and lovable spirit gets her into all kinds of funny and unpredictable situations. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVY + + + + Bluey + Puppets + Bluey and Bingo teach Unicorse proper manners so he can ask Mum on a date; things go awry when Unicorse eats a tick. + + David McCormack + Melanie Zanetti + Dan Brumm + + Animated + Children + + + TVG + + + + Mickey Mouse Funhouse + Tooth or Consequences! / The Heroic Games + The tooth fairy needs help collecting the large and heavy tooth of Woodsman Willie; Pete the Mighty competes in the Heroic Games and underestimates Saiya, a short Mayan hero. + + Bret Iwan + Kaitlyn Robrock + Tony Anselmo + + Animated + Children + + + TVG + + + + Mickey Mouse Mixed-Up Adventures + Mickey's Thanksgiving Family Fun Race!; Happy Thanksgiving Helpers! + Mickey and the gang race Thanksgiving-themed racers; Minnie, Daisy and Cuckoo Loca invite all of their friends for Thanksgiving dinner. + Animated + Children + + + TVY + + + + Mickey Mouse Clubhouse + Mickey's Big Surprise + Mickey rewards his friends with fireworks when they solve his puzzles. + + Wayne Allwine + Russi Taylor + Bill Farmer + + Animated + Children + + + TVY + + + + Mickey Mouse Funhouse + 3:10 to Rocky Road / Please and Thank You + To help them find out if dragons are good or bad, Funny takes Mickey, Minnie, and their friends to the Kingdom of Majestica, where they are transformed into knights, knaves, and princesses. + + Bret Iwan + Kaitlyn Robrock + Tony Anselmo + + Animated + Children + + + TVG + + + + Mickey Mouse Funhouse + The Fantabulous Five (Plus One)!; Mickey Meets RocketMouse! + Funny takes the friends somewhere they can have superpowers; Mickey's hero, Rocket Mouse, invites Mickey and friends to join his team of mouse-stronauts on a great adventure. + + Bret Iwan + Kaitlyn Robrock + Tony Anselmo + + Animated + Children + + + TVG + + + + Dino Ranch + Bathtime for Bopper; Min Flies Solo + Clover is eager to help Min bathe the dino-mites, but stubborn Bopper wants to stay dirty; when Maggie hurts her wing, Min needs to copy Jon and Miguel's skills to help her. + Children + + + TVY + + + + Disney Family Movies On Demand + Specials + Performing Arts + + + + Disney Family Movies On Demand + Specials + Performing Arts + + + + Disney Family Movies On Demand + Specials + Performing Arts + + + + Disney Family Movies On Demand + Specials + Performing Arts + + + + Disney Family Movies On Demand + Specials + Performing Arts + + + + Disney Family Movies On Demand + Specials + Performing Arts + + + + Disney Family Movies On Demand + Specials + Performing Arts + + + + Disney Family Movies On Demand + Specials + Performing Arts + + + + Disney Family Movies On Demand + Specials + Performing Arts + + + + Disney Family Movies On Demand + Specials + Performing Arts + + + + Disney Family Movies On Demand + Specials + Performing Arts + + + + Disney Family Movies On Demand + Specials + Performing Arts + + + + Disney Family Movies On Demand + Specials + Performing Arts + + + + Disney Family Movies On Demand + Specials + Performing Arts + + + + Disney Family Movies On Demand + Specials + Performing Arts + + + + Disney Family Movies On Demand + Specials + Performing Arts + + + + Disney Family Movies On Demand + Specials + Performing Arts + + + + Disney Family Movies On Demand + Specials + Performing Arts + + + + Disney Family Movies On Demand + Specials + Performing Arts + + + + Disney Family Movies On Demand + Specials + Performing Arts + + + + Disney Family Movies On Demand + Specials + Performing Arts + + + + Disney Family Movies On Demand + Specials + Performing Arts + + + + Disney Family Movies On Demand + Specials + Performing Arts + + + + Disney Family Movies On Demand + Specials + Performing Arts + + + + Disney Family Movies On Demand + Specials + Performing Arts + + + + Disney Family Movies On Demand + Specials + Performing Arts + + + + Disney Family Movies On Demand + Specials + Performing Arts + + + + Kiff + Brunch DJ; Career Day + Kiff and Barry investigate where Barry's brother goes when he skips class; Kiff and Barry get summer jobs at the city hall to help the citizens of Table Town in any way they can. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Hailey's on It! + Kristine-ceañera; The Puffle Kerfuffle + Kristine's dad takes over her quinceañera and replaces Scott as her waltz partner; Hailey must reunite an estranged childhood singing duo but begins to worry about her and Scott's relationship and future. + + Auli'i Cravalho + Manny Jacinto + Gary Anthony Williams + + Animated + Children + + + TVY + + + + Hailey's on It! + Flippin' Out; Smells Like Queen Spirit + Hailey joins the cheerleading squad to earn an easy varsity letter, but quickly realizes she's underestimated the skill and spirit it takes to cheerlead; Hailey must defeat a chaos bot while winning the school's Crab Queen Pageant. + + Auli'i Cravalho + Manny Jacinto + Gary Anthony Williams + + Animated + Children + + + TVY7 + + + + Hailey's on It! + Seas the Day; Kissed Opportunities + Hailey brings Scott to Catalina Island to get him out of an uncharacteristically mopey funk; when Hailey throws a party, she sees an opportunity to kiss Scott as part of a harmless game. + + Auli'i Cravalho + Manny Jacinto + Gary Anthony Williams + + Animated + Children + + + TVY7 + + + + Hamster & Gretel + Comic Shop CopyCat; Neigh, It Ain't So! + Hamster and Gretel meet a cat villain and a horse man. + + Meli Povenmire + Michael Cimino + Beck Bennett + + Animated + Children + + + TVG + + + + Hamster & Gretel + Saturday Homecoming Fever; Dr. Eelgood + Hamster and Gretel must save the homecoming dance at the high school; Hamster and Gretel encounter a mutant eel. + + Meli Povenmire + Michael Cimino + Beck Bennett + + Animated + Children + + + TVG + + + + Hamster & Gretel + The Opposite of Smart; Birthday Besties + Churro becomes an internet sensation; Gretel has her hands full at Bailey's birthday party. + + Meli Povenmire + Michael Cimino + Beck Bennett + + Animated + Children + + + TVG + + + + Marvel's Moon Girl and Devil Dinosaur + Teacher's Pet + When Devil gets jealous of sharing Lunella with her class hamster and accidentally sets the animal free, he must search New York City to bring the furry friend home. + + Diamond White + Fred Tatasciore + Alfre Woodard + + Comedy + Animated + + + TVG + + + + Marvel's Moon Girl and Devil Dinosaur + Skip Ad...olescense + Lunella creates a device that allows her to fast-forward through mundane chores and tasks, but she struggles to handle the unexpected side effects. + + Diamond White + Fred Tatasciore + Alfre Woodard + + Comedy + Animated + + + TVY7 + + + + Kiff + I Like to Move It; Hive Got an Idea + Kiff and Barry agree to move a piano for Helen in exchange for a wish, but can't agree on the wish; Kiff shows a new kid around school but can't stop his family from interfering. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Kiff + You Can't Handle the Tooth; Blooper Quest + Kiff has a lot to do today, but brushing her tooth is not on the list; Kiff, Barry and the crew set out to make a movie so they can have a fun blooper reel, but blooping is hard. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Kiff + When You Mow You Mow; Harry's Maturity Crisis + Reggie is the first kid in Table Town to mow his own lawn, and Kiff wants to be the second; when Harry runs away, Barry and Kiff do anything they can to bring him back. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Kiff + Silly Moods; Chatterly vs. Chatterly + A trip to Table Town Museum is threatened when Kiff and Barry get into a silly mood; when a leftover slice of pizza goes missing in the Chatterley home, they must settle the matter in family court. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + The Ghost and Molly McGee + Faint of Art; A Soda to Remember + When Sharon has artist's block, Molly and the family take away all her distractions; when Scratch recalls a rare soda from his past life, Molly is determined to get it for him. + + Ashly Burch + Dana Snyder + Jordan Klepper + + Animated + Children + + + TVY7 + + + + The Ghost and Molly McGee + A Period Place; It's Always Sunny in Sunnyland + When Libby gets her period before Molly does, Molly feels out of sync with her best friend; when the McGees' vacation gets canceled, Molly creates a staycation instead. + + Ashly Burch + Dana Snyder + Jordan Klepper + + Animated + Children + + + TVY7 + + + + Gravity Falls + The Legend of the Gobblewonker + When Dipper and Mable hear rumors of a sea monster living in the lake, they want to prove it. + + Jason Ritter + Kristen Schaal + Alex Hirsch + + Animated + Children + + + TVY7 + + + + Gravity Falls + The Hand That Rocks the Mabel + Dipper and Mabel find a new neighbor, a psychic kid named Lil' Gideon. + + Jason Ritter + Kristen Schaal + Alex Hirsch + + Animated + Children + + + TVY7 + + + + Gravity Falls + The Inconveniencing + When Dipper tries to impress Wendy by acting older than he really is, he's invited to join a group of teenagers. + + Jason Ritter + Kristen Schaal + Alex Hirsch + + Animated + Children + + + TVY7 + + + + Gravity Falls + Headhunters + Dipper and Mabel set out to find out who tampered with Mabel's statue. + + Jason Ritter + Kristen Schaal + Alex Hirsch + + Animated + Children + + + TVY7 + + + + Gravity Falls + Tourist Trapped + Young twins Dipper and Mabel Pines arrive to spend their summer break with their uncle. + + Jason Ritter + Kristen Schaal + Alex Hirsch + + Animated + Children + + + TVY7 + + + + Gravity Falls + Dipper vs. Manliness + Dipper travels into the forest to battle the notorious Multi-Bear in a quest to attain manliness. + + Jason Ritter + Kristen Schaal + Alex Hirsch + + Animated + Children + + + TVY7 + + + + Gravity Falls + The Time Traveler's Pig + Dipper, wishing he could go back in time and undo a mistake he made, discovers a time machine. + + Jason Ritter + Kristen Schaal + Alex Hirsch + + Animated + Children + + + TVY7 + + + + Gravity Falls + Irrational Treasure + When Dipper and Mabel discover that the town founder is a hoax, they set out to expose the cover-up. + + Jason Ritter + Kristen Schaal + Alex Hirsch + + Animated + Children + + + TVY7 + + + + Gravity Falls + Double Dipper + When Stan throws a big weekend party to promote the Mystery Shack, Dipper uses an off-kilter copy machine to make clones of himself so he can impress Wendy. + + Jason Ritter + Kristen Schaal + Alex Hirsch + + Animated + Children + + + TVY7 + + + + Gravity Falls + Fight Fighters + After Wendy's boyfriend Robbie challenges Dipper to a video game battle, he is shocked when his favorite playable fighter, Rumble McSkirmish, comes to life to defend him. + + Jason Ritter + Kristen Schaal + Alex Hirsch + + Animated + Children + + + TVY7 + + + + Gravity Falls + Little Dipper + Dipper is self-conscious that Mabel is taller than him so he seeks out a magic way to grow himself. + + Jason Ritter + Kristen Schaal + Alex Hirsch + + Animated + Children + + + TVY7 + + + + Bakugan + Fire in the Sky; Ready to Rampage + Before their next big Bakugan brawl, Dan Kouzo remembers how he first met Dragonoid a year ago, when Bakugans suddenly began falling to Earth. + + Mike Taylor + Carson Gale + Kyle Derek + + Animated + Children + + + TVY7 + + + + Beyblade Burst QuadStrike + Blazing Battles! Aether Stadium! + Something monumental is found hidden deep beneath the Grand Masquerade Bey Tournament's stage, and it might change the face of Blading forever. + Animated + Children + + + TVY7 + + + + Yu-Gi-Oh! SEVENS + Fish Fight + Gavin snaps a slacking employee into shape. + + Bryson Baugus + Abby Espiritu + Jake Paque + + Animated + Children + + + TVY7 + + + + The Super Hero Squad Show + This Man Thing, This Monster! + A powerless Iron Man attempts to help Man-Thing while stranded on a planet of monsters. + + Tom Kenny + Charlie Adler + Travis Willingham + + Animated + Children + + + TVY7 + + + + The Super Hero Squad Show + The Devil Dinosaur, You Say + Wolverine winds up on a world populated mainly by dinosaurs. + + Tom Kenny + Charlie Adler + Travis Willingham + + Animated + Children + + + TVY7 + + + + Big City Greens + Truck Stopped; Jingled + Tilly and Cricket wrestle with decision making at a truck stop between Big City and the country; Tilly rises through the ranks as a Big City jingle writer. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Stand-Up Bill; Green Trial + Cricket Green, a mischievous but optimistic country boy, moves to the big city with his family. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Bad Dad; Junk Junkie + Cricket and Tilly get to know their grandpa; Nancy scrambles to find him a job; desperate to ensure his family's future security, Bill becomes a hoarder. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Handshaken; Coffee Mates + After being mocked for his handshake, Cricket trains for a Western-style handshake duel; Gloria combines her work life and social life by hiring her friends as employees. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Hailey's on It! + Scott's on a Roll; Bye Bye Birdies + In a competition where the winner has a sandwich named after them, Hailey is pitted against Scott; when Hailey must be truthful for a day, she ends up delivering a comedy roast. + + Auli'i Cravalho + Manny Jacinto + Gary Anthony Williams + + Animated + Children + + + TVY + + + + Hailey's on It! + Frankly Fabulous; The Pin Is Mightier Than the Swole + Hailey enters Frank the Flamingo into a bird show, and they run into his former mean trainer; expert bowler Hailey struggles with a list item that requires her to lose to her dad at bowling. + + Auli'i Cravalho + Manny Jacinto + Gary Anthony Williams + + Animated + Children + + + TVY + + + + Marvel's Moon Girl and Devil Dinosaur + Run the Rink + When Lunella runs the rink for a night, she agrees to Casey's get-rich-quick scheme, which threatens Moon Girl's reputation and her family's beloved business. + + Diamond White + Fred Tatasciore + Alfre Woodard + + Comedy + Animated + + + TVG + + + + Marvel's Moon Girl and Devil Dinosaur + Check Yourself + When Lunella loses a game of chess against a supercomputer, her obsession with winning drives the frustrated computer to program every device in the school to attack her. + + Diamond White + Fred Tatasciore + Alfre Woodard + + Comedy + Animated + + + TVY7 + + + + Marvel's Moon Girl and Devil Dinosaur + Hair Today, Gone Tomorrow + When Lunella creates a chemical to change her hair, she accidentally turns her mane into a vengeful villain that vows to ruin her. + + Diamond White + Fred Tatasciore + Alfre Woodard + + Comedy + Animated + + + TVG + + + + Kiff + Big Barry on Campus; Club Book + A computer error moves Barry into high school, forcing Kiff to follow; Kiff thinks the library should be loud, but it quickly backfires. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Kiff + Kiff's Mix; Kiff's on a Plane + Kiff finally meets her mom's old college friends. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Kiff + Farley; Two for One Hot Dogs + While babysitting Barry's younger brother, Kiff accidentally stains his favorite stuffed toy. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Big City Greens + Friend Con; Flimflammed + Chip Whistler and Bill hit it off and become friends at Farm Con; Cricket stumbles into having $100 and immediately buys into a pyramid scheme. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Gabriella's Fella; Cheap Show + When Cricket's crush returns, Remy takes the opportunity to help Cricket get to know her; the family wants to visit a street fair, but Bill wants to stay home to save money. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Times Circle; Super Gramma + Tilly and Remy put on a play while Cricket meets his favorite heroes; when Gramma temporarily loses her eyesight, Cricket and Tilly try to help her. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Hailey's on It! + The Last Stand; The Show Must Go Wrong + Hailey and her dad enter Oceanside's sandcastle building contest, but a cheating A.C. goads her into a medieval war; when the star of the school musical injures herself, Hailey must overcome her fear of performing in front of an audience. + + Auli'i Cravalho + Manny Jacinto + Gary Anthony Williams + + Animated + Children + + + TVG + + + + Hailey's on It! + Beta'd and Hooked; The Wild, Wild Mess + Hailey and Scott set sail on the high seas; Hailey becomes a sheriff in the Wild West. + + Auli'i Cravalho + Manny Jacinto + Gary Anthony Williams + + Animated + Children + + + TVG + + + + Hailey's on It! + Catching Felines; It's All Gonna Be OK-Pop + Hailey befriends Becker; Hailey goes to a concert. + + Auli'i Cravalho + Manny Jacinto + Gary Anthony Williams + + Animated + Children + + + TVG + + + + Hailey's on It! + Road Trippin'; Escape Doom + Kristine feels like the third wheel after she unexpectedly joins Scott and Hailey on a road trip; Hailey must lead her friends out of an Egyptian-themed escape room that chaos bots have rigged to crush. + + Auli'i Cravalho + Manny Jacinto + Gary Anthony Williams + + Animated + Children + + + TVG + + + + Marvel's Moon Girl and Devil Dinosaur + Today, I Am a Woman + Hoping to help Casey have an epic bat mitzvah, Lunella makes an appearance as Moon Girl, which ultimately brings out the worst in Casey and causes a rift in their friendship. + + Diamond White + Fred Tatasciore + Alfre Woodard + + Comedy + Animated + + + TVG + + + + Marvel's Moon Girl and Devil Dinosaur + Devil on Her Shoulder + Feeling insecure about his size, Devil convinces Lunella to create a potion to make him temporarily small. + + Diamond White + Fred Tatasciore + Alfre Woodard + + Comedy + Animated + + + TVG + + + + Marvel's Moon Girl and Devil Dinosaur + Coney Island, Baby! + Lunella must confront her childhood fear, the Coney Island Funhouse, to save Mimi from The Beyonder. + + Diamond White + Fred Tatasciore + Alfre Woodard + + Comedy + Animated + + + TVY7 + + + + Gravity Falls + Tourist Trapped + Young twins Dipper and Mabel Pines arrive to spend their summer break with their uncle. + + Jason Ritter + Kristen Schaal + Alex Hirsch + + Animated + Children + + + TVY7 + + + + Gravity Falls + The Legend of the Gobblewonker + When Dipper and Mable hear rumors of a sea monster living in the lake, they want to prove it. + + Jason Ritter + Kristen Schaal + Alex Hirsch + + Animated + Children + + + TVY7 + + + + Gravity Falls + Fight Fighters + After Wendy's boyfriend Robbie challenges Dipper to a video game battle, he is shocked when his favorite playable fighter, Rumble McSkirmish, comes to life to defend him. + + Jason Ritter + Kristen Schaal + Alex Hirsch + + Animated + Children + + + TVY7 + + + + Gravity Falls + Double Dipper + When Stan throws a big weekend party to promote the Mystery Shack, Dipper uses an off-kilter copy machine to make clones of himself so he can impress Wendy. + + Jason Ritter + Kristen Schaal + Alex Hirsch + + Animated + Children + + + TVY7 + + + + Gravity Falls + Boss Mabel + When Mabel questions the way Stan runs the Shack, he challenges her to a bet. + + Jason Ritter + Kristen Schaal + Alex Hirsch + + Animated + Children + + + TVY7 + + + + Gravity Falls + Carpet Diem + Mabel and Dipper stumble upon a hidden room inside the Mystery Shack. + + Jason Ritter + Kristen Schaal + Alex Hirsch + + Animated + Children + + + TVY7 + + + + Hailey's on It! + Sight for Dinosaur Eyes; Along for the Slide + Hailey ditches Scott at a dinosaur show to build a mystery gadget from The Professor; Becker schemes to ride a condemned alpine slide but must endure her school rival, Kennedy. + + Auli'i Cravalho + Manny Jacinto + Gary Anthony Williams + + Animated + Children + + + TVY7 + + + + Hailey's on It! + Leather Jacket Hailey; In a Pinch + Hailey finds a leather jacket that brings out her rebellious side; when Hailey gets distracted by her list item instead of babysitting the school mascot, she lands herself in hot water. + + Auli'i Cravalho + Manny Jacinto + Gary Anthony Williams + + Animated + Children + + + TVY + + + + Hailey's on It! + The Fart of War; Who Let the Dogs Out? (Hailey) + When Scott has an idea for a social media filter, A.C. claims the idea as his own; after Hailey reads an online rumor about Dingles Chips, she, Scott and Beta go to the factory to expose the truth. + + Auli'i Cravalho + Manny Jacinto + Gary Anthony Williams + + Animated + Children + + + TVY + + + + Hailey's on It! + Beta's Gonna Hate; the A-maize-ing Maze + Beta suspects Alphred, a cleaning robot, is a chaos bot spy, but Hailey and Scott aren't so sure; Hailey and Beta ditch Scott to complete a complicated corn maze on their own. + + Auli'i Cravalho + Manny Jacinto + Gary Anthony Williams + + Animated + Children + + + TVY + + + + Phineas and Ferb + Excaliferb! + Phineas and Ferb set off to find the legendary sword, Excaliferb in order to defeat an evil sorcerer named Millifishmirtz. + + Vincent Martella + Thomas Sangster + Ashley Tisdale + + Animated + Children + + + TVG + + + + Phineas and Ferb + Monster From the Id; Gi-Ants + Candace tries to recreate a gift. + + Vincent Martella + Thomas Sangster + Ashley Tisdale + + Animated + Children + + + TVG + + + + Phineas and Ferb + Agent Doof; Phineas and Ferb and the Temple of Juatchadoon + Doof claims to have had an epiphany; Ohio Flynn and Rhode Island Fletcher set off to South America. + + Vincent Martella + Thomas Sangster + Ashley Tisdale + + Animated + Children + + + TVG + + + + Phineas and Ferb + Delivery of Destiny; Let's Bounce + Paul the Delivery Man on a journey. + + Vincent Martella + Thomas Sangster + Ashley Tisdale + + Animated + Children + + + TVG + + + + Marvel's Avengers Assemble + The Age of Tony Stark + The Time Stone becomes attached to Tony's arc reactor and it causes a bad reaction. + + Adrian Pasdar + Fred Tatasciore + Roger Craig Smith + + Animated + Children + + + TVY7 + + + + Marvel's Avengers Assemble + Head to Head + The team is put to the test as they are forced to swap minds. + + Adrian Pasdar + Fred Tatasciore + Roger Craig Smith + + Animated + Children + + + TVY7 + + + + Marvel's Avengers Assemble + The Dark Avengers + In a reality that's been flipped, the Avengers discover that their world has been reshaped by the Reality Stone, wielded by the Squadron Supreme, who are the heroes of this new reality, turning the Avengers into the villains. + + Adrian Pasdar + Fred Tatasciore + Roger Craig Smith + + Animated + Children + + + TVY7 + + + + Marvel's Avengers Assemble + Back to the Learning Hall + Thor and the Avengers discover they must defeat Loki and prevent Earth and Asgard from crashing into one another. + + Adrian Pasdar + Fred Tatasciore + Roger Craig Smith + + Animated + Children + + + TVY7 + + + + Marvel's Spider-Man: Maximum Venom + Web of Venom + When Spider-Man and Max Modell experiment on a sample of the Venom symbiote to advance the medical industry, the symbiote escapes and unleashes a weapon of unknown purpose. + Animated + Children + + + TVY7 + + + + Marvel's Spider-Man: Maximum Venom + Amazing Friends + Toddler Groot lands on Earth to deliver an urgent warning to Spider-Man, who must decode the alien's message and keep him out of the evil clutches of A.I.M. and Baron Mordo. + Animated + Children + + + TVY7 + + + + Big City Greens + Space Chicken; Steak Night + To impress his new neighbors, Cricket attempts to launch a chicken into space; the Greens are excited to continue their traditional monthly steak dinner, but Cricket accidentally loses the steaks on the subway. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Swimming Fool; Tilly's Goat + When the Greens visit an indoor pool, Cricket is challenged to jump off the high dive; Tilly claims that the family's goat has the spirit of a dog, and enters it in a dog show. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Gridlocked; Mama Bird + Bill takes the family on a road trip to the country, only to wind up trapped in a traffic jam; when Tilly finds a bird's nest, she cares for the eggs hoping the chicks will think she's their mother, but the birds imprint on Cricket instead. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Welcome Home; Raccooned + Cricket Green and his family move from the country to Big City to live with Gramma; when Cricket and Bill accidentally disturb a nest of raccoons in the garage, they invade the house. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Fill Bill; Critterball Crisis + While dining at a seafood restaurant, Bill feels he must prove to the waiter that he is a Big City local, and Cricket and Tilly try to rescue a live octopus; when Cricket loses all of his critterballs over the fence, Gloria refuses to return them. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Gargoyle Gals; Supermarket Scandal + To impress her new friend, Tilly claims she saw stone gargoyles come to life; Cricket makes a deal to sell Bill's produce to a major grocery chain. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Family Legacy; Paint Misbehavin' + Gramma tells Cricket and Tilly that there's treasure buried on their property; Cricket adds his own doodles to Gloria's abstract paintings. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Breaking News; Cyberbullies + Cricket invites the local news to see the huge watermelon Bill grew; Cricket stands up to the cyberbullying of three online gamers known as the Cyber Knights. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Harvest Dinner; Winner Winner + Bill and Nancy prep a special harvest dinner while Cricket and Gramma race Tilly to get a missing ingredient; at the local community center, Tilly wants to win a trophy and begins training with the center's director. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Hurty Tooth; Sleepover Sisters + The Greens go on a family visit to the dentist's office, where Cricket is determined to avoid Dr. Enamel and power through his toothache. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Valentine's Dance; Green Streets + At the Valentine's Dance, Cricket develops an unwanted crush on Gabriella; Cricket joins forces with Officer Keys to hunt down a neighborhood litterbug. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Skunked; Axin' Saxon + Cricket stages a crisis by letting skunks into the cafe, but it gets out of control; Nancy accidentally destroys Saxon, but Tilly mistakenly directs her wrath at Gramma. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Cricket's Kapowie!; Car Trouble + Cricket earns a role in Big Coffee's new TV commercial but loses his confidence; Bill gets more than he bargained for when he trades in his pickup for a cutting-edge electric car. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Reckoning Ball; Clubbed + Chip Whistler returns to take revenge on the Greens, but is forced to apologize; Andromeda and Tilly follow Gloria to a club where they must. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Heat Beaters; Bill-iever + Cricket and Remy play a contentious game of H-O-R-S-E on the hottest day of the year; in order to avoid punishment, Cricket must make his rational dad believe in aliens. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Level Up; Wild Side + Bill gets addicted to a farm-simulating video game; Cricket's feral wild side takes over when Bill is unable to replicate their old camping trips. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Gravity Falls + Into the Bunker + Dipper's secret journal pages lead him and the gang to the author's hidden bunker where they find themselves face-to-face with a mysterious figure from Gravity Falls' lore. + + Jason Ritter + Kristen Schaal + Alex Hirsch + + Animated + Children + + + TVY7 + + + + Gravity Falls + The Golf War + Mabel challenges Pacifica to a miniature golf-off. + + Jason Ritter + Kristen Schaal + Alex Hirsch + + Animated + Children + + + TVY7 + + + + Beyblade Burst QuadStrike + Chivalry Unbound! Whirl Knight! + Adept bladers from around the globe compete in the Champion's Challenge Tournament, and this includes Valt's fellow BC Sol Blader, Kit Lopez. + Animated + Children + + + TVY7 + + + + Phineas and Ferb + When Worlds Collide; Road to Danville + Phineas and Ferb discover a strange planet is hurtling directly towards Danville; one of Dr. Doofenshmirtz's. + + Vincent Martella + Thomas Sangster + Ashley Tisdale + + Animated + Children + + + TVG + + + + Phineas and Ferb + Where's Perry? + Phineas and Ferb go on safari while Perry protects Danville from a new evil. + + Vincent Martella + Thomas Sangster + Ashley Tisdale + + Animated + Children + + + TVG + + + + Phineas and Ferb + Where's Perry? Part II + Agent P is nowhere in sight and Dr. Doofenshmirtz and Major Monogram square off against evil Carl. + + Vincent Martella + Thomas Sangster + Ashley Tisdale + + Animated + Children + + + TVG + + + + Phineas and Ferb + Blackout!; What'd I Miss? + Candace is in charge of the boys when the city loses electricity. + + Vincent Martella + Thomas Sangster + Ashley Tisdale + + Animated + Children + + + TVG + + + + Hamster & Gretel + Empower Failure; Oakey Dokey + Hamster and Gretel get superpowers from aliens while Kevin grapples with being superhero-adjacent; Kevin and Gretel disagree over how to stop a meteor. + + Meli Povenmire + Michael Cimino + Beck Bennett + + Animated + Children + + + TVY + + + + Hamster & Gretel + Recipe for Disaster; Math Punch + Kevin and Gretel have to rescue Family Dinner Night; Gretel faces off against a lightning-powered cowboy as Dave struggles to get Carolina the perfect anniversary gift. + + Meli Povenmire + Michael Cimino + Beck Bennett + + Animated + Children + + + TVG + + + + Gravity Falls + The Legend of the Gobblewonker + When Dipper and Mable hear rumors of a sea monster living in the lake, they want to prove it. + + Jason Ritter + Kristen Schaal + Alex Hirsch + + Animated + Children + + + TVY7 + + + + Gravity Falls + Headhunters + Dipper and Mabel set out to find out who tampered with Mabel's statue. + + Jason Ritter + Kristen Schaal + Alex Hirsch + + Animated + Children + + + TVY7 + + + + Hamster & Gretel + Nano a Nano; The Unnatural History of Dr. MedusaSaurus Ph.D + On a school trip to a robot factory, Gretel encounters a nanobot; Gretel and Bailey meet a strange paleontologist at a museum. + + Meli Povenmire + Michael Cimino + Beck Bennett + + Animated + Children + + + TVG + + + + Kiff + Halfway There Day; Be Still My Harp + Celebrating Halfway There Day, where everyone is supposed to celebrate mild laziness. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Kiff + Friendiversary; Totally Table Town + Gif swap; Kiff and the crew get lost. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Hailey's on It! + The Beginning of the Friend + Hailey tries to ride every ride at the county fair and makes a new friend. + + Auli'i Cravalho + Manny Jacinto + Gary Anthony Williams + + Animated + Children + + + TVG + + + + Hailey's on It! + The Last Stand; The Show Must Go Wrong + Hailey and her dad enter Oceanside's sandcastle building contest, but a cheating A.C. goads her into a medieval war; when the star of the school musical injures herself, Hailey must overcome her fear of performing in front of an audience. + + Auli'i Cravalho + Manny Jacinto + Gary Anthony Williams + + Animated + Children + + + TVG + + + + Hamster & Gretel + Let's Sea What You've Got; Churro's Day Out + Gretel and Bailey experiment with Gretel's powers at the beach; Churro has a day out while the family gets a portrait done. + + Meli Povenmire + Michael Cimino + Beck Bennett + + Animated + Children + + + TVG + + + + Hamster & Gretel + Nano a Nano; The Unnatural History of Dr. MedusaSaurus Ph.D + On a school trip to a robot factory, Gretel encounters a nanobot; Gretel and Bailey meet a strange paleontologist at a museum. + + Meli Povenmire + Michael Cimino + Beck Bennett + + Animated + Children + + + TVG + + + + Big City Greens + Desserted; The Gifted + Cricket treats his family to dinner, but Bill is suspicious about how he plans to pay for it; Tilly and Cricket battle to see if Bill lies about liking their Father's Day gifts. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Tilly Style; I, Farmbot + Tilly searches the mall for a new look to reflect her maturity; Cricket persuades Bill to buy a farming robot to get out of chores. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Greens' Acres; Dolled Up + Flashback: Young Bill will do whatever it takes to help keep the family farm in business; Tilly and Nancy enjoy Saxon's birthday at a fancy doll store. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Green Mirror; Cricket's Tickets + When the Greens visit BigTech, Tilly discovers a chance to improve her chaotic family; Cricket wins tickets to a show and must decide who to bring. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Kiff + Thirst to Be the First; The Fourth Bath + Kiff wants the first sip at a new water fountain and nothing will stop her; Kiff learns that Barry's family shares bathwater; Kiff is fourth in line. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Kiff + Pool Party; Road Trip + Helen agrees to cast a swim spell on Barry if Kiff introduces her to Candle's dad Roy Fox; a road trip goes awry when scary-looking bikers pursue the Chatterleys and Barry. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Hamster & Gretel + U.F. UH-OH! Part I; U.F. UH-OH! Part II + Kevin, Hamster and Gretel visit Las Vegas and encounter FistPuncher and The Destructress; as things in Vegas escalate, Hamster, Kevin and Gretel encounter the UFOs that gave them their powers and learn that much more sinister things are happening. + + Meli Povenmire + Michael Cimino + Beck Bennett + + Animated + Children + + + TVG + + + + Hamster & Gretel + Grounded; Sleepover With the Enemy + Gretel is grounded as a meat monster strikes; Gretel is suspicious of a new student in class. + + Meli Povenmire + Michael Cimino + Beck Bennett + + Animated + Children + + + TVG + + + + The Ghost and Molly McGee + Ice Princess; Ready, Set, Snow! + When a ghost causes an ice storm in Brighton, only Dad can save the town from eternal winter; Molly gets a snow day, but struggles to not see her way on the highway. + + Ashly Burch + Dana Snyder + Jordan Klepper + + Animated + Children + + + TVY7 + + + + The Ghost and Molly McGee + Innocent Until Proven Ghostly; Twin Trouble + Molly tries to prove Scratch's innocence when he's falsely accused of a crime; Dad struggles to stay true to himself when his twin siblings come to visit. + + Ashly Burch + Dana Snyder + Jordan Klepper + + Animated + Children + + + TVY7 + + + + Big City Greens + Present Tense; Hurt Bike + Cricket struggles to get the best birthday present for his best bud, Remy; due to a close call with a dirt bike, Cricket fearfully decides to live his life in shelter. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Chipocalypse Now Part 1; Chipocalypse Now Part 2 + Chip Whistler tears down the buildings around the Green's house to build a Wholesome Foods store. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Big Resolution; Winter Greens + On New Year's Eve, Cricket insists on helping Gloria complete her resolution of approaching her longtime crush, Kevin; Cricket and Remy challenge Vasquez to a snowball fight; Tilly creates a snowperson. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Date Night; The Room + Bill chaperones Cricket and Gabriella's first date; a disagreement between Cricket and Tilly turns into reality-TV-like entertainment for Gloria and Gramma. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Fast Foodie; Spaghetti Theory + Cricket tries to prove to Bill he can eat fast food for every meal; Tilly and Cricket debate whether the lives of people in Big City are connected. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + The Van; Bat Girl + Gramma and Cricket fume over an unsightly van parked in front of their house; Nancy joins Cricket and Tilly's Little League team to get back at their unsportsmanlike rivals. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Little Buddy; Zen Garden + Cricket mentors a wild child, and Tilly develops a cult following; Nancy tries to prove herself on the farm; Bill struggles to relax at a fancy spa with Gramma. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Green Greens; Truce Bomb + Tilly and Bill set off on an epic journey to recycle a fluorescent light bulb at an e-waste center; Tilly tries to solve a long-standing feud between Gramma and Mr. Grigorian. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + DependaBill; The Delivernator + Bill goes out of his way to get on a neighbor's good side; Cricket must prove himself worthy to avoid losing his delivery job to a robot. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Rembo; Dirt Jar + Remy is determined to be a martial arts warrior after freezing in the face of danger; Cricket's missing dirt jar prompts the story of when the Greens left their country farm. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Country Side; Junk Mountain + While Cricket shows Remy the fun of country life, Tilly seeks new sleeping arrangements; Cricket tries to win back his old country friend, Hector. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Pie Hard; Rat Tail + Brooke Dillman guest stars as diner owner Patti; Nancy tries to get Cricket to cut his new rat tail without admitting that she hates it. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Pizza Deliverance; Horse Girl + A pizza delivery girl from Big City must flee from a crazed country family; when Bill gets a horse for the day, Tilly must hide how much she secretly hates horses. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Honey Heist; Dog Mayor + The kids plan a heist to steal honey from Bill's beehive; Cricket and Remy run a campaign to get Phoenix the dog elected as mayor. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Long Goodbye + When the Greens return Gramma and Remy to Big City, they are determined to delay their goodbyes for as long as possible. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Truck Stopped; Jingled + Tilly and Cricket wrestle with decision making at a truck stop between Big City and the country; Tilly rises through the ranks as a Big City jingle writer. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Bad Dad; Junk Junkie + Cricket and Tilly get to know their grandpa; Nancy scrambles to find him a job; desperate to ensure his family's future security, Bill becomes a hoarder. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Iced; Chipped Off + Gramma butts heads with Nick when he crashes her special family hockey outing; Chip Whistler recounts what happened to him since. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Cricket Versus; Blue Tater + Cricket must wrestle a wild animal in order to prove himself worthy of the family name; when Cricket persuades Bill to convert his pickup into a french fry food truck, he discovers a mysterious blue potato that Gramma says is cursed with bad luck. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Gramma's License; Bear Trapped + When Gramma crashes into a parked police car, she loses her driver's license and her confidence; Cricket Green hates bears. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Gravity Falls + Scary-oke + The Pines family resolves to get back to normal after the Lil' Gideon incident by throwing a party. + + Jason Ritter + Kristen Schaal + Alex Hirsch + + Animated + Children + + + TVY7 + + + + Gravity Falls + Soos and the Real Girl + Soos needs a date and looks into a dating simulator. + + Jason Ritter + Kristen Schaal + Alex Hirsch + + Animated + Children + + + TVY7 + + + + Beyblade Burst QuadStrike + Wild Dash! Battle Marathon! + The Champion's Challenge Tournament keeps spinning, but one important face is missing, since the Dark Prince is nowhere to be seen. + Animated + Children + + + TVY7 + + + + The Ghost and Molly McGee + The New (Para)Normal + When a new family moves in across the street, the McGees are put in a sticky situation; Scratch avoids his duties in the ghost world. + + Ashly Burch + Dana Snyder + Jordan Klepper + + Animated + Children + + + TVY7 + + + + The Ghost and Molly McGee + Book Marks the Sprite; Double, Double, Darryl & Trouble + Molly must distract Ollie while Scratch attempts to capture the Story Sprite; Darryl becomes a ghost for the day. + + Ashly Burch + Dana Snyder + Jordan Klepper + + Animated + Children + + + TVY7 + + + + The Ghost and Molly McGee + Faint of Art; A Soda to Remember + When Sharon has artist's block, Molly and the family take away all her distractions; when Scratch recalls a rare soda from his past life, Molly is determined to get it for him. + + Ashly Burch + Dana Snyder + Jordan Klepper + + Animated + Children + + + TVY7 + + + + The Ghost and Molly McGee + A Period Place; It's Always Sunny in Sunnyland + When Libby gets her period before Molly does, Molly feels out of sync with her best friend; when the McGees' vacation gets canceled, Molly creates a staycation instead. + + Ashly Burch + Dana Snyder + Jordan Klepper + + Animated + Children + + + TVY7 + + + + Hamster & Gretel + Superhero Sibling Rivalry; Close Shave + Gretel battles twin villains on her own; Gretel's. + + Meli Povenmire + Michael Cimino + Beck Bennett + + Animated + Children + + + TVG + + + + Hamster & Gretel + Cheer Cheer Bang Bang; La Ballad of La Cebolla + Fred goes deep undercover as a cheerleader; Gretel and Kevin meet a villain with a unique ability. + + Meli Povenmire + Michael Cimino + Beck Bennett + + Animated + Children + + + TVG + + + + Gravity Falls + The Inconveniencing + When Dipper tries to impress Wendy by acting older than he really is, he's invited to join a group of teenagers. + + Jason Ritter + Kristen Schaal + Alex Hirsch + + Animated + Children + + + TVY7 + + + + Gravity Falls + The Hand That Rocks the Mabel + Dipper and Mabel find a new neighbor, a psychic kid named Lil' Gideon. + + Jason Ritter + Kristen Schaal + Alex Hirsch + + Animated + Children + + + TVY7 + + + + Marvel's Moon Girl and Devil Dinosaur + Run the Rink + When Lunella runs the rink for a night, she agrees to Casey's get-rich-quick scheme, which threatens Moon Girl's reputation and her family's beloved business. + + Diamond White + Fred Tatasciore + Alfre Woodard + + Comedy + Animated + + + TVG + + + + Kiff + Principal Dance Socks + Kiff and her classmates from Table Town school go on a field trip to the aquarium. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Kiff + Hat; Lost and Found + Kiff loses a hat that gave Barry a confidence boost and attempts to recover it; Kiff and Barry try to return a lost journal without exposing its deeply personal entries. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Hailey's on It! + Beta'd and Hooked; The Wild, Wild Mess + Hailey and Scott set sail on the high seas; Hailey becomes a sheriff in the Wild West. + + Auli'i Cravalho + Manny Jacinto + Gary Anthony Williams + + Animated + Children + + + TVG + + + + Hailey's on It! + Catching Felines; It's All Gonna Be OK-Pop + Hailey befriends Becker; Hailey goes to a concert. + + Auli'i Cravalho + Manny Jacinto + Gary Anthony Williams + + Animated + Children + + + TVG + + + + Hamster & Gretel + Over the Hill; The Ice Queen Cometh + When Gretel and Bailey follow reporter Veronica Hill for career day, they encounter an old foe, Van Dyke, out for revenge; Kevin and Gretel try to beat the heat at the town's newest ice cream parlor. + + Meli Povenmire + Michael Cimino + Beck Bennett + + Animated + Children + + + TVY7 + + + + Hamster & Gretel + La Sombrerona; Two Girls, a Guy, and the Council of Düm + A mysterious woman infiltrates an amusement park; Bailey and Gretel spend the day at Nordle's house. + + Meli Povenmire + Michael Cimino + Beck Bennett + + Animated + Children + + + TVY7 + + + + Big City Greens + Cricketsitter; Backflip Bill + Bill takes Gramma to a doctor's checkup and leaves Tilly in charge of Cricket; Cricket learns that Bill never realized his childhood dream of becoming a gymnast. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Photo Op; Remy Rescue + Bill promises his family a trip to the mall food court, but when he reveals it was just a trick to get them to a family portrait studio, Cricket and Gramma try to escape; Remy is caught skipping his violin lessons to hang out with Cricket. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Parade Day; DIY Guys + Cricket leaves Gloria to work the coffee shop alone while he enjoys the parade on his break; Bill uses a trip to the hardware store to teach Remy a lesson in self-reliance. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Barry Cuda; Suite Retreat + Cricket uses his first tip from working at Big Coffee to buy a singing toy fish; Gramma kicks the family out of the house for the day, so they stay in a hotel for the first time. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Kiff + Brunch DJ; Career Day + Kiff and Barry investigate where Barry's brother goes when he skips class; Kiff and Barry get summer jobs at the city hall to help the citizens of Table Town in any way they can. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Kiff + The Five Pigeons of the Acapellapocalypse; Leave a LittleJuice + Kiff unleashes five forces of chaos; Helen is the only one who can help; Kiff needs to have a difficult discussion with Barry about finishing Martin's orange juice. + + Kimiko Glenn + Michael Croner + + Animated + Comedy + + + + Hamster & Gretel + Friday Night Fright; The Earworm + Hiromi and Fred encounter robots at the school; a new breakfast cereal TV jingle hypnotizes people. + + Meli Povenmire + Michael Cimino + Beck Bennett + + Animated + Children + + + TVG + + + + Hamster & Gretel + A Mammoth Problem; The Bantam of the Elementary School Light Opera + When Gretel and her pet hamster -- named Hamster -- get superpowers, older brother Kevin must work with them to figure out how to protect their city from mysterious dangers. + + Meli Povenmire + Michael Cimino + Beck Bennett + + Animated + Children + + + TVG + + + + The Ghost and Molly McGee + Goat Your Own Way; A Very Hungry Ghost + Molly insists on training an unruly goat the Molly way; when the McGees celebrate a Thai holiday about feeding hungry ghosts, Scratch tries to keep the feast all to himself. + + Ashly Burch + Dana Snyder + Jordan Klepper + + Animated + Children + + + TVY7 + + + + The Ghost and Molly McGee + Scare Tactics; The Bad Boy Bobby Daniels + When Scratch ditches class to goof off with Geoff, he struggles to pass his Scare Test; Molly and Scratch try to reunite Patty with her old flame, the bad boy Bobby Daniels. + + Ashly Burch + Dana Snyder + Jordan Klepper + + Animated + Children + + + TVY7 + + + + Big City Greens + Rated Cricket; Homeshare Hoedown + On the trip to Big City movie multiplex, Cricket thinks he's too mature for a kids' movie, so he sneaks into a grown-up movie; Cricket registers his house on a home share website. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Cricket's Shoes; Feud Fight + When Cricket gets sick, his family steps in to fulfill his commitments for the day; the Green family's nemesis Chip Whistler shows up at the farmers' market in an attempt to steal business from them. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Tilly Tour; Dinner Party + Tilly takes Gramma out to be a tourist for a day; Cricket and Remy arrange a dinner party for everyone to get to know each other. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Coffee Quest; Phoenix Rises + When Big City faces a coffee bean shortage, Cricket and Gloria's boss, Ms. Cho, challenges them to retrieve one of the few remaining sacks of coffee; when the Greens' dog, Phoenix, runs away from home, the family sets out to find her. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Night Bill; Cheap Snake + When Bill sneaks out at night with a mysterious duffel bag, the kids hide in his truck to see where he goes; Cricket impulsively buys a giant pet snake. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Hiya Henry; People Watching + Tilly tries ventriloquism for the Big Coffee open mic night; the family plays the people-watching game, making up stories about city folk passing by. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Trailer Trouble; Mansion Madness + When Nancy's trailer is stolen by her old biker gang, the kids resolve to get it back; Cricket house-sits for Remy, but things go awry when the rest of the Greens visit. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Park Pandemonium; Cricket's Biscuits + Gramma spurns Tilly at the city park, so Tilly tries making her jealous; Gramma makes special biscuits for the kids when they're hurt, but won't make more when they're better. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Cricket's Place; Volunteer Tilly + When Remy and Cricket get their own apartment, they discover that nonstop fun leads to chaos; Tilly volunteers at the animal shelter but doesn't want to part with any of the animals. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Urban Legend; Wishing Well + When Bill learns that Gramma has been purposely creating a frightening reputation around town, he throws a barbeque to befriend the neighbors; Cricket's scheme to cash in on a wishing well snares Tilly, leaving Cricket with a dilemma. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Elevator Action; Bad Influencer + Gloria gets stuck on an elevator with the Greens; Remy falls under the sway of an internet influencer. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Impopstar; Football Camp + Cricket is mistaken for a pop star and decides to exploit the situation for all the perks of fame; Remy and Cricket attend football camp in an attempt to impress Remy's dad. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Shark Objects; Dream Weaver + When the Greens try to spend an eventful day at the beach, Cricket tries to prank the beachgoers; Cricket discovers he can influence the family's dreams, to disastrous real-life results. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Garage Tales; Animal Farm + After finding a box of mementos, Gramma tells the kids the story of her greatest adventure; while the Greens are away, the animals compete to see who will rule the farm. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Time Crisis; Gramma Driver + Remy's plan for his whole life is thrown into question when he is unprepared for a violin recital; Gramma becomes a rideshare driver, only to find her best customers are robbers. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + Friend Con; Flimflammed + Chip Whistler and Bill hit it off and become friends at Farm Con; Cricket stumbles into having $100 and immediately buys into a pyramid scheme. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Marvel's Spidey and His Amazing Friends + CAT-astrophe; Swing With a Stomp + Bootsie gets lost at the cat show and Doc Ock turns her into a super-sized, monster kitty; during the concert, Doc Ock steals the drum set and uses it to hypnotize the entire audience. + + Benjamin Valic + Lily Sanfelippo + Jakari Fraser + + Animated + Children + + + TVY + + + + Star Wars: Young Jedi Adventures + Charhound Chase; Creature Comforts + Kai helps Bell find his runaway charhound; Lys gets attached to a lost wild creature. + + Jamaal Avery Jr. + Juliet Donenfeld + Dee Bradley Baker + + Animated + Children + + + TVY + + + + Big City Greens + Quiet Please; Chipwrecked + At the library, the Greens try to find a book, but a scary librarian threatens them into being quiet; Chip decides if he is really the failure Cricket says he is. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Big City Greens + 'Rent Control; Pool's Gold + When Gloria's parents visit, she ropes the Greens into escalating lies about her success; Cricket goes on a quest to find the best pool in Big City. + + Chris Houghton + Artemis Pebdani + Marieve Herington + + Animated + Children + + + TVY7 + + + + Gravity Falls + Sock Opera + Mabel decides to put on a sock puppet rock opera to impress a local puppeteer. + + Jason Ritter + Kristen Schaal + Alex Hirsch + + Animated + Children + + + TVY7 + + + + Gravity Falls + Society of the Blind Eye + The kids, along with Old Man McGucket's help, discover there is a secret society in Gravity Falls. + + Jason Ritter + Kristen Schaal + Alex Hirsch + + Animated + Children + + + TVY7 + + + + Beyblade Burst QuadStrike + Blazing Battles! Aether Stadium! + Something monumental is found hidden deep beneath the Grand Masquerade Bey Tournament's stage, and it might change the face of Blading forever. + Animated + Children + + + TVY7 + + + + Marvel's Moon Girl and Devil Dinosaur + Devil on Her Shoulder + Feeling insecure about his size, Devil convinces Lunella to create a potion to make him temporarily small. + + Diamond White + Fred Tatasciore + Alfre Woodard + + Comedy + Animated + + + TVG + + + + Disney Channel On Demand + Performing Arts + + + + Disney Channel On Demand + Performing Arts + + + + Disney Channel On Demand + Performing Arts + + + + Disney Channel On Demand + Performing Arts + + + + Disney Channel On Demand + Performing Arts + + + + Disney Channel On Demand + Performing Arts + + + + Disney Channel On Demand + Performing Arts + + + + Disney Channel On Demand + Performing Arts + + + + Disney Channel On Demand + Performing Arts + + + + Disney Channel On Demand + Performing Arts + + + + Disney Channel On Demand + Performing Arts + + + + Disney Channel On Demand + Performing Arts + + + + Disney Channel On Demand + Performing Arts + + + + Disney Channel On Demand + Performing Arts + + + + Disney Channel On Demand + Performing Arts + + + + Disney Channel On Demand + Performing Arts + + + + Disney Channel On Demand + Performing Arts + + + + Disney Channel On Demand + Performing Arts + + + + Disney Channel On Demand + Performing Arts + + + + Disney Channel On Demand + Performing Arts + + + + Disney Channel On Demand + Performing Arts + + + + Disney Channel On Demand + Performing Arts + + + + Disney Channel On Demand + Performing Arts + + + + Disney Channel On Demand + Performing Arts + + + + Just Friends + A music executive (Ryan Reynolds) tries to woo his high-school crush (Amy Smart) while keeping his suspicious ex-girlfriend (Anna Faris) at bay. + + Ryan Reynolds + Amy Smart + Anna Faris + + 2005 + Movies + Romance + + + TVG + + + 2 + + + + A Bad Moms Christmas + As if creating the perfect Christmas for their families isn't hard enough, under-appreciated and overburdened moms Amy, Kiki and Carla will have to do it while hosting and entertaining their own respective mothers during the holidays. + + Mila Kunis + Kristen Bell + Kathryn Hahn + + 2017 + Movies + Christmas + Comedy + + + TVPG + + + 2 + + + + 13 Going on 30 + An uncool girl magically becomes a successful adult (Jennifer Garner) after making a wish at her disastrous birthday party. + + Jennifer Garner + Mark Ruffalo + Judy Greer + + 2004 + Movies + Fantasy + + + TVG + + + 3 + + + + 13 Going on 30 + An uncool girl magically becomes a successful adult (Jennifer Garner) after making a wish at her disastrous birthday party. + + Jennifer Garner + Mark Ruffalo + Judy Greer + + 2004 + Movies + Fantasy + + + TVG + + + 3 + + + + Life of the Party + Dumped by her husband, longtime housewife Deanna turns regret into reset by going back to college. Winding up at the same school as her daughter, Deanna plunges headlong into the campus experience -- embracing the fun, the freedom and the frat boys. + + Melissa McCarthy + Gillian Jacobs + Maya Rudolph + + 2018 + Movies + Comedy + + + TVG + + + 2 + + + + Vanderpump Rules + You Don't Know Jax + Lisa struggles to keep her staff's personal lives out of the restaurant; Jax makes a bold move, but a revelation pushes Stassi to another man. + Reality TV + Performing Arts + + + TV14 + + + + Vanderpump Rules + Vegas With a Vengeance + The staff leaves Lisa short-handed when they go to Las Vegas for Stassi's brithday; Jax crashes the party and causes a fight. + Reality TV + Performing Arts + + + TV14 + + + + House of Villains + Welcome to the House of Villains + The villains move into their new lair and start sizing up their competition; Omarosa proves to be the HBIC as she immediately targets who she believes to be the weakest link; alliances form as each villain strategizes their way to the $200,000 prize. + Reality TV + Game Shows + + + TV14 + + + + House of Villains + The Lesser of Three Evils + Corinne, Jax and Shake compete in the first redemption challenge; one villain questions whether or not they've been sabotaged by a supposed ally; one of the hit list nominees becomes the first villain voted out of the house. + Reality TV + Game Shows + + + + House of Villains + Secret Identities + After the first contestant is eliminated, a surprise guest visits; the remaining villains must compete in a masquerade ball challenge where limited clues and extreme costumes help them guess their castmates' identities. + Reality TV + Game Shows + + + TV14 + + + + House of Villains + Dance With the Devil + The Villains are visited by another surprise guest; the hit list nominees must convince the others to unknowingly participate in their redemption challenge; Bobby is insulted after being put up on the hit list; New York continues to spiral. + Reality TV + Game Shows + + + TV14 + + + + Let's Be Cops + Two buddies dress as police officers for a costume party, then must put their fake badges on the line after they become entangled with a real web of crooks and dirty detectives. + + Jake Johnson + Damon Wayans Jr. + Rob Riggle + + 2014 + Movies + Comedy + + + TVPG + + + 2 + + + + Central Intelligence + A lethal CIA agent (Dwayne Johnson) and his former classmate (Kevin Hart) encounter shootouts, espionage and double-crosses while trying to save the U.S. spy satellite system. + + Dwayne Johnson + Kevin Hart + Amy Ryan + + 2016 + Movies + Action + + + TVG + + + 2 + + + + Hancock + A scruffy superhero (Will Smith) protects the citizens of Los Angeles but leaves horrendous collateral damage in the wake of every well-intentioned feat. + + Will Smith + Charlize Theron + Jason Bateman + + 2008 + Movies + Action + + + TVPG + + + 2 + + + + Hitch + A smooth-talking man (Will Smith) falls for a hardened columnist (Eva Mendes) while helping a shy accountant (Kevin James) woo a beautiful heiress. + + Will Smith + Eva Mendes + Kevin James + + 2005 + Movies + Romance + + + TVG + + + 3 + + + + Central Intelligence + A lethal CIA agent (Dwayne Johnson) and his former classmate (Kevin Hart) encounter shootouts, espionage and double-crosses while trying to save the U.S. spy satellite system. + + Dwayne Johnson + Kevin Hart + Amy Ryan + + 2016 + Movies + Action + + + TVG + + + 2 + + + + Hancock + A scruffy superhero (Will Smith) protects the citizens of Los Angeles but leaves horrendous collateral damage in the wake of every well-intentioned feat. + + Will Smith + Charlize Theron + Jason Bateman + + 2008 + Movies + Action + + + TVPG + + + 2 + + + + Hitch + A smooth-talking man (Will Smith) falls for a hardened columnist (Eva Mendes) while helping a shy accountant (Kevin James) woo a beautiful heiress. + + Will Smith + Eva Mendes + Kevin James + + 2005 + Movies + Romance + + + TVG + + + 3 + + + + Hitch + A smooth-talking man (Will Smith) falls for a hardened columnist (Eva Mendes) while helping a shy accountant (Kevin James) woo a beautiful heiress. + + Will Smith + Eva Mendes + Kevin James + + 2005 + Movies + Romance + + + TVG + + + 3 + + + + Let's Be Cops + Two buddies dress as police officers for a costume party, then must put their fake badges on the line after they become entangled with a real web of crooks and dirty detectives. + + Jake Johnson + Damon Wayans Jr. + Rob Riggle + + 2014 + Movies + Comedy + + + TVPG + + + 2 + + + + Vanderpump Rules + Dirty Thirty + Lisa advises the women to get back at their boyfriends for going to Las Vegas, so Lala, Katie and Ariana get cozy at Scheana's slumber party; Jax, Schwartz and Sandoval strive to remain loyal to their girlfriends while in Sin City. + Reality TV + Performing Arts + + + TV14 + + + + Vanderpump Rules + What Happened in Vegas + Tom Sandoval and Tom Schwartz divulge shocking news about their trip to Las Vegas; Kristen returns to SUR, but Ariana is not ready to forgive; Tom Sandoval and Ariana take the stage at the Improv; James tries to sabotage Jax's love life. + Reality TV + Performing Arts + + + TV14 + + + + Sex and the City + Ghost Town + Old relationships haunt Carrie and Miranda; Samantha gets some assistance; Charlotte's mother-in-law battle carries a jolt. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + Baby, Talk Is Cheap + Charlotte and Trey (Kristin Davis, Kyle MacLachlan) agree to take an important step together; Carrie (Sarah Jessica Parker) is reunited with an old love. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + Time and Punishment + Samantha takes up the cause of gender equality; Charlotte faces tough choices; Miranda needs rest after an injury. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + My Motherboard, My Self + Carrie needs outside assistance when her computer crashes; Miranda's personal crisis sheds light on everyone else. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + Sex and the Country + Charlotte decides that loving Trey means loving his mother; Samantha meets a farmer; Aidan shows his rustic side. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + Belles of the Balls + Carrie helps Aidan get along with Big; Miranda and Steve grow closer; Charlotte and Trey forge ahead with their plans. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + Just Say Yes + Miranda makes a surprising decision; Charlotte and Trey reach a turning point; Samantha takes a trip. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + The Good Fight + Living with Aidan suffocates Carrie; Samantha grows closer to Richard; Miranda wonders if pregnancy precludes sex. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + All That Glitters + Carrie wants to maintain her lifestyle; Samantha resists acknowledging her feelings for Richard; Charlotte and Trey grow apart. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + Change of a Dress + Aidan pushes for a wedding date; Samantha fears an open relationship with Richard; Charlotte spices up her routine. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + Ring a Ding Ding + Carrie's money woes make her insecure; Richard showers expensive gifts on Samantha; Miranda and Steve deal with parenthood. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + House of Villains + Welcome to the House of Villains + The villains move into their new lair and start sizing up their competition; Omarosa proves to be the HBIC as she immediately targets who she believes to be the weakest link; alliances form as each villain strategizes their way to the $200,000 prize. + Reality TV + Game Shows + + + TV14 + + + + House of Villains + The Lesser of Three Evils + Corinne, Jax and Shake compete in the first redemption challenge; one villain questions whether or not they've been sabotaged by a supposed ally; one of the hit list nominees becomes the first villain voted out of the house. + Reality TV + Game Shows + + + + House of Villains + Secret Identities + After the first contestant is eliminated, a surprise guest visits; the remaining villains must compete in a masquerade ball challenge where limited clues and extreme costumes help them guess their castmates' identities. + Reality TV + Game Shows + + + TV14 + + + + House of Villains + Dance With the Devil + The Villains are visited by another surprise guest; the hit list nominees must convince the others to unknowingly participate in their redemption challenge; Bobby is insulted after being put up on the hit list; New York continues to spiral. + Reality TV + Game Shows + + + TV14 + + + + Modern Family + Little Bo Bleep + Claire prepares for her debate with Duane Bailey; Mitch and Cam try to clean up Lily's language before her turn as a flower girl; Jay blames Stella's strange behavior on Gloria. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Me? Jealous? + Claire thinks Phil's new business partner (Greg Kinnear) is blatantly inappropriate, but Phil doesn't notice; while their house is being fumigated, Cameron and Mitchell stay with Jay and Gloria. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Aunt Mommy + After selling a house to Mitch and Cameron's friends, Claire and Phil plan a celebratory dinner; overindulging in drinks leads to over sharing. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Virgin Territory + Mitchell ruins one of Jay's proudest moments; Phil overhears something about one of his daughters; Gloria accidentally discovers Claire's secret. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Leap Day + Mitchell feels pressured to make Cameron's birthday extra special; Jay's manliness comes into question; the girls interfere with Phil's leap day plans. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Send Out the Clowns + Cameron runs into his estranged ex-clown partner (Bobby Cannavale); another real estate agent (Ellen Barkin) snags a listing that Phil was trying to land; Jay and Gloria are suspicious when Manny makes a new friend. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Election Day + On Election Day, the family does some last-minute campaigning for Claire; Claire experiences technical difficulties during interviews. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + The Last Walt + Claire tries to help Luke cope with the death of a neighbor; Phil and Alex spend some time together; Haley throws a party without permission; Cameron's father visits. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Planes, Trains and Cars + Phil buys a car without consulting Claire; Jay is on a mission to get to his high-school reunion with Gloria and Manny; Lily loses her favorite toy on a train. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Disneyland + When the family travels to Disneyland, Phil struggles to keep up with Luke; Claire is stunned when they run into Dylan; Cam and Mitch must curb Lily's new penchant for running. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Tableau Vivant + Gloria and Jay bicker while trying to order lunch at a diner; Claire and Cam have different theories on how to discipline kids; Luke accepts an award under false pretenses. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Baby on Board + While Gloria helps Cam and Mitch pursue an adoption opportunity, Jay and Manny baby-sit Lily; Alex attends her first prom; Haley makes a shocking announcement about her plans for the future. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Bringing Up Baby + Phil takes Jay on an unconventional fishing trip; Gloria wonders how to break the news about her pregnancy; Dylan temporarily moves in with the Dunphys; Cam and Mitch think about adopting a cat. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Schooled + Claire and Phil embarrass Haley when they drop her off at college; Manny makes Gloria and Jay take a class; Lily gets into a tussle on her first day of kindergarten. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Snip + Phil gets a vasectomy; Gloria and Jay can't agree on whether or not they should find out the sex of the baby; Mitchell tries to steer Cameron toward getting a part-time job. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + E! News + BravoCon + Interviews with Usher and Martha Stewart; Chrishell Stause joins live in studio. + Talk Shows + News + + + + Sex and the City + Ghost Town + Old relationships haunt Carrie and Miranda; Samantha gets some assistance; Charlotte's mother-in-law battle carries a jolt. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + Baby, Talk Is Cheap + Charlotte and Trey (Kristin Davis, Kyle MacLachlan) agree to take an important step together; Carrie (Sarah Jessica Parker) is reunited with an old love. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + Time and Punishment + Samantha takes up the cause of gender equality; Charlotte faces tough choices; Miranda needs rest after an injury. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + My Motherboard, My Self + Carrie needs outside assistance when her computer crashes; Miranda's personal crisis sheds light on everyone else. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + Sex and the Country + Charlotte decides that loving Trey means loving his mother; Samantha meets a farmer; Aidan shows his rustic side. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + Belles of the Balls + Carrie helps Aidan get along with Big; Miranda and Steve grow closer; Charlotte and Trey forge ahead with their plans. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + Just Say Yes + Miranda makes a surprising decision; Charlotte and Trey reach a turning point; Samantha takes a trip. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + The Good Fight + Living with Aidan suffocates Carrie; Samantha grows closer to Richard; Miranda wonders if pregnancy precludes sex. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Overserved With Lisa Vanderpump + Ladies Who Brunch: Anna Camp & Lala Kent + Lisa hosts a decadent weekend brunch for her busy friends - a very candid Anna Camp and a very pregnant Lala Kent; learning why you don't want to cross any of these ladies. + Reality TV + + + TVPG + + + + Overserved With Lisa Vanderpump + Diva Tea: Iggy Azalea & Trixie Mattel + Lisa throws a proper English tea with some very improper conversation as Iggy Azalea and Trixie Mattel share tales of red-carpet underwear fails, one-night stands, and a famous baby daddy. + Reality TV + + + TVPG + + + + Overserved With Lisa Vanderpump + Cabo Fiesta: Tori Spelling & Jeff Lewis + Lisa recreates her favorite moments from years of vacationing in Mexico with a night of margaritas, seafood, surprise secrets and wild dares with Tori Spelling and Jeff Lewis. + Reality TV + + + TV14 + + + + Overserved With Lisa Vanderpump + An Evening in Provence: Lance Bass & Vivica A. Fox + Lisa transports her best friend Lance Bass and actress Vivica A. Fox to the South of France with a Provence-themed party, and serial pranker Lance gets a taste of his own medicine. + Reality TV + + + TV14 + + + + Overserved With Lisa Vanderpump + Beverly Hills Comfort Food: Heather and Terry Dubrow & Loni Love + Lisa proves the best things in life aren't always the fanciest, as she treats Heather, Dr. Terry Dubrow and comic Loni Love to a night of indulgent comfort food, decadent drinks and even a 20-foot beer bong -- filled with champagne, of course. + Reality TV + + + TV14 + + + + E! News + BravoCon + Interviews with Usher and Martha Stewart; Chrishell Stause joins live in studio. + Talk Shows + News + + + + Sex and the City + All That Glitters + Carrie wants to maintain her lifestyle; Samantha resists acknowledging her feelings for Richard; Charlotte and Trey grow apart. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + Change of a Dress + Aidan pushes for a wedding date; Samantha fears an open relationship with Richard; Charlotte spices up her routine. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + Ring a Ding Ding + Carrie's money woes make her insecure; Richard showers expensive gifts on Samantha; Miranda and Steve deal with parenthood. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + A Vogue Idea + Carrie starts working at Vogue; Samantha fulfills Richard's birthday wish; Charlotte gives Miranda a baby shower. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + I Heart NY + Carrie learns Mr. Big is leaving town; Samantha is suspicious of Richard's lunch dates; Charlotte fears dating again. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + Anchors Away + Samantha debates reconciling with Richard; Miranda copes with the life changes babies bring. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Botched + Boob Greed & Bump Its + A woman with four implants in her chest seeks Dr. Dubrow's help to remove them; Dr. Nassif helps an Italian woman get rid of her cannoli nose. + Reality TV + Documentary + + + TV14 + + + + Botched + Face Misfor-Chin + A facial skin graft growing pubic hair challenges Dr. Nassif; Dr. Dubrow boogies with a boob dancing patient who's back for surgery. + Reality TV + Documentary + + + TV14 + + + + Botched + Reality Star Vixens and Their Afflictions + Dr. Nassif has a ruff case ahead of him when a dog bite victim needs some TLC; Dr. Dubrow has his hands full with an OG reality star's real-world uni-boob situation, while a Charm School dropout needs help. + Reality TV + Documentary + + + TV14 + + + + Botched + Jaw Dropping Booberati + Two big-bosomed buddies pay a visit to the doctors; a Dubrow patient desperately needs help fixing her elephant trunk-looking breast; a Nassif patient has issues that run deeper than his asymmetrical chin. + Reality TV + Documentary + + + TV14 + + + + Botched + Flaws, Jaws, and Extra Bras + A three-breasted woman wants the perfect pair; working to correct a car accident victim's mangled nose; a 27-year-old LA socialite with jacked up jowls wants a facelift. + Reality TV + Documentary + + + TV14 + + + + Botched + Melting Mounds & Unlucky Charms + A Southern belle who wants to look like Dolly Parton hopes to change the shape of her torpedo-like breasts. + Reality TV + Documentary + + + TV14 + + + + Modern Family + The Butler's Escape + Phil can't accept that Luke wants to quit magic; Gloria's snoring keeps Jay and Manny awake; Mitch and Cam struggle to deal with their reversed role. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Open House of Horrors + Claire must rein in her enthusiasm for Halloween and keep her celebration kid-friendly; Phil decides to hold an open house on Halloween; Mitch and Cam have a costume party; Gloria's hormones make her more quick-tempered than usual. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + Hallowe'en + + + TVPG + + + + Modern Family + Yard Sale + Jay and Gloria host a yard sale to help with a school fundraiser; Mitch and Cam vet Alex's new friend; Manny finds a trunk full of secrets. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Arrested + Cameron watches Alex and Luke while Phil, Claire and Mitchell deal with Haley's arrest; Jay tries to cut short a surprise visit from ex-wife Dede (Shelley Long), so she doesn't learn about Gloria's pregnancy. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Mistery Date + When Claire, Manny and Luke go to Alex's academic decathlon for the weekend, Phil throws a guys' night at home; Manny and Luke crash bar mitzvahs looking for a girl; Cam and Mitchell get Jay and Gloria a surprise baby gift. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + When a Tree Falls + Mitch and Cam try to save an old tree in the park; Jay takes Manny to a kid's Olympics-themed birthday party; Gloria and Claire have an eventful shopping trip. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Diamond in the Rough + When Manny and Luke's Little League team makes it to the playoffs, Claire and Cameron search for a field to use; Gloria uses a microphone to sing to the baby. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + New Year's Eve + Jay and the family plan to celebrate New Year's together at a hotel in Palm Springs, but the hotel doesn't meet their expectations; Alex and Haley are faced with challenges as they try to watch the kids back at home. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + Christmas + + + TVPG + + + + Modern Family + Party Crasher + Gloria and Jay try to make Manny's 14th birthday extra special by planning a surprise party; Haley starts hanging out with a much older guy. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Fulgencio + When Gloria's mother and sister visit, they bring traditions, baby names and family baggage; Phil helps the kids with their problems; Mitchell and Cameron try to correct Lily's bad habits. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Hitch + A smooth-talking man (Will Smith) falls for a hardened columnist (Eva Mendes) while helping a shy accountant (Kevin James) woo a beautiful heiress. + + Will Smith + Eva Mendes + Kevin James + + 2005 + Movies + Romance + + + TVG + + + 3 + + + + E! News + The late-night destination for movie, music, television and pop culture fans,. + Talk Shows + News + + + + House of Villains + Secret Identities + After the first contestant is eliminated, a surprise guest visits; the remaining villains must compete in a masquerade ball challenge where limited clues and extreme costumes help them guess their castmates' identities. + Reality TV + Game Shows + + + TV14 + + + + Sex and the City + A Vogue Idea + Carrie starts working at Vogue; Samantha fulfills Richard's birthday wish; Charlotte gives Miranda a baby shower. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + I Heart NY + Carrie learns Mr. Big is leaving town; Samantha is suspicious of Richard's lunch dates; Charlotte fears dating again. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + Anchors Away + Samantha debates reconciling with Richard; Miranda copes with the life changes babies bring. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + Unoriginal Sin + Carrie gets surprising news; Miranda and Steve have Brady baptized; Samantha struggles with Richard's intentions. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + Luck Be an Old Lady + The girls celebrate Charlotte's 36th birthday with a trip to Atlantic City, N.J.; Samantha decides to deal with Richard's wandering ways once and for all. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Keeping Up With the Kardashians + Fights, Friendships and Fashion Week Pt. 1 + Kim becomes too friendly with Khloé's ex; Kylie prepares to debut her Kylie Cosmetics collaboration with Balmain at Paris Fashion Week; tension boils over when Kim and Khloé confront Kourtney over her recent attitude. + Reality TV + Performing Arts + + + TV14 + + + + Keeping Up With the Kardashians + Fights, Friendships, and Fashion Week, Part 2 + In the aftermath of their fight, Kim and Kourtney head to Armenia to baptize their kids; realizing that her lifestyle is making her unhappy, Kourtney considers making a major change; Kylie is too sick to fulfill her work obligations in Paris. + Reality TV + Performing Arts + + + TV14 + + + + Keeping Up With the Kardashians + Date My Daughter + Kris is at a sexual peak in her relationship, and she feels guilty about Khloé going through a dry spell; she tries to push her to date again; Scott panics over an upcoming speaking engagement. + Reality TV + Performing Arts + + + TV14 + + + + Sex and the City + Unoriginal Sin + Carrie gets surprising news; Miranda and Steve have Brady baptized; Samantha struggles with Richard's intentions. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + Luck Be an Old Lady + The girls celebrate Charlotte's 36th birthday with a trip to Atlantic City, N.J.; Samantha decides to deal with Richard's wandering ways once and for all. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + Cover Girl + Miranda joins Weight Watchers; Charlotte and Samantha deal with relationship issues; Carrie tries to create a book cover. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + Plus One Is the Loneliest Number + Carrie's book-launching party becomes a major New York event; Miranda considers waiting to tell men that she is a mother. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + Critical Condition + Carrie obsesses about Aidan's negative critique; Charlotte prepares to fight for her apartment; Samantha has a talent for baby-sitting. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + The Big Journey + Carrie's much-anticipated weekend with Big ends in a reversal of roles; Charlotte experiments with sex without commitment. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Sex and the City + I Love a Charade + The women head to the Hamptons for the wedding of a flamboyant lounge singer; Charlotte's affair with her lawyer takes an interesting turn. + + Sarah Jessica Parker + Kim Cattrall + Kristin Davis + + Sitcom + + + TVMA + + + + Chrisley Knows Best + O Grayson, Where Art Thou? + Todd and Julie's hope for a relaxing weekend together proves to be wishful thinking; when Chase has Grayson over for some brotherly bonding, the bonding goes out the window. + + Todd Chrisley + Julie Chrisley + Chase Chrisley + + Reality TV + Comedy + + + TV14 + + + + Chrisley Knows Best + Matchmakers and Batchbakers + When Savannah decides she is ready to date again, Todd and Julie compete to find her perfect match; Grayson enters a cookie contest. + Reality TV + Comedy + + + TV14 + + + + Chrisley Knows Best + Dancing Tween + Todd and Julie are at odds about Grayson growing up after he gets invited to his first tween dance; Savannah's new ride causes Todd to test her and Nanny Faye's driving skills. + Reality TV + Comedy + + + TV14 + + + + Chrisley Knows Best + Moms Just Wanna Have Fun + Todd refuses to celebrate anyone but Faye for Mother's Day; Julie and Lindsie make their own plans; Todd must babysit Jackson. + Reality TV + Comedy + + + TV14 + + + + Chrisley Knows Best + Twisted Sisters + Todd offers to chauffeur Faye and her sister around; Julie opens a boutique real estate office, and offers to sell Savannah's house. + Reality TV + Comedy + + + TV14 + + + + Chrisley Knows Best + Prank Master + When Savannah decides to drop out of college, Todd comes up with a plan to change her mind; Nanny Faye pulls a prank on Todd. + Reality TV + Comedy + + + TV14 + + + + Chrisley Knows Best + Remission Control + The Chrisleys have a family bowling tournament; Julie waits to hear if her cancer is in remission; the family plans a surprise. + Reality TV + Comedy + + + TV14 + + + + Chrisley Knows Best + Differing Strokes + Todd and Chase team up for a golf match against Jay Demarcus; Savannah tries to move in with Nanny Faye. + Reality TV + Comedy + + + TV14 + + + + Chrisley Knows Best + Runaways and Segways + Todd and Savannah disagree about planning a charity fashion show; Chase helps Nanny Faye apply for a job. + Reality TV + Comedy + + + TV14 + + + + Chrisley Knows Best + Boys to Men + Todd takes over Chase's 21st birthday plans in order to have some father and son bonding time; Julie tries to prepare Grayson for football tryouts. + Reality TV + Comedy + + + TV14 + + + + Chrisley Knows Best + Animal House + Todd offers to watch a house full of children; Julie struggles to let loose during a girls' weekend. + Reality TV + Comedy + + + TV14 + + + + Chrisley Knows Best + Tantrums and Tiaras + Grayson's dream to visit Universal Orlando's Volcano Bay is threatened by his parents' work schedule. + Reality TV + Comedy + + + TV14 + + + + Chrisley Knows Best + Quit Your Pitchin' + Todd tries to train Savannah for a charity softball game; Julie gets annoyed when Todd doesn't help Grayson train his new puppy. + Reality TV + Comedy + + + TV14 + + + + Chrisley Knows Best + Truckin' Good Time + Julie agrees to make desserts for a food truck event; Grayson gets a lesson from Todd about what it means to be truly sorry. + Reality TV + Comedy + + + TV14 + + + + Chrisley Knows Best + Granny's Gone Wild + Faye threatens to move back to Atlanta after Todd upsets her; Julie tries to get Grayson ready to start his new school. + Reality TV + Comedy + + + TV14 + + + + Chrisley Knows Best + Baking Bad + Julie and Faye battle over who will host Thanksgiving dinner; Todd tries to find a cure for his insomnia. + Reality TV + Comedy + + + TV14 + + + + Chrisley Knows Best + Good Faye Hunting + Faye and Chase hunt for the perfect Thanksgiving; Grayson tries out for the debate team. + Reality TV + Comedy + + + TV14 + + + + Hitch + A smooth-talking man (Will Smith) falls for a hardened columnist (Eva Mendes) while helping a shy accountant (Kevin James) woo a beautiful heiress. + + Will Smith + Eva Mendes + Kevin James + + 2005 + Movies + Romance + + + TVG + + + 3 + + + + Babylon + Decadence, depravity and outrageous excess lead to the rise and fall of several ambitious dreamers in 1920s Hollywood. + + Brad Pitt + Margot Robbie + Diego Calva + + 2022 + Movies + Drama + + + TVPG + + + 2 + + + + Babylon + Decadence, depravity and outrageous excess lead to the rise and fall of several ambitious dreamers in 1920s Hollywood. + + Brad Pitt + Margot Robbie + Diego Calva + + 2022 + Movies + Drama + + + TVPG + + + 2 + + + + Death Wish + A New York architect (Charles Bronson) turns vigilante hit man after thugs attack his wife (Hope Lange) and daughter. + + Charles Bronson + Hope Lange + Vincent Gardenia + + 1974 + Movies + Crime Story + + + TVPG + + + 3 + + + + The Warriors + Gang members blamed for the murder of a charismatic street leader are forced to fight their way back to their turf. + + Michael Beck + James Remar + Dorsey Wright + + 1979 + Movies + Action + + + TVPG + + + 3 + + + + Unprotected Sets + Rocky Dale Davis + There is more than meets the eye with Alabama native Rocky Dale Davis; people are quick to misjudge him as a typical Southern white boy, but Rocky has a progressive outlook in his comedy. + Reality TV + Comedy + + + TVMA + + + + The Russia House + A London publisher turned spy (Sean Connery) falls in love with his Moscow contact (Michelle Pfeiffer). + + Sean Connery + Michelle Pfeiffer + Roy Scheider + + 1990 + Movies + Drama + + + TVG + + + 3 + + + + Jennifer 8 + An ex-Los Angeles detective (Andy Garcia) turns small-town policeman and falls for a blind woman (Uma Thurman) vulnerable to a killer. + + Andy Garcia + Uma Thurman + Lance Henriksen + + 1992 + Movies + Thriller + + + TVPG + + + 2 + + + + The SpongeBob Movie: Sponge Out of Water + Perpetual adversaries SpongeBob (Tom Kenny) and Plankton (Mr. Lawrence) join forces and come ashore to battle a pirate (Antonio Banderas) who has plans for the stolen Krabby Patties recipe. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + 2015 + Movies + Children + + + TVG + + + 3 + + + + The Winter King + Gorfydd allies with the Saxons and declares war; Arthur admits he exiled Nimue to the Isle of the Dead. + + Eddie Marsan + Nathaniel Martello-White + Valene Kane + + History + + + + Billy the Kid + The Agony + Billy and the Regulators hear news that John Tunstall's ranch is going to be raided. + + Tom Blyth + Daniel Webber + + Drama + + + TVMA + + + + Shutter Island + A 1950s lawman (Leonardo DiCaprio) pursues a murderess who appears to have vanished from a locked room within a fortresslike psychiatric hospital. + + Leonardo DiCaprio + Mark Ruffalo + Ben Kingsley + + 2010 + Movies + Thriller + + + TVPG + + + 2 + + + + Die Hard + A New York policeman (Bruce Willis) outwits foreign thugs holding his wife (Bonnie Bedelia) and others in a Los Angeles high-rise. + + Bruce Willis + Alan Rickman + Bonnie Bedelia + + 1988 + Movies + Action + + + TVPG + + + 3 + + + + Air Force One + Demanding the release of a political prisoner, a terrorist (Gary Oldman) and his gang hijack the U.S. president's (Harrison Ford) plane. + + Harrison Ford + Gary Oldman + Glenn Close + + 1997 + Movies + Thriller + + + TVPG + + + 3 + + + + Top Gun: Maverick + Pete. + + Tom Cruise + Miles Teller + Jennifer Connelly + + 2022 + Movies + Action + + + TVG + + + 3 + + + + Billy the Kid + The Day of the Dead + The Regulators have been on the defensive since the start of war, but Billy draws up a plan which could bring the war to an end. + + Tom Blyth + Daniel Webber + + Drama + + + TVMA + + + + The Winter King + Derfel finds Nimue inside the Isle of the Dead; guilt ridden by the deal he's been forced to make with the Saxons, Arthur vows to fight to save Britain. + + Eddie Marsan + Nathaniel Martello-White + Valene Kane + + History + + + + Billy the Kid + The Day of the Dead + The Regulators have been on the defensive since the start of war, but Billy draws up a plan which could bring the war to an end. + + Tom Blyth + Daniel Webber + + Drama + + + TVMA + + + + The Winter King + Derfel finds Nimue inside the Isle of the Dead; guilt ridden by the deal he's been forced to make with the Saxons, Arthur vows to fight to save Britain. + + Eddie Marsan + Nathaniel Martello-White + Valene Kane + + History + + + + Death Wish + A New York architect (Charles Bronson) turns vigilante hit man after thugs attack his wife (Hope Lange) and daughter. + + Charles Bronson + Hope Lange + Vincent Gardenia + + 1974 + Movies + Crime Story + + + TVPG + + + 3 + + + + The Warriors + Gang members blamed for the murder of a charismatic street leader are forced to fight their way back to their turf. + + Michael Beck + James Remar + Dorsey Wright + + 1979 + Movies + Action + + + TVPG + + + 3 + + + + Unprotected Sets + Rocky Dale Davis + There is more than meets the eye with Alabama native Rocky Dale Davis; people are quick to misjudge him as a typical Southern white boy, but Rocky has a progressive outlook in his comedy. + Reality TV + Comedy + + + TVMA + + + + The Russia House + A London publisher turned spy (Sean Connery) falls in love with his Moscow contact (Michelle Pfeiffer). + + Sean Connery + Michelle Pfeiffer + Roy Scheider + + 1990 + Movies + Drama + + + TVG + + + 3 + + + + Jennifer 8 + An ex-Los Angeles detective (Andy Garcia) turns small-town policeman and falls for a blind woman (Uma Thurman) vulnerable to a killer. + + Andy Garcia + Uma Thurman + Lance Henriksen + + 1992 + Movies + Thriller + + + TVPG + + + 2 + + + + The SpongeBob Movie: Sponge Out of Water + Perpetual adversaries SpongeBob (Tom Kenny) and Plankton (Mr. Lawrence) join forces and come ashore to battle a pirate (Antonio Banderas) who has plans for the stolen Krabby Patties recipe. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + 2015 + Movies + Children + + + TVG + + + 3 + + + + The Winter King + Gorfydd allies with the Saxons and declares war; Arthur admits he exiled Nimue to the Isle of the Dead. + + Eddie Marsan + Nathaniel Martello-White + Valene Kane + + History + + + + Billy the Kid + The Agony + Billy and the Regulators hear news that John Tunstall's ranch is going to be raided. + + Tom Blyth + Daniel Webber + + Drama + + + TVMA + + + + Shutter Island + A 1950s lawman (Leonardo DiCaprio) pursues a murderess who appears to have vanished from a locked room within a fortresslike psychiatric hospital. + + Leonardo DiCaprio + Mark Ruffalo + Ben Kingsley + + 2010 + Movies + Thriller + + + TVPG + + + 2 + + + + Die Hard + A New York policeman (Bruce Willis) outwits foreign thugs holding his wife (Bonnie Bedelia) and others in a Los Angeles high-rise. + + Bruce Willis + Alan Rickman + Bonnie Bedelia + + 1988 + Movies + Action + + + TVPG + + + 3 + + + + Air Force One + Demanding the release of a political prisoner, a terrorist (Gary Oldman) and his gang hijack the U.S. president's (Harrison Ford) plane. + + Harrison Ford + Gary Oldman + Glenn Close + + 1997 + Movies + Thriller + + + TVPG + + + 3 + + + + Top Gun: Maverick + Pete. + + Tom Cruise + Miles Teller + Jennifer Connelly + + 2022 + Movies + Action + + + TVG + + + 3 + + + + Billy the Kid + The Day of the Dead + The Regulators have been on the defensive since the start of war, but Billy draws up a plan which could bring the war to an end. + + Tom Blyth + Daniel Webber + + Drama + + + TVMA + + + + The Winter King + Derfel finds Nimue inside the Isle of the Dead; guilt ridden by the deal he's been forced to make with the Saxons, Arthur vows to fight to save Britain. + + Eddie Marsan + Nathaniel Martello-White + Valene Kane + + History + + + + Billy the Kid + The Day of the Dead + The Regulators have been on the defensive since the start of war, but Billy draws up a plan which could bring the war to an end. + + Tom Blyth + Daniel Webber + + Drama + + + TVMA + + + + The Winter King + Derfel finds Nimue inside the Isle of the Dead; guilt ridden by the deal he's been forced to make with the Saxons, Arthur vows to fight to save Britain. + + Eddie Marsan + Nathaniel Martello-White + Valene Kane + + History + + + + Transformers: Age of Extinction + As humanity picks up the pieces after an epic battle, a shadowy group emerges to gain control of history. Meanwhile, a powerful new menace sets its sights on Earth. + + Mark Wahlberg + Stanley Tucci + Li Bingbing + + 2014 + Movies + Action + + + TVG + + + 2 + + + + Minority Report + A policeman (Tom Cruise) tries to establish his innocence in a future where law enforcement can arrest killers before their crimes. + + Tom Cruise + Colin Farrell + Samantha Morton + + 2002 + Movies + Sci-Fi + + + TVPG + + + 3 + + + + King Kong + An oil explorer (Charles Grodin), a zoologist (Jeff Bridges) and a shipwrecked blonde (Jessica Lange) capture a huge ape leading to a battle atop the World Trade Center. + + Jeff Bridges + Jessica Lange + Charles Grodin + + 1976 + Movies + Adventure + + + TVG + + + 2 + + + + The Way West + Missouri pioneers (Kirk Douglas, Robert Mitchum, Richard Widmark) take the Oregon Trail through rough terrain and Indian country. + + Kirk Douglas + Robert Mitchum + Richard Widmark + + 1967 + Movies + Western + + + TVG + + + 2 + + + + Masters of the Universe + Warrior He-Man (Dolph Lundgren) and his sidekicks seek a cosmic key to free a sorceress from Skeletor (Frank Langella). + + Dolph Lundgren + Frank Langella + Meg Foster + + 1987 + Movies + Fantasy + + + TVG + + + 2 + + + + Supernova + A medical spaceship answers an SOS from a mining project on a comet and finds a sole survivor with an alien artifact. + + James Spader + Angela Bassett + Robert Forster + + 2000 + Movies + Sci-Fi + + + TV14 + + + 1 + + + + Stargate + A portal takes an Egyptologist (James Spader), a colonel (Kurt Russell) and a team of soldiers to another planet with pyramids, slaves and an alien ruler. + + Kurt Russell + James Spader + Jaye Davidson + + 1994 + Movies + Sci-Fi + + + TVG + + + 2 + + + + Transformers: Age of Extinction + As humanity picks up the pieces after an epic battle, a shadowy group emerges to gain control of history. Meanwhile, a powerful new menace sets its sights on Earth. + + Mark Wahlberg + Stanley Tucci + Li Bingbing + + 2014 + Movies + Action + + + TVG + + + 2 + + + + Red Eye + A plane passenger (Cillian Murphy) forcibly involves his seatmate (Rachel McAdams) in a plot to assassinate a government official. + + Rachel McAdams + Cillian Murphy + Brian Cox + + 2005 + Movies + Thriller + + + TVPG + + + 3 + + + + Double Jeopardy + While in jail for murdering her husband (Bruce Greenwood), a woman (Ashley Judd) discovers he is living under a new identity with their son. + + Tommy Lee Jones + Ashley Judd + Bruce Greenwood + + 1999 + Movies + Thriller + + + TVG + + + 3 + + + + Enough + After running away fails, a terrified woman (Jennifer Lopez) empowers herself in order to battle her abusive husband (Billy Campbell). + + Jennifer Lopez + Bill Campbell + Juliette Lewis + + 2002 + Movies + Thriller + + + TVPG + + + 2 + + + + Fatal Attraction + A New York lawyer (Michael Douglas) with a wife (Anne Archer) and daughter sleeps with a client (Glenn Close) whose lust turns to hate. + + Michael Douglas + Glenn Close + Anne Archer + + 1987 + Movies + Thriller + + + TVPG + + + 3 + + + + Transformers: Age of Extinction + As humanity picks up the pieces after an epic battle, a shadowy group emerges to gain control of history. Meanwhile, a powerful new menace sets its sights on Earth. + + Mark Wahlberg + Stanley Tucci + Li Bingbing + + 2014 + Movies + Action + + + TVG + + + 2 + + + + Masquerade + A yacht racer's (Rob Lowe) seduction of an innocent heiress (Meg Tilly) leads to murder in the Long Island Hamptons. + + Rob Lowe + Meg Tilly + Doug Savant + + 1988 + Movies + Crime Story + + + TVPG + + + 2 + + + + Minority Report + A policeman (Tom Cruise) tries to establish his innocence in a future where law enforcement can arrest killers before their crimes. + + Tom Cruise + Colin Farrell + Samantha Morton + + 2002 + Movies + Sci-Fi + + + TVPG + + + 3 + + + + King Kong + An oil explorer (Charles Grodin), a zoologist (Jeff Bridges) and a shipwrecked blonde (Jessica Lange) capture a huge ape leading to a battle atop the World Trade Center. + + Jeff Bridges + Jessica Lange + Charles Grodin + + 1976 + Movies + Adventure + + + TVG + + + 2 + + + + The Way West + Missouri pioneers (Kirk Douglas, Robert Mitchum, Richard Widmark) take the Oregon Trail through rough terrain and Indian country. + + Kirk Douglas + Robert Mitchum + Richard Widmark + + 1967 + Movies + Western + + + TVG + + + 2 + + + + Masters of the Universe + Warrior He-Man (Dolph Lundgren) and his sidekicks seek a cosmic key to free a sorceress from Skeletor (Frank Langella). + + Dolph Lundgren + Frank Langella + Meg Foster + + 1987 + Movies + Fantasy + + + TVG + + + 2 + + + + Supernova + A medical spaceship answers an SOS from a mining project on a comet and finds a sole survivor with an alien artifact. + + James Spader + Angela Bassett + Robert Forster + + 2000 + Movies + Sci-Fi + + + TV14 + + + 1 + + + + Stargate + A portal takes an Egyptologist (James Spader), a colonel (Kurt Russell) and a team of soldiers to another planet with pyramids, slaves and an alien ruler. + + Kurt Russell + James Spader + Jaye Davidson + + 1994 + Movies + Sci-Fi + + + TVG + + + 2 + + + + Transformers: Age of Extinction + As humanity picks up the pieces after an epic battle, a shadowy group emerges to gain control of history. Meanwhile, a powerful new menace sets its sights on Earth. + + Mark Wahlberg + Stanley Tucci + Li Bingbing + + 2014 + Movies + Action + + + TVG + + + 2 + + + + Red Eye + A plane passenger (Cillian Murphy) forcibly involves his seatmate (Rachel McAdams) in a plot to assassinate a government official. + + Rachel McAdams + Cillian Murphy + Brian Cox + + 2005 + Movies + Thriller + + + TVPG + + + 3 + + + + Double Jeopardy + While in jail for murdering her husband (Bruce Greenwood), a woman (Ashley Judd) discovers he is living under a new identity with their son. + + Tommy Lee Jones + Ashley Judd + Bruce Greenwood + + 1999 + Movies + Thriller + + + TVG + + + 3 + + + + Enough + After running away fails, a terrified woman (Jennifer Lopez) empowers herself in order to battle her abusive husband (Billy Campbell). + + Jennifer Lopez + Bill Campbell + Juliette Lewis + + 2002 + Movies + Thriller + + + TVPG + + + 2 + + + + Fatal Attraction + A New York lawyer (Michael Douglas) with a wife (Anne Archer) and daughter sleeps with a client (Glenn Close) whose lust turns to hate. + + Michael Douglas + Glenn Close + Anne Archer + + 1987 + Movies + Thriller + + + TVPG + + + 3 + + + + Masquerade + A yacht racer's (Rob Lowe) seduction of an innocent heiress (Meg Tilly) leads to murder in the Long Island Hamptons. + + Rob Lowe + Meg Tilly + Doug Savant + + 1988 + Movies + Crime Story + + + TVPG + + + 2 + + + + Kiss the Girls + After escaping from a serial killer, a doctor (Ashley Judd) helps police and a forensic psychologist (Morgan Freeman) track the madman. + + Morgan Freeman + Ashley Judd + Cary Elwes + + 1997 + Movies + Mystery + + + TVPG + + + 2 + + + + American Refugee + With the American economy in collapse and the nation under martial law, a family seeks shelter in their neighbor's bunker, where the danger inside is potentially greater than the danger outside. + + Sam Trammell + Erika Alexander + Derek Luke + + 2021 + Movies + Horror + + + TVPG + + + + The Uninvited + A ghost prompts a lethal battle of wills between a man's new fiancee (Elizabeth Banks) and his two daughters (Emily Browning, Arielle Kebbel), one of whom has just returned from a mental ward. + + Elizabeth Banks + Emily Browning + Arielle Kebbel + + 2009 + Movies + Horror + + + TVPG + + + 2 + + + + Freedom Writers + A dedicated Los Angeles teacher (Hilary Swank) inspires her class of at-risk students to believe in themselves and achieve academic success. + + Hilary Swank + Patrick Dempsey + Scott Glenn + + 2007 + Movies + Drama + + + TVG + + + 3 + + + + The Gift + Telling fortunes to support herself and her daughter, a psychic widow (Cate Blanchett) assists the police in a missing persons case. + + Cate Blanchett + Giovanni Ribisi + Keanu Reeves + + 2000 + Movies + Thriller + + + TVPG + + + 2 + + + + There's Something Wrong With the Children + Margaret and Ben take a weekend trip with two longtime friends and their two young children. Ben soon suspects something sinister is afoot when the kids start behaving strangely after disappearing into the woods overnight. + + Alisha Wainwright + Zach Gilford + Amanda Crew + + 2023 + Movies + Drama + + + + The Ring + A journalist (Naomi Watts) investigates the mystery behind a bizarre videotape that brings death after seven days to all who view it. + + Naomi Watts + Martin Henderson + David Dorfman + + 2002 + Movies + Horror + + + TVPG + + + 2 + + + + A Quiet Place Part II + The Abbott family must now face the terrors of the outside world as they fight for survival in silence. Forced to venture into the unknown, they realize that the creatures that hunt by sound are not the only threats that lurk beyond the sand path. + + Emily Blunt + Cillian Murphy + Millicent Simmonds + + 2021 + Movies + Horror + + + TVPG + + + 3 + + + + Super 8 + A series of unexplained events follows a horrifying train derailment, leading some young filmmakers (Elle Fanning, Joel Courtney) to suspect that the catastrophe was not an accident. + + Kyle Chandler + Elle Fanning + Joel Courtney + + 2011 + Movies + Sci-Fi + + + TVG + + + 3 + + + + Deep Impact + Troubled people attempt to mend their lives as they brace themselves for a comet that threatens Earth. + + Robert Duvall + Téa Leoni + Elijah Wood + + 1998 + Movies + Drama + + + TVG + + + 2 + + + + The Adventures of Priscilla, Queen of the Desert + Three drag queens (Terence Stamp, Hugo Weaving, Guy Pearce) head for a gig at a central Australia casino in a broken-down bus named Priscilla. + + Terence Stamp + Hugo Weaving + Guy Pearce + + 1994 + Movies + Comedy + + + TVPG + + + 3 + + + + Valley Girl + A California girl (Deborah Foreman) with a regional dialect falls totally for a punk rocker (Nicolas Cage). + + Nicolas Cage + Deborah Foreman + Frederic Forrest + + 1983 + Movies + Romance + + + TVPG + + + 2 + + + + Respect + Following the rise of Aretha Franklin's career -- from a child singing in her father's church choir to her international superstardom -- it's the remarkable true story of the music icon's journey to find her voice. + + Jennifer Hudson + Forest Whitaker + Marlon Wayans + + 2021 + Movies + Drama + + + TVG + + + 2 + + + + The Preacher's Wife + A handsome angel (Denzel Washington) saves a New York Baptist preacher (Courtney Vance) and his wife (Whitney Houston) from spiritual doubt and marital woe. + + Denzel Washington + Whitney Houston + Courtney B. Vance + + 1996 + Movies + Fantasy + + + TVG + + + 3 + + + + American Refugee + With the American economy in collapse and the nation under martial law, a family seeks shelter in their neighbor's bunker, where the danger inside is potentially greater than the danger outside. + + Sam Trammell + Erika Alexander + Derek Luke + + 2021 + Movies + Horror + + + TVPG + + + + If I Stay + After a car wreck leaves her suspended between life and death, a teenager (Chloë Grace Moretz) faces a choice that will determine her ultimate fate. + + Chloë Grace Moretz + Mireille Enos + Jamie Blackley + + 2014 + Movies + Romance + + + TVG + + + 2 + + + + The Uninvited + A ghost prompts a lethal battle of wills between a man's new fiancee (Elizabeth Banks) and his two daughters (Emily Browning, Arielle Kebbel), one of whom has just returned from a mental ward. + + Elizabeth Banks + Emily Browning + Arielle Kebbel + + 2009 + Movies + Horror + + + TVPG + + + 2 + + + + Freedom Writers + A dedicated Los Angeles teacher (Hilary Swank) inspires her class of at-risk students to believe in themselves and achieve academic success. + + Hilary Swank + Patrick Dempsey + Scott Glenn + + 2007 + Movies + Drama + + + TVG + + + 3 + + + + The Gift + Telling fortunes to support herself and her daughter, a psychic widow (Cate Blanchett) assists the police in a missing persons case. + + Cate Blanchett + Giovanni Ribisi + Keanu Reeves + + 2000 + Movies + Thriller + + + TVPG + + + 2 + + + + There's Something Wrong With the Children + Margaret and Ben take a weekend trip with two longtime friends and their two young children. Ben soon suspects something sinister is afoot when the kids start behaving strangely after disappearing into the woods overnight. + + Alisha Wainwright + Zach Gilford + Amanda Crew + + 2023 + Movies + Drama + + + + The Ring + A journalist (Naomi Watts) investigates the mystery behind a bizarre videotape that brings death after seven days to all who view it. + + Naomi Watts + Martin Henderson + David Dorfman + + 2002 + Movies + Horror + + + TVPG + + + 2 + + + + A Quiet Place Part II + The Abbott family must now face the terrors of the outside world as they fight for survival in silence. Forced to venture into the unknown, they realize that the creatures that hunt by sound are not the only threats that lurk beyond the sand path. + + Emily Blunt + Cillian Murphy + Millicent Simmonds + + 2021 + Movies + Horror + + + TVPG + + + 3 + + + + Super 8 + A series of unexplained events follows a horrifying train derailment, leading some young filmmakers (Elle Fanning, Joel Courtney) to suspect that the catastrophe was not an accident. + + Kyle Chandler + Elle Fanning + Joel Courtney + + 2011 + Movies + Sci-Fi + + + TVG + + + 3 + + + + Deep Impact + Troubled people attempt to mend their lives as they brace themselves for a comet that threatens Earth. + + Robert Duvall + Téa Leoni + Elijah Wood + + 1998 + Movies + Drama + + + TVG + + + 2 + + + + The Adventures of Priscilla, Queen of the Desert + Three drag queens (Terence Stamp, Hugo Weaving, Guy Pearce) head for a gig at a central Australia casino in a broken-down bus named Priscilla. + + Terence Stamp + Hugo Weaving + Guy Pearce + + 1994 + Movies + Comedy + + + TVPG + + + 3 + + + + Valley Girl + A California girl (Deborah Foreman) with a regional dialect falls totally for a punk rocker (Nicolas Cage). + + Nicolas Cage + Deborah Foreman + Frederic Forrest + + 1983 + Movies + Romance + + + TVPG + + + 2 + + + + Respect + Following the rise of Aretha Franklin's career -- from a child singing in her father's church choir to her international superstardom -- it's the remarkable true story of the music icon's journey to find her voice. + + Jennifer Hudson + Forest Whitaker + Marlon Wayans + + 2021 + Movies + Drama + + + TVG + + + 2 + + + + The Preacher's Wife + A handsome angel (Denzel Washington) saves a New York Baptist preacher (Courtney Vance) and his wife (Whitney Houston) from spiritual doubt and marital woe. + + Denzel Washington + Whitney Houston + Courtney B. Vance + + 1996 + Movies + Fantasy + + + TVG + + + 3 + + + + If I Stay + After a car wreck leaves her suspended between life and death, a teenager (Chloë Grace Moretz) faces a choice that will determine her ultimate fate. + + Chloë Grace Moretz + Mireille Enos + Jamie Blackley + + 2014 + Movies + Romance + + + TVG + + + 2 + + + + MGM+ On Demand + Specials + Performing Arts + + + + MGM+ On Demand + Specials + Performing Arts + + + + MGM+ On Demand + Specials + Performing Arts + + + + MGM+ On Demand + Specials + Performing Arts + + + + MGM+ On Demand + Specials + Performing Arts + + + + MGM+ On Demand + Specials + Performing Arts + + + + MGM+ On Demand + Specials + Performing Arts + + + + MGM+ On Demand + Specials + Performing Arts + + + + MGM+ On Demand + Specials + Performing Arts + + + + MGM+ On Demand + Specials + Performing Arts + + + + MGM+ On Demand + Specials + Performing Arts + + + + MGM+ On Demand + Specials + Performing Arts + + + + MGM+ On Demand + Specials + Performing Arts + + + + MGM+ On Demand + Specials + Performing Arts + + + + Hercules + Now a traveling mercenary, Hercules (Dwayne Johnson) must once again become a hero to help the benevolent king of Thrace protect his people from a powerful warlord. + + Dwayne Johnson + Ian McShane + Rufus Sewell + + 2014 + Movies + Adventure + + + TVPG + + + 2 + + + + Benny & Joon + An eccentric's (Johnny Depp) arrival complicates the lives of a protective brother (Aidan Quinn) and his mentally ill sister (Mary Stuart Masterson). + + Johnny Depp + Mary Stuart Masterson + Aidan Quinn + + 1993 + Movies + Romance + + + TVG + + + 3 + + + + Billy the Kid + The Agony + Billy and the Regulators hear news that John Tunstall's ranch is going to be raided. + + Tom Blyth + Daniel Webber + + Drama + + + TVMA + + + + The Winter King + Gorfydd allies with the Saxons and declares war; Arthur admits he exiled Nimue to the Isle of the Dead. + + Eddie Marsan + Nathaniel Martello-White + Valene Kane + + History + + + + Licorice Pizza + Alana Kane and Gary Valentine grow up, run around and fall in love in California's San Fernando Valley in the 1970s. + + Alana Haim + Cooper Hoffman + Sean Penn + + 2021 + Movies + Comedy + + + TVG + + + 3 + + + + The Babysitter + An alluring teenage sitter (Alicia Silverstone) becomes the object of her suburban clients' dreams and obsessions. + + Alicia Silverstone + Jeremy London + J.T. Walsh + + 1995 + Movies + Thriller + + + TVPG + + + 2 + + + + Dungeons & Dragons: Honor Among Thieves + A charming thief and a band of unlikely adventurers embark on an epic quest to retrieve a lost relic, but things go dangerously awry when they run afoul of the wrong people. + + Chris Pine + Michelle Rodriguez + Hugh Grant + + 2023 + Movies + Fantasy + + + TVG + + + 3 + + + + The Winter King + King Uther banishes his son Arthur; Arthur rescues a boy named Derfel whom he entrusts to Merlin. + + Eddie Marsan + Nathaniel Martello-White + Valene Kane + + History + + + TVMA + + + + The Winter King + An untimely death leads Merlin to locate Arthur and urge him to come back to Britain; chaos ensues when Gundleus assaults Avalon. + + Eddie Marsan + Nathaniel Martello-White + Valene Kane + + History + + + TVMA + + + + The Winter King + Arthur takes Gundleus prisoner, and Nimue begins to plan her revenge; Arthur learns that Gundleus' uncle Gorfydd is preparing for war. + + Eddie Marsan + Nathaniel Martello-White + Valene Kane + + History + + + TVY7 + + + + The Winter King + Nimue returns to Avalon, where she is found by Merlin; Derfel and Owain travel to collect taxes from King Cadwys; Gundleus returns to Caer Cadarn. + + Eddie Marsan + Nathaniel Martello-White + Valene Kane + + History + + + TVMA + + + + The Winter King + Derfel feels uncomfortable about the attack on the mine, which Owain keeps a secret; Tristan, prince of Kernow, demands justice for the raid at the mine. + + Eddie Marsan + Nathaniel Martello-White + Valene Kane + + History + + + + The Winter King + Arthur and the tribe kings enter peace talks; Arthur meets Guinevere, Ceinwyn's lady-in-waiting, while traveling. + + Eddie Marsan + Nathaniel Martello-White + Valene Kane + + History + + + + The Winter King + Arthur and Guinevere meet secretly before Arthur and Ceinwyn are to be married. + + Eddie Marsan + Nathaniel Martello-White + Valene Kane + + History + + + + The Winter King + Arthur believes that Bedwin will be able to negotiate peace with Gorfydd; however, when Morgan and Derfel arrive in Powys, they discover a horrific site. + + Eddie Marsan + Nathaniel Martello-White + Valene Kane + + History + + + + The Winter King + Gorfydd allies with the Saxons and declares war; Arthur admits he exiled Nimue to the Isle of the Dead. + + Eddie Marsan + Nathaniel Martello-White + Valene Kane + + History + + + + Billy the Kid + The Agony + Billy and the Regulators hear news that John Tunstall's ranch is going to be raided. + + Tom Blyth + Daniel Webber + + Drama + + + TVMA + + + + Billy the Kid + The Day of the Dead + The Regulators have been on the defensive since the start of war, but Billy draws up a plan which could bring the war to an end. + + Tom Blyth + Daniel Webber + + Drama + + + TVMA + + + + The Winter King + Derfel finds Nimue inside the Isle of the Dead; guilt ridden by the deal he's been forced to make with the Saxons, Arthur vows to fight to save Britain. + + Eddie Marsan + Nathaniel Martello-White + Valene Kane + + History + + + + Creed III + Still dominating the boxing world, Adonis Creed is thriving in his career and family life. When a childhood friend and former boxing prodigy resurfaces after serving time in prison, he's eager to prove he deserves his shot in the ring. + + Michael Jordan + Tessa Thompson + Jonathan Majors + + 2023 + Movies + Drama + + + TVG + + + 3 + + + + Hercules + Now a traveling mercenary, Hercules (Dwayne Johnson) must once again become a hero to help the benevolent king of Thrace protect his people from a powerful warlord. + + Dwayne Johnson + Ian McShane + Rufus Sewell + + 2014 + Movies + Adventure + + + TVPG + + + 2 + + + + Benny & Joon + An eccentric's (Johnny Depp) arrival complicates the lives of a protective brother (Aidan Quinn) and his mentally ill sister (Mary Stuart Masterson). + + Johnny Depp + Mary Stuart Masterson + Aidan Quinn + + 1993 + Movies + Romance + + + TVG + + + 3 + + + + Billy the Kid + The Agony + Billy and the Regulators hear news that John Tunstall's ranch is going to be raided. + + Tom Blyth + Daniel Webber + + Drama + + + TVMA + + + + The Winter King + Gorfydd allies with the Saxons and declares war; Arthur admits he exiled Nimue to the Isle of the Dead. + + Eddie Marsan + Nathaniel Martello-White + Valene Kane + + History + + + + Licorice Pizza + Alana Kane and Gary Valentine grow up, run around and fall in love in California's San Fernando Valley in the 1970s. + + Alana Haim + Cooper Hoffman + Sean Penn + + 2021 + Movies + Comedy + + + TVG + + + 3 + + + + The Babysitter + An alluring teenage sitter (Alicia Silverstone) becomes the object of her suburban clients' dreams and obsessions. + + Alicia Silverstone + Jeremy London + J.T. Walsh + + 1995 + Movies + Thriller + + + TVPG + + + 2 + + + + Dungeons & Dragons: Honor Among Thieves + A charming thief and a band of unlikely adventurers embark on an epic quest to retrieve a lost relic, but things go dangerously awry when they run afoul of the wrong people. + + Chris Pine + Michelle Rodriguez + Hugh Grant + + 2023 + Movies + Fantasy + + + TVG + + + 3 + + + + The Winter King + King Uther banishes his son Arthur; Arthur rescues a boy named Derfel whom he entrusts to Merlin. + + Eddie Marsan + Nathaniel Martello-White + Valene Kane + + History + + + TVMA + + + + The Winter King + An untimely death leads Merlin to locate Arthur and urge him to come back to Britain; chaos ensues when Gundleus assaults Avalon. + + Eddie Marsan + Nathaniel Martello-White + Valene Kane + + History + + + TVMA + + + + The Winter King + Arthur takes Gundleus prisoner, and Nimue begins to plan her revenge; Arthur learns that Gundleus' uncle Gorfydd is preparing for war. + + Eddie Marsan + Nathaniel Martello-White + Valene Kane + + History + + + TVY7 + + + + The Winter King + Nimue returns to Avalon, where she is found by Merlin; Derfel and Owain travel to collect taxes from King Cadwys; Gundleus returns to Caer Cadarn. + + Eddie Marsan + Nathaniel Martello-White + Valene Kane + + History + + + TVMA + + + + The Winter King + Derfel feels uncomfortable about the attack on the mine, which Owain keeps a secret; Tristan, prince of Kernow, demands justice for the raid at the mine. + + Eddie Marsan + Nathaniel Martello-White + Valene Kane + + History + + + + The Winter King + Arthur and the tribe kings enter peace talks; Arthur meets Guinevere, Ceinwyn's lady-in-waiting, while traveling. + + Eddie Marsan + Nathaniel Martello-White + Valene Kane + + History + + + + The Winter King + Arthur and Guinevere meet secretly before Arthur and Ceinwyn are to be married. + + Eddie Marsan + Nathaniel Martello-White + Valene Kane + + History + + + + The Winter King + Arthur believes that Bedwin will be able to negotiate peace with Gorfydd; however, when Morgan and Derfel arrive in Powys, they discover a horrific site. + + Eddie Marsan + Nathaniel Martello-White + Valene Kane + + History + + + + The Winter King + Gorfydd allies with the Saxons and declares war; Arthur admits he exiled Nimue to the Isle of the Dead. + + Eddie Marsan + Nathaniel Martello-White + Valene Kane + + History + + + + Billy the Kid + The Agony + Billy and the Regulators hear news that John Tunstall's ranch is going to be raided. + + Tom Blyth + Daniel Webber + + Drama + + + TVMA + + + + Billy the Kid + The Day of the Dead + The Regulators have been on the defensive since the start of war, but Billy draws up a plan which could bring the war to an end. + + Tom Blyth + Daniel Webber + + Drama + + + TVMA + + + + The Winter King + Derfel finds Nimue inside the Isle of the Dead; guilt ridden by the deal he's been forced to make with the Saxons, Arthur vows to fight to save Britain. + + Eddie Marsan + Nathaniel Martello-White + Valene Kane + + History + + + + Creed III + Still dominating the boxing world, Adonis Creed is thriving in his career and family life. When a childhood friend and former boxing prodigy resurfaces after serving time in prison, he's eager to prove he deserves his shot in the ring. + + Michael Jordan + Tessa Thompson + Jonathan Majors + + 2023 + Movies + Drama + + + TVG + + + 3 + + + + Entertainers: With Byron Allen + John Corbett ("My Big Fat Greek Wedding 3"); Tiffany Haddish ("Landscape With Invisible Hand"); Jamie Dornan ("Heart of Stone"); Renata Vaca ("Saw X"); James Mangold; Becky G; Jodi Miller; Simu Liu; Dakota Fanning; Selena Gomez; Bebe Rexha. + + + + ES.TV + Zach Galifianakis ("The Beanie Bubble"); Alexandra Shipp ("Barbie"); Shea Whigham ("Mission: Impossible -- Dead Reckoning Part One"); Rachel Zegler ("Shazam! Fury of the Gods"); Frazer Smith; Chappell Roan ("Hot to Go!"). + + + + ES.TV + Idris Elba ("Hijack"); Kate McKinnon ("Barbie"); Esai Morales ("Mission: Impossible -- Dead Reckoning Part One"); Tessa Thompson ("Creed III"); Dan Smith; Anne-Marie and Becky G ("Coming Your Way"). + + + + ES.TV + Elizabeth Banks ("The Beanie Bubble"); Cliff Curtis ("Meg 2: The Trench"); McKenna Grace ("Crater"); Chris Pratt and Charlie Day ("The Super Mario Bros. Movie"); Tina Kim; Bryce Vine ("Margot Robbie"). + + + + ES.TV + Chris Messina ("The Boogeyman"); Liza Koshy ("Transformers: Rise of the Beasts"); James Mangold ("Indiana Jones and the Dial of Destiny"); Sigourney Weaver ("Avatar: The Way of Water"); Pedro Hernandez; aespa ("Better Things"). + + + + ES.TV + Michael Cera ("Barbie"); Alice Braga ("Hypnotic"); Isaiah Russell-Bailey ("Crater"); Kathy Bates ("Are You There God? It's Me, Margaret"); Claude Stuart; Gus Dapperton ("Homebody"). + + + + ES.TV + Helen Mirren ("Barbie"); Page Kennedy ("Meg 2: The Trench"); Sophie Thatcher ("The Boogeyman"); Keanu Reeves ("John Wick: Chapter 4"); Jessica Golden; LANY ("XXL"). + + + + ES.TV + Will Ferrell ("Barbie"); Dominique Fishback ("Transformers: Rise of the Beasts"); Robert Rodriguez ("Hypnotic"); Meagan Good ("Shazam! Fury of the Gods"); Rob Troy; Jessika ("Forget Our Fears"). + + + + ES.TV + Hailee Steinfeld ("Spider-Man: Across the Spider-Verse"); William Fichtner ("Hypnotic"); Ashley Park ("Joy Ride"); Hugh Grant ("Operation Fortune: Ruse de Guerre"); Gillian Bellinger; Will Linley ("Tough (The Girls Song)"). + + + + ES.TV + Patrick Wilson ("Insidious: The Red Door"); Jaboukie Young-White ("Ruby Gillman, Teenage Kraken"); Stephanie Hsu ("Joy Ride"); Kate Winslet ("Avatar: The Way of Water"); Corey Craig; Anna Graves ("In the Wild"). + + + + ES.TV + Seth Rogen ("Joy Ride"); Druski ("Praise This"); Luna Lauren Velez ("Spider-Man: Across the Spider-Verse"); Courteney Cox ("Scream VI"); Dan Gabriel; Troye Sivan ("Rush"). + + + + Kickin' It: With Byron Allen + Nia Vardalos ("My Big Fat Greek Wedding 3"); Nick Lyon ("On Fire"); Seth Rogen ("Teenage Mutant Ninja Turtles: Mutant Mayhem"); Emily Blunt; Mark Ronson; George Lopez; Tina Kim; Druski; Pom Klementieff; Jenna Ortega; Bella Poarch and Lauv. + + + + Kickin' It: With Byron Allen + Nia Vardalos ("My Big Fat Greek Wedding 3"); Nick Lyon ("On Fire"); Seth Rogen ("Teenage Mutant Ninja Turtles: Mutant Mayhem"); Emily Blunt; Mark Ronson; George Lopez; Tina Kim; Druski; Pom Klementieff; Jenna Ortega; Bella Poarch and Lauv. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + THE AMAZING TELIKIN ONE TOUCH, THE WORLD'S EASIEST COMPUTER! + A single touch takes you to Email, Web, Video Chat, Contracts, Photos, Games, and more in this sleek, simple and sophisticated computer. Say hello to TELIKIN! TELIKIN is an ALL IN ONE computer that is easy to set up and navigate. SPECIAL OFFER! + + + + In Touch With Dr. Charles Stanley + In Touch Ministries is the broadcast teaching ministry of Dr. Charles Stanley. + + + + ES.TV + Roger Ross Williams ("Cassandro"); Andrea Martin ("My Big Fat Greek Wedding 3"); George Lopez ("Blue Beetle"); Home Theater Spotlight: Priyanka Chopra Jonas and Sam Heughan; comic Sean Klitzner; Music Download: Leigh-Anne. + + + + ES.TV + Susan Sarandon ("Blue Beetle"); Joey Fatone and Gia Carides ("My Big Fat Greek Wedding 3"); Ariana Greenblatt ("Barbie"); Home Theater Spotlight: Hugh Grant; comic Vanessa Graddick; Music Download: MAX, JVKE and Bazzi. + + + + The American Athlete + One-on-one interviews with sports superstars. + + + + ES.TV + The creative team behind "Saw X"; Nia Vardalos ("My Big Fat Greek Wedding 3"); Harvey Guillen ("Blue Beetle"); Home Theater Spotlight: Kim Cattrall ("About My Father"); comic Paul Kim; Music Download: Jenna Raine. + + + + ES.TV + John Corbett ("My Big Fat Greek Wedding 3"); Issa Rae ("Barbie"); Xolo Mariduena ("Blue Beetle"); Home Theater Spotlight: Karen Gillan ("Guardians of the Galaxy Vol. 3"); comic Jim Ruel; Music Download: Paul Russell. + + + + ES.TV + Gal Gadot ("Heart of Stone"); Nick Lyon ("On Fire"); Becky G ("Blue Beetle"); Home Theater Spotlight: Wendi McLendon-Covey; comic Mike Merrill; Music Download: Lauv. + + + + ES.TV + Peter Facinelli ("On Fire"); Isla Fisher ("Strays"); Ethann Isidore ("Indiana Jones and the Dial of Destiny"); the cast of "Book Club: The Next Chapter"; Andrew Norelli; Saweetie ("Shot O'Clock"). + + + + ES.TV + Seth Rogen ("Teenage Mutant Ninja Turtles: Mutant Mayhem"); Sophia Cai ("Meg 2: The Trench"); Henry Czerny ("Mission: Impossible -- Dead Reckoning Part One"); Zoe Saldana ("Avatar: The Way of Water"); Tobe Hixx; Icona Pop ("Fall in Love"). + + + + ES.TV + Will Ferrell ("Strays"); director Justin Simien ("Haunted Mansion"); Skyler Samuels ("Meg 2: The Trench"); Hayden Panettiere ("Scream VI"); Bret Ernst; Jon Batiste and Lil Wayne ("Uneasy"). + + + + ES.TV + Denzel Washington ("The Equalizer 3"); Emma Mackey ("Barbie"); Christopher McQuarrie ("Mission: Impossible -- Dead Reckoning Part One"); Rachel McAdams ("Are You There God? It's Me, Margaret"); Adam Hunter; Lachi and James Ian ("Lift Me Up"). + + + + Kickin' It: With Byron Allen + Will Ferrell ("Strays"); Elizabeth Banks ("The Beanie Bubble"); Denzel Washington; Becky G; James Mangold; Issa Rae; comic Heather McDonald; Jamie Dornan; Esai Morales; Kim Cattrall; Music Download: Bryce Vine. + + + + ES.TV + Roger Ross Williams ("Cassandro"); Andrea Martin ("My Big Fat Greek Wedding 3"); George Lopez ("Blue Beetle"); Home Theater Spotlight: Priyanka Chopra Jonas and Sam Heughan; comic Sean Klitzner; Music Download: Leigh-Anne. + + + + ES.TV + Susan Sarandon ("Blue Beetle"); Joey Fatone and Gia Carides ("My Big Fat Greek Wedding 3"); Ariana Greenblatt ("Barbie"); Home Theater Spotlight: Hugh Grant; comic Vanessa Graddick; Music Download: MAX, JVKE and Bazzi. + + + + The American Athlete + One-on-one interviews with sports superstars. + + + + ES.TV + The creative team behind "Saw X"; Nia Vardalos ("My Big Fat Greek Wedding 3"); Harvey Guillen ("Blue Beetle"); Home Theater Spotlight: Kim Cattrall ("About My Father"); comic Paul Kim; Music Download: Jenna Raine. + + + + ES.TV + John Corbett ("My Big Fat Greek Wedding 3"); Issa Rae ("Barbie"); Xolo Mariduena ("Blue Beetle"); Home Theater Spotlight: Karen Gillan ("Guardians of the Galaxy Vol. 3"); comic Jim Ruel; Music Download: Paul Russell. + + + + ES.TV + Gal Gadot ("Heart of Stone"); Nick Lyon ("On Fire"); Becky G ("Blue Beetle"); Home Theater Spotlight: Wendi McLendon-Covey; comic Mike Merrill; Music Download: Lauv. + + + + ES.TV + Peter Facinelli ("On Fire"); Isla Fisher ("Strays"); Ethann Isidore ("Indiana Jones and the Dial of Destiny"); the cast of "Book Club: The Next Chapter"; Andrew Norelli; Saweetie ("Shot O'Clock"). + + + + ES.TV + Seth Rogen ("Teenage Mutant Ninja Turtles: Mutant Mayhem"); Sophia Cai ("Meg 2: The Trench"); Henry Czerny ("Mission: Impossible -- Dead Reckoning Part One"); Zoe Saldana ("Avatar: The Way of Water"); Tobe Hixx; Icona Pop ("Fall in Love"). + + + + ES.TV + Will Ferrell ("Strays"); director Justin Simien ("Haunted Mansion"); Skyler Samuels ("Meg 2: The Trench"); Hayden Panettiere ("Scream VI"); Bret Ernst; Jon Batiste and Lil Wayne ("Uneasy"). + + + + ES.TV + Denzel Washington ("The Equalizer 3"); Emma Mackey ("Barbie"); Christopher McQuarrie ("Mission: Impossible -- Dead Reckoning Part One"); Rachel McAdams ("Are You There God? It's Me, Margaret"); Adam Hunter; Lachi and James Ian ("Lift Me Up"). + + + + Entertainers: With Byron Allen + Zach Galifianakis ("The Beanie Bubble"); Nick Lyon ("On Fire"); Kate McKinnon ("Barbie"); Nia Vardalos; Druski; Isla Fisher; comic Tobe Hixx; Susan Sarandon; Kingsley Ben-Adir; Priyanka Chopra Jonas and Sam Heughan; Music Download: Aespa. + + + + ES.TV + Roger Ross Williams ("Cassandro"); Andrea Martin ("My Big Fat Greek Wedding 3"); George Lopez ("Blue Beetle"); Home Theater Spotlight: Priyanka Chopra Jonas and Sam Heughan; comic Sean Klitzner; Music Download: Leigh-Anne. + + + + ES.TV + Susan Sarandon ("Blue Beetle"); Joey Fatone and Gia Carides ("My Big Fat Greek Wedding 3"); Ariana Greenblatt ("Barbie"); Home Theater Spotlight: Hugh Grant; comic Vanessa Graddick; Music Download: MAX, JVKE and Bazzi. + + + + The American Athlete + One-on-one interviews with sports superstars. + + + + ES.TV + The creative team behind "Saw X"; Nia Vardalos ("My Big Fat Greek Wedding 3"); Harvey Guillen ("Blue Beetle"); Home Theater Spotlight: Kim Cattrall ("About My Father"); comic Paul Kim; Music Download: Jenna Raine. + + + + ES.TV + John Corbett ("My Big Fat Greek Wedding 3"); Issa Rae ("Barbie"); Xolo Mariduena ("Blue Beetle"); Home Theater Spotlight: Karen Gillan ("Guardians of the Galaxy Vol. 3"); comic Jim Ruel; Music Download: Paul Russell. + + + + ES.TV + Gal Gadot ("Heart of Stone"); Nick Lyon ("On Fire"); Becky G ("Blue Beetle"); Home Theater Spotlight: Wendi McLendon-Covey; comic Mike Merrill; Music Download: Lauv. + + + + ES.TV + Peter Facinelli ("On Fire"); Isla Fisher ("Strays"); Ethann Isidore ("Indiana Jones and the Dial of Destiny"); the cast of "Book Club: The Next Chapter"; Andrew Norelli; Saweetie ("Shot O'Clock"). + + + + ES.TV + Seth Rogen ("Teenage Mutant Ninja Turtles: Mutant Mayhem"); Sophia Cai ("Meg 2: The Trench"); Henry Czerny ("Mission: Impossible -- Dead Reckoning Part One"); Zoe Saldana ("Avatar: The Way of Water"); Tobe Hixx; Icona Pop ("Fall in Love"). + + + + ES.TV + Will Ferrell ("Strays"); director Justin Simien ("Haunted Mansion"); Skyler Samuels ("Meg 2: The Trench"); Hayden Panettiere ("Scream VI"); Bret Ernst; Jon Batiste and Lil Wayne ("Uneasy"). + + + + ES.TV + Denzel Washington ("The Equalizer 3"); Emma Mackey ("Barbie"); Christopher McQuarrie ("Mission: Impossible -- Dead Reckoning Part One"); Rachel McAdams ("Are You There God? It's Me, Margaret"); Adam Hunter; Lachi and James Ian ("Lift Me Up"). + + + + Kickin' It: With Byron Allen + Will Ferrell ("Strays"); Elizabeth Banks ("The Beanie Bubble"); Denzel Washington; Becky G; James Mangold; Issa Rae; comic Heather McDonald; Jamie Dornan; Esai Morales; Kim Cattrall; Music Download: Bryce Vine. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + ES.TV + Byron Allen hosts a dose of celebrity interviews, comedy jams, hit musical performances and access to blockbuster premieres, red-carpet events and actors. + + + + ES.TV + Byron Allen hosts a dose of celebrity interviews, comedy jams, hit musical performances and access to blockbuster premieres, red-carpet events and actors. + + + + ES.TV + Byron Allen hosts a dose of celebrity interviews, comedy jams, hit musical performances and access to blockbuster premieres, red-carpet events and actors. + + + + ES.TV + Byron Allen hosts a dose of celebrity interviews, comedy jams, hit musical performances and access to blockbuster premieres, red-carpet events and actors. + + + + ES.TV + Byron Allen hosts a dose of celebrity interviews, comedy jams, hit musical performances and access to blockbuster premieres, red-carpet events and actors. + + + + ES.TV + Byron Allen hosts a dose of celebrity interviews, comedy jams, hit musical performances and access to blockbuster premieres, red-carpet events and actors. + + + + ES.TV + Byron Allen hosts a dose of celebrity interviews, comedy jams, hit musical performances and access to blockbuster premieres, red-carpet events and actors. + + + + ES.TV + Byron Allen hosts a dose of celebrity interviews, comedy jams, hit musical performances and access to blockbuster premieres, red-carpet events and actors. + + + + ES.TV + Byron Allen hosts a dose of celebrity interviews, comedy jams, hit musical performances and access to blockbuster premieres, red-carpet events and actors. + + + + ES.TV + Byron Allen hosts a dose of celebrity interviews, comedy jams, hit musical performances and access to blockbuster premieres, red-carpet events and actors. + + + + Kickin' It: With Byron Allen + Byron Allen presents comedy, music and interviews. + + + + ES.TV + Byron Allen hosts a dose of celebrity interviews, comedy jams, hit musical performances and access to blockbuster premieres, red-carpet events and actors. + + + + ES.TV + Byron Allen hosts a dose of celebrity interviews, comedy jams, hit musical performances and access to blockbuster premieres, red-carpet events and actors. + + + + ES.TV + Byron Allen hosts a dose of celebrity interviews, comedy jams, hit musical performances and access to blockbuster premieres, red-carpet events and actors. + + + + ES.TV + Byron Allen hosts a dose of celebrity interviews, comedy jams, hit musical performances and access to blockbuster premieres, red-carpet events and actors. + + + + ES.TV + Byron Allen hosts a dose of celebrity interviews, comedy jams, hit musical performances and access to blockbuster premieres, red-carpet events and actors. + + + + ES.TV + Byron Allen hosts a dose of celebrity interviews, comedy jams, hit musical performances and access to blockbuster premieres, red-carpet events and actors. + + + + ES.TV + Byron Allen hosts a dose of celebrity interviews, comedy jams, hit musical performances and access to blockbuster premieres, red-carpet events and actors. + + + + ES.TV + Byron Allen hosts a dose of celebrity interviews, comedy jams, hit musical performances and access to blockbuster premieres, red-carpet events and actors. + + + + ES.TV + Susan Sarandon ("Blue Beetle"); Joey Fatone and Gia Carides ("My Big Fat Greek Wedding 3"); Ariana Greenblatt ("Barbie"); Home Theater Spotlight: Hugh Grant; comic Vanessa Graddick; Music Download: MAX, JVKE and Bazzi. + + + + ES.TV + Roger Ross Williams ("Cassandro"); Andrea Martin ("My Big Fat Greek Wedding 3"); George Lopez ("Blue Beetle"); Home Theater Spotlight: Priyanka Chopra Jonas and Sam Heughan; comic Sean Klitzner; Music Download: Leigh-Anne. + + + + Entertainers: With Byron Allen + Denzel Washington; Elizabeth Banks; Seth Rogen; Helen Mirren; Justin Simien; Esai Morales; James P. Connolly; the cast of "Indiana Jones and the Dial of Destiny"; Letitia Wright; Chris Pratt and Charlie Day; Anne-Marie and Becky G. + + + + ES.TV + Zach Galifianakis ("The Beanie Bubble"); Alexandra Shipp ("Barbie"); Shea Whigham ("Mission: Impossible -- Dead Reckoning Part One"); Rachel Zegler ("Shazam! Fury of the Gods"); Frazer Smith; Chappell Roan ("Hot to Go!"). + + + + ES.TV + Denzel Washington ("The Equalizer 3"); Emma Mackey ("Barbie"); Christopher McQuarrie ("Mission: Impossible -- Dead Reckoning Part One"); Rachel McAdams ("Are You There God? It's Me, Margaret"); Adam Hunter; Lachi and James Ian ("Lift Me Up"). + + + + ES.TV + Will Ferrell ("Strays"); director Justin Simien ("Haunted Mansion"); Skyler Samuels ("Meg 2: The Trench"); Hayden Panettiere ("Scream VI"); Bret Ernst; Jon Batiste and Lil Wayne ("Uneasy"). + + + + ES.TV + Seth Rogen ("Teenage Mutant Ninja Turtles: Mutant Mayhem"); Sophia Cai ("Meg 2: The Trench"); Henry Czerny ("Mission: Impossible -- Dead Reckoning Part One"); Zoe Saldana ("Avatar: The Way of Water"); Tobe Hixx; Icona Pop ("Fall in Love"). + + + + ES.TV + Peter Facinelli ("On Fire"); Isla Fisher ("Strays"); Ethann Isidore ("Indiana Jones and the Dial of Destiny"); the cast of "Book Club: The Next Chapter"; Andrew Norelli; Saweetie ("Shot O'Clock"). + + + + ES.TV + Gal Gadot ("Heart of Stone"); Nick Lyon ("On Fire"); Becky G ("Blue Beetle"); Home Theater Spotlight: Wendi McLendon-Covey; comic Mike Merrill; Music Download: Lauv. + + + + ES.TV + John Corbett ("My Big Fat Greek Wedding 3"); Issa Rae ("Barbie"); Xolo Mariduena ("Blue Beetle"); Home Theater Spotlight: Karen Gillan ("Guardians of the Galaxy Vol. 3"); comic Jim Ruel; Music Download: Paul Russell. + + + + ES.TV + The creative team behind "Saw X"; Nia Vardalos ("My Big Fat Greek Wedding 3"); Harvey Guillen ("Blue Beetle"); Home Theater Spotlight: Kim Cattrall ("About My Father"); comic Paul Kim; Music Download: Jenna Raine. + + + + ES.TV + Susan Sarandon ("Blue Beetle"); Joey Fatone and Gia Carides ("My Big Fat Greek Wedding 3"); Ariana Greenblatt ("Barbie"); Home Theater Spotlight: Hugh Grant; comic Vanessa Graddick; Music Download: MAX, JVKE and Bazzi. + + + + ES.TV + Roger Ross Williams ("Cassandro"); Andrea Martin ("My Big Fat Greek Wedding 3"); George Lopez ("Blue Beetle"); Home Theater Spotlight: Priyanka Chopra Jonas and Sam Heughan; comic Sean Klitzner; Music Download: Leigh-Anne. + + + + Kickin' It: With Byron Allen + Roger Ross Williams ("Cassandro"); Isla Fisher; the creative team behind "Saw X"; Zach Galifianakis; Samuel L. Jackson and Olivia Coleman; Peter Facinelli; Tobe Hixx; Michael Cera; Gal Gadot; Keanu Reeves; Tomorrow X Together and Jonas Brothers. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + ES.TV + Rose Byrne ("Insidious: The Red Door"); the stars of "Elemental"; Gene Stupnitsky ("No Hard Feelings"); Michael Douglas ("Ant-Man and the Wasp: Quantumania"); Tiffany Haddish; Nessa Barrett ("hell is a teenage girl"). + + + + ES.TV + Seth Rogen ("Joy Ride"); Druski ("Praise This"); Luna Lauren Velez ("Spider-Man: Across the Spider-Verse"); Courteney Cox ("Scream VI"); Dan Gabriel; Troye Sivan ("Rush"). + + + + ES.TV + Patrick Wilson ("Insidious: The Red Door"); Jaboukie Young-White ("Ruby Gillman, Teenage Kraken"); Stephanie Hsu ("Joy Ride"); Kate Winslet ("Avatar: The Way of Water"); Corey Craig; Anna Graves ("In the Wild"). + + + + ES.TV + Hailee Steinfeld ("Spider-Man: Across the Spider-Verse"); William Fichtner ("Hypnotic"); Ashley Park ("Joy Ride"); Hugh Grant ("Operation Fortune: Ruse de Guerre"); Gillian Bellinger; Will Linley ("Tough (The Girls Song)"). + + + + ES.TV + Will Ferrell ("Barbie"); Dominique Fishback ("Transformers: Rise of the Beasts"); Robert Rodriguez ("Hypnotic"); Meagan Good ("Shazam! Fury of the Gods"); Rob Troy; Jessika ("Forget Our Fears"). + + + + ES.TV + Helen Mirren ("Barbie"); Page Kennedy ("Meg 2: The Trench"); Sophie Thatcher ("The Boogeyman"); Keanu Reeves ("John Wick: Chapter 4"); Jessica Golden; LANY ("XXL"). + + + + ES.TV + Michael Cera ("Barbie"); Alice Braga ("Hypnotic"); Isaiah Russell-Bailey ("Crater"); Kathy Bates ("Are You There God? It's Me, Margaret"); Claude Stuart; Gus Dapperton ("Homebody"). + + + + ES.TV + Chris Messina ("The Boogeyman"); Liza Koshy ("Transformers: Rise of the Beasts"); James Mangold ("Indiana Jones and the Dial of Destiny"); Sigourney Weaver ("Avatar: The Way of Water"); Pedro Hernandez; aespa ("Better Things"). + + + + ES.TV + Elizabeth Banks ("The Beanie Bubble"); Cliff Curtis ("Meg 2: The Trench"); McKenna Grace ("Crater"); Chris Pratt and Charlie Day ("The Super Mario Bros. Movie"); Tina Kim; Bryce Vine ("Margot Robbie"). + + + + ES.TV + Idris Elba ("Hijack"); Kate McKinnon ("Barbie"); Esai Morales ("Mission: Impossible -- Dead Reckoning Part One"); Tessa Thompson ("Creed III"); Dan Smith; Anne-Marie and Becky G ("Coming Your Way"). + + + + Kickin' It: With Byron Allen + Ryan Gosling ("Barbie"); Wood Harris ("Shooting Stars"); Rebecca Ferguson; Owen Wilson ("Haunted Mansion"); Harrison Ford and Phoebe Waller-Bridge; Anthony Ramos; comic Jessica Golden; Jamie Bell ("Surrounded"); Kingsley Ben-Adir; Tessa Thompson; NF. + + + + ES.TV + Rose Byrne ("Insidious: The Red Door"); the stars of "Elemental"; Gene Stupnitsky ("No Hard Feelings"); Michael Douglas ("Ant-Man and the Wasp: Quantumania"); Tiffany Haddish; Nessa Barrett ("hell is a teenage girl"). + + + + ES.TV + Seth Rogen ("Joy Ride"); Druski ("Praise This"); Luna Lauren Velez ("Spider-Man: Across the Spider-Verse"); Courteney Cox ("Scream VI"); Dan Gabriel; Troye Sivan ("Rush"). + + + + ES.TV + Patrick Wilson ("Insidious: The Red Door"); Jaboukie Young-White ("Ruby Gillman, Teenage Kraken"); Stephanie Hsu ("Joy Ride"); Kate Winslet ("Avatar: The Way of Water"); Corey Craig; Anna Graves ("In the Wild"). + + + + ES.TV + Hailee Steinfeld ("Spider-Man: Across the Spider-Verse"); William Fichtner ("Hypnotic"); Ashley Park ("Joy Ride"); Hugh Grant ("Operation Fortune: Ruse de Guerre"); Gillian Bellinger; Will Linley ("Tough (The Girls Song)"). + + + + ES.TV + Will Ferrell ("Barbie"); Dominique Fishback ("Transformers: Rise of the Beasts"); Robert Rodriguez ("Hypnotic"); Meagan Good ("Shazam! Fury of the Gods"); Rob Troy; Jessika ("Forget Our Fears"). + + + + ES.TV + Helen Mirren ("Barbie"); Page Kennedy ("Meg 2: The Trench"); Sophie Thatcher ("The Boogeyman"); Keanu Reeves ("John Wick: Chapter 4"); Jessica Golden; LANY ("XXL"). + + + + ES.TV + Michael Cera ("Barbie"); Alice Braga ("Hypnotic"); Isaiah Russell-Bailey ("Crater"); Kathy Bates ("Are You There God? It's Me, Margaret"); Claude Stuart; Gus Dapperton ("Homebody"). + + + + ES.TV + Chris Messina ("The Boogeyman"); Liza Koshy ("Transformers: Rise of the Beasts"); James Mangold ("Indiana Jones and the Dial of Destiny"); Sigourney Weaver ("Avatar: The Way of Water"); Pedro Hernandez; aespa ("Better Things"). + + + + ES.TV + Elizabeth Banks ("The Beanie Bubble"); Cliff Curtis ("Meg 2: The Trench"); McKenna Grace ("Crater"); Chris Pratt and Charlie Day ("The Super Mario Bros. Movie"); Tina Kim; Bryce Vine ("Margot Robbie"). + + + + ES.TV + Idris Elba ("Hijack"); Kate McKinnon ("Barbie"); Esai Morales ("Mission: Impossible -- Dead Reckoning Part One"); Tessa Thompson ("Creed III"); Dan Smith; Anne-Marie and Becky G ("Coming Your Way"). + + + + Entertainers: With Byron Allen + The creative team behind "Saw X"; Greta Gerwig ("Barbie"); Peter Facinelli ("On Fire"); Gal Gadot ("Heart of Stone"); Roger Ross Williams ("Cassandro"); Will Ferrell ("Strays"); comic Paul Ogata; Simon Pegg; Emily Blunt; Keanu Reeves; Zach Bryan. + + + + ES.TV + Rose Byrne ("Insidious: The Red Door"); the stars of "Elemental"; Gene Stupnitsky ("No Hard Feelings"); Michael Douglas ("Ant-Man and the Wasp: Quantumania"); Tiffany Haddish; Nessa Barrett ("hell is a teenage girl"). + + + + ES.TV + Seth Rogen ("Joy Ride"); Druski ("Praise This"); Luna Lauren Velez ("Spider-Man: Across the Spider-Verse"); Courteney Cox ("Scream VI"); Dan Gabriel; Troye Sivan ("Rush"). + + + + ES.TV + Patrick Wilson ("Insidious: The Red Door"); Jaboukie Young-White ("Ruby Gillman, Teenage Kraken"); Stephanie Hsu ("Joy Ride"); Kate Winslet ("Avatar: The Way of Water"); Corey Craig; Anna Graves ("In the Wild"). + + + + ES.TV + Hailee Steinfeld ("Spider-Man: Across the Spider-Verse"); William Fichtner ("Hypnotic"); Ashley Park ("Joy Ride"); Hugh Grant ("Operation Fortune: Ruse de Guerre"); Gillian Bellinger; Will Linley ("Tough (The Girls Song)"). + + + + ES.TV + Will Ferrell ("Barbie"); Dominique Fishback ("Transformers: Rise of the Beasts"); Robert Rodriguez ("Hypnotic"); Meagan Good ("Shazam! Fury of the Gods"); Rob Troy; Jessika ("Forget Our Fears"). + + + + ES.TV + Helen Mirren ("Barbie"); Page Kennedy ("Meg 2: The Trench"); Sophie Thatcher ("The Boogeyman"); Keanu Reeves ("John Wick: Chapter 4"); Jessica Golden; LANY ("XXL"). + + + + ES.TV + Michael Cera ("Barbie"); Alice Braga ("Hypnotic"); Isaiah Russell-Bailey ("Crater"); Kathy Bates ("Are You There God? It's Me, Margaret"); Claude Stuart; Gus Dapperton ("Homebody"). + + + + ES.TV + Chris Messina ("The Boogeyman"); Liza Koshy ("Transformers: Rise of the Beasts"); James Mangold ("Indiana Jones and the Dial of Destiny"); Sigourney Weaver ("Avatar: The Way of Water"); Pedro Hernandez; aespa ("Better Things"). + + + + ES.TV + Elizabeth Banks ("The Beanie Bubble"); Cliff Curtis ("Meg 2: The Trench"); McKenna Grace ("Crater"); Chris Pratt and Charlie Day ("The Super Mario Bros. Movie"); Tina Kim; Bryce Vine ("Margot Robbie"). + + + + ES.TV + Idris Elba ("Hijack"); Kate McKinnon ("Barbie"); Esai Morales ("Mission: Impossible -- Dead Reckoning Part One"); Tessa Thompson ("Creed III"); Dan Smith; Anne-Marie and Becky G ("Coming Your Way"). + + + + Kickin' It: With Byron Allen + Ryan Gosling ("Barbie"); Wood Harris ("Shooting Stars"); Rebecca Ferguson; Owen Wilson ("Haunted Mansion"); Harrison Ford and Phoebe Waller-Bridge; Anthony Ramos; comic Jessica Golden; Jamie Bell ("Surrounded"); Kingsley Ben-Adir; Tessa Thompson; NF. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + CHRISTINA HALL and Jacuzzi® amazing bathroom makeovers + SPECIAL OFFER + Trusted brand Jacuzzi® and renowned interior designer, Christina Hall can help you transform your old bathroom into a gorgeous custom, safe and stylish space. Jacuzzi® has limited time special offers to make your dream bathroom happen today CALL NOW. + + + + ES.TV + The cast of "Barbie"; Owen Wilson ("Haunted Mansion"); Emily Blunt ("Oppenheimer"); Billy Porter ("80 for Brady"); comic Ken Rogerson; music download: Zach Bryan ("Oklahoma Smokeshow"). + + + + ES.TV + Matt Damon ("Oppenheimer"); Rosario Dawson and LaKeith Stanfield ("Haunted Mansion"); Greta Gerwig ("Barbie"); Zachary Levi ("Shazam! Fury of the Gods"); comic Dante; music download: King and Nick Jonas ("Maan Meri Jaan"). + + + + ES.TV + Margot Robbie ("Barbie"); Sofia Valdes ("music"); Cillian Murphy ("Oppenheimer"); Paul Rudd ("Ant-Man and the Wasp: Quantumania"); comic Reggie Jr.; music download: NF ("Motto"). + + + + ES.TV + Robert Downey Jr. ("Oppenheimer"); Mira Sorvino ("Sound of Freedom"); America Ferrera ("Barbie"); Chris Pine ("Dungeons & Dragons: Honor Among Thieves"); comic Heather McDonald; music download: Jason Mraz ("Feel Good Too"). + + + + ES.TV + Jamie Lee Curtis and Tiffany Haddish ("Haunted Mansion"); Ryan Gosling ("Barbie"); Lana Condor ("Ruby Gillman, Teenage Kraken"); Nicolas Cage ("Renfield"); comic Jann Karam; music download: Nessa Barrett ("lie"). + + + + ES.TV + Jamie Bell ("Surrounded"); Brian Tyree-Henry ("Spider-Man: Across the Spider-Verse"); Rita Moreno ("Fast X"); Awkwafina ("Renfield"); comic Mark Agee; Tomorrow X Together and Jonas Brothers ("Do It Like That"). + + + + ES.TV + Jennifer Lawrence ("No Hard Feelings"); Chris Messina ("Air"); Daniela Melchior and Alan Ritchson ("Fast X"); Djimon Hounsou ("Shazam! Fury of the Gods"); comic Frances Dilorinzo; senses ("Gonna Make Sure"). + + + + ES.TV + Adrien Brody ("Ghosted"); Letitia Wright ("Surrounded"); Sung Kang ("Fast X"); Anya Taylor-Joy ("The Super Mario Bros. Movie"); comic Nestor Rodriguez; Mae Muller ("Me, Myself & I"). + + + + ES.TV + Charlize Theron ("Fast X"); Daniel Kaluuya ("Spider-Man: Across the Spider-Verse"); Lin Shaye ("Insidious: The Red Door"); Josh Hartnett ("Operation Fortune: Ruse de Guerre"); comic Monrok; Shab & Fat Joe ("Voodoo"). + + + + ES.TV + Oscar Isaac ("Spider-Man: Across the Spider-Verse"); Nathalie Emmanuel ("Fast X"); Ty Simpkins ("Insidious: The Red Door"); Katie Holmes ("Rare Objects"); comic James P. Connolly; ZAYN ("Love Like This"). + + + + Kickin' It: With Byron Allen + Roger Ross Williams ("Cassandro"); Isla Fisher; the creative team behind "Saw X"; Zach Galifianakis; Samuel L. Jackson and Olivia Coleman; Peter Facinelli; Tobe Hixx; Michael Cera; Gal Gadot; Keanu Reeves; Tomorrow X Together and Jonas Brothers. + + + + ES.TV + The cast of "Barbie"; Owen Wilson ("Haunted Mansion"); Emily Blunt ("Oppenheimer"); Billy Porter ("80 for Brady"); comic Ken Rogerson; music download: Zach Bryan ("Oklahoma Smokeshow"). + + + + ES.TV + Matt Damon ("Oppenheimer"); Rosario Dawson and LaKeith Stanfield ("Haunted Mansion"); Greta Gerwig ("Barbie"); Zachary Levi ("Shazam! Fury of the Gods"); comic Dante; music download: King and Nick Jonas ("Maan Meri Jaan"). + + + + ES.TV + Margot Robbie ("Barbie"); Sofia Valdes ("music"); Cillian Murphy ("Oppenheimer"); Paul Rudd ("Ant-Man and the Wasp: Quantumania"); comic Reggie Jr.; music download: NF ("Motto"). + + + + ES.TV + Robert Downey Jr. ("Oppenheimer"); Mira Sorvino ("Sound of Freedom"); America Ferrera ("Barbie"); Chris Pine ("Dungeons & Dragons: Honor Among Thieves"); comic Heather McDonald; music download: Jason Mraz ("Feel Good Too"). + + + + ES.TV + Jamie Lee Curtis and Tiffany Haddish ("Haunted Mansion"); Ryan Gosling ("Barbie"); Lana Condor ("Ruby Gillman, Teenage Kraken"); Nicolas Cage ("Renfield"); comic Jann Karam; music download: Nessa Barrett ("lie"). + + + + ES.TV + Jamie Bell ("Surrounded"); Brian Tyree-Henry ("Spider-Man: Across the Spider-Verse"); Rita Moreno ("Fast X"); Awkwafina ("Renfield"); comic Mark Agee; Tomorrow X Together and Jonas Brothers ("Do It Like That"). + + + + ES.TV + Jennifer Lawrence ("No Hard Feelings"); Chris Messina ("Air"); Daniela Melchior and Alan Ritchson ("Fast X"); Djimon Hounsou ("Shazam! Fury of the Gods"); comic Frances Dilorinzo; senses ("Gonna Make Sure"). + + + + ES.TV + Adrien Brody ("Ghosted"); Letitia Wright ("Surrounded"); Sung Kang ("Fast X"); Anya Taylor-Joy ("The Super Mario Bros. Movie"); comic Nestor Rodriguez; Mae Muller ("Me, Myself & I"). + + + + Oregon State vs. Colorado + Oregon State at Colorado + Deion Sanders and the Buffaloes (4-4, 1-4 Pac-12) try to right the ship against the No. 16 Beavers (6-2, 3-2). Colorado and Coach Prime have lost four of their last five contests. Oregon State's three-game win streak was stopped in Arizona last week. + Sports + Football + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + College Football Final + After the final whistle, College Football Final breaks down each Saturday's college football action with postgame highlights and analysis. Matt Barrie hosts alongside Joey Galloway and Dan Mullen. + Sports + Football + + + + College Football Final + After the final whistle, College Football Final breaks down each Saturday's college football action with postgame highlights and analysis. Matt Barrie hosts alongside Joey Galloway and Dan Mullen. + Sports + Football + + + + NFL Matchup + Sal Paolantonio, Matt Bowen and Greg Cosell bring viewers inside the film room for the Xs and Os analysis of weekend's NFL matchups. + Sports + Football + + + + Kansas vs. Iowa State + Kansas at Iowa State + The Cyclones try to clinch bowl eligibility when they welcome the No. 21 Jayhawks to Ames, Iowa. Last year, Kansas beat Iowa State for the first time since 2014, snapping a seven-game skid with a 14-11 triumph. The Cyclones have won three in a row. + Sports + Football + + + + NFL Matchup + Sal Paolantonio, Matt Bowen and Greg Cosell bring viewers inside the film room for the Xs and Os analysis of weekend's NFL matchups. + Sports + Football + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + Sunday NFL Countdown + Samantha Ponder, with a team of analysts, introduces the features and directs the storylines associated with the day's games.Guests: Chris Mortensen, Adam Schefter.. + Sports + Football + + + + Championship Drive + Led by host Kevin Connors, college football analysts and reporters meet to discuss and debate who the top teams are in the country. + Sports + Football + + + + College Football Final + After the final whistle, College Football Final breaks down each Saturday's college football action with postgame highlights and analysis. Matt Barrie hosts alongside Joey Galloway and Dan Mullen. + Sports + Football + + + + Bad Beats + A look at the moments that drove sports bettors wild during recent games. + Sports + eSports + + + + Kentucky vs. Florida + Kentucky at Florida + From Exactech Arena in Gainesville, Fla. + Sports + Volleyball + + + + X Games + Monster Energy Trail of Missions 2023 + Breathtaking action from the X Games with action from events like snowboarding and extreme skiing. + Sports + Extreme + + + + College Football Final + After the final whistle, College Football Final breaks down each Saturday's college football action with postgame highlights and analysis. Matt Barrie hosts alongside Joey Galloway and Dan Mullen. + Sports + Football + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + 2023 Rawlings Gold Glove Awards Show + The top fielders at each position in the American and National Leagues are announced. + Sports + Baseball + + + + Boxing + 2015: Floyd Mayweather vs. Manny Pacquiao + Floyd Mayweather battles Manny Pacquiao. From May 2, 2015. + Sports + Boxing + + + TV14 + + + + UFC Countdown + UFC 295: Prochazka vs. Pereira + A look at the lives and training camps of UFC athletes as they prepare for the next UFC pay-per-view event. + Sports + Martial Arts + + + TV14 + + + + Mike Tyson's Greatest Hits - Volume 1 + Highlighting some of Mike Tyson's most dominating performances from early in his stellar career in boxing. + Sports + Boxing + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter With Scott Van Pelt + Scott Van Pelt presents the day in sports through his unique perspective with highlights, special guests and his. + Sports + News + + + + SportsCenter With Scott Van Pelt + Scott Van Pelt presents the day in sports through his unique perspective with highlights, special guests and his. + Sports + News + + + + SportsCenter With Scott Van Pelt + Scott Van Pelt presents the day in sports through his unique perspective with highlights, special guests and his. + Sports + News + + + + SportsCenter With Scott Van Pelt + Scott Van Pelt presents the day in sports through his unique perspective with highlights, special guests and his. + Sports + News + + + + Oregon State vs. Colorado + Oregon State at Colorado + Deion Sanders and the Buffaloes (4-4, 1-4 Pac-12) try to right the ship against the No. 16 Beavers (6-2, 3-2). Colorado and Coach Prime have lost four of their last five contests. Oregon State's three-game win streak was stopped in Arizona last week. + Sports + Football + + + + SportsCenter With Scott Van Pelt + Scott Van Pelt presents the day in sports through his unique perspective with highlights, special guests and his. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + Get Up + Host Mike Greenberg is joined by ESPN analysts to analyze the latest news from the world of sports on a morning show originating from Manhattan's South Street Seaport. + Sports + Talk Show + + + + First Take + Stephen A. Smith joins Molly Qerim to debate the hottest topics in sports with contributors and guests. + Sports + News + + + + The Pat McAfee Show + Former NFL punter Pat McAfee brings his humor and candor to the microphone to highlight the day's top stories. + Sports + Talk Show + + + TVPG + + + + Notre Dame vs. South Carolina + Aflac Oui-Play: Notre Dame vs. South Carolina + From Halle Georges Carpentier in Paris. + Sports + Basketball + + + + Monday Blitz + A fast-paced offering that blends the NFL and college football while focusing on the weekend that was and broader topics; includes moments and significant achievements from all levels of football, such as high school, youth and flag football. + Sports + Football + + + + NFL Live + Host Laura Rutledge takes the helm of this weekday show featuring the likes of Marcus Spears, Dan Orlovsky, Mina Kimes, and Adam Schefter, who offer the latest news and analysis from across the NFL.Guests: Marcus Spears, Dan Orlovsky, Ryan Clark, Mina Kimes, Field Yates, Adam Schefter, Keyshawn Johnson.. + Sports + Football + + + + Around the Horn + Sportswriters around the country discuss sports issues. + Sports + Talk Show + + + + Pardon the Interruption + Opinions regarding the day's top sports stories. + Sports + Talk Show + + + + Monday Night Countdown + Host Scott Van Pelt is joined by Ryan Clark, Robert Griffin III, Marcus Spears, Adam Schefter and Michelle Beisner-Buck as they preview the upcoming Monday Night Football matchup and discuss the latest news from Sunday's NFL action. + Sports + Football + + + + Los Angeles Chargers vs. New York Jets + Los Angeles Chargers at New York Jets + The streaking Jets (4-3) welcome the Chargers (3-4) to MetLife Stadium for Monday Night Football. The Jets have won three straight following a 13-10 victory in overtime over the Giants. Los Angeles is back on track after blasting Chicago 30-13. + Sports + Football + + + + Monday Night Postgame + A recap of the Monday Night Football matchup with highlights, interviews and more. + Sports + Football + + + + SportsCenter With Scott Van Pelt + Scott Van Pelt presents the day in sports through his unique perspective with highlights, special guests and his. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + Get Up + Host Mike Greenberg is joined by ESPN analysts to analyze the latest news from the world of sports on a morning show originating from Manhattan's South Street Seaport. + Sports + Talk Show + + + + First Take + Stephen A. Smith joins Molly Qerim to debate the hottest topics in sports with contributors and guests. + Sports + News + + + + The Pat McAfee Show + Former NFL punter Pat McAfee brings his humor and candor to the microphone to highlight the day's top stories. + Sports + Talk Show + + + TVPG + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + NBA Today + In-depth, comprehensive daily coverage of all aspects of the NBA from expert analysts. + Sports + Basketball + + + + NFL Live + Host Laura Rutledge takes the helm of this weekday show featuring the likes of Marcus Spears, Dan Orlovsky, Mina Kimes, and Adam Schefter, who offer the latest news and analysis from across the NFL.Guests: Marcus Spears, Dan Orlovsky, Ryan Clark, Mina Kimes, Field Yates, Adam Schefter, Keyshawn Johnson.. + Sports + Football + + + + Around the Horn + Sportswriters around the country discuss sports issues. + Sports + Talk Show + + + + Pardon the Interruption + Opinions regarding the day's top sports stories. + Sports + Talk Show + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + College Football Playoff: Top 25 + College football's top teams are debated and discussed in anticipation of the College Football Playoff Selection Committee's first meeting. Rece Davis hosts with analysis from David Pollack, Joey Galloway and Kirk Herbstreit. + Sports + Football + + + + Pickleball + Pro-Am Celebrity Pickleball Showdown + Action from the paddle sport. + Sports + Racket Sports + + + + Auburn vs. Baylor + From the Sanford Pentagon in Sioux Falls, S.D. + Sports + Basketball + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + Get Up + Host Mike Greenberg is joined by ESPN analysts to analyze the latest news from the world of sports on a morning show originating from Manhattan's South Street Seaport. + Sports + Talk Show + + + + First Take + Stephen A. Smith joins Molly Qerim to debate the hottest topics in sports with contributors and guests. + Sports + News + + + + The Pat McAfee Show + Former NFL punter Pat McAfee brings his humor and candor to the microphone to highlight the day's top stories. + Sports + Talk Show + + + TVPG + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + NBA Today + In-depth, comprehensive daily coverage of all aspects of the NBA from expert analysts. + Sports + Basketball + + + + NFL Live + Host Laura Rutledge takes the helm of this weekday show featuring the likes of Marcus Spears, Dan Orlovsky, Mina Kimes, and Adam Schefter, who offer the latest news and analysis from across the NFL.Guests: Marcus Spears, Dan Orlovsky, Ryan Clark, Mina Kimes, Field Yates, Adam Schefter, Keyshawn Johnson.. + Sports + Football + + + + Around the Horn + Sportswriters around the country discuss sports issues. + Sports + Talk Show + + + + Pardon the Interruption + Opinions regarding the day's top sports stories. + Sports + Talk Show + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + ESPN College Sports Extra 1 + Sports + Basketball + + + + SportsCenter + El noticiero de ESPN con la más amplia cobertura y noticias de los eventos deportivos. + Sports + News + + + + SportsCenter + El noticiero de ESPN con la más amplia cobertura y noticias de los eventos deportivos. + Sports + News + + + + SportsCenter + El noticiero de ESPN con la más amplia cobertura y noticias de los eventos deportivos. + Sports + News + + + + Fútbol picante + La mesa más picante discute las últimas novedades del fútbol mexicano y analiza la actuación de los futbolistas mexicanos en el exterior. + Sports + Soccer + + + TVG + + + + SportsCenter + El noticiero de ESPN con la más amplia cobertura y noticias de los eventos deportivos. + Sports + News + + + + Fútbol picante + La mesa más picante discute las últimas novedades del fútbol mexicano y analiza la actuación de los futbolistas mexicanos en el exterior. + Sports + Soccer + + + TVG + + + + SportsCenter + El noticiero de ESPN con la más amplia cobertura y noticias de los eventos deportivos. + Sports + News + + + + Fútbol picante + La mesa más picante discute las últimas novedades del fútbol mexicano y analiza la actuación de los futbolistas mexicanos en el exterior. + Sports + Soccer + + + TVG + + + + SportsCenter + El noticiero de ESPN con la más amplia cobertura y noticias de los eventos deportivos. + Sports + News + + + + Fútbol picante + La mesa más picante discute las últimas novedades del fútbol mexicano y analiza la actuación de los futbolistas mexicanos en el exterior. + Sports + Soccer + + + TVG + + + + Fútbol LaLiga + Alavés vs. Almería + Acción correspondiente a la jornada 12 de LaLiga 2023-2024. Desde el estadio Mendizorroza. Alavés recibe a Almería. + Sports + Soccer + + + + Fútbol picante + La mesa más picante discute las últimas novedades del fútbol mexicano y analiza la actuación de los futbolistas mexicanos en el exterior. + Sports + Soccer + + + TVG + + + + Automovilismo Fórmula 1 + São Paulo Grand Prix + Acción desde el Autódromo José Carlos Pace de São Paulo, Brasil. + Sports + Auto Racing + + + + ESPN Fútbol Center + Los analistas repasan pieza por pieza las noticias del fútbol europeo y revisan el desempeño de los futbolistas mexicanos en las principales ligas del viejo continente. + Sports + Soccer + + + + Rayo Vallecano de Madrid S.A.D. vs. Real Madrid + Real Madrid vs. Rayo Vallecano de Madrid + Jornada 12 de LaLiga 2023-2024. Desde el estadio Santiago Bernabéu. Real Madrid recibe a Rayo Vallecano. Los merengues intentan mantener su favoritismo en el campeonato superando a un rival que lleva más de cinco partidos sin perder. + Sports + Soccer + + + + ESPN Fútbol Center + Los analistas repasan pieza por pieza las noticias del fútbol europeo y revisan el desempeño de los futbolistas mexicanos en las principales ligas del viejo continente. + Sports + Soccer + + + + Sports Center + Sports + Talk Show + + + + SportsCenter + El noticiero de ESPN con la más amplia cobertura y noticias de los eventos deportivos. + Sports + News + + + + Athletic Bilbao vs. Villarreal + Villarreal vs. Athletic Bilbao + Acción de la jornada 12 de LaLiga 2023-2024. Desde el estadio Ceramic. Villarreal recibe a Athletic Bilbao. + Sports + Soccer + + + + SportsCenter + El noticiero de ESPN con la más amplia cobertura y noticias de los eventos deportivos. + Sports + News + + + + Fútbol picante + La mesa más picante discute las últimas novedades del fútbol mexicano y analiza la actuación de los futbolistas mexicanos en el exterior. + Sports + Soccer + + + TVG + + + + SportsCenter + El noticiero de ESPN con la más amplia cobertura y noticias de los eventos deportivos. + Sports + News + + + + Fútbol picante + La mesa más picante discute las últimas novedades del fútbol mexicano y analiza la actuación de los futbolistas mexicanos en el exterior. + Sports + Soccer + + + TVG + + + + Fútbol picante + La mesa más picante discute las últimas novedades del fútbol mexicano y analiza la actuación de los futbolistas mexicanos en el exterior. + Sports + Soccer + + + TVG + + + + SportsCenter + El noticiero de ESPN con la más amplia cobertura y noticias de los eventos deportivos. + Sports + News + + + + UFC Unleashed + Female Phenoms + Este episodio de UFC Unleashed repasa los fenómenos femeninos del deporte, desde Rhonda Rousey hasta Rose Namajunas. + Sports + Martial Arts + + + TV14 + + + + UFC Unleashed + Greetings From Fight Island + Un vistazo a tres de los mejores combates que han salido de Fight Island durante la pandemia mundial. Con Germaine de Randamie contra Peña, Trinaldo contra Hebert y Chimaev contra Phillips. + Sports + Martial Arts + + + TV14 + + + + Fútbol LaLiga + Real Sociedad vs. Barcelona + Acción de la jornada 12 de LaLiga 2023-2024. Desde el estadio Reale Arena. Real Sociedad recibe a Barcelona. En quinta posición, la Sociedad necesita el resultado para acercarse al G4 español. + Sports + Soccer + + + + Fútbol picante + La mesa más picante discute las últimas novedades del fútbol mexicano y analiza la actuación de los futbolistas mexicanos en el exterior. + Sports + Soccer + + + TVG + + + + SportsCenter + El noticiero de ESPN con la más amplia cobertura y noticias de los eventos deportivos. + Sports + News + + + + Fútbol picante + La mesa más picante discute las últimas novedades del fútbol mexicano y analiza la actuación de los futbolistas mexicanos en el exterior. + Sports + Soccer + + + TVG + + + + Fútbol picante + La mesa más picante discute las últimas novedades del fútbol mexicano y analiza la actuación de los futbolistas mexicanos en el exterior. + Sports + Soccer + + + TVG + + + + SportsCenter + El noticiero de ESPN con la más amplia cobertura y noticias de los eventos deportivos. + Sports + News + + + + Fútbol picante + La mesa más picante discute las últimas novedades del fútbol mexicano y analiza la actuación de los futbolistas mexicanos en el exterior. + Sports + Soccer + + + TVG + + + + Cádiz vs. Getafe + Getafe CF vs. Cadiz CF + Acción de la jornada 12 de LaLiga 2023-2024. Desde el estadio Coliseum Alfonso Pérez. Getafe recibe a Cádiz. En la posición 13, el equipo local acumula cinco empates consecutivos. + Sports + Soccer + + + + Jorge Ramos y su banda + Con una combinación de entusiasmo, conocimiento y pasión Jorge Ramos y su Banda presentan las noticias más candentes, el debate en todas sus perspectivas y el análisis más detallado del acontecer diario en el mundo deportivo. + Sports + Miscellaneous + + + TVPG + + + + Cronómetro + Programa de debate a contrarreloj, donde se discuten de modo ágil todas las noticias de última hora ocurridas dentro del mundo del deporte. + Sports + + + + Ahora o Nunca + Duncan, Ben, Jonnie y Dave emprenden una gran aventura a recorrer Estados Unidos para cumplir las actividades que desean realizar antes de morir. + Reality TV + + + TV14 + + + + SportsCenter + El noticiero de ESPN con la más amplia cobertura y noticias de los eventos deportivos. + Sports + News + + + + NFL Live desde México + Cobertura deportiva con toda la información, resultados y análisis del fútbol americano, la NFL.Guests: John Sutcliffe, Rebeca Landa, Ramiro Pruneda, Sergio Dipp.. + Sports + Football + + + + Los Angeles Chargers vs. New York Jets + Desde MetLife Stadium en East Rutherford, N.J. + Sports + Football + + + + Monday Night Postgame + Un análisis pormenorizado de toda la acción del Monday Night Football. + Sports + Football + + + + SportsCenter + El noticiero de ESPN con la más amplia cobertura y noticias de los eventos deportivos. + Sports + News + + + + Fútbol picante + La mesa más picante discute las últimas novedades del fútbol mexicano y analiza la actuación de los futbolistas mexicanos en el exterior. + Sports + Soccer + + + TVG + + + + SportsCenter + El noticiero de ESPN con la más amplia cobertura y noticias de los eventos deportivos. + Sports + News + + + + Fútbol picante + La mesa más picante discute las últimas novedades del fútbol mexicano y analiza la actuación de los futbolistas mexicanos en el exterior. + Sports + Soccer + + + TVG + + + + SportsCenter + El noticiero de ESPN con la más amplia cobertura y noticias de los eventos deportivos. + Sports + News + + + + Top Rank Classic Fights + Muhammad Ali vs. Joe Frazier 2 + Combate llevado a cabo el 28 de enero de 1974 en el Madison Square Garden. + Sports + Boxing + + + + Boxeo + 2019: Miguel Berchelt vs. Jason Sosa + Top Rank Boxing presenta la pelea estelar por el título superpluma WBC entre el campeón mexicano Miguel Berchelt y el contendiente americano Jason Sosa. Desde el Dignity Health Sports Park, en Carson, California. Disputado el 2 de noviembre de 2019. + Sports + Boxing + + + + Rayo Vallecano de Madrid S.A.D. vs. Real Madrid + Real Madrid vs. Rayo Vallecano de Madrid + Jornada 12 de LaLiga 2023-2024. Desde el estadio Santiago Bernabéu. Real Madrid recibe a Rayo Vallecano. Los merengues intentan mantener su favoritismo en el campeonato superando a un rival que lleva más de cinco partidos sin perder. + Sports + Soccer + + + + Fútbol picante + La mesa más picante discute las últimas novedades del fútbol mexicano y analiza la actuación de los futbolistas mexicanos en el exterior. + Sports + Soccer + + + TVG + + + + SportsCenter + El noticiero de ESPN con la más amplia cobertura y noticias de los eventos deportivos. + Sports + News + + + + Fútbol picante + La mesa más picante discute las últimas novedades del fútbol mexicano y analiza la actuación de los futbolistas mexicanos en el exterior. + Sports + Soccer + + + TVG + + + + SportsCenter + El noticiero de ESPN con la más amplia cobertura y noticias de los eventos deportivos. + Sports + News + + + + Fútbol picante + La mesa más picante discute las últimas novedades del fútbol mexicano y analiza la actuación de los futbolistas mexicanos en el exterior. + Sports + Soccer + + + TVG + + + + SportsCenter + El noticiero de ESPN con la más amplia cobertura y noticias de los eventos deportivos. + Sports + News + + + + Fútbol picante + La mesa más picante discute las últimas novedades del fútbol mexicano y analiza la actuación de los futbolistas mexicanos en el exterior. + Sports + Soccer + + + TVG + + + + Jorge Ramos y su banda + Con una combinación de entusiasmo, conocimiento y pasión Jorge Ramos y su Banda presentan las noticias más candentes, el debate en todas sus perspectivas y el análisis más detallado del acontecer diario en el mundo deportivo. + Sports + Miscellaneous + + + TVPG + + + + Cronómetro + Programa de debate a contrarreloj, donde se discuten de modo ágil todas las noticias de última hora ocurridas dentro del mundo del deporte. + Sports + + + + Ahora o Nunca + Duncan, Ben, Jonnie y Dave emprenden una gran aventura a recorrer Estados Unidos para cumplir las actividades que desean realizar antes de morir. + Reality TV + + + TV14 + + + + SportsCenter + El noticiero de ESPN con la más amplia cobertura y noticias de los eventos deportivos. + Sports + News + + + + UFC Main Events + Teixeira vs. Prochazka + Programa de evento de artes marciales. + Sports + Martial Arts + + + TV14 + + + + UFC Countdown + UFC 295: Prochazka vs. Pereira + Los amantes de las luchas de la UFC podrán ver entrevistas exclusivas y tener acceso al detras de cámaras de los campos de entrenamiento para observar la intensa preparación de cada luchador, así mismo se entregarán análisis de expertos en el tema. + Sports + Martial Arts + + + TV14 + + + + SportsCenter + El noticiero de ESPN con la más amplia cobertura y noticias de los eventos deportivos. + Sports + News + + + + SportsCenter + El noticiero de ESPN con la más amplia cobertura y noticias de los eventos deportivos. + Sports + News + + + + Fútbol picante + La mesa más picante discute las últimas novedades del fútbol mexicano y analiza la actuación de los futbolistas mexicanos en el exterior. + Sports + Soccer + + + TVG + + + + SportsCenter + El noticiero de ESPN con la más amplia cobertura y noticias de los eventos deportivos. + Sports + News + + + + Fútbol picante + La mesa más picante discute las últimas novedades del fútbol mexicano y analiza la actuación de los futbolistas mexicanos en el exterior. + Sports + Soccer + + + TVG + + + + SportsCenter + El noticiero de ESPN con la más amplia cobertura y noticias de los eventos deportivos. + Sports + News + + + + UFC Unleashed + Friendly Fire + Un vistazo a tres combates de la UFC sin rencores antes ni después de la batalla. Con Overeem contra Harris, Modafferi contra Honchak y Khabib contra Poirier. + Sports + Martial Arts + + + TV14 + + + + UFC Unleashed + Nunes vs. Holm + Tres grandes combates adicionales con excitantes luchadores en el octágono. Incluye Dawodu vs. Horie, Winn vs. Spicely y Nunes vs. Holm. + Sports + Martial Arts + + + TV14 + + + + Fútbol picante + La mesa más picante discute las últimas novedades del fútbol mexicano y analiza la actuación de los futbolistas mexicanos en el exterior. + Sports + Soccer + + + TVG + + + + SportsCenter + El noticiero de ESPN con la más amplia cobertura y noticias de los eventos deportivos. + Sports + News + + + + Fútbol picante + La mesa más picante discute las últimas novedades del fútbol mexicano y analiza la actuación de los futbolistas mexicanos en el exterior. + Sports + Soccer + + + TVG + + + + SportsCenter + El noticiero de ESPN con la más amplia cobertura y noticias de los eventos deportivos. + Sports + News + + + + Fútbol picante + La mesa más picante discute las últimas novedades del fútbol mexicano y analiza la actuación de los futbolistas mexicanos en el exterior. + Sports + Soccer + + + TVG + + + + SportsCenter + El noticiero de ESPN con la más amplia cobertura y noticias de los eventos deportivos. + Sports + News + + + + Fútbol picante + La mesa más picante discute las últimas novedades del fútbol mexicano y analiza la actuación de los futbolistas mexicanos en el exterior. + Sports + Soccer + + + TVG + + + + SportsCenter + El noticiero de ESPN con la más amplia cobertura y noticias de los eventos deportivos. + Sports + News + + + + Goles y más + Una mirada a los mejores goles del fútbol. + Sports + Soccer + + + + Fútbol picante + La mesa más picante discute las últimas novedades del fútbol mexicano y analiza la actuación de los futbolistas mexicanos en el exterior. + Sports + Soccer + + + TVG + + + + Jorge Ramos y su banda + Con una combinación de entusiasmo, conocimiento y pasión Jorge Ramos y su Banda presentan las noticias más candentes, el debate en todas sus perspectivas y el análisis más detallado del acontecer diario en el mundo deportivo. + Sports + Miscellaneous + + + TVPG + + + + Cronómetro + Programa de debate a contrarreloj, donde se discuten de modo ágil todas las noticias de última hora ocurridas dentro del mundo del deporte. + Sports + + + + Ahora o Nunca + Duncan, Ben, Jonnie y Dave emprenden una gran aventura a recorrer Estados Unidos para cumplir las actividades que desean realizar antes de morir. + Reality TV + + + TV14 + + + + ESPN Goal Line + Live cut-ins and highlights of many of the top games, plus commentary from the network's analysts. + Sports + Football + + + + Saturday Only Programming + Unlimited live cut-ins and highlights from numerous college football games during each Saturday of the college football season, plus up-to-the minute commentary from ESPN analysts and experts. + Sports + + + + Saturday Only Programming + Unlimited live cut-ins and highlights from numerous college football games during each Saturday of the college football season, plus up-to-the minute commentary from ESPN analysts and experts. + Sports + + + + Saturday Only Programming + Unlimited live cut-ins and highlights from numerous college football games during each Saturday of the college football season, plus up-to-the minute commentary from ESPN analysts and experts. + Sports + + + + Saturday Only Programming + Unlimited live cut-ins and highlights from numerous college football games during each Saturday of the college football season, plus up-to-the minute commentary from ESPN analysts and experts. + Sports + + + + Saturday Only Programming + Unlimited live cut-ins and highlights from numerous college football games during each Saturday of the college football season, plus up-to-the minute commentary from ESPN analysts and experts. + Sports + + + + Saturday Only Programming + Unlimited live cut-ins and highlights from numerous college football games during each Saturday of the college football season, plus up-to-the minute commentary from ESPN analysts and experts. + Sports + + + + Saturday Only Programming + Unlimited live cut-ins and highlights from numerous college football games during each Saturday of the college football season, plus up-to-the minute commentary from ESPN analysts and experts. + Sports + + + + Saturday Only Programming + Unlimited live cut-ins and highlights from numerous college football games during each Saturday of the college football season, plus up-to-the minute commentary from ESPN analysts and experts. + Sports + + + + Saturday Only Programming + Unlimited live cut-ins and highlights from numerous college football games during each Saturday of the college football season, plus up-to-the minute commentary from ESPN analysts and experts. + Sports + + + + Saturday Only Programming + Unlimited live cut-ins and highlights from numerous college football games during each Saturday of the college football season, plus up-to-the minute commentary from ESPN analysts and experts. + Sports + + + + Saturday Only Programming + Unlimited live cut-ins and highlights from numerous college football games during each Saturday of the college football season, plus up-to-the minute commentary from ESPN analysts and experts. + Sports + + + + Saturday Only Programming + Unlimited live cut-ins and highlights from numerous college football games during each Saturday of the college football season, plus up-to-the minute commentary from ESPN analysts and experts. + Sports + + + + Saturday Only Programming + Unlimited live cut-ins and highlights from numerous college football games during each Saturday of the college football season, plus up-to-the minute commentary from ESPN analysts and experts. + Sports + + + + Saturday Only Programming + Unlimited live cut-ins and highlights from numerous college football games during each Saturday of the college football season, plus up-to-the minute commentary from ESPN analysts and experts. + Sports + + + + Saturday Only Programming + Unlimited live cut-ins and highlights from numerous college football games during each Saturday of the college football season, plus up-to-the minute commentary from ESPN analysts and experts. + Sports + + + + Saturday Only Programming + Unlimited live cut-ins and highlights from numerous college football games during each Saturday of the college football season, plus up-to-the minute commentary from ESPN analysts and experts. + Sports + + + + Saturday Only Programming + Unlimited live cut-ins and highlights from numerous college football games during each Saturday of the college football season, plus up-to-the minute commentary from ESPN analysts and experts. + Sports + + + + Saturday Only Programming + Unlimited live cut-ins and highlights from numerous college football games during each Saturday of the college football season, plus up-to-the minute commentary from ESPN analysts and experts. + Sports + + + + Saturday Only Programming + Unlimited live cut-ins and highlights from numerous college football games during each Saturday of the college football season, plus up-to-the minute commentary from ESPN analysts and experts. + Sports + + + + Saturday Only Programming + Unlimited live cut-ins and highlights from numerous college football games during each Saturday of the college football season, plus up-to-the minute commentary from ESPN analysts and experts. + Sports + + + + Saturday Only Programming + Unlimited live cut-ins and highlights from numerous college football games during each Saturday of the college football season, plus up-to-the minute commentary from ESPN analysts and experts. + Sports + + + + Saturday Only Programming + Unlimited live cut-ins and highlights from numerous college football games during each Saturday of the college football season, plus up-to-the minute commentary from ESPN analysts and experts. + Sports + + + + Saturday Only Programming + Unlimited live cut-ins and highlights from numerous college football games during each Saturday of the college football season, plus up-to-the minute commentary from ESPN analysts and experts. + Sports + + + + Saturday Only Programming + Unlimited live cut-ins and highlights from numerous college football games during each Saturday of the college football season, plus up-to-the minute commentary from ESPN analysts and experts. + Sports + + + + Saturday Only Programming + Unlimited live cut-ins and highlights from numerous college football games during each Saturday of the college football season, plus up-to-the minute commentary from ESPN analysts and experts. + Sports + + + + Saturday Only Programming + Unlimited live cut-ins and highlights from numerous college football games during each Saturday of the college football season, plus up-to-the minute commentary from ESPN analysts and experts. + Sports + + + + Saturday Only Programming + Unlimited live cut-ins and highlights from numerous college football games during each Saturday of the college football season, plus up-to-the minute commentary from ESPN analysts and experts. + Sports + + + + Saturday Only Programming + Unlimited live cut-ins and highlights from numerous college football games during each Saturday of the college football season, plus up-to-the minute commentary from ESPN analysts and experts. + Sports + + + + Southern Hoops: A History of SEC Basketball + Part Six (1998-2010) + In his first year at Kentucky, Tubby Smith becomes the third Black coach ever to win a national title. Florida's back-to-back NCAA crowns mark the rise of a new power. The Lady Vols win 2 straight NCAA titles as LSU reaches 5 straight Final Fours. + Sports + Basketball + + + + Southern Hoops: A History of SEC Basketball + Part Seven (2011-2022) + John Calipari continues the winning tradition at Kentucky with a national championship in 2012. Four years later, Pat Summitt passes away after battling early-onset Alzheimer's disease. Dawn Staley leads South Carolina to a pair of NCAA titles. + Sports + Basketball + + + + 30 for 30 + Requiem for the Big East + A recollection of the original Big East Conference, from its simple beginnings and regional rivalries to its national prominence as one of the most successful college basketball leagues, and how it ended up fighting for its survival. + Sports + Documentary + + + + World of X Games + Previews, highlights and stories involving events and athletes from the X Games. + Sports + Extreme + + + + World of X Games + Previews, highlights and stories involving events and athletes from the X Games. + Sports + Extreme + + + + X Games + Real BMX 2023 - The Absolute Best Of + Breathtaking action from the X Games with action from events like snowboarding and extreme skiing. + Sports + Extreme + + + + World of X Games + Trail of Missions 2022 + Previews, highlights and stories involving events and athletes from the X Games. + Sports + Extreme + + + + World of X Games + 25 Years of X Games + Top moments from the past 25 years of action from the X Games. + Sports + Extreme + + + + College Football Final + After the final whistle, College Football Final breaks down each Saturday's college football action with postgame highlights and analysis. Matt Barrie hosts alongside Joey Galloway and Dan Mullen. + Sports + Football + + + + College Football Final + After the final whistle, College Football Final breaks down each Saturday's college football action with postgame highlights and analysis. Matt Barrie hosts alongside Joey Galloway and Dan Mullen. + Sports + Football + + + + UFC Main Events + Miocic vs. Cormier 2 + Showcasing the best fights from recent events, revealing backstories of the athletes and their mindsets. + Sports + Martial Arts + + + TV14 + + + + UFC Countdown + UFC 295: Prochazka vs. Pereira + A look at the lives and training camps of UFC athletes as they prepare for the next UFC pay-per-view event. + Sports + Martial Arts + + + TV14 + + + + SportsCenter Special: My Wish + Athletes work with Make-A-Wish® to fulfill sports-themed wishes for children with critical illness. + Sports + Miscellaneous + + + + Daily Wager + Doug Kezirian joins sports betting experts as well as ESPN analysts and reporters from various sports for discussion centered on analytics and point spreads as well as how the day's sports news affects betting. + Sports + Talk Show + + + + Fantasy Football Now + Host Field Yates, analysts Mike Clay and Damien Woody, and senior writer and injury analyst Stephania Bell provide the latest info on fantasy football news going into the day. + Sports + Football + + + + Formula 1: Grand Prix Sunday + Teams make final preparations for the day's race. Plus, interviews, features, and Martin Brundle's popular. + Sports + Auto Racing + + + + Fantasy Football Now + Host Field Yates, analysts Mike Clay and Damien Woody, and senior writer and injury analyst Stephania Bell provide the latest info on fantasy football news going into the day. + Sports + Football + + + + Pickleball + APP Tour: Philadelphia + Action from the paddle sport. + Sports + Racket Sports + + + + Pickleball + APP Tour: Newport Beach + From Newport Beach, Calif. + Sports + Racket Sports + + + + Pickleball + PPA Tour: Seattle Open + Mixed doubles semifinals action, where some of the top professional pickleball players compete for the biggest payouts in the sport at Lower Woodland Park in Seattle. + Sports + Racket Sports + + + + Pickleball + Major League Pickleball: Season One Championship + Action from the paddle sport. + Sports + Racket Sports + + + + Formula 1 Racing + São Paulo Grand Prix + From Autódromo José Carlos Pace in Interlagos, São Paulo, Brazil. + Sports + Auto Racing + + + + The Season: Ole Miss Football + The stories of Rebel student-athletes, coaches and staff portray who they are as people. + Sports + Football + + + + The Season: Ole Miss Football + The stories of Rebel student-athletes, coaches and staff portray who they are as people. + Sports + Football + + + + The Season: Ole Miss Football + The stories of Rebel student-athletes, coaches and staff portray who they are as people. + Sports + Football + + + + The Season: Ole Miss Football + The stories of Rebel student-athletes, coaches and staff portray who they are as people. + Sports + Football + + + + The Season: Ole Miss Football + The stories of Rebel student-athletes, coaches and staff portray who they are as people. + Sports + Football + + + + The Season: Ole Miss Football + The stories of Rebel student-athletes, coaches and staff portray who they are as people. + Sports + Football + + + + The Season: Ole Miss Football + The stories of Rebel student-athletes, coaches and staff portray who they are as people. + Sports + Football + + + + The Season: Ole Miss Football + The stories of Rebel student-athletes, coaches and staff portray who they are as people. + Sports + Football + + + + The Path: LSU Football + An in-depth, behind-the-scenes look at the LSU football team's season. + Sports + Football + + + + The Path: LSU Football + An in-depth, behind-the-scenes look at the LSU football team's season. + Sports + Football + + + + The Path: LSU Football + An in-depth, behind-the-scenes look at the LSU football team's season. + Sports + Football + + + + One for the Ages + A look back at the 2019-20 football season for the LSU Tigers, with both a behind-the-scenes and cinematic glimpse at the run by Heisman Trophy winner Joe Burrow, LSU head coach Ed Orgeron and the Bayou Bengals. + Sports + Football + + + + SportsCenter With Scott Van Pelt + Scott Van Pelt presents the day in sports through his unique perspective with highlights, special guests and his. + Sports + News + + + + SportsCenter With Scott Van Pelt + Scott Van Pelt presents the day in sports through his unique perspective with highlights, special guests and his. + Sports + News + + + + The Season: Ole Miss Football + The stories of Rebel student-athletes, coaches and staff portray who they are as people. + Sports + Football + + + + The Season: Ole Miss Football + The stories of Rebel student-athletes, coaches and staff portray who they are as people. + Sports + Football + + + + The Pulse: Texas A&M Football + Behind the scenes of Texas A&M Aggie football. + Sports + Football + + + + The Pulse: Texas A&M Football + Behind the scenes of Texas A&M Aggie football. + Sports + Football + + + + The Pulse: Texas A&M Football + Behind the scenes of Texas A&M Aggie football. + Sports + Football + + + + The Path: LSU Football + An in-depth, behind-the-scenes look at the LSU football team's season. + Sports + Football + + + + The Path: LSU Football + An in-depth, behind-the-scenes look at the LSU football team's season. + Sports + Football + + + + SC Featured + Rocky Bleier + A look at former NFL player Rocky Bleier. + Sports + Talk Show + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + Get Up + Host Mike Greenberg is joined by ESPN analysts to analyze the latest news from the world of sports on a morning show originating from Manhattan's South Street Seaport. + Sports + Talk Show + + + + Fantasy Focus + Field Yates hosts ESPN's top Fantasy Football experts for a daily discussion of rankings, injuries and game previews and debate how the biggest NFL stories impact Fantasy Football. + Sports + Football + + + + The Pat McAfee Show + Former NFL punter Pat McAfee brings his humor and candor to the microphone to highlight the day's top stories. + Sports + Talk Show + + + TVPG + + + + The Pat McAfee Show + Former NFL punter Pat McAfee brings his humor and candor to the microphone to highlight the day's top stories. + Sports + Talk Show + + + TVPG + + + + NBA Today + In-depth, comprehensive daily coverage of all aspects of the NBA from expert analysts. + Sports + Basketball + + + + Around the Horn + Sportswriters around the country discuss sports issues. + Sports + Talk Show + + + + Pardon the Interruption + Opinions regarding the day's top sports stories. + Sports + Talk Show + + + + The Pat McAfee Show + Former NFL punter Pat McAfee brings his humor and candor to the microphone to highlight the day's top stories. + Sports + Talk Show + + + TVPG + + + + The Pat McAfee Show + Former NFL punter Pat McAfee brings his humor and candor to the microphone to highlight the day's top stories. + Sports + Talk Show + + + TVPG + + + + Around the Horn + Sportswriters around the country discuss sports issues. + Sports + Talk Show + + + + Pardon the Interruption + Opinions regarding the day's top sports stories. + Sports + Talk Show + + + + The Pat McAfee Show + Former NFL punter Pat McAfee brings his humor and candor to the microphone to highlight the day's top stories. + Sports + Talk Show + + + TVPG + + + + The Pat McAfee Show + Former NFL punter Pat McAfee brings his humor and candor to the microphone to highlight the day's top stories. + Sports + Talk Show + + + TVPG + + + + World of X Games + SCORE Baja 400 + Previews, highlights and stories involving events and athletes from the X Games. + Sports + Extreme + + + + UFC Countdown + UFC 295: Prochazka vs. Pereira + A look at the lives and training camps of UFC athletes as they prepare for the next UFC pay-per-view event. + Sports + Martial Arts + + + TV14 + + + + Bad Beats + A look at the moments that drove sports bettors wild during recent games. + Sports + eSports + + + + Around the Horn + Sportswriters around the country discuss sports issues. + Sports + Talk Show + + + + Pardon the Interruption + Opinions regarding the day's top sports stories. + Sports + Talk Show + + + + World of X Games + Mint 400 + Previews, highlights and stories involving events and athletes from the X Games. + Sports + Extreme + + + + World of X Games + Thirty Years of Animal Chin + Legendary skaters Lance Mountain, Tony Hawk and others reunite and re-create the legendary ramp used in. + Sports + Extreme + + + TVG + + + + Around the Horn + Sportswriters around the country discuss sports issues. + Sports + Talk Show + + + + Pardon the Interruption + Opinions regarding the day's top sports stories. + Sports + Talk Show + + + + Roy Kramer: A Vision for the SEC + The life and career of former SEC commissioner Roy Kramer, who transformed collegiate athletics. + Sports + Football + + + + SEC Inside + Texas A&M + Each week, a half-hour episode will focus on a select team and explore previously unaired footage and sounds from game preparation, the sideline and following the final whistle. + Sports + Anthology + + + + SEC Inside + Georgia + Each week, a half-hour episode will focus on a select team and explore previously unaired footage and sounds from game preparation, the sideline and following the final whistle. + Sports + Anthology + + + + SEC Inside + Mississippi State + Each week, a half-hour episode will focus on a select team and explore previously unaired footage and sounds from game preparation, the sideline and following the final whistle. + Sports + Anthology + + + + SEC Inside + Vanderbilt + Each week, a half-hour episode will focus on a select team and explore previously unaired footage and sounds from game preparation, the sideline and following the final whistle. + Sports + Anthology + + + + SEC Inside + Tennessee + Each week, a half-hour episode will focus on a select team and explore previously unaired footage and sounds from game preparation, the sideline and following the final whistle. + Sports + Anthology + + + + Them Dawgs + A look at the Georgia Bulldogs. + Sports + Football + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + Get Up + Host Mike Greenberg is joined by ESPN analysts to analyze the latest news from the world of sports on a morning show originating from Manhattan's South Street Seaport. + Sports + Talk Show + + + + First Take + Stephen A. Smith joins Molly Qerim to debate the hottest topics in sports with contributors and guests. + Sports + News + + + + NBA Today + In-depth, comprehensive daily coverage of all aspects of the NBA from expert analysts. + Sports + Basketball + + + + The Pat McAfee Show + Former NFL punter Pat McAfee brings his humor and candor to the microphone to highlight the day's top stories. + Sports + Talk Show + + + TVPG + + + + Around the Horn + Sportswriters around the country discuss sports issues. + Sports + Talk Show + + + + Pardon the Interruption + Opinions regarding the day's top sports stories. + Sports + Talk Show + + + + Around the Horn + Sportswriters around the country discuss sports issues. + Sports + Talk Show + + + + Pardon the Interruption + Opinions regarding the day's top sports stories. + Sports + Talk Show + + + + The Pat McAfee Show + Former NFL punter Pat McAfee brings his humor and candor to the microphone to highlight the day's top stories. + Sports + Talk Show + + + TVPG + + + + Around the Horn + Sportswriters around the country discuss sports issues. + Sports + Talk Show + + + + Pardon the Interruption + Opinions regarding the day's top sports stories. + Sports + Talk Show + + + + UFC Unleashed + Best of Madison Square Garden + Features greatest moments from the UFC's vast library of fight footage. + Sports + Martial Arts + + + TV14 + + + + UFC Countdown + UFC 295: Prochazka vs. Pereira + A look at the lives and training camps of UFC athletes as they prepare for the next UFC pay-per-view event. + Sports + Martial Arts + + + TV14 + + + + Around the Horn + Sportswriters around the country discuss sports issues. + Sports + Talk Show + + + + Pardon the Interruption + Opinions regarding the day's top sports stories. + Sports + Talk Show + + + + X Games + X Games Aspen 2023 Anthology Show #1 + Breathtaking action from the X Games with action from events like snowboarding and extreme skiing. + Sports + Extreme + + + + X Games + X Games Aspen 2023 Anthology Show #2 + Breathtaking action from the X Games with action from events like snowboarding and extreme skiing. + Sports + Extreme + + + + Around the Horn + Sportswriters around the country discuss sports issues. + Sports + Talk Show + + + + Pardon the Interruption + Opinions regarding the day's top sports stories. + Sports + Talk Show + + + + X Games + X Games 2022 Anthology, Part 1 + Breathtaking action from the X Games with action from events like snowboarding and extreme skiing. + Sports + Skiing + + + + X Games 2022 Anthology + Part 2 + Analysis and highlights from the 2022 X Games. + Sports + BMX Racing + + + + X Games 2022 Anthology + Part 3 + Analysis and highlights from the 2022 X Games. + Sports + BMX Racing + + + + X Games 2022 Anthology + Part 4 + Analysis and highlights from the 2022 X Games. + Sports + BMX Racing + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + Get Up + Host Mike Greenberg is joined by ESPN analysts to analyze the latest news from the world of sports on a morning show originating from Manhattan's South Street Seaport. + Sports + Talk Show + + + + First Take + Stephen A. Smith joins Molly Qerim to debate the hottest topics in sports with contributors and guests. + Sports + News + + + + NBA Today + In-depth, comprehensive daily coverage of all aspects of the NBA from expert analysts. + Sports + Basketball + + + + The Pat McAfee Show + Former NFL punter Pat McAfee brings his humor and candor to the microphone to highlight the day's top stories. + Sports + Talk Show + + + TVPG + + + + College Football 150: The Greatest + Voices + As college football has played out, the voices who've told the stories have become an indelible part of the tale themselves. These are the Top 11 of those voices -- at the typewriter, at the microphone, and in front of the camera. + Sports + Football + + + + Howard vs. South Carolina State + Howard at South Carolina State + From Oliver C. Dawson Stadium in Orangeburg, S.C. + Sports + Football + + + + College Football 150: The American Game + Bowls, Polls and Champions + For generations, America was at least somewhat content to agree to often vehemently disagree, from the polls, to computers, to the creation of the BCS. At last, the College Football Playoff has offered a more decisive solution. + Sports + Football + + + + College Football 150: The American Game + Bowls, Polls and Champions + For generations, America was at least somewhat content to agree to often vehemently disagree, from the polls, to computers, to the creation of the BCS. At last, the College Football Playoff has offered a more decisive solution. + Sports + Football + + + + Princeton vs. Dartmouth + Princeton at Dartmouth + The Big Green (3-4, 2-2 Ivy) run up against the stingy defense of the Tigers (4-3, 3-1). Princeton has allowed an Ivy League-low 52 points in conference play, and surrendered just 17 points in winning its last two contests. Dartmouth is 2-1 at home. + Sports + Football + + + + College Football Final + After the final whistle, College Football Final breaks down each Saturday's college football action with postgame highlights and analysis. Matt Barrie hosts alongside Joey Galloway and Dan Mullen. + Sports + Football + + + + The Pulse: Texas A&M Football + Behind the scenes of Texas A&M Aggie football. + Sports + Football + + + + The Season: Ole Miss Football + The stories of Rebel student-athletes, coaches and staff portray who they are as people. + Sports + Football + + + + College Football Final + After the final whistle, College Football Final breaks down each Saturday's college football action with postgame highlights and analysis. Matt Barrie hosts alongside Joey Galloway and Dan Mullen. + Sports + Football + + + + College Football Final + After the final whistle, College Football Final breaks down each Saturday's college football action with postgame highlights and analysis. Matt Barrie hosts alongside Joey Galloway and Dan Mullen. + Sports + Football + + + + College Football Final + After the final whistle, College Football Final breaks down each Saturday's college football action with postgame highlights and analysis. Matt Barrie hosts alongside Joey Galloway and Dan Mullen. + Sports + Football + + + + The Path: LSU Football + An in-depth, behind-the-scenes look at the LSU football team's season. + Sports + Football + + + + FAU Basketball: Run it Back + The 2023-24 Owls' goal is to. + Sports + Basketball + + + + Clemson vs. Florida State + ACC Championship: Clemson vs. Florida State + From WakeMed Soccer Park in Cary, N.C. + Sports + Soccer + + + + Southern Methodist University vs. Memphis + AAC Championship: SMU vs. Memphis + From Premier Sports Campus in Lakewood Ranch, Fla. + Sports + Soccer + + + + We're #1! The Story of 1999 Florida State Football + A look at the Seminoles' undefeated BCS National Championship team that went wire-to-wire as college football's No. 1 team during the 1999 season. + Sports + Football + + + + Them Dawgs + A look at the Georgia Bulldogs. + Sports + Football + + + + Washington vs. USC + Washington at USC + Pac-12 contenders clash as the No. 5 Huskies (8-0, 5-0) visit the No. 20 Trojans (7-2, 5-1) for their first showdown since 2019. Washington senior quarterback Michael Penix Jr., the Heisman Trophy favorite, leads the nation with 2,945 passing yards. + Sports + Football + + + + FAU Basketball: Run it Back + The 2023-24 Owls' goal is to. + Sports + Basketball + + + + Athletes Unlimited Volleyball + Team Blue vs. Team Gold + Coverage of competition from Athletes Unlimited Volleyball season. + Sports + Volleyball + + + + FAU Basketball: Run it Back + The 2023-24 Owls' goal is to. + Sports + Basketball + + + + Howard vs. South Carolina State + Howard at South Carolina State + From Oliver C. Dawson Stadium in Orangeburg, S.C. + Sports + Football + + + + Howard vs. South Carolina State + Howard at South Carolina State + From Oliver C. Dawson Stadium in Orangeburg, S.C. + Sports + Football + + + + Notre Dame vs. Clemson + Notre Dame at Clemson + The No. 15 Fighting Irish (7-2) line up against the ACC's Tigers (4-4). Notre Dame secured a 35-14 home decision against Clemson last season. Clemson is 3-1 at home this year, with the lone loss coming in overtime against then-No. 4 Florida State. + Sports + Football + + + + Unsportsmanlike with Evan, Canty and Michelle + Start the day off right with Chris Canty, Evan Cohen and Michelle Smallmon providing an energizing and informative way to take on the day. Sports, life and laughter are what it's all about. + Sports + Talk Show + + + + The Season: Ole Miss Football + The stories of Rebel student-athletes, coaches and staff portray who they are as people. + Sports + Football + + + + The Season: Ole Miss Football + The stories of Rebel student-athletes, coaches and staff portray who they are as people. + Sports + Football + + + + Clemson vs. Florida State + ACC Championship: Clemson vs. Florida State + From WakeMed Soccer Park in Cary, N.C. + Sports + Soccer + + + + Kansas vs. Iowa State + Kansas at Iowa State + The Cyclones try to clinch bowl eligibility when they welcome the No. 21 Jayhawks to Ames, Iowa. Last year, Kansas beat Iowa State for the first time since 2014, snapping a seven-game skid with a 14-11 triumph. The Cyclones have won three in a row. + Sports + Football + + + + Monday Blitz + A fast-paced offering that blends the NFL and college football while focusing on the weekend that was and broader topics; includes moments and significant achievements from all levels of football, such as high school, youth and flag football. + Sports + Football + + + + ESPNU Instant Classic + Handpicked college football action. + Sports + Football + + + + 30 for 30 + I Hate Christian Laettner + Director Rory Karpf, through interviews with former players and rivals as well as Laettner himself, explores why this former Duke star was, and still is, so disliked. + Sports + Documentary + + + + Athletes Unlimited Volleyball + Team Orange vs. Team Gold + Coverage of competition from Athletes Unlimited Volleyball season. + Sports + Volleyball + + + + All Access The ACC Life + A glimpse of a day in the life of ACC student-athletes, coaches, staff, parents and fans. + Sports + Miscellaneous + + + + Southern Methodist University vs. Rice + SMU at Rice + The Mayor's Cup is again contested as SMU (6-2, 4-0 American) plays Rice (4-4, 2-2) in Week 10. The Mustangs lead the series 48-41-1, but have not met the Owls since 2012 when they were Conference USA counterparts. SMU shares the AAC lead. + Sports + Football + + + + Southern Methodist University vs. Rice + SMU at Rice + The Mayor's Cup is again contested as SMU (6-2, 4-0 American) plays Rice (4-4, 2-2) in Week 10. The Mustangs lead the series 48-41-1, but have not met the Owls since 2012 when they were Conference USA counterparts. SMU shares the AAC lead. + Sports + Football + + + + Florida State vs. Pittsburgh + Florida State at Pittsburgh + The No. 4 Seminoles visit the Panthers. Florida State seeks its first 9-0 start since 2014, and first win over Pittsburgh since 2013. FSU ranks fifth nationally with 41.5 points per game. Jordan Travis (FSU) has accounted for 24 total TDs in 2023. + Sports + Football + + + + Unsportsmanlike with Evan, Canty and Michelle + Start the day off right with Chris Canty, Evan Cohen and Michelle Smallmon providing an energizing and informative way to take on the day. Sports, life and laughter are what it's all about. + Sports + Talk Show + + + + College Football Primetime with the Pat McAfee Show + Sports + Talk Show + + + + Oklahoma vs. Oklahoma State + Oklahoma at Oklahoma State + Bedlam ensues as the No. 9 Sooners visit the No. 22 Cowboys. The Sooners lead the set 91-19-7. Oklahoma suffered a stunning 38-33 loss at Kansas on Oct. 28. Oklahoma State moved into the national ranking scene following a fourth straight win Oct. 28. + Sports + Football + + + + Kentucky vs. Florida + Kentucky at Florida + From Exactech Arena in Gainesville, Fla. + Sports + Volleyball + + + + College Football Live + ESPN's daily college football show sharing reactions to the day's biggest stories and previews of each week's most important matchups. Kelsey Riggs and Jen Lada host alongside contributors Desmond Howard, Sam Acho, Greg McElroy and Pete Thamel. + Sports + Football + + + + The Season: Ole Miss Football + The stories of Rebel student-athletes, coaches and staff portray who they are as people. + Sports + Football + + + + Central Michigan vs. Western Michigan + Central Michigan at Western Michigan + From Waldo Stadium in Kalamazoo, Mich. + Sports + Football + + + + Southern Methodist University vs. Memphis + AAC Championship: SMU vs. Memphis + From Premier Sports Campus in Lakewood Ranch, Fla. + Sports + Soccer + + + + James Madison vs. Georgia State + James Madison at Georgia State + The Dukes look to stay perfect when they visit the Panthers. James Madison erased a 20-point deficit en route to a 42-40 victory over Georgia State last year. Marcus Carroll (GAST) set a career high with 208 rushing yards and scored twice Oct. 26. + Sports + Football + + + + James Madison vs. Georgia State + James Madison at Georgia State + The Dukes look to stay perfect when they visit the Panthers. James Madison erased a 20-point deficit en route to a 42-40 victory over Georgia State last year. Marcus Carroll (GAST) set a career high with 208 rushing yards and scored twice Oct. 26. + Sports + Football + + + + Oregon State vs. Colorado + Oregon State at Colorado + Deion Sanders and the Buffaloes (4-4, 1-4 Pac-12) try to right the ship against the No. 16 Beavers (6-2, 3-2). Colorado and Coach Prime have lost four of their last five contests. Oregon State's three-game win streak was stopped in Arizona last week. + Sports + Football + + + + Unsportsmanlike with Evan, Canty and Michelle + Start the day off right with Chris Canty, Evan Cohen and Michelle Smallmon providing an energizing and informative way to take on the day. Sports, life and laughter are what it's all about. + Sports + Talk Show + + + + College Football Live + ESPN's daily college football show sharing reactions to the day's biggest stories and previews of each week's most important matchups. Kelsey Riggs and Jen Lada host alongside contributors Desmond Howard, Sam Acho, Greg McElroy and Pete Thamel. + Sports + Football + + + + All Access The ACC Life + A glimpse of a day in the life of ACC student-athletes, coaches, staff, parents and fans. + Sports + Miscellaneous + + + + Texas A&M vs. Ole Miss + Texas A&M at Ole Miss + The No. 10 Rebels (7-1, 4-1) put a four-game win streak on the line as they host the Aggies (5-3, 3-2) for an SEC affair. Ole Miss' Quinshon Judkins rushed for 205 yards and a touchdown in a 31-28 triumph at Texas A&M during his freshman 2022 season. + Sports + Football + + + TV14 + + + + Arkansas vs. Florida + Arkansas at Florida + The Gators (5-3, 3-2 SEC) welcome the Razorbacks (2-6, 0-5) to the Swamp. Florida leads the series 10-2 after a 63-35 win in 2020. Arkansas rides a six-game slide after falling 7-3 to Mississippi State. Florida lost to No. 1 Georgia 43-20 on Oct. 28. + Sports + Football + + + + Them Dawgs + A look at the Georgia Bulldogs. + Sports + Football + + + + The Path: LSU Football + An in-depth, behind-the-scenes look at the LSU football team's season. + Sports + Football + + + + The Path: LSU Football + An in-depth, behind-the-scenes look at the LSU football team's season. + Sports + Football + + + + College Football Scoreboard + Presenting up-to-the-minute scores and highlights during the college football season. + Sports + Football + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + College Football Final + After the final whistle, College Football Final breaks down each Saturday's college football action with postgame highlights and analysis. Matt Barrie hosts alongside Joey Galloway and Dan Mullen. + Sports + Football + + + + College Football Final + After the final whistle, College Football Final breaks down each Saturday's college football action with postgame highlights and analysis. Matt Barrie hosts alongside Joey Galloway and Dan Mullen. + Sports + Football + + + + College Football Final + After the final whistle, College Football Final breaks down each Saturday's college football action with postgame highlights and analysis. Matt Barrie hosts alongside Joey Galloway and Dan Mullen. + Sports + Football + + + + College Football Final + After the final whistle, College Football Final breaks down each Saturday's college football action with postgame highlights and analysis. Matt Barrie hosts alongside Joey Galloway and Dan Mullen. + Sports + Football + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + College Football Final + After the final whistle, College Football Final breaks down each Saturday's college football action with postgame highlights and analysis. Matt Barrie hosts alongside Joey Galloway and Dan Mullen. + Sports + Football + + + + 2023 TCS New York City Marathon + The annual New York City Marathon winds its 26 mile course through the city's five boroughs and draws record numbers of participants, including the world's top runners. + Sports + Athletics + + + + Formula 1: Grand Prix Sunday + Teams make final preparations for the day's race. Plus, interviews, features, and Martin Brundle's popular. + Sports + Auto Racing + + + + Formula 1 Racing + São Paulo Grand Prix + From Autódromo José Carlos Pace in Interlagos, São Paulo, Brazil. + Sports + Auto Racing + + + + World of X Games + X Games Real Street: Best Of + Previews, highlights and stories involving events and athletes from the X Games. + Sports + Extreme + + + + 2023 AKC Canine Flyball CanAm Classic + AKC's Fastest Dogs USA features top ranked canine competitors among the country's fastest breeds to determine who really is the fastest dog in the country. From Rock Hill, S.C. + Sports + Miscellaneous + + + + USL League One Soccer + Final: Teams TBA + Coverage of soccer action from the development league. + Sports + Soccer + + + + Bad Beats + A look at the moments that drove sports bettors wild during recent games. + Sports + eSports + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + The Last Dance + Episode 3 + Once a key member of the hated Detroit Pistons'. + + Michael Jordan + Scottie Pippen + Dennis Rodman + + Sports + Basketball + + + TV14 + + + + The Last Dance + Episode 4 + In what management insists is Phil Jackson's final season in Chicago as head coach of the Bulls, he continues to seem like the only one who can steer this unique, singular collection of talent to another title. + + Michael Jordan + Scottie Pippen + Dennis Rodman + + Sports + Basketball + + + TV14 + + + + Formula 1 Racing + São Paulo Grand Prix + From Autódromo José Carlos Pace in Interlagos, São Paulo, Brazil. + Sports + Auto Racing + + + + UFC Countdown + UFC 295: Prochazka vs. Pereira + A look at the lives and training camps of UFC athletes as they prepare for the next UFC pay-per-view event. + Sports + Martial Arts + + + TV14 + + + + UFC Unleashed + Best of Madison Square Garden + Features greatest moments from the UFC's vast library of fight footage. + Sports + Martial Arts + + + TV14 + + + + Texas A&M vs. Ole Miss + Texas A&M at Ole Miss + The No. 10 Rebels (7-1, 4-1) put a four-game win streak on the line as they host the Aggies (5-3, 3-2) for an SEC affair. Ole Miss' Quinshon Judkins rushed for 205 yards and a touchdown in a 31-28 triumph at Texas A&M during his freshman 2022 season. + Sports + Football + + + TV14 + + + + Florida State vs. Pittsburgh + Florida State at Pittsburgh + The No. 4 Seminoles visit the Panthers. Florida State seeks its first 9-0 start since 2014, and first win over Pittsburgh since 2013. FSU ranks fifth nationally with 41.5 points per game. Jordan Travis (FSU) has accounted for 24 total TDs in 2023. + Sports + Football + + + + Unsportsmanlike with Evan, Canty and Michelle + Start the day off right with Chris Canty, Evan Cohen and Michelle Smallmon providing an energizing and informative way to take on the day. Sports, life and laughter are what it's all about. + Sports + Talk Show + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + Get Up + Host Mike Greenberg is joined by ESPN analysts to analyze the latest news from the world of sports on a morning show originating from Manhattan's South Street Seaport. + Sports + Talk Show + + + + Women's College Basketball Preview Show + An inside look at the upcoming women's college basketball season. + Sports + Basketball + + + + The Pat McAfee Show + Former NFL punter Pat McAfee brings his humor and candor to the microphone to highlight the day's top stories. + Sports + Talk Show + + + TVPG + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + NBA Today + In-depth, comprehensive daily coverage of all aspects of the NBA from expert analysts. + Sports + Basketball + + + + Daily Wager + Doug Kezirian joins sports betting experts as well as ESPN analysts and reporters from various sports for discussion centered on analytics and point spreads as well as how the day's sports news affects betting. + Sports + Talk Show + + + + NFL Live + Host Laura Rutledge takes the helm of this weekday show featuring the likes of Marcus Spears, Dan Orlovsky, Mina Kimes, and Adam Schefter, who offer the latest news and analysis from across the NFL.Guests: Marcus Spears, Dan Orlovsky, Ryan Clark, Mina Kimes, Field Yates, Adam Schefter, Keyshawn Johnson.. + Sports + Football + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + Los Angeles Chargers vs. New York Jets + Monday Night Football with Peyton and Eli: Los Angeles Chargers at New York Jets + From MetLife Stadium in East Rutherford, N.J. + Sports + Football + + + + Monday Night Postgame + A recap of the Monday Night Football matchup with highlights, interviews and more. + Sports + Football + + + + UFC Countdown + UFC 295: Prochazka vs. Pereira + A look at the lives and training camps of UFC athletes as they prepare for the next UFC pay-per-view event. + Sports + Martial Arts + + + TV14 + + + + Monday Blitz + A fast-paced offering that blends the NFL and college football while focusing on the weekend that was and broader topics; includes moments and significant achievements from all levels of football, such as high school, youth and flag football. + Sports + Football + + + + Monday Blitz + A fast-paced offering that blends the NFL and college football while focusing on the weekend that was and broader topics; includes moments and significant achievements from all levels of football, such as high school, youth and flag football. + Sports + Football + + + + Around the Horn + Sportswriters around the country discuss sports issues. + Sports + Talk Show + + + + Pardon the Interruption + Opinions regarding the day's top sports stories. + Sports + Talk Show + + + + SC Featured + Rocky Bleier + A look at former NFL player Rocky Bleier. + Sports + Talk Show + + + + 30 for 30 + The U + Filmmaker Billy Corben documents the rise to prominence of the college football program at the University of Miami. + Sports + Documentary + + + + SportsCenter Special: My Wish + Athletes work with Make-A-Wish® to fulfill sports-themed wishes for children with critical illness. + Sports + Miscellaneous + + + + Unsportsmanlike with Evan, Canty and Michelle + Start the day off right with Chris Canty, Evan Cohen and Michelle Smallmon providing an energizing and informative way to take on the day. Sports, life and laughter are what it's all about. + Sports + Talk Show + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + Get Up + Host Mike Greenberg is joined by ESPN analysts to analyze the latest news from the world of sports on a morning show originating from Manhattan's South Street Seaport. + Sports + Talk Show + + + + First Take + Stephen A. Smith joins Molly Qerim to debate the hottest topics in sports with contributors and guests. + Sports + News + + + + College Football Live + ESPN's daily college football show sharing reactions to the day's biggest stories and previews of each week's most important matchups. Kelsey Riggs and Jen Lada host alongside contributors Desmond Howard, Sam Acho, Greg McElroy and Pete Thamel. + Sports + Football + + + + College Football Live + ESPN's daily college football show sharing reactions to the day's biggest stories and previews of each week's most important matchups. Kelsey Riggs and Jen Lada host alongside contributors Desmond Howard, Sam Acho, Greg McElroy and Pete Thamel. + Sports + Football + + + + The Pat McAfee Show + Former NFL punter Pat McAfee brings his humor and candor to the microphone to highlight the day's top stories. + Sports + Talk Show + + + TVPG + + + + NFL Live + Host Laura Rutledge takes the helm of this weekday show featuring the likes of Marcus Spears, Dan Orlovsky, Mina Kimes, and Adam Schefter, who offer the latest news and analysis from across the NFL.Guests: Marcus Spears, Dan Orlovsky, Ryan Clark, Mina Kimes, Field Yates, Adam Schefter, Keyshawn Johnson.. + Sports + Football + + + + Around the Horn + Sportswriters around the country discuss sports issues. + Sports + Talk Show + + + + Pardon the Interruption + Opinions regarding the day's top sports stories. + Sports + Talk Show + + + + SC Featured + Rocky Bleier + A look at former NFL player Rocky Bleier. + Sports + Talk Show + + + + Ohio vs. Buffalo + Ohio at Buffalo + From the University at Buffalo Stadium in Amherst, N.Y. + Sports + Football + + + + College Football Playoff: Top 25 + College football's top teams are debated and discussed in anticipation of the College Football Playoff Selection Committee's first meeting. Rece Davis hosts with analysis from David Pollack, Joey Galloway and Kirk Herbstreit. + Sports + Football + + + + NFL Live + Host Laura Rutledge takes the helm of this weekday show featuring the likes of Marcus Spears, Dan Orlovsky, Mina Kimes, and Adam Schefter, who offer the latest news and analysis from across the NFL.Guests: Marcus Spears, Dan Orlovsky, Ryan Clark, Mina Kimes, Field Yates, Adam Schefter, Keyshawn Johnson.. + Sports + Football + + + + DC & RC + UFC legend Daniel Cormier and Super Bowl champion, Ryan Clark, both Louisiana natives, hang out and kick around the hottest topics from across the world of MMA and preview/review the most important fight cards and storylines. + Sports + Miscellaneous + + + + To Be Announced + Programming to be announced. + Performing Arts + Music + + + TVPG + + + + Pardon the Interruption + Opinions regarding the day's top sports stories. + Sports + Talk Show + + + + College Football Playoff: Top 25 + College football's top teams are debated and discussed in anticipation of the College Football Playoff Selection Committee's first meeting. Rece Davis hosts with analysis from David Pollack, Joey Galloway and Kirk Herbstreit. + Sports + Football + + + + UFC Unleashed + British Invasion + Features greatest moments from the UFC's vast library of fight footage. + Sports + Martial Arts + + + TV14 + + + + UFC Countdown + UFC 295: Prochazka vs. Pereira + A look at the lives and training camps of UFC athletes as they prepare for the next UFC pay-per-view event. + Sports + Martial Arts + + + TV14 + + + + College Football Playoff: Top 25 + College football's top teams are debated and discussed in anticipation of the College Football Playoff Selection Committee's first meeting. Rece Davis hosts with analysis from David Pollack, Joey Galloway and Kirk Herbstreit. + Sports + Football + + + + Unsportsmanlike with Evan, Canty and Michelle + Start the day off right with Chris Canty, Evan Cohen and Michelle Smallmon providing an energizing and informative way to take on the day. Sports, life and laughter are what it's all about. + Sports + Talk Show + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + SportsCenter + ESPN's flagship program provides sports news, highlights and analysis. + Sports + News + + + + Get Up + Host Mike Greenberg is joined by ESPN analysts to analyze the latest news from the world of sports on a morning show originating from Manhattan's South Street Seaport. + Sports + Talk Show + + + + First Take + Stephen A. Smith joins Molly Qerim to debate the hottest topics in sports with contributors and guests. + Sports + News + + + + College Football Live + ESPN's daily college football show sharing reactions to the day's biggest stories and previews of each week's most important matchups. Kelsey Riggs and Jen Lada host alongside contributors Desmond Howard, Sam Acho, Greg McElroy and Pete Thamel. + Sports + Football + + + + College Football Live + ESPN's daily college football show sharing reactions to the day's biggest stories and previews of each week's most important matchups. Kelsey Riggs and Jen Lada host alongside contributors Desmond Howard, Sam Acho, Greg McElroy and Pete Thamel. + Sports + Football + + + + The Pat McAfee Show + Former NFL punter Pat McAfee brings his humor and candor to the microphone to highlight the day's top stories. + Sports + Talk Show + + + TVPG + + + + NFL Live + Host Laura Rutledge takes the helm of this weekday show featuring the likes of Marcus Spears, Dan Orlovsky, Mina Kimes, and Adam Schefter, who offer the latest news and analysis from across the NFL.Guests: Marcus Spears, Dan Orlovsky, Ryan Clark, Mina Kimes, Field Yates, Adam Schefter, Keyshawn Johnson.. + Sports + Football + + + + Around the Horn + Sportswriters around the country discuss sports issues. + Sports + Talk Show + + + + Pardon the Interruption + Opinions regarding the day's top sports stories. + Sports + Talk Show + + + + Hello Doctor + Experts provide suggestions on various health issues. + Health + + + + Travel Together + Local + + + + ETTV America News + (Chinese). + News + + + + Twenty Your Life On + Drama + + + + ETTV EZ News and ETTV City News + News + + + + Crucial Moment + Regular + + + + Crucial Moment + Regular + + + + Eyeshot to the Cross-Strait + Performing Arts + + + TVPG + + + + Star Quiz Show + Game Shows + + + + No. 57 News King + News + + + + Eyeshot to the Cross-Strait + Performing Arts + + + TVPG + + + + ETTV City News + News + + + + Crucial Moment + Regular + + + + Travel Together + Local + + + + Crucial Moment + Regular + + + + Girl Power + Specials + Animated + + + + Money Show + Business + + + + Thank You Doctor + Following doctors of the newly-established EICU who rely on their medical expertise to save every patient. + Drama + + + + EZ News + News + + + TVPG + + + + No. 57 News King + News + + + + ETTV America News + (Chinese). + News + + + + Eyeshot to the Cross-Strait + Performing Arts + + + TVPG + + + + The Spirit of Taiwan + Variety + + + TVPG + + + + News Buzz + News + + + + Girl Power + Specials + Animated + + + + Let's Cook + Cooking with Purple Iris's Chef. + Food + + + + Major Crimes + Exploring the art of the deal, as officers and prosecutors work together to score convictions. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Left & Right + News + + + + No. 57 News King + News + + + + ETTV EZ News and ETTV City News + News + + + + Cross-Straits Economic Reports (ECFA) + Local + + + + Cross-Straits Economic Reports (ECFA) + Local + + + + EFNC Evening News + News + Business + + + TVPG + + + + Star Quiz Show + Game Shows + + + + ETTV America News + (Chinese). + News + + + + ETTV America News + (Chinese). + News + + + + YOYO Singing & Dance + Music + Performing Arts + + + + Taiwan's 1001 Stories + Local + + + + Left & Right + News + + + + News Buzz + News + + + + ETTV EZ News and ETTV City News + News + + + + All Star House + Variety + + + + Live Like a Professional + Performing Arts + + + + YOYO Singing & Dance + Music + Performing Arts + + + + No.57 Dream Boulevard + Business + + + TVPG + + + + The Spirit of Taiwan + Variety + + + TVPG + + + + ETTV City News + News + + + + Shiny Food Diary + Variety + + + + Cross-Straits Economic Reports (ECFA) + Local + + + + Major Crimes + Exploring the art of the deal, as officers and prosecutors work together to score convictions. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + ETTV America News + (Chinese). + News + + + + Cross-Straits Economic Reports (ECFA) + Local + + + + Thank You Doctor + Following doctors of the newly-established EICU who rely on their medical expertise to save every patient. + Drama + + + + Taiwan Major Crimes + Local + + + + Live Like a Professional + Performing Arts + + + + ETTV America News + (Chinese). + News + + + + Travel Together + Local + + + + Shiny Food Diary + Variety + + + + Taiwan Criminal Files + Regular + + + + Major Crimes + Exploring the art of the deal, as officers and prosecutors work together to score convictions. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Star Quiz Show + Game Shows + + + + Taiwan's 1001 Stories + Local + + + + Cross-Straits Economic Reports (ECFA) + Local + + + + ETTV City News + News + + + + ETTV America News + (Chinese). + News + + + + Travel Together + Local + + + + Taiwan Criminal Files + Regular + + + + Girl Power + Specials + Animated + + + + Major Crimes + Exploring the art of the deal, as officers and prosecutors work together to score convictions. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Thank You Doctor + Following doctors of the newly-established EICU who rely on their medical expertise to save every patient. + Drama + + + + The Spirit of Taiwan + Variety + + + TVPG + + + + ETTV America News + (Chinese). + News + + + + Shiny Food Diary + Variety + + + + Love and Destiny + A love story between the God of War and a young fairy maiden who accidentally awakens him. + + Chang Chen + Ni Ni + Zhixi Zhang + + Drama + + + + No.57 Dream Boulevard + Business + + + TVPG + + + + ETTV News + News + + + + Let's Cook + Cooking with Purple Iris's Chef. + Food + + + + All Star House + Variety + + + + Tonight Like War + Variety + + + + Taiwan Major Crimes + Local + + + + Life Show + Local + + + + Taiwan's 1001 Stories + Local + + + + Eyeshot to the Cross-Strait + Performing Arts + + + TVPG + + + + EFNC Evening News + News + Business + + + TVPG + + + + Chic Cities + (Mandarin). + Travel + + + + ETTV America News + (Chinese). + News + + + + My Best Friend's Story + Drama + + + + YOYO Singing & Dance + Music + Performing Arts + + + + No. 57 News King + News + + + + The Ordinary Glory + Drama + + + + Major Crimes + Exploring the art of the deal, as officers and prosecutors work together to score convictions. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Tonight Like War + Variety + + + + EZ News + News + + + TVPG + + + + Life Show + Local + + + + CityNews + News + + + + YOYO Singing & Dance + Music + Performing Arts + + + + News Buzz + News + + + + Taiwan's 1001 Stories + Local + + + + ETTV City News + News + + + + Stock Wave + Business + + + TVPG + + + + The Chinese Restaurant + Local + Reality TV + + + + Travel Together + Local + + + + Retrospective Movie + Regular + + + + The Ordinary Glory + Drama + + + + Tonight Like War + Variety + + + + Love and Destiny + A love story between the God of War and a young fairy maiden who accidentally awakens him. + + Chen Chang + Ni Ni + Zhixi Zhang + + Drama + + + + EZ News + News + + + TVPG + + + + Taiwan's 1001 Stories + Local + + + + ETTV America News + (Chinese). + News + + + + My Best Friend's Story + Drama + + + + The Spirit of Taiwan + Variety + + + TVPG + + + + News Buzz + News + + + + ETTV America News + (Chinese). + News + + + + Eyeshot to the Cross-Strait + Performing Arts + + + TVPG + + + + Eyeshot to the Cross-Strait + Performing Arts + + + TVPG + + + + Life Show + Local + + + + Taiwan Major Crimes + Local + + + + Tonight Like War + Variety + + + + Shiny Food Diary + Variety + + + + Crucial Moment + Regular + + + + ETTV America News + (Chinese). + News + + + + Love and Destiny + A love story between the God of War and a young fairy maiden who accidentally awakens him. + + Chen Chang + Ni Ni + Zhixi Zhang + + Drama + + + + Money Show + Business + + + + Major Crimes + Exploring the art of the deal, as officers and prosecutors work together to score convictions. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + CityNews + News + + + + Let's Cook + Cooking with Purple Iris's Chef. + Food + + + + Breaking News + News + + + + Tonight Like War + Variety + + + + Cross-Straits Economic Reports (ECFA) + Local + + + + EFNC News + Business + + + TVPG + + + + Taiwan's 1001 Stories + Local + + + + No. 57 News King + News + + + + No.57 Dream Boulevard + Business + + + TVPG + + + + Money Show + Business + + + + My Best Friend's Story + Drama + + + + CityNews + News + + + + YOYO Singing & Dance + Music + Performing Arts + + + + Crucial Moment + Regular + + + + The Stories of Lion Rock Spirit + A new generation persevere and exhibit the spirit of Lion Rock when it comes to their career, their future and their relationships. + Drama + + + + Crucial Moment + Regular + + + + Tonight Like War + Variety + + + + Breaking News + News + + + + The Chinese Restaurant + Local + Reality TV + + + + YOYO Singing & Dance + Music + Performing Arts + + + + The Spirit of Taiwan + Variety + + + TVPG + + + + ETTV City News + News + + + + Stock Wave + Business + + + TVPG + + + + Retrospective Movie + Regular + + + + Tonight Like War + Variety + + + + Life Show + Local + + + + Cross-Straits Economic Reports (ECFA) + Local + + + + Tonight Like War + Variety + + + + Love and Destiny + A love story between the God of War and a young fairy maiden who accidentally awakens him. + + Chen Chang + Ni Ni + Zhixi Zhang + + Drama + + + + EZ News + News + + + TVPG + + + + No.57 Dream Boulevard + Business + + + TVPG + + + + My Best Friend's Story + Drama + + + + EZ News + News + + + TVPG + + + + ETTV City News + News + + + + Chic Cities + (Mandarin). + Travel + + + + Taiwan's 1001 Stories + Local + + + + Tonight Like War + Variety + + + + No.57 Dream Boulevard + Business + + + TVPG + + + + ETTV City News + News + + + + The Spirit of Taiwan + Variety + + + TVPG + + + + Girl Power + Specials + Animated + + + + Let's Cook + Cooking with Purple Iris's Chef. + Food + + + + Left & Right + News + + + + ETTV EZ News and ETTV City News + News + + + + Health Class Reunion at Channel 57 + Health + + + + Star Quiz Show + Game Shows + + + + ETTV America News + (Chinese). + News + + + + Left & Right + News + + + + ETTV EZ News and ETTV City News + News + + + + Live Like a Professional + Performing Arts + + + + Out of Court + Variety + + + + The Ordinary Glory + Drama + + + + Thank You Doctor + Following doctors of the newly-established EICU who rely on their medical expertise to save every patient. + Drama + + + + Thank You Doctor + Following doctors of the newly-established EICU who rely on their medical expertise to save every patient. + Drama + + + + Ancient Love Poetry + + Dongyu Zhou + Xu Kai + Jenny Zhang + + History + + + + Qing Yu Nian + Drama + + + + Shang Yang Fu + Regular + + + + Out of Court + Variety + + + + Qing Yu Nian + Drama + + + + Ancient Love Poetry + + Dongyu Zhou + Xu Kai + Jenny Zhang + + History + + + + The Ordinary Glory + Drama + + + + Thank You Doctor + Following doctors of the newly-established EICU who rely on their medical expertise to save every patient. + Drama + + + + The Gold Medal Lawyer + Regular + + + + Shang Yang Fu + Regular + + + + Reborn + Drama + + + + The Ordinary Glory + Drama + + + + Thank You Doctor + Following doctors of the newly-established EICU who rely on their medical expertise to save every patient. + Drama + + + + The Gold Medal Lawyer + Regular + + + + Ancient Love Poetry + + Dongyu Zhou + Xu Kai + Jenny Zhang + + History + + + + Qing Yu Nian + Drama + + + + Shang Yang Fu + Regular + + + + Princess Silver + A story that follows a princess with amnesia who meets a prince that does not want to marry her and how they find a place for themselves despite the complications of the time. + Drama + + + + The Knockout + Regular + + + + Animal Whisper + Regular + + + + Love Like the Galaxy + Ling Bu Yi, foster son of Emperor Wen and a talented and ruthless general of the Black Armour Army, is on a personal mission to uncover hidden truths about the past. + + Lei Wu + Lusi Zhao + Tao Guo + + History + + + + The Knockout + Regular + + + + Invisible Life + Local + + + + Princess Silver + A story that follows a princess with amnesia who meets a prince that does not want to marry her and how they find a place for themselves despite the complications of the time. + Drama + + + + Reunion: The Sound of Providence + + Yilong Zhu + Jun Hu + Baron Chen + + Regular + + + + Love Like the Galaxy + Ling Bu Yi, foster son of Emperor Wen and a talented and ruthless general of the Black Armour Army, is on a personal mission to uncover hidden truths about the past. + + Lei Wu + Lusi Zhao + Tao Guo + + History + + + + The Knockout + Regular + + + + Princess Silver + A story that follows a princess with amnesia who meets a prince that does not want to marry her and how they find a place for themselves despite the complications of the time. + Drama + + + + Animal Whisper + Regular + + + + Love Like the Galaxy + Ling Bu Yi, foster son of Emperor Wen and a talented and ruthless general of the Black Armour Army, is on a personal mission to uncover hidden truths about the past. + + Lei Wu + Lusi Zhao + Tao Guo + + History + + + + Reunion: The Sound of Providence + + Yilong Zhu + Jun Hu + Baron Chen + + Regular + + + + The Knockout + Regular + + + + Love Like the Galaxy + Ling Bu Yi, foster son of Emperor Wen and a talented and ruthless general of the Black Armour Army, is on a personal mission to uncover hidden truths about the past. + + Lei Wu + Lusi Zhao + Tao Guo + + History + + + + Animal Whisper + Regular + + + + Princess Silver + A story that follows a princess with amnesia who meets a prince that does not want to marry her and how they find a place for themselves despite the complications of the time. + Drama + + + + Invisible Life + Local + + + + Love Like the Galaxy + Ling Bu Yi, foster son of Emperor Wen and a talented and ruthless general of the Black Armour Army, is on a personal mission to uncover hidden truths about the past. + + Lei Wu + Lusi Zhao + Tao Guo + + History + + + + Animal Whisper + Regular + + + + Princess Silver + A story that follows a princess with amnesia who meets a prince that does not want to marry her and how they find a place for themselves despite the complications of the time. + Drama + + + + The Knockout + Regular + + + + Reunion: The Sound of Providence + + Yilong Zhu + Jun Hu + Baron Chen + + Regular + + + + Princess Silver + A story that follows a princess with amnesia who meets a prince that does not want to marry her and how they find a place for themselves despite the complications of the time. + Drama + + + + The Knockout + Regular + + + + Animal Whisper + Regular + + + + Love Like the Galaxy + Ling Bu Yi, foster son of Emperor Wen and a talented and ruthless general of the Black Armour Army, is on a personal mission to uncover hidden truths about the past. + + Lei Wu + Lusi Zhao + Tao Guo + + History + + + + The Knockout + Regular + + + + Invisible Life + Local + + + + Princess Silver + A story that follows a princess with amnesia who meets a prince that does not want to marry her and how they find a place for themselves despite the complications of the time. + Drama + + + + Reunion: The Sound of Providence + + Yilong Zhu + Jun Hu + Baron Chen + + Regular + + + + Love Like the Galaxy + Ling Bu Yi, foster son of Emperor Wen and a talented and ruthless general of the Black Armour Army, is on a personal mission to uncover hidden truths about the past. + + Lei Wu + Lusi Zhao + Tao Guo + + History + + + + The Knockout + Regular + + + + Princess Silver + A story that follows a princess with amnesia who meets a prince that does not want to marry her and how they find a place for themselves despite the complications of the time. + Drama + + + + Animal Whisper + Regular + + + + Love Like the Galaxy + Ling Bu Yi, foster son of Emperor Wen and a talented and ruthless general of the Black Armour Army, is on a personal mission to uncover hidden truths about the past. + + Lei Wu + Lusi Zhao + Tao Guo + + History + + + + Reunion: The Sound of Providence + + Yilong Zhu + Jun Hu + Baron Chen + + Regular + + + + The Knockout + Regular + + + + Love Like the Galaxy + Ling Bu Yi, foster son of Emperor Wen and a talented and ruthless general of the Black Armour Army, is on a personal mission to uncover hidden truths about the past. + + Lei Wu + Lusi Zhao + Tao Guo + + History + + + + Animal Whisper + Regular + + + + Princess Silver + A story that follows a princess with amnesia who meets a prince that does not want to marry her and how they find a place for themselves despite the complications of the time. + Drama + + + + Invisible Life + Local + + + + Love Like the Galaxy + Ling Bu Yi, foster son of Emperor Wen and a talented and ruthless general of the Black Armour Army, is on a personal mission to uncover hidden truths about the past. + + Lei Wu + Lusi Zhao + Tao Guo + + History + + + + Animal Whisper + Regular + + + + Princess Silver + A story that follows a princess with amnesia who meets a prince that does not want to marry her and how they find a place for themselves despite the complications of the time. + Drama + + + + The Knockout + Regular + + + + Reunion: The Sound of Providence + + Yilong Zhu + Jun Hu + Baron Chen + + Regular + + + + Princess Silver + A story that follows a princess with amnesia who meets a prince that does not want to marry her and how they find a place for themselves despite the complications of the time. + Drama + + + + The Knockout + Regular + + + + Animal Whisper + Regular + + + + Love Like the Galaxy + Ling Bu Yi, foster son of Emperor Wen and a talented and ruthless general of the Black Armour Army, is on a personal mission to uncover hidden truths about the past. + + Lei Wu + Lusi Zhao + Tao Guo + + History + + + + The Knockout + Regular + + + + Invisible Life + Local + + + + Princess Silver + A story that follows a princess with amnesia who meets a prince that does not want to marry her and how they find a place for themselves despite the complications of the time. + Drama + + + + Reunion: The Sound of Providence + + Yilong Zhu + Jun Hu + Baron Chen + + Regular + + + + Love Like the Galaxy + Ling Bu Yi, foster son of Emperor Wen and a talented and ruthless general of the Black Armour Army, is on a personal mission to uncover hidden truths about the past. + + Lei Wu + Lusi Zhao + Tao Guo + + History + + + + The Knockout + Regular + + + + Hello Doctor + Experts provide suggestions on various health issues. + Health + + + + Travel Together + Local + + + + ETTV America News + (Chinese). + News + + + + Twenty Your Life On + Drama + + + + ETTV EZ News and ETTV City News + News + + + + Crucial Moment + Regular + + + + Crucial Moment + Regular + + + + Eyeshot to the Cross-Strait + Performing Arts + + + TVPG + + + + Star Quiz Show + Game Shows + + + + No. 57 News King + News + + + + Eyeshot to the Cross-Strait + Performing Arts + + + TVPG + + + + ETTV City News + News + + + + Crucial Moment + Regular + + + + Travel Together + Local + + + + Crucial Moment + Regular + + + + Girl Power + Specials + Animated + + + + Money Show + Business + + + + Thank You Doctor + Following doctors of the newly-established EICU who rely on their medical expertise to save every patient. + Drama + + + + EZ News + News + + + TVPG + + + + No. 57 News King + News + + + + ETTV America News + (Chinese). + News + + + + Eyeshot to the Cross-Strait + Performing Arts + + + TVPG + + + + The Spirit of Taiwan + Variety + + + TVPG + + + + News Buzz + News + + + + Girl Power + Specials + Animated + + + + Let's Cook + Cooking with Purple Iris's Chef. + Food + + + + Major Crimes + Exploring the art of the deal, as officers and prosecutors work together to score convictions. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Left & Right + News + + + + No. 57 News King + News + + + + ETTV EZ News and ETTV City News + News + + + + Cross-Straits Economic Reports (ECFA) + Local + + + + Cross-Straits Economic Reports (ECFA) + Local + + + + EFNC Evening News + News + Business + + + TVPG + + + + Star Quiz Show + Game Shows + + + + ETTV America News + (Chinese). + News + + + + ETTV America News + (Chinese). + News + + + + YOYO Singing & Dance + Music + Performing Arts + + + + Taiwan's 1001 Stories + Local + + + + Left & Right + News + + + + News Buzz + News + + + + ETTV EZ News and ETTV City News + News + + + + All Star House + Variety + + + + Live Like a Professional + Performing Arts + + + + YOYO Singing & Dance + Music + Performing Arts + + + + No.57 Dream Boulevard + Business + + + TVPG + + + + The Spirit of Taiwan + Variety + + + TVPG + + + + ETTV City News + News + + + + Shiny Food Diary + Variety + + + + Cross-Straits Economic Reports (ECFA) + Local + + + + Major Crimes + Exploring the art of the deal, as officers and prosecutors work together to score convictions. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + ETTV America News + (Chinese). + News + + + + Cross-Straits Economic Reports (ECFA) + Local + + + + Thank You Doctor + Following doctors of the newly-established EICU who rely on their medical expertise to save every patient. + Drama + + + + Taiwan Major Crimes + Local + + + + Live Like a Professional + Performing Arts + + + + ETTV America News + (Chinese). + News + + + + Travel Together + Local + + + + Shiny Food Diary + Variety + + + + Taiwan Criminal Files + Regular + + + + Major Crimes + Exploring the art of the deal, as officers and prosecutors work together to score convictions. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Star Quiz Show + Game Shows + + + + Taiwan's 1001 Stories + Local + + + + Cross-Straits Economic Reports (ECFA) + Local + + + + ETTV City News + News + + + + ETTV America News + (Chinese). + News + + + + Travel Together + Local + + + + Taiwan Criminal Files + Regular + + + + Girl Power + Specials + Animated + + + + Major Crimes + Exploring the art of the deal, as officers and prosecutors work together to score convictions. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Thank You Doctor + Following doctors of the newly-established EICU who rely on their medical expertise to save every patient. + Drama + + + + The Spirit of Taiwan + Variety + + + TVPG + + + + ETTV America News + (Chinese). + News + + + + Shiny Food Diary + Variety + + + + Love and Destiny + A love story between the God of War and a young fairy maiden who accidentally awakens him. + + Chang Chen + Ni Ni + Zhixi Zhang + + Drama + + + + No.57 Dream Boulevard + Business + + + TVPG + + + + ETTV News + News + + + + Let's Cook + Cooking with Purple Iris's Chef. + Food + + + + All Star House + Variety + + + + Tonight Like War + Variety + + + + Taiwan Major Crimes + Local + + + + Life Show + Local + + + + Taiwan's 1001 Stories + Local + + + + Eyeshot to the Cross-Strait + Performing Arts + + + TVPG + + + + EFNC Evening News + News + Business + + + TVPG + + + + Chic Cities + (Mandarin). + Travel + + + + ETTV America News + (Chinese). + News + + + + My Best Friend's Story + Drama + + + + YOYO Singing & Dance + Music + Performing Arts + + + + No. 57 News King + News + + + + The Ordinary Glory + Drama + + + + Major Crimes + Exploring the art of the deal, as officers and prosecutors work together to score convictions. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Tonight Like War + Variety + + + + EZ News + News + + + TVPG + + + + Life Show + Local + + + + CityNews + News + + + + YOYO Singing & Dance + Music + Performing Arts + + + + News Buzz + News + + + + Taiwan's 1001 Stories + Local + + + + ETTV City News + News + + + + Stock Wave + Business + + + TVPG + + + + The Chinese Restaurant + Local + Reality TV + + + + Travel Together + Local + + + + Retrospective Movie + Regular + + + + The Ordinary Glory + Drama + + + + Tonight Like War + Variety + + + + Love and Destiny + A love story between the God of War and a young fairy maiden who accidentally awakens him. + + Chen Chang + Ni Ni + Zhixi Zhang + + Drama + + + + EZ News + News + + + TVPG + + + + Taiwan's 1001 Stories + Local + + + + ETTV America News + (Chinese). + News + + + + My Best Friend's Story + Drama + + + + The Spirit of Taiwan + Variety + + + TVPG + + + + News Buzz + News + + + + ETTV America News + (Chinese). + News + + + + Eyeshot to the Cross-Strait + Performing Arts + + + TVPG + + + + Eyeshot to the Cross-Strait + Performing Arts + + + TVPG + + + + Life Show + Local + + + + Taiwan Major Crimes + Local + + + + Tonight Like War + Variety + + + + Shiny Food Diary + Variety + + + + Crucial Moment + Regular + + + + ETTV America News + (Chinese). + News + + + + Love and Destiny + A love story between the God of War and a young fairy maiden who accidentally awakens him. + + Chen Chang + Ni Ni + Zhixi Zhang + + Drama + + + + Money Show + Business + + + + Major Crimes + Exploring the art of the deal, as officers and prosecutors work together to score convictions. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + CityNews + News + + + + Let's Cook + Cooking with Purple Iris's Chef. + Food + + + + Breaking News + News + + + + Tonight Like War + Variety + + + + Cross-Straits Economic Reports (ECFA) + Local + + + + EFNC News + Business + + + TVPG + + + + Taiwan's 1001 Stories + Local + + + + No. 57 News King + News + + + + No.57 Dream Boulevard + Business + + + TVPG + + + + Money Show + Business + + + + My Best Friend's Story + Drama + + + + CityNews + News + + + + YOYO Singing & Dance + Music + Performing Arts + + + + Crucial Moment + Regular + + + + The Stories of Lion Rock Spirit + A new generation persevere and exhibit the spirit of Lion Rock when it comes to their career, their future and their relationships. + Drama + + + + Crucial Moment + Regular + + + + Tonight Like War + Variety + + + + Breaking News + News + + + + The Chinese Restaurant + Local + Reality TV + + + + YOYO Singing & Dance + Music + Performing Arts + + + + The Spirit of Taiwan + Variety + + + TVPG + + + + ETTV City News + News + + + + Stock Wave + Business + + + TVPG + + + + Retrospective Movie + Regular + + + + Tonight Like War + Variety + + + + Life Show + Local + + + + Cross-Straits Economic Reports (ECFA) + Local + + + + Tonight Like War + Variety + + + + Love and Destiny + A love story between the God of War and a young fairy maiden who accidentally awakens him. + + Chen Chang + Ni Ni + Zhixi Zhang + + Drama + + + + EZ News + News + + + TVPG + + + + No.57 Dream Boulevard + Business + + + TVPG + + + + My Best Friend's Story + Drama + + + + EZ News + News + + + TVPG + + + + ETTV City News + News + + + + Chic Cities + (Mandarin). + Travel + + + + Taiwan's 1001 Stories + Local + + + + Tonight Like War + Variety + + + + No.57 Dream Boulevard + Business + + + TVPG + + + + ETTV City News + News + + + + The Spirit of Taiwan + Variety + + + TVPG + + + + Girl Power + Specials + Animated + + + + Let's Cook + Cooking with Purple Iris's Chef. + Food + + + + Left & Right + News + + + + ETTV EZ News and ETTV City News + News + + + + Health Class Reunion at Channel 57 + Health + + + + Star Quiz Show + Game Shows + + + + ETTV America News + (Chinese). + News + + + + Left & Right + News + + + + ETTV EZ News and ETTV City News + News + + + + Live Like a Professional + Performing Arts + + + + Hello Doctor + Experts provide suggestions on various health issues. + Health + + + + Travel Together + Local + + + + ETTV America News + (Chinese). + News + + + + Twenty Your Life On + Drama + + + + ETTV EZ News and ETTV City News + News + + + + Crucial Moment + Regular + + + + Crucial Moment + Regular + + + + Eyeshot to the Cross-Strait + Performing Arts + + + TVPG + + + + Star Quiz Show + Game Shows + + + + No. 57 News King + News + + + + Eyeshot to the Cross-Strait + Performing Arts + + + TVPG + + + + ETTV City News + News + + + + Crucial Moment + Regular + + + + Travel Together + Local + + + + Crucial Moment + Regular + + + + Girl Power + Specials + Animated + + + + Money Show + Business + + + + Thank You Doctor + Following doctors of the newly-established EICU who rely on their medical expertise to save every patient. + Drama + + + + EZ News + News + + + TVPG + + + + No. 57 News King + News + + + + ETTV America News + (Chinese). + News + + + + Eyeshot to the Cross-Strait + Performing Arts + + + TVPG + + + + The Spirit of Taiwan + Variety + + + TVPG + + + + News Buzz + News + + + + Girl Power + Specials + Animated + + + + Let's Cook + Cooking with Purple Iris's Chef. + Food + + + + Major Crimes + Exploring the art of the deal, as officers and prosecutors work together to score convictions. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Left & Right + News + + + + No. 57 News King + News + + + + ETTV EZ News and ETTV City News + News + + + + Cross-Straits Economic Reports (ECFA) + Local + + + + Cross-Straits Economic Reports (ECFA) + Local + + + + EFNC Evening News + News + Business + + + TVPG + + + + Star Quiz Show + Game Shows + + + + ETTV America News + (Chinese). + News + + + + ETTV America News + (Chinese). + News + + + + YOYO Singing & Dance + Music + Performing Arts + + + + Taiwan's 1001 Stories + Local + + + + Left & Right + News + + + + News Buzz + News + + + + ETTV EZ News and ETTV City News + News + + + + All Star House + Variety + + + + Live Like a Professional + Performing Arts + + + + YOYO Singing & Dance + Music + Performing Arts + + + + No.57 Dream Boulevard + Business + + + TVPG + + + + The Spirit of Taiwan + Variety + + + TVPG + + + + ETTV City News + News + + + + Shiny Food Diary + Variety + + + + Cross-Straits Economic Reports (ECFA) + Local + + + + Major Crimes + Exploring the art of the deal, as officers and prosecutors work together to score convictions. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + ETTV America News + (Chinese). + News + + + + Cross-Straits Economic Reports (ECFA) + Local + + + + Thank You Doctor + Following doctors of the newly-established EICU who rely on their medical expertise to save every patient. + Drama + + + + Taiwan Major Crimes + Local + + + + Live Like a Professional + Performing Arts + + + + ETTV America News + (Chinese). + News + + + + Travel Together + Local + + + + Shiny Food Diary + Variety + + + + Taiwan Criminal Files + Regular + + + + Major Crimes + Exploring the art of the deal, as officers and prosecutors work together to score convictions. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Star Quiz Show + Game Shows + + + + Taiwan's 1001 Stories + Local + + + + Cross-Straits Economic Reports (ECFA) + Local + + + + ETTV City News + News + + + + ETTV America News + (Chinese). + News + + + + Travel Together + Local + + + + Taiwan Criminal Files + Regular + + + + Girl Power + Specials + Animated + + + + Major Crimes + Exploring the art of the deal, as officers and prosecutors work together to score convictions. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Thank You Doctor + Following doctors of the newly-established EICU who rely on their medical expertise to save every patient. + Drama + + + + The Spirit of Taiwan + Variety + + + TVPG + + + + ETTV America News + (Chinese). + News + + + + Shiny Food Diary + Variety + + + + Love and Destiny + A love story between the God of War and a young fairy maiden who accidentally awakens him. + + Chang Chen + Ni Ni + Zhixi Zhang + + Drama + + + + No.57 Dream Boulevard + Business + + + TVPG + + + + ETTV News + News + + + + Let's Cook + Cooking with Purple Iris's Chef. + Food + + + + All Star House + Variety + + + + Tonight Like War + Variety + + + + Taiwan Major Crimes + Local + + + + Life Show + Local + + + + Taiwan's 1001 Stories + Local + + + + Eyeshot to the Cross-Strait + Performing Arts + + + TVPG + + + + EFNC Evening News + News + Business + + + TVPG + + + + Chic Cities + (Mandarin). + Travel + + + + ETTV America News + (Chinese). + News + + + + My Best Friend's Story + Drama + + + + YOYO Singing & Dance + Music + Performing Arts + + + + No. 57 News King + News + + + + The Ordinary Glory + Drama + + + + Major Crimes + Exploring the art of the deal, as officers and prosecutors work together to score convictions. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Tonight Like War + Variety + + + + EZ News + News + + + TVPG + + + + Life Show + Local + + + + CityNews + News + + + + YOYO Singing & Dance + Music + Performing Arts + + + + News Buzz + News + + + + Taiwan's 1001 Stories + Local + + + + ETTV City News + News + + + + Stock Wave + Business + + + TVPG + + + + The Chinese Restaurant + Local + Reality TV + + + + Travel Together + Local + + + + Retrospective Movie + Regular + + + + The Ordinary Glory + Drama + + + + Tonight Like War + Variety + + + + Love and Destiny + A love story between the God of War and a young fairy maiden who accidentally awakens him. + + Chen Chang + Ni Ni + Zhixi Zhang + + Drama + + + + EZ News + News + + + TVPG + + + + Taiwan's 1001 Stories + Local + + + + ETTV America News + (Chinese). + News + + + + My Best Friend's Story + Drama + + + + The Spirit of Taiwan + Variety + + + TVPG + + + + News Buzz + News + + + + ETTV America News + (Chinese). + News + + + + Eyeshot to the Cross-Strait + Performing Arts + + + TVPG + + + + Eyeshot to the Cross-Strait + Performing Arts + + + TVPG + + + + Life Show + Local + + + + Taiwan Major Crimes + Local + + + + Tonight Like War + Variety + + + + Shiny Food Diary + Variety + + + + Crucial Moment + Regular + + + + ETTV America News + (Chinese). + News + + + + Love and Destiny + A love story between the God of War and a young fairy maiden who accidentally awakens him. + + Chen Chang + Ni Ni + Zhixi Zhang + + Drama + + + + Money Show + Business + + + + Major Crimes + Exploring the art of the deal, as officers and prosecutors work together to score convictions. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + CityNews + News + + + + Let's Cook + Cooking with Purple Iris's Chef. + Food + + + + Breaking News + News + + + + Tonight Like War + Variety + + + + Cross-Straits Economic Reports (ECFA) + Local + + + + EFNC News + Business + + + TVPG + + + + Taiwan's 1001 Stories + Local + + + + No. 57 News King + News + + + + No.57 Dream Boulevard + Business + + + TVPG + + + + Money Show + Business + + + + My Best Friend's Story + Drama + + + + CityNews + News + + + + YOYO Singing & Dance + Music + Performing Arts + + + + Crucial Moment + Regular + + + + The Stories of Lion Rock Spirit + A new generation persevere and exhibit the spirit of Lion Rock when it comes to their career, their future and their relationships. + Drama + + + + Crucial Moment + Regular + + + + Tonight Like War + Variety + + + + Breaking News + News + + + + The Chinese Restaurant + Local + Reality TV + + + + YOYO Singing & Dance + Music + Performing Arts + + + + The Spirit of Taiwan + Variety + + + TVPG + + + + ETTV City News + News + + + + Stock Wave + Business + + + TVPG + + + + Retrospective Movie + Regular + + + + Tonight Like War + Variety + + + + Life Show + Local + + + + Cross-Straits Economic Reports (ECFA) + Local + + + + Tonight Like War + Variety + + + + Love and Destiny + A love story between the God of War and a young fairy maiden who accidentally awakens him. + + Chen Chang + Ni Ni + Zhixi Zhang + + Drama + + + + EZ News + News + + + TVPG + + + + No.57 Dream Boulevard + Business + + + TVPG + + + + My Best Friend's Story + Drama + + + + EZ News + News + + + TVPG + + + + ETTV City News + News + + + + Chic Cities + (Mandarin). + Travel + + + + Taiwan's 1001 Stories + Local + + + + Tonight Like War + Variety + + + + No.57 Dream Boulevard + Business + + + TVPG + + + + ETTV City News + News + + + + The Spirit of Taiwan + Variety + + + TVPG + + + + Girl Power + Specials + Animated + + + + Let's Cook + Cooking with Purple Iris's Chef. + Food + + + + Left & Right + News + + + + ETTV EZ News and ETTV City News + News + + + + Health Class Reunion at Channel 57 + Health + + + + Star Quiz Show + Game Shows + + + + ETTV America News + (Chinese). + News + + + + Left & Right + News + + + + ETTV EZ News and ETTV City News + News + + + + Live Like a Professional + Performing Arts + + + + Hello Doctor + Experts provide suggestions on various health issues. + Health + + + + Travel Together + Local + + + + ETTV America News + (Chinese). + News + + + + Twenty Your Life On + Drama + + + + ETTV EZ News and ETTV City News + News + + + + Crucial Moment + Regular + + + + Crucial Moment + Regular + + + + Eyeshot to the Cross-Strait + Performing Arts + + + TVPG + + + + Star Quiz Show + Game Shows + + + + No. 57 News King + News + + + + Eyeshot to the Cross-Strait + Performing Arts + + + TVPG + + + + ETTV City News + News + + + + Crucial Moment + Regular + + + + Travel Together + Local + + + + Crucial Moment + Regular + + + + Girl Power + Specials + Animated + + + + Money Show + Business + + + + Thank You Doctor + Following doctors of the newly-established EICU who rely on their medical expertise to save every patient. + Drama + + + + EZ News + News + + + TVPG + + + + No. 57 News King + News + + + + ETTV America News + (Chinese). + News + + + + Eyeshot to the Cross-Strait + Performing Arts + + + TVPG + + + + The Spirit of Taiwan + Variety + + + TVPG + + + + News Buzz + News + + + + Girl Power + Specials + Animated + + + + Let's Cook + Cooking with Purple Iris's Chef. + Food + + + + Major Crimes + Exploring the art of the deal, as officers and prosecutors work together to score convictions. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Left & Right + News + + + + No. 57 News King + News + + + + ETTV EZ News and ETTV City News + News + + + + Cross-Straits Economic Reports (ECFA) + Local + + + + Cross-Straits Economic Reports (ECFA) + Local + + + + EFNC Evening News + News + Business + + + TVPG + + + + Star Quiz Show + Game Shows + + + + ETTV America News + (Chinese). + News + + + + ETTV America News + (Chinese). + News + + + + YOYO Singing & Dance + Music + Performing Arts + + + + Taiwan's 1001 Stories + Local + + + + Left & Right + News + + + + News Buzz + News + + + + ETTV EZ News and ETTV City News + News + + + + All Star House + Variety + + + + Live Like a Professional + Performing Arts + + + + YOYO Singing & Dance + Music + Performing Arts + + + + No.57 Dream Boulevard + Business + + + TVPG + + + + The Spirit of Taiwan + Variety + + + TVPG + + + + ETTV City News + News + + + + Shiny Food Diary + Variety + + + + Cross-Straits Economic Reports (ECFA) + Local + + + + Major Crimes + Exploring the art of the deal, as officers and prosecutors work together to score convictions. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + ETTV America News + (Chinese). + News + + + + Cross-Straits Economic Reports (ECFA) + Local + + + + Thank You Doctor + Following doctors of the newly-established EICU who rely on their medical expertise to save every patient. + Drama + + + + Taiwan Major Crimes + Local + + + + Live Like a Professional + Performing Arts + + + + ETTV America News + (Chinese). + News + + + + Travel Together + Local + + + + Shiny Food Diary + Variety + + + + Taiwan Criminal Files + Regular + + + + Major Crimes + Exploring the art of the deal, as officers and prosecutors work together to score convictions. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Star Quiz Show + Game Shows + + + + Taiwan's 1001 Stories + Local + + + + Cross-Straits Economic Reports (ECFA) + Local + + + + ETTV City News + News + + + + ETTV America News + (Chinese). + News + + + + Travel Together + Local + + + + Taiwan Criminal Files + Regular + + + + Girl Power + Specials + Animated + + + + Major Crimes + Exploring the art of the deal, as officers and prosecutors work together to score convictions. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Thank You Doctor + Following doctors of the newly-established EICU who rely on their medical expertise to save every patient. + Drama + + + + The Spirit of Taiwan + Variety + + + TVPG + + + + ETTV America News + (Chinese). + News + + + + Shiny Food Diary + Variety + + + + Love and Destiny + A love story between the God of War and a young fairy maiden who accidentally awakens him. + + Chang Chen + Ni Ni + Zhixi Zhang + + Drama + + + + No.57 Dream Boulevard + Business + + + TVPG + + + + ETTV News + News + + + + Let's Cook + Cooking with Purple Iris's Chef. + Food + + + + All Star House + Variety + + + + Tonight Like War + Variety + + + + Taiwan Major Crimes + Local + + + + Life Show + Local + + + + Taiwan's 1001 Stories + Local + + + + Eyeshot to the Cross-Strait + Performing Arts + + + TVPG + + + + EFNC Evening News + News + Business + + + TVPG + + + + Chic Cities + (Mandarin). + Travel + + + + ETTV America News + (Chinese). + News + + + + My Best Friend's Story + Drama + + + + YOYO Singing & Dance + Music + Performing Arts + + + + No. 57 News King + News + + + + The Ordinary Glory + Drama + + + + Major Crimes + Exploring the art of the deal, as officers and prosecutors work together to score convictions. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Tonight Like War + Variety + + + + EZ News + News + + + TVPG + + + + Life Show + Local + + + + CityNews + News + + + + YOYO Singing & Dance + Music + Performing Arts + + + + News Buzz + News + + + + Taiwan's 1001 Stories + Local + + + + ETTV City News + News + + + + Stock Wave + Business + + + TVPG + + + + The Chinese Restaurant + Local + Reality TV + + + + Travel Together + Local + + + + Retrospective Movie + Regular + + + + The Ordinary Glory + Drama + + + + Tonight Like War + Variety + + + + Love and Destiny + A love story between the God of War and a young fairy maiden who accidentally awakens him. + + Chen Chang + Ni Ni + Zhixi Zhang + + Drama + + + + EZ News + News + + + TVPG + + + + Taiwan's 1001 Stories + Local + + + + ETTV America News + (Chinese). + News + + + + My Best Friend's Story + Drama + + + + The Spirit of Taiwan + Variety + + + TVPG + + + + News Buzz + News + + + + ETTV America News + (Chinese). + News + + + + Eyeshot to the Cross-Strait + Performing Arts + + + TVPG + + + + Eyeshot to the Cross-Strait + Performing Arts + + + TVPG + + + + Life Show + Local + + + + Taiwan Major Crimes + Local + + + + Tonight Like War + Variety + + + + Shiny Food Diary + Variety + + + + Crucial Moment + Regular + + + + ETTV America News + (Chinese). + News + + + + Love and Destiny + A love story between the God of War and a young fairy maiden who accidentally awakens him. + + Chen Chang + Ni Ni + Zhixi Zhang + + Drama + + + + Money Show + Business + + + + Major Crimes + Exploring the art of the deal, as officers and prosecutors work together to score convictions. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + CityNews + News + + + + Let's Cook + Cooking with Purple Iris's Chef. + Food + + + + Breaking News + News + + + + Tonight Like War + Variety + + + + Cross-Straits Economic Reports (ECFA) + Local + + + + EFNC News + Business + + + TVPG + + + + Taiwan's 1001 Stories + Local + + + + No. 57 News King + News + + + + No.57 Dream Boulevard + Business + + + TVPG + + + + Money Show + Business + + + + My Best Friend's Story + Drama + + + + CityNews + News + + + + YOYO Singing & Dance + Music + Performing Arts + + + + Crucial Moment + Regular + + + + The Stories of Lion Rock Spirit + A new generation persevere and exhibit the spirit of Lion Rock when it comes to their career, their future and their relationships. + Drama + + + + Crucial Moment + Regular + + + + Tonight Like War + Variety + + + + Breaking News + News + + + + The Chinese Restaurant + Local + Reality TV + + + + YOYO Singing & Dance + Music + Performing Arts + + + + The Spirit of Taiwan + Variety + + + TVPG + + + + ETTV City News + News + + + + Stock Wave + Business + + + TVPG + + + + Retrospective Movie + Regular + + + + Tonight Like War + Variety + + + + Life Show + Local + + + + Cross-Straits Economic Reports (ECFA) + Local + + + + Tonight Like War + Variety + + + + Love and Destiny + A love story between the God of War and a young fairy maiden who accidentally awakens him. + + Chen Chang + Ni Ni + Zhixi Zhang + + Drama + + + + EZ News + News + + + TVPG + + + + No.57 Dream Boulevard + Business + + + TVPG + + + + My Best Friend's Story + Drama + + + + EZ News + News + + + TVPG + + + + ETTV City News + News + + + + Chic Cities + (Mandarin). + Travel + + + + Taiwan's 1001 Stories + Local + + + + Tonight Like War + Variety + + + + No.57 Dream Boulevard + Business + + + TVPG + + + + ETTV City News + News + + + + The Spirit of Taiwan + Variety + + + TVPG + + + + Girl Power + Specials + Animated + + + + Let's Cook + Cooking with Purple Iris's Chef. + Food + + + + Left & Right + News + + + + ETTV EZ News and ETTV City News + News + + + + Health Class Reunion at Channel 57 + Health + + + + Star Quiz Show + Game Shows + + + + ETTV America News + (Chinese). + News + + + + Left & Right + News + + + + ETTV EZ News and ETTV City News + News + + + + Live Like a Professional + Performing Arts + + + + Sabeth: Blessed Elizabeth of the Trinity + The life, spirituality, and writings of Elizabeth of the Trinity. + Specials + Religious + + + TVG + + + + The Holy Rosary With Mother Angelica + Joyful Mysteries + The Poor Clares of Perpetual Adoration recite the Sorrowful Mysteries of the Rosary. + Religious + + + TVG + + + + Annual Napa Institute Conference + Arthur Brooks and Andrew Abela + Arthur Brooks and Andrew Abela. + Specials + Religious + + + + EWTN Bookmark + New Friends Now And Forever: A Story About The Holy Souls + Host Doug Keck and his guests reveal the lives and works of renowned Catholic authors, unveiling the Christian themes and philosophy that inspired their writing. + Religious + + + TVG + + + + Daily Mass: Olam Daily Mass + The Franciscan Missionaries of the Eternal Word celebrate the Holy Sacrifice of the Mass from the Our Lady of Angels Chapel in Irondale, Ala. + Religious + + + TVG + + + + Father Spitzer's Universe + Answering Viewers Questions + Fr. Spitzer answers viewer questions on a wide range of subjects, including faith, virtue and the existence of God. + Religious + Local + + + TV14 + + + + A Miracle in Lanciano + A one person drama concerning the most ancient and ongoing Eucharist miracle in Church history. + Specials + Religious + + + TVG + + + + All Shall Be Well: The Revelations of Blessed Julian of Norwich + The counsel, ministry, and faith of the 14th Century mystic, Blessed Julian of Norwich, comes to life in this EWTN original docu-drama. + Specials + Religious + + + TVPG + + + + EWTN Live + Steve Ray + Author Steve Ray's new book documents the Papacy and the essential role the Pope has had throughout Catholic history. + Talk Shows + Religious + + + TVG + + + + Sunday Best With Fr. Groeschel + From Death to Life + Some of the most inspirational interviews and discussions the Rev. Benedict Groeschel had throughout his ministry on EWTN. + Religious + + + TVG + + + + Holy Rosary From Lourdes + Pilgrims from around the world gather and pray the Rosary from the Lourdes Grotto in France, site of the famous apparitions by the Blessed Virgin Mary in 1858. + Specials + Religious + + + TVG + + + + Stones and Pearls: The Rosary in the Holy Land + Light Over the Shadow of the Last Days: From the Fourth Luminous Mystery of the Rosary + In the fourth luminous mystery, the Transfiguration of Jesus takes place on Mount Tabor, a site where military battles were waged; the light of Christ is an eternal beacon pointing to God's transcendent, radiant glory. + Specials + Religious + + + TVG + + + + Aid to the Church in Need + Cambodia: Reborn in the Killing Fields + Looking at the Catholic Church as it works to spread the Gospel around the world; during Pol Pot's regime, just under two million Cambodians were murdered, starved or died through illness, and the Catholic Church was practically annihilated. + Religious + + + TVG + + + + Angelus with Pope Francis + Pope Francis leads the world in the recitation of The Angelus. + + Papa Francisco + + Religious + + + TVG + + + + Icons + The Musician + Featuring Basilio Perez. + Religious + + + TVG + + + + The Chaplet of St. Michael + Mother Angelica and the Nuns of Our Lady of the Angels Monastery pray the chaplet of St. Michael. + Religious + + + TVG + + + + Holy Land Rosary + Glorious Mysteries + The Glorious Mysteries of the Rosary from the holy sites and shrines where they took place; with Fr. Pacwa. + Religious + + + TVG + + + + The Litany of the Most Blessed Sacrament + The Franciscan Missionaries of the Eternal Word recite a litany in honor of the Most Blessed Sacrament from the Shrine of the Most Blessed Sacrament in Hanceville, Alabama. + Specials + Religious + + + TVG + + + + Sunday Mass + The Franciscan Missionaries of the Eternal Word celebrate the Holy Sacrifice of the Mass each Sunday from Our Lady of the Angels Chapel. + Religious + + + TVG + + + + The Litany of the Sacred Heart of Jesus + The Franciscan Missionaries of the Eternal Word pray the Litany of the Sacred Heart. + Specials + Religious + + + TVG + + + + Be Lifted Up + Families Matter + Looking at the many ways God touches lives and lifts His children up. See how a relationship is lifted up when lives are submitted to God in faith. See how a new tide of grace raises all boats as they listen to his word and participate in worship. + Religious + + + TVG + + + + EWTN Bookmark + Science At The Doorstep To God + Host Doug Keck and his guests reveal the lives and works of renowned Catholic authors, unveiling the Christian themes and philosophy that inspired their writing. + Religious + + + TVG + + + + EWTN Pro-Life Weekly + Prudence Robertson and a team of pro-life experts discuss abortion, euthanasia, assisted suicide and the culture of death. + Talk Shows + Religious + + + TVPG + + + + EWTN News In-Depth + Roundtable discussions unapologetically examining and analyzing important issues and events from a strictly Catholic perspective. + News + Religious + + + + Sunday Mass + The Franciscan Missionaries of the Eternal Word celebrate the Holy Sacrifice of the Mass each Sunday from Our Lady of the Angels Chapel. + Religious + + + TVG + + + + The Litany of the Sacred Heart of Jesus + The Franciscan Missionaries of the Eternal Word pray the Litany of the Sacred Heart. + Specials + Religious + + + TVG + + + + Annual Napa Institute Conference + Tim Gray, Helen Alvare, And Mary Hasson + The Way, the Truth and the Life was the theme at the 2022 Napa Institute Conference. Relive their uplifting words, as EWTN presents the top Catholic speakers giving their inspirational addresses to a packed audience. + Specials + Religious + + + TVG + + + + Holy Rosary From Lourdes + Pilgrims from around the world gather and pray the Rosary from the Lourdes Grotto in France, site of the famous apparitions by the Blessed Virgin Mary in 1858. + Specials + Religious + + + TVG + + + + Vaticano + The latest news from the Vatican, including excerpts and analysis of the Holy Fathers recent audiences and writings. + Religious + News + + + + Savoring Our Faith + Oberammergau Passion Play + Father Leo Patalinghug explores how the Catholicism and cuisine of the Passion Play continue to preserve time-honored traditions of faith and culture. + Religious + Food + + + TVG + + + + Sunday Vespers With Benediction + The Franciscan Missionaries of the Eternal Word celebrate Vespers and Benediction of the Blessed Sacrament from Our Lady of the Angels Chapel in Irondale, Alabama. + Specials + Religious + + + TVG + + + + Sunday Best With Fr. Groeschel + From Death to Life + Some of the most inspirational interviews and discussions the Rev. Benedict Groeschel had throughout his ministry on EWTN. + Religious + + + TVG + + + + Great Books Every Catholic Should Know + Pride Preceeds a Fall + Author Joseph Pearce examines the works of Homer, including. + Religious + + + TVY + + + + Life on the Rock + Catherine Cheney Pt. 1 + Fr. Mark Mary and his co-host, Doug Barry, host a wide variety of guests, from athletes to actors and everything in between, on this dynamic Christ-centered, youth-oriented live show. + Religious + Local + + + TVG + + + + Sunday Mass + The Franciscan Missionaries of the Eternal Word celebrate the Holy Sacrifice of the Mass each Sunday from Our Lady of the Angels Chapel. + Religious + + + TVG + + + + The Litany of the Sacred Heart of Jesus + The Franciscan Missionaries of the Eternal Word pray the Litany of the Sacred Heart. + Specials + Religious + + + TVG + + + + Annual Napa Institute Conference + Bishop Gregory Mansour, David Bahnsen And Carl Trueman + The Way, the Truth and the Life was the theme at the 2022 Napa Institute Conference. Relive their uplifting words, as EWTN presents the top Catholic speakers giving their inspirational addresses to a packed audience. + Specials + Religious + + + TVG + + + + November Song + A young girl learns a lesson in faith, live and death after witnessing an old woman pray by a gravestone. + Specials + Religious + + + TVG + + + + Franciscan University Presents + Priesthood In The Bible + The scholarly panel of Franciscan University welcomes guest experts to the roundtable. + Talk Shows + Religious + + + TVG + + + + I Forgive, With Immaculée Ilibagiza + Jennifer Hubbard, Pt. 2 + Few parents can overcome the loss of a child, especially in a senseless tragedy like the mass shooting at Sandy Hook Elementary. + Religious + + + + Sunday Mass + The Franciscan Missionaries of the Eternal Word celebrate the Holy Sacrifice of the Mass each Sunday from Our Lady of the Angels Chapel. + Religious + + + TVG + + + + Sunday Mass + The Franciscan Missionaries of the Eternal Word celebrate the Holy Sacrifice of the Mass each Sunday from Our Lady of the Angels Chapel. + Religious + + + TVG + + + + The Litany of the Sacred Heart of Jesus + The Franciscan Missionaries of the Eternal Word pray the Litany of the Sacred Heart. + Specials + Religious + + + TVG + + + + Sabeth: Blessed Elizabeth of the Trinity + The life, spirituality, and writings of Elizabeth of the Trinity. + Specials + Religious + + + TVG + + + + EWTN Religious Catalogue + An assortment of religious articles from around the world. + Religious + Local + + + TVG + + + + MY Lourdes Faith Journey + Christine Marro + Religious + + + TV14 + + + + The Heresies + Post-Modernism + Religious + Documentary + + + + Holy Rosary From Lourdes + Pilgrims from around the world gather and pray the Rosary from the Lourdes Grotto in France, site of the famous apparitions by the Blessed Virgin Mary in 1858. + Specials + Religious + + + TVG + + + + EWTN Bookmark + Science At The Doorstep To God + Host Doug Keck and his guests reveal the lives and works of renowned Catholic authors, unveiling the Christian themes and philosophy that inspired their writing. + Religious + + + TVG + + + + The Catholic View for Women + Faith on the Front Lines + Interviewing with Ann Scheidler, wife of Pro-Life Action League founder Joe Scheidler. + Religious + Talk Shows + + + TVG + + + + Crash Course in Catholicism + Church Law + Explore the inner workings of the Catholic Faith with Fr. John Trigilio and Fr. Ken Brighenti. + Religious + + + TVG + + + + Great Books Every Catholic Should Know + Pride Preceeds a Fall + Author Joseph Pearce examines the works of Homer, including. + Religious + + + TVY + + + + The Chaplet of St. Michael + Mother Angelica and the Nuns of Our Lady of the Angels Monastery pray the chaplet of St. Michael. + Religious + + + TVG + + + + Holy Land Rosary + Joyful Mysteries + Fr. Pacwa leads the Joyful Mysteries of the Rosary from the actual holy sites and shrines where they took place. + Religious + + + TVG + + + + The Litany of the Blessed Virgin Mary + A beautiful prayer in honor of the Blessed Virgin Mary from the Shrine of the Most Blessed Sacrament in Hanceville, Alabama. + Specials + Religious + + + TVG + + + + Daily Mass: Olam Daily Mass + The Franciscan Missionaries of the Eternal Word celebrate the Holy Sacrifice of the Mass from the Our Lady of Angels Chapel in Irondale, Ala. + Religious + + + TVG + + + + Living Divine Mercy + Dangers Of New Age Practices + From the Shrine of Divine Mercy in Stockbridge, Massachusetts, EWTN and the Marian Fathers present a weekly program featuring messages. + Religious + + + TVG + + + + Sunday Best With Fr. Groeschel + From Death to Life + Some of the most inspirational interviews and discussions the Rev. Benedict Groeschel had throughout his ministry on EWTN. + Religious + + + TVG + + + + EWTN Religious Catalogue + An assortment of religious articles from around the world. + Religious + Local + + + TVG + + + + Sunday Best With Fr. Groeschel + From Death to Life + Some of the most inspirational interviews and discussions the Rev. Benedict Groeschel had throughout his ministry on EWTN. + Religious + + + TVG + + + + EWTN Religious Catalogue + An assortment of religious articles from around the world. + Religious + Local + + + TVG + + + + Rise and Fall of Ancient Israel + Rehoboam + Tracing the events that led to the division of the Ancient Kingdom of Israel. + Religious + History + + + TVG + + + + Holy Mass From Nazareth + Live from the Shrine of the Annunciation in the Holy Land. + Specials + + + + Women of Grace + Beloved and Blessed With Kimberly Hahn, Pt. 1 + For more than 30 years, Kimberly Hahn has led engaging Bible studies on the vocation of marriage; she joins Johnnette to explain how Proverbs 31 serves as the framework for her important apostolic work. + Religious + Local + + + TVPG + + + + At Home With Jim and Joy + Jim and Joy Call-In + Jim and Joy answer viewer calls, questions and emails from the Pinto house. + Religious + Local + + + TVG + + + + Called to Communion With Dr. David Anders + Marriage Convalidation + Catholic catechist, writer and speaker, Dr. David Anders answers questions. + Religious + + + TVG + + + + The Chaplet of Divine Mercy + Devotional prayer from the chapel of the National Shrine of the Divine Mercy in Stockbridge, Mass. + Religious + + + TVG + + + + Live Adoration From EWTN Chapel + Religious + + + TVG + + + + The Holy Rosary With Mother Angelica + Joyful Mysteries + The Poor Clares of Perpetual Adoration recite the Sorrowful Mysteries of the Rosary. + Religious + + + TVG + + + + Catholics Come Home + Presbyterian Golfer Turns Catholic Evangelist + Each episode features an interview with someone who recently returned to Jesus and the Catholic Church as a result of Catholics Come Home and responding to the call of the Holy Spirit. + Religious + + + TVG + + + + The Massterpiece Donut Shop + The All-Music Show: Bible Stories + Rob Evans and Duncan the Donut help children explore the Mass step-by-step with fun songs, meaningful lessons and a little help from their neighbor, Fr. Joe. + Religious + Children + + + TVG + + + + EWTN Bookmark + Science At The Doorstep To God + Host Doug Keck and his guests reveal the lives and works of renowned Catholic authors, unveiling the Christian themes and philosophy that inspired their writing. + Religious + + + TVG + + + + Miracle of Champion + The history behind the Shrine of Our Lady of Good Help in Champion, Wisconsin, and the miraculous favors pilgrims have experienced there. + Specials + Religious + + + TVG + + + + EWTN News Nightly + Daily news and analysis, from Washington, D.C. + News + Religious + + + TVG + + + + Life Is Worth Living + The Meaning of Love + Archbishop Sheen discusses the rules for loving. + Religious + + + TVG + + + + Daily Mass: Olam Daily Mass + The Franciscan Missionaries of the Eternal Word celebrate the Holy Sacrifice of the Mass from the Our Lady of Angels Chapel in Irondale, Ala. + Religious + + + TVG + + + + The Journey Home + Lawain Mcneil + Marcus Grodi discusses journeys back to the Roman Catholic Church. + Religious + Talk Shows + + + TVG + + + + EWTN News Nightly + Daily news and analysis, from Washington, D.C. + News + Religious + + + TVG + + + + The Holy Rosary With Mother Angelica + Joyful Mysteries + The Poor Clares of Perpetual Adoration recite the Sorrowful Mysteries of the Rosary. + Religious + + + TVG + + + + World Over Live + Gov. Mike Dewine, Cardinal Gerhard MÜller And Robert Royal + Host Raymond Arroyo and his guests offer a Christian perspective on breaking news. + Religious + News + + + + Women of Grace + Beloved and Blessed With Kimberly Hahn, Pt. 1 + For more than 30 years, Kimberly Hahn has led engaging Bible studies on the vocation of marriage; she joins Johnnette to explain how Proverbs 31 serves as the framework for her important apostolic work. + Religious + Local + + + TVPG + + + + Real Life Catholic + Beyond the Wild, Pt. 2 + After a flooded engine leaves them stranded, Chris Stefanick and Catholic survivalist Will Hince journey through the wilderness; later, Chris witnesses the hunting power of a full-grown hawk. + Religious + + + TVPG + + + + Daily Mass: Olam Daily Mass + The Franciscan Missionaries of the Eternal Word celebrate the Holy Sacrifice of the Mass from the Our Lady of Angels Chapel in Irondale, Ala. + Religious + + + TVG + + + + The Journey Home + Lawain Mcneil + Marcus Grodi discusses journeys back to the Roman Catholic Church. + Religious + Talk Shows + + + TVG + + + + EWTN News Nightly + Daily news and analysis, from Washington, D.C. + News + Religious + + + TVG + + + + Miracle of Champion + The history behind the Shrine of Our Lady of Good Help in Champion, Wisconsin, and the miraculous favors pilgrims have experienced there. + Specials + Religious + + + TVG + + + + Franciscan University Presents + Priesthood In The Bible + The scholarly panel of Franciscan University welcomes guest experts to the roundtable. + Talk Shows + Religious + + + TVG + + + + Lamb's Supper + Real Presence and the Second Coming + Scott Hahn and Mike Aquilina discuss how God is with us now on Earth under the appearance of Bread and Wine in the Blessed Sacrament. + Religious + + + TVG + + + + Holy Rosary From Lourdes + Pilgrims from around the world gather and pray the Rosary from the Lourdes Grotto in France, site of the famous apparitions by the Blessed Virgin Mary in 1858. + Specials + Religious + + + TVG + + + + The Philosopher's Bench + The Humanities + Dr. Kreeft and Dr. Howard advocate that art, music, and other subjects are vital to our human identity. + Religious + + + TVG + + + + Life Is Worth Living + The Meaning of Love + Archbishop Sheen discusses the rules for loving. + Religious + + + TVG + + + + Crash Course in Catholicism + Vice & Virtue + Explore the inner workings of the Catholic Faith with Fr. John Trigilio and Fr. Ken Brighenti. + Religious + + + TVG + + + + Church and the Poor - the Encounter + Authentic Christianity + Seminarians from Mount St. Mary receive a new kind of learning experience from outside the classroom as they assist the Missionaries of the Poor. + Religious + + + TVG + + + + The Chaplet of St. Michael + Mother Angelica and the Nuns of Our Lady of the Angels Monastery pray the chaplet of St. Michael. + Religious + + + TVG + + + + Holy Land Rosary + Sorrowful Mysteries + Fr. Pacwa leads the Sorrowful Mysteries of the Rosary from the actual holy sites and shrines where they took place. + Religious + + + TVG + + + + The Litany of the Most Holy Name of Jesus + From the Shrine of the Most Blessed Sacrament in Hanceville, Alabama, the Franciscan Missionaries of the Eternal Word lead this inspirational prayer invoking the Holy Name of Jesus. + Specials + Religious + + + TVG + + + + Daily Mass: Olam Daily Mass + The Franciscan Missionaries of the Eternal Word celebrate the Holy Sacrifice of the Mass from the Our Lady of Angels Chapel in Irondale, Ala. + Religious + + + TVG + + + + The Doctors of the Church + St. Robert Bellarmine, Pt. 1 + Dr. Matthew Bunson explores the lives of the Doctors of the Church, including St. Augustine, St. Francis de Sales, and St. Teresa of Avila; during a time of great division, Robert Bellarmine defended Church. + Religious + + + TVG + + + + Living Right With Dr. Ray + High School Rules + Clinical psychologist Dr. Ray Guarendi offers advice on parenting and marriage. + Religious + + + TVPG + + + + Mother Angelica Live Classics + Pumpkins and Politics + Mother says that we should always vote for life and politicians should be concerned not only about our earthly lives, but also our spiritual lives. + Religious + + + TVG + + + + Way To Follow Jesus + How Long Will They Not Believe? + The problem of hardness of heart. + Religious + + + TVG + + + + Daily Mass: Olam Daily Mass + The Franciscan Missionaries of the Eternal Word celebrate the Holy Sacrifice of the Mass from the Our Lady of Angels Chapel in Irondale, Ala. + Religious + + + TVG + + + + Women of Grace + Beloved and Blessed With Kimberly Hahn, Pt. 2 + Kimberly Hahn discusses her rewarding experiences leading Bible studies in her home for the past 30 years, and the fruit it has borne in her marriage as well as for the matrimonial candidates she counsels. + Religious + Local + + + TVPG + + + + EWTN Pro-Life Weekly + Prudence Robertson and a team of pro-life experts discuss abortion, euthanasia, assisted suicide and the culture of death. + Talk Shows + Religious + + + TVPG + + + + Scripture and Tradition With Fr. Mitch Pacwa + Wheat and Tares Pt. 31 + Fr. Mitch Pacwa analyzes church traditions and teachings in light of scripture. + Religious + + + TVG + + + + The Chaplet of Divine Mercy + Devotional prayer from the chapel of the National Shrine of the Divine Mercy in Stockbridge, Mass. + Religious + + + TVG + + + + Live Adoration From EWTN Chapel + Religious + + + TVG + + + + The Holy Rosary With Mother Angelica + Sorrowful Mysteries + The Poor Clares of Perpetual Adoration recite the Sorrowful Mysteries of the Rosary. + Religious + + + TVG + + + + Children's Rosary + Children's Rosary: Sorrowful Mysteries + Children congregate to pray and learn more about the five Sorrowful Mysteries of the Rosary: the Agony in the Garden, the Scourging at the Pillar, the Crowning of Thorns, the Carrying of the Cross, and the Crucifixion. + Religious + + + TVG + + + + Adventure Catechism + What Is Confession? What Is Penance? + Religious + Children + + + TVG + + + + Lukas Storyteller + Padre Pio and the Power of a Clean Soul + Forced to withdraw from the talent contest, an injured Paul learns about Padre Pio's story and gains insight what a clean soul is capable of. + + Allan S. Ross + Alisha Soto-Lewis + + Animated + Children + + + TVG + + + + The Choices We Face + More Than Conquerors + Heather Khym speaks at the Lift Jesus Higher Rally, an annual event for youth and adults focused on evangelizing; she tells the audience about our deep need for Jesus to help us be exceptionally victorious in hardship. + Religious + + + TVG + + + + The Monastic Voice - A Sequel + A further look into the Benedictine Rule and what it is like to be a monk at Pluscarden. + Specials + Religious + + + TVG + + + + EWTN News Nightly + Daily news and analysis, from Washington, D.C. + News + Religious + + + TVG + + + + I Forgive, With Immaculée Ilibagiza + Jennifer Hubbard, Pt. 2 + Few parents can overcome the loss of a child, especially in a senseless tragedy like the mass shooting at Sandy Hook Elementary. + Religious + + + + Daily Mass: Olam Daily Mass + The Franciscan Missionaries of the Eternal Word celebrate the Holy Sacrifice of the Mass from the Our Lady of Angels Chapel in Irondale, Ala. + Religious + + + TVG + + + + Mother Angelica Live Classics + Anima Christi + Mother Angelica goes through the Anima Christi or Soul of Christ, a prayer often said after Holy Communion. + Religious + + + TVG + + + + EWTN News Nightly + Daily news and analysis, from Washington, D.C. + News + Religious + + + TVG + + + + The Holy Rosary With Mother Angelica + Sorrowful Mysteries + The Poor Clares of Perpetual Adoration recite the Sorrowful Mysteries of the Rosary. + Religious + + + TVG + + + + Scripture and Tradition With Fr. Mitch Pacwa + Wheat and Tares Pt. 31 + Fr. Mitch Pacwa analyzes church traditions and teachings in light of scripture. + Religious + + + TVG + + + + Women of Grace + Beloved and Blessed With Kimberly Hahn, Pt. 2 + Kimberly Hahn discusses her rewarding experiences leading Bible studies in her home for the past 30 years, and the fruit it has borne in her marriage as well as for the matrimonial candidates she counsels. + Religious + Local + + + TVPG + + + + Cross Training + Stress + The benefits of exercise, prayer and good nutrition can help aid in handling stress. + Religious + Health + + + TVG + + + + Daily Mass: Olam Daily Mass + The Franciscan Missionaries of the Eternal Word celebrate the Holy Sacrifice of the Mass from the Our Lady of Angels Chapel in Irondale, Ala. + Religious + + + TVG + + + + Mother Angelica Live Classics + Pumpkins and Politics + Mother says that we should always vote for life and politicians should be concerned not only about our earthly lives, but also our spiritual lives. + Religious + + + TVG + + + + EWTN News Nightly + Daily news and analysis, from Washington, D.C. + News + Religious + + + TVG + + + + The Monastic Voice - A Sequel + A further look into the Benedictine Rule and what it is like to be a monk at Pluscarden. + Specials + Religious + + + TVG + + + + Gospel Glimpses + Cloistered Nun and Monks + The reason why cloistered nuns and monks give up their worldly possessions to devote themselves 24/7 to God is because the first duty of all people is communion with God, and he deserves to have people give him full-time attention. + Religious + + + + Papal Audience + From the Vatican, Pope Francis delivers his weekly address to the faithful. + Specials + Religious + + + + Reflections With Fr. Leo Clifford + Heart of God + Jesus became man to redeem us. + Religious + + + TVG + + + + Holy Rosary From Lourdes + Pilgrims from around the world gather and pray the Rosary from the Lourdes Grotto in France, site of the famous apparitions by the Blessed Virgin Mary in 1858. + Specials + Religious + + + TVG + + + + Dominican Sisters of Mary, Mother of the Eucharist + Modeling Mind & Heart Catechesis, Pt. 2 + The Dominican Sisters of Mary explore their own calls to religious life, interview Catholics about their faith journeys, and discuss the formation of virtues in children. + Religious + + + TVG + + + + Walsingham Stories + Baroness Rosario De Mandat-grancey + Religious + + + + Crash Course in Catholicism + Mary + Explore the inner workings of the Catholic Faith with Fr. John Trigilio and Fr. Ken Brighenti. + Religious + + + TVG + + + + Explore With the Miracle Hunter + San Giovanni Rotondo + Miracle hunter Michael O'Neill journeys to miracle sites to introduce viewers to these major events in church history and the saints who lived them. + Religious + Documentary + + + TVG + + + + The Chaplet of St. Michael + Mother Angelica and the Nuns of Our Lady of the Angels Monastery pray the chaplet of St. Michael. + Religious + + + TVG + + + + Holy Land Rosary + Glorious Mysteries + The Glorious Mysteries of the Rosary from the holy sites and shrines where they took place; with Fr. Pacwa. + Religious + + + TVG + + + + The Litany of Saint Joseph + An inspirational litany asking for the prayers of Saint Joseph from the Shrine of the Most Blessed Sacrament in Hanceville, Alabama. + Specials + Religious + + + TVG + + + + Daily Mass: Olam Daily Mass + The Franciscan Missionaries of the Eternal Word celebrate the Holy Sacrifice of the Mass from the Our Lady of Angels Chapel in Irondale, Ala. + Religious + + + TVG + + + + They Might Be Saints + Rhoda Wise + In Canton, OH., Rhoda Wise was known as a mystic with healing miracles, one of them experienced by Rita Rizzo, the future Mother Angelica; Michael O'Neill relates her story. + Religious + Documentary + + + TVPG + + + + Scripture and Tradition With Fr. Mitch Pacwa + Wheat and Tares Pt. 31 + Fr. Mitch Pacwa analyzes church traditions and teachings in light of scripture. + Religious + + + TVG + + + + Mother Angelica Live Classics + Anima Christi + Mother Angelica goes through the Anima Christi or Soul of Christ, a prayer often said after Holy Communion. + Religious + + + TVG + + + + St. Luke's Gospel + The Revelation on Mount Tabor and the Mission of the Apostles + Scripture Scholar Frances Hogan looks at St. Luke's interpretation of the passages where Christ reveals to his disciples that he must suffer and die to redeem humanity. + Religious + + + TVG + + + + Daily Mass: Olam Daily Mass + The Franciscan Missionaries of the Eternal Word celebrate the Holy Sacrifice of the Mass from the Our Lady of Angels Chapel in Irondale, Ala. + Religious + + + TVG + + + + Women of Grace + What in the World With Monsignor Eugene Morris, Part 1 + Our society is one that values toughness; Msgr. Eugene Morris discusses what it means to be tough in a Catholic sense yet remain compassionate. + Religious + Local + + + TVPG + + + + At Home With Jim and Joy + Fr. Richard Ho Lung + Dynamic husband and wife radio team Jim and Joy Pinto bring their powerful witness to daytime TV with special guests and topics focusing on marriage, family, and pro-life issues. + Religious + Local + + + TVG + + + + Father Spitzer's Universe + The Moral Wisdom of the Catholic Church Pt. 17 + Fr. Spitzer answers viewer questions on a wide range of subjects, including faith, virtue and the existence of God. + Religious + Local + + + TVG + + + + The Chaplet of Divine Mercy + Devotional prayer from the chapel of the National Shrine of the Divine Mercy in Stockbridge, Mass. + Religious + + + TVG + + + + Live Adoration From EWTN Chapel + Religious + + + TVG + + + + The Holy Rosary With Mother Angelica + Glorious Mysteries + The Poor Clares of Perpetual Adoration recite the Sorrowful Mysteries of the Rosary. + Religious + + + TVG + + + + The Unsolvable Problem + Sr. Mary Andy and her convent of sisters encounter a dilemma as they plan a patriotic picnic for the poor; the kids learn about convent life, prayers to Jesus and how to handle lifes problems, big and small. + Specials + Children + + + + Saints and Heroes + Juan Diego: Messenger of Guadalupe + The Blessed Mother appears to a simple man of faith, choosing him to help unite diverse peoples. + Religious + Children + + + TVY + + + + EWTN Religious Catalogue + An assortment of religious articles from around the world. + Religious + Local + + + TVG + + + + Mother Mary Alphonsa: Servant of God + Author Nathaniel Hawthorne's daughter Rose escaped an abusive marriage, converted to Catholicism and went on to found an order of Dominican Sisters as Mother Mary Alphonsa. + Specials + Religious + + + TVG + + + + EWTN News Nightly + Daily news and analysis, from Washington, D.C. + News + Religious + + + TVG + + + + Living Divine Mercy + The Bible: A Catholic Book + From the Shrine of Divine Mercy in Stockbridge, Massachusetts, EWTN and the Marian Fathers. + Religious + + + TVG + + + + Alpha Alert + Three soldiers get trapped in an elevator when terrorists set off a dirty bomb; after one escapes, her world turns upside down when she realizes that nothing is what it seems to be. + + Jennifer Morrison + James Frain + Josh Stewart + + 2013 + Movies + Thriller + + + + SEAL Patrol + Retired special forces operatives are hired to rescue a physicist and are ambushed by an extradimensional creature that mutates its victims. The team is forced to develop a new way to battle the creature to make it out of the building alive. + + Eric Roberts + Kristina Anapau + James C. Burns + + 2014 + Movies + Action + + + + Cell + A graphic novelist (John Cusack) begins a desperate search for his estranged wife (Clark Sarullo) and son (Ethan Andrew Casto) after a mysterious cellphone signal transforms New Englanders into savage killers. + + John Cusack + Samuel L. Jackson + Isabelle Fuhrman + + 2016 + Movies + Horror + + + TVPG + + + 1 + + + + Arachnid + A pilot (Alex Reid) and her crew (Chris Potter, Neus Asensi) encounter giant spiders while searching for her brother on an island. + + Alex Reid + Chris Potter + Neus Asensi + + 2001 + Movies + Horror + + + 2 + + + + Arachnid + A pilot (Alex Reid) and her crew (Chris Potter, Neus Asensi) encounter giant spiders while searching for her brother on an island. + + Alex Reid + Chris Potter + Neus Asensi + + 2001 + Movies + Horror + + + 2 + + + + Lucha Underground + The Gift That Keeps on Giving + A new Gift of the Gods Champion is crowned; Mariposa motivates her broken-armed brother Marty. + + Luis Fernandez-Gil + Rick Diaz + Karlee Perez + + Sports + Wrestling + + + TV14 + + + + Lucha Underground + Til Death Do Us Part + Johnny Mundo and Taya get married and their nuptials are filled with lots of surprises; XO Lishus takes on Jack Evans in a. + + Luis Fernandez-Gil + Rick Diaz + Karlee Perez + + Sports + Wrestling + + + TV14 + + + + Lucha Underground + Last Man or Machine Standing + Pentagon Dark battles Cage for the Lucha Underground Championship; The Mack vs. Mil Muertes in the first ever Haunted House Match; Johnny and Taya have a wedding shower; Rosa continues to have an influence on Ricky. + + Luis Fernandez-Gil + Rick Diaz + Karlee Perez + + Sports + Wrestling + + + TV14 + + + + Vampiro Unleashed + The Importance of LatinX Films + Vampiro and his guest, Mariana Da Silva, speak about the importance of learning about LatinX culture and history through watching and studying LatinX films. + Talk Shows + Sports + + + + Vampiro Unleashed + Overcoming Self-Hate + Vampiro and his guest, writer/executive director Rafael Agustin, talk about overcoming self-hate and how to foster artistic talent in the LatinX community. + Talk Shows + Sports + + + + Vampiro Unleashed + Self-Defense + Vampiro and his guest Diana Lee Inosanto (Bruce Lee's Goddaughter) discuss self-defense and his biggest moral dilemma in the wrestling ring that forever changed his life. + Talk Shows + Sports + + + + Lucha Underground + A Snake Scorned + Paul London attempts to satisfy the White Rabbit; tensions between the Trios Champions are at an all-time high as they are forced to defend their titles against a dangerous opponent; Cage and Pentagon Dark's conflict explodes. + + Luis Fernandez-Gil + Rick Diaz + Karlee Perez + + Sports + Wrestling + + + TV14 + + + + Lucha Underground + A Match Made in Heaven + Mariposa makes a proposal to Antonio Cueto; Paul London makes an offering to the Gods on behalf of the White Rabbit; The Worldwide Underground take on The Reptile Tribe in an Atomicos Match; if the Reptiles win, Johnny must join them. + + Luis Fernandez-Gil + Rick Diaz + Karlee Perez + + Sports + Wrestling + + + TV14 + + + + Lucha Underground + The Ranks of the Reptiles + The rivalry between the Worldwide Underground and the Reptile Tribe escalates and the stakes are raised in the war between the two factions; The Mack suffers a haunting experience; Pentagon and Cage must find partners. + + Luis Fernandez-Gil + Rick Diaz + Karlee Perez + + Sports + Wrestling + + + TV14 + + + + In the Shadows + A hit man (Matthew Modine) falls for the daughter of the man (James Caan) he is supposed to kill for a mobster. + + James Caan + Cuba Gooding Jr. + Matthew Modine + + 2001 + Movies + Thriller + + + TVPG + + + 2 + + + + Toxic + A beautiful mental patient embarks on a killing spree after she learns about a bounty on her head. + + Susan Ward + Corey Large + Master P + + 2008 + Movies + Thriller + + + + The Killing Machine + A former assassin (Dolph Lundgren) must protect his family when he becomes a target himself. + + Dolph Lundgren + Katelyn Mager + Lindsay Maxwell + + 2010 + Movies + Action + + + TVPG + + + + Kickboxer + An American kickboxer (Jean-Claude Van Damme) trains with an Asian master (Dennis Chan) to avenge his crippled brother (Dennis Alexio) in Thailand. + + Jean-Claude Van Damme + Dennis Alexio + Dennis Chan + + 1989 + Movies + Action + + + TVPG + + + 2 + + + + Kickboxer 2: The Road Back + Asian villains pick a fight with a Los Angeles kickboxer (Sasha Mitchell) whose brother beat them in Bangkok. + + Sasha Mitchell + Peter Boyle + Dennis Chan + + 1991 + Movies + Drama + + + TVPG + + + 1 + + + + Kickboxer 3: The Art of War + A Los Angeles martial artist (Sasha Mitchell) goes to Rio de Janeiro and fights to save a girl from a drug lord. + + Sasha Mitchell + Dennis Chan + Richard Comar + + 1992 + Movies + Action + + + TV14 + + + 1 + + + + Kickboxer 4: The Aggressor + The DEA pits a Los Angeles martial artist (Sasha Mitchell) against a drug lord holding his wife prisoner in Mexico. + + Sasha Mitchell + Kamel Krifia + Brad Thornton + + 1994 + Movies + Adventure + + + TV14 + + + 1 + + + + Kickboxer 5: The Redemption + An American kickboxer (Mark Decascos) heads to South Africa to find the promoter (James Ryan) responsible for the deaths of two friends. + + James Ryan + Mark Decascos + Geoff Meed + + 1995 + Movies + Drama + + + TVG + + + 1 + + + + Tekken + Jin (Jon Foo) trains to fight Anvil after he witnesses him murdering his mother. + + Jon Foo + Kelly Overton + Cary-Hiroyuki Tagawa + + 2010 + Movies + Action + + + TVPG + + + + The Tournament + Top assassins (Ian Somerhalder, Robert Carlyle, Ving Rhames) gather for a competition where the last one alive wins a cash prize. + + Ian Somerhalder + Robert Carlyle + Ving Rhames + + 2009 + Movies + Action + + + TV14 + + + + The Tournament + Top assassins (Ian Somerhalder, Robert Carlyle, Ving Rhames) gather for a competition where the last one alive wins a cash prize. + + Ian Somerhalder + Robert Carlyle + Ving Rhames + + 2009 + Movies + Action + + + TV14 + + + + Lucha Underground + The Gift That Keeps on Giving + A new Gift of the Gods Champion is crowned; Mariposa motivates her broken-armed brother Marty. + + Luis Fernandez-Gil + Rick Diaz + Karlee Perez + + Sports + Wrestling + + + TV14 + + + + Lucha Underground + Til Death Do Us Part + Johnny Mundo and Taya get married and their nuptials are filled with lots of surprises; XO Lishus takes on Jack Evans in a. + + Luis Fernandez-Gil + Rick Diaz + Karlee Perez + + Sports + Wrestling + + + TV14 + + + + Lucha Underground + Last Man or Machine Standing + Pentagon Dark battles Cage for the Lucha Underground Championship; The Mack vs. Mil Muertes in the first ever Haunted House Match; Johnny and Taya have a wedding shower; Rosa continues to have an influence on Ricky. + + Luis Fernandez-Gil + Rick Diaz + Karlee Perez + + Sports + Wrestling + + + TV14 + + + + Vampiro Unleashed + Living With No Fear + Vampiro and his guest, Mexican journalist Carola Guerrero, chat about corruption in her country; Carola and Vampiro also talk about toppling the patriarchy and chauvinism in Latin America. + Talk Shows + Sports + + + + Vampiro Unleashed + The Impact of Latinx Music + Vampiro and TV host Pili Montilla talk about the popularity and impact of Latinx music.Guests: Pili Montilla.. + Talk Shows + Sports + + + + Vampiro Unleashed + Latinos & Politics + Latinos are the largest ethnic voter base in the United States; political commentator Maria Cardona discusses the myths regarding, and the role of, Latinos in U.S. politics. + Talk Shows + Sports + + + + Vampiro Unleashed + The Latino Idenity in American Society + US Latino Identity Vampiro and his guest, CEO of the Hispanic Heritage Foundation Antonio Tijerino, examine the Latino Identity in the United States and being comfortable as a Latino in American Society. + Talk Shows + Sports + + + + Vampiro Unleashed + Women Protecting Themselves + Vampiro is joined by filmmaker Issa Lopez to talk about the importance of self-defense for women; Vampiro explains how he taught womens' self-defense for free.Guests: Issa López.. + Talk Shows + Sports + + + + Lucha Underground + A Match Made in Heaven + Mariposa makes a proposal to Antonio Cueto; Paul London makes an offering to the Gods on behalf of the White Rabbit; The Worldwide Underground take on The Reptile Tribe in an Atomicos Match; if the Reptiles win, Johnny must join them. + + Luis Fernandez-Gil + Rick Diaz + Karlee Perez + + Sports + Wrestling + + + TV14 + + + + Lucha Underground + A Snake Scorned + Paul London attempts to satisfy the White Rabbit; tensions between the Trios Champions are at an all-time high as they are forced to defend their titles against a dangerous opponent; Cage and Pentagon Dark's conflict explodes. + + Luis Fernandez-Gil + Rick Diaz + Karlee Perez + + Sports + Wrestling + + + TV14 + + + + Lucha Underground + Last Man or Machine Standing + Pentagon Dark battles Cage for the Lucha Underground Championship; The Mack vs. Mil Muertes in the first ever Haunted House Match; Johnny and Taya have a wedding shower; Rosa continues to have an influence on Ricky. + + Luis Fernandez-Gil + Rick Diaz + Karlee Perez + + Sports + Wrestling + + + TV14 + + + + Crackerjack + A Chicago policeman (Thomas Ian Griffith) stops a mercenary (Christopher Plummer) and his team from robbing a Rocky Mountain resort. + + Thomas Ian Griffith + Nastassja Kinski + Christopher Plummer + + 1994 + Movies + Action + + + 2 + + + + Crackerjack 2 + A hostage crisis becomes personal for a tough policeman (Carol Alt) upon learning his girlfriend (Michael Sarrazin) is a prisoner. + + Judge Reinhold + Carol Alt + Michael Sarrazin + + 1997 + Movies + Crime Story + + + 1 + + + + Crackerjack 3 + A retired agent unites with his former enemies to thwart a CIA director's plan to cause a global economic collapse. + + Bo Svenson + Olivier Gruner + Leo Rossi + + 2000 + Movies + Action + + + + Ticker + A renegade cop (Tom Sizemore) teams with an explosives expert (Steven Seagal) in order to stop a mad bomber (Dennis Hopper) in Los Angeles. + + Tom Sizemore + Dennis Hopper + Steven Seagal + + 2001 + Movies + Action + + + TVPG + + + 1 + + + + Sinners and Saints + Detective Sean Riley (Johnny Strong) uncovers a shocking military conspiracy as he investigates grisly torture murders. The case triggers a war between international mercenaries and local gangs leaving him caught in the middle. + + Johnny Strong + Kevin Phillips + Costas Mandylor + + 2010 + Movies + Action + + + TVPG + + + + Once Upon a Time in Brooklyn + Newly released from prison, a man (William DeMeo) scoffs at the chance to earn an honest living in his father's construction business; instead he returns to a life of crime. + + Armand Assante + William DeMeo + Cathy Moriarty + + 2013 + Movies + Crime Story + + + 2 + + + + London Heist + A criminal goes on the warpath after his heist money is stolen and his father is murdered. + + Craig Fairbrass + James Cosmo + Mem Ferda + + 2016 + Movies + Action + + + + Gun Shy + An aging rock star takes his pampered wife on an exotic luxury holiday to Chile only for her to be snatched by a group of renegade buccaneers. He embarks on a rescue mission through the jungles of South America to find her. + + Antonio Banderas + Olga Kurylenko + Ben Cura + + 2017 + Movies + Comedy + + + TVPG + + + + Octane + A young man (Karl Davies) and his gang of car racers live life in the fast lane by challenging fearless rivals. + + Karl Davies + Lauren Steventon + Layke Anderson + + 2007 + Movies + Action + + + TVPG + + + + Octane + A young man (Karl Davies) and his gang of car racers live life in the fast lane by challenging fearless rivals. + + Karl Davies + Lauren Steventon + Layke Anderson + + 2007 + Movies + Action + + + TVPG + + + + Lucha Underground + A Match Made in Heaven + Mariposa makes a proposal to Antonio Cueto; Paul London makes an offering to the Gods on behalf of the White Rabbit; The Worldwide Underground take on The Reptile Tribe in an Atomicos Match; if the Reptiles win, Johnny must join them. + + Luis Fernandez-Gil + Rick Diaz + Karlee Perez + + Sports + Wrestling + + + TV14 + + + + Lucha Underground + A Snake Scorned + Paul London attempts to satisfy the White Rabbit; tensions between the Trios Champions are at an all-time high as they are forced to defend their titles against a dangerous opponent; Cage and Pentagon Dark's conflict explodes. + + Luis Fernandez-Gil + Rick Diaz + Karlee Perez + + Sports + Wrestling + + + TV14 + + + + Lucha Underground + Last Man or Machine Standing + Pentagon Dark battles Cage for the Lucha Underground Championship; The Mack vs. Mil Muertes in the first ever Haunted House Match; Johnny and Taya have a wedding shower; Rosa continues to have an influence on Ricky. + + Luis Fernandez-Gil + Rick Diaz + Karlee Perez + + Sports + Wrestling + + + TV14 + + + + Brawl + Mike, a former boxer, moves to Thailand to start over. Mike is robbed and left with nothing until Yo, a Muay Thai boxer, takes him to an underground fight club to make money. + + Jakkrit Kanokpodjananon + Jirantanin Pitakpohntrakul + Jawed El Berni + + 2012 + Movies + Action + + + + El Rey Nation + Spurs and Swords + The gang compares Samurai films and Westerns before listing the TV shows that defined their decades. + Christmas + Performing Arts + + + TV14 + + + + El Rey Nation + Musicals With Issues + The group discusses what they can take or leave from musicals and looks at memorable first issues of comic books. + Christmas + Performing Arts + + + TV14 + + + + El Rey Nation + Industry Authority + Films about filmmaking are discussed before a debate on the necessity of the Comics Code Authority. + Christmas + Performing Arts + + + TV14 + + + + The Chuey Martinez Show + A-Holes! + Chuey is joined by actress Cristina Vee and radio host B. Woods to talk about the weird place Jade Eggs can go and also play a reimagined game of cornhole.Guests: Cristina Valenzuela.. + Talk Shows + Comedy + + + TV14 + + + + The Chuey Martinez Show + Sick Burns + Chuey invites rapper Jenn Morel and comic Andrew Santiago to join him as they roast each other's baby photos and share insane kitchen hacks.Guests: Jenn Morel, Andrew Santiago.. + Talk Shows + Comedy + + + TV14 + + + + The Chuey Martinez Show + Why Chu Lyin? + Chuey is joined by Somaya Reece and Jesus Sepulveda as they battle each other in a game of lies withGuests: Somaya Reece, Jesús Sepúlveda.. + Talk Shows + Comedy + + + TV14 + + + + Black Water + A deep cover operative awakens to find himself imprisoned on a submarine. With the help of a fellow prisoner and an amateur agent, he must race against the clock to escape the vessel and expose who set him up. + + Jean-Claude Van Damme + Dolph Lundgren + Patrick Kilpatrick + + 2018 + Movies + Action + + + TVPG + + + + In the Shadows + A hit man (Matthew Modine) falls for the daughter of the man (James Caan) he is supposed to kill for a mobster. + + James Caan + Cuba Gooding Jr. + Matthew Modine + + 2001 + Movies + Thriller + + + TVPG + + + 2 + + + + Kickboxer + An American kickboxer (Jean-Claude Van Damme) trains with an Asian master (Dennis Chan) to avenge his crippled brother (Dennis Alexio) in Thailand. + + Jean-Claude Van Damme + Dennis Alexio + Dennis Chan + + 1989 + Movies + Action + + + TVPG + + + 2 + + + + Pay Back + An ex-con (Louis Fan Siu-Wong) finds his past catching up with him when he gets caught in the middle of a gang war. + + Louis Fan Siu-Wong + Francis Ng + Suet Lam + + 2013 + Movies + Action + + + + The Killing Machine + A former assassin (Dolph Lundgren) must protect his family when he becomes a target himself. + + Dolph Lundgren + Katelyn Mager + Lindsay Maxwell + + 2010 + Movies + Action + + + TVPG + + + + The Heavy + The sibling rivalry between two brothers comes to a head when one is given a chance to take revenge on the other. + + Gary Stretch + Vinnie Jones + Stephen Rea + + 2010 + Movies + Thriller + + + TVPG + + + 2 + + + + Assassins Run + Maya's husband is murdered by the Russian mafia after financial documents go missing. Corrupt cops frame her and she is sent to prison -- when she is released her daughter is kidnapped and she has to fight to save them both. + + Christian Slater + Sofya Skya + Cole Hauser + + 2012 + Movies + Thriller + + + TVPG + + + + Raw Deal + A former FBI agent (Arnold Schwarzenegger) infiltrates the biggest mob in Chicago and single-handedly wipes it out. + + Arnold Schwarzenegger + Kathryn Harrold + Sam Wanamaker + + 1986 + Movies + Action + + + TVPG + + + 2 + + + + Blood Money + A detective (Michael Ironside) and his partner try to protect a stripper (Lori Petty) who witnessed a drug-related mob killing. + + Michael Ironside + Currie Graham + Lori Petty + + 1998 + Movies + Action + + + 1 + + + + Death Fighter + A young American cop with a bounty on his head teams up with an ex-military outcast to avenge his slain mentor's death. He finds himself in a head-to-head showdown with one of the most notorious and ruthless criminals in the country. + + Matt Mullins + Don + + 2016 + Movies + Action + + + + Death Fighter + A young American cop with a bounty on his head teams up with an ex-military outcast to avenge his slain mentor's death. He finds himself in a head-to-head showdown with one of the most notorious and ruthless criminals in the country. + + Matt Mullins + Don + + 2016 + Movies + Action + + + + Road to Paloma + After avenging the rape and murder of his mother, a man (Jason Momoa) dodges the FBI while traveling across the West to spread her ashes. + + Jason Momoa + Robert Homer Mollohan + Lisa Bonet + + 2014 + Movies + Drama + + + TVPG + + + 2 + + + + Correctamundo! + Westerns Trivia + Westerns trivia with guests Vanessa Gritton, Kelly Nugent and Matt Acevedo. + Performing Arts + + + + Correctamundo! + Showbiz Movies + Showbiz movies trivia guests Vanessa Gritton, Kelly Nugent and Matt Acevedo. + Performing Arts + + + + Correctamundo! + Fantasy Movie Trivia + Hector hosts fantasy movies trivia with his guests Matt Acevedo, Marina Mastros and Kelly Nugent. + Performing Arts + + + + Lucha Underground + Til Death Do Us Part + Johnny Mundo and Taya get married and their nuptials are filled with lots of surprises; XO Lishus takes on Jack Evans in a. + + Luis Fernandez-Gil + Rick Diaz + Karlee Perez + + Sports + Wrestling + + + TV14 + + + + Lucha Underground + The Circle of Life + Melissa Santos and Catrina engage in an epic confrontation; the Monster Matanza Cueto makes another Sacrifice to the Gods; a Luchador seeking revenge comes after Pentagon Dark; Son of Havoc observes Killshot's match. + + Luis Fernandez-Gil + Rick Diaz + Karlee Perez + + Sports + Wrestling + + + TV14 + + + + Lucha Underground + Pet Cemetary + Fenix returns to the Temple to team with Drago and Aerostar against the Reptile Tribe; King Cuerno wants a Lucha Underground Championship Match, but he's not the only one; the Gift of the Gods Championship is defended. + + Luis Fernandez-Gil + Rick Diaz + Karlee Perez + + Sports + Wrestling + + + TV14 + + + + The Heavy + The sibling rivalry between two brothers comes to a head when one is given a chance to take revenge on the other. + + Gary Stretch + Vinnie Jones + Stephen Rea + + 2010 + Movies + Thriller + + + TVPG + + + 2 + + + + Assassins Run + Maya's husband is murdered by the Russian mafia after financial documents go missing. Corrupt cops frame her and she is sent to prison -- when she is released her daughter is kidnapped and she has to fight to save them both. + + Christian Slater + Sofya Skya + Cole Hauser + + 2012 + Movies + Thriller + + + TVPG + + + + Raw Deal + A former FBI agent (Arnold Schwarzenegger) infiltrates the biggest mob in Chicago and single-handedly wipes it out. + + Arnold Schwarzenegger + Kathryn Harrold + Sam Wanamaker + + 1986 + Movies + Action + + + TVPG + + + 2 + + + + Blood Money + A detective (Michael Ironside) and his partner try to protect a stripper (Lori Petty) who witnessed a drug-related mob killing. + + Michael Ironside + Currie Graham + Lori Petty + + 1998 + Movies + Action + + + 1 + + + + King of Triads + A bloody power struggle follows the capture and execution of a triad boss. + + Simon Yam + Andy On + Bernice Liu + + 2010 + Movies + Action + + + + New Police Story + A guilt-ridden cop finds solace in liquor after he loses all his colleagues while trying to bust a gang. His new partner tries to get him back into the groove, but he too has his own agenda. + + Jackie Chan + Nicholas Tse + Charlie Young + + 2004 + Movies + Action + + + TVPG + + + 2 + + + + Enlace TV + Religious + + + + Enlace TV + Religious + + + + Enlace TV + Religious + + + + Enlace TV + Religious + + + + Enlace TV + Religious + + + + Enlace TV + Religious + + + + Enlace TV + Religious + + + + Enlace TV + Religious + + + + Enlace TV + Religious + + + + Enlace TV + Religious + + + + Enlace TV + Religious + + + + Enlace TV + Religious + + + + Enlace TV + Religious + + + + Enlace TV + Religious + + + + Enlace TV + Religious + + + + Enlace TV + Religious + + + + Enlace TV + Religious + + + + Enlace TV + Religious + + + + Enlace TV + Religious + + + + Enlace TV + Religious + + + + Enlace TV + Religious + + + + Enlace TV + Religious + + + + Enlace TV + Religious + + + + Enlace TV + Religious + + + + Enlace TV + Religious + + + + Enlace TV + Religious + + + + Enlace TV + Religious + + + + Entertainment On Demand + Performing Arts + + + + Entertainment On Demand + Performing Arts + + + + Entertainment On Demand + Performing Arts + + + + Entertainment On Demand + Performing Arts + + + + Entertainment On Demand + Performing Arts + + + + Entertainment On Demand + Performing Arts + + + + Entertainment On Demand + Performing Arts + + + + Entertainment On Demand + Performing Arts + + + + Entertainment On Demand + Performing Arts + + + + Entertainment On Demand + Performing Arts + + + + Entertainment On Demand + Performing Arts + + + + Entertainment On Demand + Performing Arts + + + + Entertainment On Demand + Performing Arts + + + + Entertainment On Demand + Performing Arts + + + + Entertainment On Demand + Performing Arts + + + + Entertainment On Demand + Performing Arts + + + + Entertainment On Demand + Performing Arts + + + + Entertainment On Demand + Performing Arts + + + + Entertainment On Demand + Performing Arts + + + + Entertainment On Demand + Performing Arts + + + + Entertainment On Demand + Performing Arts + + + + Entertainment On Demand + Performing Arts + + + + Entertainment On Demand + Performing Arts + + + + Entertainment On Demand + Performing Arts + + + + Entertainment On Demand + Performing Arts + + + + Entertainment On Demand + Performing Arts + + + + Entertainment On Demand + Performing Arts + + + + La isla + Un grupo de participantes conformado por celebridades y concursantes desconocidos ponen a prueba sus capacidades físicas y psicológicas para librar una lucha donde solamente el más apto logrará ganar el gran premio. + Game Shows + + + TVPG + + + + 24 horas + Las noticias más importantes en política, finanzas, deportes, clima y los acontecimientos que impactan alrededor del mundo. + News + + + + 24 horas + Las noticias más importantes en política, finanzas, deportes, clima y los acontecimientos que impactan alrededor del mundo. + News + + + + Al extremo + Un programa periodístico que compila varios segmentos de noticias, las cuales tienen una cosa en común, estas son impactantes y asombrosas, algunas de estas noticias que se presentan son controversiales y algunas algo amarillistas. + News + Performing Arts + + + + ¡Qué buena música! + Bronco + Un espacio para disfrutar de conciertos de destacados artistas llevados a cabo en Los Ángeles. + Music + Performing Arts + + + + 24 horas + Las noticias más importantes en política, finanzas, deportes, clima y los acontecimientos que impactan alrededor del mundo. + News + + + + Puro Chargers + Un show con entrevistas a los jugadores de los Angeles Chargers, más el análisis de los partidos y las alineaciones. + Sports + Talk Show + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + ¡Ahora caigo! + Un concurso que combina trivia, agilidad mental, conocimientos de cultura general y rapidez para conseguir el gran premio final de 200.000 euros. + Game Shows + Performing Arts + + + + Alarma TV fin de semana + La cobertura de noticias de fin de semana. + Specials + News + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Frente a frente + Programa que aborda temas de interés para la comunidad como inmigración, salud, derechos del trabajador, tecnología, entre muchos otros. + Talk Shows + Instructional + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Vida sana con Roxana y Maggie + Los secretos de una vida sana acompañados de Maggie Jiménez y Roxana García. + Paid Program + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Venga la alegría + Un programa de entretenimiento que aborda temas de interés personal como cocina, belleza, sexualidad, reflexiones, consejos y otros. + Talk Shows + Variety + + + + 100 latinos dijeron + Dos familias competirán respondiendo a distintas preguntas por la oportunidad de ganar dinero basados en las respuestas más populares, de acuerdo a las previamente respondidas por 100 latinos alrededor de Estados Unidos. + Game Shows + Performing Arts + + + TVPG + + + + 24 horas + Las noticias más importantes en política, finanzas, deportes, clima y los acontecimientos que impactan alrededor del mundo. + News + + + + Buenas noticias + Se comienza la semana con puras buenas noticias. Historias alegres y llenas de esperanza que promueven valores, hacen ser mejores y muestran el lado amable del mundo. + News + + + + Rica famosa latina + Los secretos de las protagonistas de este controversial programa, quienes abren las puertas de sus vidas y muestran un mundo lleno de glamour, lujos y aventuras pero que, al mismo tiempo, está rodeado de intrigas y conflictos. + Performing Arts + + + TV14 + + + + Tengo talento, mucho talento + Grandes artistas hispanos muestran su talento frente a famosos jueces, pero al final será el público quien consagre al ganador. + Music + Game Shows + + + + El arribo de Conrado Sierra + Cinco hermanas de pueblo esperan ansiosas la llegada de un hombre, interesado en casarse con la menor de ellas. Esto no será tan fácil y ella luchará por defender su amor ante una sociedad asfixiante. + + Luis Felipe Cortés + Maite Perroni + Joaquín Cosio + + 2012 + Movies + Drama + + + + El arribo de Conrado Sierra + Cinco hermanas de pueblo esperan ansiosas la llegada de un hombre, interesado en casarse con la menor de ellas. Esto no será tan fácil y ella luchará por defender su amor ante una sociedad asfixiante. + + Luis Felipe Cortés + Maite Perroni + Joaquín Cosio + + 2012 + Movies + Drama + + + + 24 horas + Las noticias más importantes en política, finanzas, deportes, clima y los acontecimientos que impactan alrededor del mundo. + News + + + + Alarma TV fin de semana + La cobertura de noticias de fin de semana. + Specials + News + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Buenas noticias + Se comienza la semana con puras buenas noticias. Historias alegres y llenas de esperanza que promueven valores, hacen ser mejores y muestran el lado amable del mundo. + News + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Cantinflas Show + La navidad + Es Navidad y Cantinflas lo celebra con imágenes y canciones de esta festividad religiosa. Al mejor estilo mexicano, revive ver los bailes típicos y escucha la serenata de Las Mañanitas. + + Flavio Ramírez Farfán + + Animated + Performing Arts + + + + En vivo + Show familiar de revista de entretenimiento, novedades e información de la farándula, entrevistas con famosos nacionales e internacionales y música en vivo todos los días. + Performing Arts + + + + 24 horas + Las noticias más importantes en política, finanzas, deportes, clima y los acontecimientos que impactan alrededor del mundo. + News + + + + 100 latinos dijeron + Dos familias competirán respondiendo a distintas preguntas por la oportunidad de ganar dinero basados en las respuestas más populares, de acuerdo a las previamente respondidas por 100 latinos alrededor de Estados Unidos. + Game Shows + Performing Arts + + + TVPG + + + + Vivillo desde chiquillo + Una mujer rica hace pasar como su hermano a un vago que se aprovecha de las circunstancias y se da vida de millonario. + + Manuel Palacios + Estanislao Schillinsky + Queta Lavat + + 1951 + Movies + Comedy + + + + Noticias 62 Los Ángeles + Se presentan los acontecimientos más importantes de Los Ángeles y las últimas noticias nacionales e internacionales. + News + + + + L.A en vivo + Programa de revista, espectáculos, chismes y entretenimiento. + News + + + + Venga la alegría + Un programa de entretenimiento que aborda temas de interés personal como cocina, belleza, sexualidad, reflexiones, consejos y otros. + Talk Shows + Variety + + + + Al extremo + Un programa periodístico que compila varios segmentos de noticias, las cuales tienen una cosa en común, estas son impactantes y asombrosas, algunas de estas noticias que se presentan son controversiales y algunas algo amarillistas. + News + Performing Arts + + + + Noticias 62 Los Ángeles + Se presentan los acontecimientos más importantes de Los Ángeles y las últimas noticias nacionales e internacionales. + News + + + + Noticiero Estrella TV + Noticias nacionales e internacionales. + News + + + + Ventaneando + La crítica más aguda y la investigación periodística del mundo del espectáculo, con el profesionalismo de experimentados periodistas. + News Magazine + + + + 100 latinos dijeron + Dos familias competirán respondiendo a distintas preguntas por la oportunidad de ganar dinero basados en las respuestas más populares, de acuerdo a las previamente respondidas por 100 latinos alrededor de Estados Unidos. + Game Shows + Performing Arts + + + TVPG + + + + Tengo talento, mucho talento + Grandes artistas hispanos muestran su talento frente a famosos jueces, pero al final será el público quien consagre al ganador. + Music + Game Shows + + + + Alarma TV + Un show de revista de media hora que se transmite de lunes a sábado donde se presentan noticias únicas de lo que acontece alrededor del mundo. + News + News Magazine + + + + Noticiero: Cierre de edición + Al finalizar la jornada, se presentan las noticias más importantes y la información más destacada de México, Centroamérica y Sudamérica. + News + + + + En vivo + Show familiar de revista de entretenimiento, novedades e información de la farándula, entrevistas con famosos nacionales e internacionales y música en vivo todos los días. + Performing Arts + + + + Noticias 62 Los Ángeles + Se presentan los acontecimientos más importantes de Los Ángeles y las últimas noticias nacionales e internacionales. + News + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + 24 horas + Las noticias más importantes en política, finanzas, deportes, clima y los acontecimientos que impactan alrededor del mundo. + News + + + + Tengo talento, mucho talento + Grandes artistas hispanos muestran su talento frente a famosos jueces, pero al final será el público quien consagre al ganador. + Music + Game Shows + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Cantinflas Show + Lo oriental + Cantinflas recorre el maravilloso y desconocido continente oriental. Visita China, donde toma una clase de Kung Fu. Luego, viaja a la India, donde se casa con una princesa y pasa la noche en un bar. + + Flavio Ramírez Farfán + + Animated + Performing Arts + + + + En vivo + Show familiar de revista de entretenimiento, novedades e información de la farándula, entrevistas con famosos nacionales e internacionales y música en vivo todos los días. + Performing Arts + + + + 24 horas + Las noticias más importantes en política, finanzas, deportes, clima y los acontecimientos que impactan alrededor del mundo. + News + + + + 100 latinos dijeron + Dos familias competirán respondiendo a distintas preguntas por la oportunidad de ganar dinero basados en las respuestas más populares, de acuerdo a las previamente respondidas por 100 latinos alrededor de Estados Unidos. + Game Shows + Performing Arts + + + TVPG + + + + El bárbaro del ritmo + Un joven es elegido para tocar música cubana en una película y durante la filmación descubre sus propios talentos. + + Jorge Montes de Oca + Javier Ruan + Elia Gazcón + + 1987 + Movies + Drama + + + + Noticias 62 Los Ángeles + Se presentan los acontecimientos más importantes de Los Ángeles y las últimas noticias nacionales e internacionales. + News + + + + L.A en vivo + Programa de revista, espectáculos, chismes y entretenimiento. + News + + + + Venga la alegría + Un programa de entretenimiento que aborda temas de interés personal como cocina, belleza, sexualidad, reflexiones, consejos y otros. + Talk Shows + Variety + + + + Al extremo + Un programa periodístico que compila varios segmentos de noticias, las cuales tienen una cosa en común, estas son impactantes y asombrosas, algunas de estas noticias que se presentan son controversiales y algunas algo amarillistas. + News + Performing Arts + + + + Noticias 62 Los Ángeles + Se presentan los acontecimientos más importantes de Los Ángeles y las últimas noticias nacionales e internacionales. + News + + + + Noticiero Estrella TV + Noticias nacionales e internacionales. + News + + + + Ventaneando + La crítica más aguda y la investigación periodística del mundo del espectáculo, con el profesionalismo de experimentados periodistas. + News Magazine + + + + 100 latinos dijeron + Dos familias competirán respondiendo a distintas preguntas por la oportunidad de ganar dinero basados en las respuestas más populares, de acuerdo a las previamente respondidas por 100 latinos alrededor de Estados Unidos. + Game Shows + Performing Arts + + + TVPG + + + + Tengo talento, mucho talento + Grandes artistas hispanos muestran su talento frente a famosos jueces, pero al final será el público quien consagre al ganador. + Music + Game Shows + + + + Alarma TV + Un show de revista de media hora que se transmite de lunes a sábado donde se presentan noticias únicas de lo que acontece alrededor del mundo. + News + News Magazine + + + + Noticiero: Cierre de edición + Al finalizar la jornada, se presentan las noticias más importantes y la información más destacada de México, Centroamérica y Sudamérica. + News + + + + En vivo + Show familiar de revista de entretenimiento, novedades e información de la farándula, entrevistas con famosos nacionales e internacionales y música en vivo todos los días. + Performing Arts + + + + Noticias 62 Los Ángeles + Se presentan los acontecimientos más importantes de Los Ángeles y las últimas noticias nacionales e internacionales. + News + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + 24 horas + Las noticias más importantes en política, finanzas, deportes, clima y los acontecimientos que impactan alrededor del mundo. + News + + + + Tengo talento, mucho talento + Grandes artistas hispanos muestran su talento frente a famosos jueces, pero al final será el público quien consagre al ganador. + Music + Game Shows + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Cantinflas Show + Pasteur + Cantinflas conoce a uno de los grandes benefactores de la humanidad. Se trata de Luis Pasteur, quien descubrió la vacuna contra la rabia y construyó el Instituto Pasteur para desarrollar la vacuna contra la viruela y contra la peste bubónica. + + Flavio Ramírez Farfán + + Animated + Performing Arts + + + + En vivo + Show familiar de revista de entretenimiento, novedades e información de la farándula, entrevistas con famosos nacionales e internacionales y música en vivo todos los días. + Performing Arts + + + + 24 horas + Las noticias más importantes en política, finanzas, deportes, clima y los acontecimientos que impactan alrededor del mundo. + News + + + + 100 latinos dijeron + Dos familias competirán respondiendo a distintas preguntas por la oportunidad de ganar dinero basados en las respuestas más populares, de acuerdo a las previamente respondidas por 100 latinos alrededor de Estados Unidos. + Game Shows + Performing Arts + + + TVPG + + + + El hombre del puente + La odisea del ex presidiario de un país dictatorial que queda inmovilizado por falta de papeles en un puente fronterizo. + + Gregorio Casal + Diana Bracho + + 1975 + Movies + Drama + + + + Noticias 62 Los Ángeles + Se presentan los acontecimientos más importantes de Los Ángeles y las últimas noticias nacionales e internacionales. + News + + + + L.A en vivo + Programa de revista, espectáculos, chismes y entretenimiento. + News + + + + Venga la alegría + Un programa de entretenimiento que aborda temas de interés personal como cocina, belleza, sexualidad, reflexiones, consejos y otros. + Talk Shows + Variety + + + + Mujeres en el acto + Retrata a un grupo de mujeres de clase alta cuya vida transcurre como dentro de una burbuja de jabón, sin saber que cuando ésta reviente las dejará indefensas ante una implacable caída libre. + + Daysi Granados + Patricia Reyes Spíndola + Lourdes Elizarrarás + + 2006 + Movies + Drama + + + + El secreto de Romelia + Una anciana visita un pequeño pueblo con su hija y nietos, donde se despierta la curiosidad de su hija por su padre. + + Pedro Armendáriz Jr. + Dolores Beristáin + Diana Bracho + + 1988 + Movies + Romance + + + + Entrenando a mi papá + El legendario jugador de fútbol la Araña Salazar se encuentra deprimido, pero su hija Tania lo ayudará a rehacer su vida. + + Mauricio Islas + Adriana Barraza + Jacqueline Bracamontes + + 2015 + Movies + Drama + + + + Entrenando a mi papá + El legendario jugador de fútbol la Araña Salazar se encuentra deprimido, pero su hija Tania lo ayudará a rehacer su vida. + + Mauricio Islas + Adriana Barraza + Jacqueline Bracamontes + + 2015 + Movies + Drama + + + + El secreto + Un doctor se convierte en el principal sospechoso de la muerte de su hija, quien fue asesinada en su propia casa. Sin embargo, el investigador que se hace cargo del caso, se da cuenta pronto que el asunto es más complicado de lo que aparenta. + + Kay Kay Menon + Ashish Vidyarthi + Tisca Chopra + + 2015 + Movies + Thriller + + + + Bajo la Metralla + Un grupo de terroristas trata de secuestrar a un político y después tienen que esconderse porque son perseguidos. + + Humberto Zurita + María Rojo + José Carlos Ruiz + + 1984 + Movies + Adventure + + + + Mujeres en el acto + Retrata a un grupo de mujeres de clase alta cuya vida transcurre como dentro de una burbuja de jabón, sin saber que cuando ésta reviente las dejará indefensas ante una implacable caída libre. + + Daysi Granados + Patricia Reyes Spíndola + Lourdes Elizarrarás + + 2006 + Movies + Drama + + + + Mejore la salud del corazón y la función cerebral con Krill + Mejore la salud del corazón, la flexibilidad de las articulaciones y la función cerebral con Krill Omega 50+® con CoQ10. + Paid Program + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Entrenando a mi papá + El legendario jugador de fútbol la Araña Salazar se encuentra deprimido, pero su hija Tania lo ayudará a rehacer su vida. + + Mauricio Islas + Adriana Barraza + Jacqueline Bracamontes + + 2015 + Movies + Drama + + + + El secreto + Un doctor se convierte en el principal sospechoso de la muerte de su hija, quien fue asesinada en su propia casa. Sin embargo, el investigador que se hace cargo del caso, se da cuenta pronto que el asunto es más complicado de lo que aparenta. + + Kay Kay Menon + Ashish Vidyarthi + Tisca Chopra + + 2015 + Movies + Thriller + + + + Recordando al viejo + 2022 + Movies + + + + Bajo la Metralla + Un grupo de terroristas trata de secuestrar a un político y después tienen que esconderse porque son perseguidos. + + Humberto Zurita + María Rojo + José Carlos Ruiz + + 1984 + Movies + Adventure + + + + Danza de Luna + Martín se obsesiona con Osana, una joven bailarina. Con el afán de conquistarla, se inicia en la danza con tal de estar cerca de ella. Logra conquistarla y ser su pareja. Dante su exnovio, regresa a recuperarla. + + Matías Aranda + Emma Escalante + Daniel Breton + + 2023 + Movies + Drama + + + + El secreto de Romelia + Una anciana visita un pequeño pueblo con su hija y nietos, donde se despierta la curiosidad de su hija por su padre. + + Pedro Armendáriz Jr. + Dolores Beristáin + Diana Bracho + + 1988 + Movies + Romance + + + + El secreto de Romelia + Una anciana visita un pequeño pueblo con su hija y nietos, donde se despierta la curiosidad de su hija por su padre. + + Pedro Armendáriz Jr. + Dolores Beristáin + Diana Bracho + + 1988 + Movies + Romance + + + + La niña en la piedra + Un joven busca venganza contra una joven estudiante que lo humilló. + + Gabino Rodríguez + Sofía Espinosa + Ricardo Polanco + + 2006 + Movies + Drama + + + + Entrenando a mi papá + El legendario jugador de fútbol la Araña Salazar se encuentra deprimido, pero su hija Tania lo ayudará a rehacer su vida. + + Mauricio Islas + Adriana Barraza + Jacqueline Bracamontes + + 2015 + Movies + Drama + + + + El secreto + Un doctor se convierte en el principal sospechoso de la muerte de su hija, quien fue asesinada en su propia casa. Sin embargo, el investigador que se hace cargo del caso, se da cuenta pronto que el asunto es más complicado de lo que aparenta. + + Kay Kay Menon + Ashish Vidyarthi + Tisca Chopra + + 2015 + Movies + Thriller + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Recordando al viejo + 2022 + Movies + + + + Mejore la salud del corazón y la función cerebral con Krill + Mejore la salud del corazón, la flexibilidad de las articulaciones y la función cerebral con Krill Omega 50+® con CoQ10. + Paid Program + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Bajo la Metralla + Un grupo de terroristas trata de secuestrar a un político y después tienen que esconderse porque son perseguidos. + + Humberto Zurita + María Rojo + José Carlos Ruiz + + 1984 + Movies + Adventure + + + + Cilantro y Perejil + Una mujer observa cómo el matrimonio de su hermana se desintegra a la vez que ella misma experimenta problemas amorosos. + + Demián Bichir + Arcelia Ramírez + Alpha Acosta + + 1995 + Movies + Romance + + + 2 + + + + Acosada en Lunes de Carnaval + Un grupo de insurgentes es reprimido por un militar que es relacionado con el demonio por los pobladores del lugar. + + Mimí Lazo + Luis Felipe Tovar + + 2002 + Movies + Drama + + + + La Extraña + Una mujer misteriosa y atractiva transforma completamente la vida de un hombre. + + Frank Perozo + Evelyna Rodríguez + Yelitza Lora + + 2014 + Movies + Thriller + + + + Despertar el polvo + Chano, quien ha vivido siempre rodeado de delincuencia y corrupción, regresa al mundo del crimen con el fin de sacar a su sobrino de la cárcel. + + Mercedes Hernández + Juan Carlos Torres + Donaciano Hernández + + 2013 + Movies + + + + La mujer de Benjamín + Un comerciante (Eduardo López Rojas) de unos cincuenta años de edad secuestra a una adolescente (Arcelia Ramírez) y después se arrepiente de haberlo hecho. + + Eduardo López Rojas + Arcelia Ramírez + Malena Doria + + 1991 + Movies + Drama + + + 2 + + + + Despertar el polvo + Chano, quien ha vivido siempre rodeado de delincuencia y corrupción, regresa al mundo del crimen con el fin de sacar a su sobrino de la cárcel. + + Mercedes Hernández + Juan Carlos Torres + Donaciano Hernández + + 2013 + Movies + + + + Despertar el polvo + Chano, quien ha vivido siempre rodeado de delincuencia y corrupción, regresa al mundo del crimen con el fin de sacar a su sobrino de la cárcel. + + Mercedes Hernández + Juan Carlos Torres + Donaciano Hernández + + 2013 + Movies + + + + La mujer de Benjamín + Un comerciante (Eduardo López Rojas) de unos cincuenta años de edad secuestra a una adolescente (Arcelia Ramírez) y después se arrepiente de haberlo hecho. + + Eduardo López Rojas + Arcelia Ramírez + Malena Doria + + 1991 + Movies + Drama + + + 2 + + + + Recordando al viejo + 2022 + Movies + + + + Despertar el polvo + Chano, quien ha vivido siempre rodeado de delincuencia y corrupción, regresa al mundo del crimen con el fin de sacar a su sobrino de la cárcel. + + Mercedes Hernández + Juan Carlos Torres + Donaciano Hernández + + 2013 + Movies + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + La mujer de Benjamín + Un comerciante (Eduardo López Rojas) de unos cincuenta años de edad secuestra a una adolescente (Arcelia Ramírez) y después se arrepiente de haberlo hecho. + + Eduardo López Rojas + Arcelia Ramírez + Malena Doria + + 1991 + Movies + Drama + + + 2 + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Recordando al viejo + 2022 + Movies + + + + Despertar el polvo + Chano, quien ha vivido siempre rodeado de delincuencia y corrupción, regresa al mundo del crimen con el fin de sacar a su sobrino de la cárcel. + + Mercedes Hernández + Juan Carlos Torres + Donaciano Hernández + + 2013 + Movies + + + + La mujer de Benjamín + Un comerciante (Eduardo López Rojas) de unos cincuenta años de edad secuestra a una adolescente (Arcelia Ramírez) y después se arrepiente de haberlo hecho. + + Eduardo López Rojas + Arcelia Ramírez + Malena Doria + + 1991 + Movies + Drama + + + 2 + + + + Recordando al viejo + 2022 + Movies + + + + Manos libres: Nadie te habla + Un reportero desesperado debe pagar un rescate considerable para salvar a su hija, quien fue secuestrada. + + Alejandro Calva + Ana Paula Corpus + Gloria Stálina + + 2005 + Movies + Thriller + + + + Amargo licor: La destrucción de un hombre + Solo en los momentos de la más amarga desdicha y tragedia llegan las lecciones importantes de la vida. + + José Luis Montiel Quezada + Estrella Almada Cervantes + Angélica Paulet + + 2021 + Movies + Drama + + + + Manos libres: Nadie te habla + Un reportero desesperado debe pagar un rescate considerable para salvar a su hija, quien fue secuestrada. + + Alejandro Calva + Ana Paula Corpus + Gloria Stálina + + 2005 + Movies + Thriller + + + + Manos libres: Nadie te habla + Un reportero desesperado debe pagar un rescate considerable para salvar a su hija, quien fue secuestrada. + + Alejandro Calva + Ana Paula Corpus + Gloria Stálina + + 2005 + Movies + Thriller + + + + Amargo licor: La destrucción de un hombre + Solo en los momentos de la más amarga desdicha y tragedia llegan las lecciones importantes de la vida. + + José Luis Montiel Quezada + Estrella Almada Cervantes + Angélica Paulet + + 2021 + Movies + Drama + + + + Manos libres: Nadie te habla + Un reportero desesperado debe pagar un rescate considerable para salvar a su hija, quien fue secuestrada. + + Alejandro Calva + Ana Paula Corpus + Gloria Stálina + + 2005 + Movies + Thriller + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Amargo licor: La destrucción de un hombre + Solo en los momentos de la más amarga desdicha y tragedia llegan las lecciones importantes de la vida. + + José Luis Montiel Quezada + Estrella Almada Cervantes + Angélica Paulet + + 2021 + Movies + Drama + + + + Hylastra Gold - Restaura y reconstruye la piel desde adentro + Siente la experiencia de el estándar dorado en los sistemas de contra el envejecimiento en el ácido hialurónico! Hidrata y restaura tu piel para que tu rostro irradie juventud con el súper sistema de Hylastra gold! + Paid Program + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + El secreto + Un doctor se convierte en el principal sospechoso de la muerte de su hija, quien fue asesinada en su propia casa. Sin embargo, el investigador que se hace cargo del caso, se da cuenta pronto que el asunto es más complicado de lo que aparenta. + + Kay Kay Menon + Ashish Vidyarthi + Tisca Chopra + + 2015 + Movies + Thriller + + + + Manos libres: Nadie te habla + Un reportero desesperado debe pagar un rescate considerable para salvar a su hija, quien fue secuestrada. + + Alejandro Calva + Ana Paula Corpus + Gloria Stálina + + 2005 + Movies + Thriller + + + + Amargo licor: La destrucción de un hombre + Solo en los momentos de la más amarga desdicha y tragedia llegan las lecciones importantes de la vida. + + José Luis Montiel Quezada + Estrella Almada Cervantes + Angélica Paulet + + 2021 + Movies + Drama + + + + El secreto + Un doctor se convierte en el principal sospechoso de la muerte de su hija, quien fue asesinada en su propia casa. Sin embargo, el investigador que se hace cargo del caso, se da cuenta pronto que el asunto es más complicado de lo que aparenta. + + Kay Kay Menon + Ashish Vidyarthi + Tisca Chopra + + 2015 + Movies + Thriller + + + + The First Wives Club + Three 50-ish college friends (Goldie Hawn, Bette Midler, Diane Keaton) plot revenge after their husbands dump them for younger women. + + Goldie Hawn + Bette Midler + Diane Keaton + + 1996 + Movies + Comedy + + + TVG + + + 3 + + + + Failure to Launch + The parents of a young man (Matthew McConaughey) who still lives at home hire a beautiful woman (Sarah Jessica Parker) to entice him to finally leave the nest. + + Matthew McConaughey + Sarah Jessica Parker + Zooey Deschanel + + 2006 + Movies + Romance + + + TVG + + + 2 + + + + Boomerang + A Manhattan playboy (Eddie Murphy) gets a new corporate boss (Robin Givens), and she treats him the way he has always treated women. + + Eddie Murphy + Halle Berry + Robin Givens + + 1992 + Movies + Comedy + + + TVPG + + + 2 + + + + Sweeney Todd: The Demon Barber of Fleet Street + After serving time for a crime he did not commit, a vengeful barber (Johnny Depp) and his accomplice (Helena Bonham Carter) carve up unlucky customers and bake them in meat pies. + + Johnny Depp + Helena Bonham Carter + Alan Rickman + + 2007 + Movies + Musical + + + TVPG + + + 3 + + + + Sweeney Todd: The Demon Barber of Fleet Street + After serving time for a crime he did not commit, a vengeful barber (Johnny Depp) and his accomplice (Helena Bonham Carter) carve up unlucky customers and bake them in meat pies. + + Johnny Depp + Helena Bonham Carter + Alan Rickman + + 2007 + Movies + Musical + + + TVPG + + + 3 + + + + Mansfield Park + Sent to live with relatives by her impoverished parents, a girl grows up, becomes a writer and falls in love. + + Embeth Davidtz + Jonny Lee Miller + Alessandro Nivola + + 1999 + Movies + History + + + TVG + + + 3 + + + + The Missouri Breaks + An eccentric gunfighter (Marlon Brando) for hire must protect a cattle baron's herd from a rustler (Jack Nicholson) and his gang. + + Marlon Brando + Jack Nicholson + Randy Quaid + + 1976 + Movies + Western + + + TVMA + + + 3 + + + + The Odd Couple + Fussy Felix Unger (Jack Lemmon) moves in with his divorced poker buddy, sloppy Oscar Madison (Walter Matthau). + + Jack Lemmon + Walter Matthau + John Fiedler + + 1968 + Movies + Comedy + + + TVG + + + 3 + + + + Married to the Mob + An FBI agent (Matthew Modine) gets close to a gangster's widow (Michelle Pfeiffer) in order to nab a crime boss (Dean Stockwell). + + Michelle Pfeiffer + Matthew Modine + Dean Stockwell + + 1988 + Movies + Comedy + + + TVG + + + 3 + + + + The Virgin Suicides + Men reminisce about intriguing sisters, whose parents (James Woods, Kathleen Turner) quarantined them after one of the five killed herself. + + James Woods + Kathleen Turner + Kirsten Dunst + + 1999 + Movies + Drama + + + TVPG + + + 3 + + + + Mary Shelley's Frankenstein + Dr. Frankenstein (Kenneth Branagh) creates a soulless monster (Robert De Niro) from cadavers and tries to hide it from his beloved. + + Robert De Niro + Kenneth Branagh + Tom Hulce + + 1994 + Movies + Horror + + + TVPG + + + 2 + + + + Amistad + U.S. lawyers (Anthony Hopkins, Matthew McConaughey) defend Africans who revolted against their Spanish captors aboard a slave ship in 1839. + + Morgan Freeman + Anthony Hopkins + Matthew McConaughey + + 1997 + Movies + History + + + TVPG + + + 3 + + + + Schindler's List + German industrialist Oskar Schindler (Liam Neeson) plots with his accountant (Ben Kingsley) to save Jewish prisoners from the Nazis. + + Liam Neeson + Ben Kingsley + Ralph Fiennes + + 1993 + Movies + History + + + TVPG + + + 4 + + + + Mr. & Mrs. Bridge + A rich Midwestern lawyer (Paul Newman), his wife (Joanne Woodward) and their children grow apart in the World War II era. + + Paul Newman + Joanne Woodward + Robert Sean Leonard + + 1990 + Movies + Drama + + + TVG + + + 2 + + + + The Remains of the Day + An English butler's (Anthony Hopkins) devotion to service keeps him from the housekeeper (Emma Thompson) he loves in 1930s England. + + Anthony Hopkins + Emma Thompson + James Fox + + 1993 + Movies + Drama + + + TVG + + + 3 + + + + The Virgin Suicides + Men reminisce about intriguing sisters, whose parents (James Woods, Kathleen Turner) quarantined them after one of the five killed herself. + + James Woods + Kathleen Turner + Kirsten Dunst + + 1999 + Movies + Drama + + + TVPG + + + 3 + + + + The Virgin Suicides + Men reminisce about intriguing sisters, whose parents (James Woods, Kathleen Turner) quarantined them after one of the five killed herself. + + James Woods + Kathleen Turner + Kirsten Dunst + + 1999 + Movies + Drama + + + TVPG + + + 3 + + + + Hard Candy + A 14-year-old girl hatches an elaborate plot to punish the fashion photographer she accuses of pedophilia. + + Patrick Wilson + Ellen Page + Sandra Oh + + 2005 + Movies + Drama + + + TV14 + + + 2 + + + + The Perks of Being a Wallflower + Friends (Emma Watson, Ezra Miller) try to help an introverted teenager (Logan Lerman) become more sociable. + + Logan Lerman + Emma Watson + Ezra Miller + + 2012 + Movies + Romance + + + TVG + + + 3 + + + + Separated + A wind-up robot embarks on a journey to save his better half. + Specials + Drama + + + TVG + + + + Smoke Signals + A geeky American Indian (Evan Adams) travels from Idaho to Phoenix with a stoic companion (Adam Beach) whose father died. + + Adam Beach + Evan Adams + Irene Bedard + + 1998 + Movies + Comedy + Drama + + + 3 + + + + Say Anything... + A high-school senior (John Cusack) falls in love with an honor student (Ione Skye) bound for studies in England. + + John Cusack + Ione Skye + John Mahoney + + 1989 + Movies + Romance + + + TVG + + + 3 + + + + Congo + Killer gorillas menace an ex-CIA agent (Laura Linney), a primatologist (Dylan Walsh) and others on a mission in Africa. + + Dylan Walsh + Laura Linney + Ernie Hudson + + 1995 + Movies + Action + + + TVG + + + 2 + + + + A Simple Plan + A Minnesotan (Bill Paxton), his dimwitted brother (Billy Bob Thornton) and his brother's redneck friend (Brent Briscoe) find and decide to keep $4 million. + + Bill Paxton + Billy Bob Thornton + Brent Briscoe + + 1998 + Movies + Thriller + + + TVPG + + + 3 + + + + Thief + A safecracker (James Caan) runs into trouble with the mob when he wants to quit after one last heist. + + James Caan + Tuesday Weld + Willie Nelson + + 1981 + Movies + Action + + + TVPG + + + 2 + + + + Terminator 2: Judgment Day + Two cyborgs from the future battle over the life of a teen (Edward Furlong) who will someday lead humanity against the machines. + + Arnold Schwarzenegger + Linda Hamilton + Edward Furlong + + 1991 + Movies + Sci-Fi + + + TVG + + + 4 + + + + The Prestige + After an illusion goes tragically wrong, two 19th-century magicians (Hugh Jackman, Christian Bale) engage in a bitter and potentially deadly rivalry. + + Hugh Jackman + Christian Bale + Michael Caine + + 2006 + Movies + Drama + + + TVG + + + 3 + + + + Almost Famous + An aspiring teenage rock journalist gets his big break when he follows an up-and-coming band on its tour. + + Billy Crudup + Frances McDormand + Kate Hudson + + 2000 + Movies + Comedy + Drama + + + TVG + + + 4 + + + + Say Anything... + A high-school senior (John Cusack) falls in love with an honor student (Ione Skye) bound for studies in England. + + John Cusack + Ione Skye + John Mahoney + + 1989 + Movies + Romance + + + TVG + + + 3 + + + + Mulholland Drive + An actress (Naomi Watts) goes to Los Angeles to audition for a director (Justin Theroux) and falls into a conspiracy involving an amnesiac (Laura Elena Harring) and a blue box. + + Justin Theroux + Naomi Watts + Laura Harring + + 2001 + Movies + Thriller + + + TVG + + + 3 + + + + Mulholland Drive + An actress (Naomi Watts) goes to Los Angeles to audition for a director (Justin Theroux) and falls into a conspiracy involving an amnesiac (Laura Elena Harring) and a blue box. + + Justin Theroux + Naomi Watts + Laura Harring + + 2001 + Movies + Thriller + + + TVG + + + 3 + + + + Basic Instinct + An erotic writer (Sharon Stone) toys with a San Francisco detective (Michael Douglas) who thinks she might be an ice-pick killer. + + Michael Douglas + Sharon Stone + George Dzundza + + 1992 + Movies + Thriller + + + TV14 + + + 3 + + + + Children of a Lesser God + A teacher (William Hurt) falls in love with a gifted but bitter graduate (Marlee Matlin) at a Maine school for the deaf. + + William Hurt + Marlee Matlin + Piper Laurie + + 1986 + Movies + Drama + + + TVG + + + 3 + + + + Hart's War + A conniving colonel (Bruce Willis) oversees the murder trial of a black airman (Terrence Howard) in a Nazi prisoner-of-war camp. + + Bruce Willis + Colin Farrell + Terrence Howard + + 2002 + Movies + War + + + TVPG + + + 2 + + + + In the Bedroom + A tragedy involving a doctor (Tom Wilkinson), his wife (Sissy Spacek) and their college-age son (Nick Stahl) reveals the chasm in the relationship. + + Sissy Spacek + Tom Wilkinson + Nick Stahl + + 2001 + Movies + Drama + + + TV14 + + + 3 + + + + Teaching Mrs. Tingle + With their futures threatened by false accusations of cheating, three teenagers take matters into their own hands. + + Helen Mirren + Katie Holmes + Jeffrey Tambor + + 1999 + Movies + Comedy + + + TVG + + + 1 + + + + Abandon + A detective (Benjamin Bratt) discovers new facts regarding the disappearance of a collegian's (Katie Holmes) boyfriend (Charlie Hunnam) two years earlier. + + Katie Holmes + Benjamin Bratt + Charlie Hunnam + + 2002 + Movies + Thriller + + + TVG + + + 1 + + + + The Woods + A tormented teen (Agnes Bruckner) has terrifying visions, while her classmates at a remote boarding-school for girls go missing. + + Patricia Clarkson + Bruce Campbell + Agnes Bruckner + + 2005 + Movies + Horror + + + TVPG + + + 2 + + + + Hamlet + A contemporary version of the Shakespeare play is set in New York City circa 2000, after a hostile corporate takeover. + + Ethan Hawke + Kyle MacLachlan + Sam Shepard + + 2000 + Movies + Drama + + + TVG + + + 3 + + + + The Yards + A friend's (Joaquin Phoenix) lure of easy money draws an ex-con (Mark Wahlberg) into the corrupt world of his uncle's subway-train business. + + Mark Wahlberg + Joaquin Phoenix + Charlize Theron + + 2000 + Movies + Crime Story + + + TVG + + + 2 + + + + Six Degrees of Separation + Married New Yorkers (Stockard Channing, Donald Sutherland) question the motives of an overnight guest (Will Smith) who pretends to be someone else. + + Stockard Channing + Will Smith + Donald Sutherland + + 1993 + Movies + Drama + + + TVG + + + 3 + + + + In the Bedroom + A tragedy involving a doctor (Tom Wilkinson), his wife (Sissy Spacek) and their college-age son (Nick Stahl) reveals the chasm in the relationship. + + Sissy Spacek + Tom Wilkinson + Nick Stahl + + 2001 + Movies + Drama + + + TV14 + + + 3 + + + + Striptease + A stripper (Demi Moore) seeking custody of her daughter becomes involved with a libidinous congressman. + + Demi Moore + Armand Assante + Ving Rhames + + 1996 + Movies + Drama + + + TVPG + + + 2 + + + + Striptease + A stripper (Demi Moore) seeking custody of her daughter becomes involved with a libidinous congressman. + + Demi Moore + Armand Assante + Ving Rhames + + 1996 + Movies + Drama + + + TVPG + + + 2 + + + + Inside Llewyn Davis + In 1960s New York, a struggling folk singer (Oscar Isaac) with genuine talent sets his sights on stardom, but success proves elusive. + + Oscar Isaac + Carey Mulligan + John Goodman + + 2013 + Movies + Drama + + + TVG + + + 3 + + + + Love Story + An old-money Harvard man Oliver (Ryan O'Neal) woos and weds a no-money music student (Ali MacGraw) from the wrong side of the tracks. + + Ali MacGraw + Ryan O'Neal + Ray Milland + + 1970 + Movies + Romance + + + TVG + + + 3 + + + + Proof + A depressed woman (Gwyneth Paltrow) copes with the death of her father (Anthony Hopkins), a brilliant but mentally ill mathematician. + + Gwyneth Paltrow + Anthony Hopkins + Jake Gyllenhaal + + 2005 + Movies + Drama + + + TVG + + + 2 + + + + Les, Miserable + The story of a well-loved stand-up comic's adventures in Paris in the mid-1950s. + Specials + Comedy + + + TV14 + + + + The Monster Squad + Members (Andre Gower, Robby Kiger) of a monster fan club meet Count Dracula, Wolfman, Frankenstein, the Mummy and Gill Man. + + Andre Gower + Robby Kiger + Stephen Macht + + 1987 + Movies + Horror + + + TVG + + + 2 + + + + Who's Harry Crumb? + A blundering private eye's (John Candy) boss (Jeffrey Jones) puts him on a kidnapping case he is not supposed to solve. + + John Candy + Jeffrey Jones + Annie Potts + + 1989 + Movies + Comedy + + + TVG + + + 2 + + + + Ladybugs + Forced to coach a girls soccer team, a salesman (Rodney Dangerfield) stacks it with his girlfriend's son (Jonathan Brandis) in disguise. + + Rodney Dangerfield + Jackée Harry + Jonathan Brandis + + 1992 + Movies + Comedy + + + TVG + + + 1 + + + + The Cutting Edge + An ex-hockey player (D.B. Sweeney) and a prima donna (Moira Kelly) bicker as paired figure skaters shooting for the Olympics. + + D.B. Sweeney + Moira Kelly + Roy Dotrice + + 1992 + Movies + Romance + + + TVG + + + 2 + + + + Wonder Boys + Terrified his second novel won't live up to the first and stumbling over his personal life, a writer (Michael Douglas) takes a gifted student (Tobey Maguire) under his wing. + + Michael Douglas + Tobey Maguire + Frances McDormand + + 2000 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Mr. & Mrs. Bridge + A rich Midwestern lawyer (Paul Newman), his wife (Joanne Woodward) and their children grow apart in the World War II era. + + Paul Newman + Joanne Woodward + Robert Sean Leonard + + 1990 + Movies + Drama + + + TVG + + + 2 + + + + Iris + Novelist and philosopher Iris Murdoch (Judi Dench, Kate Winslet) falls in love with an Oxford don (Jim Broadbent) in the 1950s. + + Judi Dench + Jim Broadbent + Kate Winslet + + 2001 + Movies + Drama + + + TV14 + + + 3 + + + + Prince: My Name Is + An inside look at Prince's life, his innovative music, his mysterious persona, and his influence on the world. + Documentary + Music + + + TV14 + + + + Stevie Nicks: Wild at Heart + For decades, Stevie Nicks has fronted one of the most successful bands in history, resurrecting them from the ashes; even with the trials and tribulations of being a member of Fleetwood Mac, Stevie has remained an iconic role model. + Specials + Documentary + + + + Lady Gaga: Encore + A look at the evolution of Lady Gaga, one of the most unusual pop stars to rise to fame; with a strong fan base behind her, she continues to reign as one of the biggest pop stars of the industry. + Specials + Documentary + + + TVG + + + + The Hollywood Puppet Show + Nick Cannon and Lilly Singh + Nick Cannon's Miami music video shoot with Fat Joe grinds to a halt when the strippers go on strike; Lilly Singh trips out when she tries weed for the very first time. + Reality TV + Comedy + + + TV14 + + + + The Hollywood Puppet Show + T-Pain and Young M.A + While on tour, T-Pain gets lit in a London nightclub leading to an all-out brawl and international intrigue; Young M.A has to escape a massive traffic jam when she opens for Beyoncé. + Reality TV + Comedy + + + TV14 + + + + The Hollywood Puppet Show + Bow Wow and Marlon Wayans + Celebrities Bow Wow and Marlon Wayans tell their never-before-heard wildest adventures, re-enacted by marionette puppets.Guests: Marlon Wayans, Shad Moss.. + Reality TV + Comedy + + + TV14 + + + + The Hollywood Puppet Show + Prince Royce and J Blavin + J Balvin and his family escape death when their private jet crashes in the Bahamas. Young Prince Royce throws an illegal underground party at his Aunties apartment in the Bronx without her permission. + Reality TV + Comedy + + + TV14 + + + + Sugar and Toys + Revenge of the Nerfs + Kyle introduces a nerfed crew of kid gamers to the joys of living on the edge; Chance brings love to at risk kids; AOC gets addicted to spicy junk food; the Scoobidy Gang takes on cancel culture. + Comedy + + + TVMA + + + + Sugar and Toys + Love in the Time of Pandademic + Kyle's virtue signaling blows up in his face; using the n-word; a notorious music executive and actress take over a toy company; home-schooled kids get a crash course in life lessons. + Comedy + + + TVMA + + + + Sugar and Toys + The Every Damn Internet Challenge Challenge + Kyle and his friend go toe-to-toe over who gets to keep the trash talking cereal box toy. On the TV - a cartoon for Kid Crips, Junior Illuminati attend a historically Black college, and Meme Girls bully their classmate. + Comedy + + + TVMA + + + + Sugar and Toys + Cribfest + Kyle orders an outdoor music festival to his house; Hype-Man foils a bank robbery; the Used to Care bears plot their revenge. + Comedy + + + TVMA + + + + Sugar and Toys + It's Hard To Raise Yourself These Days + Kyle tries to teach life lessons to his younger self; a superhero mansplains feminism to women; robot mouth grills for kids. + Comedy + + + TVMA + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Amazing Closet Makeovers! 70% more space! + Up to 70% more closet space in seconds with Ruby Space Triangles! + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Close Up + Samuel L. Jackson + The career of Samuel L. Jackson. + Biography + + + + Close Up + Halle Berry + A collection of intimate portraits of some of the biggest names in Hollywood, including actors, film directors and producers. + Performing Arts + + + TVPG + + + + Latino Laugh Festival: The Show + Tobe Hicks enlightens male viewers on why birth control is a good thing; Edwin San Juan reveals his parents confusion about his career aspirations. + Comedy + Variety + + + TV14 + + + + Stand Up & Deliver + With Carlos Alazraqui + Carlos Alazraqui cracks wise with Jennifer Vally, Delanie Fischer and Frank Nicotero. + Comedy + + + TV14 + + + + Stand Up & Deliver + With Ben Gleib + Chelsea Handler's best friend Ben Gleib lets loose in Cabo and delivers a headlining set; rising comics Terry Jones, Andrew Sleighter and Justine Marino perform. + Comedy + + + TV14 + + + + Fuse Excellent Adventure + Bolkow Castle Party + Three days of Goth, new wave and dark electro held at the 16th century Bolkow Castle in Poland. + Music + + + TV14 + + + + Fuse Excellent Adventure + Gnawa Music Festival + A celebration of the music of the Gnawas held in Essaouira, Morocco. + Music + + + TV14 + + + + Fuse Excellent Adventure + Waken Open Air Festival + Every year the small German town of Waken's population surges from 2,000 to 72,000 as it hosts the largest Metal festival in the world. + Music + + + TV14 + + + + Stevie Nicks: Wild at Heart + For decades, Stevie Nicks has fronted one of the most successful bands in history, resurrecting them from the ashes; even with the trials and tribulations of being a member of Fleetwood Mac, Stevie has remained an iconic role model. + Specials + Documentary + + + + Whitney Houston: As I Am + The life and untimely death of singer and actress Whitney Houston. + Specials + Documentary + + + + JLO: From the Block + Jennifer Lopez is one of Hollywood's leading ladies. Throughout her career, she has starred in major blockbusters, released multi-platinum albums and raised thousands for charities, ultimately propelling herself to the forefront of Hollywood's fame. + Specials + Documentary + + + + Cher: Life in the Spotlight + Tracing Cher's life from her childhood stage fright to her rise as an iconic star in music, TV and movies. + + Ashley Pearson + Jennifer Bickerdike + Sophie Wilkinson + + Specials + Documentary + + + + Dolly Parton: Queen of Country + The story of multi-award winning country performer Dolly Parton. + + Stephanie J. Block + Kristyn Burtt + Marc Kudisch + + Specials + Documentary + + + TV14 + + + + Madonna: Goddess of Pop + Madonna discusses her early work and the controversies she caused in her rise to stardom. + + Madonna + + 2012 + Movies + Documentary + + + TVG + + + + FM Special 12 Greatest Divas of Pop + Documentary + + + TV14 + + + + J. Lo: Self Made + Relive Jennifer Lopez's iconic journey from Bronx Fly Girl to global icon, performer, and business mogul. + Specials + Documentary + + + TV14 + + + + Amy Winehouse: The Price of Fame + The success of singer-songwriter Amy Winehouse and the price she paid for fame, including life-threatening addiction and constant lawsuits. + Specials + Documentary + + + + Elton John: Becoming Rocketman + Exploring the career of Elton John, one of the most successful musicians of the past century. + + Sid Griffin + Ashley Pearson + + Specials + Documentary + + + + Sugar and Toys + Divisive + Siri and Alexa fight to win Kyle's heart; the plight of a non-playable video game character; a Telenovela play set; pop-worshipping ponies start static with other pop idols' fan girls. + Comedy + + + TVMA + + + + Sugar and Toys + Verified + It's a wild new twist on Saturday morning cartoons, hang with host Kyle and crash the late-night cartoon party. + Comedy + + + TVMA + + + + Sugar and Toys + Superduper Kyle's Stay At Home Staycation + A new twist on Saturday morning cartoons, with all the sugar but a lot less sweet. + Comedy + + + TVMA + + + + The Hollywood Puppet Show + Teyana Taylor and Jhene Aiko + Teyana Taylor makes a trip to the bathroom and gives birth to her firstborn on the tile floor; Jhené Aiko and her boyfriend get lost on a hike in Hawaii and battle the elements to stay alive. + Reality TV + Comedy + + + TV14 + + + + The Hollywood Puppet Show + Lil Jon and Cam'ron + Lil Jon and Shawty get catfished in Europe; Cam'ron is hunted by groupies. + Reality TV + Comedy + + + TV14 + + + + The Hollywood Puppet Show + The Fat Jewish and King Bach + Fat Jewish rescues a damsel in distress, who just happens to be the world's hottest supermodel; King Bach finds himself in a set of bizarre coincidences leading to a movie premier, a car accident and love re-born. + Reality TV + Comedy + + + TV14 + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Close Up + Jennifer Lopez + A profile of singer-actress Jennifer Lopez, who has sold 80 million records while grossing $2.9 billion in films; in 2001, Lopez becomes the first woman to have a number one album and film in the same week. + Performing Arts + + + TVPG + + + + Close Up + Brad Pitt + A collection of intimate portraits of some of the biggest names in Hollywood, including actors, film directors and producers. + Performing Arts + + + TVPG + + + + Latino Laugh Festival: The Show + Stand up comedy. + Comedy + Variety + + + TVPG + + + + Stand Up & Deliver + Comics perform stand-up routines. Julissa Bermudez and Jose Sarduy host. + Comedy + + + TV14 + + + + Stand Up & Deliver + Comics perform stand-up routines. Julissa Bermudez and Jose Sarduy host. + Comedy + + + TV14 + + + + Urban Jungle + Rude Awakening + The padrinos rattle the contestants with a surprise 6:00am visit. + Reality TV + + + TV14 + + + + G-Thing + I Need a Plane + G needs an airplane for a video shoot; Three Kings threaten to cut G's funding. + Reality TV + Music + + + TVPG + + + + G-Thing + Beefin' + G Fella's childhood friend posts a viral video harmful to G. + Reality TV + Music + + + TVPG + + + + G-Thing + Goomahs + G's wife is not pleased about the subject matter of his newest video. + Reality TV + Music + + + TVPG + + + + G-Thing + G is Shot + G Fella thinks getting shot will be good for his career. + Reality TV + Music + + + TVPG + + + + The Rolling Stones: Rock Royalty + Two old friends bumping into each other at a train station in England leads to formation of the Rolling Stones and the band's enduring success in music and business. + Specials + Documentary + + + + Close Up + A collection of intimate portraits of some of the biggest names in Hollywood, including actors, film directors and producers. + Performing Arts + + + TVPG + + + + Close Up + Matthew McConaughey + A collection of intimate portraits of some of the biggest names in Hollywood, including actors, film directors and producers. + Performing Arts + + + TVPG + + + + Freddie Mercury: The Ultimate Showman + The story of Queen's lead singer, Freddie Mercury. + + Eric Hall + Paul Watts + Rami Malek + + Specials + Documentary + + + TVG + + + + G-Thing + Giovanni's Pizza Commercial + Suit and Knuckles battle; G gets an offer to shoot a commercial. + Reality TV + Music + + + TVPG + + + + G-Thing + Sensitive Italian Male + G and Johnny are distracted by their wives doing a nude photo shoot. + Reality TV + Music + + + TVPG + + + + G-Thing + Into the Woods + G Fella wants to throw a release party for his new album, but it promises to be an expensive affair. + Reality TV + Music + + + + G-Thing + Finale + G-Fella tries to get New York's hottest DJ to attend his release party; G-Fella's first video. + Reality TV + Music + + + TVPG + + + + Bruce Springsteen: Born to Rock + Following electrifying rock star Bruce Springsteen's career from the Jersey Shore to sold-out live performances in stadiums around the globe. + + Jeremy Vine + Jeff Weiss + Laura Barton + + Specials + Documentary + + + + David Bowie: Out of This World + Few artists marked the 20th century like David Bowie marked it. He was an astonishing performer. + + David Bowie + + 2021 + Movies + Documentary + + + + The Beatles: In the Life + The Beatles took the world by storm in the 1960s and are still the best-selling band of all time with 183 million sales worldwide. + + Jennifer Bickerdike + Sid Griffin + Tony Calder + + Specials + Documentary + + + + Stevie Nicks: Wild at Heart + For decades, Stevie Nicks has fronted one of the most successful bands in history, resurrecting them from the ashes; even with the trials and tribulations of being a member of Fleetwood Mac, Stevie has remained an iconic role model. + Specials + Documentary + + + + George Michael: Easy to Pretend + After achieving fame with Wham! in the 1980s, singer George Michael becomes a successful solo artist. + + George Michael + Paul Gambaccini + Mike Reid + + Specials + Documentary + + + + Freddie Mercury: The Ultimate Showman + The story of Queen's lead singer, Freddie Mercury. + + Eric Hall + Paul Watts + Rami Malek + + Specials + Documentary + + + TVG + + + + Freddie Mercury: The Ultimate Showman + The story of Queen's lead singer, Freddie Mercury. + + Eric Hall + Paul Watts + Rami Malek + + Specials + Documentary + + + TVG + + + + Metallica: Masters of Metal + With over 100 million record sales worldwide, Metallica is one of the most commercially successful bands of all time. + Specials + Documentary + + + TV14 + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Amazing Closet Makeovers! 70% more space! + Up to 70% more closet space in seconds with Ruby Space Triangles! + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Close Up + Ben Affleck + Actor-filmmaker Ben Affleck. + Performing Arts + + + + Close Up + Matthew McConaughey + A collection of intimate portraits of some of the biggest names in Hollywood, including actors, film directors and producers. + Performing Arts + + + TVPG + + + + Latino Laugh Festival: The Show + All Star Latino Comedian Special + Noe Gonzalez explains why cell phones are the modern day ball and chain; Carlos Alazraqui discusses his theory on getting older. + Comedy + Variety + + + TV14 + + + + Stand Up & Deliver + With Gina Brillon + Headliner Gina Brillon sings, writes, acts and tells gut-busting original jokes. Watch hosts Julissa Bermudez and Jose Sarduy welcome her to Cabo, then set the stage for comedy kingpins Mike Gambino, Aaron Kleiber and Vladmir Caamano. + Comedy + + + TV14 + + + + Stand Up & Deliver + With Joe DeRosa + Hosts Julissa Bermudez and Jose Sarduy are throwing a massive comedy fiesta with Cabo faves Heather Snow, Cisco and Jason Love. Then, watch headliner Joe DeRosa heat things up with rapid-fire jokes and live audience riffs. + + Joe DeRosa + + Comedy + + + TV14 + + + + Urban Jungle + Cold Leftovers + Two evicted housemates share a chilly ride home, while a remaining contestant turns on a former ally. + Reality TV + + + TV14 + + + + Curvy Girls + Flaunt It + Full-figure fashion's Latina models Ivory, Denise and LornaLitz face uncompromising shoots, risky agent juggling, overbearing exes and fierce competition. + Reality TV + Fashion + + + TV14 + + + + Curvy Girls + Too Much Sugar + Lorna reaps the rewards of having a sugar daddy; Denise tries her hand at video hosting; the drama explodes like fireworks at Ivory's birthday bash. + Reality TV + Fashion + + + TV14 + + + + Curvy Girls + Daters & Haters + Denise dates Ivory's brother, but is shocked by a surprise announcement by her ex; Ivory tries online dating; Lorna receives some devastating news. + Reality TV + Fashion + + + TV14 + + + + Curvy Girls + Nude Attitude + Ivory, Lorna and Rosie compete for the same nude editorial shoot; the girls decide to give speed dating a try. + Reality TV + Fashion + + + TV14 + + + + Jennifer Aniston: More Than Friends + Rising to fame in the 1990s, Jennifer Aniston is still as relatable as the girl next door, Rachel Green. + Specials + Biography + + + TVPG + + + + Close Up + Morgan Freeman + The life and career of actor Morgan Freeman. + Biography + + + + Close Up + Drew Barrymore + Drew Barrymore. + Biography + + + + The Beatles: In the Life + The Beatles took the world by storm in the 1960s and are still the best-selling band of all time with 183 million sales worldwide. + + Jennifer Bickerdike + Sid Griffin + Tony Calder + + Specials + Documentary + + + + Transcendent + Family Ties + As Xristina starts making plans for motherhood, she questions her relationship with Rico; Nya reaches her limit with the feuding ladies of Asia SF. + Reality TV + Documentary + + + TV14 + + + + Transcendent + Forthcoming + The ladies of Asia SF head to wine country to try to mend their friendships; Nya tracks down a sister she hasn't seen in years; a blowup at Twitter headquarters leads to a dramatic decision. + Reality TV + Documentary + + + TV14 + + + + Transcendent + Worth It + Nya's boyfriend may be moving too fast and the owners present her with a new opportunity. + Reality TV + Documentary + + + TV14 + + + + Transcendent + Out With the Old, In With the New + Bambiana turns an internet flirtation into a dinner date in her quest to find true love in time for her birthday; Xristina re-connects with an old friend. + Reality TV + Documentary + + + TV14 + + + + Close Up + Michael Douglas + The life and career of various celebrities. + Biography + + + + Close Up + Al Pacino + The life and career of various celebrities. + Biography + + + + Lil Wayne: Non-Compliant + The story of Lil Wayne and his uncontested rise to superstardom. + Specials + Documentary + + + + Tupac & Biggie: Worlds Collide + Presenting the stories of rappers and rivals Tupac Shakur and Biggie Smalls. + Specials + Documentary + + + + Snoop Dogg: Uncaged + The story and legacy of Snoop Dogg; from the 1990s hip-hop scene to his status as a pop culture icon. + Specials + Documentary + + + + Elton John: Becoming Rocketman + Exploring the career of Elton John, one of the most successful musicians of the past century. + + Sid Griffin + Ashley Pearson + + Specials + Documentary + + + + Eminem AKA + Interviews with Eminem's friends, family and others who knew him in his formulative years. + Specials + Documentary + + + + Dr. Dre: Beat by Beat + Presenting the story of one of the founding fathers of gangsta rap, Dr. Dre. + Specials + Documentary + + + + Dr. Dre: Beat by Beat + Presenting the story of one of the founding fathers of gangsta rap, Dr. Dre. + Specials + Documentary + + + + FM Special 8 Most Iconic Rappers + A musical journey counting down the eight most iconic rappers with unforgettable performance highlights, interviews and behind the scenes. + Documentary + + + TVPG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Close Up + Morgan Freeman + The life and career of actor Morgan Freeman. + Biography + + + + Close Up + Drew Barrymore + Drew Barrymore. + Biography + + + + Latino Laugh Festival: The Show + All Star Latino Comedian Special + Noe Gonzalez explains why cell phones are the modern day ball and chain; Carlos Alazraqui discusses his theory on getting older. + Comedy + Variety + + + TV14 + + + + Stand Up & Deliver + With Shelagh Ratner + Hosts Julissa Bermudez and Jose Sarduy welcome headliner Shelagh Ratner; Aida Rodriguez, Jimmy D, Rick Rome, Gilbert Esquivel and Casey Balsham perform. + Comedy + + + TV14 + + + + Stand Up & Deliver + With Ace Guillen + Ace Guillen; Aiko Tanaka; Keu Reyes; Jackie Fabulous; Josh Adam Myers. + Comedy + + + TV14 + + + + Urban Jungle + Maid to Order + The contestants take turns cleaning a home in Beverly Hills. + Reality TV + + + TV14 + + + + Transcendent + Family Ties + As Xristina starts making plans for motherhood, she questions her relationship with Rico; Nya reaches her limit with the feuding ladies of Asia SF. + Reality TV + Documentary + + + TV14 + + + + Transcendent + Forthcoming + The ladies of Asia SF head to wine country to try to mend their friendships; Nya tracks down a sister she hasn't seen in years; a blowup at Twitter headquarters leads to a dramatic decision. + Reality TV + Documentary + + + TV14 + + + + Transcendent + Worth It + Nya's boyfriend may be moving too fast and the owners present her with a new opportunity. + Reality TV + Documentary + + + TV14 + + + + Transcendent + Out With the Old, In With the New + Bambiana turns an internet flirtation into a dinner date in her quest to find true love in time for her birthday; Xristina re-connects with an old friend. + Reality TV + Documentary + + + TV14 + + + + Adam Sandler: Funny Guy + An inside story on the actor, comedian, screenwriter, producer, husband, and father. + Specials + Biography + + + + Close Up + Jennifer Lopez + A profile of singer-actress Jennifer Lopez, who has sold 80 million records while grossing $2.9 billion in films; in 2001, Lopez becomes the first woman to have a number one album and film in the same week. + Performing Arts + + + TVPG + + + + Close Up + Sandra Bullock + A collection of intimate portraits of some of the biggest names in Hollywood, including actors, film directors and producers. + Performing Arts + + + TVPG + + + + The Rolling Stones: Rock Royalty + Two old friends bumping into each other at a train station in England leads to formation of the Rolling Stones and the band's enduring success in music and business. + Specials + Documentary + + + + Fuse Excellent Adventure + Bolkow Castle Party + Three days of Goth, new wave and dark electro held at the 16th century Bolkow Castle in Poland. + Music + + + TV14 + + + + Fuse Excellent Adventure + Gnawa Music Festival + A celebration of the music of the Gnawas held in Essaouira, Morocco. + Music + + + TV14 + + + + Fuse Excellent Adventure + Waken Open Air Festival + Every year the small German town of Waken's population surges from 2,000 to 72,000 as it hosts the largest Metal festival in the world. + Music + + + TV14 + + + + Fuse Excellent Adventure + Ibiza, Spain + The small island of Ibiza offers all-night parties. + Music + + + TV14 + + + + Close Up + Catherine Zeta Jones + The life and career of various celebrities. + Biography + + + + Close Up + Demi Moore + A collection of intimate portraits of some of the biggest names in Hollywood, including actors, film directors and producers. + Performing Arts + + + TVPG + + + + The Beatles: In the Life + The Beatles took the world by storm in the 1960s and are still the best-selling band of all time with 183 million sales worldwide. + + Jennifer Bickerdike + Sid Griffin + Tony Calder + + Specials + Documentary + + + + Las noticias + Programa informativo donde se presentan los sucesos más importantes y recientes de las noticias mexicanas e internacionales. + News + + + + Las noticias + Programa informativo donde se presentan los sucesos más importantes y recientes de las noticias mexicanas e internacionales. + News + + + + Las noticias + Programa informativo donde se presentan los sucesos más importantes y recientes de las noticias mexicanas e internacionales. + News + + + + Retomando A... + Entrevistas con los grandes artistas e intelectuales de México y el mundo. + + Javier Aranda Luna + + News + + + + Las noticias + Programa informativo donde se presentan los sucesos más importantes y recientes de las noticias mexicanas e internacionales. + News + + + + Las noticias + Programa informativo donde se presentan los sucesos más importantes y recientes de las noticias mexicanas e internacionales. + News + + + + Historias por Contar + Historias de vida o acontecimientos que marcan la vida de las personas. + Performing Arts + + + + Historias por Contar + Historias de vida o acontecimientos que marcan la vida de las personas. + Performing Arts + + + + Es la hora de opinar + Se analizan y debaten temas de coyuntura del acontecer nacional e internacional, con colaboradores reconocidos en el círculo rojo. + News Magazine + + + + Descubra una solución natural para el dolor + Connie Craig-Carrol y el fundador Ken Meares investigan OmegaXL, una solución totalmente natural para el dolor articular causado por la inflamación. + Paid Program + + + + Descubra una solución natural para el dolor + Connie Craig-Carrol y el fundador Ken Meares investigan OmegaXL, una solución totalmente natural para el dolor articular causado por la inflamación. + Paid Program + + + + Descubra una solución natural para el dolor + Connie Craig-Carrol y el fundador Ken Meares investigan OmegaXL, una solución totalmente natural para el dolor articular causado por la inflamación. + Paid Program + + + + Descubra una solución natural para el dolor + Connie Craig-Carrol y el fundador Ken Meares investigan OmegaXL, una solución totalmente natural para el dolor articular causado por la inflamación. + Paid Program + + + + Descubra una solución natural para el dolor + Connie Craig-Carrol y el fundador Ken Meares investigan OmegaXL, una solución totalmente natural para el dolor articular causado por la inflamación. + Paid Program + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Las noticias + Programa informativo donde se presentan los sucesos más importantes y recientes de las noticias mexicanas e internacionales. + News + + + + Las noticias + Programa informativo donde se presentan los sucesos más importantes y recientes de las noticias mexicanas e internacionales. + News + + + + Las noticias + Programa informativo donde se presentan los sucesos más importantes y recientes de las noticias mexicanas e internacionales. + News + + + + Las noticias + Programa informativo donde se presentan los sucesos más importantes y recientes de las noticias mexicanas e internacionales. + News + + + + Agenda pública + Periodistas y especialistas analizan la información pública. + Regular + + + + Retomando A... + Entrevistas con los grandes artistas e intelectuales de México y el mundo. + + Javier Aranda Luna + + News + + + + Las noticias + Programa informativo donde se presentan los sucesos más importantes y recientes de las noticias mexicanas e internacionales. + News + + + + Las noticias + Programa informativo donde se presentan los sucesos más importantes y recientes de las noticias mexicanas e internacionales. + News + + + + Punto y contrapunto + Un debate con las personalidades jóvenes de la opinión pública sobre temas nacionales e internacionales de interés. + News + + + + Las noticias + Programa informativo donde se presentan los sucesos más importantes y recientes de las noticias mexicanas e internacionales. + News + + + + Las noticias + Programa informativo donde se presentan los sucesos más importantes y recientes de las noticias mexicanas e internacionales. + News + + + + Las noticias + Programa informativo donde se presentan los sucesos más importantes y recientes de las noticias mexicanas e internacionales. + News + + + + Las noticias + Programa informativo donde se presentan los sucesos más importantes y recientes de las noticias mexicanas e internacionales. + News + + + + Las noticias + Programa informativo donde se presentan los sucesos más importantes y recientes de las noticias mexicanas e internacionales. + News + + + + Sin filtro + Un programa de análisis político nacional e internacional donde quienes opinan son jóvenes universitarios, independientes, críticos y totalmente sin filtro. + Talk Shows + Discussion + + + + Las noticias + Programa informativo donde se presentan los sucesos más importantes y recientes de las noticias mexicanas e internacionales. + News + + + + Las noticias + Programa informativo donde se presentan los sucesos más importantes y recientes de las noticias mexicanas e internacionales. + News + + + + Alebrijes Águila o Sol + Análisis de la pérdida masiva de empleos, entrevista con el Presidente de la Comisión de Hacienda. + News Magazine + + + + Las noticias + Programa informativo donde se presentan los sucesos más importantes y recientes de las noticias mexicanas e internacionales. + News + + + + Las noticias + Programa informativo donde se presentan los sucesos más importantes y recientes de las noticias mexicanas e internacionales. + News + + + + Sin filtro + Un programa de análisis político nacional e internacional donde quienes opinan son jóvenes universitarios, independientes, críticos y totalmente sin filtro. + Talk Shows + Discussion + + + + Sin filtro + Un programa de análisis político nacional e internacional donde quienes opinan son jóvenes universitarios, independientes, críticos y totalmente sin filtro. + Talk Shows + Discussion + + + + Es la hora de opinar + Se analizan y debaten temas de coyuntura del acontecer nacional e internacional, con colaboradores reconocidos en el círculo rojo. + News Magazine + + + + Las noticias + Programa informativo donde se presentan los sucesos más importantes y recientes de las noticias mexicanas e internacionales. + News + + + + Las noticias + Noticias nacionales, internacionales y deportes. + News + + + + Estrictamente personal + Un programa de información, análisis e investigación que aborda lo más relevante y significativo del día. + News Magazine + Discussion + + + + Expreso de la mañana + Una cita con el humor, los valores y la irreverencia junto a la oportunidad y la precisión informativa. + News Magazine + Performing Arts + + + + El Noticiero, con Karla Iberia Sánchez + La información más completa de la actualidad nacional e internacional. + News + + + + Paralelo 23 + Noticiero que informa al tiempo que analiza los eventos que, al momento, afectan la vida pública de México y el mundo. + News + + + + Las noticias + Noticias nacionales e internacionales y deportes. + News + + + + Noticias Mx + Se proyecta la información más relevante de la Ciudad de México y área metropolitana. Con periodistas ubicados en puntos estratégicos de todas las delegaciones para así dar a conocer al público una cobertura amplia. + News + + + + Las Noticias de las Tres + Con Eduardo Salazar. + News + + + + Las noticias + Programa informativo donde se presentan los sucesos más importantes y recientes de las noticias mexicanas e internacionales. + News + + + + Las noticias + Noticias nacionales, internacionales y deportes. + News + + + + Las noticias + Programa informativo donde se presentan los sucesos más importantes y recientes de las noticias mexicanas e internacionales. + News + + + + Las noticias + Noticiero con todas las novedades y la información. + News + + + + En 1 hora + Un espacio en el que se transmiten noticias de actualidad. + News + + + + AMX con José Luis Arévalo + Un espacio para mantenerse informado con las noticias más relevantes del panorama actual. + News + + + + Las noticias + Noticias nacionales, internacionales y deportes. + News + + + + Es la hora de opinar + Se analizan y debaten temas de coyuntura del acontecer nacional e internacional, con colaboradores reconocidos en el círculo rojo. + News Magazine + + + + Es la hora de opinar + Se analizan y debaten temas de coyuntura del acontecer nacional e internacional, con colaboradores reconocidos en el círculo rojo. + News Magazine + + + + Las noticias + Noticias nacionales, internacionales y deportes. + News + + + + Las noticias + Programa informativo donde se presentan los sucesos más importantes y recientes de las noticias mexicanas e internacionales. + News + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Es la hora de opinar + Se analizan y debaten temas de coyuntura del acontecer nacional e internacional, con colaboradores reconocidos en el círculo rojo. + News Magazine + + + + Las noticias + Programa informativo donde se presentan los sucesos más importantes y recientes de las noticias mexicanas e internacionales. + News + + + + Las noticias + Noticias nacionales, internacionales y deportes. + News + + + + Estrictamente personal + Un programa de información, análisis e investigación que aborda lo más relevante y significativo del día. + News Magazine + Discussion + + + + Expreso de la mañana + Una cita con el humor, los valores y la irreverencia junto a la oportunidad y la precisión informativa. + News Magazine + Performing Arts + + + + El Noticiero, con Karla Iberia Sánchez + La información más completa de la actualidad nacional e internacional. + News + + + + Paralelo 23 + Noticiero que informa al tiempo que analiza los eventos que, al momento, afectan la vida pública de México y el mundo. + News + + + + Las noticias + Noticias nacionales e internacionales y deportes. + News + + + + Noticias Mx + Se proyecta la información más relevante de la Ciudad de México y área metropolitana. Con periodistas ubicados en puntos estratégicos de todas las delegaciones para así dar a conocer al público una cobertura amplia. + News + + + + Las Noticias de las Tres + Con Eduardo Salazar. + News + + + + Las noticias + Noticias nacionales, internacionales y deportes. + News + + + + Las noticias + Noticias nacionales, internacionales y deportes. + News + + + + Las noticias + Noticias nacionales, internacionales y deportes. + News + + + + Las noticias + Noticias nacionales, internacionales y deportes. + News + + + + En 1 hora + Un espacio en el que se transmiten noticias de actualidad. + News + + + + AMX con José Luis Arévalo + Un espacio para mantenerse informado con las noticias más relevantes del panorama actual. + News + + + + Las noticias + Noticias nacionales, internacionales y deportes. + News + + + + Es la hora de opinar + Se analizan y debaten temas de coyuntura del acontecer nacional e internacional, con colaboradores reconocidos en el círculo rojo. + News Magazine + + + + Es la hora de opinar + Se analizan y debaten temas de coyuntura del acontecer nacional e internacional, con colaboradores reconocidos en el círculo rojo. + News Magazine + + + + Las noticias + Noticias nacionales, internacionales y deportes. + News + + + + Las noticias + Programa informativo donde se presentan los sucesos más importantes y recientes de las noticias mexicanas e internacionales. + News + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Es la hora de opinar + Se analizan y debaten temas de coyuntura del acontecer nacional e internacional, con colaboradores reconocidos en el círculo rojo. + News Magazine + + + + Las noticias + Programa informativo donde se presentan los sucesos más importantes y recientes de las noticias mexicanas e internacionales. + News + + + + Las noticias + Noticias nacionales, internacionales y deportes. + News + + + + Estrictamente personal + Un programa de información, análisis e investigación que aborda lo más relevante y significativo del día. + News Magazine + Discussion + + + + Expreso de la mañana + Una cita con el humor, los valores y la irreverencia junto a la oportunidad y la precisión informativa. + News Magazine + Performing Arts + + + + El Noticiero, con Karla Iberia Sánchez + La información más completa de la actualidad nacional e internacional. + News + + + + Paralelo 23 + Noticiero que informa al tiempo que analiza los eventos que, al momento, afectan la vida pública de México y el mundo. + News + + + + Las noticias + Noticias nacionales e internacionales y deportes. + News + + + + Noticias Mx + Se proyecta la información más relevante de la Ciudad de México y área metropolitana. Con periodistas ubicados en puntos estratégicos de todas las delegaciones para así dar a conocer al público una cobertura amplia. + News + + + + Las Noticias de las Tres + Con Eduardo Salazar. + News + + + + Las noticias + Noticias nacionales, internacionales y deportes. + News + + + + Melbourne Demons vs. Brisbane Lions + Brisbane Lions vs. Melbourne Demons + Coverage of women's Australian rules football. + Sports + Australian Rules Football + + + + St. Kilda Saints vs. Carlton Blues + Carlton Blues vs. St. Kilda Saints + Coverage of women's Australian rules football. + Sports + Australian Rules Football + + + + An American Rugby Odyssey + An in-depth look at American rugby. + Sports + Rugby + + + TVPG + + + + Pacific Championships + Men's Pacific Bowl, Final: Fiji vs. Papua New Guinea + From PNG Football Stadium in Port Moresby, National Capital District, Papua New Guinea. + Sports + Rugby + + + + Pacific Championships + Men's Pacific Bowl, Final: Fiji vs. Papua New Guinea + From PNG Football Stadium in Port Moresby, National Capital District, Papua New Guinea. + Sports + Rugby + + + + Khaleej FC vs. Al-Nassr FC + Al Nassr vs. Khaleej FC + From King Saud University Stadium, in Saudi Arabia. + Sports + Soccer + + + + Academy Dreams: Leeds United + Be Good Teammates + A unique insight into the training center of Premier League club Leeds United. + Sports + Soccer + + + + Academy Dreams: Leeds United + Breaking Through + A unique insight into the training center of Premier League club Leeds United. + Sports + Soccer + + + + Academy Dreams: Leeds United + Frustrations + A unique insight into the training center of Premier League club Leeds United. + Sports + Soccer + + + + AS Roma vs. Juventus + Juventus FC vs. Roma + From Ale & Ricky - Juventus Training Center in Vinovo, Italy. + Sports + Soccer + + + + Academy Dreams: Leeds United + Fight Back + A unique insight into the training center of Premier League club Leeds United. + Sports + Soccer + + + + Academy Dreams: Leeds United + All Change + A unique insight into the training center of Premier League club Leeds United. + Sports + Soccer + + + + Academy Dreams: Leeds United + Fight For Survival + A unique insight into the training center of Premier League club Leeds United. + Sports + Soccer + + + + Fussballclub Sudtirol-Alto Adige vs. Parma + Parma vs. FC Südtirol Bolzano Bozen + From Ennio Tardini Stadium in Parma, Parma, Italy. + Sports + Soccer + + + + Gold Cup 2023 - The Stories Of + Behind-the-scenes stories from the 2023 Gold Cup. + Sports + Soccer + + + + Al-Riyadh vs. Al-Ahli Saudi FC + Al Ahli vs. Al-Riyadh + From King Abdullah Sports City in Jeddah, Makkah, Saudi Arabia. + Sports + Soccer + + + + Palermo vs. Sampdoria + U.C. Sampdoria vs. Palermo + From Luigi Ferraris Stadium in Genoa, Liguria, Italy. + Sports + Soccer + + + + Como 1907 SRL vs. AC Pisa 1909 + AC Pisa 1909 vs. Como + From Arena Garibaldi- Romeo Anconetani Stadium in Pisa, Tuscany, Italy. + Sports + Soccer + + + + Fussballclub Sudtirol-Alto Adige vs. Parma + Parma vs. FC Südtirol Bolzano Bozen + From Ennio Tardini Stadium in Parma, Parma, Italy. + Sports + Soccer + + + + Querétaro vs. Juárez + Juárez vs. Querétaro + From Olimpico Benito Juarez in Ciudad Juárez, Chihuahua, Mexico. + Sports + Soccer + + + + An American Rugby Odyssey + An in-depth look at American rugby. + Sports + Rugby + + + TVPG + + + + St. Kilda Saints vs. Carlton Blues + Carlton Blues vs. St. Kilda Saints + Coverage of women's Australian rules football. + Sports + Australian Rules Football + + + + St. Kilda Saints vs. Carlton Blues + Carlton Blues vs. St. Kilda Saints + Coverage of women's Australian rules football. + Sports + Australian Rules Football + + + + Richmond Tigers vs. Collingwood Magpies + Collingwood Magpies vs. Richmond Tigers + From Olympic Park Oval in Melbourne, Victoria, Australia. + Sports + Australian Rules Football + + + + Adelaide Crows vs. West Coast Eagles + West Coast Eagles vs. Adelaide Crows + Coverage of women's Australian rules football. + Sports + Australian Rules Football + + + + Querétaro vs. Juárez + Juárez vs. Querétaro + From Olimpico Benito Juarez in Ciudad Juárez, Chihuahua, Mexico. + Sports + Soccer + + + + Al-Riyadh vs. Al-Ahli Saudi FC + Al Ahli vs. Al-Riyadh + From King Abdullah Sports City in Jeddah, Makkah, Saudi Arabia. + Sports + Soccer + + + + Khaleej FC vs. Al-Nassr FC + Al Nassr vs. Khaleej FC + From King Saud University Stadium, in Saudi Arabia. + Sports + Soccer + + + + Al-Ittihad Club vs. Al-Shabab FC + Al-Shabab FC vs. Al-Ittihad Club + From King Fahd International Stadium in , , Saudi Arabia. + Sports + Soccer + + + + Forge FC vs. Cavalry FC + Forge FC at Cavalry FC + From ATCO Field in Calgary, Alberta. + Sports + Soccer + + + + Pacific FC vs. Cavalry FC + Pacific FC at Cavalry FC + From ATCO Field in Calgary, Alberta. + Sports + Soccer + + + + Cavalry FC vs. Forge FC + Cavalry FC at Forge FC + Final. + Sports + Soccer + + + + Pacific Championships + Men's Pacific Cup, Final: Australia vs. New Zealand + From Waikato Stadium in Hamilton, Waikato, New Zealand. + Sports + Rugby + + + + Pacific Championships + Men's Pacific Bowl, Final: Fiji vs. Papua New Guinea + From PNG Football Stadium in Port Moresby, National Capital District, Papua New Guinea. + Sports + Rugby + + + + Hawthorn Hawks vs. Geelong Cats + Geelong Cats vs Hawthorn Hawks + From GMHBA Stadium in South Geelong, Victoria, Australia. + Sports + Australian Rules Football + + + + Hawthorn Hawks vs. Geelong Cats + Geelong Cats vs Hawthorn Hawks + From GMHBA Stadium in South Geelong, Victoria, Australia. + Sports + Australian Rules Football + + + + Essendon Bombers vs. Gold Coast Suns + Gold Coast Suns vs. Essendon Bombers + Coverage of women's Australian rules football. + Sports + Australian Rules Football + + + + North Melbourne Kangaroos vs. Western Bulldogs + Western Bulldogs vs North Melbourne Kangaroos + From Whitten Oval in Footscray, Victoria, Australia. + Sports + Australian Rules Football + + + + Como 1907 SRL vs. AC Pisa 1909 + AC Pisa 1909 vs. Como + From Arena Garibaldi- Romeo Anconetani Stadium in Pisa, Tuscany, Italy. + Sports + Soccer + + + + Palermo vs. Sampdoria + U.C. Sampdoria vs. Palermo + From Luigi Ferraris Stadium in Genoa, Liguria, Italy. + Sports + Soccer + + + + Fussballclub Sudtirol-Alto Adige vs. Parma + Parma vs. FC Südtirol Bolzano Bozen + From Ennio Tardini Stadium in Parma, Parma, Italy. + Sports + Soccer + + + + Querétaro vs. Juárez + Juárez vs. Querétaro + From Olimpico Benito Juarez in Ciudad Juárez, Chihuahua, Mexico. + Sports + Soccer + + + + A.C. Milan Women vs. Fiorentina Women's FC + Fiorentina Women's FC vs. A.C. Milan Women + From Bruno Buozzi-Due Strade Municipal Field, Florence, Italy. + Sports + Soccer + + + + AS Roma vs. Juventus + Juventus FC vs. Roma + From Ale & Ricky - Juventus Training Center in Vinovo, Italy. + Sports + Soccer + + + + Factory of Dreams: Benfica + Initiation + Benfica, one of the elite teams in European football, also has one of the most advanced and respected academies in the world, producing world-class talent every year. This series goes behind the scenes of Benfica's modern training facilities. + Documentary + + + TVPG + + + + Factory of Dreams: Benfica + Training the Benfica Way + Benfica, one of the elite teams in European football, also has one of the most advanced and respected academies in the world, producing world-class talent every year. This series goes behind the scenes of Benfica's modern training facilities. + Documentary + + + TVPG + + + + Factory of Dreams: Benfica + The Scout + Benfica, one of the elite teams in European football, also has one of the most advanced and respected academies in the world, producing world-class talent every year. This series goes behind the scenes of Benfica's modern training facilities. + Documentary + + + TVPG + + + + Factory of Dreams: Benfica + Making It + Benfica, one of the elite teams in European football, also has one of the most advanced and respected academies in the world, producing world-class talent every year. This series goes behind the scenes of Benfica's modern training facilities. + Documentary + + + TVPG + + + + Melbourne Demons vs. Brisbane Lions + Brisbane Lions vs. Melbourne Demons + Coverage of women's Australian rules football. + Sports + Australian Rules Football + + + + St. Kilda Saints vs. Carlton Blues + Carlton Blues vs. St. Kilda Saints + Coverage of women's Australian rules football. + Sports + Australian Rules Football + + + + Adelaide Crows vs. West Coast Eagles + West Coast Eagles vs. Adelaide Crows + Coverage of women's Australian rules football. + Sports + Australian Rules Football + + + + Adelaide Crows vs. West Coast Eagles + West Coast Eagles vs. Adelaide Crows + Coverage of women's Australian rules football. + Sports + Australian Rules Football + + + + Greater Western Sydney Giants vs. Port Adelaide Power + Port Adelaide Power vs. Greater Western Sydney Giants + Coverage of women's Australian rules football. + Sports + Australian Rules Football + + + + Saudi Pro League Magazine + Matchday 12 + A roundup of soccer action from the Saudi Pro League. + Sports + Soccer + + + + Pacific Championships + Men's Pacific Cup, Final: Australia vs. New Zealand + From Waikato Stadium in Hamilton, Waikato, New Zealand. + Sports + Rugby + + + + Pacific Championships + Men's Pacific Bowl, Final: Fiji vs. Papua New Guinea + From PNG Football Stadium in Port Moresby, National Capital District, Papua New Guinea. + Sports + Rugby + + + + Melbourne Demons vs. Collingwood Magpies + Collingwood Magpies vs. Melbourne Demons + Qualifying Final. + Sports + Australian Rules Football + + + + Greater Western Sydney Giants vs. Collingwood Magpies + Collingwood Magpies vs. Greater Western Sydney Giants + Preliminary Final. + Sports + Australian Rules Football + + + + Brisbane Lions vs. Collingwood Magpies + Collingwood Magpies vs. Brisbane Lions + Grand Final. + Sports + Australian Rules Football + + + + Querétaro vs. Juárez + Juárez vs. Querétaro + From Olimpico Benito Juarez in Ciudad Juárez, Chihuahua, Mexico. + Sports + Soccer + + + + My Wife and Kids + The Kyles Go to Hawaii + Michael discovers the family's flight home from Hawaii leaves much earlier than he thought; Claire tries to hide her costly hotel charges. + + Damon Wayans + Tisha Campbell-Martin + George Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + The Anniversary + Janet thinks Michael plans to golf on their anniversary, but he arranges to have Brian McKnight sing for them at a surprise ceremony to renew their vows. + + Damon Wayans + Tisha Campbell-Martin + George Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Diary of a Mad Teen + Janet learns that Claire is thinking about having sex with her boyfriend; Jr. is an irresponsible driver. + + Damon Wayans + Tisha Campbell-Martin + George Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Claire's New Boyfriend + Rebellious Claire rejects the boyfriend her father likes and takes up with one he views with disfavor. + + Damon Wayans + Tisha Campbell-Martin + George Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Fighting Kyles + Michael and Jay give their bickering kids a taste of their own medicine, making them scared they're on the brink of breaking up. + + Damon Wayans + Tisha Campbell-Martin + George Gore II + + Sitcom + + + TVPG + + + + Sex Sells + I Need, Sexual Healing + Weezy and rapper Freddie Gibbs stretch more than their imaginations when Jet Setting Jasmine drops by to explore their kinks; Weezy and her mom learn how to cowgirl while strengthening their pelvic floor with sex therapist Tyomi Morgan. + Reality TV + + + TVMA + + + + Sex Sells + 3's a Blast + If two's company, then three's a blast when Weezy and Sauanas Jackson take their friendship beyond the next level and try out three-way dating, using modern tech and old-school advice. + Reality TV + + + TVMA + + + + Righteous Thieves + Annabel, the leader of a secret organization engaged in the recovery of priceless artwork, assembles a ragtag crew of art thieves to recover a Monet, Picasso, Degas, and Van Gogh stolen by Nazis during WWII. + + Cam Gigandet + Jaina Lee Ortiz + Lisa Vidal + + 2023 + Movies + Thriller + + + TVG + + + + My Wife and Kids + Sister Story + Michael's sister (Vivica A. Fox) visits and sparks a rivalry with Jay. + + Damon Wayans + Tisha Campbell-Martin + George Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Jr.'s Dating Dilemma + Michael's advice about women backfires when Jr. ends up with two dates to a dance; Jay dreams Michael is having an affair with Janet Jackson. + + Damon Wayans + Tisha Campbell-Martin + George Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Jay the Artist + When Michael inspires Jay's artistic side, she makes him pose for a nude painting that makes him the subject of everyone's jokes. + + Damon Wayans + Tisha Campbell-Martin + George Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Chair Man of the Board + Michael is caught by surprise when his childhood friend, Tommy, shows up for a visit in a wheelchair. + + Damon Wayans + Tisha Campbell-Martin + George Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Open Your Heart + Jay insists that Michael attend a couples seminar with her; Jr. and his friends try to make some extra money. + + Damon Wayans + Tisha Campbell-Martin + George Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + The Anniversary + Janet thinks Michael plans to golf on their anniversary, but he arranges to have Brian McKnight sing for them at a surprise ceremony to renew their vows. + + Damon Wayans + Tisha Campbell-Martin + George Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Blackout + Michael finally gets the house to himself when a blackout occurs. + + Damon Wayans + Tisha Campbell-Martin + George Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Man of the Year + Michael is disheartened when he does not win the Small Businessman of the Year award. + + Damon Wayans + Tisha Campbell-Martin + George Gore II + + Sitcom + + + TVPG + + + + Bodied + A progressive graduate student finds success and sparks outrage when his interest in battle rap as a thesis subject turns into a competitive obsession. + + Calum Worthy + Jackie Long + Rory Uphold + + 2017 + Movies + Comedy + + + + Sneakerheadz + Filmmakers David T. Friendly and Mick Partridge examine collectors who go to extreme lengths to acquire a prized pair of sneakers. + + Rob Dyrdek + DJ Clark Kent + Jeff Staple + + 2015 + Movies + Documentary + + + 3 + + + + Big Freedia Means Business + The Pilot + Freedia discusses new business ventures with Team Freedia, goes to an eyewear grand opening in Hollywood, records new songs, and shocks her team with an announcement. + Reality TV + + + TV14 + + + + Big Freedia Means Business + Clandestine Meeting + Team Freedia secretly meets to discuss Devon coming aboard; Freedia visits the site of Hotel Freedia and gives her team an ultimatum. + Reality TV + + + TV14 + + + + Bollywed + Everybody Loves a Party + Mom and Dad hope nostalgia will keep the kids from leaving the store when the Festival of South Asia makes its return. + Documentary + Reality TV + + + + Bollywed + Sweet Like Kuki + Kuki's sweet tooth has the family keeping a watchful eye on his diet, but for Kuki what they don't see won't hurt them. + Documentary + Reality TV + + + + Bollywed + Game On! + It's game on when a posters vs. mannequins debate sees the family on opposite sides of marketing techniques. + Documentary + Reality TV + + + + Bollywed + Divide and Conquer + Mom puts Chandni and Roop in charge of an important event; Chandan is put on ice while organizing a surprise for Kuki. + Documentary + Reality TV + + + + Bollywed + New Beginnings + Kuki is missing when the family prepares for its first solo fashion show and the clock ticks down to Diwali. + Documentary + Reality TV + + + + We Need to Talk About America + Football or Futbol + Taking on religion in America in the digital age; Jesus Trejo takes confessions; Tim Chantarangsu recalls getting freaky in youth group; plus, baby preachers. + Comedy + + + TV14 + + + + Buffy the Vampire Slayer + Never Kill a Boy on the First Date + As Buffy tries to behave like a normal girl on a date, the Master calls on a warrior vampire to destroy her. + + Sarah Michelle Gellar + Nicholas Brendon + Alyson Hannigan + + Drama + + + TVPG + + + + Buffy the Vampire Slayer + The Pack + Xander and a group of obnoxious students start acting strangely after entering a quarantined hyena exhibit at the zoo. + + Sarah Michelle Gellar + Nicholas Brendon + Alyson Hannigan + + Drama + + + TVPG + + + + Buffy the Vampire Slayer + Angel + Buffy can't deny her obsession with Angel, while Xander's frustration over his feelings for Buffy intensifies. + + Sarah Michelle Gellar + Nicholas Brendon + Alyson Hannigan + + Drama + + + TVPG + + + + Buffy the Vampire Slayer + I Robot, You Jane + Buffy and Giles face a demon spirit that has been trapped since the Dark Ages; Willow falls for a cyberbeau whom she met online. + + Sarah Michelle Gellar + Nicholas Brendon + Alyson Hannigan + + Drama + + + TVPG + + + + My Wife and Kids + Sister Story + Michael's sister (Vivica A. Fox) visits and sparks a rivalry with Jay. + + Damon Wayans + Tisha Campbell-Martin + George Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Jr.'s Dating Dilemma + Michael's advice about women backfires when Jr. ends up with two dates to a dance; Jay dreams Michael is having an affair with Janet Jackson. + + Damon Wayans + Tisha Campbell-Martin + George Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Jay the Artist + When Michael inspires Jay's artistic side, she makes him pose for a nude painting that makes him the subject of everyone's jokes. + + Damon Wayans + Tisha Campbell-Martin + George Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Chair Man of the Board + Michael is caught by surprise when his childhood friend, Tommy, shows up for a visit in a wheelchair. + + Damon Wayans + Tisha Campbell-Martin + George Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Open Your Heart + Jay insists that Michael attend a couples seminar with her; Jr. and his friends try to make some extra money. + + Damon Wayans + Tisha Campbell-Martin + George Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + The Anniversary + Janet thinks Michael plans to golf on their anniversary, but he arranges to have Brian McKnight sing for them at a surprise ceremony to renew their vows. + + Damon Wayans + Tisha Campbell-Martin + George Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Blackout + Michael finally gets the house to himself when a blackout occurs. + + Damon Wayans + Tisha Campbell-Martin + George Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Man of the Year + Michael is disheartened when he does not win the Small Businessman of the Year award. + + Damon Wayans + Tisha Campbell-Martin + George Gore II + + Sitcom + + + TVPG + + + + Malcolm in the Middle + Smunday + On Monday morning, Malcolm (Frankie Muniz) and his brothers convince their ailing mother (Jane Kaczmarek) that it's Sunday. + + Frankie Muniz + Erik Per Sullivan + Bryan Cranston + + Sitcom + + + TVPG + + + + Malcolm in the Middle + Water Park + The family goes to a water park, leaving Dewey (Erik Per Sullivan) at home with a no-nonsense baby sitter (guest star Bea Arthur). With Frankie Muniz, Jane Kaczmarek, Bryan Cranston and Justin Berfield. + + Frankie Muniz + Jane Kaczmarek + Bryan Cranston + + Sitcom + + + TVPG + + + + Malcolm in the Middle + Traffic Jam + Dewey continues to wander around lost while Malcolm and his family are stuck in an all-day traffic jam. + + Jane Kaczmarek + Bryan Cranston + Frankie Muniz + + Sitcom + + + TVPG + + + + Malcolm in the Middle + Lois' Birthday + Lois runs away from home after her husband forgets her birthday and the boys buy candy instead of a gift. + + Frankie Muniz + Jane Kaczmarek + Bryan Cranston + + Sitcom + + + TVPG + + + + Malcolm in the Middle + Dinner Out + Lois anticipates a civilized evening of adult conversation when she accepts a dinner invitation from Stevie's parents. + + Frankie Muniz + Jane Kaczmarek + Bryan Cranston + + Sitcom + + + TVPG + + + + Malcolm in the Middle + Casino + Hal, Malcolm and Reese wander into a desert artillery range after being banned from a casino for counting cards. + + Jane Kaczmarek + Bryan Cranston + Frankie Muniz + + Sitcom + + + TVPG + + + + Malcolm in the Middle + Convention + Malcolm and Reese (Frankie Muniz, Justin Berfield) compete against Dewey (Erik Per Sullivan) for the attentions of their beautiful baby sitter. + + Frankie Muniz + Jane Kaczmarek + Bryan Cranston + + Sitcom + + + TVPG + + + + Malcolm in the Middle + Robbery + Lois and her co-worker Craig are taken hostage at the drugstore; Hal brings home an armoire infested with bats. + + Frankie Muniz + Jane Kaczmarek + Bryan Cranston + + Sitcom + + + TVPG + + + + Malcolm in the Middle + Therapy + Malcolm fakes a mental breakdown to avoid the silly costumes and folk dancing during medieval week at school. + + Jane Kaczmarek + Bryan Cranston + Frankie Muniz + + Sitcom + + + TVPG + + + + Malcolm in the Middle + High School Play + When Malcolm takes a role in a play, his Krelboyne classmates must come to his rescue on opening night. + + Jane Kaczmarek + Bryan Cranston + Frankie Muniz + + Sitcom + + + TVPG + + + + Buffy the Vampire Slayer + Never Kill a Boy on the First Date + As Buffy tries to behave like a normal girl on a date, the Master calls on a warrior vampire to destroy her. + + Sarah Michelle Gellar + Nicholas Brendon + Alyson Hannigan + + Drama + + + TVPG + + + + Buffy the Vampire Slayer + The Pack + Xander and a group of obnoxious students start acting strangely after entering a quarantined hyena exhibit at the zoo. + + Sarah Michelle Gellar + Nicholas Brendon + Alyson Hannigan + + Drama + + + TVPG + + + + Buffy the Vampire Slayer + Angel + Buffy can't deny her obsession with Angel, while Xander's frustration over his feelings for Buffy intensifies. + + Sarah Michelle Gellar + Nicholas Brendon + Alyson Hannigan + + Drama + + + TVPG + + + + Buffy the Vampire Slayer + I Robot, You Jane + Buffy and Giles face a demon spirit that has been trapped since the Dark Ages; Willow falls for a cyberbeau whom she met online. + + Sarah Michelle Gellar + Nicholas Brendon + Alyson Hannigan + + Drama + + + TVPG + + + + Golden Delicious + When basketball-obsessed Aleks moves in across the street, Asian-Canadian teen Jake finds himself trying out for the basketball team to get his attention. + + Cardi Wong + Chris Carson + Parmiss Sehat + + 2022 + Movies + Drama + + + + T-Pain's School of Business + Find Your Inspiration + The future of esports; a cure for hangovers; a cat cafe. + Reality TV + Business + + + TV14 + + + + T-Pain's School of Business + Take Initiative + T-Pain visits a sex toy designer and builds a vibrator; he gets his hands on some rubber while customizing sneakers with a luxury shoe maker; T-Pain cooks chicken and waffles with a restaurant mogul. + Reality TV + Business + + + TV14 + + + + T-Pain's School of Business + The Glow Up + T-Pain learns how to go from rags to riches as he makes slime; he discovers secret menu items at restaurants around Los Angeles; T-Pain paints a pair of kicks. + Reality TV + Business + + + TV14 + + + + Big Freedia: Queen of Bounce + Just Be Free + Big Freedia launches her biggest tour yet with a building-shaking, window-breaking show. + + Big Freedia + + Music + Documentary + + + TV14 + + + + Big Freedia: Queen of Bounce + Flash's Dance + Freedia hits Atlanta during his biggest tour ever; dancer Flash looks forward to reuniting with his birth mother. + + Big Freedia + + Music + Documentary + + + TV14 + + + + Big Freedia: Queen of Bounce + Freedia's Twerk on Washington + Freedia performs a tribute concert to her mother at the historic Howard Theater in Washington, D.C. + + Big Freedia + + Music + Documentary + + + TV14 + + + + Big Freedia: Queen of Bounce + The Dirtiest Song Ever Recorded + Freedia records one of her dirtiest songs with her best friend Katey Red and has a showbiz talk with Faith Evans. + + Big Freedia + + Music + Documentary + + + TV14 + + + + Malcolm in the Middle + Smunday + On Monday morning, Malcolm (Frankie Muniz) and his brothers convince their ailing mother (Jane Kaczmarek) that it's Sunday. + + Frankie Muniz + Erik Per Sullivan + Bryan Cranston + + Sitcom + + + TVPG + + + + Malcolm in the Middle + Water Park + The family goes to a water park, leaving Dewey (Erik Per Sullivan) at home with a no-nonsense baby sitter (guest star Bea Arthur). With Frankie Muniz, Jane Kaczmarek, Bryan Cranston and Justin Berfield. + + Frankie Muniz + Jane Kaczmarek + Bryan Cranston + + Sitcom + + + TVPG + + + + Malcolm in the Middle + Traffic Jam + Dewey continues to wander around lost while Malcolm and his family are stuck in an all-day traffic jam. + + Jane Kaczmarek + Bryan Cranston + Frankie Muniz + + Sitcom + + + TVPG + + + + Malcolm in the Middle + Lois' Birthday + Lois runs away from home after her husband forgets her birthday and the boys buy candy instead of a gift. + + Frankie Muniz + Jane Kaczmarek + Bryan Cranston + + Sitcom + + + TVPG + + + + Buffy the Vampire Slayer + The Puppet Show + Buffy sets out to catch a thief who steals human organs; the principal forces Giles to run the school talent show. + + Sarah Michelle Gellar + Nicholas Brendon + Alyson Hannigan + + Drama + + + TVPG + + + + Buffy the Vampire Slayer + Nightmares + People in Sunnydale begin living out their worst fears, including Xander, who comes to school in his underwear, and Giles, who discovers he can't read. + + Sarah Michelle Gellar + Nicholas Brendon + Alyson Hannigan + + Drama + + + TVPG + + + + Buffy the Vampire Slayer + Out of Mind, Out of Sight + Buffy and Cordelia become allies to combat an invisible spirit; Angel warns Giles that Buffy could be in danger. + + Sarah Michelle Gellar + Nicholas Brendon + Alyson Hannigan + + Drama + + + TVPG + + + + Buffy the Vampire Slayer + Prophecy Girl + Buffy's plan to live a normal life goes awry when the Earth cracks open and an army of demons emerges. + + Sarah Michelle Gellar + Nicholas Brendon + Alyson Hannigan + + Drama + + + TV14 + + + + Malcolm in the Middle + Dinner Out + Lois anticipates a civilized evening of adult conversation when she accepts a dinner invitation from Stevie's parents. + + Frankie Muniz + Jane Kaczmarek + Bryan Cranston + + Sitcom + + + TVPG + + + + Malcolm in the Middle + Casino + Hal, Malcolm and Reese wander into a desert artillery range after being banned from a casino for counting cards. + + Jane Kaczmarek + Bryan Cranston + Frankie Muniz + + Sitcom + + + TVPG + + + + Malcolm in the Middle + Convention + Malcolm and Reese (Frankie Muniz, Justin Berfield) compete against Dewey (Erik Per Sullivan) for the attentions of their beautiful baby sitter. + + Frankie Muniz + Jane Kaczmarek + Bryan Cranston + + Sitcom + + + TVPG + + + + Malcolm in the Middle + Robbery + Lois and her co-worker Craig are taken hostage at the drugstore; Hal brings home an armoire infested with bats. + + Frankie Muniz + Jane Kaczmarek + Bryan Cranston + + Sitcom + + + TVPG + + + + Malcolm in the Middle + Therapy + Malcolm fakes a mental breakdown to avoid the silly costumes and folk dancing during medieval week at school. + + Jane Kaczmarek + Bryan Cranston + Frankie Muniz + + Sitcom + + + TVPG + + + + Malcolm in the Middle + High School Play + When Malcolm takes a role in a play, his Krelboyne classmates must come to his rescue on opening night. + + Jane Kaczmarek + Bryan Cranston + Frankie Muniz + + Sitcom + + + TVPG + + + + My Wife and Kids + Jr.'s Risky Business + Michael and Jay return home to find Jr. and his girlfriend (Meagan Good) fooling around in their bed. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Jr.'s Risky Business + A furious Michael considers throwing Jr. out of the house after catching him in a compromising position with his girlfriend (Meagan Good). + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Jury Duty + Michael and Jay end up serving on the same jury together; Michael suspects he has been the victim of jury tampering. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Here Come Da Judge + Michael calls a family court session when Jr. battles Claire over ownership of a discovered wallet containing $500. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Claire's Permit + Michael's fears come true when he tries to teach Claire how to drive. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Sharon's Picture + Jay wonders why Michael saved a picture of an attractive ex-girlfriend; Franklin cannot admit Aretha is as good a singer as he is a pianist. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Sharon's Picture + Jay wonders why Michael saved a picture of an attractive ex-girlfriend; Franklin cannot admit Aretha is as good a singer as he is a pianist. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + The Big Bang Theory + Claire and Tony announce the time has come for them to consummate their relationship; Kady catches Jr. playing with her dolls. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + #Female Pleasure + An examination of the obstacles that stand in the way of female sexuality in the 21st century. + 2018 + Movies + Documentary + + + + Sex Sells + Sex Ed + WeezyWTF heads back to school with her mom to learn the secrets of a successful phone sex business; a financial dominatrix teaches how she makes money from submissives. + Reality TV + + + TV14 + + + + Sex Sells + BDSM + Young M.A and WeezyWTF meet a dominatrix who turned the phrase. + Reality TV + + + TVMA + + + + Shottas + Deported from the United States, two drug dealers (Ky-Mani Marley, Spragga Benz) travel to Miami and continue their violent ways. + + Ky-Mani Marley + Wyclef Jean + Paul Campbell + + 2002 + Movies + Crime Story + + + TV14 + + + 1 + + + + That White People S... + That Dog Ish + Keraun runs with wolves, goes on a stroll with a professional dog walker and sits down with a pet psychic. + Comedy + + + TV14 + + + + That White People S... + That Sideshow Ish + King Keraun gets high with a stilt walker, faces off with a ventriloquist and meets a fire-breather whose idea of a good time is walking across hot coals. + Comedy + + + TV14 + + + + T-Pain's School of Business + Take Initiative + T-Pain visits a sex toy designer and builds a vibrator; he gets his hands on some rubber while customizing sneakers with a luxury shoe maker; T-Pain cooks chicken and waffles with a restaurant mogul. + Reality TV + Business + + + TV14 + + + + T-Pain's School of Business + The Glow Up + T-Pain learns how to go from rags to riches as he makes slime; he discovers secret menu items at restaurants around Los Angeles; T-Pain paints a pair of kicks. + Reality TV + Business + + + TV14 + + + + T-Pain's School of Business + Get Schooled + T-Pain goes back to school with a Sex Ed expert before throwing a Texas-sized pep rally for high school gamers. + Reality TV + Business + + + TV14 + + + + T-Pain's School of Business + Space Invaders + T-Pain finds a farm on New York City rooftops; he shops the world's smallest, mobile convenience store; he learns how under-served communities can avoid food deserts. + Reality TV + Business + + + TV14 + + + + Hip-Hop Houdini + A$AP Ferg + Magician Smoothini hooks up with ASAP Ferg in Manhattan to blow his mind with magic, and learn what makes the rapper tick; Ferg opens up about his relationship with his late father, love of art and fashion, and collaboration with the ASAP crew.Guests: A$AP Ferg.. + Performing Arts + + + TV14 + + + + Hip-Hop Houdini + Becky G + Magician Smoothini heads to rap star Becky G's family home in LA, performing magic tricks with a personal touch; Becky G tells Smoothini about the importance of family, and her struggles on the way to making it big in the music business. + Performing Arts + + + TV14 + + + + Hip-Hop Houdini + Fat Joe + Magician Smoothini hits sneaker store UPNYC and Rucker Park in an attempt to impress hip-hop legend Fat Joe and his crew with mind-blowing magic; he has his work cut out when Fat Joe warns him that he's seen a lot of magicians, so he better dig deep.Guests: Fat Joe.. + Performing Arts + + + TV14 + + + + Hip-Hop Houdini + Lil Jon + Magician Smoothini gets up close and personal with rapper, wine connoisseur and hockey fan Lil Jon; Smoothini caters to his tastes at an LA winery, before performing his highlight trick with some icy wizardry at the local hockey rink.Guests: Lil Jon.. + Performing Arts + + + TV14 + + + + Malcolm in the Middle + Traffic Ticket + A policeman impounds Lois' car because of 16 unpaid parking tickets. + + Jane Kaczmarek + Bryan Cranston + Frankie Muniz + + Sitcom + + + TVPG + + + + Malcolm in the Middle + Surgery + The hospital admits Malcolm for appendicitis. + + Jane Kaczmarek + Bryan Cranston + Frankie Muniz + + Sitcom + + + TVPG + + + + Buffy the Vampire Slayer + The Puppet Show + Buffy sets out to catch a thief who steals human organs; the principal forces Giles to run the school talent show. + + Sarah Michelle Gellar + Nicholas Brendon + Alyson Hannigan + + Drama + + + TVPG + + + + Buffy the Vampire Slayer + Nightmares + People in Sunnydale begin living out their worst fears, including Xander, who comes to school in his underwear, and Giles, who discovers he can't read. + + Sarah Michelle Gellar + Nicholas Brendon + Alyson Hannigan + + Drama + + + TVPG + + + + Buffy the Vampire Slayer + Out of Mind, Out of Sight + Buffy and Cordelia become allies to combat an invisible spirit; Angel warns Giles that Buffy could be in danger. + + Sarah Michelle Gellar + Nicholas Brendon + Alyson Hannigan + + Drama + + + TVPG + + + + Buffy the Vampire Slayer + Prophecy Girl + Buffy's plan to live a normal life goes awry when the Earth cracks open and an army of demons emerges. + + Sarah Michelle Gellar + Nicholas Brendon + Alyson Hannigan + + Drama + + + TV14 + + + + My Wife and Kids + Jr.'s Risky Business + Michael and Jay return home to find Jr. and his girlfriend (Meagan Good) fooling around in their bed. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Jr.'s Risky Business + A furious Michael considers throwing Jr. out of the house after catching him in a compromising position with his girlfriend (Meagan Good). + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Jury Duty + Michael and Jay end up serving on the same jury together; Michael suspects he has been the victim of jury tampering. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Here Come Da Judge + Michael calls a family court session when Jr. battles Claire over ownership of a discovered wallet containing $500. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Claire's Permit + Michael's fears come true when he tries to teach Claire how to drive. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Sharon's Picture + Jay wonders why Michael saved a picture of an attractive ex-girlfriend; Franklin cannot admit Aretha is as good a singer as he is a pianist. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + Sharon's Picture + Jay wonders why Michael saved a picture of an attractive ex-girlfriend; Franklin cannot admit Aretha is as good a singer as he is a pianist. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + My Wife and Kids + The Big Bang Theory + Claire and Tony announce the time has come for them to consummate their relationship; Kady catches Jr. playing with her dolls. + + Damon Wayans + Tisha Campbell-Martin + George O. Gore II + + Sitcom + + + TVPG + + + + Malcolm in the Middle + Bully + Malcolm (Frankie Muniz) becomes a target for up-and-coming bullies after big brother Reese (Justin Berfield) gets beaten up by a girl. + + Jane Kaczmarek + Bryan Cranston + Frankie Muniz + + Sitcom + + + TVPG + + + + Malcolm in the Middle + Old Mrs. Old + Lois forces Malcolm to befriend the meanest old lady on the block; Dewey begins carrying a purse to school. + + Frankie Muniz + Jane Kaczmarek + Bryan Cranston + + Sitcom + + + TVPG + + + + Malcolm in the Middle + Krelboyne Girl + When a girl develops a crush on Malcolm (Frankie Muniz), he reciprocates by throwing a brick through her window. With Jane Kaczmarek. + + Frankie Muniz + Jane Kaczmarek + Bryan Cranston + + Sitcom + + + TVPG + + + + Malcolm in the Middle + New Neighbors + The new neighbors terrorize Malcolm and Reese (Frankie Muniz, Justin Berfield), while their garden gnome stalks Dewey (Erik Per Sullivan). Guest stars: Robin Riker, Gregory Jbara, Michael Welch and Dakota Fanning. + + Frankie Muniz + Jane Kaczmarek + Bryan Cranston + + Sitcom + + + TVPG + + + + Malcolm in the Middle + Hal Quits + Hal (Bryan Cranston) suffers a midlife crisis on career day at Dewey's (Erik Per Sullivan) school and decides to become a painter. + + Jane Kaczmarek + Bryan Cranston + Frankie Muniz + + Sitcom + + + TVPG + + + + Malcolm in the Middle + The Grandparents + Lois' parents (Cloris Leachman, Robert Loggia) visit and insist on providing financial assistance to the family. + + Jane Kaczmarek + Bryan Cranston + Frankie Muniz + + Sitcom + + + TVPG + + + + Malcolm in the Middle + Traffic Ticket + A policeman impounds Lois' car because of 16 unpaid parking tickets. + + Jane Kaczmarek + Bryan Cranston + Frankie Muniz + + Sitcom + + + TVPG + + + + Malcolm in the Middle + Surgery + The hospital admits Malcolm for appendicitis. + + Jane Kaczmarek + Bryan Cranston + Frankie Muniz + + Sitcom + + + TVPG + + + + A Sexplanation + To right the wrongs of his American sex education, 36-year-old health reporter Alex Liu goes on a quest to uncover naked truths and call for more comprehensive sex education for everyone. + 2021 + Movies + Documentary + + + + For the Love of DILFS + Episode 07 + Two groups of singles, Daddies and Himbos, come to an island looking for love. Both groups live together, participate in spicy challenges and go on breathtaking dates. + + Various + + Reality TV + + + + Buffy the Vampire Slayer + When She Was Bad + Xander and Willow worry about Buffy's behavior; Cordelia and Ms. Calendar are kidnapped; Buffy turns Angel away. + + Sarah Michelle Gellar + Nicholas Brendon + Alyson Hannigan + + Drama + + + TVPG + + + + Buffy the Vampire Slayer + Some Assembly Required + Buffy discovers that body parts missing from girls' graves are being used to build the perfect woman. + + Sarah Michelle Gellar + Nicholas Brendon + Alyson Hannigan + + Drama + + + TVPG + + + + Buffy the Vampire Slayer + School Hard + Angel's former friends arrive in Sunnydale; Buffy must shield her mother when a gang of vampires crashes parent-teacher night. + + Sarah Michelle Gellar + Nicholas Brendon + Alyson Hannigan + + Drama + + + TVPG + + + + The Big Sex Talk + Not Having It + This episode asks what it means to be asexual in a hypersexualized world, if we should rethink pleasure and whether cake is better than sex. + Talk Shows + Performing Arts + + + + True Dating Stories + Phelisa & Cory + When Phelisha agrees to date a white co-worker, she's shocked to see him dressed up as 50 Cent; Cory scores with a MILF, but leaves a treasured family heirloom at her house and must retrieve it the only way he knows how -- in disguise. + Comedy + Reality TV + + + TVMA + + + + True Dating Stories + Glenn, Hanah & Jesse + Glenn strikes gold when a gorgeous man asks him on a gym date, but it deteriorates quickly as the man has serious rage issues; Hannah is charmed by a classmate's powerful performance; Jesse agrees to meet a guy from a dating app that is into kink. + Comedy + Reality TV + + + TVMA + + + + True Dating Stories + Gabe, Amy & Victoria + Gabe plans a picturesque date on a sailboat, but it quickly goes awry; While working her first job at a carnival, Amy gets asked out by a corny manager; Fresh out of being un-engaged, Victoria's date goes from romantic to creepy very quickly. + Comedy + Reality TV + + + TV14 + + + + T-Pain's School of Business + Never Say Die + T-Pain spots fake kicks with sneaker experts StockX; Thrilling mixes technology and thrifting to save the planet and people's wallets; T-Pain discovers how to make bank addressing the plastic crisis with Bionic Yarn. + Reality TV + Business + + + TV14 + + + + T-Pain's School of Business + ShrugEterian + T-Pain is on a quest to figure out the future of meat; he discovers a believable fake cheese steak; he eats a lab-grown chicken nugget; he joins the regenerative farming revolution. + Reality TV + Business + + + TV14 + + + + Made From Scratch + Roddy Ricch + Roddy Ricch and his granny whip up Roddy's favorite childhood meal, baked spaghetti; Roddy is a private person, but he opens up on youth, musical influences and his hopes for the future. + Reality TV + Food + + + TV14 + + + + Made From Scratch + Atsuko Okatsuka + Celebrities from the music industry reveal personal details about themselves while helping whip up some of their favorite home-cooked meals with their loved ones. + Reality TV + Food + + + TV14 + + + + Hip-Hop Houdini + Iggy Azalea + Magician Smoothini meets Iggy Azalea at a photo shoot in LA where she sets the bar high, challenging him to create the perfect magic trick; his quest reaches its climax at The Wiltern Theatre, a landmark in Iggy's career.Guests: Iggy Azalea.. + Performing Arts + + + TV14 + + + + Hip-Hop Houdini + Becky G + Magician Smoothini heads to rap star Becky G's family home in LA, performing magic tricks with a personal touch; Becky G tells Smoothini about the importance of family, and her struggles on the way to making it big in the music business. + Performing Arts + + + TV14 + + + + Buffy the Vampire Slayer + When She Was Bad + Xander and Willow worry about Buffy's behavior; Cordelia and Ms. Calendar are kidnapped; Buffy turns Angel away. + + Sarah Michelle Gellar + Nicholas Brendon + Alyson Hannigan + + Drama + + + TVPG + + + + Buffy the Vampire Slayer + Some Assembly Required + Buffy discovers that body parts missing from girls' graves are being used to build the perfect woman. + + Sarah Michelle Gellar + Nicholas Brendon + Alyson Hannigan + + Drama + + + TVPG + + + + Buffy the Vampire Slayer + School Hard + Angel's former friends arrive in Sunnydale; Buffy must shield her mother when a gang of vampires crashes parent-teacher night. + + Sarah Michelle Gellar + Nicholas Brendon + Alyson Hannigan + + Drama + + + TVPG + + + + Buffy the Vampire Slayer + Inca Mummy Girl + Buffy and Giles (Sarah Michelle Gellar, Anthony Stewart Head) become suspicious of a Peruvian exchange student (Ara Celi) with whom Xander (Nicholas Brendon) falls in love. + + Sarah Michelle Gellar + Nicholas Brendon + Alyson Hannigan + + Drama + + + TVPG + + + + Buffy the Vampire Slayer + Reptile Boy + Buffy and Cordelia attend a fraternity bash where they are offered as human sacrifices to a half-man, half-snake creature. + + Sarah Michelle Gellar + Nicholas Brendon + Alyson Hannigan + + Drama + + + TVPG + + + + Buffy the Vampire Slayer + Halloween + Buffy (Sarah Michelle Gellar) loses her slaying ability while trick-or-treating with neighborhood children. + + Sarah Michelle Gellar + Nicholas Brendon + Alyson Hannigan + + Drama + Christmas + + + TVPG + + + + Malcolm in the Middle + Bully + Malcolm (Frankie Muniz) becomes a target for up-and-coming bullies after big brother Reese (Justin Berfield) gets beaten up by a girl. + + Jane Kaczmarek + Bryan Cranston + Frankie Muniz + + Sitcom + + + TVPG + + + + Malcolm in the Middle + Old Mrs. Old + Lois forces Malcolm to befriend the meanest old lady on the block; Dewey begins carrying a purse to school. + + Frankie Muniz + Jane Kaczmarek + Bryan Cranston + + Sitcom + + + TVPG + + + + Armageddon + A NASA rep (Billy Bob Thornton) recruits an oil driller (Bruce Willis) and his team of mavericks to save Earth from an oncoming asteroid. + + Bruce Willis + Billy Bob Thornton + Liv Tyler + + 1998 + Movies + Sci-Fi + + + TVG + + + 2 + + + + Armageddon + A NASA rep (Billy Bob Thornton) recruits an oil driller (Bruce Willis) and his team of mavericks to save Earth from an oncoming asteroid. + + Bruce Willis + Billy Bob Thornton + Liv Tyler + + 1998 + Movies + Sci-Fi + + + TVG + + + 2 + + + + Armageddon + A NASA rep (Billy Bob Thornton) recruits an oil driller (Bruce Willis) and his team of mavericks to save Earth from an oncoming asteroid. + + Bruce Willis + Billy Bob Thornton + Liv Tyler + + 1998 + Movies + Sci-Fi + + + TVG + + + 2 + + + + Chaos Walking + A young man protects a mysterious woman in a dystopian world where all the females have disappeared, and all the men are afflicted by a force that puts their thoughts on display. + + Daisy Ridley + Tom Holland + Mads Mikkelsen + + 2021 + Movies + Sci-Fi + + + TVG + + + 1 + + + + Emperor of the North + Two 1930s hobos (Lee Marvin, Keith Carradine) try to ride a brutal conductor's (Ernest Borgnine) freight train. + + Lee Marvin + Ernest Borgnine + Keith Carradine + + 1973 + Movies + Adventure + + + TVG + + + 2 + + + + Seven Thieves + A scholarly crook (Edward G. Robinson) recruits an ex-convict (Rod Steiger), a dancer (Joan Collins) and four others for a Monte Carlo casino caper. + + Edward G. Robinson + Rod Steiger + Joan Collins + + 1960 + Movies + Thriller + + + TVG + + + 3 + + + + The Third Secret + A U.S. newscaster (Stephen Boyd) questions other patients (Jack Hawkins, Richard Attenborough) about the alleged suicide of his London analyst. + + Stephen Boyd + Jack Hawkins + Richard Attenborough + + 1964 + Movies + Mystery + + + TVG + + + 2 + + + + The Flim Flam Man + An Army deserter (Michael Sarrazin) joins an aging Southerner (George C. Scott) working scams from town to town. + + George C. Scott + Sue Lyon + Michael Sarrazin + + 1967 + Movies + Comedy + + + TVG + + + 3 + + + + Emperor of the North + Two 1930s hobos (Lee Marvin, Keith Carradine) try to ride a brutal conductor's (Ernest Borgnine) freight train. + + Lee Marvin + Ernest Borgnine + Keith Carradine + + 1973 + Movies + Adventure + + + TVG + + + 2 + + + + 11 Harrowhouse + A diamond merchant (Charles Grodin), his girlfriend (Candice Bergen) and an inside man (James Mason) plan to vacuum gems from a supervault. + + Charles Grodin + Candice Bergen + James Mason + + 1974 + Movies + Comedy + + + TVG + + + 2 + + + + Transporter 2 + A former Special Forces operative (Jason Statham) springs into action to save the kidnapped son of an anti-drug czar. + + Jason Statham + Amber Valletta + Alessandro Gassman + + 2005 + Movies + Action + + + TVPG + + + 2 + + + + Hidden Figures + NASA mathematicians Katherine Johnson, Dorothy Vaughan and Mary Jackson cross gender and race lines to help launch astronaut John Glenn into outer space. + + Taraji P. Henson + Octavia Spencer + Janelle Monáe + + 2016 + Movies + History + + + TVG + + + 3 + + + + The Help + Determined to become a writer, a 1960s Mississippi society girl (Emma Stone) turns her small town on its ear by interviewing Black women who work for prominent white families. + + Viola Davis + Emma Stone + Bryce Dallas Howard + + 2011 + Movies + Drama + + + TVG + + + 3 + + + + The Help + Determined to become a writer, a 1960s Mississippi society girl (Emma Stone) turns her small town on its ear by interviewing Black women who work for prominent white families. + + Viola Davis + Emma Stone + Bryce Dallas Howard + + 2011 + Movies + Drama + + + TVG + + + 3 + + + + The Help + Determined to become a writer, a 1960s Mississippi society girl (Emma Stone) turns her small town on its ear by interviewing Black women who work for prominent white families. + + Viola Davis + Emma Stone + Bryce Dallas Howard + + 2011 + Movies + Drama + + + TVG + + + 3 + + + + Breakthrough + Trapped underwater for more than 15 minutes, a 14-year-old Missouri boy continues to fight for his life as his adoptive parents and their pastor stay by his bedside and pray for a miracle. + + Chrissy Metz + Josh Lucas + Topher Grace + + 2019 + Movies + Drama + + + TVG + + + 2 + + + + The Manhattan Project + A teen (Christopher Collet) and his girlfriend (Cynthia Nixon) make an atomic bomb with plutonium stolen from a scientist (John Lithgow) dating his mother. + + John Lithgow + Christopher Collet + Cynthia Nixon + + 1986 + Movies + Thriller + + + TVG + + + 2 + + + + That Wonderful Urge + An heiress (Gene Tierney) gets even with a sneaky New York newsman (Tyrone Power) who courts her for a story. + + Tyrone Power + Gene Tierney + Reginald Gardiner + + 1949 + Movies + Romance + + + 2 + + + + House of Bamboo + An Army agent (Robert Stack) infiltrates a sadistic ex-GI's (Robert Ryan) gang in postwar Tokyo. + + Robert Ryan + Robert Stack + Shirley Yamaguchi + + 1955 + Movies + Crime Story + + + TVG + + + 2 + + + + Our Man Flint + Superspy Derek Flint (James Coburn), agent of Z.O.W.I.E., stops a geothermal plot to control the world's weather. + + James Coburn + Lee J. Cobb + Gila Golan + + 1966 + Movies + Action + + + TVG + + + 3 + + + + In Like Flint + Superspy Derek Flint (James Coburn) saves the world from a cold-cream tycoon and her army of aloof women. + + James Coburn + Lee J. Cobb + Jean Hale + + 1967 + Movies + Action + + + TVG + + + 3 + + + + The Manhattan Project + A teen (Christopher Collet) and his girlfriend (Cynthia Nixon) make an atomic bomb with plutonium stolen from a scientist (John Lithgow) dating his mother. + + John Lithgow + Christopher Collet + Cynthia Nixon + + 1986 + Movies + Thriller + + + TVG + + + 2 + + + + Hidden Figures + NASA mathematicians Katherine Johnson, Dorothy Vaughan and Mary Jackson cross gender and race lines to help launch astronaut John Glenn into outer space. + + Taraji P. Henson + Octavia Spencer + Janelle Monáe + + 2016 + Movies + History + + + TVG + + + 3 + + + + Green Book + An Italian-American bouncer and an African-American pianist confront racism and danger while taking a road trip through the Deep South in 1962. + + Viggo Mortensen + Mahershalalhashbaz Ali + Linda Cardellini + + 2018 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + The Martian + Left behind by his crew, a stranded astronaut (Matt Damon) must find a way to survive on Mars, while NASA and a team of international scientists work tirelessly to bring him home. + + Matt Damon + Jessica Chastain + Kristen Wiig + + 2015 + Movies + Sci-Fi + + + TVG + + + 3 + + + + Alien vs. Predator + Members (Sanaa Lathan, Raoul Bova, Lance Henriksen) of an expedition discover two vicious extraterrestrial species dueling to the death in the Antarctic. + + Sanaa Lathan + Raoul Bova + Lance Henriksen + + 2004 + Movies + Sci-Fi + + + 2 + + + + Alien vs. Predator + Members (Sanaa Lathan, Raoul Bova, Lance Henriksen) of an expedition discover two vicious extraterrestrial species dueling to the death in the Antarctic. + + Sanaa Lathan + Raoul Bova + Lance Henriksen + + 2004 + Movies + Sci-Fi + + + 2 + + + + Alien vs. Predator + Members (Sanaa Lathan, Raoul Bova, Lance Henriksen) of an expedition discover two vicious extraterrestrial species dueling to the death in the Antarctic. + + Sanaa Lathan + Raoul Bova + Lance Henriksen + + 2004 + Movies + Sci-Fi + + + 2 + + + + The Sand Pebbles + Multiple Oscar nominations went to this tale of a cynical sailor's experiences on an American gunboat in 1926 China. + + Steve McQueen + Richard Attenborough + Candice Bergen + + 1966 + Movies + Adventure + + + TVG + + + 3 + + + + My Darling Clementine + Lawman Wyatt Earp (Henry Fonda) and gambler Doc Holliday (Victor Mature) shoot it out with the Clantons at the OK Corral. + + Henry Fonda + Linda Darnell + Victor Mature + + 1946 + Movies + Western + + + TVG + + + 3 + + + + Anne of the Indies + Pirate captain Anne (Jean Peters) kidnaps the wife (Debra Paget) of a tricky French captain (Louis Jourdan), then fights Blackbeard. + + Jean Peters + Louis Jourdan + Debra Paget + + 1951 + Movies + Action + + + 2 + + + + The Story of Ruth + The Old Testament Moabite heroine (Elana Eden) converts to Judaism, flees to Bethlehem and falls in love. + + Elana Eden + Stuart Whitman + Tom Tryon + + 1960 + Movies + Drama + + + TVG + + + 2 + + + + Modesty Blaise + An archcriminal (Dirk Bogarde) wants diamonds being guarded by a British secret agent (Monica Vitti) and her partner (Terence Stamp). + + Monica Vitti + Terence Stamp + Dirk Bogarde + + 1966 + Movies + Comedy + + + 2 + + + + John and Mary + A designer (Dustin Hoffman) and an art-gallery worker (Mia Farrow) meet in a Manhattan bar and become wary lovers. + + Dustin Hoffman + Mia Farrow + Michael Tolan + + 1969 + Movies + Drama + + + TVMA + + + 3 + + + + Lucy in the Sky + After an awe-inspiring experience in outer space, an astronaut returns to Earth and starts to lose touch with reality in a world that now seems too small. + + Natalie Portman + Jon Hamm + Zazie Beetz + + 2019 + Movies + Drama + + + TVG + + + 1 + + + + The Martian + Left behind by his crew, a stranded astronaut (Matt Damon) must find a way to survive on Mars, while NASA and a team of international scientists work tirelessly to bring him home. + + Matt Damon + Jessica Chastain + Kristen Wiig + + 2015 + Movies + Sci-Fi + + + TVG + + + 3 + + + + The Greatest Showman + P.T. Barnum indulges his limitless imagination to create the Barnum & Bailey circus in the 1800s. Featuring musical numbers, exotic performers and daring feats, the mesmerizing spectacle takes the world by storm to become the greatest show on Earth. + + Hugh Jackman + Zac Efron + Michelle Williams + + 2017 + Movies + Musical + + + TVG + + + 2 + + + + The Greatest Showman + P.T. Barnum indulges his limitless imagination to create the Barnum & Bailey circus in the 1800s. Featuring musical numbers, exotic performers and daring feats, the mesmerizing spectacle takes the world by storm to become the greatest show on Earth. + + Hugh Jackman + Zac Efron + Michelle Williams + + 2017 + Movies + Musical + + + TVG + + + 2 + + + + Lucy in the Sky + After an awe-inspiring experience in outer space, an astronaut returns to Earth and starts to lose touch with reality in a world that now seems too small. + + Natalie Portman + Jon Hamm + Zazie Beetz + + 2019 + Movies + Drama + + + TVG + + + 1 + + + + Lucy in the Sky + After an awe-inspiring experience in outer space, an astronaut returns to Earth and starts to lose touch with reality in a world that now seems too small. + + Natalie Portman + Jon Hamm + Zazie Beetz + + 2019 + Movies + Drama + + + TVG + + + 1 + + + + The Lost World + A British professor (Claude Rains), a playboy (Michael Rennie) and a rich woman (Jill St. John) in pink pants see lava and dinosaurs in the Amazon. + + Michael Rennie + Jill St. John + Claude Rains + + 1960 + Movies + Sci-Fi + + + TVG + + + 2 + + + + Born Reckless + After returning home from war, a former gangster (Edmund Lowe) opens a club and maintains ties with his criminal friends. + + Edmund Lowe + Catherine Dale Owen + Frank Albertson + + 1930 + Movies + Crime Story + + + TVG + + + 2 + + + + All Hands on Deck + The admiral is coming, so a sailor (Pat Boone) and his buddy (Buddy Hackett) hide their girlfriend (Barbara Eden) and pet turkey. + + Pat Boone + Buddy Hackett + Barbara Eden + + 1961 + Movies + Musical + + + 2 + + + + Crash Dive + A Navy officer (Tyrone Power) heads out to fight the Nazis in a submarine commanded by his girlfriend's (Anne Baxter) fiance (Dana Andrews). + + Tyrone Power + Anne Baxter + Dana Andrews + + 1943 + Movies + War + + + TVG + + + 3 + + + + The Hunters + Two U.S. jet pilots (Robert Mitchum, Robert Wagner) go behind enemy lines in North Korea to rescue a downed comrade. + + Robert Mitchum + Robert Wagner + May Britt + + 1958 + Movies + War + + + TVG + + + 2 + + + + Blood and Steel + A native girl on a Japanese-held island helps Navy Sea Bees who go there to survey it for construction of an air base. + + John Lupton + Ziva Rodann + Brett Halsey + + 1959 + Movies + War + + + 1 + + + + The Blue Max + A lowborn World War I German ace (George Peppard) covets a medal of honor and his highborn commander's (James Mason) wife (Ursula Andress). + + George Peppard + James Mason + Ursula Andress + + 1966 + Movies + War + + + TVG + + + 3 + + + + Ad Astra + Thirty years ago, Clifford McBride led a voyage into space, but the ship and crew were never heard from again. Now his son must embark on a daring mission to uncover the truth about his father and a mysterious power surge that threatens the universe. + + Brad Pitt + Tommy Lee Jones + Ruth Negga + + 2019 + Movies + Sci-Fi + + + TVG + + + 3 + + + + The Aftermath + In 1946 a British colonel and his wife move to Hamburg to rebuild the shattered city. They share a large home with a German widower and his troubled daughter. In this charged atmosphere, enmity and grief give way to passion and betrayal. + + Keira Knightley + Alexander Skarsgård + Jason Clarke + + 2019 + Movies + History + + + TVPG + + + 2 + + + + National Treasure: Book of Secrets + A page from the diary of John Wilkes Booth implicates Ben Gates' (Nicolas Cage) great-great grandfather as a major conspirator in the assassination of President Lincoln. + + Nicolas Cage + Jon Voight + Harvey Keitel + + 2007 + Movies + Action + + + TVG + + + 2 + + + + What We Do in the Shadows + The Orgy + Tensions run high as the vampires prepare to host the Biannual Vampire Orgy. + + Matt Berry + Kayvan Novak + Natasia Demetriou + + Regular + + + TVMA + + + + What We Do in the Shadows + Ancestry + Nandor visits one of his living descendants; a lover from Nadja's past reemerges. + + Matt Berry + Kayvan Novak + Natasia Demetriou + + Regular + + + TVMA + + + + What We Do in the Shadows + Resurrection + Nadja and Laszlo's new familiar poses problems for an increasingly anxious Guillermo, and the vampires enlist the services of a local necromancer. + + Matt Berry + Kayvan Novak + Natasia Demetriou + + Regular + + + TVMA + + + + What We Do in the Shadows + Ghosts + The vampires hold a seance to deal with a ghost infestation, which leads to a larger infestation. + + Matt Berry + Kayvan Novak + Natasia Demetriou + + Regular + + + TVMA + + + + What We Do in the Shadows + Brain Scramblies + The vampires attend their first human Super Bowl party, while Guillermo's search for virgins uncovers a deadly threat. + + Matt Berry + Kayvan Novak + Natasia Demetriou + + Regular + + + TVMA + + + + What We Do in the Shadows + The Curse + While the vampires fear they've been electronically cursed, Guillermo tries to thwart a deadly threat to his masters. + + Matt Berry + Kayvan Novak + Natasia Demetriou + + Regular + + + TVMA + + + + What We Do in the Shadows + Colin's Promotion + Colin Robinson gets promoted at work, and his new power threatens the balance of power in the vampire house. + + Matt Berry + Kayvan Novak + Natasia Demetriou + + Regular + + + TVMA + + + + What We Do in the Shadows + On the Run + After a vengeful enemy from the past appears without warning, Laszlo flees his home and goes into hiding to avoid certain death. + + Matt Berry + Kayvan Novak + Natasia Demetriou + + Regular + + + TVMA + + + + What We Do in the Shadows + The Return + The vampires offer shelter to an old nemesis who's down on his luck. + + Matt Berry + Kayvan Novak + Natasia Demetriou + + Regular + + + TVMA + + + + FXM Presents + An examination of the process of making movies follows a production from script to screen. + Performing Arts + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Inogen Portable Oxygen - Oxygen Therapy that Moves with You + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Spider-Man + Peter Parker (Tobey Maguire) uses his superhuman powers to battle his archenemy, the Green Goblin (Willem Dafoe). + + Tobey Maguire + Willem Dafoe + Kirsten Dunst + + 2002 + Movies + Action + + + TVG + + + 3 + + + + Spider-Man 2 + Tormented Peter Parker (Tobey Maguire) battles a sinister scientist who uses mechanical tentacles for destructive purposes. + + Tobey Maguire + Kirsten Dunst + James Franco + + 2004 + Movies + Action + + + TVG + + + 3 + + + + Spider-Man 3 + Peter Parker (Tobey Maguire) undergoes an ominous transformation when his Spider-Man suit turns black and brings out the dark, vengeful side of his personality. + + Tobey Maguire + Kirsten Dunst + James Franco + + 2007 + Movies + Action + + + TVG + + + 2 + + + + This Means War + Once inseparable pals and partners, two CIA agents (Chris Pine, Tom Hardy) turn their deadly skills and an array of high-tech gadgetry against each other after both fall for the same woman (Reese Witherspoon). + + Reese Witherspoon + Chris Pine + Tom Hardy + + 2012 + Movies + Action + + + TVG + + + 1 + + + + Night at the Museum: Battle of the Smithsonian + Larry Daley (Ben Stiller) joins forces with Teddy Roosevelt (Robin Williams), Amelia Earhart (Amy Adams) and others to prevent four of history's worst villains from conquering the world. + + Ben Stiller + Robin Williams + Amy Adams + + 2009 + Movies + Children + + + TVG + + + 2 + + + + Jumanji: Welcome to the Jungle + Four teens embark on the adventure of a lifetime when a video game magically transports them to the jungle and transforms them into adults. + + Dwayne Johnson + Kevin Hart + Jack Black + + 2017 + Movies + Adventure + + + TVG + + + 3 + + + + Jumanji: Welcome to the Jungle + Four teens embark on the adventure of a lifetime when a video game magically transports them to the jungle and transforms them into adults. + + Dwayne Johnson + Kevin Hart + Jack Black + + 2017 + Movies + Adventure + + + TVG + + + 3 + + + + This Means War + Once inseparable pals and partners, two CIA agents (Chris Pine, Tom Hardy) turn their deadly skills and an array of high-tech gadgetry against each other after both fall for the same woman (Reese Witherspoon). + + Reese Witherspoon + Chris Pine + Tom Hardy + + 2012 + Movies + Action + + + TVG + + + 1 + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + H2O X5 - Super Powerful 5-In-1 Multi-Use Steam Cleaner + Kills 990f Bacteria, Viruses, and Germs with Steam! The 5-in-1 Lightweight, Fast, Powerful, And Completely Chemical Free Steam Cleaner! Lift and remove dirt and stains all around the home! + Paid Program + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Car Accident? Free Legal Consultation. + Legal professionals standing by to answer your questions. + Paid Program + + + + DraftKings Sportsbook Report + DraftKings Sportsbook, a top-rated sportsbook app! + Paid Program + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Spider-Man 3 + Peter Parker (Tobey Maguire) undergoes an ominous transformation when his Spider-Man suit turns black and brings out the dark, vengeful side of his personality. + + Tobey Maguire + Kirsten Dunst + James Franco + + 2007 + Movies + Action + + + TVG + + + 2 + + + + The Amazing Spider-Man + Peter Parker's (Andrew Garfield) quest to solve his parents' disappearance puts him on a collision course with a scientist's (Rhys Ifans) deadly alter ego, the Lizard. + + Andrew Garfield + Emma Stone + Rhys Ifans + + 2012 + Movies + Action + + + TVG + + + 3 + + + + The Amazing Spider-Man 2 + The emergence of a powerful new villain (Jamie Foxx) and the return of an old friend (Dane DeHaan) bring Peter Parker (Andrew Garfield) to the realization that all his enemies have one thing in common: Oscorp. + + Andrew Garfield + Emma Stone + Jamie Foxx + + 2014 + Movies + Action + + + TVG + + + 2 + + + + Spider-Man: Homecoming + Under the watchful eye of mentor Tony Stark, high school student Peter Parker starts to embrace his newfound identity as Spider-Man to battle the evil Vulture. + + Tom Holland + Michael Keaton + Robert Downey Jr. + + 2017 + Movies + Action + + + TVG + + + 3 + + + + Spider-Man: Far From Home + Spider-Man teams up with Nick Fury and fellow superhero Mysterio to stop four massive elemental creatures -- each representing Earth, air, water and fire -- from wreaking havoc across Europe. + + Tom Holland + Samuel L. Jackson + Jake Gyllenhaal + + 2019 + Movies + Action + + + TVG + + + 3 + + + + Venom: Let There Be Carnage + Eddie Brock is still struggling to coexist with the shape-shifting extraterrestrial Venom. When deranged serial killer Cletus Kasady also becomes host to an alien symbiote, Brock and Venom must put aside their differences to stop his reign of terror. + + Tom Hardy + Woody Harrelson + Michelle Williams + + 2021 + Movies + Action + + + 2 + + + + The Amazing Spider-Man + Peter Parker's (Andrew Garfield) quest to solve his parents' disappearance puts him on a collision course with a scientist's (Rhys Ifans) deadly alter ego, the Lizard. + + Andrew Garfield + Emma Stone + Rhys Ifans + + 2012 + Movies + Action + + + TVG + + + 3 + + + + The Amazing Spider-Man + Peter Parker's (Andrew Garfield) quest to solve his parents' disappearance puts him on a collision course with a scientist's (Rhys Ifans) deadly alter ego, the Lizard. + + Andrew Garfield + Emma Stone + Rhys Ifans + + 2012 + Movies + Action + + + TVG + + + 3 + + + + Car Accident? Free Legal Consultation. + Legal professionals standing by to answer your questions. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Coin Collecting with Mike Mezack + Learn about the wonderful world of numismatics with your host Mike Mezack and get the opportunity to build your own collection with some of the best deals around! + Paid Program + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + H2O X5 - Super Powerful 5-In-1 Multi-Use Steam Cleaner + Kills 990f Bacteria, Viruses, and Germs with Steam! The 5-in-1 Lightweight, Fast, Powerful, And Completely Chemical Free Steam Cleaner! Lift and remove dirt and stains all around the home! + Paid Program + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + black-ish + Jack of All Trades + The results of Jack's career test reveal that he may be looking at a blue-collar future; Ruby is led to believe Diane is possessed. + + Anthony Anderson + Tracee Ellis Ross + Laurence Fishburne + + Sitcom + + + TVPG + + + + black-ish + Being Bow-racial + Bow deals with feelings about her own biracial identity when Junior brings home a white girlfriend; Dre counts on Charlie to teach him how to relate to a white, female point-person for a project at work; Zoey wants to remodel Jack and Diane's room. + + Anthony Anderson + Tracee Ellis Ross + Laurence Fishburne + + Sitcom + + + TVPG + + + + black-ish + Nothing but Nepotism + Bow asks Dre to pull some strings and secure Zoey a fellowship, but he doesn't want Zoey relying on nepotism; Junior loses his job at the arcade pizza place after reporting unclean practices to corporate. + + Anthony Anderson + Tracee Ellis Ross + Laurence Fishburne + + Sitcom + + + TVPG + + + + The Amazing Spider-Man 2 + The emergence of a powerful new villain (Jamie Foxx) and the return of an old friend (Dane DeHaan) bring Peter Parker (Andrew Garfield) to the realization that all his enemies have one thing in common: Oscorp. + + Andrew Garfield + Emma Stone + Jamie Foxx + + 2014 + Movies + Action + + + TVG + + + 2 + + + + Spider-Man: Homecoming + Under the watchful eye of mentor Tony Stark, high school student Peter Parker starts to embrace his newfound identity as Spider-Man to battle the evil Vulture. + + Tom Holland + Michael Keaton + Robert Downey Jr. + + 2017 + Movies + Action + + + TVG + + + 3 + + + + Spider-Man: Far From Home + Spider-Man teams up with Nick Fury and fellow superhero Mysterio to stop four massive elemental creatures -- each representing Earth, air, water and fire -- from wreaking havoc across Europe. + + Tom Holland + Samuel L. Jackson + Jake Gyllenhaal + + 2019 + Movies + Action + + + TVG + + + 3 + + + + Venom: Let There Be Carnage + Eddie Brock is still struggling to coexist with the shape-shifting extraterrestrial Venom. When deranged serial killer Cletus Kasady also becomes host to an alien symbiote, Brock and Venom must put aside their differences to stop his reign of terror. + + Tom Hardy + Woody Harrelson + Michelle Williams + + 2021 + Movies + Action + + + 2 + + + + Deadpool 2 + Wisecracking mercenary Deadpool must protect a teenage mutant from Cable -- a genetically enhanced soldier from the future. He soon joins forces with Bedlam, Shatterstar, Domino and other mutants to battle Cable and his powerful advanced weaponry. + + Ryan Reynolds + Josh Brolin + Morena Baccarin + + 2018 + Movies + Action + + + TVPG + + + 3 + + + + Welcome to Wrexham + Family Business + Family is everything for the members of Wrexham AFC; meeting the fathers, mothers,daughters and sons behind some key people. + Sports + Documentary + + + TVMA + + + + Welcome to Wrexham + Worst Case Scenario + With promotion still up in the air, co-Chairmen Rob McElhenney and Ryan Reynolds bring in friends and sponsors to help raise the club's profile. + Sports + Documentary + + + TVMA + + + + Welcome to Wrexham + Family Business + Family is everything for the members of Wrexham AFC; meeting the fathers, mothers,daughters and sons behind some key people. + Sports + Documentary + + + TVMA + + + + Welcome to Wrexham + Worst Case Scenario + With promotion still up in the air, co-Chairmen Rob McElhenney and Ryan Reynolds bring in friends and sponsors to help raise the club's profile. + Sports + Documentary + + + TVMA + + + + Welcome to Wrexham + Family Business + Family is everything for the members of Wrexham AFC; meeting the fathers, mothers,daughters and sons behind some key people. + Sports + Documentary + + + TVMA + + + + Welcome to Wrexham + Worst Case Scenario + With promotion still up in the air, co-Chairmen Rob McElhenney and Ryan Reynolds bring in friends and sponsors to help raise the club's profile. + Sports + Documentary + + + TVMA + + + + Welcome to Wrexham + Worst Case Scenario + With promotion still up in the air, co-Chairmen Rob McElhenney and Ryan Reynolds bring in friends and sponsors to help raise the club's profile. + Sports + Documentary + + + TVMA + + + + Welcome to Wrexham + Family Business + Family is everything for the members of Wrexham AFC; meeting the fathers, mothers,daughters and sons behind some key people. + Sports + Documentary + + + TVMA + + + + Welcome to Wrexham + Worst Case Scenario + With promotion still up in the air, co-Chairmen Rob McElhenney and Ryan Reynolds bring in friends and sponsors to help raise the club's profile. + Sports + Documentary + + + TVMA + + + + black-ish + Jack of All Trades + The results of Jack's career test reveal that he may be looking at a blue-collar future; Ruby is led to believe Diane is possessed. + + Anthony Anderson + Tracee Ellis Ross + Laurence Fishburne + + Sitcom + + + TVPG + + + + FXM Presents + An examination of the process of making movies follows a production from script to screen. + Performing Arts + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + Paid Program + + + TV14 + + + + DraftKings Sportsbook Report + DraftKings Sportsbook, a top-rated sportsbook app! + Paid Program + + + + Inogen Portable Oxygen - Oxygen Therapy that Moves with You + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Car Accident? Free Legal Consultation. + Legal professionals standing by to answer your questions. + Paid Program + + + + Car Repair Secrets! + Save thousands on car repairs. + Paid Program + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + Paid Program + + + TV14 + + + + Fantastic Four + Four people (Ioan Gruffudd, Jessica Alba, Chris Evans) gain unusual powers after a space mission exposes them to cosmic radiation. + + Ioan Gruffudd + Jessica Alba + Chris Evans + + 2005 + Movies + Action + + + TVG + + + 2 + + + + X-Men + Professor Xavier (Patrick Stewart) leads Wolverine (Hugh Jackman) and other superheroes against Magneto (Ian McKellen), a mutant who would rule humanity. + + Hugh Jackman + Patrick Stewart + Ian McKellen + + 2000 + Movies + Action + + + TVG + + + 3 + + + + X2 + After a mutant-hating militarist named Stryker invades their school, the X-Men must join forces with Magneto (Ian McKellen) to rescue Professor Xavier (Patrick Stewart) and neutralize the threat posed by Stryker. + + Patrick Stewart + Hugh Jackman + Ian McKellen + + 2003 + Movies + Action + + + TVG + + + 3 + + + + Deadpool 2 + Wisecracking mercenary Deadpool must protect a teenage mutant from Cable -- a genetically enhanced soldier from the future. He soon joins forces with Bedlam, Shatterstar, Domino and other mutants to battle Cable and his powerful advanced weaponry. + + Ryan Reynolds + Josh Brolin + Morena Baccarin + + 2018 + Movies + Action + + + TVPG + + + 3 + + + + Black Widow + Natasha Romanoff, aka Black Widow, confronts the darker parts of her ledger when a dangerous conspiracy with ties to her past arises. + + Scarlett Johansson + Florence Pugh + David Harbour + + 2021 + Movies + Action + + + 3 + + + + The Simpsons + Viva Ned Flanders + Dispirited Ned Flanders takes Homer's advice and goes to Las Vegas. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + Missionary: Impossible + Homer is forced to become a missionary on a remote island after he pledges a large sum of money to PBS. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + Gone Abie Gone + Homer and Marge try to track down a missing Grampa by following clues that lead to secrets from his past; Lisa starts gambling online. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + Sky Police + When Chief Wiggum uses a military jet pack to fight crime, he ends up crashing it into the church, leaving Marge and the congregation to resort to gambling to raise money for the repairs. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + Family Guy + Vat Man & Rob 'Em + When Peter gets a job as the new night watchman, he and the guys turn Pawtucket Brewery into an after-hours bar; Stewie and Brian's plan to collect. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + From Russia With Love + After Brian's Instagram is hacked, Meg takes Stewie and Brian to Russia, only to realize she'd rather stay there; Lois reverts to her tormented teenage self when Quagmire starts dating her high school bully. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + Adult Education + Meg gets married in Russia but returns home after discovering she was used for a green card marriage; Chris, in need of an extracurricular activity, joins Principal Shepherd in shooting pornos at the high school. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + Death Has a Shadow + After Peter gets fired following a riotous bachelor party, he receives a check for $150,000 from the welfare department. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TVPG + + + + Family Guy + I Never Met the Dead Man + Peter crashes into a satellite dish, knocking out the city's cable TV; Stewie schemes to eradicate all vegetables. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + Chitty Chitty Death Bang + Meg unknowingly attends a cult meeting on Stewie's first birthday, and the cult leader follows her home. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + Mind Over Murder + Peter turns the basement into a bar when he is placed under house arrest; Stewie builds a time machine. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + A Hero Sits Next Door + Perturbed Peter decides to steal his new neighbor's limelight by foiling a bank robbery. Voices of Seth MacFarlane, Alex Borstein and Seth Green. Guest voices of Jennifer Tilly and Patrick Warburton. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TVPG + + + + Family Guy + The Son Also Draws + Peter has to prove he has American Indian blood in him to win back Lois' gambling losses at a reservation casino. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TVPG + + + + Archer + Archer Danger Island: Disheartening Situation + Archer estimates his impact on the world while Pam samples the local nightlife. + + H. Jon Benjamin + Jessica Walter + Aisha Tyler + + Animated + Comedy + + + TVMA + + + + Archer + Archer Danger Island: Different Modes of Preparing the Fruit + Archer, Pam and Crackers try to find the missing key to their latest get-rich-quick scheme. + + H. Jon Benjamin + Jessica Walter + Aisha Tyler + + Animated + Comedy + + + TVMA + + + + Archer + Archer Danger Island: A Warrior in Costume + Archer keeps an eye out for a past nemesis. + + H. Jon Benjamin + Jessica Walter + Aisha Tyler + + Animated + Comedy + + + TVMA + + + + Archer + Archer Danger Island: Strange Doings in the Taboo Groves + There is no joy in Mudville as mighty Pam strikes out. + + H. Jon Benjamin + Jessica Walter + Aisha Tyler + + Animated + Comedy + + + TVMA + + + + Archer + Archer Danger Island: Some Remarks on Cannibalism + Archer and Pam request help from a newcomer, but he refuses to lend them a hand. + + H. Jon Benjamin + Jessica Walter + Aisha Tyler + + Animated + Comedy + + + TVMA + + + + Archer + Archer Danger Island: Comparative Wickedness of Civilized and Unenlightened Peoples + Archer helps defend a village from party crashers intent on ruining oysterfest. + + H. Jon Benjamin + Jessica Walter + Aisha Tyler + + Animated + Comedy + + + TVMA + + + + Archer + Archer Danger Island: A Discovery + Archer and the gang enter a deadly temple in search of an even deadlier treasure. + + H. Jon Benjamin + Jessica Walter + Aisha Tyler + + Animated + Comedy + + + TVMA + + + + Archer + Distraction Action + Archer has a brilliant plan to evade capture; there is only one problem, he refuses to follow it. + + H. Jon Benjamin + Aisha Tyler + Chris Parnell + + Animated + Comedy + + + TVMA + + + + Archer + Dough, Ray, and Me + Archer and the gang knead proof to temper expectations and ice the mission. + + H. Jon Benjamin + Aisha Tyler + Chris Parnell + + Animated + Comedy + + + TVMA + + + + FXM Presents + An examination of the process of making movies follows a production from script to screen. + Performing Arts + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + Coin Collecting with Mike Mezack + Learn about the wonderful world of numismatics with your host Mike Mezack and get the opportunity to build your own collection with some of the best deals around! + Paid Program + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + Paid Program + + + TV14 + + + + Rare Silver Coin Set + Add the First Day of Issue 2023 Morgan and Peace Dollars graded in perfect Mint State and Proof 70 condition to your collection. With Mint State mintages of only 275,000 examples and 400,00 for Proof, these coins are incredible absolute rarities! + Paid Program + + + + Book Club + Four friends' lives are turned upside down when their book club tackles the infamous. + + Diane Keaton + Jane Fonda + Candice Bergen + + 2018 + Movies + Romance + + + TVG + + + 2 + + + + Nobody's Fool + Wild child Tanya looks to her buttoned-up, by-the-book sister Danica to help her get back on her feet. As these polar opposites collide, Tanya soon discovers that Danica's picture-perfect life and boyfriend may not be what they seem. + + Tiffany Haddish + Tika Sumpter + Omari Hardwick + + 2018 + Movies + Romance + + + TVPG + + + 1 + + + + King of the Hill + Pilot + A social worker arrives at the Hill household when people misinterpret Hank's attitude toward Bobby. Voices of Mike Judge, Kathy Najimy, Pamela Segall and Brittany Murphy. + Animated + Sitcom + + + TVPG + + + + King of the Hill + Square Peg + Peg is recruited to teach sex education to Bobby's class. Voices of Mike Judge, Kathy Najimy, Pamela Segall and Brittany Murphy. + Animated + Sitcom + + + TVPG + + + + King of the Hill + The Order of the Straight Arrow + Hank gets in trouble with the police and environmentalists when he takes Bobby and his Boy Scout troop on an adventure. + Animated + Sitcom + + + TVPG + + + + King of the Hill + Hank's Got the Willies + Willie Nelson invites the Hills to a barbecue after Bobby accidentally hits the star with a golf club. + Animated + Sitcom + + + TVPG + + + + King of the Hill + Luanne's Saga + After leaving her boyfriend, Hank's niece, Luanne, finds comfort with Boomhauer. Voices of Mike Judge, Kathy Najimy, Pamela Segall and Brittany Murphy. Guest voice: Chuck Mangione. + Animated + Sitcom + + + TVPG + + + + King of the Hill + Hank's Unmentionable Problem + When Hank suffers irregularity, he must tolerate the embarrassment of a visit to the doctor and questions from his friends. + Animated + Sitcom + + + TVPG + + + + King of the Hill + Westie Side Story + The Hills feud with their new Laotian neighbors when the families' dogs begin mating. Voices of Mike Judge, Kathy Najimy, Pamela Segall and Brittany Murphy.. + Animated + Sitcom + + + TVPG + + + + King of the Hill + Shins of the Father + Hank must confront his visiting, war-veteran father when Bobby begins imitating Grandpa's chauvinistic behavior. + Animated + Sitcom + + + TVPG + + + + King of the Hill + Peggy the Boggle Champ + Peggy competes at the state Boggle championship in Dallas; Luanne and Bobby stain the carpet. Voices of Mike Judge, Kathy Najimy, Pamela Segall and Brittany Murphy. Guest voice: Laurie Metcalf. + Animated + Sitcom + + + TVPG + + + + The Simpsons + Homer Is Where the Art Isn't + When Homer is accused of stealing a million-dollar painting, only a detective from the 1970s can clear his name. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + 3 Scenes Plus a Tag From a Marriage + Homer and Marge recount the story of their transition from loving their life without kids to being miserable parents. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + Fears of a Clown + Bart goes to prankster rehab after a clown-mask prank terrifies the town and destroys Krusty's career; Krusty tries his hand at serious drama with a regional theater company. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + No Good Read Goes Unpunished + In an attempt to bring the family together, Marge forces everyone to give up electronics for the day and take a trip to a book store. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + King Leer + Homer and Marge follow Moe after the bar closes early and discover him and his father fighting; they attempt to bring Moe and his father back together. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + Lisa Gets the Blues + When the Simpsons' flight is rerouted to New Orleans, Lisa rediscovers her passion for jazz; Bart is intrigued by voodoo; Homer is intrigued by drinking. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + Forgive and Regret + Grampa makes a confession to Homer while on his deathbed, but when he makes a recovery, he comes to realize that the issue will not be easy to reconcile. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + Left Behind + Homer gets Flanders a job at the plant; Homer regrets it when Flanders starts to insist on carpools and demands more from Homer's work performance; Marge feels that her marriage has lost its spark. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + Bob's Burgers + Just One of the Boyz 4 Now for Now + Convinced she's met the love of her life, Tina disguises herself as a boy and sneaks into the Boyz 4 Now auditions to find him; Teddy asks the rest of the Belcher gang to nurse his baby rat back to health. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TV14 + + + + Bob's Burgers + The Taking of Funtime One Two Three + Louise, Tina and Gene devise a master plan to get the grand prize dune buggy at their local arcade; Teddy convinces Bob and Linda to take in a chicken by promising fresh eggs. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TV14 + + + + The Simpsons + Throw Grampa From the Dane + The Simpsons go to Denmark so Grampa can benefit from the country's free health care. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + Flanders' Ladder + Bart is struck by lightning and is visited by ghosts seeking closure only he can provide. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + Family Guy + Brian: Portrait of a Dog + Brian takes the bully pulpit to argue for his rights after Peter enters him in a dog show. Voices of Seth MacFarlane, Alex Borstein and Seth Green. Guest voice of Dick Van Patten. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + Peter, Peter, Caviar Eater + When the Griffins inherit a mansion, Peter bids $10 million on a piece of art, losing his new home. Voices of Seth MacFarlane, Alex Borstein and Seth Green. Guest voice of Robin Leach. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + Holy Crap + Peter's retired father moves in and drives everyone crazy with his religiosity. Voices of Seth MacFarlane, Alex Borstein and Seth Green. Guest voice: Colm Meaney. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + Da Boom + Peter and his family take cover in the basement on New Year's Eve and emerge to find a different world. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Futurama + Anthology of Interest I + When professor Farnsworth builds a. + + Billy West + Katey Sagal + John DiMaggio + + Animated + Sitcom + + + TVPG + + + + Futurama + Anthology of Interest II + In several. + + Billy West + Katey Sagal + John DiMaggio + + Animated + Sitcom + + + TVPG + + + + The Simpsons + Bart's Not Dead + Bart takes a dare and ends up in the hospital; to cover for himself and Homer, Bart lies about meeting Jesus in Heaven; Christian producers offer the Simpsons a movie deal, but Bart struggles with guilt about lying. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + Heartbreak Hotel + Marge and Homer's marriage is tested when they travel to a tropical island to compete on Marge's favorite reality competition show. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + Archer + Archer 1999: Bort the Garj + Archer and the crew of the Seamus wake up to the smell of shepherd's pie and see a business opportunity in their new guest. + + H. Jon Benjamin + Jessica Walter + Aisha Tyler + + Animated + Comedy + + + TVMA + + + + Archer + Archer 1999: Happy Borthday + The crew provides entertainment for Bort while Barry-6 tries to crack Archer's safe. + + H. Jon Benjamin + Jessica Walter + Aisha Tyler + + Animated + Comedy + + + TVMA + + + + Archer + Archer 1999: The Leftovers + Pam's sandwich ruins everyone's dinner by releasing something deep inside of them. + + H. Jon Benjamin + Jessica Walter + Aisha Tyler + + Animated + Comedy + + + TVMA + + + + Archer + Archer 1999: Dining With the Zarglorp + Deep in space, Archer and the crew encounter a terrifying cosmic beast; even deeper, they encounter a self-aggrandizing life coach. + + H. Jon Benjamin + Jessica Walter + Aisha Tyler + + Animated + Comedy + + + TVMA + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + Inogen Portable Oxygen - Oxygen Therapy that Moves with You + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Car Repair Secrets! + Save thousands on car repairs. + Paid Program + + + + Best Cooling Topper for Back & Hip Pain! + Dormeo Mattress Topper Transforms Your Bed To Get A Great Night's Sleep. Soothing & Cooling. + Paid Program + + + + Nobody's Fool + Wild child Tanya looks to her buttoned-up, by-the-book sister Danica to help her get back on her feet. As these polar opposites collide, Tanya soon discovers that Danica's picture-perfect life and boyfriend may not be what they seem. + + Tiffany Haddish + Tika Sumpter + Omari Hardwick + + 2018 + Movies + Romance + + + TVPG + + + 1 + + + + There's Something About Mary + A geek (Ben Stiller) hires a sleazy private eye (Matt Dillon) to report on a woman (Cameron Diaz) he has adored since high school. + + Cameron Diaz + Matt Dillon + Ben Stiller + + 1998 + Movies + Romance + + + TVPG + + + 3 + + + + King of the Hill + Keeping Up With Our Joneses + Hank forces Bobby to smoke an entire carton of cigarettes after he discovers his experimentation. Voices of Mike Judge, Kathy Najimy, Pamela Segall and Brittany Murphy. + Animated + Sitcom + + + TVPG + + + + King of the Hill + King of the Ant Hill + Hank's relationship with Dale becomes strained when they compete for the best lawn on the block. Voices of Mike Judge, Kathy Najimy, Pamela Segall and Brittany Murphy. + + Mike Judge + Kathy Najimy + Pamela Adlon + + Animated + Sitcom + + + TVPG + + + + The Simpsons + My Way or the Highway to Heaven + God and St. Peter contemplate what merits a soul getting into heaven, while citizens of Springfield remember their divine encounters. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + Baby You Can't Drive My Car + A self-driving car company sets up in Springfield and lures all of the power plant employees to join its fun work environment. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + From Russia Without Love + On a mission to play hardcore pranks, Bart, Nelson and Milhouse get Moe a mail-order bride. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + Werking Mom + Marge wants a job and stumbles into becoming a plastic food storage container-selling drag queen; Lisa tries to make the world better in the style of. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TV14 + + + + The Simpsons + Krusty the Clown + Homer finds his calling as a TV recapper, but his harsh grading causes a brawl with Krusty; after almost killing Homer, Krusty hides out at a real circus and finds happiness there. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + Daddicus Finch + Lisa and Homer's bond gets stronger when they start spending real quality time together; Bart feels neglected, so Marge tries to help Homer balance his attention between the kids. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + Bob's Burgers + Tweentrepreneurs + Tina, Louise and Gene get a taste of business when they join the school's Tweentrepeneurs club; Bob and Linda find themselves outsmarted by a dine-and-dasher. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TV14 + + + + Bob's Burgers + Nightmare on Ocean Avenue Street + The kids set out for their regular Halloween shenanigans, but when everyone's candy bags start mysteriously disappearing, it's up to Tina, Louise and Gene to find the culprit. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Hallowe'en + + + TV14 + + + + Bob's Burgers + Live and Let Fly + The kids seek revenge on their school guidance counselor; they get entangled in sibling rivalry between two pilots; Linda and Bob put their game faces on when Teddy invites them to a paper airplane contest. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TVPG + + + + Bob's Burgers + Bobby Driver + Bob agrees to drive professional quilter Edith around town after she convinces him to help her get revenge; the kids attend a lavish. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TV14 + + + + Bob's Burgers + I Bob Your Pardon + The Belchers set out to save a turkey from a trip to the slaughterhouse, but the mission becomes more complicated than they had anticipated. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TVPG + + + + Bob's Burgers + Roller? I Hardly Know Her! + Gene is livid when his best friend Alex ditches him to be Courtney's roller-dancing partner; Teddy, Linda and Bob let their imaginations get the best of them when they discover someone is stalking the restaurant. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TVPG + + + + Family Guy + Brian in Love + Brian comes to the realization that he's in love with Lois after leaving messy stains on the Griffins' carpet. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + Love Thy Trophy + The Griffins and their neighbors build an award-winning float, but the trophy disappears; Child Services takes Stewie from the family. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + Death Is a Bitch + Death asks Peter to fill in for him while he recovers from a sprained ankle at the Griffins' house. Voices of Seth MacFarlane, Alex Borstein, Seth Green and Mila Kunis. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + The King Is Dead + Peter becomes mad with power during a production of. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + I Am Peter, Hear Me Roar + Peter receives sensitivity training at a women's retreat after he tells some tasteless jokes at work. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + If I'm Dyin' I'm Lyin' + Peter makes Chris pretend he's dying so that the Make-A-Dream-Come-True Foundation will restore a canceled TV show. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + Running Mates + Peter resorts to dirty tricks when he runs against Lois for a position on the school board. Voices of Seth MacFarlane, Alex Borstein and Seth Green. Guest voices of James Carville and Lee Majors. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + A Picture Is Worth a Thousand Bucks + A gallery owner admires Chris' painting and invites the Griffins to New York; Peter envies an old classmate. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + Fifteen Minutes of Shame + After Meg appears on a talk show, the network executives turn the Griffins' stupefying life into a reality series. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + Road to Rhode Island + After Stewie is banished from his grandparents' house, Brian takes a trip to retrieve the terrible tyke. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Futurama + Bender's Game: Part 1 + Ignoring Professor Farnsworth's orders to conserve fuel due to a rise in dark matter prices, Leela borrows the Planet Express ship to enter a demolition derby after being insulted by rednecks. + + Billy West + Katey Sagal + John DiMaggio + + Animated + Sitcom + + + TVPG + + + + Futurama + Bender's Game: Part 2 + Farnsworth's memory lets him down. + + Billy West + Katey Sagal + John DiMaggio + + Animated + Sitcom + + + TVPG + + + + Futurama + Bender's Game: Part 3 + The world flips upside down, sucking everyone into Bender's imaginary Dungeons and Dragons universe; Fry embarks on a mission to destroy the anti-crystal. + + Billy West + Katey Sagal + John DiMaggio + + Animated + Sitcom + + + TV14 + + + + Futurama + Bender's Game: Part 4 + In a face-off with Mom, Fry discovers a secret weapon that will finish the battle once and for all. + + Billy West + Katey Sagal + John DiMaggio + + Animated + Sitcom + + + TVPG + + + + The Cleveland Show + Da Daggone Daddy-Daughter Dinner Dance + Cleveland tries to win over his new stepdaughter, Roberta, by asking her to the school's father/daughter dance. + Animated + Sitcom + + + TV14 + + + + The Cleveland Show + The One About Friends + Afraid that Cleveland Jr. has no friends, Cleveland invites his neighbor's son, Ernie, to the house; when Ernie gets too attached to the family, Cleveland has trouble getting him to go home. + Animated + Sitcom + + + TV14 + + + + The Cleveland Show + Birth of a Salesman + Tim wishes that bad things would happen to Cleveland after he is named top salesman at Waterman Cable. + Animated + Sitcom + + + TV14 + + + + The Cleveland Show + Cleveland Jr. Cherry Bomb + Cleveland Jr. takes a vow of chastity when Cleveland has. + Animated + Sitcom + + + TV14 + + + + Under Eye Bags? SOLUTION! + Plexaderm helps reduce Under Eye Bags, Dark Circles, and Wrinkles in just 10 minutes! + Paid Program + Lifestyle + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + Paid Program + + + TV14 + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Antlers + A small-town Oregon teacher and her brother, the local sheriff, discover that a young student is harboring a dangerous secret with frightening consequences. + + Keri Russell + Jesse Plemons + Jeremy T. Thomas + + 2021 + Movies + Horror + + + TVPG + + + 2 + + + + Ma + A lonely middle-aged woman befriends some teenagers and decides to let them party at her house. Just when the kids think their luck couldn't get any better, things start happening that make them question the intention of their host. + + Octavia Spencer + Diana Silvers + Juliette Lewis + + 2019 + Movies + Thriller + + + TVPG + + + 2 + + + + King of the Hill + Plastic White Female + Bobby is found practicing his kissing techniques on Luanne's hairstyling model head. Voices of Mike Judge, Kathy Najimy, Pamela Segall and Brittany Murphy. + Animated + Sitcom + + + TVPG + + + + King of the Hill + How to Fire a Rifle Without Really Trying + Hank takes Bobby to a firing range and learns that his son is a perfect shot. Voices of Mike Judge, Kathy Najimy, Pamela Segall and Brittany Murphy. + Animated + Sitcom + + + TVPG + + + + King of the Hill + Texas City Twister + Hank's family and the city of Arlen brace themselves for an impending tornado. Voices of Mike Judge, Kathy Najimy, Pamela Segall and Brittany Murphy. + Animated + Sitcom + + + TVPG + + + + King of the Hill + The Arrowhead + Hank finds ancient artifacts buried in his front lawn and ends up enduring an all-out archaeological dig. + Animated + Sitcom + + + TVPG + + + + The Simpsons + 'Tis the 30th Season + After a failed Black Friday shopping spree, Marge is determined to fix Christmas; Homer and the kids surprise Marge with a vacation to a Florida resort. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Christmas + + + TVPG + + + + The Simpsons + Mad About the Toy + When Marge and Homer leave Grampa to baby-sit the kids, some little green army men trigger a PTSD episode, sending the family on a journey to Grampa's past and the time period when he was a post-war toy model. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TV14 + + + + The Simpsons + The Girl on the Bus + When Lisa spots a new best friend from the window of the bus, she gets a taste of what life could be like with a different, more cultured family. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + I'm Dancing as Fat as I Can + Homer angers Marge by watching their favorite show without her; Bart prepares to compete in Krusty's Holiday Trample. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + The Clown Stays in the Picture + Krusty reveals the untold story of his past in his movie. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TV14 + + + + The Simpsons + 101 Mitigations + After Homer steals Comic Book Guy's car, he must either prove his innocence in court or reconcile with the jilted nerd. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + Bob's Burgers + UFO No You Didn't + Tina and her new science partner create a device that allows them to communicate with aliens, but their excitement turns to fear when they receive a dangerous warning message; Bob attempts to sell mini coatracks he bought. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TV14 + + + + Bob's Burgers + Better off Sled + Teenagers take over the Belchers' sledding territory, inciting an epic turf war; Bob steps in to help Linda, who's in a time crunch to get three scarves knitted before Christmas. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Christmas + + + TV14 + + + + Bob's Burgers + Lorenzo's Oil? No, Linda's + When Linda's new friend introduces her to essential oils, Aunt Gayle is convinced she must be rescued; Bob and Teddy are bamboozled into performing a series of annoying favors for Mr. Huggins. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TVPG + + + + Bob's Burgers + The Helen Hunt + The Belchers make it their mission to help Teddy get his dream girl, but Tina is convinced she's found a better match for him. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TVPG + + + + Bob's Burgers + Bed, Bob and Beyond + A Valentine's Day fight between Bob and Linda has the kids feeling confused; Tina, Louise and Gene tell their own story as a distraction from awkward tension. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + + + TVPG + + + + Bob's Burgers + Every Which Way but Goose + Tina, discouraged by not being asked to the prom by Jimmy Jr., forms an unhealthy attachment to a goose from the nearby park; Linda joins a dating app to help Gretchen find a match. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TVPG + + + + Family Guy + Let's Go to the Hop + Peter infiltrates the high school after it is gripped by a toad-licking craze. Guest voice: Gregg Allman. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + Dammit Janet + Stewie develops a crush on a girl at his day-care center, while newly liberated Lois becomes a flight attendant. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + There's Something About Paulie + Peter becomes embroiled in the affairs of a mob family after he takes a mobster's nephew to the movies. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + He's Too Sexy for His Fat + After undergoing liposuction, a newly lean and handsome Peter goes back for more plastic surgery. Voices of Seth MacFarlane, Alex Borstein, Seth Green and Mila Kunis. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TVPG + + + + Family Guy + E. Peterbus Unum + While fighting city hall, Peter declares his property an independent nation-state and makes himself president. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + The Story on Page 1 + After Meg writes her first article for the school newspaper, Peter replaces her piece with one of his own. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + Wasted Talent + Peter and his friends go on a drinking binge to find a winning ticket in a bottle; Lois works Ling too hard for a competition. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TVPG + + + + Family Guy + Fore, Father + Peter ignores Chris in favor of Cleveland's son, who shows a flair for the game of golf. Voices of Seth MacFarlane, Alex Borstein, Seth Green and Mila Kunis. Guest voices: Patrick Warburton, Nicole Sullivan and Phil LaMarr. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + The Thin White Line + Brian becomes the top dog at a local police department, where his nose gets him into trouble. Voices of Seth MacFarlane, Alex Borstein, Seth Green and Mila Kunis. Guest voices: Haley Joel Osment, Patrick Warburton and Leif Garrett. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + Brian Does Hollywood + A down-and-out Brian takes a job directing a porno flick to impress the Griffins. Voices of Seth MacFarlane, Alex Borstein, Seth Green and Mila Kunis. Guest voices: Jenna Jameson, Ron Jeremy and Ray Liotta. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Futurama + Into the Wild Green Yonder: Part 1 + Leela teams up with an environmentally aware feminist group to save an asteroid filled with primitive life forms. + + Billy West + Katey Sagal + John DiMaggio + + Animated + Sitcom + + + TVPG + + + + Futurama + Into the Wild Green Yonder: Part 2 + Leela teams up with an environmentally aware feminist group to save an asteroid filled with primitive life forms. + + Billy West + Katey Sagal + John DiMaggio + + Animated + Sitcom + + + TVPG + + + + Futurama + Into the Wild Green Yonder: Part 3 + Leela teams up with an environmentally aware feminist group to save an asteroid filled with primitive life forms. + + Billy West + Katey Sagal + John DiMaggio + + Animated + Sitcom + + + TVPG + + + + Futurama + Into the Wild Green Yonder: Part 4 + Leela teams up with an environmentally aware feminist group to save an asteroid filled with primitive life forms. + + Billy West + Katey Sagal + John DiMaggio + + Animated + Sitcom + + + TVPG + + + + The Cleveland Show + Ladies' Night + Cleveland discovers that Donna is still attending a support group for single mothers. + Animated + Sitcom + + + TV14 + + + + The Cleveland Show + A Brown Thanksgiving + Cleveland celebrates his first Thanksgiving with his new family and discovers a shocking secret about Donna's Auntie Momma. + Animated + Christmas + + + TV14 + + + + The Cleveland Show + From Bed to Worse + Cleveland and Donna are excited to have the house to themselves when Cleveland Jr. and Roberta are away, but disgruntled Rallo does whatever it takes to keep them apart. + Animated + Sitcom + + + TV14 + + + + The Cleveland Show + A Cleveland Brown Christmas + Cleveland lets a secret slip when he fills in as Santa Claus at the office holiday party; Roberta becomes an animal-rights activist and tries to save a reindeer. + Animated + Christmas + + + TV14 + + + + Emeril Lagasse Forever Pans + FREE GRILL + Forever Pans have what you need to sear, simmer, broil, fry and more. Order now and get FREE Smokeless Grill as a bonus. + Paid Program + Food + + + + DraftKings Sportsbook Report + DraftKings Sportsbook, a top-rated sportsbook app! + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Under Eye Bags? SOLUTION! + Plexaderm helps reduce Under Eye Bags, Dark Circles, and Wrinkles in just 10 minutes! + Paid Program + Lifestyle + + + + Ma + A lonely middle-aged woman befriends some teenagers and decides to let them party at her house. Just when the kids think their luck couldn't get any better, things start happening that make them question the intention of their host. + + Octavia Spencer + Diana Silvers + Juliette Lewis + + 2019 + Movies + Thriller + + + TVPG + + + 2 + + + + Baby Driver + Coerced into working for a crime boss (Kevin Spacey), a talented getaway driver (Ansel Elgort) must face the music when a doomed heist threatens his life, love and freedom. + + Ansel Elgort + Kevin Spacey + Lily James + + 2017 + Movies + Action + + + TVPG + + + 3 + + + + King of the Hill + Jumpin' Crack Bass (It's a Gas, Gas, Gas) + Hank unknowingly buys crack as fishing bait and is arrested for buying drugs. Guest voice: campaign adviser James Carville. + Animated + Sitcom + + + TVPG + + + + King of the Hill + Husky Bobby + Bobby finds success as a model for husky children's clothes, much to the dismay of Hank. Voices of Mike Judge, Kathy Najimy, Pamela Segall and Brittany Murphy. + Animated + Sitcom + + + TVPG + + + + King of the Hill + The Man Who Shot Cane Skretteberg + Hank challenges the members of a loud neighborhood garage band to a game of paintball. Voices of Mike Judge, Kathy Najimy, Pamela Segall and Brittany Murphy. Guest voices: Green Day. + Animated + Sitcom + + + TVPG + + + + The Simpsons + I Want You (She's So Heavy) + When a romantic night ends in injury, Marge recovers by taking up kite boarding while Homer bonds with his hallucinated hernia; Lisa attempts to fix her parents' strained relationship by seeking advice from an unlikely source. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + E My Sports + As Bart begins to excel in video game competitions, Homer discovers a passion for coaching him; Lisa attempts to bring Homer back to reality, but the plan causes chaos. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + Bart vs. Itchy & Scratchy + Krusty releases an all-female reboot of. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TV14 + + + + The Simpsons + Girl's in the Band + Lisa is scouted by the director of the Capitol City Philharmonic, to her band teacher's dismay; Homer works extra shifts at the plant, putting strain on the family. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TV14 + + + + The Simpsons + I'm Just a Girl Who Can't Say D'oh + Marge becomes director of Springfield's local theater, armed with Lisa's script resembling. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TV14 + + + + The Simpsons + D'oh Canada + Marge must rescue Lisa when she is mistakenly granted political asylum in Canada while on a vacation to Niagara Falls; Homer takes Maggie to a. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TV14 + + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + The King of Queens + Apartment Complex + Doug and the guys rent an apartment over a Chinese restaurant to host their poker nights after Carrie tosses them out of the house. Also, Carrie gets Kirstie Alley as a client and is forced to eat large amounts of food in front of her as part of Alley's strange weight-loss program. (repeat). + + Kevin James + Leah Remini + Jerry Stiller + Victor Williams + Patton Oswalt + Larry Romano + Kurt Farquhar + Rob Schiller + Mark Cendrowski + Annette Sahakian Davis + Josh Goldsmith + + 2006 + Comedy + + S8 + 8 E14 + + TV-PG + + + 5.5/10 + + + + The King of Queens + Raygin' Bulls + Doug invites Ray Barone (Ray Romano) to crash at his house while both of their wives are out of town and the two go clubbing. Meanwhile, Carrie goes with Arthur to visit her mother's grave in New Jersey for the first time and is shocked when she reads the tombstone. (repeat). + + Kevin James + Leah Remini + Jerry Stiller + Victor Williams + Patton Oswalt + Larry Romano + Kurt Farquhar + Rob Schiller + Mark Cendrowski + Annette Sahakian Davis + Josh Goldsmith + + 2005 + Comedy + + S8 + 8 E10 + + TV-PG + + + 5.5/10 + + + + The King of Queens + Knee Jerk + Doug enjoys the extra attention Carrie gives him after he falls down the stairs and injures a knee, so he comes up with a plan for the pampering to continue even after he is healed. (repeat). + + Kevin James + Leah Remini + Jerry Stiller + Victor Williams + Patton Oswalt + Larry Romano + Kurt Farquhar + Rob Schiller + Mark Cendrowski + Annette Sahakian Davis + Josh Goldsmith + + 2006 + Comedy + + S8 + 8 E16 + + TV-PG + + + 5.5/10 + + + + The King of Queens + Baker's Doesn't + Doug and Carrie are roped into helping out at their church during the holidays: he guards the manger, while she tries to bake a cake. Also, Arthur and Spence attempt to write a Christmas song so they can cash in on the holiday. Father McDaniel: Nick Bakay. (repeat). + + Kevin James + Leah Remini + Jerry Stiller + Victor Williams + Patton Oswalt + Larry Romano + Kurt Farquhar + Rob Schiller + Mark Cendrowski + Annette Sahakian Davis + Josh Goldsmith + + 2005 + Comedy + + S8 + 8 E11 + + TV-PG + + + 5.5/10 + + + + The King of Queens + Present Tense + Doug and Carrie receive a hideous portrait of themselves from Deacon and Kelly as an anniversary present. (repeat). + + Kevin James + Leah Remini + Jerry Stiller + Victor Williams + Patton Oswalt + Larry Romano + Kurt Farquhar + Rob Schiller + Mark Cendrowski + Annette Sahakian Davis + Josh Goldsmith + + 2006 + Comedy + + S8 + 8 E17 + + TV-PG + + + 5.5/10 + + + + The King of Queens + Baker's Doesn't + Doug and Carrie are roped into helping out at their church during the holidays: he guards the manger, while she tries to bake a cake. Also, Arthur and Spence attempt to write a Christmas song so they can cash in on the holiday. Father McDaniel: Nick Bakay. (repeat). + + Kevin James + Leah Remini + Jerry Stiller + Victor Williams + Patton Oswalt + Larry Romano + Kurt Farquhar + Rob Schiller + Mark Cendrowski + Annette Sahakian Davis + Josh Goldsmith + + 2005 + Comedy + + S8 + 8 E11 + + TV-PG + + + 5.5/10 + + + + The King of Queens + Present Tense + Doug and Carrie receive a hideous portrait of themselves from Deacon and Kelly as an anniversary present. (repeat). + + Kevin James + Leah Remini + Jerry Stiller + Victor Williams + Patton Oswalt + Larry Romano + Kurt Farquhar + Rob Schiller + Mark Cendrowski + Annette Sahakian Davis + Josh Goldsmith + + 2006 + Comedy + + S8 + 8 E17 + + TV-PG + + + 5.5/10 + + + + The King of Queens + Sold-Y Locks + In order to afford a cruise, Doug convinces Carrie to cut her hair to sell to a wig maker, but regrets his idea after the deed is done. (repeat). + + Kevin James + Leah Remini + Jerry Stiller + Victor Williams + Patton Oswalt + Larry Romano + Kurt Farquhar + Rob Schiller + Mark Cendrowski + Annette Sahakian Davis + Josh Goldsmith + + 2006 + Comedy + + S8 + 8 E18 + + TV-PG + + + 5.5/10 + + + + The King of Queens + Emotional Rollercoaster + Doug turns 40 and fakes a midlife crisis so Carrie will think he intends to better his life, but all he really wants to do is conquer his fear of riding a monster roller coaster that he was too scared to go on 15 years ago. (repeat). + + Kevin James + Leah Remini + Jerry Stiller + Victor Williams + Patton Oswalt + Larry Romano + Kurt Farquhar + Rob Schiller + Mark Cendrowski + Annette Sahakian Davis + Josh Goldsmith + + 2006 + Comedy + + S8 + 8 E19 + + TV-PG + + + 5.5/10 + + + + Billy the Exterminator + Night of the Living Possums + A possum problem in New Orleans. (repeat). + + Rich Hansil + + 2011 + Reality + + S5 E9 + + TV-PG + + + + Billy the Exterminator + What Lurks Beneath + Billy and Ricky go after two alligators in Beaumont, Texas; and handle a bed-bug infestation in Miami. (repeat). + + Rich Hansil + + 2011 + Reality + + S4 E3 + + TV-PG + + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + FYI Programming + (repeat). + 2016 + + + Counting Cars + Chumlee's Challenge + Austin "Chumlee" Russell ("Pawn Stars") receives bad news about his 1963 Lincoln. (repeat). + + Kevin Bluhm + Jonathan Wyche + Anna Diaz + Zach Behr + Danny Koker + + 2013 + Reality + Tech & Gaming + + S2 E12 + + TV-PG + + + + Counting Cars + Not So Pretty in Pink + The guys build a customized wheelchair. (repeat). + + Kevin Bluhm + Jonathan Wyche + Anna Diaz + Zach Behr + Danny Koker + + 2013 + Reality + Tech & Gaming + + S2 E11 + + TV-PG + + + + Counting Cars + Day of Judgment + Scott eyes a rare Corvette; the guys struggle to complete work on a '62 Chevy pickup. (repeat). + + Kevin Bluhm + Jonathan Wyche + Anna Diaz + Zach Behr + Danny Koker + + 2013 + Reality + Tech & Gaming + + S2 E13 + + TV-PG + + + + Counting Cars + Psychedelic Cycle + A unique motorcycle is customized. (repeat). + + Kevin Bluhm + Jonathan Wyche + Anna Diaz + Zach Behr + Danny Koker + + 2013 + Reality + Tech & Gaming + + S2 E14 + + TV-PG + + + + Fully Torqued + Mopar Power + Steve is eager to execute some quick and furious burnouts in his 71 Challenger. He also has a Dodge Dart to work on that Bird enjoys. April Rose, a Barret Jackson co-host, joins Steve to look at a one-of-a-kind automotive collection. (repeat). + + Bud W. Brutsman + + 2021 + Reality + S3 E4 + + TV-14 + + + + Barrett-Jackson REVVED UP + Top Down + Some of the greatest topless luxury vehicles compete on the auction block, including Cadillac, Packard, Lincoln, Bentley and Oldsmobile. (new). + 2023 + Reality + + TV-PG + + + + Counting Cars + Change of Heart + Danny has a change of heart about a classic car he promised to sell to a loyal customer. (repeat). + + Kevin Bluhm + Jonathan Wyche + Anna Diaz + Zach Behr + Danny Koker + + 2013 + Reality + Tech & Gaming + + S2 E15 + + TV-PG + + + + Counting Cars + Super Nova + Danny builds a tribute car for charity. (repeat). + + Kevin Bluhm + Jonathan Wyche + Anna Diaz + Zach Behr + Danny Koker + + 2013 + Reality + Tech & Gaming + + S2 E16 + + TV-PG + + + + Counting Cars + One Love, One Car + Ziggy Marley commissions a restoration on his father's vintage Mercedes-Benz. (repeat). + + Kevin Bluhm + Jonathan Wyche + Anna Diaz + Zach Behr + Danny Koker + + 2013 + Reality + Tech & Gaming + + S2 E17 + + TV-PG + + + + Counting Cars + Day of Judgment + Scott eyes a rare Corvette; the guys struggle to complete work on a '62 Chevy pickup. (repeat). + + Kevin Bluhm + Jonathan Wyche + Anna Diaz + Zach Behr + Danny Koker + + 2013 + Reality + Tech & Gaming + + S2 E13 + + TV-PG + + + + Counting Cars + Psychedelic Cycle + A unique motorcycle is customized. (repeat). + + Kevin Bluhm + Jonathan Wyche + Anna Diaz + Zach Behr + Danny Koker + + 2013 + Reality + Tech & Gaming + + S2 E14 + + TV-PG + + + + Fully Torqued + Mopar Power + Steve is eager to execute some quick and furious burnouts in his 71 Challenger. He also has a Dodge Dart to work on that Bird enjoys. April Rose, a Barret Jackson co-host, joins Steve to look at a one-of-a-kind automotive collection. (repeat). + + Bud W. Brutsman + + 2021 + Reality + S3 E4 + + TV-14 + + + + Barrett-Jackson REVVED UP + Top Down + Some of the greatest topless luxury vehicles compete on the auction block, including Cadillac, Packard, Lincoln, Bentley and Oldsmobile. (new). + 2023 + Reality + + TV-PG + + + + Counting Cars + Change of Heart + Danny has a change of heart about a classic car he promised to sell to a loyal customer. (repeat). + + Kevin Bluhm + Jonathan Wyche + Anna Diaz + Zach Behr + Danny Koker + + 2013 + Reality + Tech & Gaming + + S2 E15 + + TV-PG + + + + Counting Cars + Super Nova + Danny builds a tribute car for charity. (repeat). + + Kevin Bluhm + Jonathan Wyche + Anna Diaz + Zach Behr + Danny Koker + + 2013 + Reality + Tech & Gaming + + S2 E16 + + TV-PG + + + + Counting Cars + One Love, One Car + Ziggy Marley commissions a restoration on his father's vintage Mercedes-Benz. (repeat). + + Kevin Bluhm + Jonathan Wyche + Anna Diaz + Zach Behr + Danny Koker + + 2013 + Reality + Tech & Gaming + + S2 E17 + + TV-PG + + + + Counting Cars + Muscle Memory + Danny attempts to restore a 1969 Firebird; a surprise visitor causes trouble at the shop. (repeat). + + Kevin Bluhm + Jonathan Wyche + Anna Diaz + Zach Behr + Danny Koker + + 2013 + Reality + Tech & Gaming + + S2 E9 + + TV-PG + + + + Counting Cars + Count's Cryptonite + Danny receives an offer for one of his prized cars; the guys visit the SEMA auto show. (repeat). + + Kevin Bluhm + Jonathan Wyche + Anna Diaz + Zach Behr + Danny Koker + + 2013 + Reality + Tech & Gaming + + S2 E10 + + TV-PG + + + + Larry King's Investigative Prostate Health Report - Secrets To Prostate Health Revealed, Get The Solution To A Healthy Prostate + Larry King Investigates Prostate Supplements to determine which products work and which ones don't work and why. A must watch for all men over 45. + + + Paid Programming + Paid Programming. (repeat). + + TV-14 + + + + Paid Programming + Paid Programming. (repeat). + + TV-14 + + + + MyBiotin + What is The MyBiotin Beauty Secret? Experience Thicker Hair in just 3 Weeks! Significantly Reduces Fine Lines & Wrinkles with MyBiotin! Beautiful Results you will See and Feel! For Both, Men and Women! + 2022 + + + Joni Table Talk + A talk show featuring guests, lifestyle segments and controversial topics. (repeat). + + Joni Lamb + + Family + Talk & Interview + + TV-G + + + + David Jeremiah + David Jeremiah + A message of hope from David Jeremiah of Turning Point. (repeat). + + + Shipping Wars + It's My Party & I'll Shoot You If I Want To + Marc gets a surprise while transporting a playhouse. (repeat). + + Britton Beisenherz + Scott Rice + Jonathan Nowzaradan + + 2014 + Documentary + Reality + Variety Shows + + S5 E11 + + TV-PG + + + + Shipping Wars + Highway to the Stranger Zone + Jenn hauls antique dolls. (repeat). + + Britton Beisenherz + Scott Rice + Jonathan Nowzaradan + + 2014 + Documentary + Reality + Variety Shows + + S6 E3 + + TV-PG + + + + Shipping Wars + Three Horses and a Funeral + Jarrett hauls a carousel; Todd and Tamera transport a 140-year-old horse-drawn hearse. (repeat). + + Britton Beisenherz + Scott Rice + Jonathan Nowzaradan + + 2014 + Documentary + Reality + Variety Shows + + S6 E4 + + TV-PG + + + + Shipping Wars + A Tactical Disaster + Jenn drives an armored vehicle. (repeat). + + Britton Beisenherz + Scott Rice + Jonathan Nowzaradan + + 2014 + Documentary + Reality + Variety Shows + + S6 E6 + + TV-PG + + + + Shipping Wars + Head Today, Gong Tomorrow + Jenn transports prayer gongs; Jarrett picks up a side job in Las Vegas. (repeat). + + Britton Beisenherz + Scott Rice + Jonathan Nowzaradan + + 2014 + Documentary + Reality + Variety Shows + + S6 E5 + + TV-PG + + + + Shipping Wars + Spaced Invaders + A vintage game pod is hauled by Todd and Tamera. (repeat). + + Britton Beisenherz + Scott Rice + Jonathan Nowzaradan + + 2014 + Documentary + Reality + Variety Shows + + S6 E7 + + TV-PG + + + + Parking Wars + Episode 8 + In Philadelphia, police assistance is needed when an angry man demands to have a boot removed; and a brother and sister try to get their car from the impound lot. (repeat). + + Po Kutchins + Daniel Elias + Daniel Elias + + 2009 + Reality + Drama + + S3 E8 + + TV-PG + + + + Parking Wars + Episode 35 + They are the people we love to hate - and never before have they been so loveable! You know they've got you when you find a ticket tucked under your windshield, a yellow boot clinging to your car's wheel, or when you can't find your car at all. And it's all in a day's work for the men and women of the Philadelphia Parking Authority. (repeat). + + Po Kutchins + Daniel Elias + Daniel Elias + + 2012 + Reality + Drama + + + TV-PG + + + + Parking Wars + Episode 2 + A man is outraged when his car gets the boot, and he tries to remove the device; a ticket writer confronts a man whose vehicle is blocking a bus zone; and a father and son try to retrieve their impounded car. (repeat). + + Po Kutchins + Daniel Elias + Daniel Elias + + 2009 + Reality + Drama + + S3 E2 + + TV-PG + + + + Parking Wars + Episode 37 + They are the people we love to hate - and never before have they been so loveable! You know they've got you when you find a ticket tucked under your windshield, a yellow boot clinging to your car's wheel, or when you can't find your car at all. And it's all in a day's work for the men and women of the Philadelphia Parking Authority. (repeat). + + Po Kutchins + Daniel Elias + Daniel Elias + + 2012 + Reality + Drama + + + TV-PG + + + + Parking Wars + Episode 11 + A blizzard in Philadelphia creates parking nightmares and fuels tempers, especially at the impound lot; and the freezing temperatures cause problems with vehicle boots. (repeat). + + Po Kutchins + Daniel Elias + Daniel Elias + + 2009 + Reality + Drama + + S3 E11 + + TV-PG + + + + Parking Wars + Episode 6 + A Detroit worker has a confrontation with an angry man who parked commercial equipment on the street. In Philadelphia, a worker giving tickets is insulted by a group of young men; and a fast-food manager tries to retrieve his impounded car. (repeat). + + Po Kutchins + Daniel Elias + Daniel Elias + + 2009 + Reality + Drama + + S3 E6 + + TV-PG + + + + Parking Wars + Episode 40 + Sparks fly as Mike stumbles onto a parking fiasco at a Philly gala event. Then, Rodney and Michele catch red-handed a Detroiter in the act of removing a boot. And brotherly love is tested when two Jersey boys try to rescue their hoopdie from the Philly impound lot. (repeat). + + Po Kutchins + Daniel Elias + Daniel Elias + + 2023 + Reality + Drama + + + TV-PG + + + + Parking Wars + Episode 5 + In Detroit, a hit-and-run shakes up a boot-duty duo, and a worker has difficulty enforcing a parking ordinance on July 4. In Philadelphia, a young man tries to retrieve his impounded car that was taken when the man's father was caught speeding in the vehicle without a license. (repeat). + + Po Kutchins + Daniel Elias + Daniel Elias + + 2009 + Reality + Drama + + S3 E5 + + TV-PG + + + + Parking Wars + Episode 4 + In Philadelphia, a ticket writer is promoted to supervisor and is called to calm tempers on South Street and help a rookie. (repeat). + + Po Kutchins + Daniel Elias + Daniel Elias + + 2009 + Reality + Drama + + S3 E4 + + TV-PG + + + + Parking Wars + Episode 43 + In Philly, Garfield tests his Irish luck trying to boot two cars on the same block, until one citizen gets physical. Then, a 70 year-old man's patience is tested as he tries to get his car out of the Philly impound lot. (repeat). + + Po Kutchins + Daniel Elias + Daniel Elias + + 2023 + Reality + Drama + + + TV-PG + + + + Property Virgins + Jersey Girl in Georgia + A young lady from New Jersey seeks a three-bedroom home in Atlanta. (repeat). + + Dennis Beauchamp + Jeremy Lutter + Egypt Sherrod + Sandra Rinomato + John Vandervelde + + 2012 + Reality + S12 E1 + + TV-PG + + + + Property Virgins + The Young and Unrealistic + An engaged couple in Atlanta are determined to buy their suburban dream home before their wedding day. They find a foreclosed property that's spacious and affordable, but the bidding process proves to be somewhat challenging. (repeat). + + Dennis Beauchamp + Jeremy Lutter + Egypt Sherrod + Sandra Rinomato + John Vandervelde + + 2012 + Reality + S12 E7 + + TV-PG + + + + Property Virgins + With This House, I Thee Wed + An engaged couple with high expectations and a long to-do list look for a budget-friendly place. (repeat). + + Dennis Beauchamp + Jeremy Lutter + Egypt Sherrod + Sandra Rinomato + John Vandervelde + + 2012 + Reality + S12 E4 + + TV-PG + + + + Property Virgins + Home Is Where the Heart Is + A recent business school grad is looking for a move-in ready home on a tight budget in Atlanta. (repeat). + + Dennis Beauchamp + Jeremy Lutter + Egypt Sherrod + Sandra Rinomato + John Vandervelde + + 2012 + Reality + S12 E6 + + TV-PG + + + + Property Virgins + Lauren + An elementary-school teacher and her 5-year-old child are ready to make the move from a one-bedroom apartment to a more spacious home in Atlanta. (repeat). + + Dennis Beauchamp + Jeremy Lutter + Egypt Sherrod + Sandra Rinomato + John Vandervelde + + 2012 + Reality + S12 E12 + + TV-PG + + + + Property Virgins + Out'a Space + A couple who have outgrown their cramped apartment search for a move-in-ready home in the suburbs of Atlanta. (repeat). + + Dennis Beauchamp + Jeremy Lutter + Egypt Sherrod + Sandra Rinomato + John Vandervelde + + 2012 + Reality + S12 E13 + + TV-PG + + + + Property Virgins + Great Expectations + A single mother searches for a home in Atlanta. (repeat). + + Dennis Beauchamp + Jeremy Lutter + Egypt Sherrod + Sandra Rinomato + John Vandervelde + + 2012 + Reality + S12 E3 + + TV-PG + + + + Property Virgins + Property Picky + An Atlanta couple won't settle for anything but love at first sight when it comes to buying their first home. (repeat). + + Dennis Beauchamp + Jeremy Lutter + Egypt Sherrod + Sandra Rinomato + John Vandervelde + + 2012 + Reality + S12 E8 + + TV-PG + + + + Property Virgins + Home Base + A dog-friendly home in Atlanta is sought by a couple on a tight budget. (repeat). + + Dennis Beauchamp + Jeremy Lutter + Egypt Sherrod + Sandra Rinomato + John Vandervelde + + 2012 + Reality + S12 E10 + + TV-PG + + + + Property Virgins + In the Dog House + An Atlanta couple agree that they want out of their cramped one-bedroom apartment, but have a difference of opinion as to whether they should purchase a move-in-ready condo or a home with a yard for their two dogs. (repeat). + + Dennis Beauchamp + Jeremy Lutter + Egypt Sherrod + Sandra Rinomato + John Vandervelde + + 2012 + Reality + S12 E11 + + TV-PG + + + + Property Virgins + Daniel & Laura + Daniel and Laura recently left their small town in Florida for the bright lights of Atlanta, and the couple is now looking for a slick downtown condo to call their own. (repeat). + + Dennis Beauchamp + Jeremy Lutter + Egypt Sherrod + Sandra Rinomato + John Vandervelde + + 2023 + Reality + S18 E11 + + TV-PG + + + + Property Virgins + Ab & Irene + Ab and Irene look for a beautiful dog-friendly house that is as distinctive as they are, as they are tired of their long-distance commute and want to take their relationship to the next level. (repeat). + + Dennis Beauchamp + Jeremy Lutter + Egypt Sherrod + Sandra Rinomato + John Vandervelde + + 2023 + Reality + S18 E10 + + TV-PG + + + + Property Virgins + Bob & Bree + After feeling cramped in their little rental apartment, newlyweds Bob and Bree hope to find a roomy Atlanta home of their own where they can finally unpack their wedding gifts and settle down. (repeat). + + Dennis Beauchamp + Jeremy Lutter + Egypt Sherrod + Sandra Rinomato + John Vandervelde + + 2023 + Reality + S18 E12 + + TV-PG + + + + Property Virgins + Leonitia & James + Leonitia and James, high school sweethearts and now husband and wife, desire to start a familyand buy their first home as soon as possible. (repeat). + + Dennis Beauchamp + Jeremy Lutter + Egypt Sherrod + Sandra Rinomato + John Vandervelde + + 2023 + Reality + S18 E8 + + TV-PG + + + + Property Virgins + Cromwell & Merrill + Atlanta high roller Cromwell and his girlfriend Merrill are seeking to discover the perfect property after a six-year housing quest. However, their large budget comes with even greater expectations. (repeat). + + Dennis Beauchamp + Jeremy Lutter + Egypt Sherrod + Sandra Rinomato + John Vandervelde + + 2023 + Reality + S18 E7 + + TV-PG + + + + Property Virgins + Jenni & Mike + Jenni and Mikeare eager to discover their perfect home after growing tired of their temporary love nest. But, while he's obsessed with numbers, she's a free-spirited artist who believes budgets were designed to be broken. (repeat). + + Dennis Beauchamp + Jeremy Lutter + Egypt Sherrod + Sandra Rinomato + John Vandervelde + + 2023 + Reality + S18 E9 + + TV-PG + + + + Property Virgins + Home Base + A dog-friendly home in Atlanta is sought by a couple on a tight budget. (repeat). + + Dennis Beauchamp + Jeremy Lutter + Egypt Sherrod + Sandra Rinomato + John Vandervelde + + 2012 + Reality + S12 E10 + + TV-PG + + + + Property Virgins + In the Dog House + An Atlanta couple agree that they want out of their cramped one-bedroom apartment, but have a difference of opinion as to whether they should purchase a move-in-ready condo or a home with a yard for their two dogs. (repeat). + + Dennis Beauchamp + Jeremy Lutter + Egypt Sherrod + Sandra Rinomato + John Vandervelde + + 2012 + Reality + S12 E11 + + TV-PG + + + + Property Virgins + Daniel & Laura + Daniel and Laura recently left their small town in Florida for the bright lights of Atlanta, and the couple is now looking for a slick downtown condo to call their own. (repeat). + + Dennis Beauchamp + Jeremy Lutter + Egypt Sherrod + Sandra Rinomato + John Vandervelde + + 2023 + Reality + S18 E11 + + TV-PG + + + + Property Virgins + Ab & Irene + Ab and Irene look for a beautiful dog-friendly house that is as distinctive as they are, as they are tired of their long-distance commute and want to take their relationship to the next level. (repeat). + + Dennis Beauchamp + Jeremy Lutter + Egypt Sherrod + Sandra Rinomato + John Vandervelde + + 2023 + Reality + S18 E10 + + TV-PG + + + + Property Virgins + Bob & Bree + After feeling cramped in their little rental apartment, newlyweds Bob and Bree hope to find a roomy Atlanta home of their own where they can finally unpack their wedding gifts and settle down. (repeat). + + Dennis Beauchamp + Jeremy Lutter + Egypt Sherrod + Sandra Rinomato + John Vandervelde + + 2023 + Reality + S18 E12 + + TV-PG + + + + Property Virgins + Leonitia & James + Leonitia and James, high school sweethearts and now husband and wife, desire to start a familyand buy their first home as soon as possible. (repeat). + + Dennis Beauchamp + Jeremy Lutter + Egypt Sherrod + Sandra Rinomato + John Vandervelde + + 2023 + Reality + S18 E8 + + TV-PG + + + + Property Virgins + Cromwell & Merrill + Atlanta high roller Cromwell and his girlfriend Merrill are seeking to discover the perfect property after a six-year housing quest. However, their large budget comes with even greater expectations. (repeat). + + Dennis Beauchamp + Jeremy Lutter + Egypt Sherrod + Sandra Rinomato + John Vandervelde + + 2023 + Reality + S18 E7 + + TV-PG + + + + Property Virgins + Jenni & Mike + Jenni and Mikeare eager to discover their perfect home after growing tired of their temporary love nest. But, while he's obsessed with numbers, she's a free-spirited artist who believes budgets were designed to be broken. (repeat). + + Dennis Beauchamp + Jeremy Lutter + Egypt Sherrod + Sandra Rinomato + John Vandervelde + + 2023 + Reality + S18 E9 + + TV-PG + + + + Property Virgins + Jersey Girl in Georgia + A young lady from New Jersey seeks a three-bedroom home in Atlanta. (repeat). + + Dennis Beauchamp + Jeremy Lutter + Egypt Sherrod + Sandra Rinomato + John Vandervelde + + 2012 + Reality + S12 E1 + + TV-PG + + + + Property Virgins + The Young and Unrealistic + An engaged couple in Atlanta are determined to buy their suburban dream home before their wedding day. They find a foreclosed property that's spacious and affordable, but the bidding process proves to be somewhat challenging. (repeat). + + Dennis Beauchamp + Jeremy Lutter + Egypt Sherrod + Sandra Rinomato + John Vandervelde + + 2012 + Reality + S12 E7 + + TV-PG + + + + Larry King's Investigative Prostate Health Report - Secrets To Prostate Health Revealed, Get The Solution To A Healthy Prostate + Larry King Investigates Prostate Supplements to determine which products work and which ones don't work and why. A must watch for all men over 45. + + + Paid Programming + Paid Programming. (repeat). + + TV-14 + + + + Paid Programming + Paid Programming. (repeat). + + TV-14 + + + + Paid Programming + Paid Programming. (repeat). + + TV-14 + + + + Joni Table Talk + A talk show featuring guests, lifestyle segments and controversial topics. (repeat). + + Joni Lamb + + Family + Talk & Interview + + TV-G + + + + David Jeremiah + David Jeremiah + A message of hope from David Jeremiah of Turning Point. (repeat). + + + Swamp People + Rebound + The hunters are forced to adjust their plans in the aftermath of a tropical storm; R.J. and Jay Paul search for gators inland; Junior and Malcolm explore an area that's normally inaccessible; and Glenn and Mitchell hunt for dinner in the swamp. (repeat). + + Bruce Hanifan + Anna Diaz + Bradley Carper + Thomas Peyton + + 2012 + Reality + Action & Adventure + + S3 E9 + + TV-PG + + + + Swamp People + Gates of Hell + Troy and Clint venture into a treacherous section of swamp; Joe and Tommy explore a flooded drainage ditch that's been inaccessible for years; and Willie and Randy are given a gator quota to fill. Also: R.J.'s 50th birthday is celebrated. (repeat). + + Bruce Hanifan + Anna Diaz + Bradley Carper + Thomas Peyton + + 2012 + Reality + Action & Adventure + + S3 E10 + + TV-PG + + + + Swamp People + Under Siege + Troy hunts a gator that has eluded him for years; Glenn and Mitchell help a friend move his houseboat; and Liz has trouble taking down an enormous alligator. (repeat). + + Bruce Hanifan + Anna Diaz + Bradley Carper + Thomas Peyton + + 2012 + Reality + Action & Adventure + + S3 E11 + + TV-PG + + + + Swamp People + Secret Weapons + Troy receives help from his family while filling tags in Pierre Part; Austyn and Blake are presented with a difficult challenge; and Bruce uses a rotten chicken as bait. (repeat). + + Bruce Hanifan + Anna Diaz + Bradley Carper + Thomas Peyton + + 2012 + Reality + Action & Adventure + + S3 E12 + + TV-PG + + + + Swamp People + Scorched + Troy and Clint target gators in Lake Verret; Junior Edwards tries to repeat his past hot-weather-hunting success; and Bruce, Ron and Tyler attempt to navigate a maze of canals. (repeat). + + Bruce Hanifan + Anna Diaz + Bradley Carper + Thomas Peyton + + 2012 + Reality + Action & Adventure + + S3 E13 + + TV-PG + + + + Swamp People + Voodoo Bayou + Flooding in the Mississippi Delta allows access to previously unreachable areas of the bayou; Troy takes Chase to old Landry-family hunting grounds; and R.J. and Jay Paul explore a former burial site. (repeat). + + Bruce Hanifan + Anna Diaz + Bradley Carper + Thomas Peyton + + 2012 + Reality + Action & Adventure + + S3 E14 + + TV-PG + + + + Swamp People + Turf War + Joe and Tommy go shrimping; a gator threatens Kristi's cattle; Malcom angles for catfish; and Glenn and Mitchell fix an old motor for a friend. (repeat). + + Bruce Hanifan + Anna Diaz + Bradley Carper + Thomas Peyton + + 2012 + Reality + Action & Adventure + + S3 E15 + + TV-PG + + + + Swamp People + Big Gators, Big Dollars + Troy and Clint visit a section of the swamp where they've had past success; R.J. and Jay Paul hunt a gator that has been terrorizing local crab fishermen; and Austyn and Blake sell to a new buyer. (repeat). + + Bruce Hanifan + Anna Diaz + Bradley Carper + Thomas Peyton + + 2012 + Reality + Action & Adventure + + S3 E16 + + TV-PG + + + + Swamp People + Never Say Die + Sore hands slow Liz down; Junior deals with a fishing accident; and Joe and his stepson Tommy make an unpleasant discovery. (repeat). + + Bruce Hanifan + Anna Diaz + Bradley Carper + Thomas Peyton + + 2012 + Reality + Action & Adventure + + S3 E17 + + TV-PG + + + + Swamp People + Cold-Blooded + Strong winds cause trouble for R.J. and Jay Paul's airboat; Willie hunts gators with his father; Troy's sons try out a special gator bait. (repeat). + + Bruce Hanifan + Anna Diaz + Bradley Carper + Thomas Peyton + + 2012 + Reality + Action & Adventure + + S3 E18 + + TV-PG + + + + Duck Dynasty + Half in the Bag + Si starts bagging groceries at a local store, but the guys accidentally cost him the job after they tease him about it. Elsewhere: Korie bribes Willie to get him to visit the dentist. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2016 + Reality + Business + + S10 E6 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + There Will Be Flood + A large storm hits Monroe and the family seek shelter at Phil and Kay's house. Elsewhere: Jep; Si; Marti; and Godwin try to guard the Duck Commander inventory from damage when the roof starts leaking. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2016 + Reality + Business + + S10 E7 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + Whole Lotta Bull + The guys enjoy a one-day rodeo fantasy camp where they learn the ins and outs of riding, roping and clowning. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2016 + Reality + Business + + S10 E11 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + Bro'd Trip + Willie travels to Arkansas on business with Jase and pitches a new product with an unorthodox sales strategy. Back in Monroe, Jep and Si accidentally ship out an important item of Willie's and try to recover it. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2016 + Reality + Business + + S10 E13 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + Drive-In Revivin' + Korie challenges Willie to be romantic without spending money and Missy and Jase try to find a girlfriend for Mountain Man. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2016 + Reality + Business + + S11 E7 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + Good Willie Hunting + A tracking challenge sees Jase and Si compete to see who can capture Willie and Jep. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2016 + Reality + Business + + S11 E5 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + Sleep Cover + With Korie still in Africa, Willie and Jep must step in and supervise Bella's sleepover. When a couple boys play a prank on the girls, Willie and Jep prove to be the perfect chaperones for the task. Meanwhile, Jase takes Si, Martin and Godwin for a round of night golf. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2016 + Reality + Business + + S11 E6 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + Razing the Snakes + Jase, Jep, Si and Cole try to fight back a growing population of cottonmouth snakes on Phil's property. Meanwhile, Willie uses his business expertise to help Rebecca improve her clothing store. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2016 + Reality + Business + + S11 E3 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + Fishful Thinking + Jase's hopes to win the inaugural Duck Commander Fishing Tournament is buoyed when he is able to enlist the help of legendary angler Bill Dance. Meanwhile, Willie's vanity over his greying beard leads him to make a questionable decision. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2017 + Reality + Business + + S11 E8 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + The Campfire Diaries + The family spends a weekend at their childhood summer camp, reliving old memories and working to repair a tennis court Willie built twenty years ago. While at the camp, Jep tries to pass a lifeguard swimming test he failed as a teenager. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2017 + Reality + Business + + S11 E11 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + When Doves Fry + Jase and Jep make a deal with Mia and Merritt to get them to go dove hunting with them. Si tries to make some extra cash by starting a West Monroe tour. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2017 + Reality + Business + + S11 E9 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + Rowdy's Big Day + Rowdy's adoption is finalized and Jase gets his first massage. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2017 + Reality + Business + + S11 E12 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + Drive-In Revivin' + Korie challenges Willie to be romantic without spending money and Missy and Jase try to find a girlfriend for Mountain Man. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2016 + Reality + Business + + S11 E7 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + Good Willie Hunting + A tracking challenge sees Jase and Si compete to see who can capture Willie and Jep. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2016 + Reality + Business + + S11 E5 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + Sleep Cover + With Korie still in Africa, Willie and Jep must step in and supervise Bella's sleepover. When a couple boys play a prank on the girls, Willie and Jep prove to be the perfect chaperones for the task. Meanwhile, Jase takes Si, Martin and Godwin for a round of night golf. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2016 + Reality + Business + + S11 E6 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + Razing the Snakes + Jase, Jep, Si and Cole try to fight back a growing population of cottonmouth snakes on Phil's property. Meanwhile, Willie uses his business expertise to help Rebecca improve her clothing store. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2016 + Reality + Business + + S11 E3 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + Fishful Thinking + Jase's hopes to win the inaugural Duck Commander Fishing Tournament is buoyed when he is able to enlist the help of legendary angler Bill Dance. Meanwhile, Willie's vanity over his greying beard leads him to make a questionable decision. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2017 + Reality + Business + + S11 E8 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + The Campfire Diaries + The family spends a weekend at their childhood summer camp, reliving old memories and working to repair a tennis court Willie built twenty years ago. While at the camp, Jep tries to pass a lifeguard swimming test he failed as a teenager. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2017 + Reality + Business + + S11 E11 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + When Doves Fry + Jase and Jep make a deal with Mia and Merritt to get them to go dove hunting with them. Si tries to make some extra cash by starting a West Monroe tour. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2017 + Reality + Business + + S11 E9 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + Rowdy's Big Day + Rowdy's adoption is finalized and Jase gets his first massage. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2017 + Reality + Business + + S11 E12 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + Half in the Bag + Si starts bagging groceries at a local store, but the guys accidentally cost him the job after they tease him about it. Elsewhere: Korie bribes Willie to get him to visit the dentist. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2016 + Reality + Business + + S10 E6 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + There Will Be Flood + A large storm hits Monroe and the family seek shelter at Phil and Kay's house. Elsewhere: Jep; Si; Marti; and Godwin try to guard the Duck Commander inventory from damage when the roof starts leaking. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2016 + Reality + Business + + S10 E7 + + TV-PG + + + 6.4/10 + + + + Paid Programming + Paid Programming. (repeat). + + TV-14 + + + + Paid Programming + Paid Programming. (repeat). + + TV-14 + + + + Paid Programming + Paid Programming. (repeat). + + TV-14 + + + + Paid Programming + Paid Programming. (repeat). + + TV-14 + + + + Joni Table Talk + A talk show featuring guests, lifestyle segments and controversial topics. (repeat). + + Joni Lamb + + Family + Talk & Interview + + TV-G + + + + David Jeremiah + David Jeremiah + A message of hope from David Jeremiah of Turning Point. (repeat). + + + Mountain Men + Heart And Soul + In Montana, Tom Oar struggles with heart problems, but refuses to give up his Mountain Man way of life. Jake Herak and Anika Ward have added five new puppies to their pack, but preparing the rookie hounds for mountain lion season means running them through a gauntlet of training exercises. In Alaska, Martha and Elli Tansy pack hundreds of pounds of meat back to their base camp, but all could be lost when the brakes fail on the Moose Buggy, sending them into freefall. (repeat). + + Giovanni Rios + David Arabia + Mason Gertz + Marc Pierce + + 2022 + Documentary + Reality + Action & Adventure + + S11 E4 + + TV-PG + + + + Mountain Men + Winter Is Coming + The mountains of North Carolina, the Yaak River in Montana and the small Alaskan town of Two Rivers are the focus in the opener of this series, which follows the lives of outdoorsmen who choose to live in the wilderness. (repeat). + + Giovanni Rios + David Arabia + Mason Gertz + Marc Pierce + + 2012 + Documentary + Reality + Action & Adventure + + S1 E1 + + TV-PG + + + + Mountain Men + Mayhem + Tom attempts to save a friend's water supply; Eustace fights to keep his land; and Marty battles mechanical breakdowns. (repeat). + + Giovanni Rios + David Arabia + Mason Gertz + Marc Pierce + + 2012 + Documentary + Reality + Action & Adventure + + S1 E2 + + TV-PG + + + + Mountain Men + Lost + Tempers flare in Eustace's fight with Justin; Tom gets lost in the mountains; and Marty battles inclement weather as he tries to make his way home. (repeat). + + Giovanni Rios + David Arabia + Mason Gertz + Marc Pierce + + 2012 + Documentary + Reality + Action & Adventure + + S1 E3 + + TV-PG + + + + Mountain Men + Miles From Home + Tom is faced with a life-altering decision; Marty fights through rough weather while traveling home from Alaska; and Eustace deals with an illness. (repeat). + + Giovanni Rios + David Arabia + Mason Gertz + Marc Pierce + + 2012 + Documentary + Reality + Action & Adventure + + S1 E4 + + TV-PG + + + + Mountain Men + Surviving Winter + Tom searches for winter meat; Eustace brings back a former worker to help lighten his load; and Marty struggles to meet his fur deadline. (repeat). + + Giovanni Rios + David Arabia + Mason Gertz + Marc Pierce + + 2012 + Documentary + Reality + Action & Adventure + + S1 E5 + + TV-PG + + + + Duck Dynasty + End of an Era + Si decides to retire to pursue a music career and the family organize a party in his honor. Meanwhile: Willie, Phil and Jase take a road trip to try to recreate an old duck call for Si's retirement gift. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2017 + Reality + Business + + S11 E15 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + High Tech Redneck + The guys attempt to construct a conveyor belt so they can fill their largest order ever. Meanwhile, Phil wants to use dynamite to eliminate a beaver dam. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2012 + Reality + Business + + S1 + 1 E3 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + CEO for a Day + Jase is CEO for a day, and he initially slacks off until he becomes aware of a pressing shipment; Phil's grandkids help him out, and he rewards them with a family football game. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2012 + Reality + Business + + S1 + 1 E2 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + Frog in One + Phil and Si are guests at a kids' career-day event, where they deliver a graphic presentation. Later, a frog-hunting adventure at a country club gets derailed by security guards. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2012 + Reality + Business + + S1 + 1 E4 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + Plan Bee + The boys discover a beehive while hunting and decide to capture it; and preparations are made for a Duck Commander carnival game. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2012 + Reality + Business + + S1 + 1 E10 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + Leave It to Beavers + Phil and the boys hunt a beaver that has damaged a duck blind. Meanwhile, Miss Kay decides to open a restaurant. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2012 + Reality + Business + + S1 + 1 E7 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + A Big Duck-ing Call + Duck Commander's 40-year anniversary is celebrated; Willie constructs an enormous duck call; and Miss Kay decides she wants a new house. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2012 + Reality + Business + + S1 + 1 E8 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + Sweet Home Louisiana + The Robertsons throw a block party to welcome Jep and Jessica to their neighborhood in the Season 7 finale. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2015 + Reality + Business + + S7 E10 + + TV-PG + + + 6.4/10 + + + + Duck Dynasty + Drone Survivor + Jep buys a drone copter to solve a bet between Jase and Phil about whether people are visible in duck blinds. Elsewhere: Willie brings Si to the chiropractor. (repeat). + + Hisham Abed + Hugh Peterson + Deirdre Gurney + + 2016 + Reality + Business + + S9 E4 + + TV-PG + + + 6.4/10 + + + + Wahlburgers + Be a Good Sport + Donnie breaks ground on his St. Charles, Ill., location; Alma, Johnny Drama and Phyllis plan a '50s-themed carhop behind Paul's back; Brandon gets into the dog food market with the help of Paul and Alma's dogs. + Reality TV + Performing Arts + + + TVPG + + + + Wahlburgers + A Tale of Two Sin Cities + Paul gets a once-in-a-lifetime opportunity to fly with the Air Force's Thunderbirds in Las Vegas; Brandon tags along and bets Paul that he'll have a better Vegas experience on the strip; Bob gets more involved in the company. + Reality TV + Performing Arts + + + TVPG + + + + Wahlburgers + Next-Gen Wahlbergs + Paul visits the Lone Star State and gets the full cowboy experience as he explores a possible Austin location; Alma and Phyllis help Brandon get his dating life on track; Paul puts his body on the line to learn a new skill. + Reality TV + Performing Arts + + + TVPG + + + + The King of Queens + Separation Anxiety + Doug and Carrie have different opinions about Deacon and Kelly's separation and share them with each other. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Vocal Discord + Carrie and Doug decide marriage counseling is in order and turn to their neighbor for help, but his techniques only make things worse. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Like Hell + Doug tries to impress new driver Jared when he learns he was the only one at IPS not invited to Jared's barbecue. + + Kevin James + Leah Remini + Victor Williams + + Sitcom + + + TVPG + + + + The King of Queens + Vocal Discord + Carrie and Doug decide marriage counseling is in order and turn to their neighbor for help, but his techniques only make things worse. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Like Hell + Doug tries to impress new driver Jared when he learns he was the only one at IPS not invited to Jared's barbecue. + + Kevin James + Leah Remini + Victor Williams + + Sitcom + + + TVPG + + + + The King of Queens + Consummate Professional + Carrie learns that in the beginning of their relationship Doug lied to her about getting a job at IPS so she would sleep with him. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Pole Lox + Doug convinces Carrie to take pole dancing lessons but is disappointed when she puts on a show for him. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Separation Anxiety + Doug and Carrie have different opinions about Deacon and Kelly's separation and share them with each other. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Gambling N'Diction + Doug tries to capitalize on his mother's poker skills by having her help him win a high-stakes tournament; Spence helps Carrie lose her accent. + + Kevin James + Leah Remini + Patton Oswalt + + Sitcom + + + TVPG + + + + The King of Queens + Apartment Complex + Doug and the guys secretly rent an apartment above their favorite Chinese restaurant; Carrie goes to extremes to keep her newest client, Kirstie Alley, happy. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Raygin' Bulls + When Carrie goes on a trip with her father, Doug and his friend (Ray Romano) plan a guys night on the town. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Knee Jerk + Doug fakes being injured so that Carrie, who feels responsible, will continue to tend to his every need and allow him to miss a dreaded wedding. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Baker's Doesn't + Doug and Carrie are roped into helping out at their church; Author and Spence try to cash in by writing a Christmas song. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Present Tense + When the Heffernans receive an oil painting of themselves as an anniversary gift from Deacon and Kelly, they dislike the picture so much that they decide to stage a robbery rather than hang the painting in their home. + + Kevin James + Leah Remini + Victor Williams + + Sitcom + + + TVPG + + + + The King of Queens + Sold-Y Locks + Doug convinces Carrie to sell her hair so they can afford a cruise but finds he does not like her new, shorter style. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Emotional Rollercoaster + Doug lies to Carrie about being accepted into the IPS management program; Doug tries to conquer a roller coaster that scared him as a child. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Gambling N'Diction + Doug tries to capitalize on his mother's poker skills by having her help him win a high-stakes tournament; Spence helps Carrie lose her accent. + + Kevin James + Leah Remini + Patton Oswalt + + Sitcom + + + TVPG + + + + The King of Queens + Apartment Complex + Doug and the guys secretly rent an apartment above their favorite Chinese restaurant; Carrie goes to extremes to keep her newest client, Kirstie Alley, happy. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Raygin' Bulls + When Carrie goes on a trip with her father, Doug and his friend (Ray Romano) plan a guys night on the town. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Knee Jerk + Doug fakes being injured so that Carrie, who feels responsible, will continue to tend to his every need and allow him to miss a dreaded wedding. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Baker's Doesn't + Doug and Carrie are roped into helping out at their church; Author and Spence try to cash in by writing a Christmas song. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Present Tense + When the Heffernans receive an oil painting of themselves as an anniversary gift from Deacon and Kelly, they dislike the picture so much that they decide to stage a robbery rather than hang the painting in their home. + + Kevin James + Leah Remini + Victor Williams + + Sitcom + + + TVPG + + + + The King of Queens + Sold-Y Locks + Doug convinces Carrie to sell her hair so they can afford a cruise but finds he does not like her new, shorter style. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Emotional Rollercoaster + Doug lies to Carrie about being accepted into the IPS management program; Doug tries to conquer a roller coaster that scared him as a child. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + Billy the Exterminator + Night of the Living Possums + Billy and Ricky visit a terrifying spot in New Orleans, and run into some nasty critters that terrorize the demons and ghouls; they begin a race against time as they strive to save the undead from the living. + Reality TV + Documentary + + + TVPG + + + + Billy the Exterminator + What Lurks Beneath + Gator wrangling in Texas; massive bed bug infestation in Florida. + Reality TV + Documentary + + + TVPG + + + + Billy the Exterminator + Sprayed by a Skunk! + Billy and Gator Dave receive a call about an alligator living in a pond at the Old Oaks Golf Club; Billy gets a call about an aggressive skunk at the Hughes Residence that's been terrorizing and spraying the family dog. + Reality TV + Documentary + + + TVPG + + + + Billy the Exterminator + The Big Freeze + A fencing school needs help with a rat infestation; Billy gets creative when yellow jackets invade a girl's bedroom. + Reality TV + Documentary + + + TVPG + + + + CHRISTINA HALL and Jacuzzi® amazing bathroom makeovers + SPECIAL OFFER + Trusted brand Jacuzzi® and renowned interior designer, Christina Hall can help you transform your old bathroom into a gorgeous custom, safe and stylish space. Jacuzzi® has limited time special offers to make your dream bathroom happen today CALL NOW. + Paid Program + Home + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Billy the Exterminator + Coffin of Deadly Reptiles + Billy and his brother Ricky try to remove an alligator stuck inside a metal hunting trench; in the concealed environment filled with murky water, a pair of venomous snakes catch him by surprise as but as Billy prepares to grab the gator. + Reality TV + Documentary + + + TVPG + + + + Billy the Exterminator + Snakes in a Pool + A homeowner calls Billy to remove snakes from the debris on the bottom of his nearly empty pool; Billy rides to the rescue of a rancher in the process of losing his watering hole to a giant, belligerent beaver. + Reality TV + Documentary + + + TVPG + + + + Billy the Exterminator + Good Morning Gators + Billy and Ricky hunt down alligators in a children's park for a. + Reality TV + Documentary + + + TVPG + + + + Billy the Exterminator + Snarl Slither Snap + Billy stakes out an animal rehabilitation center to catch a red fox; Cousin Chris helps Billy remove water moccasins from a family's property. + Reality TV + Documentary + + + TVPG + + + + Billy the Exterminator + Backyard Swarm + An ill-mannered raccoon and a giant beehive transform a backyard into a playground of horrors. + Reality TV + Documentary + + + TVPG + + + + Billy the Exterminator + Donnie's Snake Attack + On the way home from church, Big Bill and Donnie agree to chase down an aggressive rat snake that invaded a friend's house; Billy has his hands full with nearly 5000 wasps in almost a dozen nests that took a household hostage. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Stand by Mia + The Robertsons plan a family reunion to give Mia a grand send-off before her surgery. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Master and Duck Commander + Jase and the guys turn a pontoon into a floating duck blind, then put their invention to the test; Kay takes bad pooch Bobo to doggie obedience class. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Search n' Decoy + Jase and the guys repaint old duck decoys in an attempt to trick Phil. Willie takes on Kay's club in a bowling challenge. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Bachelor Party Blowout + Martin's bachelor party celebration at a hunting cabin gets interesting when the guys uncover an assortment of antique black powder weapons; Kay's dream of owning a petting zoo comes true. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + The Ducket List + After Uncle Si has a brush with death, he decides to create a bucket list; Kay tries to prove that she graduated from high school. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Flock and Key + Si's nephews help him transport a storage container to his backyard, but things take a turn when Jep becomes locked inside the unit; a clueless Jase helps Mia prepare for her cheerleading competition. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Ball in the Family + Willie calls upon kin to help him settle an old score when rival Phillip McMillan challenges him to a game of dodgeball; Si suspects his cat is unfaithful and spending time with another family. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Van He'llsing + Missy and Jase begin to question Reed's choices after he buys an old van to advance his music career; professional grappler Kurt Angle helps prepare River for a competitive wrestling league. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Heroes Welcome + The Robertsons show their support for veterans by staging a. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Children of the Cornbread + A competitive cook-off ensues after the Robertson brothers debate which of their wives makes the best cornbread; Jep, Martin and Godwin's practical joke on Uncle Si backfires. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Willie & Korie's Anniversorry + The Robertson family throws a party for Willie and Korie's 25th anniversary; Jase blames Uncle Si after he receives a parking ticket. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Statue of Imitations + Willie asks a local chainsaw artist to make a statue for him; Jep and Jessica attempt to help Kay with her hoarding by selling some of her items online. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + A Decent Proposal + Reed proposes to his girlfriend, inspiring Jase to get romantic with Missy; Uncle Si senses a business opportunity when Willie gets recruited to be a guest lecturer at one of Sadie's classes. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Wild Wild West Monroe + Jase and Jep argue over who should inherit their grandfather's old rifle; Willie and Korie rehearse a Taiwanese engagement ceremony with Rebecca as she prepares to travel to Taiwan with her fiancé. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Father Knows Pest + Jase must rid the neighborhood of a pesky beaver; Willie and Si argue over which of them makes the better driving instructor after Little Will receives his learner's permit. + Reality TV + Documentary + + + TVPG + + + + Counting Cars + Muscle Memory + Kevin is won over by a hotrod pick-up truck; Danny tracks down a customer's original 1969 Firebird; an un-announced visitor causes drama at the shop. + Reality TV + Automotive + + + TVPG + + + + Counting Cars + Count's Cryptonite + Danny receives an astronomical offer for one of his prized cars; Kevin helps spot an epic flip; the guys visit SEMA. + Reality TV + Automotive + + + TVPG + + + + Counting Cars + Chumlee's Challenge + Chumlee receives bad news regarding his custom 1963 Lincoln; a bike inspired by the world's largest gold chunk. + Reality TV + Automotive + + + TVPG + + + + Counting Cars + Not So Pretty in Pink + The workshop gets to work building a brave father a quirky hot rod wheelchair; Danny finds himself in a fix when a project doesn't go as planned. + Reality TV + Automotive + + + TVPG + + + + Counting Cars + Day of Judgment + The guys struggle to finish a 1962 Chevy pickup within budget; Scott spots an incredibly rare Corvette. + Reality TV + Automotive + + + TVPG + + + + Counting Cars + Psychedelic Cycle + The guys have their hands full with a custom psychedelic bike; Davey Deals orders a barbecue grill like no one has ever seen. + Reality TV + Automotive + + + TVPG + + + + Fully Torqued + Mopar Power + Steve is dying to do some nasty burnouts fast and furious style in a 71 Challenger; he also has a Dodge Dart to fix up that Bird actually likes; Barret Jackson co-host, April Rose joins Steve to check out a one-of-a-kind car collection. + Automotive + + + TV14 + + + + Barrett-Jackson: REVVED UP + Top Down + It's another battle for King of the Convertibles as some of the greatest topless luxury vehicles compete on the auction block, including Cadillac, Packard, Lincoln, Bentley and Oldsmobile. + Automotive + Hobbies & Crafts + + + TVPG + + + + Barrett-Jackson: REVVED UP + Top Down + It's another battle for King of the Convertibles as some of the greatest topless luxury vehicles compete on the auction block, including Cadillac, Packard, Lincoln, Bentley and Oldsmobile. + Automotive + Hobbies & Crafts + + + TVPG + + + + Counting Cars + Drive: Change of Heart + Danny can't part with a classic car; a homeowner calls the police on Danny and Horny Mike; Danny runs into a friend and his 1959 Corvette gasser; Mike and Shannon find a Cadillac owned by one of the Superfly builders; extended; includes new footage. + Reality TV + Automotive + + + TVPG + + + + Counting Cars + Super Nova + Danny builds a tribute car that honors the rare Yenko Nova for a charity auction; one of the world's most exclusive car collections. + Reality TV + Automotive + + + TVPG + + + + Counting Cars + One Love, One Car + Ziggy Marley meets Danny to have his father's vintage Mercedes restored; Count's Kustoms builds a truck to fulfill a retired couple's road trip dreams. + Reality TV + Automotive + + + TVPG + + + + Counting Cars + Day of Judgment + The guys struggle to finish a 1962 Chevy pickup within budget; Scott spots an incredibly rare Corvette. + Reality TV + Automotive + + + TVPG + + + + Counting Cars + Psychedelic Cycle + The guys have their hands full with a custom psychedelic bike; Davey Deals orders a barbecue grill like no one has ever seen. + Reality TV + Automotive + + + TVPG + + + + Fully Torqued + Mopar Power + Steve is dying to do some nasty burnouts fast and furious style in a 71 Challenger; he also has a Dodge Dart to fix up that Bird actually likes; Barret Jackson co-host, April Rose joins Steve to check out a one-of-a-kind car collection. + Automotive + + + TV14 + + + + Barrett-Jackson: REVVED UP + Top Down + It's another battle for King of the Convertibles as some of the greatest topless luxury vehicles compete on the auction block, including Cadillac, Packard, Lincoln, Bentley and Oldsmobile. + Automotive + Hobbies & Crafts + + + TVPG + + + + Counting Cars + Drive: Change of Heart + Danny can't part with a classic car; a homeowner calls the police on Danny and Horny Mike; Danny runs into a friend and his 1959 Corvette gasser; Mike and Shannon find a Cadillac owned by one of the Superfly builders; extended; includes new footage. + Reality TV + Automotive + + + TVPG + + + + Counting Cars + Super Nova + Danny builds a tribute car that honors the rare Yenko Nova for a charity auction; one of the world's most exclusive car collections. + Reality TV + Automotive + + + TVPG + + + + Counting Cars + One Love, One Car + Ziggy Marley meets Danny to have his father's vintage Mercedes restored; Count's Kustoms builds a truck to fulfill a retired couple's road trip dreams. + Reality TV + Automotive + + + TVPG + + + + Counting Cars + Muscle Memory + Kevin is won over by a hotrod pick-up truck; Danny tracks down a customer's original 1969 Firebird; an un-announced visitor causes drama at the shop. + Reality TV + Automotive + + + TVPG + + + + Counting Cars + Count's Cryptonite + Danny receives an astronomical offer for one of his prized cars; Kevin helps spot an epic flip; the guys visit SEMA. + Reality TV + Automotive + + + TVPG + + + + Larry King's Prostate Report - Secrets To Prostate Health Revealed + Larry King Investigates Prostate Supplements to determine which products work and which ones don't work and why. A must watch for all men over 45. + Paid Program + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + Cindy Crawford and Ellen Pompeo share secrets + Join Cindy Crawford and Ellen Pompeo as they discuss their busy lives and the breakthrough skin care discovery that keeps them looking their best. Take a trip to the stunning French countryside to see a rare French melon that defies aging. + Paid Program + + + + MyBiotin - Researched-Based Hair, Skin & Nails Formula + What is The MyBiotin Beauty Secret? Experience Thicker Hair in just 3 Weeks! Significantly Reduces Fine Lines & Wrinkles with MyBiotin! Beautiful Results you will See and Feel! For Both, Men and Women! + Paid Program + + + + Joni: Table Talk + Joni and guests tackle a wide range of relevant issues, controversial subjects and hard-hitting news topics with candor and wit. + Religious + Talk Shows + + + TVG + + + + David Jeremiah + Dr. David Jeremiah's goal is to deliver the unchanging Word of God to an ever-changing world. + Religious + + + TVG + + + + Shipping Wars + It's My Party and I'll Shoot You If I Want To + Marc learns a squatter is inhabiting a little girl's birthday playhouse; Roy scores a top-secret haul for the government. + Reality TV + + + TVPG + + + + Shipping Wars + Highway to the Stranger Zone + Jenn learns that she is transporting more than just a load of antique dolls; newcomer Dusty Davie tackles a Russian-era MiG fighter plane. + Reality TV + + + TVPG + + + + Shipping Wars + Three Horses and a Funeral + Jarrett hauls a coin-operated carousel; Todd and Tamera transport a 140-year-old horse-drawn hearse, but the item is dropped off with missing parts. + Reality TV + + + TVPG + + + + Shipping Wars + A Tactical Disaster + Jenn gets more than she bargained for when she attempts to transport an armored assault vehicle; Marc moves a daredevil motorcycle ride known as the. + Reality TV + + + TVPG + + + + Shipping Wars + Head Today, Gong Tomorrow + Jenn's shipment of expensive prayer gongs almost misses its buyer; Jarrett takes a side job on the Las Vegas Strip. + Reality TV + + + TVPG + + + + Shipping Wars + Spaced Invaders + Marc makes an out-of-this-world trip to Roswell, N.M.; Todd and Tamera attempt to extend their vintage game pod run. + Reality TV + + + TVPG + + + + Parking Wars + A man wielding a garden tool resorts to extreme measures while trying to get Jen and Mike to remove a boot from his vehicle; siblings from out of town struggle to find their impounded car, which is lost in the system. + Reality TV + + + TVPG + + + + Parking Wars + A frustrated man with a long list of excuses tests Yolanda's patience at the impound lot; supervisor Eula rescues Brian from an angry woman disputing her ticket on Cinco de Mayo; Mike struggles to communicate with African brothers. + Reality TV + + + TVPG + + + + Parking Wars + Garfield and Sherry need police backup when a furious man tries to remove a boot; a man blocking a bus zone tests ticket-writer Shawn's communication skills; a creative father and son try to retrieve their impounded car. + Reality TV + + + TVPG + + + + Parking Wars + Long-haired DeAndre, nicknamed. + Reality TV + + + TVPG + + + + Parking Wars + A blizzard dumps 10 inches of snow on Philadelphia and adds to the aggravation at the impound lot; winter weather causes problems for booters Garfield and Sherry. + Reality TV + + + TVPG + + + + Parking Wars + After losing 70 pounds, Detroit ticket writer Robert feels confident when challenged by an outraged man who parked commercial equipment on a street; Marlene gets insulted in Philadelphia; a man tries to retrieve his impounded car. + Reality TV + + + TVPG + + + + Parking Wars + Sparks fly after Mike stumbles into a parking fiasco at a gala event in Philadelphia; Rodney and Michele catch a Detroit resident trying to remove a boot; two guys try to rescue their ride from an impound lot in Philadelphia. + Reality TV + + + TVPG + + + + Parking Wars + A hit-and-run incident throws Detroit booters off their beat; a son tries to recover a car impounded after his father was caught speeding without a license in Philadelphia; Ponytail tries to enforce a special ordinance on the Fourth of July. + Reality TV + + + TVPG + + + + Parking Wars + Philadelphia ticket writer Jeff gets promoted to supervisor; Jeff must go to the rescue of his new squad, which includes rookie Denise and Gina, a magnet for male attention. + Reality TV + + + TVPG + + + + Parking Wars + Garfield tests his luck trying to boot two cars on the same block in Philadelphia; irate citizens threaten ticket writer Robert's perfect record in Detroit; a senior citizen tries to get his car out of the impound lot in Philadelphia. + Reality TV + + + TVPG + + + + Property Virgins + Jersey Girl in Georgia + A woman from New Jersey searches for a home to put down roots in Atlanta. + Regular + + + TVG + + + + Property Virgins + The Young and Unrealistic + A couple wants to find a suburban dream home before their wedding. + Regular + + + TVG + + + + Property Virgins + With This House, I Thee Wed + A couple is determined to buy a house before their wedding. + Regular + + + TVG + + + + Property Virgins + Home Is Where the Heart Is + A woman wants to find a move-in ready home in Atlanta on a budget. + Regular + + + TVG + + + + Property Virgins + Lauren + A teacher and her son are ready to trade-in their one-bedroom apartment for a spacious Atlanta home. + Regular + + + TVG + + + + Property Virgins + Out'a Space + A couple has outgrown their one-bedroom apartment, and would like to find a three-bedroom home. + Regular + + + TVG + + + + Property Virgins + Great Expectations + A single mother searches for a colorful home in Atlanta. + Regular + + + TVG + + + + Property Virgins + Property Picky + A couple searches for a home in Atlanta where they can put down roots. + Regular + + + TVG + + + + Property Virgins + Home Base + Joe and Hamni are ready to trade in their one-bedroom apartment for a spacious, dog-friendly home. + Regular + + + TVG + + + + Property Virgins + In the Dog House + A couple and their dogs want to find their own home in Atlanta. + Regular + + + TVG + + + + Property Virgins + The Heart of It All + A couple wants to find a downtown condo in Atlanta. + Regular + + + TVG + + + + Property Virgins + Gone to the Dogs + A couple wants to find a dog-friendly house that will lessen a commute. + Regular + + + TVG + + + + Property Virgins + Happy Wife, Happy Life + Newlyweds want to find a spacious home in Atlanta. + Regular + + + TVG + + + + Property Virgins + Happy Wife, Happy Life + High school sweethearts want to buy a house and start a family as quickly as possible. + Regular + + + TVG + + + + Property Virgins + Mission Impossible + After six years, a couple wants to find the perfect home in Atlanta. + Regular + + + TVG + + + + Property Virgins + Creative Differences + Newlyweds want to find a dream home that is big enough for a growing family. + Regular + + + TVG + + + + Property Virgins + Home Base + Joe and Hamni are ready to trade in their one-bedroom apartment for a spacious, dog-friendly home. + Regular + + + TVG + + + + Property Virgins + In the Dog House + A couple and their dogs want to find their own home in Atlanta. + Regular + + + TVG + + + + Property Virgins + The Heart of It All + A couple wants to find a downtown condo in Atlanta. + Regular + + + TVG + + + + Property Virgins + Gone to the Dogs + A couple wants to find a dog-friendly house that will lessen a commute. + Regular + + + TVG + + + + Property Virgins + Happy Wife, Happy Life + Newlyweds want to find a spacious home in Atlanta. + Regular + + + TVG + + + + Property Virgins + Happy Wife, Happy Life + High school sweethearts want to buy a house and start a family as quickly as possible. + Regular + + + TVG + + + + Property Virgins + Mission Impossible + After six years, a couple wants to find the perfect home in Atlanta. + Regular + + + TVG + + + + Property Virgins + Creative Differences + Newlyweds want to find a dream home that is big enough for a growing family. + Regular + + + TVG + + + + Property Virgins + Jersey Girl in Georgia + A woman from New Jersey searches for a home to put down roots in Atlanta. + Regular + + + TVG + + + + Property Virgins + The Young and Unrealistic + A couple wants to find a suburban dream home before their wedding. + Regular + + + TVG + + + + Larry King's Prostate Report - Secrets To Prostate Health Revealed + Larry King Investigates Prostate Supplements to determine which products work and which ones don't work and why. A must watch for all men over 45. + Paid Program + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Stories of Love to the Rescue by Shriners Hospitals for Children® + Alec and Kaleb interview patients and their families, and how their lives have been changed because of the life-changing pediatric specialty care they received at Shriners Hospitals for Children®. + Paid Program + + + + Joni: Table Talk + Joni and guests tackle a wide range of relevant issues, controversial subjects and hard-hitting news topics with candor and wit. + Religious + Talk Shows + + + TVG + + + + David Jeremiah + Dr. David Jeremiah's goal is to deliver the unchanging Word of God to an ever-changing world. + Religious + + + TVG + + + + Swamp People + Rebound + Joe and Tommy can't return to the hunt with their home and their community in peril; R.J. and Jay Paul move their hunt to the place they believe the gators are hiding; high waters and winds leave Liz and Kristi's hunting grounds unrecognizable. + Reality TV + Documentary + + + TVPG + + + + Swamp People + Gates of Hell + Boat traffic spoils one of Troy's go-to hunting grounds, high water levels give Joe and Tommy a rare opportunity; Willie and Randy face some serious pressure from their dad. + Reality TV + Documentary + + + TVPG + + + + Swamp People + Under Siege + R.J. and Jay Paul go after Pas Tout La; Troy and Clint hunt an old adversary; Liz and Kristi head to their first line of the day, Liz spots an enormous gator; Glenn and Mitchell tackle a houseboat. + Reality TV + Documentary + + + TVPG + + + + Swamp People + Secret Weapons + Jacob looks for new territory and brings along the Landry secret weapon; Austyn and Blake head toward new ground; Junior targets a pool that's behind a metal dike; Bruce uses blood-injected rotten chicken. + Reality TV + Documentary + + + TVPG + + + + Swamp People + Scorched + Troy and Clint target Lake Verret to make the most of the voracious gators; Junior tries to repeat past glory; the swamp throws Liz a curve she never saw coming; Bruce, Ron and Tyler target Cypress Graveyard. + Reality TV + Documentary + + + TVPG + + + + Swamp People + Voodoo Bayou + Troy uses high waters to his advantage; R.J. and Jay Paul travel the flooded channels into Houma territory; Joe and Tommy prepare to take a big gamble; Austyn and Blake make the most of the flooded conditions. + Reality TV + Documentary + + + TVPG + + + + Swamp People + Turf War + Joe and Tommy decide to gator hunt in the morning and shrimp in the afternoon; Liz and Kristi go after a gator that's threatening cattle; high waters move a new gator population into Malcom's fishing spot; Glenn and Mitchell work on an old motor. + Reality TV + Documentary + + + TVPG + + + + Swamp People + Big Gators, Big Dollars + Troy and Clint have the perfect plan to find the big-money gators they need; R.J. and Jay Paul go after an enormous beast that is tearing apart fishing pots; Austyn and Blake sell to a new buyer. + Reality TV + Documentary + + + TVPG + + + + Swamp People + Never Say Die + Liz and Kristi start slow; Junior works with his cousin Gerald; Jacob and Chase get assigned to a tough fishing area; Joe and Tommy head to an area saved for the home stretch of the season. + Reality TV + Documentary + + + TVPG + + + + Swamp People + Cold-Blooded + Willie is back at his father's side to track down gators; Bruce gets anxious about the weather; Troy's sons hope for a big day despite the cold front. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Half in the Bag + The guys cause Si to lose his job as a bagger at a grocery store; Korie resorts to bribery in order to persuade Willie to get some much-needed dental work. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + There Will Be Flood + The sons and wives work to protect Phil and Kay's home from potential floodwaters when a large storm rolls into town; a leaking warehouse roof threatens inventory at Duck Commander. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Whole Lotta Bull + The guys learn how to rope, ride and clown around when they attend a one-day rodeo fantasy camp; Kay wonders if her dog's new girlfriend comes from a good family. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Bro'd Trip + Jase and Willie take a business trip to Arkansas to pitch a new product; Jep and Si accidentally ship out an important item of Willie's, then attempt to track it down. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Drive-In Revivin' + Willie faces the challenge of coming up with a romantic gesture for Korie without spending any money; Jase and Missy compete to see who can find a girlfriend for Mountain Man. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Good Willie Hunting + With many of the wives and children in Africa performing charity work, Willie and Jase have a debate over tracking ability; Jase and Si are challenged to track and capture Willie and Jep. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Sleep Cover + Willie and Jep step in to supervise Bella's sleepover while Korie is away in Africa; Jase takes Si, Martin and Godwin for a round of night golf. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Razing the Snakes + Jase, Jep, Si and Cole battle a growing population of cottonmouth snakes on Phil's property; Willie uses his business expertise to help Rebecca improve her clothing store. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Fishful Thinking + Jase enlists the help of legendary angler Bill Dance in the hopes of winning the inaugural Duck Commander Fishing Tournament; Willie's vanity over his graying beard leads him to make a questionable decision. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + The Campfire Diaries + The family relives old memories at its childhood summer camp and attempts to repair a tennis court Willie built 20 years earlier; while at the camp, Jep attempts to pass a lifeguard swimming test he failed as a teenager. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + When Doves Fry + Jase and Jep make a deal with Mia and Merritt to get them to go dove hunting; Si tries to make some extra money by starting a West Monroe tour. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Rowdy's Big Day + Rowdy officially becomes a Robertson after his adoption is finalized; Jase enjoys his first massage more than he expected. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Drive-In Revivin' + Willie faces the challenge of coming up with a romantic gesture for Korie without spending any money; Jase and Missy compete to see who can find a girlfriend for Mountain Man. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Good Willie Hunting + With many of the wives and children in Africa performing charity work, Willie and Jase have a debate over tracking ability; Jase and Si are challenged to track and capture Willie and Jep. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Sleep Cover + Willie and Jep step in to supervise Bella's sleepover while Korie is away in Africa; Jase takes Si, Martin and Godwin for a round of night golf. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Razing the Snakes + Jase, Jep, Si and Cole battle a growing population of cottonmouth snakes on Phil's property; Willie uses his business expertise to help Rebecca improve her clothing store. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Fishful Thinking + Jase enlists the help of legendary angler Bill Dance in the hopes of winning the inaugural Duck Commander Fishing Tournament; Willie's vanity over his graying beard leads him to make a questionable decision. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + The Campfire Diaries + The family relives old memories at its childhood summer camp and attempts to repair a tennis court Willie built 20 years earlier; while at the camp, Jep attempts to pass a lifeguard swimming test he failed as a teenager. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + When Doves Fry + Jase and Jep make a deal with Mia and Merritt to get them to go dove hunting; Si tries to make some extra money by starting a West Monroe tour. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Rowdy's Big Day + Rowdy officially becomes a Robertson after his adoption is finalized; Jase enjoys his first massage more than he expected. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + Half in the Bag + The guys cause Si to lose his job as a bagger at a grocery store; Korie resorts to bribery in order to persuade Willie to get some much-needed dental work. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + There Will Be Flood + The sons and wives work to protect Phil and Kay's home from potential floodwaters when a large storm rolls into town; a leaking warehouse roof threatens inventory at Duck Commander. + Reality TV + Documentary + + + TVPG + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Help Israel & Ukraine + There is an urgent need to help Jews suffering in Israel, Ukraine, and around the world. Act now and support the International Fellowship of Christians and Jews in their lifesaving work. + Paid Program + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + CHRISTINA HALL and Jacuzzi® amazing bathroom makeovers + SPECIAL OFFER + Trusted brand Jacuzzi® and renowned interior designer, Christina Hall can help you transform your old bathroom into a gorgeous custom, safe and stylish space. Jacuzzi® has limited time special offers to make your dream bathroom happen today CALL NOW. + Paid Program + Home + + + + Joni: Table Talk + Joni and guests tackle a wide range of relevant issues, controversial subjects and hard-hitting news topics with candor and wit. + Religious + Talk Shows + + + TVG + + + + David Jeremiah + Dr. David Jeremiah's goal is to deliver the unchanging Word of God to an ever-changing world. + Religious + + + TVG + + + + Mountain Men + Heart and Soul + Tom Oar struggles with heart problems but refuses to give up his way of life; Jake Herak and Anika Ward have added five new puppies to their pack; Martha and Elli Tansy pack hundreds of pounds of meat; Mike Horstman hunts fox for their fur. + Reality TV + + + TVPG + + + + Mountain Men + Winter Is Coming + Eustace Conway survives by hunting, fishing and raising animals; Tom Oar lives with his wife on the Yaak River in Montana; Marty Meierotto, his wife and their daughter live in the small Alaskan town of Two Rivers. + Reality TV + + + TVPG + + + + Mountain Men + Mayhem + Tom tries to save a friend's water supply and hunt his winter's meat; Eustace deals with the threat of someone trying to take his land; Marty Meierotto combats life-or-death situations due to breakdowns. + Reality TV + + + TVPG + + + + Mountain Men + Lost + Eustace's fight with Justin reaches a boiling point; Tom loses his way high in the Rockies; Marty fights the elements as he tries to get home. + Reality TV + + + TVPG + + + + Mountain Men + Miles From Home + Tom makes a decision that will determine the rest of his life; Marty battles the weather in order to make it home for his family; Eustace continues protecting Turtle Island despite being sick. + Reality TV + + + TVPG + + + + Mountain Men + Surviving Winter + Tom puts his work on hold while he tries to find winter meat and protect himself from looming predators; Eustace brings in a former Turtle Island worker to pick up the slack; Marty races to make his fur deadline. + Reality TV + + + TVPG + + + + Duck Dynasty + End of an Era + The family plans a party for Si, who decides to retire and pursue a music career; Willie, Phil and Jase take a road trip in an attempt to re-create an old duck call for Si's retirement present. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + High Tech Redneck + Willie lands the biggest order in the company's history, prompting the boys to build a conveyor belt; Phil wants to blast a beaver dam to smithereens. + Reality TV + Documentary + + + TVPG + + + + Duck Dynasty + CEO for a Day + Jase must take care of an important shipment after he is put in charge of the company for a day; Phil surprises his hardworking grandchildren. + Reality TV + Documentary + + + TVPG + + + + Live Racing! Night Cap + Racing under the lights is featured from race tracks across the country. + Sports + Horse Racing + + + + Live Racing! International + We bring you racing from all over the world, including Australia, Europe, Japan & more. + Sports + Horse Racing + + + + Live Racing! International + We bring you racing from all over the world, including Australia, Europe, Japan & more. + Sports + Horse Racing + + + + Live Racing! International + We bring you racing from all over the world, including Australia, Europe, Japan & more. + Sports + Horse Racing + + + + Ringer: Wise Guys + Cousin Sal Iacono joins John Jastremski, Joe House and Raheem Palmer to share their favorite bets, parlays, teasers and props for Sunday's NFL games. + Sports + Miscellaneous + + + + Live Racing! East Coast + We feature the best racing from the Eastern side of the U.S. + Sports + Horse Racing + + + + Live Racing! Coast to Coast + Enjoy live racing from all across America. + Sports + Horse Racing + + + + Live Racing! West Coast + Pacific Coast racing takes center stage as we feature the best in the West. + Sports + Horse Racing + + + + Live Racing! Night Cap + Racing under the lights is featured from race tracks across the country. + Sports + Horse Racing + + + + Live Racing! International + We bring you racing from all over the world, including Australia, Europe, Japan & more. + Sports + Horse Racing + + + + Live Racing! International + We bring you racing from all over the world, including Australia, Europe, Japan & more. + Sports + Horse Racing + + + + Live Racing! International + We bring you racing from all over the world, including Australia, Europe, Japan & more. + Sports + Horse Racing + + + + The Ringer: Local Angle + Highlighting segments from The Ringer's four regionally-focused podcasts serving fans of NYC, Boston, Chicago and Philadelphia. + Sports + Talk Show + + + + Run it Back + Michelle Beadle, Chandler Parsons and Shams Charania discuss the day's biggest NBA topics. + Sports + Basketball + + + + Up & Adams + Kay Adams and a rotating roster of current and former players discuss the biggest storylines in the NFL. + Sports + Talk Show + + + + Live Racing! East Coast + We feature the best racing from the Eastern side of the U.S. + Sports + Horse Racing + + + + Live Racing! Coast to Coast + Enjoy live racing from all across America. + Sports + Horse Racing + + + + Live Racing! West Coast + Pacific Coast racing takes center stage as we feature the best in the West. + Sports + Horse Racing + + + + Live Racing! Night Cap + Racing under the lights is featured from race tracks across the country. + Sports + Horse Racing + + + + Live Racing! International + We bring you racing from all over the world, including Australia, Europe, Japan & more. + Sports + Horse Racing + + + + Live Racing! International + We bring you racing from all over the world, including Australia, Europe, Japan & more. + Sports + Horse Racing + + + + Live Racing! International + We bring you racing from all over the world, including Australia, Europe, Japan & more. + Sports + Horse Racing + + + + Thru The Ringer + Tate Frazier hosts a roundtable conversation showcasing talent and shows across The Ringer's network of sports content. + Regular + + + + Run it Back + Former NBA stars Chandler Parsons and Lou Williams, along with Michelle Beadle and Shams Charania discuss the biggest NBA matchups & storylines. + Sports + Basketball + + + + Up & Adams + Kay Adams and a rotating roster of current and former players discuss the biggest storylines in the NFL. + Sports + Talk Show + + + + Live Racing! East Coast + We feature the best racing from the Eastern side of the U.S. + Sports + Horse Racing + + + + Live Racing! Coast to Coast + Enjoy live racing from all across America. + Sports + Horse Racing + + + + Live Racing! West Coast + Pacific Coast racing takes center stage as we feature the best in the West. + Sports + Horse Racing + + + + Live Racing! Night Cap + Racing under the lights is featured from race tracks across the country. + Sports + Horse Racing + + + + Live Racing! International + We bring you racing from all over the world, including Australia, Europe, Japan & more. + Sports + Horse Racing + + + + Live Racing! International + We bring you racing from all over the world, including Australia, Europe, Japan & more. + Sports + Horse Racing + + + + Live Racing! International + We bring you racing from all over the world, including Australia, Europe, Japan & more. + Sports + Horse Racing + + + + The Ringer: Fantasy Football + Fantasy football experts guide you through the season, providing analysis on weekly matchups, trades and daily fantasy, plus subtleties that will make the difference in your league. + Sports + + + TVG + + + + Run it Back + Former NBA stars Chandler Parsons and Lou Williams, along with Michelle Beadle and Shams Charania discuss the biggest NBA matchups & storylines. + Sports + Basketball + + + + Up & Adams + Kay Adams and a rotating roster of current and former players discuss the biggest storylines in the NFL. + Sports + Talk Show + + + + Live Racing! East Coast + We feature the best racing from the Eastern side of the U.S. + Sports + Horse Racing + + + + Live Racing! Coast to Coast + Enjoy live racing from all across America. + Sports + Horse Racing + + + + Live Racing! West Coast + Pacific Coast racing takes center stage as we feature the best in the West. + Sports + Horse Racing + + + + Guy's Grocery Games + Supermarket Masters Tournament: Finale + The final four Supermarket Masters compete; the chefs get only 20 minutes to shop, cook and plate an Italian dish; the chefs let a roll of the dice determine the components of their grilled seafood dinner. + Food + Game Shows + + + TVG + + + + Diners, Drive-Ins and Dives + From Appetizers to Dessert + In Laramie, Wyo., an old-school cafe has green chili burritos and pie; a spot in Anchorage, Alaska has blackened chicken gnocchi. + Travel + Food + + + TVG + + + + Diners, Drive-Ins and Dives + Interesting Italian + Guy Fieri is digging into all kinds of Italian; in Santa Barbara, Calif., Dennis Miller's riding shotgun for prime pizza; in Las Vegas, a vegan joint puts its spin on an Italian sandwich; a funky pizzeria stuffs chicken parm into strombolis. + Travel + Food + + + TVG + + + + Diners, Drive-Ins and Dives + Smoke and Seafood + In Baltimore, a barbecue food truck dishing out pulled pork and ribs; in Islamorada, Fla., a seaside shack serving shrimp fritters; in Key Largo, Fla., a market and restaurant smokin' up a fantastic fish dip and savory seafood. + Travel + Food + + + TVG + + + + Diners, Drive-Ins and Dives + Tacos, Turtles and Tri-Tip + Sampling pork belly tacos and carne adobada in a high-energy marketplace in Oakland; turtle soup in Islamorada, Florida; savory crepes and a saucy twist on traditional beignets in Stockton, California. + Travel + Food + + + TVG + + + + Diners, Drive-Ins and Dives + Homeland Favorites + In Richfield, Minn., tacos al pastor and carnitas tamales; in Denver, lamb ribs and a unique dessert specialty; in Atlanta, shrimp and grits and biscuits and gravy. + Travel + Food + + + TVG + + + + Diners, Drive-Ins and Dives + Family Legacies + Guy gets a helping of comfort food; in Pleasantville, N.J., a local landmark dishes up down-home cooking; in Baltimore, a joint gets decadent with coconut-cream French toast; in Colorado Springs, Colo., a barbecue spot serves up meatloaf. + Travel + Food + + + TVG + + + + Diners, Drive-Ins and Dives + Wonder Women + Guy Fieri tries an all-female lineup; a grandma cooks family recipes like homemade tamales and chile rellenos with a twist in Houston; a spot that makes meatball masterpieces in Orlando, Fla; a bakery making sweet and savory specialties. + Travel + Food + + + TVG + + + + Diners, Drive-Ins and Dives + Far Out + A restaurant serving up waffles with their fried chicken; a Cuban joint serves salt cured beef dish. + Travel + Food + + + TVG + + + + Diners, Drive-Ins and Dives + Triple D Nation: From Biscuits to Briskets + Tasting food from coast to coast and across the pond; Guy Fieri samples Irish-inspired egg rolls in Atlantic Beach, Fla., mile-high meatloaf from the 18th hole in Vincentown, N.J., and an American breakfast with an English twist in Ventura, Calif. + Travel + Food + + + TVG + + + + Diners, Drive-Ins and Dives + East, South, West + Guy Fieri road trips across America to check out classic greasy spoons. With a new generation of owners and delicious homemade food, these are the kind of places that make America special. + Travel + Food + + + TVPG + + + + Diners, Drive-Ins and Dives + Dynamite Duos + In New York's Lower East Side, pickling, smoking, curing and fermenting, everything from the goat necks to chicken wings; in Eureka, Calif., Mediterranean favorites; in Miami, Fla., whole fried snapper and beer braised baby back ribs. + Travel + Food + + + TVG + + + + Diners, Drive-Ins and Dives + Family Legacies + Guy gets a helping of comfort food; in Pleasantville, N.J., a local landmark dishes up down-home cooking; in Baltimore, a joint gets decadent with coconut-cream French toast; in Colorado Springs, Colo., a barbecue spot serves up meatloaf. + Travel + Food + + + TVG + + + + Diners, Drive-Ins and Dives + Wonder Women + Guy Fieri tries an all-female lineup; a grandma cooks family recipes like homemade tamales and chile rellenos with a twist in Houston; a spot that makes meatball masterpieces in Orlando, Fla; a bakery making sweet and savory specialties. + Travel + Food + + + TVG + + + + Diners, Drive-Ins and Dives + Far Out + A restaurant serving up waffles with their fried chicken; a Cuban joint serves salt cured beef dish. + Travel + Food + + + TVG + + + + Diners, Drive-Ins and Dives + Triple D Nation: From Biscuits to Briskets + Tasting food from coast to coast and across the pond; Guy Fieri samples Irish-inspired egg rolls in Atlantic Beach, Fla., mile-high meatloaf from the 18th hole in Vincentown, N.J., and an American breakfast with an English twist in Ventura, Calif. + Travel + Food + + + TVG + + + + Diners, Drive-Ins and Dives + Far Out + A restaurant serving up waffles with their fried chicken; a Cuban joint serves salt cured beef dish. + Travel + Food + + + TVG + + + + Diners, Drive-Ins and Dives + Triple D Nation: From Biscuits to Briskets + Tasting food from coast to coast and across the pond; Guy Fieri samples Irish-inspired egg rolls in Atlantic Beach, Fla., mile-high meatloaf from the 18th hole in Vincentown, N.J., and an American breakfast with an English twist in Ventura, Calif. + Travel + Food + + + TVG + + + + Diners, Drive-Ins and Dives + East, South, West + Guy Fieri road trips across America to check out classic greasy spoons. With a new generation of owners and delicious homemade food, these are the kind of places that make America special. + Travel + Food + + + TVPG + + + + Diners, Drive-Ins and Dives + Dynamite Duos + In New York's Lower East Side, pickling, smoking, curing and fermenting, everything from the goat necks to chicken wings; in Eureka, Calif., Mediterranean favorites; in Miami, Fla., whole fried snapper and beer braised baby back ribs. + Travel + Food + + + TVG + + + + Diners, Drive-Ins and Dives + Tacos, Turtles and Tri-Tip + Sampling pork belly tacos and carne adobada in a high-energy marketplace in Oakland; turtle soup in Islamorada, Florida; savory crepes and a saucy twist on traditional beignets in Stockton, California. + Travel + Food + + + TVG + + + + Diners, Drive-Ins and Dives + Homeland Favorites + In Richfield, Minn., tacos al pastor and carnitas tamales; in Denver, lamb ribs and a unique dessert specialty; in Atlanta, shrimp and grits and biscuits and gravy. + Travel + Food + + + TVG + + + + Jane Seymour, Kate Walsh share their skin secrets + Crepe Erase Ultra visibly transforms your skin with 9 super hydrators! Tune in to see how Jane Seymour and Kate Walsh keep their skin so smooth. Treat and repair the look of crepey skin.Shop at CrepeErase.com. + Paid Program + + + + Cut Down Dinner Costs With PowerXL Versa Chef! + Incredible new multi-cooker - Air Fryer, Bread Maker, Slow Cooker, and Oven all in one! + Paid Program + Food + + + + Cook Family Size Meals Faster + Emeril's biggest air fryer oven combines 10 kitchen appliances into one endlessly versatile countertop cooker with 2 cooking zones and a full menu of custom presets. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Cindy Crawford and Ellen Pompeo share secrets + Join Cindy Crawford and Ellen Pompeo as they discuss their busy lives and the breakthrough skin care discovery that keeps them looking their best. Take a trip to the stunning French countryside to see a rare French melon that defies aging. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Girl Meets Farm + New Classics + Molly Yeh is putting her own spin on some of her favorite dishes to make a fun meal for Nick and her dad; the menu includes Molly's Chicago Dog Meatloaf with Mustard Glaze, a Salt-and-Vinegar Potato Galette and more. + Food + + + TVG + + + + Girl Meets Farm + Middle Italy + Orecchiette with broccolini and sausage and a simple escarole salad with artichokes and tangy lemon dressing; crispy fried mozzarella sticks with creamy marinara; sweet Italian rainbow cookies. + Food + + + TVG + + + + Valerie's Home Cooking + Reinventing Fall Foods + In an effort to shake up traditional takes on fall foods, Valerie Bertinelli treats her guests, chef Ludo Lefebvre, his wife, Krissy, and their 8-year-old twins, to a special day-after brunch filled with seasonal treats for a long holiday weekend. + Food + + + TVG + + + + Valerie's Home Cooking + The Days Grow Shorter and the Nights Longer + Valerie Bertinelli and her husband, Tom, entertain two of their good pals on one of the shortest days of the year; Valerie makes her slow-cooker mulled wine, fried chickpeas with sage and parmesan, and turkey sausage with fennel sauerkraut. + Food + + + TVG + + + + The Pioneer Woman + Fall Favorites + Ree Drummond celebrates autumn with seasonal favorites, like a fall salad with spicy brittle, very veggie soup and her go-to dish for entertaining, wine-braised chicken with apricots; for a sweet finish, she makes autumn fruit compote sundaes. + Reality TV + Food + + + TVG + + + + The Pioneer Woman + One Potato, Two Potato + Ree Drummond spotlights different kinds of potatoes in a variety of delicious dishes; purple sweet potato soup with a pistachio crumble, corned beef hash with roasted russets and sweet potatoes, and potato dumplings with leftover mashed potatoes. + Reality TV + Food + + + TVG + + + + The Pioneer Woman + Housewarming Treats + Ree Drummond prepares fall sweets for visitors at her and her sister's remodeled home, by starting the housewarming with her classic s'mores cookies, shortcut cherry cheesecake brownie cups, easy apple fritters, and pumpkin pie snacking granola. + Reality TV + Food + + + TVG + + + + The Pioneer Woman + Fresh from the Merc + Ree Drummond is making over the menu at her Mercantile store. She's dishing out some new favorites like Crunchy French Toast, no-cook Heirloom Tomato Salad, the Smokie Okie, a fabulous fried chicken BLT sandwich, and her showstopping Strawberry Cake. + Reality TV + Food + + + TVG + + + + Girl Meets Farm + Harvest Pre-Haul + Molly Yeh is making the coziest foods imaginable; spiced beef hot dish with bacon jalapeno cornbread; loaded potato skins; for dessert, dreamy Tahini fudge pie. + Food + + + TVG + + + + Girl Meets Farm + The Big Till + Molly is making an easy and hearty lunch for the Hagen family farmers, and she's using some of her favorite pantry staples to fill them up on a budget; she starts by making cheesy meatball-stuffed biscuits and a side dish with a little kick. + Food + + + TVG + + + + Delicious Miss Brown + Fall Fest + Kardea Brown celebrates her favorite season with a fall-inspired menu of Braised Pulled Pork Sliders with Apple Slaw, Sweet Potato Chips with Sweet and Spicy Mustard Sauce, Spiked Mulled Apple Cider and Apple Cider Donuts with Pumpkin Spice Glaze. + Food + + + TVG + + + + Mary Makes It Easy + Side Show + Join Mary Berg as she takes it step by step through recipes guaranteed to impress without the stress. + Food + + + + The Kitchen + Harvest + Pork loin; tasty ways to whip up cauliflower; Food Network's Nancy Fuller shares slow cooker recipes; using fall's bounty to create one-stop snacks; a bourbon apple cider. + Food + + + TVG + + + + Holiday Baking Championship + Dining Out for the Holidays + Jesse Palmer asks the bakers to turn steakhouse desserts into decadent holiday treats; then, the competitors impress the judges by transforming a traditional steakhouse icon into a tasty Christmas tree. + Reality TV + Food + + + TVG + + + + Holiday Baking Championship + Holiday Movie Magic + Jesse Palmer challenges the bakers to create a holiday high tea; the bakers get inspired by a holiday movie trope to create a dessert that's dripping with festive decorations. + Reality TV + Food + + + TVG + + + + Holiday Baking Championship + The World of Holidays + In honor of Kwanzaa, Jesse Palmer tasks the bakers with crafting desserts that feature fresh corn for a traditional Kwanzaa display; the competitors put their personal stamp on international holiday desserts. + Reality TV + Food + + + TVG + + + + Holiday Baking Championship + Holiday Rush + The bakers feel the holiday rush as Jesse Palmer sends them through three heated challenges: create ugly sweater cakes, turn store-bought cake into tasty centerpieces and build a snowman croquembouche. + Reality TV + Food + + + TVG + + + + Holiday Baking Championship + Happy Holiday Getaways + Jesse Palmer escapes the cold weather by challenging the bakers to create desert-inspired succulent tarts, and two competitors are sent skiing into a cookie cake showdown. + Reality TV + Christmas + + + TVG + + + + Holiday Wars + Love at Frost Sight + Three teams create a scene depicting the moment Mr. and Mrs. Claus fell in love. + Christmas + + + TVG + + + + Holiday Wars + Love at Frost Sight + Three teams create a scene depicting the moment Mr. and Mrs. Claus fell in love. + Christmas + + + TVG + + + + Christmas Cookie Challenge + A Very Gingerbread Puppet Show + Ree Drummond and Eddie Jackson host a dramatic opening night in the Christmas cookie playhouse, where four gingerbread masters craft cookie stick puppets; the bakers also build grand gingerbread puppet theaters to perform a play. + Christmas + + + TVG + + + + Holiday Baking Championship + Feeling Sweet and Thankful + Smoked, fried, brined, roasted and bacon-wrapped, Jesse Palmer uses the five-way turkey as inspiration for the bakers' preheat challenge; the competitors divide into teams to create a flight of pies that takes the judges on a flavorful journey. + Reality TV + Food + + + TVG + + + + Holiday Wars + Love at Frost Sight + Three teams create a scene depicting the moment Mr. and Mrs. Claus fell in love. + Christmas + + + TVG + + + + Christmas Cookie Challenge + A Very Gingerbread Puppet Show + Ree Drummond and Eddie Jackson host a dramatic opening night in the Christmas cookie playhouse, where four gingerbread masters craft cookie stick puppets; the bakers also build grand gingerbread puppet theaters to perform a play. + Christmas + + + TVG + + + + Served at Camp Lejeune or New River Air Base? + If you served at Marine Corps Base Camp Lejeune or New River Air Station from 1953 to 1987 and you or a family member was diagnosed with cancer or another disease, you may be entitled to compensation. Call now for a free case review. + Paid Program + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + Paid Program + + + TV14 + + + + DraftKings Sportsbook Report + DraftKings Sportsbook, a top-rated sportsbook app! + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Delicious Miss Brown + Lowcountry Lunch + Kardea Brown invites a friend over to sit by the creek, share a great meal and watch the world go by; her menu includes a seafood salad roll with Charleston shrimp and blue crab, homemade seasoned chips and Creekside custard cups. + Food + + + TVG + + + + Delicious Miss Brown + Carolina Comfort + Kardea gathers friends around the fire pit for a cozy meal; dinner includes beef and okra stew served with sweet potatoes topped with roasted marshmallows; for dessert, caramel apple cake and warm spiced apple cider. + Food + + + TVG + + + + Delicious Miss Brown + Pampered and Fed + Kardea Brown treats her mom and aunt to a spa day followed by a decadent dinner at home; she makes crawfish bisque, escarole salad with warm bacon dressing, creamy lobster and corn pappardelle, chocolate martinis; dark chocolate coconut cream tart. + Food + + + TVG + + + + Delicious Miss Brown + Hutchinson House Dinner + Kardea Brown hosts a traditional Southern fish fry for a fundraiser to benefit the Hutchinson House; the dinner features fried cornmeal-crusted catfish and loaded baked potato salad; for dessert, Kardea bakes an old-fashioned lemon buttermilk pie. + Food + + + TVG + + + + The Kitchen + A Hug on a Plate + Geoffrey Zakarian's beef stroganoff; Katie Lee's vegetable manicotti; Jeff Mauro puts his spin on a takeout favorite with his General Tso's crispy chicken sandwich; the winner of the 48th Pillsbury Bake-Off Contest demonstrates her winning recipe. + Food + + + TVG + + + + The Kitchen + Crave-Worthy Comfort Food + A celebration of the ultimate crave-worthy comfort foods, starting with easy barbecue braised brisket with sweet potato and carrot mash; Jeff Mauro makes melting sweet potatoes; Katie Lee cooks a luscious lobster pot pie. + Food + + + TVG + + + + The Kitchen + First Food Jobs + A group of talented food experts gather in the kitchen to share lively conversation and delicious recipes. From simple supper ideas to the latest food trends, they cover all things fun in food! + Food + + + TVG + + + + Beat Bobby Flay + Holiday Throwdown: Hardest Holiday Dishes + Giada De Laurentiis decks the halls as triple-threat titans Tiffany Derry, Michael Voltaggio and Brooke Williamson try to put Bobby Flay under the tree with some of the most difficult holiday delicacies. + Reality TV + Food + + + TVG + + + + Beat Bobby Flay + Holiday Throwdown: Room for Dessert + Carla Hall ushers in an all-pastry holiday extravaganza with chefs Alex Guarnaschelli, Damaris Phillips and Zac Young. + Reality TV + Food + + + TVG + + + + Beat Bobby Flay + Holiday Throwdown: Holiday Around the World + Geoffrey Zakarian is Bobby Flay's tour guide as chefs Eric Adjepong, Esther Choi and Leah Cohen bring a world of hurt for the holidays. + Reality TV + Food + + + TVG + + + + Holiday Wars + Ugly Sweater Party + Host Jeff Mauro challenges the five remaining teams to create a woodland creature that is throwing an ugly sweater party for all its forest friends; at the end of the festive fiesta, judges Shinmin Li and Aarti Sequeira eliminate one more team. + Christmas + + + TVG + + + + Holiday Wars + Time Travelin' Santa + Jeff Mauro and the Holiday Wars time machine send the remaining four teams back in time; each group must create a Santa from a specific period in history before judges Shinmin Li and Aarti Sequeira decide who will move forward. + Christmas + + + TVG + + + + Holiday Wars + A Very Peanuts Christmas Tree + Jeff Mauro invites the remaining teams to create a Christmas tree featuring Charles Schulz's beloved Peanuts characters; two teams will face off in the finale for a trip to Iceland. + Christmas + + + TVG + + + + Holiday Wars + North Pole Talent Show + Santa throws a North Pole talent show and the final two teams showcase the secret talents of the town's brave residents; Jeff Mauro, Shinmin Li and Aarti Sequeira crown the champion. + Christmas + + + TVG + + + + Holiday Baking Championship + Season's Best + Jesse Palmer asks the bakers to combine two of the fall season's best treats and make seasonal coffee drink cinnamon rolls. + Reality TV + Food + + + TVG + + + + Christmas Cookie Challenge + A Very Gingerbread Puppet Show + Ree Drummond and Eddie Jackson host a dramatic opening night in the Christmas cookie playhouse, where four gingerbread masters craft cookie stick puppets; the bakers also build grand gingerbread puppet theaters to perform a play. + Christmas + + + TVG + + + + The Big Bake + Holiday: Jingle Bell Rockin' + Host Brad Smith is pumping up the volume on the competition as the baking teams serve up a concert of cakes featuring Santa and his North Pole pals rocking out for judges Ron Ben-Israel, Eddie Jackson and Danni Rose. + Reality TV + Food + + + TVG + + + + Holiday Baking Championship + Season's Best + Jesse Palmer asks the bakers to combine two of the fall season's best treats and make seasonal coffee drink cinnamon rolls. + Reality TV + Food + + + TVG + + + + Christmas Cookie Challenge + A Very Gingerbread Puppet Show + Ree Drummond and Eddie Jackson host a dramatic opening night in the Christmas cookie playhouse, where four gingerbread masters craft cookie stick puppets; the bakers also build grand gingerbread puppet theaters to perform a play. + Christmas + + + TVG + + + + The Big Bake + Holiday: Jingle Bell Rockin' + Host Brad Smith is pumping up the volume on the competition as the baking teams serve up a concert of cakes featuring Santa and his North Pole pals rocking out for judges Ron Ben-Israel, Eddie Jackson and Danni Rose. + Reality TV + Food + + + TVG + + + + Dinner: Impossible + Tropic Lightning + Hawaii's 25th Infantry Division enlists Robert Irvine to prepare a 5-star dinner for 60 soldiers to celebrate their 79th anniversary; using only a mobile army field kitchen and meal rations, Robert must create a high-end dinner in just seven hours. + Food + + + TVG + + + + Cindy Crawford and Ellen Pompeo share secrets + Join Cindy Crawford and Ellen Pompeo as they discuss their busy lives and the breakthrough skin care discovery that keeps them looking their best. Take a trip to the stunning French countryside to see a rare French melon that defies aging. + Paid Program + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Ninja Woodfire Outdoor Grill + Meet the Shark Ninja Wood Fire Grill, with Master Grill, BBQ Smoke, and Air Fry outdoor capabilities. Powered by electricity and flavored by real burning wood pellets, Woodfire Technology allows you to easily create rich flavor you can see and taste. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Guy's Ranch Kitchen + Cali Brunch + Guy Fieri is at the ranch with his chef friends celebrating the bounty of the Golden State with a Cali-style brunch spread. + Food + + + TVG + + + + Guy's Ranch Kitchen + Retro Reboot + Chicken a la king with an Indian-inspired makeover; crab Louie; Swedish meatballs; lobster truffle pot pie; Chateaubriand au Marchand du Vin; spin on the Manhattan cocktail. + Food + + + TVG + + + + Guy's Ranch Kitchen + Restaurant Recreations + Guy Fieri's chef friends re-create some restaurant favorites; Eric Greenspan stirs a ruby red and tarragon paloma; Antonia Lofaso makes Vietnamese spring rolls; Marc Murphy prepares chicken and merguez tagine; Crista Luedtke grills chili tri-tip. + Food + + + TVG + + + + Guy's Ranch Kitchen + Layering It On + Guy Fieri's laying down a challenge; classic Indian bombay frankie; chef Rocco DiSpirito's layering the booze; 10-layer lasagna bolognese; chef Ming Tsai is making kimchee beef scallion pancakes with watercress slaw. + Food + + + TVG + + + + Supermarket Stakeout + Steakout + Alex Guarnaschelli kicks off the steakout in the parking lot as the competing chefs hunt for steaks. + Reality TV + Food + + + TVG + + + + Supermarket Stakeout + Reelin' in the Right Shoppers + Fresh catch is on the menu, and the four competing chefs are desperate to reel in the right grocery bags; Alex Guarnaschelli challenges the remaining chefs to simmer some soulful bowls; the final two chefs create chocoholic plates. + Reality TV + Food + + + TVG + + + + Chopped + A Chopped Thanksgiving + Chefs compete to make the best holiday meal from the mystery baskets; reinventing a green bean casserole; a big bird and a frozen orange treat in the second basket. + Christmas + Food + + + TVG + + + + Chopped + Celebrating Veterans + Four military veterans compete; in round one, a favorite American comfort food and a super-sweet drink; patriotic pasta and a pre-made savory pie in the entree round; cheese and pudding for dessert. + Christmas + Food + + + TVG + + + + Chopped + Chocolate Frenzy + In this battle, the chefs are blessed with an abundance of the so-called food of the gods. In the first round, the competitors attempt to make duck and chocolate fly. Faux deviled eggs are a sweet trick in the entree basket. + Christmas + Food + + + TVG + + + + Chopped + Beat Bobby Flay: Battle 1 + Sixteen fearless champions are back to defeat chef Bobby Flay and win $50,000; strangely sweet sandwiches and beautiful seafood await the champs; unusual beef jerky product and a twist on hummus; special banana pudding; fancy bacon. + Christmas + Food + + + TVG + + + + Chopped + Beat Bobby Flay: Battle 3 + Four returning champions try to impress Bobby Flay; in the first round, an oven mishap leads to an alarming situation; an American classic in frozen form threatens to stump the chefs; two remaining champs must make big plans for a candy-themed tart. + Christmas + Food + + + TVG + + + + Chopped + Beat Bobby Flay: Battle 2 + Four. + Christmas + Food + + + TVG + + + + Chopped + Beat Bobby Flay: Battle 4 + In the first round, the chefs cook up appetizers using pizza bites and caviar; In the entree round,a magnificent comfort food creation and a basic veggie; dessert basket features a sugary cereal and a gelatinous stumper. + Christmas + Food + + + TVG + + + + Chopped + Beat Bobby Flay: Finale Fight + The Beat Bobby Flay Tournament finale brings four winners back for a chance to defeat a Food Network legend and score $50,000; in round one, a pork product goes through a grinder, and a canned item in the second basket isn't what the chefs hoped for. + Christmas + Food + + + TVG + + + + Chopped + Friendsgiving + Four teams of best buddies compete to make a Thanksgiving feast. Mayhem ensues with eight chefs in the kitchen in the first round, as everyone tries to make the most of an iffy canned product. A weird hot dog is part of the entrée round puzzle. + Christmas + Food + + + TVG + + + + Beat Bobby Flay + Holiday Throwdown: Turkey Day Traditions + Katie Lee Biegel cracks the wishbone with Turkey Day classics and makes this holiday reunion a surprise family affair. Chefs Darnell Ferguson, Bryan Voltaggio and Michael Voltaggio attempt to squash Bobby Flay with a new turkey tradition. + Reality TV + Food + + + TVG + + + + Chopped + Thanksgiving Champions + Four series champions are hungry for more as they return for a special Thanksgiving competition; they must deal with a shocking poultry product in the appetizer round, and the three who make it to the entree round get a big, bright orange surprise. + Christmas + Food + + + TVG + + + + Chopped + Gargantuan Surprises + In addition to the three mandatory ingredients in each basket, the competing chefs have to share a colossal fourth ingredient in every round; it's a shockingly big surprise that takes some getting used to. + Christmas + Food + + + TVPG + + + + Beat Bobby Flay + Holiday Throwdown: Turkey Day Traditions + Katie Lee Biegel cracks the wishbone with Turkey Day classics and makes this holiday reunion a surprise family affair. Chefs Darnell Ferguson, Bryan Voltaggio and Michael Voltaggio attempt to squash Bobby Flay with a new turkey tradition. + Reality TV + Food + + + TVG + + + + Chopped + Thanksgiving Champions + Four series champions are hungry for more as they return for a special Thanksgiving competition; they must deal with a shocking poultry product in the appetizer round, and the three who make it to the entree round get a big, bright orange surprise. + Christmas + Food + + + TVG + + + + Chopped + Gargantuan Surprises + In addition to the three mandatory ingredients in each basket, the competing chefs have to share a colossal fourth ingredient in every round; it's a shockingly big surprise that takes some getting used to. + Christmas + Food + + + TVPG + + + + Chopped + Friendsgiving + Four teams of best buddies compete to make a Thanksgiving feast. Mayhem ensues with eight chefs in the kitchen in the first round, as everyone tries to make the most of an iffy canned product. A weird hot dog is part of the entrée round puzzle. + Christmas + Food + + + TVG + + + + Dinner: Impossible + 3 Weddings and a Robert + In Las Vegas, Robert Irvine is tasked with catering three distinct wedding receptions in only six hours; Robert must navigate the obstacles of Sin City to make each couple's culinary dreams a reality and create a picture-perfect wedding meal. + Food + + + TVG + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + DraftKings Sportsbook Report + DraftKings Sportsbook, a top-rated sportsbook app! + Paid Program + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Car Repair Secrets! + Save thousands on car repairs. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Get Fit with Total Gym, Risk Free + Get in the best shape of your life with the Total Gym 30 Day Risk-Free Trial Offer. + Paid Program + + + + Girl Meets Farm + Let's Get Cozy! + Molly Yeh is making hearty foods to keep her family warm; the cozy menu includes comforting chicken and dumpling soup with decadent no knead salami bread and zippy citrus and greens salad. + Food + + + TVG + + + + Girl Meets Farm + Curling Club + The hearty dishes include knoephla soup with the chewiest dumplings ever; sticky ribs and a side of sweet, tangy broccoli slaw with plump currants; for dessert, Molly has red velvet snow balls with cream cheese filling. + Food + + + TVG + + + + Girl Meets Farm + Final Touches House Reno + Molly Yeh and Nick celebrate their completed home reno by dining in their new porch swing; Molly cooks up wild rice pancakes with cherry compote, everything bagel chicken and biscuits, kimchi potato salad and chocolate peanut butter sheet cake. + Food + + + TVG + + + + Girl Meets Farm + Bernie and Ira's Day of Deliciousness + Molly Yeh makes a slew of kid-friendly dishes that everyone will adore; she whips up grilled bacon, egg and cheese in a basket, a cozy chicken noodle hot dish and a breakfast combo: blueberry muffin smoothies with mini blueberry muffin garnishes. + Food + + + TVG + + + + The Pioneer Woman + Simply the Best + Comfort classics include tomato soup, grilled cheese, scrambled eggs and yogurt parfait for dessert. + Reality TV + Food + + + TVG + + + + The Pioneer Woman + Kitchen Confessional: Comfort Food + Chicken and dumplings; quesadillas with shrimp and peppers; pasta with tomato cream sauce; cinnamon toast. + Reality TV + Food + + + TVG + + + + The Pioneer Woman + Old-Fashioned Comfort + Ree Drummond prepares old-fashioned comfort foods; tuna noodle casserole; meatballs in sweet and sour sauce; glazed apple dumplings; cheesy Welsh rarebit. + Reality TV + Food + + + TVG + + + + The Pioneer Woman + 16-Minute Comfort + Ree Drummond speeds things up by giving her favorite comfort food recipes the 16-minute treatment; she makes a deconstructed chicken pot pie, speedy shrimp and grits, a snappy stroganoff, and wraps up with quick classic tuna melts. + Reality TV + Food + + + TVG + + + + The Pioneer Woman + Easy Comfort + Ree makes comfort food the easy way starting with carrot cake French toast, a tasty combo of two classics in one make-ahead breakfast; she makes corn and green chili chowder in a multi pot, butterscotch lava cake and a fried red tomato sandwich. + Reality TV + Food + + + TVG + + + + The Pioneer Woman + Home Sweet Home: Drummond Comfort + Ree recruits help on the ranch to cook family favorites, including Tuscan chicken soup, casserole with cheesy greens, fried crispy potato balls and an easy Neapolitan cake. + Reality TV + Food + + + TVG + + + + Guy's Grocery Games + GGG Gives Thanks + Up-and-coming chefs make a Thanksgiving feast using only the ingredients they can fit in a traditional cornucopia basket; prepare a fall staple using a list of the Fieri family's favorite ingredients. + Food + Game Shows + + + TVG + + + + Guy's Grocery Games + American Heroes + Four American heroes -- a cop, a firefighter, an EMT and an Air Force vet -- test their culinary might in a battle worth up to $20,000. + Food + Game Shows + + + TVG + + + + Guy's Grocery Games + All-Stars' Full Meal + When celebrity chefs come to Flavortown, Guy gets to try out his most twisted games, and this time he's really putting them to the test with full, three-course meals; chefs face a special ingredient of Guy's choosing; chefs play a game of chance. + Food + Game Shows + + + TVG + + + + To Be Announced + Programming to be announced. + + + + The Outdoorsman With Buck McNeely + Buck explores the Rio Negro River in Brazil and fishes for peacock bass; a visit to Manaus. + + + + The National Desk + Local and national perspectives on the latest news. + + + + Beat Shazam + Nick Cannon guest hosts; Kelly Osbourne guest DJs; teams of teachers battle to take home the $1 million prize. + + + + Last Man Standing + When Mike hires a private soccer coach in hope of helping Eve land a scholarship, the ladies of the Baxter household are charmed by the young man. + + + + Last Man Standing + Ryan winds up impressing Mike; after Mandy fails history and her laptop and cell phone are taken away, she starts using Mike's old ham radio. + + + + The Simpsons + When a romantic night ends in injury, Marge recovers by taking up kite boarding while Homer bonds with his hallucinated hernia; Lisa attempts to fix her parents' strained relationship by seeking advice from an unlikely source. + + + + Young Sheldon + After graduating high school, Sheldon has a breakdown when he realizes he may not be ready for college; Dale tries to make amends with Meemaw. + + + + Young Sheldon + Sheldon gets a summer job at the local train museum; Missy embarks on a new stage of womanhood; Georgie discovers Mary's guilty pleasure. + + + + DraftKings Casino Report + DraftKings Casino, a top-rated casino app! + + + + DraftKings Casino Report + DraftKings Casino, a top-rated casino app! + + + + The Goldbergs + When Barry and Erica get Adam to show them the rough layout of the yearbook, they accidentally delete the file and damage Adam's relationship with Jackie; Marvin visits to ask for money. + + + + The Goldbergs + Hoping to receive a car for his birthday, Barry is shocked by what his mother gives him; Adam asks Pop for advice. + + + + Funny You Should Ask + Jon Lovitz; Tiffany Haddish; Adam Carolla; Byron Allen; Caroline Rhea; Jeff Ross. + + + + Funny You Should Ask + Jon Lovitz; Kim Whitley; Billy Gardell; Byron Allen; Natasha Leggero; Jamie Kennedy. + + + + Animal Rescue + Puppies stuck in a rock formation; a bunny with a large tumor; pet alert signs. + + + + Dog Tales + Los Angeles police officers rescue stray dogs; the Boston terrier. + + + + Dano on the Counter + + + + Matter of Fact With Soledad O'Brien + Soledad O'Brien and guests offer analysis and perspective on current political issues. + + + + FOX News Sunday + Anchor Shannon Bream interviews the biggest newsmakers of the week and leads guests in providing context and analysis of the issues facing Americans. + + + + Remax Real Estate Showcase + + + + REMAX Parade of Properties + + + + FOX NFL Kickoff + A preview of the day's NFL action, including interviews with NFL newsmakers, reports from NFL game venues, breaking news and updates. + + + + FOX NFL Sunday + Hosts Curt Menefee and Terry Bradshaw; with analysts Howie Long, Jimmy Johnson and Michael Strahan. + + + + NFL Football + The Patriots (2-6) host the Commanders (3-5). New England has won four straight against Washington. Bill Belichick became the third coach in NFL history to reach 300 wins as the Patriots upset the Bills 29-25 in their last home game on Oct. 22. + + + + NFL Football + The Cowboys visit the Eagles. Philadelphia sits atop the NFL with a 7-1 record, and paces the NFC with 224 points scored. A.J. Brown (PHI) became the first player in NFL history to record 125-plus receiving yards in six consecutive games on Oct. 29. + + + + The OT + Sports scores, highlights and post-game coverage. + + + + The Simpsons + After Bart is turned into an NFT, Marge fights through the blockchain to rescue her son; to track down a gruesome serial killer, Lisa turns to a murderer from her past; an outbreak transforms Springfielders into a plague of lazy, beer-loving oafs. + + + + Krapopolis + Tyrannis begins dating the goddess Demeter and is given an option at immortality that Deliria squashes; Stupendous and Hippocampus go to Hades to retrieve Stupendous' shield from a fallen foe. + + + + Bob's Burgers + The Belcher kids learn a secret about Zeke's past; Bob rekindles his feud with Jimmy Pesto. + + + + Family Guy + Peter and Lois vacation in Florida, only to discover they've rented a condo in a retirement community; Brian helps Stewie take his first shower. + + + + Kaleidoscope the Series + Kaleidoscope The Series is a 30 minute weekly news magazine covering west-central Pennsylvania and beyond. Kaleidoscope features a person, place and thing each week. + + + + Fast: Home Rescue + Cody and Felicia Walker rebuild the Salinas family house in Dulac, La., after it is badly damaged by multiple hurricanes, including Hurricane Ida; they transform the property into a dockside party-themed home for the Salinas family. + + + + 9-1-1 + Athena and the 118 are on high alert when a sniper is targeting members of the LAFD; Maddie makes a life decision. + + + + Two and a Half Men + Alan fears that Charlie's womanizing is getting out of control. + + + + The Neighborhood + When Victor Alvarez tries to steal Calvin's customers, the Butlers and Johnsons join forces on a plan to drum up business and give back to their community. + + + + Two and a Half Men + Charlie's house is taken over by women when Chelsea convinces him to let Alan's girlfriend move in. + + + + The Neighborhood + Calvin and Marty encounter difficulties trying to secure financing for their new business; Dave invites his boss to Grover's 13th birthday party, much to Gemma's frustration. + + + + Seinfeld + Jerry pays a price for mocking his uncle (Len Lesser) on "The Tonight Show"; tenants hate new shower heads. + + + + S.W.A.T. + The team pursues a couple reminiscent of Bonnie and Clyde when the duo goes on the run to hunt for a set of rare chess pieces that is worth millions; Darryl's ex-girlfriend visits with his young son. + + + + Chicago Fire + Severide teams up with Seager and the OFI when a motel structure fire turns suspicious; Firehouse 51 members become amateur sleuths following a Reddit post involving one of their own; Brett continues to get invested in her birth mother, Julie. + + + + Justice for All With Judge Cristina Pérez + A courier blames a mechanic for lost work because his motorcycle wasn't fixed in a timely manner; a woman is injured after she is served scalding-hot coffee. + + + + Mom + Bonnie and Adam go on a double date with Jill and Andy; Tammy recruits Christy to mediate a sensitive situation with Marjorie. + + + + Funny You Should Ask + Jon Lovitz; Tiffany Haddish; Adam Carolla; Byron Allen; Caroline Rhea; Jeff Ross. + + + + Who the Bleep Is That? + "Who the Bleep Is That?!?" is a game show in which contestants must guess the identities of celebrities who are obscured in various ways; host Jeff Dye. + + + + The National Desk + Local and national perspectives on the latest news. + + + + The National Desk + Local and national perspectives on the latest news. + + + + Dateline + After a 15-year-old girl disappears, investigators discover a creek where the local teenagers hang out that may hold the answer to her disappearance. + + + + 25 Words or Less + Teams compete to see who can guess secret words or phrases with a limited amount of clues and time; host Meredith Vieira. + + + + 25 Words or Less + Corbin Bleu puts his best foot forward, but he's going to have to circle back on some clues if he wants to win the game. + + + + Who the Bleep Is That? + "Who the Bleep Is That?!?" is a game show in which contestants must guess the identities of celebrities who are obscured in various ways; host Jeff Dye. + + + + Funny You Should Ask + Jon Lovitz; Tiffany Haddish; Adam Carolla; Byron Allen; Whitney Cummings; Jamie Kennedy. + + + + FOX 8 News Now + + + + iCRIME With Elizabeth Vargas + Crimes from across the country that have been captured by ordinary people on their smartphones; stories of victims, witnesses, law enforcement and the videographers themselves. + + + + Lauren Lake's Paternity Court + He says they were never intimate. + + + + Cutlers Court + Accusations of cheating and a claim for more than $8,000 have exes Isabella and Sarah squabbling in court. + + + + Hot Bench + Three judges argue the merits of a case among themselves and render a verdict. + + + + Hot Bench + A man buys a dirt bike for his nephew with the expectation of being paid back, but when the nephew is stabbed and shot, the payments reportedly cease. + + + + Justice for the People With Judge Milian + A couple's anniversary weekend falls flat after hotel's special event doesn't deliver on advertised perks. + + + + Justice for the People With Judge Milian + Newlyweds sue the mother of the groom's twins because the children missed the wedding. + + + + Equal Justice With Judge Eboni K. Williams + Man seeks compensation after spotty Wi-Fi at a vacation rental costs him a lucrative client for his business. + + + + Court Cam + A murderer found guilty of a crime holds nothing back at sentencing; a convict attempts to get a judge's attention through any means necessary; a man breaks into a courthouse at 3 a.m. and calls 911 to report himself. + + + + Two and a Half Men + Jake and Evelyn befriend one of Charlie's one-night stands, causing her to stay longer than expected. + + + + American Housewife + Katie pushes Cooper to share his passion for the culinary arts and ambition of becoming a chef with his autocratic father; Greg and Principal Ablin go head-to-head when the election results offer an interesting twist; the Otto family gets a surprise. + + + + Modern Family + When Gloria wins a family seminar at the school auction, Jay is resistant, Mitch and Cam try to come across as super stable, and Phil and Claire turn it into a competition; Haley and Alex get together to talk about boys. + + + + Young Sheldon + Without Dr. Sturgis' university class, Sheldon must find a new way to stay academically challenged; Mary helps Pastor Jeff avoid temptation with his girlfriend. + + + + Last Man Standing + After Mandy is accepted by two colleges, Kristin decides to re-evaluate her life; during a date with Ryan, Kristin runs into Jon (Jonathan Taylor Thomas), a former co-worker from the diner, who now owns a hip restaurant. + + + + Last Man Standing + Mike learns that Kyle's new-found interest in philosophy is distracting him from his work; Mike worries about Boyd attending a bilingual school. + + + + Kitchen Nightmares + Gordon Ramsay steps in to transform a family-run Haitian juice bar and restaurant in Brooklyn, N.Y., that has fallen into utter chaos. + + + + Special Forces: World's Toughest Test + The remaining recruits are taken to the top of a mountain range to face the most demanding exercise of selection so far -- using a single rope to crawl across a deadly ravine. + + + + FOX 8 News at 10PM + + + + FOX 8 News Now + + + + People Puzzler + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + + + + People Puzzler + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + + + + Young Sheldon + Paige drags Sheldon to a college party; Missy gets caught in a lie. + + + + Modern Family + A conversation about a house Phil is helping to sell gives everyone the idea to sneak in to enjoy it themselves; Jay and Gloria's plan to pay for a surprise family trip to Miami turns into a surprise for Gloria and then a bigger surprise for Jay. + + + + The Neighborhood + When Dave decides to disconnect the Johnson home from the grid, he inadvertently causes a community-wide power outage; in the wake of Marty's engagement, Tina struggles with no longer being the primary woman in her son's life. + + + + The Neighborhood + Calvin and Marty are surprised when their new business sparks protests from residents concerned about gentrification; Grover's family tree project reveals fresh details about the whereabouts of Dave's estranged father, who left when he was a child. + + + + Two and a Half Men + Charlie unknowingly sleeps with an elderly man's (Orson Bean) hot trophy wife. + + + + American Housewife + Katie tries to help Anna-Kat fit in at school; Taylor and Oliver get caught up in the luxe Westport lifestyle; Katie's neighbor decides to move. + + + + The Goldbergs + With her due date approaching, Erica is over pregnancy and demands a babymoon; Adam and Barry seek out advice on being an uncle from some unexpected sources. + + + + The Goldbergs + Adam becomes a magician to impress a girl; although Barry doesn't want to take the PSAT, he is troubled when he discovers his friends are taking it. + + + + Seinfeld + Jerry buys his parents (Barney Martin, Liz Sheridan) a Cadillac, which only complicates their lives; George rethinks his engagement. + + + + DraftKings Casino Report + DraftKings Casino, a top-rated casino app! + + + + Justice for All With Judge Cristina Pérez + A dispute between parents after their teens are banned from prom; a woman breaks her lease in order to pay a hefty fine because she dyed her dog's fur. + + + + Mom + Christy regrets fleeing the scene after hitting a parked car; Bonnie's therapist offers tools to help her better communicate with Adam. + + + + Funny You Should Ask + Jon Lovitz; Kim Whitley; Billy Gardell; Byron Allen; Natasha Leggero; Jamie Kennedy. + + + + Who the Bleep Is That? + "Who the Bleep Is That?!?" is a game show in which contestants must guess the identities of celebrities who are obscured in various ways; host Jeff Dye. + + + + The National Desk + Local and national perspectives on the latest news. + + + + The National Desk + Local and national perspectives on the latest news. + + + + Dateline + Years after a Montana man is found dead, his son dreads what he'll find when he opens up the box of case files, giving him insight into what really happened. + + + + 25 Words or Less + Happy hour may turn sour when Carson Kressley tries to shake things up with a stiff selection of clues. + + + + 25 Words or Less + Greg Grunberg works to conjure great clues and vanish his team's doubts in a race against the clock. + + + + Who the Bleep Is That? + "Who the Bleep Is That?!?" is a game show in which contestants must guess the identities of celebrities who are obscured in various ways; host Jeff Dye. + + + + Funny You Should Ask + Jon Lovitz; Tiffany Haddish; Adam Carolla; Byron Allen; Whitney Cummings; Jamie Kennedy. + + + + FOX 8 News Now + + + + iCRIME With Elizabeth Vargas + Crimes from across the country that have been captured by ordinary people on their smartphones; stories of victims, witnesses, law enforcement and the videographers themselves. + + + + Lauren Lake's Paternity Court + "Too young to be parents" is what the judge declares when former lovers bring their parents to court for DNA test results. + + + + Cutlers Court + After her boyfriend, Barry, takes a suspicious "business trip" to Miami, Brooke suspects him of cheating with his ex. + + + + Hot Bench + A massage therapist's ex-girlfriend says she shouldn't be held liable for damages to his car, because she caught him cheating. + + + + Hot Bench + An unwed couple used the man's credit and VA loan to buy a home, but now that they have broken up, the woman wants to be repaid for the furniture that was in the home when they bought it. + + + + Justice for the People With Judge Milian + Tenant sues her former landlord after a broken air-conditioning unit isn't replaced, leading to heat stroke; former friends argue over seats at a concert. + + + + Justice for the People With Judge Milian + Legal flames ignite when a voice actor blames his girlfriend's brother for deliberately over-spicing the wings during a friendly competition. + + + + Equal Justice With Judge Eboni K. Williams + Woman sues after her ex-best friend takes someone else to a concert; salon owner seeks compensation after a hairstylist leaves without notice. + + + + Court Cam + A man accused of killing two of his girlfriends is brought to justice; a deputy recalls his surprising discovery deep in the Montana wilderness; multiple bailiffs are targeted during a defendant's violent outburst. + + + + Two and a Half Men + Alan reluctantly agrees to a makeover after running into his ex-wife and her new beau; when the brothers go shopping, they clash over what to buy. + + + + American Housewife + Katie is exhausted after the kids keep her up all night, and Greg catches the flu; Katie has a confrontation with the school crossing guard. + + + + Modern Family + When Claire and Phil go out with a couple they met on vacation, the Dunphys end up having to pay the bill; Haley, Alex and Luke scramble to come through when Mitchell cashes in a birthday coupon they gave him. + + + + Young Sheldon + Sheldon takes matters into his own hands when Meemaw refuses to drive him to a lecture; Georgie tries to impress Veronica with his new business venture. + + + + Last Man Standing + Despite having a good time teaching Eve how to drive, Mike thinks Vanessa should take over so she and Eve can bond; Mandy is annoyed by Mike's endless requests for Kyle to do work around the house. + + + + Last Man Standing + Vanessa encourages Mandy to enjoy college life and join a sorority; Ed goes under cover to investigate productivity on The Outdoor Man loading dock. + + + + Name That Tune + Celebrity contestants Tig Notaro, Nicole Sullivan, Jeff Ross and Michael Kosta. + + + + 9-1-1: Lone Star + The 126 races to rescue a woman with an arrow shot into her head; Judd is doubly surprised by news Wyatt shares; Mateo helps a family member in need and comes to regret it. + + + + FOX 8 News at 10PM + + + + FOX 8 News Now + + + + People Puzzler + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + + + + People Puzzler + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + + + + Young Sheldon + Sheldon confronts the failure of his database; Georgie and Mandy struggle as new parents; Missy feels forgotten. + + + + Modern Family + Claire hopes to help the ducklings move out of the house while Phil is visiting Alex at college; Jay helps Mitch with Lily's sleepover; Cam, Gloria and Manny must meet a big hot sauce delivery deadline. + + + + The Neighborhood + A friendly Midwesterner moves his family to a Los Angeles neighborhood next door to Calvin, who's concerned the newcomers will disrupt the culture on the block. + + + + The Neighborhood + Calvin and Dave team up for a chance at bowling championship glory; Gemma and Tina face off against each other for the top ranking in an arcade game. + + + + Two and a Half Men + Charlie is convinced he saw his late father while having a near-death experience. + + + + American Housewife + Katie reluctantly joins Westport's Halloween zombie run; Anna-Kat and Greg get too enthusiastic about being zombies. + + + + The Goldbergs + The country music craze hits the town, and everyone is line dancing; Adam scores a new job, but his lack of time to spend with Pop-Pop results in some comically disastrous outcomes. + + + + The Goldbergs + Adam betrays his friends after becoming captain of the gym class; Erica encounters resistance from Beverly and Murray when she decides she wants to go to college. + + + + Seinfeld + Jerry buys his parents (Barney Martin, Liz Sheridan) a Cadillac, which only complicates their lives; George rethinks his engagement. + + + + DraftKings Casino Report + DraftKings Casino, a top-rated casino app! + + + + Justice for All With Judge Cristina Pérez + A woman sues her ex-girlfriend for outing her to her conservative parents; a man blames his neighbor after his house is vandalized. + + + + Mom + Christy and the ladies rally around Tammy when she has trouble adjusting to early release from parole; Bonnie is disappointed when her perfect birthday gift for Adam gets a lukewarm response. + + + + Funny You Should Ask + Jon Lovitz; Jackée Harry; Bill Engvall; Byron Allen; Caroline Rhea; Jeff Ross. + + + + Who the Bleep Is That? + "Who the Bleep Is That?!?" is a game show in which contestants must guess the identities of celebrities who are obscured in various ways; host Jeff Dye. + + + + The National Desk + Local and national perspectives on the latest news. + + + + The National Desk + Local and national perspectives on the latest news. + + + + Dateline + A romantic Mediterranean cruise intended to rekindle the love between a woman and her ex-husband leads to her vanishing. + + + + 25 Words or Less + Amanda Seales and her team go for the green but hit a spectrum of problems when some colorful clues get in their way. + + + + 25 Words or Less + Gabrielle Ruiz tries to deliver a win, but her clues may have gotten lost in the mail. + + + + Who the Bleep Is That? + "Who the Bleep Is That?!?" is a game show in which contestants must guess the identities of celebrities who are obscured in various ways; host Jeff Dye. + + + + Funny You Should Ask + Jon Lovitz; Tiffany Haddish; Adam Carolla; Byron Allen; Whitney Cummings; Jamie Kennedy. + + + + FOX 8 News Now + + + + iCRIME With Elizabeth Vargas + Crimes from across the country that have been captured by ordinary people on their smartphones; stories of victims, witnesses, law enforcement and the videographers themselves. + + + + Lauren Lake's Paternity Court + Sexy photos with other men cause a Georgia man to question the paternity of his fiancee's four-month-old child -- the wedding is off unless he hears the words "you are the father.". + + + + Cutlers Court + A surprise confession changes the course of Johnathan and McKenzie's budding relationship. + + + + Hot Bench + The plaintiff bought a house and offered to let her roommate move with her, but when she raised the price at the last minute, the roommate changed her mind; they feud over the termination fee on their old place. + + + + Hot Bench + An accidentally overpaid employee tries to explain why he doesn't owe his boss anything; a defendant who went out clubbing doesn't remember leaving a note confessing to hitting the plaintiff's car in a Tijuana liquor store parking lot. + + + + Justice for the People With Judge Milian + Mother blames her son's piano teacher after he is denied admission to a performing arts school; dispute between co-workers over vet bills. + + + + Justice for the People With Judge Milian + Ethics and expenses clash when a mother demands reimbursement for travel expenses from her son's baseball team. + + + + Equal Justice With Judge Eboni K. Williams + Tenant seeks the return of prepaid rent after her landlord's home was overrun with dogs. + + + + Court Cam + Another look at an additional top five accused killers featured on the program. + + + + Two and a Half Men + The housekeeper's beautiful granddaughter comes to work with her and attracts the attention of the men; Alan tries to convince Judith that Charlie's house is good for Jake. + + + + American Housewife + When Anna-Kat draws an unflattering portrait of Katie for the school art show, Katie plans to retrieve it before anyone can see it; Doris is left in charge of Oliver and Taylor. + + + + Modern Family + Phil doesn't feel appreciated while Claire is busy running the closet business; a life-size standee of Gloria for her hot sauce display attracts unsavory attention; Cam and Mitch become suspicious of their new renters. + + + + Young Sheldon + Sheldon is forced to take a break from science when his new obsession with "The Lord of the Rings" leads to an unhealthy habit; Missy asks George Sr. to teach her how to play catch. + + + + Total Sports 360 + Especial + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + + MLB Pregame Show + Una cobertura completa sobre los juegos de la liga, incluyendo actualizaciones en vivo, noticias de última hora, y la cobertura y análisis de los momentos más destacados. + Sports + Baseball + + + + Arizona Diamondbacks vs. Texas Rangers + Arizona Diamondbacks at Texas Rangers + From Globe Life Field in Arlington, Texas. + Sports + Baseball + + + + Total Sports 360 + Especial + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + + Total Sports 360 + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + TVPG + + + + Punto final + Programa donde la pasión y la controversia reinan mientras se debaten los últimos hechos ocurridos en el fútbol mexicano, la Copa Mundial de la FIFA, la UEFA Champions League y todas las competencias más importantes a nivel mundial. + Sports + Soccer + + + + Punto final + Programa donde la pasión y la controversia reinan mientras se debaten los últimos hechos ocurridos en el fútbol mexicano, la Copa Mundial de la FIFA, la UEFA Champions League y todas las competencias más importantes a nivel mundial. + Sports + Soccer + + + + Total Sports 360 + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + TVPG + + + + Punto final + Programa donde la pasión y la controversia reinan mientras se debaten los últimos hechos ocurridos en el fútbol mexicano, la Copa Mundial de la FIFA, la UEFA Champions League y todas las competencias más importantes a nivel mundial. + Sports + Soccer + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Total Sports 360 + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + TVPG + + + + Total Sports 360 + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + TVPG + + + + Punto final + Programa donde la pasión y la controversia reinan mientras se debaten los últimos hechos ocurridos en el fútbol mexicano, la Copa Mundial de la FIFA, la UEFA Champions League y todas las competencias más importantes a nivel mundial. + Sports + Soccer + + + + Fussballclub Sudtirol-Alto Adige vs. Parma + Parma vs. FC Südtirol Bolzano Bozen + Desde el Estadio Ennio Tardini en Parma, Emilia-Romagna, Italia. + Sports + Soccer + + + + El entretiempo + Resumen de las noticias deportivas del día junto con apasionados debates, entrevistas y análisis de personalidades de la televisión deportiva. + Sports + Miscellaneous + + + + Al-Riyadh vs. Al-Ahli Saudi FC + Al Ahli vs. Al-Riyadh + Desde el estadio King Abdullah Sports City en Jeddah, Makkah, Arabia Saudita. + Sports + Soccer + + + + El entretiempo + Resumen de las noticias deportivas del día junto con apasionados debates, entrevistas y análisis de personalidades de la televisión deportiva. + Sports + Miscellaneous + + + + Fútbol Mexicano Primera División + Apertura 2023, jornada 14: Santos Laguna vs. FC Juárez + Lo más destacado en la jornada 14 de la Liga MX Apertura 2023 entre Santos Laguna y los Bravos de Juárez. Disputado el 29 de octubre de 2023. + Sports + Soccer + + + + Total Sports 360 + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + TVPG + + + + Total Sports 360 + Especial + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + + La Previa MX + Reportajes, análisis y comentarios previo a los partidos de la Liga Mexicana. + Sports + + + + Toluca vs. Santos Laguna + Santos Laguna vs. Toluca + Jornada 16 del Torneo Apertura 2023 de la Liga Mx. Santos Laguna recibe a Toluca en el Nuevo Estadio Corona. + Sports + Soccer + + + + Querétaro vs. Juárez + Juárez vs. Querétaro + Acción de la Jornada 16 del torneo Apertura 2023 de la Liga MX, Juárez recibe a Querétaro en el estadio olímpico Benito Juárez. + Sports + Soccer + + + + Los Angeles FC vs. Vancouver Whitecaps + Vancouver Whitecaps FC vs. Los Angeles FC + Juego 2 en la Conferencia del Oeste de la primera ronda de eliminación. Los Angeles FC busca retener su título y avanzar para otro campeonato consecutivo ante Vancouver Whitecaps. Desde el Estadio BC Place. + Sports + Soccer + + + + Punto final + Programa donde la pasión y la controversia reinan mientras se debaten los últimos hechos ocurridos en el fútbol mexicano, la Copa Mundial de la FIFA, la UEFA Champions League y todas las competencias más importantes a nivel mundial. + Sports + Soccer + + + + Total Sports 360 + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + TVPG + + + + El chiringuito de jugones + Edu Aguirre sorprende a todos con una exclusiva sobre el futuro de Ancelotti. La exclusiva de Jugones sigue trayendo mucha cola y ha causado gran repercusión por lo medios de España. + Sports + Talk Show + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Total Sports 360 + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + TVPG + + + + El chiringuito de jugones + Edu Aguirre sorprende a todos con una exclusiva sobre el futuro de Ancelotti. La exclusiva de Jugones sigue trayendo mucha cola y ha causado gran repercusión por lo medios de España. + Sports + Talk Show + + + + Punto final + Programa donde la pasión y la controversia reinan mientras se debaten los últimos hechos ocurridos en el fútbol mexicano, la Copa Mundial de la FIFA, la UEFA Champions League y todas las competencias más importantes a nivel mundial. + Sports + Soccer + + + + Total Sports 360 + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + TVPG + + + + Punto final + Programa donde la pasión y la controversia reinan mientras se debaten los últimos hechos ocurridos en el fútbol mexicano, la Copa Mundial de la FIFA, la UEFA Champions League y todas las competencias más importantes a nivel mundial. + Sports + Soccer + + + + Total Sports 360 + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + TVPG + + + + Gol x gol América + Especialistas de fútbol comentan sobre lo más destacado de los partidos y las noticias de las ligas de balompié de América. + Sports + Soccer + + + TVPG + + + + Punto final + Programa donde la pasión y la controversia reinan mientras se debaten los últimos hechos ocurridos en el fútbol mexicano, la Copa Mundial de la FIFA, la UEFA Champions League y todas las competencias más importantes a nivel mundial. + Sports + Soccer + + + + Querétaro vs. Juárez + Juárez vs. Querétaro + Acción de la Jornada 16 del torneo Apertura 2023 de la Liga MX, Juárez recibe a Querétaro en el estadio olímpico Benito Juárez. + Sports + Soccer + + + + Total Sports 360 + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + TVPG + + + + El chiringuito de jugones + Edu Aguirre sorprende a todos con una exclusiva sobre el futuro de Ancelotti. La exclusiva de Jugones sigue trayendo mucha cola y ha causado gran repercusión por lo medios de España. + Sports + Talk Show + + + + Total Sports 360 + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + TVPG + + + + Los Angeles FC vs. Vancouver Whitecaps + Vancouver Whitecaps FC vs. Los Angeles FC + Juego 2 en la Conferencia del Oeste de la primera ronda de eliminación. Los Angeles FC busca retener su título y avanzar para otro campeonato consecutivo ante Vancouver Whitecaps. Desde el Estadio BC Place. + Sports + Soccer + + + + Total Sports 360 + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + TVPG + + + + Punto final + Programa donde la pasión y la controversia reinan mientras se debaten los últimos hechos ocurridos en el fútbol mexicano, la Copa Mundial de la FIFA, la UEFA Champions League y todas las competencias más importantes a nivel mundial. + Sports + Soccer + + + + Total Sports 360 + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + TVPG + + + + Punto final + Programa donde la pasión y la controversia reinan mientras se debaten los últimos hechos ocurridos en el fútbol mexicano, la Copa Mundial de la FIFA, la UEFA Champions League y todas las competencias más importantes a nivel mundial. + Sports + Soccer + + + + Total Sports 360 + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + TVPG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Total Sports 360 + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + TVPG + + + + El chiringuito de jugones + Edu Aguirre sorprende a todos con una exclusiva sobre el futuro de Ancelotti. La exclusiva de Jugones sigue trayendo mucha cola y ha causado gran repercusión por lo medios de España. + Sports + Talk Show + + + + Punto final + Programa donde la pasión y la controversia reinan mientras se debaten los últimos hechos ocurridos en el fútbol mexicano, la Copa Mundial de la FIFA, la UEFA Champions League y todas las competencias más importantes a nivel mundial. + Sports + Soccer + + + + Total Sports 360 + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + TVPG + + + + Punto final + Programa donde la pasión y la controversia reinan mientras se debaten los últimos hechos ocurridos en el fútbol mexicano, la Copa Mundial de la FIFA, la UEFA Champions League y todas las competencias más importantes a nivel mundial. + Sports + Soccer + + + + Total Sports 360 + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + TVPG + + + + Gol x gol América + Especialistas de fútbol comentan sobre lo más destacado de los partidos y las noticias de las ligas de balompié de América. + Sports + Soccer + + + TVPG + + + + Punto final + Programa donde la pasión y la controversia reinan mientras se debaten los últimos hechos ocurridos en el fútbol mexicano, la Copa Mundial de la FIFA, la UEFA Champions League y todas las competencias más importantes a nivel mundial. + Sports + Soccer + + + + Fútbol Mexicano Femenino Primera División + Juárez vs. Pumas UNAM + Jornada 17 del torneo Apertura 2023 en la Liga MX Femenil. Las Bravas de Juárez recibe a Pumas UNAM. Desde el estadio olímpico Benito Juárez, en Chihuahua. + Sports + Soccer + + + + Total Sports 360 + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + TVPG + + + + El chiringuito de jugones + Edu Aguirre sorprende a todos con una exclusiva sobre el futuro de Ancelotti. La exclusiva de Jugones sigue trayendo mucha cola y ha causado gran repercusión por lo medios de España. + Sports + Talk Show + + + + Total Sports 360 + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + TVPG + + + + Toluca vs. Santos Laguna + Santos Laguna vs. Toluca + Jornada 16 del Torneo Apertura 2023 de la Liga Mx. Santos Laguna recibe a Toluca en el Nuevo Estadio Corona. + Sports + Soccer + + + + Total Sports 360 + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + TVPG + + + + Punto final + Programa donde la pasión y la controversia reinan mientras se debaten los últimos hechos ocurridos en el fútbol mexicano, la Copa Mundial de la FIFA, la UEFA Champions League y todas las competencias más importantes a nivel mundial. + Sports + Soccer + + + + Total Sports 360 + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + TVPG + + + + Punto final + Programa donde la pasión y la controversia reinan mientras se debaten los últimos hechos ocurridos en el fútbol mexicano, la Copa Mundial de la FIFA, la UEFA Champions League y todas las competencias más importantes a nivel mundial. + Sports + Soccer + + + + Total Sports 360 + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + TVPG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Total Sports 360 + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + TVPG + + + + El chiringuito de jugones + Edu Aguirre sorprende a todos con una exclusiva sobre el futuro de Ancelotti. La exclusiva de Jugones sigue trayendo mucha cola y ha causado gran repercusión por lo medios de España. + Sports + Talk Show + + + + Punto final + Programa donde la pasión y la controversia reinan mientras se debaten los últimos hechos ocurridos en el fútbol mexicano, la Copa Mundial de la FIFA, la UEFA Champions League y todas las competencias más importantes a nivel mundial. + Sports + Soccer + + + + Total Sports 360 + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + TVPG + + + + Punto final + Programa donde la pasión y la controversia reinan mientras se debaten los últimos hechos ocurridos en el fútbol mexicano, la Copa Mundial de la FIFA, la UEFA Champions League y todas las competencias más importantes a nivel mundial. + Sports + Soccer + + + + Total Sports 360 + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + TVPG + + + + Gol x gol América + Especialistas de fútbol comentan sobre lo más destacado de los partidos y las noticias de las ligas de balompié de América. + Sports + Soccer + + + TVPG + + + + Punto final + Programa donde la pasión y la controversia reinan mientras se debaten los últimos hechos ocurridos en el fútbol mexicano, la Copa Mundial de la FIFA, la UEFA Champions League y todas las competencias más importantes a nivel mundial. + Sports + Soccer + + + + Brazil vs. Uruguay + Uruguay vs. Brasil + Uruguay recibe a Brasil en la Jornada 4 de la clasificación para el Mundial 2026. Tras igualar 1-1 con Venezuela, los brasileños están a 2 puntos de Argentina, que lidera la clasificación. Los uruguayos tienen 4 puntos tras empatar 2-2 con Colombia. + Sports + Soccer + + + + Total Sports 360 + Cobertura de las noticias del mundo deportivo. Información actualizada de lo que ocurre en los principales deportes a nivel mundial como NFL, NBA, MLB, Liga MX, MLS, ligas europeas de fútbol, boxeo, NASCAR, F1 y la Copa Mundial de la FIFA. + Sports + Miscellaneous + + + TVPG + + + + El chiringuito de jugones + Edu Aguirre sorprende a todos con una exclusiva sobre el futuro de Ancelotti. La exclusiva de Jugones sigue trayendo mucha cola y ha causado gran repercusión por lo medios de España. + Sports + Talk Show + + + + UCLA vs. Arizona + UCLA at Arizona + Freshman quarterback Noah Fifita and the surging Wildcats (5-3, 3-2 Pac-12) host the No. 19 Bruins (6-2, 3-2). Arizona comes off wins over Washington State and Oregon State. Fifita has thrown for 1,152 yards and 11 touchdowns in the last four games. + Sports + Football + + + TVG + + + + The Joel Klatt Show: Big Noon Conversations + Chip Kelly + Joel Klatt sits down to discuss the 2023 season with some of NCAA football's most prominent coaches and commissioners. + Sports + Football + + + TVPG + + + + The Joel Klatt Show: Big Noon Conversations + Brett Yormark + Joel Klatt sits down to discuss the 2023 season with some of NCAA football's most prominent coaches and commissioners. + Sports + Football + + + TVPG + + + + Kansas State vs. Texas + Kansas State at Texas + No. 7 Texas (7-1, 4-1 Big 12) seeks a seventh straight victory over No. 23 Kansas State (6-2, 4-1). Five of the six wins came by seven points or fewer. Kansas State has won three straight with the last two, TCU and Houston, by a combined 82-3 score. + Sports + Football + + + + Penn State vs. Maryland (College Park) + Penn State at Maryland + The No. 11 Nittany Lions (7-1, 4-1 Big Ten) try to resume their dominance of the Terrapins (5-3, 2-3). Penn State leads the series 42-3-1 after winning 30-0 in 2022. Maryland beat Penn State in two of the past nine meetings, most recently in 2020. + Sports + Football + + + + NASCAR Craftsman Truck Series + CRAFTSMAN 150 + The NASCAR Craftsman Truck Series season and Championship 4 concludes with the Craftsman 150. Carson Hocevar won in Miami to join Corey Heim, Ben Rhodes and Grant Enfinger as the drivers who will compete for the season-long crown in this race. + Sports + Auto Racing + + + + Motorcycle Racing + Fim World Supercross Championship: Abu Dhabi + Coverage of motorcycle racing action from around the world. + Sports + Motorcycle Racing + + + + NASCAR RaceDay + Phoenix + Behind the scenes and up-to-the minute reports from the garage prior to the start of each NASCAR Cup Series race. + Sports + Auto Racing + + + + Georgetown vs. Xavier + Big East Championship: Georgetown vs. Xavier + From Maryland SoccerPlex in Boyds, Md. + Sports + Soccer + + + + Horse Racing + America's Day At the Races + The best racehorses square off in the premiere races from across the country. + Sports + Horse Racing + + + TVPG + + + + NHRA in 30 + Top 5 Moments of 2023 Indy + Condensed versions of top NHRA drag racing events. + Sports + Auto Racing + + + TVPG + + + + NHRA in 30 + They Walked Away 6 + Condensed versions of top NHRA drag racing events. + Sports + Auto Racing + + + TVPG + + + + Motorcycle Racing + Fim World Supercross Championship: Abu Dhabi + Coverage of motorcycle racing action from around the world. + Sports + Motorcycle Racing + + + + Los Angeles FC vs. Vancouver Whitecaps + Los Angeles FC at Vancouver Whitecaps FC + Dénis Bouanga and No. 3 seed LAFC seek a sweep of No. 6 Whitecaps FC in their first-round playoff series. Bouanga, who won the MLS Golden Boot with 20 goals, recorded a brace in a 5-2 victory in Game 1. Ryan Hollingshead also scored twice for LAFC. + Sports + Soccer + + + + Texas Rangers vs. Arizona Diamondbacks + Texas Rangers at Arizona Diamondbacks + The Rangers try to close out the Diamondbacks in Game 5 of the World Series. Texas can clinch the first title in its 63-year history following an 11-7 Game 4 triumph. Texas' Marcus Semien had five RBIs, while Corey Seager hit his third Series homer. + Sports + Baseball + + + + Penn State vs. Maryland (College Park) + Penn State at Maryland + The No. 11 Nittany Lions (7-1, 4-1 Big Ten) try to resume their dominance of the Terrapins (5-3, 2-3). Penn State leads the series 42-3-1 after winning 30-0 in 2022. Maryland beat Penn State in two of the past nine meetings, most recently in 2020. + Sports + Football + + + + Kansas State vs. Texas + Kansas State at Texas + No. 7 Texas (7-1, 4-1 Big 12) seeks a seventh straight victory over No. 23 Kansas State (6-2, 4-1). Five of the six wins came by seven points or fewer. Kansas State has won three straight with the last two, TCU and Houston, by a combined 82-3 score. + Sports + Football + + + + The Carton Show + Craig Carton, one of New York's best-known voices, analyzes and debates the biggest headlines in sports each morning. + Sports + Talk Show + + + + Undisputed + A daily sports talk show hosted by Skip Bayless, where each day Skip is joined by a cast of NFL legends for passionate conversations about the biggest sports topics of the day. + Sports + Talk Show + + + + The Herd with Colin Cowherd + Colin Cowherd and co-host Jason McIntyre break down the biggest stories and interview the biggest guests in sports. + Sports + Talk Show + + + + First Things First + Nick Wright, Chris Broussard and Kevin Wildes explore and energetically advance the biggest stories in sports to start the day. + Sports + Talk Show + + + + Speak + Opinions and predictions for happenings in the NFL. + Sports + Talk Show + + + + NASCAR Race Hub + Highlights, news, opinion, and a heavy dose of unexpected fun from the always-rocking world of NASCAR. + Sports + Auto Racing + + + + Big East Opening Night Tip-Off + Basketball action from the opening night of the Big East. + Sports + Basketball + + + + Cal State - Fullerton vs. San Diego State + Cal State Fullerton at San Diego State + The No. 17 Aztecs hope to start another long run as they host the Titans. San Diego State lost to UConn 76-59 in the 2023 national title game. The Aztecs won 32 games last season, second-most in school history to the Kawhi Leonard-led 34 in 2010-11. + Sports + Basketball + + + + Kansas State vs. Texas + Kansas State at Texas + No. 7 Texas (7-1, 4-1 Big 12) seeks a seventh straight victory over No. 23 Kansas State (6-2, 4-1). Five of the six wins came by seven points or fewer. Kansas State has won three straight with the last two, TCU and Houston, by a combined 82-3 score. + Sports + Football + + + + Kansas State vs. Texas + Kansas State at Texas + No. 7 Texas (7-1, 4-1 Big 12) seeks a seventh straight victory over No. 23 Kansas State (6-2, 4-1). Five of the six wins came by seven points or fewer. Kansas State has won three straight with the last two, TCU and Houston, by a combined 82-3 score. + Sports + Football + + + + TMZ Sports + Gossip and exclusive stories about athletes' personal lives. + Sports + + + TV14 + + + + Cal State - Fullerton vs. San Diego State + Cal State Fullerton at San Diego State + The No. 17 Aztecs hope to start another long run as they host the Titans. San Diego State lost to UConn 76-59 in the 2023 national title game. The Aztecs won 32 games last season, second-most in school history to the Kawhi Leonard-led 34 in 2010-11. + Sports + Basketball + + + + First Things First + Nick Wright, Chris Broussard and Kevin Wildes explore and energetically advance the biggest stories in sports to start the day. + Sports + Talk Show + + + + The Carton Show + Craig Carton, one of New York's best-known voices, analyzes and debates the biggest headlines in sports each morning. + Sports + Talk Show + + + + Undisputed + A daily sports talk show hosted by Skip Bayless, where each day Skip is joined by a cast of NFL legends for passionate conversations about the biggest sports topics of the day. + Sports + Talk Show + + + + The Herd with Colin Cowherd + Colin Cowherd and co-host Jason McIntyre break down the biggest stories and interview the biggest guests in sports. + Sports + Talk Show + + + + First Things First + Nick Wright, Chris Broussard and Kevin Wildes explore and energetically advance the biggest stories in sports to start the day. + Sports + Talk Show + + + + Speak + Opinions and predictions for happenings in the NFL. + Sports + Talk Show + + + + NASCAR Race Hub + Highlights, news, opinion, and a heavy dose of unexpected fun from the always-rocking world of NASCAR. + Sports + Auto Racing + + + + Stony Brook vs. St. John's + Stony Brook at St. John's + From Carnesecca Arena in Queens, N.Y. + Sports + Basketball + + + + Florida A&M vs. Creighton + Florida A&M at Creighton + From CHI Health Center in Omaha, Neb. + Sports + Basketball + + + + Penn State vs. Maryland (College Park) + Penn State at Maryland + The No. 11 Nittany Lions (7-1, 4-1 Big Ten) try to resume their dominance of the Terrapins (5-3, 2-3). Penn State leads the series 42-3-1 after winning 30-0 in 2022. Maryland beat Penn State in two of the past nine meetings, most recently in 2020. + Sports + Football + + + + Penn State vs. Maryland (College Park) + Penn State at Maryland + The No. 11 Nittany Lions (7-1, 4-1 Big Ten) try to resume their dominance of the Terrapins (5-3, 2-3). Penn State leads the series 42-3-1 after winning 30-0 in 2022. Maryland beat Penn State in two of the past nine meetings, most recently in 2020. + Sports + Football + + + + Florida A&M vs. Creighton + Florida A&M at Creighton + From CHI Health Center in Omaha, Neb. + Sports + Basketball + + + + Stony Brook vs. St. John's + Stony Brook at St. John's + From Carnesecca Arena in Queens, N.Y. + Sports + Basketball + + + + Undisputed + A daily sports talk show hosted by Skip Bayless, where each day Skip is joined by a cast of NFL legends for passionate conversations about the biggest sports topics of the day. + Sports + Talk Show + + + + The Carton Show + Craig Carton, one of New York's best-known voices, analyzes and debates the biggest headlines in sports each morning. + Sports + Talk Show + + + + Undisputed + A daily sports talk show hosted by Skip Bayless, where each day Skip is joined by a cast of NFL legends for passionate conversations about the biggest sports topics of the day. + Sports + Talk Show + + + + The Herd with Colin Cowherd + Colin Cowherd and co-host Jason McIntyre break down the biggest stories and interview the biggest guests in sports. + Sports + Talk Show + + + + First Things First + Nick Wright, Chris Broussard and Kevin Wildes explore and energetically advance the biggest stories in sports to start the day. + Sports + Talk Show + + + + Speak + Opinions and predictions for happenings in the NFL. + Sports + Talk Show + + + + NASCAR Race Hub + Highlights, news, opinion, and a heavy dose of unexpected fun from the always-rocking world of NASCAR. + Sports + Auto Racing + + + + NHRA Sportsman Series + Charlotte + NHRA Lucas Oil Sportsman Series racers battle it out in a variety of classes. 1/4 mile passes range from 5 seconds in Top Alcohol to 15 seconds in the Stock class. + Sports + Auto Racing + + + + NHRA Drag Racing + Sportsman Series: Dallas + NHRA Lucas Oil Sportsman Series racers battle it out in a variety of classes. 1/4 mile passes range from 5 seconds in Top Alcohol to 15 seconds in the Stock class. + Sports + Auto Racing + + + + WWE Friday Night SmackDown + The Superstars of World Wrestling Entertainment do battle in elaborate, long-running rivalries in a weekly two-hour showdown. + Sports + Wrestling + + + TVPG + + + + Richmond Tigers vs. Collingwood Magpies + Collingwood Magpies vs. Richmond Tigers + From Olympic Park Oval in Melbourne, Victoria, Australia. + Sports + Australian Rules Football + + + + Sydney Swans vs. Fremantle Dockers + Fremantle Dockers vs. Sydney Swans + Coverage of women's Australian rules football. + Sports + Australian Rules Football + + + + European Poker Tour + Barcelona 10 + European Poker Tour coverage. + Sports + Cards + + + + NHRA Sportsman Series + Charlotte + NHRA Lucas Oil Sportsman Series racers battle it out in a variety of classes. 1/4 mile passes range from 5 seconds in Top Alcohol to 15 seconds in the Stock class. + Sports + Auto Racing + + + + NHRA Drag Racing + Sportsman Series: Dallas + NHRA Lucas Oil Sportsman Series racers battle it out in a variety of classes. 1/4 mile passes range from 5 seconds in Top Alcohol to 15 seconds in the Stock class. + Sports + Auto Racing + + + + Bassmaster Fishing Elite Series + College Bracket Championship + Competition from the highest level of professional bass fishing tournaments. + Sports + Fishing + + + + Bassmaster Fishing Elite Series + Century Club Show + Competition from the highest level of professional bass fishing tournaments. + Sports + Fishing + + + + Kansas State vs. Texas + Kansas State at Texas + No. 7 Texas (7-1, 4-1 Big 12) seeks a seventh straight victory over No. 23 Kansas State (6-2, 4-1). Five of the six wins came by seven points or fewer. Kansas State has won three straight with the last two, TCU and Houston, by a combined 82-3 score. + Sports + Football + + + + The Joel Klatt Show: Big Noon Conversations + Brett Yormark + Joel Klatt sits down to discuss the 2023 season with some of NCAA football's most prominent coaches and commissioners. + Sports + Football + + + TVPG + + + + PBA Bowling + Strike Derby + Action from the PBA bowling tour. + Sports + Bowling + + + + Horse Racing + America's Day At the Races + The best racehorses square off in the premiere races from across the country. + Sports + Horse Racing + + + TVPG + + + + The Climbing Post + IFSC European Qualifier - Rome (ITA) - Speed + Speed climbing highlights from Rome. + Sports + Outdoors + + + + The Climbing Post + IFSC World Cup - Wujiang (CHN) - Lead, Speed + Action from lead and speed climbing from Wujiang, China. + Sports + Outdoors + + + + Academy Dreams: Leeds United + Frustrations + A unique insight into the training center of Premier League club Leeds United. + Sports + Soccer + + + + Academy Dreams: Leeds United + Fight Back + A unique insight into the training center of Premier League club Leeds United. + Sports + Soccer + + + + Georgetown vs. Xavier + Big East Championship: Georgetown vs. Xavier + From Maryland SoccerPlex in Boyds, Md. + Sports + Soccer + + + + Los Angeles FC vs. Vancouver Whitecaps + Vancouver Whitecaps FC vs. Los Angeles FC + Juego 2 en la Conferencia del Oeste de la primera ronda de eliminación. Los Angeles FC busca retener su título y avanzar para otro campeonato consecutivo ante Vancouver Whitecaps. Desde el Estadio BC Place. + Sports + Soccer + + + + 2022 CONCACAF Champions League: Seattle's Road to Glory + The Sounders become the first MLS club to win the CONCACAF Champions League with an incredible run to claim their first intercontinental title. + + Tom Hanks + + Specials + Sports + + + + Academy Dreams: Leeds United + All Change + A unique insight into the training center of Premier League club Leeds United. + Sports + Soccer + + + + Motorcycle Racing + Fim World Supercross Championship: Abu Dhabi + Coverage of motorcycle racing action from around the world. + Sports + Motorcycle Racing + + + + Gold Cup 2023 - The Stories Of + Behind-the-scenes stories from the 2023 Gold Cup. + Sports + Soccer + + + + Querétaro vs. Juárez + Juárez vs. Querétaro + From Olimpico Benito Juarez in Ciudad Juárez, Chihuahua, Mexico. + Sports + Soccer + + + + Motorcycle Racing + American Flat Track: Springfield Mile I + Coverage of motorcycle racing action from around the world. + Sports + Motorcycle Racing + + + + Motorcycle Racing + American Flat Track: Springfield Mile II + Coverage of motorcycle racing action from around the world. + Sports + Motorcycle Racing + + + + Penn State vs. Maryland (College Park) + Penn State at Maryland + The No. 11 Nittany Lions (7-1, 4-1 Big Ten) try to resume their dominance of the Terrapins (5-3, 2-3). Penn State leads the series 42-3-1 after winning 30-0 in 2022. Maryland beat Penn State in two of the past nine meetings, most recently in 2020. + Sports + Football + + + + Kansas State vs. Texas + Kansas State at Texas + No. 7 Texas (7-1, 4-1 Big 12) seeks a seventh straight victory over No. 23 Kansas State (6-2, 4-1). Five of the six wins came by seven points or fewer. Kansas State has won three straight with the last two, TCU and Houston, by a combined 82-3 score. + Sports + Football + + + + UCLA vs. Arizona + UCLA at Arizona + Freshman quarterback Noah Fifita and the surging Wildcats (5-3, 3-2 Pac-12) host the No. 19 Bruins (6-2, 3-2). Arizona comes off wins over Washington State and Oregon State. Fifita has thrown for 1,152 yards and 11 touchdowns in the last four games. + Sports + Football + + + TVG + + + + The Perfect 10 + The 10 legendary football icons who have achieved one of the rarest dual accomplishments -- winning the coveted Heisman Trophy and being enshrined in the Pro Football Hall of Fame. + Sports + Talk Show + + + TVPG + + + + Kansas State vs. Texas + Kansas State at Texas + No. 7 Texas (7-1, 4-1 Big 12) seeks a seventh straight victory over No. 23 Kansas State (6-2, 4-1). Five of the six wins came by seven points or fewer. Kansas State has won three straight with the last two, TCU and Houston, by a combined 82-3 score. + Sports + Football + + + + Georgetown vs. Xavier + Big East Championship: Georgetown vs. Xavier + From Maryland SoccerPlex in Boyds, Md. + Sports + Soccer + + + + Querétaro vs. Juárez + Juárez vs. Querétaro + From Olimpico Benito Juarez in Ciudad Juárez, Chihuahua, Mexico. + Sports + Soccer + + + + Horse Racing + Melbourne Cup + Following all the action from the world of horse racing. + Sports + Horse Racing + + + TVPG + + + + NASCAR Craftsman Truck Series + CRAFTSMAN 150 + The NASCAR Craftsman Truck Series season and Championship 4 concludes with the Craftsman 150. Carson Hocevar won in Miami to join Corey Heim, Ben Rhodes and Grant Enfinger as the drivers who will compete for the season-long crown in this race. + Sports + Auto Racing + + + + NASCAR Craftsman Truck Series + CRAFTSMAN 150 + The NASCAR Craftsman Truck Series season and Championship 4 concludes with the Craftsman 150. Carson Hocevar won in Miami to join Corey Heim, Ben Rhodes and Grant Enfinger as the drivers who will compete for the season-long crown in this race. + Sports + Auto Racing + + + + NASCAR Race Hub + The Love of Racing + Highlights, news, opinion, and a heavy dose of unexpected fun from the always-rocking world of NASCAR. + Sports + Auto Racing + + + + PBA Bowling + Tournament of Champions, Finals + From Fairlawn, Ohio. + Sports + Bowling + + + + PBA Bowling + USBC Masters, Finals + From Detroit. + Sports + Bowling + + + + PBA Bowling + WSOB XIV World Championship, Finals + EJ Tackett meets Anthony Simonsen in the WSOB XIV World Championship Finals. Tackett, a 20-time PBA Tour winner, seeks his fifth victory and second major title this season. From Milwaukee. + Sports + Bowling + + + + Motorcycle Racing + Fim World Supercross Championship: Abu Dhabi + Coverage of motorcycle racing action from around the world. + Sports + Motorcycle Racing + + + + NASCAR Craftsman Truck Series + CRAFTSMAN 150 + The NASCAR Craftsman Truck Series season and Championship 4 concludes with the Craftsman 150. Carson Hocevar won in Miami to join Corey Heim, Ben Rhodes and Grant Enfinger as the drivers who will compete for the season-long crown in this race. + Sports + Auto Racing + + + + BYU vs. West Virginia + BYU at West Virginia + The Cougars (5-3, 2-3 Big 12) try to draw even with the Mountaineers (5-3, 3-2). West Virginia stopped a two-game slide with a 41-28 decision at UCF on Oct. 28. CJ Donaldson Jr. (WVU) ran for 121 yards and scored in a sixth straight game in that win. + Sports + Football + + + + UCLA vs. Arizona + UCLA at Arizona + Freshman quarterback Noah Fifita and the surging Wildcats (5-3, 3-2 Pac-12) host the No. 19 Bruins (6-2, 3-2). Arizona comes off wins over Washington State and Oregon State. Fifita has thrown for 1,152 yards and 11 touchdowns in the last four games. + Sports + Football + + + TVG + + + + Kansas State vs. Texas + Kansas State at Texas + No. 7 Texas (7-1, 4-1 Big 12) seeks a seventh straight victory over No. 23 Kansas State (6-2, 4-1). Five of the six wins came by seven points or fewer. Kansas State has won three straight with the last two, TCU and Houston, by a combined 82-3 score. + Sports + Football + + + + Le Moyne College vs. Georgetown + Le Moyne at Georgetown + From Capital One Arena in Washington, D.C. + Sports + Basketball + + + + Purdue Fort Wayne vs. DePaul + Purdue Fort Wayne at DePaul + From Wintrust Arena in Chicago. + Sports + Basketball + + + + Saudi Pro League Magazine + Matchday 12 + A roundup of soccer action from the Saudi Pro League. + Sports + Soccer + + + + TMZ Sports + Gossip and exclusive stories about athletes' personal lives. + Sports + + + TV14 + + + + Stony Brook vs. St. John's + Stony Brook at St. John's + From Carnesecca Arena in Queens, N.Y. + Sports + Basketball + + + + Stony Brook vs. St. John's + Stony Brook at St. John's + From Carnesecca Arena in Queens, N.Y. + Sports + Basketball + + + + Kansas State vs. Texas + Kansas State at Texas + No. 7 Texas (7-1, 4-1 Big 12) seeks a seventh straight victory over No. 23 Kansas State (6-2, 4-1). Five of the six wins came by seven points or fewer. Kansas State has won three straight with the last two, TCU and Houston, by a combined 82-3 score. + Sports + Football + + + + The Great Brady Heist + Chronicling the disappearance of Tom Brady's jersey following the New England Patriots' improbable Super Bowl LI comeback win over the Atlanta Falcons. + + Tom Brady + + Sports + Football + + + + BYU vs. West Virginia + BYU at West Virginia + The Cougars (5-3, 2-3 Big 12) try to draw even with the Mountaineers (5-3, 3-2). West Virginia stopped a two-game slide with a 41-28 decision at UCF on Oct. 28. CJ Donaldson Jr. (WVU) ran for 121 yards and scored in a sixth straight game in that win. + Sports + Football + + + + UCLA vs. Arizona + UCLA at Arizona + Freshman quarterback Noah Fifita and the surging Wildcats (5-3, 3-2 Pac-12) host the No. 19 Bruins (6-2, 3-2). Arizona comes off wins over Washington State and Oregon State. Fifita has thrown for 1,152 yards and 11 touchdowns in the last four games. + Sports + Football + + + TVG + + + + PBA Bowling + U.S. Open, Finals + From Indianapolis. + Sports + Bowling + + + + PBA Bowling + Players Championship, Finals + Players compete in the final to claim the Players Championship crown. From North Brunswick, N.J. + Sports + Bowling + + + + Le Moyne College vs. Georgetown + Le Moyne at Georgetown + From Capital One Arena in Washington, D.C. + Sports + Basketball + + + + Purdue Fort Wayne vs. DePaul + Purdue Fort Wayne at DePaul + From Wintrust Arena in Chicago. + Sports + Basketball + + + + Back To Natural + Looking at how race, identity and hair are all related and offering a compassionate viewpoint on issues that impact African descendants' sense of self and the often unknown barriers society places on their ability to just exist. (repeat). + 2022 + Documentary + + + Racially Charged + America's Misdemeanor Problem exposes how the country's history of racial injustice evolved into an enormous abuse of criminal justice power impacting 13 million people a year, most of them poor and people of color. (repeat). + 2022 + Documentary + + + Gaslit + A modern take on the 1970s Watergate scandal, centering on untold stories and forgotten characters. + + Mac Quayle + Matt Rossi + Matt Ross + Sam Esmail + + Drama + + + TV-MA + + + + The David Pakman Show + A discussion of topical issues. + + David Pakman + + Talk & Interview + + TV-PG + + + + Gay USA + Gay USA is a weekly one-hour news program "...devoted to in-depth coverage of gay, lesbian, bisexual, and transgender issues" on a local, state, national, and international level. It is filmed in the studios of, and aired by, Manhattan Neighborhood Network in Manhattan, New York. It airs on Manhattan Public-access television cable TV and Free Speech TV, and is available worldwide as a podcast at gayusatv.org or to subscribe via iTunes. + + TV-PG + + + + This Week In White Supremacy + Discussing the cultural effects and weekly injustices surrounding white supremacy. Through intelligent, insightful and often comedic commentary, we engage adults who want to digest the news cycle with humor and Hip-Hop. + + + Break Through News + Eugene Puryear and Rania Khalek cover US and global politics to provide news and information for self-determination. + + + We Are One + A look at how Earth is an organic ecosystem of systems that work together for the health of the whole. (repeat). + 2021 + Documentary + Health & Lifestyle + + + We Are One + A look at how Earth is an organic ecosystem of systems that work together for the health of the whole. (repeat). + 2021 + Documentary + Health & Lifestyle + + + The Rights Of Nature: A Global Movement + As pressures on ecosystems mount, communities around the world are turning to a new legal strategy known as The Rights of Nature. (repeat). + 2021 + Documentary + + + When Liberty Burns + Arthur L. McDuffie is spotlighted. (repeat). + + Dudley Alexis + Femi Folami-Browne + + 2020 + Documentary + + + Zero Hour With RJ Eskow + News, analysis and interviews on politics, pop culture, futurism, technology and music. + Music + Talk & Interview + Tech & Gaming + + TV-PG + + + + Gay USA + Gay USA is a weekly one-hour news program "...devoted to in-depth coverage of gay, lesbian, bisexual, and transgender issues" on a local, state, national, and international level. It is filmed in the studios of, and aired by, Manhattan Neighborhood Network in Manhattan, New York. It airs on Manhattan Public-access television cable TV and Free Speech TV, and is available worldwide as a podcast at gayusatv.org or to subscribe via iTunes. + + TV-PG + + + + This Week In White Supremacy + Discussing the cultural effects and weekly injustices surrounding white supremacy. Through intelligent, insightful and often comedic commentary, we engage adults who want to digest the news cycle with humor and Hip-Hop. + + + Break Through News + Eugene Puryear and Rania Khalek cover US and global politics to provide news and information for self-determination. + + + Democracy Vs. The Big Lie: The Truth Behind Mail-In Voting + How Colorado led the way in secure voting by mail and how President Trump attacked that system before and after the 2020 election. (repeat). + 2022 + Documentary + + + Powerlands + Revealing a sobering story of environmental and cultural crisis on Indigenous lands. The real cost of Indigenous lands exploitation. Highlighting the struggle Indigenous communities face. (repeat). + + Camille Muchas Cuentas Tso + + 2022 + Documentary + + + They Call Me Zarko + The story of Ghazaros Demirdjian, the son of displaced Armenian immigrants who had escaped the genocide. He was imprisoned in Iraq and Iran and ultimately came to the USA where he achieved the American Dream. (repeat). + 2022 + Documentary + + + Inequality Media + Wealth Inequality. (repeat). + 2022 + Variety Shows + + + Gaslit + A modern take on the 1970s Watergate scandal, centering on untold stories and forgotten characters. + + Mac Quayle + Matt Rossi + Matt Ross + Sam Esmail + + Drama + + + TV-MA + + + + Gay USA + Gay USA is a weekly one-hour news program "...devoted to in-depth coverage of gay, lesbian, bisexual, and transgender issues" on a local, state, national, and international level. It is filmed in the studios of, and aired by, Manhattan Neighborhood Network in Manhattan, New York. It airs on Manhattan Public-access television cable TV and Free Speech TV, and is available worldwide as a podcast at gayusatv.org or to subscribe via iTunes. + + TV-PG + + + + Back To Natural + Looking at how race, identity and hair are all related and offering a compassionate viewpoint on issues that impact African descendants' sense of self and the often unknown barriers society places on their ability to just exist. (repeat). + 2022 + Documentary + + + Democracy Vs. The Big Lie: The Truth Behind Mail-In Voting + How Colorado led the way in secure voting by mail and how President Trump attacked that system before and after the 2020 election. (repeat). + 2022 + Documentary + + + Racially Charged + America's Misdemeanor Problem exposes how the country's history of racial injustice evolved into an enormous abuse of criminal justice power impacting 13 million people a year, most of them poor and people of color. (repeat). + 2022 + Documentary + + + The Rights Of Nature: A Global Movement + As pressures on ecosystems mount, communities around the world are turning to a new legal strategy known as The Rights of Nature. (repeat). + 2021 + Documentary + + + Gaslit + A modern take on the 1970s Watergate scandal, centering on untold stories and forgotten characters. + + Mac Quayle + Matt Rossi + Matt Ross + Sam Esmail + + Drama + + + TV-MA + + + + Gay USA + Gay USA is a weekly one-hour news program "...devoted to in-depth coverage of gay, lesbian, bisexual, and transgender issues" on a local, state, national, and international level. It is filmed in the studios of, and aired by, Manhattan Neighborhood Network in Manhattan, New York. It airs on Manhattan Public-access television cable TV and Free Speech TV, and is available worldwide as a podcast at gayusatv.org or to subscribe via iTunes. + + TV-PG + + + + Powerlands + Revealing a sobering story of environmental and cultural crisis on Indigenous lands. The real cost of Indigenous lands exploitation. Highlighting the struggle Indigenous communities face. (repeat). + + Camille Muchas Cuentas Tso + + 2022 + Documentary + + + The Great Postal Heist + Jay Galione, the son of a postal clerk, investigates the dark corners of the US Postal Service. Across the country, brave employees stand up to injustice on the job and fight to Save the People's Post Office. (repeat). + + Jay Galione + + 2022 + Documentary + + + We Are One + A look at how Earth is an organic ecosystem of systems that work together for the health of the whole. (repeat). + 2021 + Documentary + Health & Lifestyle + + + The Rights Of Nature: A Global Movement + As pressures on ecosystems mount, communities around the world are turning to a new legal strategy known as The Rights of Nature. (repeat). + 2021 + Documentary + + + We Are One + A look at how Earth is an organic ecosystem of systems that work together for the health of the whole. (repeat). + 2021 + Documentary + Health & Lifestyle + + + France 24 + A French newscast. + + TV-PG + + + + We Are One + A look at how Earth is an organic ecosystem of systems that work together for the health of the whole. (repeat). + 2021 + Documentary + Health & Lifestyle + + + The Rights Of Nature: A Global Movement + As pressures on ecosystems mount, communities around the world are turning to a new legal strategy known as The Rights of Nature. (repeat). + 2021 + Documentary + + + When Liberty Burns + Arthur L. McDuffie is spotlighted. (repeat). + + Dudley Alexis + Femi Folami-Browne + + 2020 + Documentary + + + Racially Charged + America's Misdemeanor Problem exposes how the country's history of racial injustice evolved into an enormous abuse of criminal justice power impacting 13 million people a year, most of them poor and people of color. (repeat). + 2022 + Documentary + + + Inequality Media + Wealth Inequality. (repeat). + 2022 + Variety Shows + + + Democracy Now! + A daily news program. (new). + Talk & Interview + + + The Stephanie Miller Show + Humor is mixed with politics in this simulcast of Stephanie Miller's radio show. + + TV-PG + + + + The Thom Hartmann Program + Topical issues are discussed. (new). + + TV-PG + + + + The Randi Rhodes Show + A fact-checked, progressive talk show hosted by Randi Rhodes. + Talk & Interview + + + The Randi Rhodes Show + A fact-checked, progressive talk show hosted by Randi Rhodes. + Talk & Interview + + + Democracy Now! + A daily news program. (new). + Talk & Interview + + + This Week In White Supremacy + Discussing the cultural effects and weekly injustices surrounding white supremacy. Through intelligent, insightful and often comedic commentary, we engage adults who want to digest the news cycle with humor and Hip-Hop. + + + Break Through News + Eugene Puryear and Rania Khalek cover US and global politics to provide news and information for self-determination. + + + Zero Hour With RJ Eskow + News, analysis and interviews on politics, pop culture, futurism, technology and music. + Music + Talk & Interview + Tech & Gaming + + TV-PG + + + + The Rick Smith Show + Rick talks taxes and congressional testimony on raising the minimum wage, then speaks to Rudy Fichtenbaum of the American Assn. of University Professors about the historic strike that just ended at Wright State University. + + TV-PG + + + + Indian Country Today + The stories of indigenous communities as told by indigenous journalists are featured. + 2021 + + + The David Pakman Show + A discussion of topical issues. + + David Pakman + + Talk & Interview + + TV-PG + + + + Bioneers 2022: A Window Through + Food activist Karen Washington shares why the food system needs to be transformed and the need for an equitable food system through radical new thinking. (repeat). + Talk & Interview + + + Bioneers 2022: A Window Through + Food activist Karen Washington shares why the food system needs to be transformed and the need for an equitable food system through radical new thinking. (repeat). + Talk & Interview + + + Democracy Now! + A daily news program. (new). + Talk & Interview + + + Mobilized News + Dr. Rob Moir of the Ocean River Institute speaks about understanding the biology of the planetary systems including how photosynthesis draws down CO2 from the atmosphere. + + + The Rick Smith Show + Rick talks taxes and congressional testimony on raising the minimum wage, then speaks to Rudy Fichtenbaum of the American Assn. of University Professors about the historic strike that just ended at Wright State University. + + TV-PG + + + + France 24 + A French newscast. + + TV-PG + + + + Zero Hour With RJ Eskow + News, analysis and interviews on politics, pop culture, futurism, technology and music. + Music + Talk & Interview + Tech & Gaming + + TV-PG + + + + Democracy Vs. The Big Lie: The Truth Behind Mail-In Voting + How Colorado led the way in secure voting by mail and how President Trump attacked that system before and after the 2020 election. (repeat). + 2022 + Documentary + + + Racially Charged + America's Misdemeanor Problem exposes how the country's history of racial injustice evolved into an enormous abuse of criminal justice power impacting 13 million people a year, most of them poor and people of color. (repeat). + 2022 + Documentary + + + Inequality Media + Wealth Inequality. (repeat). + 2022 + Variety Shows + + + The Rick Smith Show + Rick talks taxes and congressional testimony on raising the minimum wage, then speaks to Rudy Fichtenbaum of the American Assn. of University Professors about the historic strike that just ended at Wright State University. + + TV-PG + + + + Indian Country Today + The stories of indigenous communities as told by indigenous journalists are featured. + 2021 + + + The David Pakman Show + A discussion of topical issues. + + David Pakman + + Talk & Interview + + TV-PG + + + + Democracy Now! + A daily news program. (new). + Talk & Interview + + + The Stephanie Miller Show + Humor is mixed with politics in this simulcast of Stephanie Miller's radio show. + + TV-PG + + + + The Thom Hartmann Program + Topical issues are discussed. (new). + + TV-PG + + + + The Randi Rhodes Show + A fact-checked, progressive talk show hosted by Randi Rhodes. + Talk & Interview + + + The Randi Rhodes Show + A fact-checked, progressive talk show hosted by Randi Rhodes. + Talk & Interview + + + Democracy Now! + A daily news program. (new). + Talk & Interview + + + Democracy Vs. The Big Lie: The Truth Behind Mail-In Voting + How Colorado led the way in secure voting by mail and how President Trump attacked that system before and after the 2020 election. (repeat). + 2022 + Documentary + + + The Rights Of Nature: A Global Movement + As pressures on ecosystems mount, communities around the world are turning to a new legal strategy known as The Rights of Nature. (repeat). + 2021 + Documentary + + + Break Through News + Eugene Puryear and Rania Khalek cover US and global politics to provide news and information for self-determination. + + + The Rick Smith Show + Rick talks taxes and congressional testimony on raising the minimum wage, then speaks to Rudy Fichtenbaum of the American Assn. of University Professors about the historic strike that just ended at Wright State University. + + TV-PG + + + + Indian Country Today + The stories of indigenous communities as told by indigenous journalists are featured. + 2021 + + + The David Pakman Show + A discussion of topical issues. + + David Pakman + + Talk & Interview + + TV-PG + + + + Racially Charged + America's Misdemeanor Problem exposes how the country's history of racial injustice evolved into an enormous abuse of criminal justice power impacting 13 million people a year, most of them poor and people of color. (repeat). + 2022 + Documentary + + + Inequality Media Presents + Solana Change the System. (repeat). + 2023 + Educational + Tech & Gaming + + + Democracy Now! + A daily news program. (new). + Talk & Interview + + + Mobilized News + Dr. Rob Moir of the Ocean River Institute speaks about understanding the biology of the planetary systems including how photosynthesis draws down CO2 from the atmosphere. + + + The Rick Smith Show + Rick talks taxes and congressional testimony on raising the minimum wage, then speaks to Rudy Fichtenbaum of the American Assn. of University Professors about the historic strike that just ended at Wright State University. + + TV-PG + + + + France 24 + A French newscast. + + TV-PG + + + + Powerlands + Revealing a sobering story of environmental and cultural crisis on Indigenous lands. The real cost of Indigenous lands exploitation. Highlighting the struggle Indigenous communities face. (repeat). + + Camille Muchas Cuentas Tso + + 2022 + Documentary + + + They Call Me Zarko + The story of Ghazaros Demirdjian, the son of displaced Armenian immigrants who had escaped the genocide. He was imprisoned in Iraq and Iran and ultimately came to the USA where he achieved the American Dream. (repeat). + 2022 + Documentary + + + Bioneers 2022: A Window Through + Food activist Karen Washington shares why the food system needs to be transformed and the need for an equitable food system through radical new thinking. (repeat). + Talk & Interview + + + The Rick Smith Show + Rick talks taxes and congressional testimony on raising the minimum wage, then speaks to Rudy Fichtenbaum of the American Assn. of University Professors about the historic strike that just ended at Wright State University. + + TV-PG + + + + Indian Country Today + The stories of indigenous communities as told by indigenous journalists are featured. + 2021 + + + The David Pakman Show + A discussion of topical issues. + + David Pakman + + Talk & Interview + + TV-PG + + + + Democracy Now! + A daily news program. (new). + Talk & Interview + + + The Stephanie Miller Show + Humor is mixed with politics in this simulcast of Stephanie Miller's radio show. + + TV-PG + + + + The Thom Hartmann Program + Topical issues are discussed. (new). + + TV-PG + + + + The Randi Rhodes Show + A fact-checked, progressive talk show hosted by Randi Rhodes. + Talk & Interview + + + The Randi Rhodes Show + A fact-checked, progressive talk show hosted by Randi Rhodes. + Talk & Interview + + + Democracy Now! + A daily news program. (new). + Talk & Interview + + + Feminism Today + Esther Duflo talks about reducing global poverty and the range of interventions. + + + Racially Charged + America's Misdemeanor Problem exposes how the country's history of racial injustice evolved into an enormous abuse of criminal justice power impacting 13 million people a year, most of them poor and people of color. (repeat). + 2022 + Documentary + + + Moana + A once-mighty demigod (Dwayne Johnson) and a spirited teenager (Auli'i Cravalho) embark on an epic adventure across the ocean. + + Dwayne Johnson + Auli'i Cravalho + Rachel House + + 2016 + Movies + Animated + + + TVG + + + 3 + + + + Mulan + To save her ailing father from serving in the Imperial Army, a fearless young woman disguises herself as a man to battle northern invaders in China. + + Crystal Liu + Donnie Yen + Jason Scott Lee + + 2020 + Movies + Adventure + + + TVG + + + 2 + + + + The Princess Bride + A storybook stableboy turns pirate (Cary Elwes) and rescues his beloved (Robin Wright), who is about to marry a dreadful prince. + + Cary Elwes + Robin Wright + Mandy Patinkin + + 1987 + Movies + Children + + + TVG + + + 3 + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Under Eye Bags? SOLUTION! + Plexaderm helps reduce Under Eye Bags, Dark Circles, and Wrinkles in just 10 minutes! + Paid Program + Lifestyle + + + + Coin Collecting with Mike Mezack + Learn about the wonderful world of numismatics with your host Mike Mezack and get the opportunity to build your own collection with some of the best deals around! + Paid Program + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Meet the Robinsons + A mysterious time-traveler named Wilbur Robinson takes a boy genius on a trip to the future to spend a day with Wilbur's eccentric family. + + Angela Bassett + Daniel Hansen + Tom Selleck + + 2007 + Movies + Animated + + + TVG + + + 3 + + + + Tarzan + A man raised by apes in the African jungle encounters a professor, his daughter and a suspicious hunter. + + Tony Goldwyn + Glenn Close + Minnie Driver + + 1999 + Movies + Animated + + + TVG + + + 3 + + + + Tangled + Crowned with 70 feet of magical golden hair, Rapunzel (Mandy Moore) strikes a deal with a charming thief (Zachary Levi) to spring her from her prison tower. + + Mandy Moore + Zachary Levi + Donna Murphy + + 2010 + Movies + Animated + + + TVG + + + 3 + + + + Brave + A courageous Scottish princess (Kelly Macdonald) must figure out how to undo a beastly curse after an eccentric witch (Julie Walters) grants her an ill-fated wish. + + Kelly Macdonald + Billy Connolly + Emma Thompson + + 2012 + Movies + Animated + + + TVG + + + 3 + + + + The Incredibles + Now fighting boredom in suburbia, a former superhero (Craig T. Nelson) and his family get a chance to save the world. + + Craig T. Nelson + Holly Hunter + Samuel L. Jackson + + 2004 + Movies + Animated + + + TVG + + + 3 + + + + Incredibles 2 + Elastigirl springs into action to battle a cybercriminal who plans to hypnotize the world through computer screens. That leaves Mr. Incredible with one of his greatest challenges ever -- staying home and taking care of three rambunctious children. + + Craig T. Nelson + Holly Hunter + Sarah Vowell + + 2018 + Movies + Animated + + + TVG + + + 3 + + + + Captain Marvel + Captain Marvel is an alien Kree warrior who finds herself caught in the middle of a battle between her people and the Skrulls. With help from Nick Fury, she soon tries to uncover the secrets of her past while harnessing her powers to end the war. + + Brie Larson + Samuel L. Jackson + Ben Mendelsohn + + 2019 + Movies + Action + + + TVG + + + 2 + + + + Maleficent: Mistress of Evil + Maleficent encounters a conniving queen who hatches a devious plot to destroy the land's fairies. Hoping to stop her, Maleficent joins forces with a seasoned warrior and a group of outcasts to battle the queen and her powerful army. + + Angelina Jolie + Elle Fanning + Harris Dickinson + + 2019 + Movies + Fantasy + + + TVG + + + 2 + + + + Maleficent: Mistress of Evil + Maleficent encounters a conniving queen who hatches a devious plot to destroy the land's fairies. Hoping to stop her, Maleficent joins forces with a seasoned warrior and a group of outcasts to battle the queen and her powerful army. + + Angelina Jolie + Elle Fanning + Harris Dickinson + + 2019 + Movies + Fantasy + + + TVG + + + 2 + + + + Ninja Woodfire Outdoor Grill + Meet the Shark Ninja Wood Fire Grill, with Master Grill, BBQ Smoke, and Air Fry outdoor capabilities. Powered by electricity and flavored by real burning wood pellets, Woodfire Technology allows you to easily create rich flavor you can see and taste. + Paid Program + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Under Eye Bags? SOLUTION! + Plexaderm helps reduce Under Eye Bags, Dark Circles, and Wrinkles in just 10 minutes! + Paid Program + Lifestyle + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Emeril Lagasse Forever Pans + FREE GRILL + Forever Pans have what you need to sear, simmer, broil, fry and more. Order now and get FREE Smokeless Grill as a bonus. + Paid Program + Food + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Car Repair Secrets! + Save thousands on car repairs. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + black-ish + Daddy's Day + Dre and his colleagues create a holiday initiative called Daddy's Day -- everything that Father's Day is not; Junior tries to help Bow around the house. + + Anthony Anderson + Tracee Ellis Ross + Yara Shahidi + + Sitcom + + + TVPG + + + + black-ish + Churched + When Dre accepts an invitation from the neighbors to attend church one Sunday, the family members have a great day and decide they should say. + + Anthony Anderson + Tracee Ellis Ross + Yara Shahidi + + Sitcom + + + TVPG + + + + black-ish + Jacked o' Lantern + Dre's nieces and nephews come to the neighborhood to trick-or-treat, to the disappointment of his own kids; Dre faces his cousin June Bug, who used to bully him. + + Anthony Anderson + Tracee Ellis Ross + Yara Shahidi + + Sitcom + Christmas + + + TV14 + + + + black-ish + Charlie in Charge + Dre relies on pharmaceutical assistance to help him conquer his fear of flying when he and Bow take Zoey to visit Brown University -- Bow's alma mater; Charlie reveals details about a former flame (Amber Rose). + + Anthony Anderson + Tracee Ellis Ross + Yara Shahidi + + Sitcom + + + TVPG + + + + The 700 Club + The doctors told Mark's family that he would never be the same even if he came out of the coma. But as they began to pray, they soon began believing for a miracle instead. + Talk Shows + Religious + + + + 700 Club Interactive + Highlighting current events and stories that will help bring encouragment to people. + Religious + + + TVG + + + + Family Guy + Our Idiot Brian + When Brian takes the SATs for Meg but doesn't do very well, the family starts to doubt his intelligence; Peter tries to show Brian the upside of being stupid. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + The Peanuts Movie + Good ol' Charlie Brown (Noah Schnapp) develops a crush on the Little Red-Haired Girl (Francesca Angelucci Capaldi) while his best friend Snoopy (Bill Melendez) embarks on an epic adventure as a World War I flying ace who pursues the Red Baron. + + Noah Schnapp + Hadley Belle Miller + Mariel Sheets + + 2015 + Movies + Animated + + + TVG + + + 3 + + + + The Princess and the Frog + A fateful kiss leads a young woman (Anika Noni Rose) and a royal amphibian (Bruno Campos) on an adventure through the bayous of Louisiana. + + Anika Noni Rose + Bruno Campos + Keith David + + 2009 + Movies + Animated + + + TVG + + + 3 + + + + Freaky Friday + Two fortune cookies cause an engaged psychotherapist (Jamie Lee Curtis) and her teenage daughter (Lindsay Lohan) to magically exchange bodies. + + Jamie Lee Curtis + Lindsay Lohan + Mark Harmon + + 2003 + Movies + Children + + + TVG + + + 3 + + + + Captain Marvel + Captain Marvel is an alien Kree warrior who finds herself caught in the middle of a battle between her people and the Skrulls. With help from Nick Fury, she soon tries to uncover the secrets of her past while harnessing her powers to end the war. + + Brie Larson + Samuel L. Jackson + Ben Mendelsohn + + 2019 + Movies + Action + + + TVG + + + 2 + + + + The Parent Trap + An 11-year-old meets her California twin (Lindsay Lohan), and they plot to reunite their divorced parents (Dennis Quaid, Natasha Richardson). + + Lindsay Lohan + Dennis Quaid + Natasha Richardson + + 1998 + Movies + Children + + + TVG + + + 3 + + + + The 700 Club + The doctors told Mark's family that he would never be the same even if he came out of the coma. But as they began to pray, they soon began believing for a miracle instead. + Talk Shows + Religious + + + + The Simpsons + Two Dozen and One Greyhounds + Mr. Burns steals a litter of puppies, with plans to make a Greyhound-skin tuxedo. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + I Married Marge + Marge thinks she is pregnant, prompting Homer to relive their early years. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + The Bart Wants What It Wants + When wealthy Greta Wolfcastle (guest voice Reese Witherspoon) develops a crush on Bart, her father, Ranier, gives Bart's family the royal treatment. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + Das Bus + The children of Springfield are shipwrecked on an island in a parody of. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + The 700 Club + The doctors told Mark's family that he would never be the same even if he came out of the coma. But as they began to pray, they soon began believing for a miracle instead. + Talk Shows + Religious + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + Paid Program + + + TV14 + + + + Under Eye Bags? SOLUTION! + Plexaderm helps reduce Under Eye Bags, Dark Circles, and Wrinkles in just 10 minutes! + Paid Program + Lifestyle + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Cook Family Size Meals Faster + Emeril's biggest air fryer oven combines 10 kitchen appliances into one endlessly versatile countertop cooker with 2 cooking zones and a full menu of custom presets. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Car Repair Secrets! + Save thousands on car repairs. + Paid Program + + + + black-ish + Chop Shop + Before the family Christmas card shoot, Dre takes Junior and Jack to get a haircut from his lifelong barber, T., but Junior chooses another barber. + + Anthony Anderson + Tracee Ellis Ross + Yara Shahidi + + Sitcom + + + TVPG + + + + black-ish + Man at Work + Bow thinks Dre's visiting childhood friend is taking advantage of his generosity; the ex-wife of Stevens & Lido's founding partner gains control of half the company and puts Dre in a difficult position. + + Anthony Anderson + Tracee Ellis Ross + Yara Shahidi + + Sitcom + + + TVPG + + + + black-ish + Stuff + Dre worries that Christmas is too commercialized, and Pops and Ruby think the kids have forgotten the true meaning of Christmas. + + Anthony Anderson + Tracee Ellis Ross + Yara Shahidi + + Sitcom + Christmas + + + TVPG + + + + black-ish + Plus Two Isn't a Thing + When Dre's childhood best friend (Tyra Banks) -- an international pop star -- visits, Bow feels left out; the kids film a music video and in hopes of becoming YouTube stars. + + Anthony Anderson + Tracee Ellis Ross + Yara Shahidi + + Sitcom + + + TVPG + + + + The 700 Club + Nico attempts suicide several times and no one understands it's a cry for help to get away from his abuser. When he meets a friend who finally sees him and believes him, his life changes forever. + Talk Shows + Religious + + + + 700 Club Interactive + Highlighting current events and stories that will help bring encouragment to people. + Religious + + + TVG + + + + Family Guy + Blue Harvest, Part 1 + When the power goes out, Peter decides to tell his family the story of. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + Blue Harvest, Part 2 + When the power goes out, Peter decides to tell his family the story of. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + Something, Something, Something Dark Side, Part 1 + Peter does a dramatic retelling of. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + Something, Something, Something Dark Side, Part 2 + Peter does a dramatic retelling ofGuests: Tom Selleck.. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + It's a Trap + During a power outage, the Griffins perform a retelling of. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Family Guy + It's a Trap + During a power outage, the Griffins perform a retelling of. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + A Dog's Way Home + As a puppy, Bella finds her way into the arms of Lucas, a young man who gives her a good home. When Bella becomes separated from Lucas, she soon finds herself on an epic, 400-mile journey to reunite with her beloved owner. + + Ashley Judd + Jonah Hauer-King + Edward James Olmos + + 2019 + Movies + Children + + + TVG + + + 2 + + + + The Lion King + Betrayed and exiled from his kingdom, lion cub Simba must figure out how to grow up and take back his royal destiny on the plains of the African savanna. + + Donald Glover + Seth Rogen + Chiwetel Ejiofor + + 2019 + Movies + Children + + + TVG + + + 2 + + + + Home Alone + Accidentally left by his Paris-bound family, an 8-year-old (Macaulay Culkin) makes mincemeat of two burglars (Joe Pesci, Daniel Stern) in the house. + + Macaulay Culkin + Joe Pesci + Daniel Stern + + 1990 + Movies + Christmas + Children + + + TVG + + + 3 + + + + Home Alone 2: Lost in New York + Once again left behind by his family, the boy hero (Macaulay Culkin) lands in Manhattan and battles two burglars (Joe Pesci, Daniel Stern) he faced before. + + Macaulay Culkin + Joe Pesci + Daniel Stern + + 1992 + Movies + Christmas + Children + + + TVG + + + 2 + + + + The 700 Club + Nico attempts suicide several times and no one understands it's a cry for help to get away from his abuser. When he meets a friend who finally sees him and believes him, his life changes forever. + Talk Shows + Religious + + + + The Simpsons + Homer Alone + When Marge goes to a health spa, Homer is left alone with baby Maggie. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + Fear of Flying + Searching for the cause of her fear of flying, Marge visits a psychiatrist after embarrassing her family while on an airplane. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + The Strong Arms of the Ma + Marge retreats to the basement to lift weights after she is mugged. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + Double Double Boy in Trouble + Lenny wins the lottery and invites the Simpson family to a celebratory party at a luxurious hotel; Bart meets his exact look-alike, Simon, a member of the richest family in Springfield, and they decide to switch places. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + Paid Program + + + TV14 + + + + The 700 Club + Nico attempts suicide several times and no one understands it's a cry for help to get away from his abuser. When he meets a friend who finally sees him and believes him, his life changes forever. + Talk Shows + Religious + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Cook Family Size Meals Faster + Emeril's biggest air fryer oven combines 10 kitchen appliances into one endlessly versatile countertop cooker with 2 cooking zones and a full menu of custom presets. + Paid Program + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + Car Repair Secrets! + Save thousands on car repairs. + Paid Program + + + + black-ish + Old Digger + Dre is upset when Ruby wants him and Bow to meet the new man in her life; when Junior meets a girl on a website, Zoey, Jack and Diane think he is being scammed. + + Anthony Anderson + Tracee Ellis Ross + Yara Shahidi + + Sitcom + + + TV14 + + + + black-ish + Keeping Up With the Johnsons + After a period of heavy spending, Dre and Bow wonder if they need to be more financially responsible; Junior wants to start day trading. + + Anthony Anderson + Tracee Ellis Ross + Yara Shahidi + + Sitcom + + + TVPG + + + + black-ish + Sink or Swim + When Dre realizes that his neighbor Janine hasn't invited any members of his family to her pool parties, he thinks she assumes they can't swim; Diane and Jack envy each other's activities in the Girls' and Boys' Rovers Organization. + + Anthony Anderson + Tracee Ellis Ross + Yara Shahidi + + Sitcom + + + TVPG + + + + black-ish + Twindependence + Tired of being twins, Jack and Diane explore their lives as individuals; after buying Zoey a car, Dre wonders if it was a good idea. + + Anthony Anderson + Tracee Ellis Ross + Yara Shahidi + + Sitcom + + + TVPG + + + + The 700 Club + News from a Christian perspective and inspirational guests who share stories of God at work in their lives. + Talk Shows + Religious + + + + 700 Club Interactive + Highlighting current events and stories that will help bring encouragment to people. + Religious + + + TVG + + + + Wonder + Born with facial differences that, up until now, have prevented him from going to a mainstream school, Auggie Pullman becomes the most unlikely of heroes when he enters the local fifth grade. + + Julia Roberts + Owen Wilson + Jacob Tremblay + + 2017 + Movies + Drama + + + TVG + + + 3 + + + + Home Alone + Accidentally left by his Paris-bound family, an 8-year-old (Macaulay Culkin) makes mincemeat of two burglars (Joe Pesci, Daniel Stern) in the house. + + Macaulay Culkin + Joe Pesci + Daniel Stern + + 1990 + Movies + Christmas + Children + + + TVG + + + 3 + + + + Home Alone 2: Lost in New York + Once again left behind by his family, the boy hero (Macaulay Culkin) lands in Manhattan and battles two burglars (Joe Pesci, Daniel Stern) he faced before. + + Macaulay Culkin + Joe Pesci + Daniel Stern + + 1992 + Movies + Christmas + Children + + + TVG + + + 2 + + + + The Santa Clause + An adman (Tim Allen) takes over for the bearded, big-bellied fellow after a rooftop mishap on Christmas Eve. + + Tim Allen + Judge Reinhold + Wendy Crewson + + 1994 + Movies + Christmas + Children + + + TVG + + + 3 + + + + Agents of Change: An America Special + Jorge Ramos habla con el personal de la CIA sobre cómo la CIA cambió desde la fuga de Edward Snowden. + + Alicia Menendez + + Specials + Political + + + + UnGlamorous: The Naked Truth About Male Models + Pedro Andrade muestra la vida de los modelos masculinos fuera de los estudios, en los apartamentos pequeños y de baja paga. + Specials + Documentary + + + + The Search for Sexy + Sandra Daugherty, gurú del sexo, analiza qué hace a uno atractivo ante los demás. + Specials + Documentary + + + + Democracy Handbook + El comediante Bassem Youssef viaja por toda América para entender la democracia, y llevar los principios de regreso a Medio Oriente. + Specials + News + + + TV14 + + + + The Heroin Trail + Las vidas de quienes luchan en la guerra contra las drogas en diferentes fronteras; los adictos a la heroína, los proveedores de tratamientos y las autoridades. + Specials + Documentary + + + + Ferguson: A Report from Occupied Territory + Tim Poll investiga las condiciones del Condado de St Louis y se acerca a los residentes por informes raciales y de brutalidad policial. + Specials + Documentary + + + + Hell's Satans + Viviendo rápido y yendo despacio con los. + Reality TV + + + + Hell's Satans + Viviendo rápido y yendo despacio con los. + Reality TV + + + + Democracy Handbook + El comediante Bassem Youssef viaja por toda América para entender la democracia, y llevar los principios de regreso a Medio Oriente. + Specials + News + + + TV14 + + + + Ferguson: A Report from Occupied Territory + Tim Poll investiga las condiciones del Condado de St Louis y se acerca a los residentes por informes raciales y de brutalidad policial. + Specials + Documentary + + + + The Naked Truth + Una inmersión para investigar en los rincones más oscuros del mundo. + Documentary + + + + Shark Land + Nicholas Ibarguen leads a group into the shark-filled waters of Cocos Island. + Specials + Documentary + + + + Rio Bizarro: Superhero Politics in Brazil + Tim Pool investiga quiénes son Batman Rico y Batman Pobre, manifestantes enmascarados que protagonizan las quejas contra la corrupción y la desigualdad en Brasil. + Specials + + + + Agents of Change: An America Special + Jorge Ramos habla con el personal de la CIA sobre cómo la CIA cambió desde la fuga de Edward Snowden. + + Alicia Menendez + + Specials + Political + + + + UnGlamorous: The Naked Truth About Male Models + Pedro Andrade muestra la vida de los modelos masculinos fuera de los estudios, en los apartamentos pequeños y de baja paga. + Specials + Documentary + + + + The Naked Truth + Una inmersión para investigar en los rincones más oscuros del mundo. + Documentary + + + + Al Madrigal's Half Like Me + El corresponsal de. + + Al Madrigal + + Specials + Documentary + + + TVPG + + + + Agents of Change: An America Special + Jorge Ramos habla con el personal de la CIA sobre cómo la CIA cambió desde la fuga de Edward Snowden. + + Alicia Menendez + + Specials + Political + + + + UnGlamorous: The Naked Truth About Male Models + Pedro Andrade muestra la vida de los modelos masculinos fuera de los estudios, en los apartamentos pequeños y de baja paga. + Specials + Documentary + + + + The Naked Truth + Una inmersión para investigar en los rincones más oscuros del mundo. + Documentary + + + + Al Madrigal's Half Like Me + El corresponsal de. + + Al Madrigal + + Specials + Documentary + + + TVPG + + + + Agents of Change: An America Special + Jorge Ramos habla con el personal de la CIA sobre cómo la CIA cambió desde la fuga de Edward Snowden. + + Alicia Menendez + + Specials + Political + + + + UnGlamorous: The Naked Truth About Male Models + Pedro Andrade muestra la vida de los modelos masculinos fuera de los estudios, en los apartamentos pequeños y de baja paga. + Specials + Documentary + + + + The Naked Truth + Una inmersión para investigar en los rincones más oscuros del mundo. + Documentary + + + + Al Madrigal's Half Like Me + El corresponsal de. + + Al Madrigal + + Specials + Documentary + + + TVPG + + + + Agents of Change: An America Special + Jorge Ramos habla con el personal de la CIA sobre cómo la CIA cambió desde la fuga de Edward Snowden. + + Alicia Menendez + + Specials + Political + + + + UnGlamorous: The Naked Truth About Male Models + Pedro Andrade muestra la vida de los modelos masculinos fuera de los estudios, en los apartamentos pequeños y de baja paga. + Specials + Documentary + + + + Brazil: Exporting Beauty + Mariana Van Zeller viaja a Brasil, acompañada de profesionales de la industria de la belleza, para evaluar a varias modelos potenciales. + Specials + Reality TV + + + + The Search for Sexy + Sandra Daugherty, gurú del sexo, analiza qué hace a uno atractivo ante los demás. + Specials + Documentary + + + + Democracy Handbook + El comediante Bassem Youssef viaja por toda América para entender la democracia, y llevar los principios de regreso a Medio Oriente. + Specials + News + + + TV14 + + + + The Heroin Trail + Las vidas de quienes luchan en la guerra contra las drogas en diferentes fronteras; los adictos a la heroína, los proveedores de tratamientos y las autoridades. + Specials + Documentary + + + + Ferguson: A Report from Occupied Territory + Tim Poll investiga las condiciones del Condado de St Louis y se acerca a los residentes por informes raciales y de brutalidad policial. + Specials + Documentary + + + + The Dukes of 2Square + Justin y Jeremiah han dejado sus vidas cómodas para convertirse en leyendas en el mundo del arte callejero; el dúo viaja al extranjero para pintar el mayor mural de sus respectivas carreras. + Reality TV + + + + Hell's Satans + Viviendo rápido y yendo despacio con los. + Reality TV + + + + Democracy Handbook + El comediante Bassem Youssef viaja por toda América para entender la democracia, y llevar los principios de regreso a Medio Oriente. + Specials + News + + + TV14 + + + + The Heroin Trail + Las vidas de quienes luchan en la guerra contra las drogas en diferentes fronteras; los adictos a la heroína, los proveedores de tratamientos y las autoridades. + Specials + Documentary + + + + Ferguson: A Report from Occupied Territory + Tim Poll investiga las condiciones del Condado de St Louis y se acerca a los residentes por informes raciales y de brutalidad policial. + Specials + Documentary + + + + The Naked Truth + Una inmersión para investigar en los rincones más oscuros del mundo. + Documentary + + + + Shark Land + Nicholas Ibarguen leads a group into the shark-filled waters of Cocos Island. + Specials + Documentary + + + + Rio Bizarro: Superhero Politics in Brazil + Tim Pool investiga quiénes son Batman Rico y Batman Pobre, manifestantes enmascarados que protagonizan las quejas contra la corrupción y la desigualdad en Brasil. + Specials + + + + Forbidden Puerto Rico: An America Special + Jorge Ramos visita Puerto Rico para estudiar la cultura, gastronomía, música y política de esta isla caribeña. + Specials + News + + + + Brazil: Exporting Beauty + Mariana Van Zeller viaja a Brasil, acompañada de profesionales de la industria de la belleza, para evaluar a varias modelos potenciales. + Specials + Reality TV + + + + Drone Nation + Los drones están ahora por todas partes, cambiando la manera en que vemos el mundo. Se utilizan en casamientos, para combatir incendios o patrullar fronteras. Mariana Van Zeller analiza su impacto en la vida moderna. + Specials + Documentary + + + + The Naked Truth + Una inmersión para investigar en los rincones más oscuros del mundo. + Documentary + + + + Shark Land + Nicholas Ibarguen leads a group into the shark-filled waters of Cocos Island. + Specials + Documentary + + + + Rio Bizarro: Superhero Politics in Brazil + Tim Pool investiga quiénes son Batman Rico y Batman Pobre, manifestantes enmascarados que protagonizan las quejas contra la corrupción y la desigualdad en Brasil. + Specials + + + + Forbidden Puerto Rico: An America Special + Jorge Ramos visita Puerto Rico para estudiar la cultura, gastronomía, música y política de esta isla caribeña. + Specials + News + + + + Brazil: Exporting Beauty + Mariana Van Zeller viaja a Brasil, acompañada de profesionales de la industria de la belleza, para evaluar a varias modelos potenciales. + Specials + Reality TV + + + + Drone Nation + Los drones están ahora por todas partes, cambiando la manera en que vemos el mundo. Se utilizan en casamientos, para combatir incendios o patrullar fronteras. Mariana Van Zeller analiza su impacto en la vida moderna. + Specials + Documentary + + + + The Naked Truth + Una inmersión para investigar en los rincones más oscuros del mundo. + Documentary + + + + Shark Land + Nicholas Ibarguen leads a group into the shark-filled waters of Cocos Island. + Specials + Documentary + + + + Rio Bizarro: Superhero Politics in Brazil + Tim Pool investiga quiénes son Batman Rico y Batman Pobre, manifestantes enmascarados que protagonizan las quejas contra la corrupción y la desigualdad en Brasil. + Specials + + + + Forbidden Puerto Rico: An America Special + Jorge Ramos visita Puerto Rico para estudiar la cultura, gastronomía, música y política de esta isla caribeña. + Specials + News + + + + Brazil: Exporting Beauty + Mariana Van Zeller viaja a Brasil, acompañada de profesionales de la industria de la belleza, para evaluar a varias modelos potenciales. + Specials + Reality TV + + + + Drone Nation + Los drones están ahora por todas partes, cambiando la manera en que vemos el mundo. Se utilizan en casamientos, para combatir incendios o patrullar fronteras. Mariana Van Zeller analiza su impacto en la vida moderna. + Specials + Documentary + + + + The Naked Truth + Una inmersión para investigar en los rincones más oscuros del mundo. + Documentary + + + + Shark Land + Nicholas Ibarguen leads a group into the shark-filled waters of Cocos Island. + Specials + Documentary + + + + Rio Bizarro: Superhero Politics in Brazil + Tim Pool investiga quiénes son Batman Rico y Batman Pobre, manifestantes enmascarados que protagonizan las quejas contra la corrupción y la desigualdad en Brasil. + Specials + + + + Forbidden Puerto Rico: An America Special + Jorge Ramos visita Puerto Rico para estudiar la cultura, gastronomía, música y política de esta isla caribeña. + Specials + News + + + + Brazil: Exporting Beauty + Mariana Van Zeller viaja a Brasil, acompañada de profesionales de la industria de la belleza, para evaluar a varias modelos potenciales. + Specials + Reality TV + + + + Drone Nation + Los drones están ahora por todas partes, cambiando la manera en que vemos el mundo. Se utilizan en casamientos, para combatir incendios o patrullar fronteras. Mariana Van Zeller analiza su impacto en la vida moderna. + Specials + Documentary + + + + Agents of Change: An America Special + Jorge Ramos habla con el personal de la CIA sobre cómo la CIA cambió desde la fuga de Edward Snowden. + + Alicia Menendez + + Specials + Political + + + + Chris Gets Money + El cómico Chris Cubas siempre ha sido pobre, hasta ahora; él tiene 30 días para vivir en la alta sociedad e infiltrarse donde los elusivos ricos de Austin, Texas, a fin de investigar las condiciones socioeconómicas que obstaculizan a la sociedad. + Specials + Documentary + + + TVPG + + + + Cock Fight: One Man's Battle Against the Chicken Industry + Mariana van Zeller investiga en qué condiciones están las gallinas en Norteamérica y visita las granjas donde están los criaderos. + Specials + Documentary + + + + The Naked Truth + Una inmersión para investigar en los rincones más oscuros del mundo. + Documentary + + + + Sex. Right. Now + Cleo Stiller explores the hook-up culture; Internet-connected sex toys; marijuana in the bedroom. + Documentary + Adult + + + TV14 + + + + Sex. Right. Now + Cleo Stiller explores the hook-up culture; Internet-connected sex toys; marijuana in the bedroom. + Documentary + Adult + + + TV14 + + + + Chris Gets Money + El cómico Chris Cubas siempre ha sido pobre, hasta ahora; él tiene 30 días para vivir en la alta sociedad e infiltrarse donde los elusivos ricos de Austin, Texas, a fin de investigar las condiciones socioeconómicas que obstaculizan a la sociedad. + Specials + Documentary + + + TVPG + + + + Cock Fight: One Man's Battle Against the Chicken Industry + Mariana van Zeller investiga en qué condiciones están las gallinas en Norteamérica y visita las granjas donde están los criaderos. + Specials + Documentary + + + + The Naked Truth + Una inmersión para investigar en los rincones más oscuros del mundo. + Documentary + + + + The Naked Truth + Una inmersión para investigar en los rincones más oscuros del mundo. + Documentary + + + + Brazil: Exporting Beauty + Mariana Van Zeller viaja a Brasil, acompañada de profesionales de la industria de la belleza, para evaluar a varias modelos potenciales. + Specials + Reality TV + + + + The Search for Sexy + Sandra Daugherty, gurú del sexo, analiza qué hace a uno atractivo ante los demás. + Specials + Documentary + + + + Edge of a Crisis: An America Special + Se examina la problemática de los menores que vuelan solos a los Estados Unidos. + Specials + News + + + + Shark Land + Nicholas Ibarguen leads a group into the shark-filled waters of Cocos Island. + Specials + Documentary + + + + Drone Nation + Los drones están ahora por todas partes, cambiando la manera en que vemos el mundo. Se utilizan en casamientos, para combatir incendios o patrullar fronteras. Mariana Van Zeller analiza su impacto en la vida moderna. + Specials + Documentary + + + + The Naked Truth + Una inmersión para investigar en los rincones más oscuros del mundo. + Documentary + + + + Brazil: Exporting Beauty + Mariana Van Zeller viaja a Brasil, acompañada de profesionales de la industria de la belleza, para evaluar a varias modelos potenciales. + Specials + Reality TV + + + + The Search for Sexy + Sandra Daugherty, gurú del sexo, analiza qué hace a uno atractivo ante los demás. + Specials + Documentary + + + + Edge of a Crisis: An America Special + Se examina la problemática de los menores que vuelan solos a los Estados Unidos. + Specials + News + + + + Shark Land + Nicholas Ibarguen leads a group into the shark-filled waters of Cocos Island. + Specials + Documentary + + + + Drone Nation + Los drones están ahora por todas partes, cambiando la manera en que vemos el mundo. Se utilizan en casamientos, para combatir incendios o patrullar fronteras. Mariana Van Zeller analiza su impacto en la vida moderna. + Specials + Documentary + + + + The Naked Truth + Una inmersión para investigar en los rincones más oscuros del mundo. + Documentary + + + + Brazil: Exporting Beauty + Mariana Van Zeller viaja a Brasil, acompañada de profesionales de la industria de la belleza, para evaluar a varias modelos potenciales. + Specials + Reality TV + + + + The Search for Sexy + Sandra Daugherty, gurú del sexo, analiza qué hace a uno atractivo ante los demás. + Specials + Documentary + + + + Edge of a Crisis: An America Special + Se examina la problemática de los menores que vuelan solos a los Estados Unidos. + Specials + News + + + + Shark Land + Nicholas Ibarguen leads a group into the shark-filled waters of Cocos Island. + Specials + Documentary + + + + Drone Nation + Los drones están ahora por todas partes, cambiando la manera en que vemos el mundo. Se utilizan en casamientos, para combatir incendios o patrullar fronteras. Mariana Van Zeller analiza su impacto en la vida moderna. + Specials + Documentary + + + + The Naked Truth + Una inmersión para investigar en los rincones más oscuros del mundo. + Documentary + + + + Brazil: Exporting Beauty + Mariana Van Zeller viaja a Brasil, acompañada de profesionales de la industria de la belleza, para evaluar a varias modelos potenciales. + Specials + Reality TV + + + + The Search for Sexy + Sandra Daugherty, gurú del sexo, analiza qué hace a uno atractivo ante los demás. + Specials + Documentary + + + + Edge of a Crisis: An America Special + Se examina la problemática de los menores que vuelan solos a los Estados Unidos. + Specials + News + + + + Shark Land + Nicholas Ibarguen leads a group into the shark-filled waters of Cocos Island. + Specials + Documentary + + + + Drone Nation + Los drones están ahora por todas partes, cambiando la manera en que vemos el mundo. Se utilizan en casamientos, para combatir incendios o patrullar fronteras. Mariana Van Zeller analiza su impacto en la vida moderna. + Specials + Documentary + + + + The Naked Truth + Una inmersión para investigar en los rincones más oscuros del mundo. + Documentary + + + + Drug Wars + Es una guerra sinfín que genera miles de millones en ganancias para los de arriba. Un despliegue sin barreras a la peligrosa realidad de las operaciones internacionales antinarcóticos. + Documentary + + + TVPG + + + + Drug Wars + Es una guerra sinfín que genera miles de millones en ganancias para los de arriba. Un despliegue sin barreras a la peligrosa realidad de las operaciones internacionales antinarcóticos. + Documentary + + + TVPG + + + + Blackout!: 48 Hours at America's Number One Party School + Un análisis de, según los propios estudiantes, cómo es la vida moderna en las universidades. El negocio ligado al consumo de alcohol en el campus o las actitudes mostradas ante las agresiones sexuales son algunos de los temas que se diseccionan. + Specials + Documentary + + + + The Naked Truth + Una inmersión para investigar en los rincones más oscuros del mundo. + Documentary + + + + Miami Porn: Sex Work in the Sunshine State + La industria del entretenimiento para adultos se enfrenta en la era de las redes sociales y la pornografía gratuita. Miami se ha convertido en el centro de producción más importante de Estados Unidos. + Specials + Documentary + + + TVMA + + + + Drug Wars + Es una guerra sinfín que genera miles de millones en ganancias para los de arriba. Un despliegue sin barreras a la peligrosa realidad de las operaciones internacionales antinarcóticos. + Documentary + + + TVPG + + + + Drug Wars + Es una guerra sinfín que genera miles de millones en ganancias para los de arriba. Un despliegue sin barreras a la peligrosa realidad de las operaciones internacionales antinarcóticos. + Documentary + + + TVPG + + + + Blackout!: 48 Hours at America's Number One Party School + Un análisis de, según los propios estudiantes, cómo es la vida moderna en las universidades. El negocio ligado al consumo de alcohol en el campus o las actitudes mostradas ante las agresiones sexuales son algunos de los temas que se diseccionan. + Specials + Documentary + + + + The Naked Truth + Una inmersión para investigar en los rincones más oscuros del mundo. + Documentary + + + + The Naked Truth + Una inmersión para investigar en los rincones más oscuros del mundo. + Documentary + + + + Al Madrigal's Half Like Me + El corresponsal de. + + Al Madrigal + + Specials + Documentary + + + TVPG + + + + Agents of Change: An America Special + Jorge Ramos habla con el personal de la CIA sobre cómo la CIA cambió desde la fuga de Edward Snowden. + + Alicia Menendez + + Specials + Political + + + + UnGlamorous: The Naked Truth About Male Models + Pedro Andrade muestra la vida de los modelos masculinos fuera de los estudios, en los apartamentos pequeños y de baja paga. + Specials + Documentary + + + + The Naked Truth + Una inmersión para investigar en los rincones más oscuros del mundo. + Documentary + + + + Al Madrigal's Half Like Me + El corresponsal de. + + Al Madrigal + + Specials + Documentary + + + TVPG + + + + Agents of Change: An America Special + Jorge Ramos habla con el personal de la CIA sobre cómo la CIA cambió desde la fuga de Edward Snowden. + + Alicia Menendez + + Specials + Political + + + + UnGlamorous: The Naked Truth About Male Models + Pedro Andrade muestra la vida de los modelos masculinos fuera de los estudios, en los apartamentos pequeños y de baja paga. + Specials + Documentary + + + + The Naked Truth + Una inmersión para investigar en los rincones más oscuros del mundo. + Documentary + + + + Al Madrigal's Half Like Me + El corresponsal de. + + Al Madrigal + + Specials + Documentary + + + TVPG + + + + Agents of Change: An America Special + Jorge Ramos habla con el personal de la CIA sobre cómo la CIA cambió desde la fuga de Edward Snowden. + + Alicia Menendez + + Specials + Political + + + + UnGlamorous: The Naked Truth About Male Models + Pedro Andrade muestra la vida de los modelos masculinos fuera de los estudios, en los apartamentos pequeños y de baja paga. + Specials + Documentary + + + + The Naked Truth + Una inmersión para investigar en los rincones más oscuros del mundo. + Documentary + + + + Al Madrigal's Half Like Me + El corresponsal de. + + Al Madrigal + + Specials + Documentary + + + TVPG + + + + A Dash of Christmas + To apply for her dream job at a foodie startup, an executive must learn to bake. When she recruits a handsome baker to help her, she inadvertently ends up in a Christmas Bakeoff. + + Laura Osnes + Christopher Russell + + 2023 + Movies + Christmas + Romance + + + TVPG + + + + Jingle Bell Princess + After a series of mishaps, sophisticated Princess Amelia becomes stranded in the small town of Tucker Maine, where she becomes a guest of the unsuspecting Cutler family, widowed father Sam and daughter Sophie, but doesn't tell them she's a princess. + + Merritt Patterson + Trevor Donovan + Charlie Boyle + + 2021 + Movies + Christmas + Drama + + + + The Art of Christmas + After her latest gallery exhibition literally goes up in flames, struggling artist Liv James accepts a teaching job at a local elementary school to make ends meet. + + Brigitte Kingsley + Joe Towne + Frank Chiesurin + + 2022 + Movies + Drama + + + TVPG + + + + Royally Wrapped for Christmas + Lindsay, the NY director of an international charity organization, is called to the Kingdom of Veronia by the royal family to interview for the job of overseeing the whole operation. During the interview process, she finds true love with the prince. + + Jen Lilley + Brendan Fehr + Michael Hanrahan + + 2021 + Movies + Christmas + Drama + + + + A Puppy for Christmas + After adoping a puppy, Noelle's world is turned upside down when her boyfriend dumps her. Accepting an invitation to spend the holidays with a co-worker, she is surrounded by the Christmas cheer of a happy family, and sparks soon begin to fly. + + Cindy Busby + Greyston Holt + Christopher Russell + + 2016 + Movies + Christmas + Romance + + + TVPG + + + + Mrs. Miracle + A single man (James Van Der Beek) hires a nanny (Doris Roberts) to help him care for his 6-year-old twins. + + James Van Der Beek + Erin Karpluk + Doris Roberts + + 2009 + Movies + Drama + + + TVPG + + + 3 + + + + A Hot Cocoa Christmas + After Haley Lloyd has been burned by countless suitors, it's refreshing when shy but handsome Claud falls for her, unaware of her true identity: However, when that truth inevitably comes out, it puts their budding Christmas romance at risk. + + Susie Abromeit + Torrance Coombs + James Rottger + + 2021 + Movies + Christmas + Romance + + + TVPG + + + + A Royal Christmas on Ice + Looking to escape his royal life, a dashing prince comes to the United States to start a business in a small town in upstate New York and winds up falling for a former Olympic ice skater. + + Anna Marie Dobbins + Jonathan Stoddard + William Baldwin + + 2022 + Movies + Romance + + + TVPG + + + + B&B Merry + Graham Cooper invites renowned travel blogger Tracey Wise on a Christmas getaway in exchange for her review of his family's small bed & breakfast, Silver Peak. Unfortunately, the humble B&B is facing tough competition from an upscale hotel resort. + + Jesse Hutch + Jen Lilley + Peter Louis Chouinard + + 2022 + Movies + Christmas + Romance + + + + Christmas at the Drive-In + A property lawyer finds romance during the holidays while trying to save her town's local drive-in from closing down. + + Danica McKellar + Neal Bledsoe + Jim Annan + + 2022 + Movies + Romance + + + TVPG + + + + Catering Christmas + Fledgling caterer Molly Frost is hired by perfectionist Jean Harrison for the renowned Harrison Foundation's annual Christmas Gala, but things get complicated when she falls for Jean's nephew. + + Daniel Lissing + Merritt Patterson + Christopher Hayes + + 2022 + Movies + Christmas + Romance + + + + Destined 2: Christmas Once More + Theo continues to miss connecting with his girlfriend, Kim, as he attempts to propose at Christmas. + + Shae Robins + Casey Elliott + + 2023 + Movies + Romance + + + + A Dash of Christmas + To apply for her dream job at a foodie startup, an executive must learn to bake. When she recruits a handsome baker to help her, she inadvertently ends up in a Christmas Bakeoff. + + Laura Osnes + Christopher Russell + + 2023 + Movies + Christmas + Romance + + + TVPG + + + + Our Christmas Wedding + Roles reverse as Nicole's boss plans newly engaged Nicole and Michael's wedding in two weeks at Christmas. + + Holly Deveaux + Drew Seeley + + Movies + Christmas + Romance + + + TVPG + + + + 'Twas the Text Before Christmas + A text message mistakenly sent to Addie leads to a friendship with the sender, a Christmas tradition with the woman's family, and a budding romance with her son. + + Merritt Patterson + Trevor Donovan + Jayne Eastwood + + 2023 + Movies + Christmas + Romance + + + TVPG + + + + Christmas in Pine Valley + A reporter interviews an entrepreneur thinking her company is family owned, not knowing it is run by her friends. + + Kristina Cole + Andrew Biernat + Rene Ashton + + 2022 + Movies + Christmas + Romance + + + + Christmas in Pine Valley + A reporter interviews an entrepreneur thinking her company is family owned, not knowing it is run by her friends. + + Kristina Cole + Andrew Biernat + Rene Ashton + + 2022 + Movies + Christmas + Romance + + + + The Christmas Calendar + When Emily, a struggling baker in a small town, receives a handmade Christmas calendar from a secret admirer, the local residents become obsessed with finding out the identity of the sender. + + Laura Bell Bundy + Brendon Zub + Paloma Kwiatkowski + + 2017 + Movies + Christmas + Romance + + + TVG + + + + Call Me Mrs. Miracle + Mrs. + + Doris Roberts + Eric Johnson + Jewel Staite + + 2010 + Movies + Drama + + + TVPG + + + + Christmas Is You + An office assistant is faced with a dilemma when her record-executive boss tells her to convince her ex-boyfriend to sign with their label, or look for a new job. + + Becca Tobin + Matthew MacCaull + Casey Manderson + + 2021 + Movies + Christmas + Drama + + + + A Brush With Christmas + Disheartened and struggling to find time for her art, Charlotte throws out her latest painting, only to discover that it has been anonymously submitted to the Christmas art festival. + + Jillian Murray + Joseph Cannata + Jan Skene + + 2022 + Movies + Romance + + + TVPG + + + + Christmas Sweethearts + When a woman returns home to find her ex in a relationship, she enlists her best friend to act as her fake boyfriend. + + Breanne Parhiala + Colton Little + Tanner Novlan + + 2019 + Movies + Romance + + + + A Merry Christmas Wish + An NYC advertising executive returns to her hometown to sell the family farm but instead reconnects with her childhood friend and gets involved with organizing the yearly Winter Wonderland, which takes place on the property. + + Jill Wagner + Cameron Mathison + Neil Whitely + + 2022 + Movies + Christmas + Romance + + + + A Dash of Christmas + To apply for her dream job at a foodie startup, an executive must learn to bake. When she recruits a handsome baker to help her, she inadvertently ends up in a Christmas Bakeoff. + + Laura Osnes + Christopher Russell + + 2023 + Movies + Christmas + Romance + + + TVPG + + + + Christmas in the Smokies + A family must save its Smoky Mountains berry farm against all odds. + + Sarah Lancaster + Barry Corbin + Alan Powell + + 2015 + Movies + Drama + + + + I'm Glad It's Christmas + An aspiring Broadway singer is convinced to participate in a small-scale production for the local Christmas celebration. + + Jessica Lowndes + Paul Greene + Gladys Knight + + 2022 + Movies + Romance + + + TVPG + + + + Destined 2: Christmas Once More + Theo continues to miss connecting with his girlfriend, Kim, as he attempts to propose at Christmas. + + Shae Robins + Casey Elliott + + 2023 + Movies + Romance + + + + Joy for Christmas + When her family firm's annual Christmas toy drive is in jeopardy, Holly must convince pro athlete Jack Kane to be the public face of the campaign to help save it. + + Cindy Busby + Sam Page + Erin Boyes + + 2021 + Movies + Christmas + Drama + + + TVPG + + + + Journey to Christmas + A winter storm forces a New York City fashion model to spend the week before Christmas with her chauffeur and his extended family in rural America. + + Ash Tsai + Joey Heyworth + McKenna Flory + + 2023 + Movies + Christmas + Romance + + + TVPG + + + + Journey to Christmas + A winter storm forces a New York City fashion model to spend the week before Christmas with her chauffeur and his extended family in rural America. + + Ash Tsai + Joey Heyworth + McKenna Flory + + 2023 + Movies + Christmas + Romance + + + TVPG + + + + Christmas Crush + When Addie makes a Christmas wish for her neighbor, Sam, to fall in love with her, she's not expecting anything to happen - and she definitely isn't expecting the wish to go awry and cause her other neighbor, Pete, to fall in love with her instead. + + Cindy Sampson + Robin Dunne + Chris Violette + + 2019 + Movies + Christmas + Romance + + + TVG + + + + Bringing Christmas Home + A professor of military history teams with an antique store owner to help track down the original owner of a historic World War II uniform and the love letters in its pockets. + + Jill Wagner + Paul Greene + Simon Arblaster + + 2023 + Movies + Christmas + Drama + + + TVPG + + + + B&B Merry + Graham Cooper invites renowned travel blogger Tracey Wise on a Christmas getaway in exchange for her review of his family's small bed & breakfast, Silver Peak. Unfortunately, the humble B&B is facing tough competition from an upscale hotel resort. + + Jesse Hutch + Jen Lilley + Peter Louis Chouinard + + 2022 + Movies + Christmas + Romance + + + + A Christmas… Present + Real Estate Agent Maggie Larson is determined to give her brother and niece the best Christmas possible and to lift their spirits when they most need it. + + Candace Cameron Bure + Marc Blucas + Caleb Reese Paul + + 2022 + Movies + Christmas + Drama + + + TVPG + + + + A Royal Christmas on Ice + Looking to escape his royal life, a dashing prince comes to the United States to start a business in a small town in upstate New York and winds up falling for a former Olympic ice skater. + + Anna Marie Dobbins + Jonathan Stoddard + William Baldwin + + 2022 + Movies + Romance + + + TVPG + + + + A Christmas Star + An astronomer predicts that a new meteor shower will appear over a tiny town, but she must convince the locals to help with her discovery at the expense of a Christmas tradition. + + Sara Canning + Daniel Lissing + Juliette Habicht + + 2021 + Movies + Christmas + Drama + + + + A Kindhearted Christmas + To capture the holiday spirit, Jaime anonymously gives gifts to those in need. Word spreads and people in town wonder who this. + + Jennie Garth + Cameron Mathison + + 2021 + Movies + Drama + + + + 'Twas the Text Before Christmas + A text message mistakenly sent to Addie leads to a friendship with the sender, a Christmas tradition with the woman's family, and a budding romance with her son. + + Merritt Patterson + Trevor Donovan + Jayne Eastwood + + 2023 + Movies + Christmas + Romance + + + TVPG + + + + Christmas at the Drive-In + A property lawyer finds romance during the holidays while trying to save her town's local drive-in from closing down. + + Danica McKellar + Neal Bledsoe + Jim Annan + + 2022 + Movies + Romance + + + TVPG + + + + A Dash of Christmas + To apply for her dream job at a foodie startup, an executive must learn to bake. When she recruits a handsome baker to help her, she inadvertently ends up in a Christmas Bakeoff. + + Laura Osnes + Christopher Russell + + 2023 + Movies + Christmas + Romance + + + TVPG + + + + A Christmas Miracle for Daisy + Interior designer Whitney Adler agrees to work for her ex-boyfriend Cormac, who has adopted his orphaned niece, Daisy. Daisy's Christmas wish is for Whitney and Cormac to get together so she can have the mother she always wanted. + + Jill Wagner + Nick Bateman + Rubi Tupper + + 2021 + Movies + Drama + + + + Catering Christmas + Fledgling caterer Molly Frost is hired by perfectionist Jean Harrison for the renowned Harrison Foundation's annual Christmas Gala, but things get complicated when she falls for Jean's nephew. + + Daniel Lissing + Merritt Patterson + Christopher Hayes + + 2022 + Movies + Christmas + Romance + + + + Catering Christmas + Fledgling caterer Molly Frost is hired by perfectionist Jean Harrison for the renowned Harrison Foundation's annual Christmas Gala, but things get complicated when she falls for Jean's nephew. + + Daniel Lissing + Merritt Patterson + Christopher Hayes + + 2022 + Movies + Christmas + Romance + + + + Christmas Angel + Ashley gets a new job from her neighbor Nick as his assistant in the best work: being a Secret Santa. Nick has sworn her to secrecy, which includes her new friend Will, a reporter in search of a Christmas story for his magazine. + + K.C. Clyde + Kari Hawker + Bruce Davison + + 2009 + Movies + Romance + + + + Crown Prince of Christmas + Madison jokingly tells her overbearing family that she is dating the prince of a small European nation. The joke goes too far as her friend/co-worker Sebastian is roped into impersonating the prince while visiting her family in New Jersey. + + Cindy Busby + Jilon VanOver + Curtis Arney + + 2022 + Movies + Christmas + Drama + + + TVPG + + + + Mrs. Miracle + A single man (James Van Der Beek) hires a nanny (Doris Roberts) to help him care for his 6-year-old twins. + + James Van Der Beek + Erin Karpluk + Doris Roberts + + 2009 + Movies + Drama + + + TVPG + + + 3 + + + + A Cinderella Christmas + At a holiday masquerade ball, Angie and Nicholas meet and fall for each other anonymously. While Nicholas tries to locate the girl of his dreams, Angie must choose between pursuing her lifelong dream of running a business or following her heart. + + Emma Rigby + Peter Porte + Sarah Stouffer + + 2016 + Movies + Christmas + Romance + + + TVG + + + + Christmas in Pine Valley + A reporter interviews an entrepreneur thinking her company is family owned, not knowing it is run by her friends. + + Kristina Cole + Andrew Biernat + Rene Ashton + + 2022 + Movies + Christmas + Romance + + + + A Lot Like Christmas + Jessica owns the most popular Christmas tree lot in Hudson Springs, but when big-city marketing executive Clay Moore moves a big box chain store into the area and starts selling trees, Jessica finds her business in jeopardy. + + Maggie Lawson + Christopher Russell + Marlie Collins + + 2021 + Movies + Christmas + Romance + + + TVPG + + + + A Match Made at Christmas + Romantic, small-town girl Holly, and realist, career-driven, Chris aren't a likely pair, but when Holly's all-knowing great-aunt. + + Micah Lynn Hanson + Tim Llewellyn + Aubrey Shimek Davis + + 2021 + Movies + Romance + + + + Christmas on Candy Cane Lane + Ivy Donaldson struggles with her mom's shadow, Muriel, the Christmas darling of Icicle Falls. She is now separated from her husband Rob and tries her best with her daughter. + + Andrea Barber + Dan Payne + Kerensa Cooper + + 2022 + Movies + Hallowe'en + Drama + + + TVPG + + + + A Hot Cocoa Christmas + After Haley Lloyd has been burned by countless suitors, it's refreshing when shy but handsome Claud falls for her, unaware of her true identity: However, when that truth inevitably comes out, it puts their budding Christmas romance at risk. + + Susie Abromeit + Torrance Coombs + James Rottger + + 2021 + Movies + Christmas + Romance + + + TVPG + + + + RX Men + Doc Oyie, Doc Jai, Doc Dean and Doc Marie attend to patients who need their help. + Health + + + + Pinas Sarap + Exploring the history of Filipino cuisine. + Documentary + + + + Sarap, 'Di Ba? + Cooking talk show. + + Carmina Villarroel + Mavy Legaspi + Cassy Legaspi + + Talk Shows + Food + + + + Tunay Na Buhay + Inspiring real-life stories display hope, courage and determination. + Documentary + + + + Pinoy M.D. + The hosts provide important information and shed light on different illnesses, diseases, and medical concerns. + Performing Arts + + + + Reel Life Weekend + Performing Arts + + + + Telesine + Performing Arts + + + + Telesine + Performing Arts + + + + Weekend Getaway + Adventure seekers go on weekend trips. Hosted by Drew Arellano. + + Drew Arellano + + Travel + + + + Sarap, 'Di Ba? + Cooking talk show. + + Carmina Villarroel + Mavy Legaspi + Cassy Legaspi + + Talk Shows + Food + + + + Biyahe Ni Drew + Finding ways to explore the Philippines on a budget. + Travel + + + + I-Bilib + Scientific experiments; exploring scientific facts and theories surrounding everyday events. + Reality TV + Science + + + + CAYETANO IN ACTION WITH BOY ABUNDA + Performing Arts + + + + Taste Buddies + Solenn and Rhian treat viewers to a wide array of taste for food, fashion, trends, and places. + + Solenn Heussaff + Rhian Ramos + + Fashion + Food + + + + Farm to Table + Food + + + + Ang Pinaka + News and public affairs. + News + + + + Aha + The host explores and learns about the science behind ordinary, everyday things through demonstrations and discussions with experts. + Performing Arts + Science + + + + Pop Talk + Reviewing various restaurants, travel destinations and gadgets. + Talk Shows + Performing Arts + + + + Pinas Sarap + Exploring the history of Filipino cuisine. + Documentary + + + + Maynila + Drama about family and relationships, featuring the typical Filipino lifestyle. + Drama + + + + Pinoy M.D. + The hosts provide important information and shed light on different illnesses, diseases, and medical concerns. + Performing Arts + + + + Farm to Table + Food + + + + Pinas Sarap + Exploring the history of Filipino cuisine. + Documentary + + + + Biyahe Ni Drew + Finding ways to explore the Philippines on a budget. + Travel + + + + Negoshente + Variety + + + + Tunay Na Buhay + Inspiring real-life stories display hope, courage and determination. + Documentary + + + + Turbo Zone + The host talks about motoring from the point of view of vehicle owners and provides tips and tricks on buying and maintaining cars with the help of experts. + Local + + + + Telesine + Performing Arts + + + + Maynila + Drama about family and relationships, featuring the typical Filipino lifestyle. + Drama + + + + Pinas Sarap + Exploring the history of Filipino cuisine. + Documentary + + + + Ang Pinaka + News and public affairs. + News + + + + CAYETANO IN ACTION WITH BOY ABUNDA + Performing Arts + + + + Biyahe Ni Drew + Finding ways to explore the Philippines on a budget. + Travel + + + + I-Bilib + Scientific experiments; exploring scientific facts and theories surrounding everyday events. + Reality TV + Science + + + + Farm to Table + Food + + + + Pinas Sarap + Exploring the history of Filipino cuisine. + Documentary + + + + Biyahe Ni Drew + Finding ways to explore the Philippines on a budget. + Travel + + + + Telesine + Performing Arts + + + + I-Bilib + Scientific experiments; exploring scientific facts and theories surrounding everyday events. + Reality TV + Science + + + + I-Bilib + Scientific experiments; exploring scientific facts and theories surrounding everyday events. + Reality TV + Science + + + + Balita KO + Variety + + + + Pinoy M.D. + The hosts provide important information and shed light on different illnesses, diseases, and medical concerns. + Performing Arts + + + + Reel Life + Performing Arts + + + + Owe My Love + Two strangers from divergent worlds find love after a business deal binds them together. + + Lovi Poe + Benjamin Alves + + Drama + + + + Dapat Alam Mo! + Hosts Patricia Tumulak, Kim Atienza and Susan Enriquez present the social, economic and political issues of the day and highlight the various concerns of the people. + Music + News Magazine + + + + Day Off + Variety + + + + Mornings With GMA Regional TV + News + + + + At Home With GMA Regional TV + News + + + + GMA Regional TV + Positive stories of the people, specifically that of Kapusong Bisdak or Cebuanos. + Variety + + + + GMA Regional TV Early Edition + News + + + + I-Bilib + Scientific experiments; exploring scientific facts and theories surrounding everyday events. + Reality TV + Science + + + + Balita KO + Variety + + + + Dapat Alam Mo! + Hosts Patricia Tumulak, Kim Atienza and Susan Enriquez present the social, economic and political issues of the day and highlight the various concerns of the people. + Music + News Magazine + + + + Turbo Zone + The host talks about motoring from the point of view of vehicle owners and provides tips and tricks on buying and maintaining cars with the help of experts. + Local + + + + Idol Sa Kusina + Chefs cook various dishes. + Food + + + + CAYETANO IN ACTION WITH BOY ABUNDA + Performing Arts + + + + Reel Life + Performing Arts + + + + Owe My Love + Two strangers from divergent worlds find love after a business deal binds them together. + + Lovi Poe + Benjamin Alves + + Drama + + + + Mornings With GMA Regional TV + News + + + + At Home With GMA Regional TV + News + + + + GMA Regional TV + Positive stories of the people, specifically that of Kapusong Bisdak or Cebuanos. + Variety + + + + GMA Regional TV Early Edition + News + + + + Balita KO + Variety + + + + Day Off + Variety + + + + Turbo Zone + The host talks about motoring from the point of view of vehicle owners and provides tips and tricks on buying and maintaining cars with the help of experts. + Local + + + + Dapat Alam Mo! + Hosts Patricia Tumulak, Kim Atienza and Susan Enriquez present the social, economic and political issues of the day and highlight the various concerns of the people. + Music + News Magazine + + + + Idol Sa Kusina + Chefs cook various dishes. + Food + + + + Maynila + Drama about family and relationships, featuring the typical Filipino lifestyle. + Drama + + + + Day Off + Variety + + + + Owe My Love + Two strangers from divergent worlds find love after a business deal binds them together. + + Lovi Poe + Benjamin Alves + + Drama + + + + Owe My Love + Two strangers from divergent worlds find love after a business deal binds them together. + + Lovi Poe + Benjamin Alves + + Drama + + + + Balita KO + Variety + + + + Farm to Table + Food + + + + Reel Life + Performing Arts + + + + Owe My Love + Two strangers from divergent worlds find love after a business deal binds them together. + + Lovi Poe + Benjamin Alves + + Drama + + + + Dapat Alam Mo! + Hosts Patricia Tumulak, Kim Atienza and Susan Enriquez present the social, economic and political issues of the day and highlight the various concerns of the people. + Music + News Magazine + + + + I-Bilib + Scientific experiments; exploring scientific facts and theories surrounding everyday events. + Reality TV + Science + + + + Day Off + Variety + + + + Mornings With GMA Regional TV + News + + + + At Home With GMA Regional TV + News + + + + GMA Regional TV + Positive stories of the people, specifically that of Kapusong Bisdak or Cebuanos. + Variety + + + + GMA Regional TV Early Edition + News + + + + Tunay Na Buhay + Inspiring real-life stories display hope, courage and determination. + Documentary + + + + Balita KO + Variety + + + + Dapat Alam Mo! + Hosts Patricia Tumulak, Kim Atienza and Susan Enriquez present the social, economic and political issues of the day and highlight the various concerns of the people. + Music + News Magazine + + + + Aha + The host explores and learns about the science behind ordinary, everyday things through demonstrations and discussions with experts. + Performing Arts + Science + + + + Taste Buddies + Solenn and Rhian treat viewers to a wide array of taste for food, fashion, trends, and places. + + Solenn Heussaff + Rhian Ramos + + Fashion + Food + + + + Idol Sa Kusina + Chefs cook various dishes. + Food + + + + Pop Talk + Reviewing various restaurants, travel destinations and gadgets. + Talk Shows + Performing Arts + + + + Turbo Zone + The host talks about motoring from the point of view of vehicle owners and provides tips and tricks on buying and maintaining cars with the help of experts. + Local + + + + Reel Life + Performing Arts + + + + Owe My Love + Two strangers from divergent worlds find love after a business deal binds them together. + + Lovi Poe + Benjamin Alves + + Drama + + + + Mornings With GMA Regional TV + News + + + + At Home With GMA Regional TV + News + + + + GMA Regional TV + Positive stories of the people, specifically that of Kapusong Bisdak or Cebuanos. + Variety + + + + GMA Regional TV Early Edition + News + + + + Balita KO + Variety + + + + Day Off + Variety + + + + Aha + The host explores and learns about the science behind ordinary, everyday things through demonstrations and discussions with experts. + Performing Arts + Science + + + + Dapat Alam Mo! + Hosts Patricia Tumulak, Kim Atienza and Susan Enriquez present the social, economic and political issues of the day and highlight the various concerns of the people. + Music + News Magazine + + + + I-Bilib + Scientific experiments; exploring scientific facts and theories surrounding everyday events. + Reality TV + Science + + + + Idol Sa Kusina + Chefs cook various dishes. + Food + + + + Pinas Sarap + Exploring the history of Filipino cuisine. + Documentary + + + + Day Off + Variety + + + + Owe My Love + Two strangers from divergent worlds find love after a business deal binds them together. + + Lovi Poe + Benjamin Alves + + Drama + + + + Owe My Love + Two strangers from divergent worlds find love after a business deal binds them together. + + Lovi Poe + Benjamin Alves + + Drama + + + + Balita KO + Variety + + + + Pop Talk + Reviewing various restaurants, travel destinations and gadgets. + Talk Shows + Performing Arts + + + + Reel Life + Performing Arts + + + + Owe My Love + Two strangers from divergent worlds find love after a business deal binds them together. + + Lovi Poe + Benjamin Alves + + Drama + + + + Dapat Alam Mo! + Hosts Patricia Tumulak, Kim Atienza and Susan Enriquez present the social, economic and political issues of the day and highlight the various concerns of the people. + Music + News Magazine + + + + Turbo Zone + The host talks about motoring from the point of view of vehicle owners and provides tips and tricks on buying and maintaining cars with the help of experts. + Local + + + + Day Off + Variety + + + + Mornings With GMA Regional TV + News + + + + At Home With GMA Regional TV + News + + + + GMA Regional TV + Positive stories of the people, specifically that of Kapusong Bisdak or Cebuanos. + Variety + + + + GMA Regional TV Early Edition + News + + + + Turbo Zone + The host talks about motoring from the point of view of vehicle owners and provides tips and tricks on buying and maintaining cars with the help of experts. + Local + + + + Balita KO + Variety + + + + Dapat Alam Mo! + Hosts Patricia Tumulak, Kim Atienza and Susan Enriquez present the social, economic and political issues of the day and highlight the various concerns of the people. + Music + News Magazine + + + + Pop Talk + Reviewing various restaurants, travel destinations and gadgets. + Talk Shows + Performing Arts + + + + Tunay Na Buhay + Inspiring real-life stories display hope, courage and determination. + Documentary + + + + Idol Sa Kusina + Chefs cook various dishes. + Food + + + + Aha + The host explores and learns about the science behind ordinary, everyday things through demonstrations and discussions with experts. + Performing Arts + Science + + + + Negoshente + Variety + + + + Reel Life + Performing Arts + + + + Owe My Love + Two strangers from divergent worlds find love after a business deal binds them together. + + Lovi Poe + Benjamin Alves + + Drama + + + + Mornings With GMA Regional TV + News + + + + At Home With GMA Regional TV + News + + + + GMA Regional TV + Positive stories of the people, specifically that of Kapusong Bisdak or Cebuanos. + Variety + + + + GMA Regional TV Early Edition + News + + + + The $100,000 Pyramid + Celebrity contestants include Rob Gronkowski, Julian Edelman, Bobby Moynihan and Kelly Osbourne. + + + + The $100,000 Pyramid + Celebrity contestants Bellamy Young and Weird Al Yankovic. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + People Puzzler + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + + + + People Puzzler + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + People Puzzler + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + + + + People Puzzler + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + H2O X5 - Super Powerful 5-In-1 Multi-Use Steam Cleaner + Kills 990f Bacteria, Viruses, and Germs with Steam! The 5-in-1 Lightweight, Fast, Powerful, And Completely Chemical Free Steam Cleaner! Lift and remove dirt and stains all around the home! + + + + CHRISTINA HALL and Jacuzzi® amazing bathroom makeovers + SPECIAL OFFER + Trusted brand Jacuzzi® and renowned interior designer, Christina Hall can help you transform your old bathroom into a gorgeous custom, safe and stylish space. Jacuzzi® has limited time special offers to make your dream bathroom happen today CALL NOW. + + + + LegXercise Pro + LegXercise is the easy-to-use, automatic leg mover that uses continuous movement to soothe pain and promote healthy circulation the natural drug-free way! It's Walking Simulator Technology moves your feet back and forth along its motion track. + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + + + + Cindy Crawford and Ellen Pompeo share secrets + Join Cindy Crawford and Ellen Pompeo as they discuss their busy lives and the breakthrough skin care discovery that keeps them looking their best. Take a trip to the stunning French countryside to see a rare French melon that defies aging. + + + + H2O X5 - Super Powerful 5-In-1 Multi-Use Steam Cleaner + Kills 990f Bacteria, Viruses, and Germs with Steam! The 5-in-1 Lightweight, Fast, Powerful, And Completely Chemical Free Steam Cleaner! Lift and remove dirt and stains all around the home! + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + + + + Let's Make Medicare Easier + Aetna licensed agents can simplify Medicare and help you choose coverage that's right for you! + + + + Jane Seymour, Kate Walsh share their skin secrets + Crepe Erase Ultra visibly transforms your skin with 9 super hydrators! Tune in to see how Jane Seymour and Kate Walsh keep their skin so smooth. Treat and repair the look of crepey skin.Shop at CrepeErase.com. + + + + America Says + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + + + + America Says + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + + + + America Says + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + + + + America Says + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + + + + America Says + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + + + + America Says + The Stunt Crew compete against the Bells to guess how Americans responded to survey questions covering every topic under the sun. + + + + 25 Words or Less + Teams compete to see who can guess secret words or phrases with a limited amount of clues and time; host Meredith Vieira. + + + + 25 Words or Less + Teams compete to see who can guess secret words or phrases with a limited amount of clues and time; host Meredith Vieira. + + + + Common Knowledge + Teams of three compete to answer everyday questions, such as which bill is most frequently removed from circulation for being torn or mangled. + + + + Common Knowledge + Everyday questions that everyone should know, such as what one can add to the laundry rinse cycle to keep black clothes from fading. + + + + Split Second + John Michael Higgins presents three contestants with a question and three possible choices, and whoever buzzes in fastest earns the right to answer first. + + + + Cash Cab + Unsuspecting taxi cab passengers answer trivia questions posed by host Ben Bailey; the passengers may reach their destination with cold hard cash or walk away empty-handed. + + + + Cash Cab + Unsuspecting taxi cab passengers answer trivia questions posed by host Ben Bailey; the passengers may reach their destination with cold hard cash or walk away empty-handed. + + + + Cash Cab + Unsuspecting taxi cab passengers answer trivia questions posed by host Ben Bailey; the passengers may reach their destination with cold hard cash or walk away empty-handed. + + + + America Says + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + + + + America Says + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + + + + America Says + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + Switch + Jeff Hephner challenges contestants who are ranked based on their answers to trivia questions for a chance at $10,000; every question counts, as each answer can propel them to the top or to the bottom, where they'll be in jeopardy of elimination. + + + + Split Second + John Michael Higgins presents three contestants with a question and three possible choices, and whoever buzzes in fastest earns the right to answer first. + + + + The $100,000 Pyramid + Featured celebrities Italia Ricci, Kal Penn, Ayesha Curry and Graham Elliot. + + + + The $100,000 Pyramid + Celebrity contestants Tony Hale and Justin Long. + + + + Family Feud + Hughes family vs. Prather family. + + + + Family Feud + Hughes family vs. Reed family. + + + + Family Feud + Hughes family vs. Reynolds family. + + + + Family Feud + Hughes family vs. Reynolds family. + + + + Family Feud + Carter family vs. Bronston family. + + + + Family Feud + Carter family vs. Hughes family. + + + + Family Feud + Carter family vs. Vernon family. + + + + People Puzzler + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + + + + People Puzzler + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + + + + Paid Programming + Paid programming. + + + + Help Israel & Ukraine + There is an urgent need to help Jews suffering in Israel, Ukraine, and around the world. Act now and support the International Fellowship of Christians and Jews in their lifesaving work. + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remover + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + + + + Tug of Words + Based on the playground game Tug-O-War, teams of two compete to answer word-clue questions correctly and pull the flag on the tug of war rope to their side. + + + + Catch 21 + Players answer trivia questions to build a hand of cards closest to 21. + + + + Person, Place or Thing + A modern take on the age-old game of 20 Questions intersperses comedy with common knowledge; host People's Choice Award winner Melissa Peterman. + + + + Master Minds + Three challengers take on some of the greatest minds in trivia in this exciting showdown of smarts and strategy; the last contestant standing will face off against the episode's highest scoring Master Mind in a head-to-head battle. + + + + People Puzzler + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + + + + People Puzzler + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + + + + Who Wants to Be a Millionaire + Contestants vie for escalating prizes; host Regis Philbin. + + + + Deal or No Deal + Contestants get a chance to win money, from a penny to millions of dollars. + + + + Match Game + Contestants try to match celebrity answers. + + + + Match Game + Contestants try to match celebrity answers. + + + + America Says + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + + + + America Says + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + + + + Hey Yahoo! + Contestants try to predict the top five most common Yahoo! Search answers, leading to hilarious, lively and sometimes unusual guesses. + + + + Split Second + John Michael Higgins presents three contestants with a question and three possible choices, and whoever buzzes in fastest earns the right to answer first. + + + + The $100,000 Pyramid + Celebrities and contestants compete in a word-association game. + + + + Chain Reaction + "Chain Reaction" is back with fan-favorite Dylan Lane returning as host of the popular word puzzle game in which players compete to form chains composed of two-word phrases. + + + + Chain Reaction + "Chain Reaction" is back with fan-favorite Dylan Lane returning as host of the popular word puzzle game in which players compete to form chains composed of two-word phrases. + + + + Master Minds + Three challengers take on some of the greatest minds in trivia in this exciting showdown of smarts and strategy; the last contestant standing will face off against the episode's highest scoring Master Mind in a head-to-head battle. + + + + People Puzzler + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + + + + Switch + Jeff Hephner challenges contestants who are ranked based on their answers to trivia questions for a chance at $10,000; every question counts, as each answer can propel them to the top or to the bottom, where they'll be in jeopardy of elimination. + + + + Split Second + John Michael Higgins presents three contestants with a question and three possible choices, and whoever buzzes in fastest earns the right to answer first. + + + + Press Your Luck + Contestants from Severn, Md.; Newport Beach, Calif; and Redondo Beach, Calif. + + + + Switch + Jeff Hephner challenges contestants who are ranked based on their answers to trivia questions for a chance at $10,000; every question counts, as each answer can propel them to the top or to the bottom, where they'll be in jeopardy of elimination. + + + + Split Second + John Michael Higgins presents three contestants with a question and three possible choices, and whoever buzzes in fastest earns the right to answer first. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + Family Feud + Leister family vs. Johnson family. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + America Says + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + + + + America Says + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + + + + People Puzzler + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + + + + Family Feud + McKissic family vs. Thomas family. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all natural solution for joint pain from inflammation. + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + + + + Cindy Crawford and Ellen Pompeo share secrets + Join Cindy Crawford and Ellen Pompeo as they discuss their busy lives and the breakthrough skin care discovery that keeps them looking their best. Take a trip to the stunning French countryside to see a rare French melon that defies aging. + + + + DraftKings Sportsbook Report + DraftKings Sportsbook, a top-rated sportsbook app! + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. Unlock the secret to a spotless home with Shark Matrix™ Plus 2-in-1 Robot. + + + + Tug of Words + Based on the playground game Tug-O-War, teams of two compete to answer word-clue questions correctly and pull the flag on the tug of war rope to their side. + + + + Catch 21 + Players answer trivia questions to build a hand of cards closest to 21. + + + + Person, Place or Thing + A modern take on the age-old game of 20 Questions intersperses comedy with common knowledge; host People's Choice Award winner Melissa Peterman. + + + + Master Minds + Three challengers take on some of the greatest minds in trivia in this exciting showdown of smarts and strategy; the last contestant standing will face off against the episode's highest scoring Master Mind in a head-to-head battle. + + + + People Puzzler + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + + + + People Puzzler + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + + + + Who Wants to Be a Millionaire + Contestants vie for escalating prizes; host Regis Philbin. + + + + Deal or No Deal + A Rhode Island math teacher finishes his game; a Riverside, Calif., man tries his luck at the $1 million prize. + + + + Match Game + Contestants try to match celebrity answers. + + + + Match Game + Contestants try to match celebrity answers. + + + + America Says + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + + + + America Says + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + + + + Hey Yahoo! + Contestants try to predict the top five most common Yahoo! Search answers, leading to hilarious, lively and sometimes unusual guesses. + + + + Split Second + John Michael Higgins presents three contestants with a question and three possible choices, and whoever buzzes in fastest earns the right to answer first. + + + + The $100,000 Pyramid + Celebrity battles, featuring Bobby Moynihan, Melissa Fumero, Terry Crews and Andre Braugher. + + + + Chain Reaction + "Chain Reaction" is back with fan-favorite Dylan Lane returning as host of the popular word puzzle game in which players compete to form chains composed of two-word phrases. + + + + Chain Reaction + "Chain Reaction" is back with fan-favorite Dylan Lane returning as host of the popular word puzzle game in which players compete to form chains composed of two-word phrases. + + + + Master Minds + Three challengers take on some of the greatest minds in trivia in this exciting showdown of smarts and strategy; the last contestant standing will face off against the episode's highest scoring Master Mind in a head-to-head battle. + + + + People Puzzler + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + + + + Switch + Jeff Hephner challenges contestants who are ranked based on their answers to trivia questions for a chance at $10,000; every question counts, as each answer can propel them to the top or to the bottom, where they'll be in jeopardy of elimination. + + + + Split Second + John Michael Higgins presents three contestants with a question and three possible choices, and whoever buzzes in fastest earns the right to answer first. + + + + Press Your Luck + Contestants from Phoenix, Ariz.; Long Beach, Calif., and Columbus, Ohio. + + + + Switch + Jeff Hephner challenges contestants who are ranked based on their answers to trivia questions for a chance at $10,000; every question counts, as each answer can propel them to the top or to the bottom, where they'll be in jeopardy of elimination. + + + + Split Second + John Michael Higgins presents three contestants with a question and three possible choices, and whoever buzzes in fastest earns the right to answer first. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + America Says + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + + + + America Says + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + + + + People Puzzler + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + + + + Family Feud + McKissic family vs. Rosado family. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + Family Feud + Teams compete to match answers of nationwide surveys. + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. Unlock the secret to a spotless home with Shark Matrix™ Plus 2-in-1 Robot. + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + + + + Overcome Pain with Blair Underwood + Award winning actor, Blair Underwood uncovers the ultimate all natural solution for joint pain from inflammation. + + + + Help Israel & Ukraine + There is an urgent need to help Jews suffering in Israel, Ukraine, and around the world. Act now and support the International Fellowship of Christians and Jews in their lifesaving work. + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. Unlock the secret to a spotless home with Shark Matrix™ Plus 2-in-1 Robot. + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remover + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + + + + Tug of Words + Based on the playground game Tug-O-War, teams of two compete to answer word-clue questions correctly and pull the flag on the tug of war rope to their side. + + + + Catch 21 + Players answer trivia questions to build a hand of cards closest to 21. + + + + Person, Place or Thing + A modern take on the age-old game of 20 Questions intersperses comedy with common knowledge; host People's Choice Award winner Melissa Peterman. + + + + Master Minds + Three challengers take on some of the greatest minds in trivia in this exciting showdown of smarts and strategy; the last contestant standing will face off against the episode's highest scoring Master Mind in a head-to-head battle. + + + + People Puzzler + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + + + + People Puzzler + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + + + + Who Wants to Be a Millionaire + Contestants vie for escalating prizes; host Regis Philbin. + + + + Deal or No Deal + As she plays for $1 million, an Arizona woman finds out she has two chances to win the top prize when her husband plays the game online. + + + + Match Game + Contestants try to match celebrity answers. + + + + Match Game + Contestants try to match celebrity answers. + + + + America Says + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + + + + America Says + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + + + + Hey Yahoo! + Contestants try to predict the top five most common Yahoo! Search answers, leading to hilarious, lively and sometimes unusual guesses. + + + + Split Second + John Michael Higgins presents three contestants with a question and three possible choices, and whoever buzzes in fastest earns the right to answer first. + + + + The $100,000 Pyramid + Celebrity battles, featuring Leslie Jones, Taye Diggs, Sara Foster and Erin Foster. + + + + Chain Reaction + "Chain Reaction" is back with fan-favorite Dylan Lane returning as host of the popular word puzzle game in which players compete to form chains composed of two-word phrases. + + + + Chain Reaction + "Chain Reaction" is back with fan-favorite Dylan Lane returning as host of the popular word puzzle game in which players compete to form chains composed of two-word phrases. + + + + Master Minds + Three challengers take on some of the greatest minds in trivia in this exciting showdown of smarts and strategy; the last contestant standing will face off against the episode's highest scoring Master Mind in a head-to-head battle. + + + + People Puzzler + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + + + + Me caigo de risa + Romeo y Julieta verisón mexicana + Rodrigo Murray en la prueba. + + Yurem Rojas + Mariana Echeverría + Ricardo Margaleff + + Game Shows + Performing Arts + + + + Un Quijote sin mancha + Un abogado, que siempre trata de ayudar a la gente, termina causando enredos y problemas llenos de risas y carcajadas. + + Cantinflas + Angel Carasa + Lupita Ferrer + + 1969 + Movies + Comedy + + + + XH Derbez + El Dr. Frías + Un comercial anuncia cómo poder deshacerse de los locutores por medio del dispositivo. + + Eugenio Derbez + Bárbara Torres + Consuelo Duval + + Comedy + + + TVPG + + + + Faisy Nights + Un espacio con mucha música, entrevistas y humor. + Performing Arts + + + TV14 + + + + La jaula + El departamento que todo hombre desea tener, un lugar único que comparten cuatro amigos de la infancia, quienes tienen un día a la semana para llevar a sus conquistas. + + Rafael Inclán + César Bono + Carlos Benavides + + Comedy + + + TV14 + + + + Perdiendo el juicio + Programa en el que se enjuicia a un famoso por alguna falta que haya cometido o por algo de lo que se le acuse en el medio artístico. + Comedy + + + + Hotel todo Incluido + Diferentes personajes famosos como cantantes, deportistas y actores llegan como invitados especiales a hospedarse en el hotel en donde se presentarán situaciones divertidas. + + Adrián Uribe + + Comedy + + + TV14 + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Me caigo de risa + Romeo y Julieta verisón mexicana + Rodrigo Murray en la prueba. + + Yurem Rojas + Mariana Echeverría + Ricardo Margaleff + + Game Shows + Performing Arts + + + + Faisy Nights + Un espacio con mucha música, entrevistas y humor. + Performing Arts + + + TV14 + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + El Chapulín Colorado animado + Marinero de agua dulce; El código negro, una misión extraña + En el Congreso Mundial de Inventores, el Chapulín se convierte en un marinero que debe salvar a su amiga, quien fue abandonada en el mar. Se anuncia el código negro en una oficina y llaman al Chapulín para solucionar esta extraña misión. + + Jesús Guzmán + Erica Edwards + María Concepción Mendoza Madera + + Animated + Children + + + TVG + + + + El Chavo Animado + Después de más de 30 años de entretenimiento para grandes y pequeños con la serie. + + Jesús Guzmán + Sebastián Llapur + Erica Edwards + + Animated + Children + + + TVG + + + + Cantinflas Show + Cantinflas viaja por la historia para conocer a personajes famosos y deleitar con sus ocurrencias. + + Flavio Ramírez Farfán + + Animated + Performing Arts + + + + La escuelita VIP + Las estrellas más sobresalientes de la comedia mexicana se convierten en alumnos de la escuela creando situaciones hilarantes y haciéndonos recordar las travesuras escolares. + Comedy + + + + Hospital El Paisa + Cuando los clientes de un restaurante se hacen enfermos, el dueño convierte el restaurante en centro médico. + + Galilea Montijo + Héctor Sandarti + Roxana Castellanos + + Comedy + + + TV14 + + + + Que madre tan padre + Mauricio, el padre, es un arquitecto que trabaja para una compañía prestigiosa. Maribel, la madre, es una profesional de mercadotecnia y ventas. + + Maribel Guardia + Mauricio Castillo + Martha Ofelia Galindo + + Comedy + + + TVPG + + + + La jaula + El departamento que todo hombre desea tener, un lugar único que comparten cuatro amigos de la infancia, quienes tienen un día a la semana para llevar a sus conquistas. + + Rafael Inclán + César Bono + Carlos Benavides + + Comedy + + + TV14 + + + + Hotel todo Incluido + Diferentes personajes famosos como cantantes, deportistas y actores llegan como invitados especiales a hospedarse en el hotel en donde se presentarán situaciones divertidas. + + Adrián Uribe + + Comedy + + + TV14 + + + + ¿Cuál es el bueno? + Diversos famosos compiten para descubrir a los farsantes y acumular puntos para su equipo. + Game Shows + Performing Arts + + + TV14 + + + + El padrecito + Un nuevo sacerdote ayuda a los habitantes de un pueblo gracias a las limosnas que recibe en su parroquia. + + Cantinflas + Ángel Garasa + Rosa María Vázquez + + 1964 + Movies + + + + Faisy Nights + La familia disfuncional de. + Performing Arts + + + TV14 + + + + La jaula + El departamento que todo hombre desea tener, un lugar único que comparten cuatro amigos de la infancia, quienes tienen un día a la semana para llevar a sus conquistas. + + Rafael Inclán + César Bono + Carlos Benavides + + Comedy + + + TV14 + + + + Perdiendo el juicio + Programa en el que se enjuicia a un famoso por alguna falta que haya cometido o por algo de lo que se le acuse en el medio artístico. + Comedy + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + ¿Cuál es el bueno? + Diversos famosos compiten para descubrir a los farsantes y acumular puntos para su equipo. + Game Shows + Performing Arts + + + TV14 + + + + Faisy Nights + La familia disfuncional de. + Performing Arts + + + TV14 + + + + La Güereja de mi vida + Pasteles, pasteles y algo más + Benito queda muy enamorado de Elsa, la propietaria de una pastelería, y la Güereja intenta frustrar un asalto, pero termina en un divertido secuestro. + Comedy + + + + La Güereja de mi vida + Ya te vi, Güereja + Benito recibe una llamada para asistir a una reunión con Miss Lamentaciones en la escuela de la Güereja, pero ella tratará de impedirlo que cualquier forma. + Comedy + + + + Mi querida herencia + La entrevista + Diego lleva a cabo sus planes para demostrar que el matrimonio de Charly y Deyanira es una farsa, por lo que filtra por medio de una entrevista varias pruebas que pueden demostrarlo. + + Bárbara Islas + Paul Stanley + Patricio Castillo + + Soaps + Comedy + + + + Mi querida herencia + Los chinitos + Carlos lleva a cabo sus planes cerrar un gran negocio con empresarios coreanos, por lo que Deyanira intenta ayudarlo sin imaginar que podría arruinar el trato. + + Bárbara Islas + Paul Stanley + Patricio Castillo + + Soaps + Comedy + + + + Lorenza, bebé a bordo + El regreso + Lorenza y Emiliano tienen que regresar a la ciudad al enterarse de que Chayo está delicada de salud, pero Juana los descubre y se dispone a llevarse al niño de una vez por todas. + + Bárbara Torres + Moisés Arizmendi + + Comedy + + + + Lorenza, bebé a bordo + Los celos + En la fiesta de bienvenida de Lorenza, Luis Enrique le presenta a Mariana, la nueva chef del Buen Diente que a todos les encanta por su delicioso atole de piñón con piloncillo, esto provocará los celos de Lorenza. + + Bárbara Torres + Moisés Arizmendi + + Comedy + + + + María de Todos los Ángeles + Carnes frías + Rosa cambia el viejo refrigerador de Doña Lucha por uno de nueva tecnología y además parlante, lo cual vuelve loca a Lucha. Maria sorprende a Alberto acaramelado con Gloria y de celos inicia una competencia con Betsabé por un chico guapo. + + Mara Escalante + Ariel Miramontes + Carlos Cobos + + Comedy + + + TVPG + + + + María de Todos los Ángeles + Casino en la Azotea + Se aparece la madre de María quién la abandonó por andar de cantina en cantina y en las ferias. En la azotea juega Doña Lucha con toda su familia, al subir la mamá de María se pone a jugar con ellos, apuesta las cosas de María y pierde todo. + + Mara Escalante + Ariel Miramontes + Carlos Cobos + + Comedy + + + TVPG + + + + Tal para cual + La boda de Nacaranda + Nacaranda y Nacasia acuden con unos magnates empresarios a solicitar apoyo económico para emprender su negocio y uno de ellos se enamora de Nacaranda. + + Consuelo Duval + Lorena de la Garza + Reynaldo Rossano + + Comedy + + + TV14 + + + + Tal para cual + El perfume + Nacaranda recibe, por parte del trabajo, un nuevo perfume hecho a base de feromonas, así que lo prueba en Nacasia quien está desesperada por conseguir novio. + + Consuelo Duval + Lorena de la Garza + Reynaldo Rossano + + Comedy + + + TV14 + + + + ¿Tú crees? + El sobreabasto + Ascienden a Plutarco y ahora se encarga de las compras con los proveedores. Además, don Justo visita a su hijo y lo confunden con un empleado. + + Ricardo Margaleff + Daniela Luján + Tadeo Bonavides + + Comedy + Sitcom + + + + ¿Tú crees? + El gran patrón + Roldán finge ser el dueño del súper para impresionar a un excompañero de escuela, pero las pocas aptitudes de Plutarco y Gaby ponen en riesgo su plan. + + Ricardo Margaleff + Daniela Luján + Tadeo Bonavides + + Comedy + Sitcom + + + + Una familia de diez + Una familia de diez personas vive en un apartamento de sólo dos cuartos, donde reina la locura. + + Jorge Ortiz de Pinedo + Eduardo Manzano + Zully Keith + + Comedy + + + TV14 + + + + Nosotros los guapos + El Vítor y Albertano, los galanes del barrio, tienen que pagar la renta de su apartamento, pero no encuentran trabajo y hacen muchas locuras con tal de tener un techo digno. + + Malillany Marín + Adrián Uribe + Ariel Miramontes + + Soaps + Comedy + + + TV14 + + + + La familia P. Luche + Una familia que trata con los conflictos y problemas de la vida diaria pero en forma cómica y exagerada con la particularidad que viven en una ciudad que está edificada en su totalidad de peluche y con todos los accesorios de peluche. + + Eugenio Derbez + Consuelo Duval + Luis Manuel Ávila + + Sitcom + + + TV14 + + + + XH Derbez + XHDERBEZ es 'el canal' donde Eugenio presenta bromas como si sucedieran dentro de un canal de televisión y en donde los famosos se burlan de sí mismos. + + Eugenio Derbez + Bárbara Torres + Consuelo Duval + + Comedy + + + TV14 + + + + Derbez en Cuando + Presentación del comediante mexicano Eugenio Derbez y la interpretación de diversos personajes. + Comedy + Performing Arts + + + + Al derecho y al Derbez + El comediante Eugenio Derbez demuestra su talento en este divertido programa de comedia familiar, albures, canciones y más. + + Eugenio Derbez + + Comedy + + + TVPG + + + + La hora pico + Un programa de entretenimiento y humorismo sano para toda la familia, que cuenta con una serie de sketches y gags con una gama de personajes y situaciones. + + Consuelo Duval + Miguel Galván + Adrián Uribe + + Comedy + Performing Arts + + + TV14 + + + + ¿Es neta, Eva? + Eva conoce a Miranda, la nueva novia de su exmarido, y se da cuenta de que es mucho más joven que ella. Además, sin querer, tiene un encuentro incómodo con el nuevo jefe. + + Mayrín Villanueva + Pablo Valentín + Nashla Aguilar + + Comedy + Sitcom + + + + Una familia de diez + Una familia de diez personas vive en un apartamento de sólo dos cuartos, donde reina la locura. + + Jorge Ortiz de Pinedo + Eduardo Manzano + Zully Keith + + Comedy + + + TV14 + + + + Nosotros los guapos + El Vítor y Albertano, los galanes del barrio, tienen que pagar la renta de su apartamento, pero no encuentran trabajo y hacen muchas locuras con tal de tener un techo digno. + + Malillany Marín + Adrián Uribe + Ariel Miramontes + + Soaps + Comedy + + + TV14 + + + + Vecinos + Un programa que relata las vidas de los habitantes de un edificio de apartamentos y cómo interactúan entre ellos. Explora de forma amena los conflictos y sucesos divertidos que pueden ocurrir entre los vecinos. + + César Bono + Eduardo España + Macaria + + Sitcom + + + TV14 + + + + 40 y 20 + El onomástico de Toña + Paco es un cuarentón divorciado que se enloquece con las jovencitas y vive con su hijo Fran, un veinteañero con debilidad por las cuarentonas. La única que no parece estar de acuerdo es Rocío, la exesposa y madre. + + Jorge Van Rankin + Mauricio Garza + Michelle Rodríguez + + Sitcom + + + + 40 y 20 + El que esté libre de pecado… + Chío se siente mal, extraña a Fran y va a rezar con el Padre Memo, pero él aprovecha la oportunidad para besarla y ella no lo toma bien. Después, el Padre Memo renuncia a la iglesia para ganarse el corazón de Chío y hasta serenata le lleva. + + Jorge Van Rankin + Mauricio Garza + Michelle Rodríguez + + Sitcom + + + TV14 + + + + Renta congelada + Viernes 13 + Deli quiere festejar el cumpleaños de Tomy, pero ese día es viernes 13 y ella cree que es de mala suerte. Después de hacerse una prueba de sangre, Federico y Luis Alberto descubren que podrían ser familia. + + Rodrigo Murray + Juan Diego Covarrubias + Héctor Sandarti + + Comedy + + + TV14 + + + + Renta congelada + La visita de Tomy + Federico recibe la visita de Tomy que le suelta una. + + Rodrigo Murray + Juan Diego Covarrubias + Héctor Sandarti + + Comedy + + + TV14 + + + + Alma de Ángel + La trabajadora doméstica + Ángel tiene problemas con las labores en la casa, por lo que decide contratar a una mujer que lo ayude, pero las intenciones de ella no son buenas y Alma no permitirá que se aproveche de su familia. + + Niurka Marcos + Julio Bracho + Raúl Araiza + + Soaps + Comedy + + + + Alma de Ángel + Contacto con el más allá + Alexa y Juanjo descubren a Paco durmiendo con su papá, lo que les hace pensar que son homosexuales. Paco está conectado con Alma y ahora siente cosas por Ángel. Una médium intenta ponerse en contacto con Alma. + + Niurka Marcos + Julio Bracho + Raúl Araiza + + Soaps + Comedy + + + + Simón dice + Feliz cumpleaños + Las chicas inventan una fiesta sorpresa en casa de Diana para ocultar que habían olvidado el cumpleaños de Bety, pero Simón usará sus trucos para lograr que su esposa haga lo que él diga. + + Arath de la Torre + Nora Salinas + Dalilah Polanco + + Comedy + + + + Simón dice + Gallo gallina + César sufre por la pérdida de su libro de recetas familiares antiguas, que fue desjohado por Bety, pero Simón le da el consejo ideal para que su mujer se aleje de sus cosas. + + Arath de la Torre + Nora Salinas + Dalilah Polanco + + Comedy + + + + Durmiendo con mi Jefe + Feliz cumpleaños + Carlos logra reconciliarse con Gina y le propone matrimonio, noticia que no cae bien a su familia y jefe. + + Jorge Ortiz de Pinedo + Raúl Araiza + Cecilia Galeano + + Comedy + Performing Arts + + + TV14 + + + + Durmiendo con mi Jefe + El hijo pródigo + Por azares del destino, Carlos encuentra al hijo de Gael y se entera de que es gay, pero Urrutia no lo sabe. Carlos tratará de esconder el secreto a toda costa. + + Jorge Ortiz de Pinedo + Raúl Araiza + Cecilia Galeano + + Comedy + Performing Arts + + + TV14 + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + La Güereja de mi vida + La colegiatura o la vida + Benito debe varias colegiaturas de la Güereja, quien está muy preocupada ante la posibilidad de que no la dejen entrar al escuela. Benito debe tomar medidas urgentes. + Comedy + + + + La Güereja de mi vida + El método A. Wilson + El director Severiano planea ser más enérgico, sobre todo con la Güereja, así que implantará su famoso Método A. Wilson para que la pequeña aprenda cosas nuevas. + Comedy + + + + Mi querida herencia + La luna de miel + Diego le regala a Carlos un viaje a la playa para que disfrute de su luna de miel, pero Deyanira complicará las cosas cuando tenga que subir al avión, debido a su miedo a las alturas. + + Bárbara Islas + Paul Stanley + Patricio Castillo + + Soaps + Comedy + + + + Mi querida herencia + La ex + El exnovio de Deyanira aparece en la mansión para llevar a cabo sus planes y poder recuperar su amor, sin imaginar que solo complicaría más las cosas entre ella y Charly. + + Bárbara Islas + Paul Stanley + Patricio Castillo + + Soaps + Comedy + + + + Lorenza, bebé a bordo + La otra jefa + Tras su regreso a Aerosol, Lorenza se enfrenta a quién tomó su lugar, la nueva jefa de sobrecargos Romina Guzmán, una antigua rival con la que tuvo un malentendido y la odia. + + Bárbara Torres + Moisés Arizmendi + + Comedy + + + + Lorenza, bebé a bordo + Mamá tóxica + Lorenza inscribe a Emiliano en un curso de verano impartido por la Cuquis, la famosa blogger, pero le cuesta mucho trabajo estar lejos del pequeño y hace todo lo posible para volver a verlo. Luis Enrique cree que Lorenza está desaparecida. + + Bárbara Torres + Moisés Arizmendi + + Comedy + + + + María de Todos los Ángeles + Placentex Antiesponge + Rosa recomienda a su hermano Albertano para presentar el nuevo shampoo Placentex Antiesponge. Maria le plancha el uniforme de Elvis y provoca los celos de Doña Lucha, que se lo arruga. + + Mara Escalante + Ariel Miramontes + Carlos Cobos + + Comedy + + + TVPG + + + + María de Todos los Ángeles + El Extraño Mundo de los Comerciantes + Es el baile anual de los pequeños comerciantes, María va acompañada de Albertano. En la fiesta Rosa Aurora conoce al dueño de varias cremerías, él compra todos los boletos y la ganadora a reina es Rosa. Llega un amor de la presidenta del sindicato. + + Mara Escalante + Ariel Miramontes + Carlos Cobos + + Comedy + + + TVPG + + + + Una familia de diez + Una familia de diez personas vive en un apartamento de sólo dos cuartos, donde reina la locura. + + Jorge Ortiz de Pinedo + Eduardo Manzano + Zully Keith + + Comedy + + + TV14 + + + + Nosotros los guapos + El Vítor y Albertano, los galanes del barrio, tienen que pagar la renta de su apartamento, pero no encuentran trabajo y hacen muchas locuras con tal de tener un techo digno. + + Malillany Marín + Adrián Uribe + Ariel Miramontes + + Soaps + Comedy + + + TV14 + + + + Fútbol UEFA Champions League + Cobertura de los partidos de la UEFA Champions League, el torneo de clubes más importante de Europa. + Sports + Soccer + + + + La familia P. Luche + Una familia que trata con los conflictos y problemas de la vida diaria pero en forma cómica y exagerada con la particularidad que viven en una ciudad que está edificada en su totalidad de peluche y con todos los accesorios de peluche. + + Eugenio Derbez + Consuelo Duval + Luis Manuel Ávila + + Sitcom + + + TV14 + + + + XH Derbez + XHDERBEZ es 'el canal' donde Eugenio presenta bromas como si sucedieran dentro de un canal de televisión y en donde los famosos se burlan de sí mismos. + + Eugenio Derbez + Bárbara Torres + Consuelo Duval + + Comedy + + + TV14 + + + + Derbez en Cuando + Presentación del comediante mexicano Eugenio Derbez y la interpretación de diversos personajes. + Comedy + Performing Arts + + + + Al derecho y al Derbez + El comediante Eugenio Derbez demuestra su talento en este divertido programa de comedia familiar, albures, canciones y más. + + Eugenio Derbez + + Comedy + + + TVPG + + + + La hora pico + Un programa de entretenimiento y humorismo sano para toda la familia, que cuenta con una serie de sketches y gags con una gama de personajes y situaciones. + + Consuelo Duval + Miguel Galván + Adrián Uribe + + Comedy + Performing Arts + + + TV14 + + + + ¿Es neta, Eva? + Para tener más ingresos, Eva decide iniciar su negocio vendiendo dulces y papitas en el trabajo a escondidas de su jefe. Además, es el cumpleaños de Eva y su familia quiere festejarlo. + + Mayrín Villanueva + Pablo Valentín + Nashla Aguilar + + Comedy + Sitcom + + + + Una familia de diez + Una familia de diez personas vive en un apartamento de sólo dos cuartos, donde reina la locura. + + Jorge Ortiz de Pinedo + Eduardo Manzano + Zully Keith + + Comedy + + + TV14 + + + + Nosotros los guapos + El Vítor y Albertano, los galanes del barrio, tienen que pagar la renta de su apartamento, pero no encuentran trabajo y hacen muchas locuras con tal de tener un techo digno. + + Malillany Marín + Adrián Uribe + Ariel Miramontes + + Soaps + Comedy + + + TV14 + + + + Vecinos + Un programa que relata las vidas de los habitantes de un edificio de apartamentos y cómo interactúan entre ellos. Explora de forma amena los conflictos y sucesos divertidos que pueden ocurrir entre los vecinos. + + César Bono + Eduardo España + Macaria + + Sitcom + + + TV14 + + + + 40 y 20 + Cuando los hermanos se encuentran + Paco es un cuarentón divorciado que se enloquece con las jovencitas y vive con su hijo Fran, un veinteañero con debilidad por las cuarentonas. La única que no parece estar de acuerdo es Rocío, la exesposa y madre. + + Jorge Van Rankin + Mauricio Garza + Michelle Rodríguez + + Sitcom + + + + 40 y 20 + El cumbia open + Paco invita a su vecina a ver una película, pero ella quiere bailar y ahora él pide ayuda a Toña y a Brayan para que le enseñen a bailar. Luego, se inscriben en el concurso de baile del mercado de la colonia. + + Jorge Van Rankin + Mauricio Garza + Michelle Rodríguez + + Sitcom + + + TV14 + + + + Renta congelada + El sonámbulo + Lucía no tiene a dónde ir a parar y Fer la lleva a su casa para que se quede con él. Por algún extraño motivo, Nico se despierta todos los días en la calle. + + Rodrigo Murray + Juan Diego Covarrubias + Héctor Sandarti + + Comedy + + + TV14 + + + + Renta congelada + La yegua de Troya + Federico quiere hacerse el interesante y trata de darle celos a Yolanda y Delia con una nueva invitada. Además, Sam y Milton se vuelven mejores amigos, pero su amistad dura poco. + + Rodrigo Murray + Juan Diego Covarrubias + Héctor Sandarti + + Comedy + + + TV14 + + + + Alma de Ángel + Visita inesperada + Marcela, la prima de Alma, viene de visita a la ciudad y pone la casa a la venta. Alma idea un plan para resolver sus problemas con Dios y Marcela. + + Niurka Marcos + Julio Bracho + Raúl Araiza + + Soaps + Comedy + + + + Alma de Ángel + Malentendidos + Medellín despide a Paco y a Ángel al pensar de que son pareja. Alma busca a Yolanda para aclarar sus malentendidos. + + Niurka Marcos + Julio Bracho + Raúl Araiza + + Soaps + Comedy + + + + Simón dice + Aprieta el asterisco + Las mujeres, preocupadas por la salud de sus esposos, los obligan a hacerse un chequeo de próstata. Simón se burla de sus amigos, sin imaginarse que Diana le tiene preparada una visita sorpresa. + + Arath de la Torre + Nora Salinas + Dalilah Polanco + + Comedy + + + + Simón dice + Hazle como El Santo + Simón aconseja a los chicos que defiendan su territorio, tal como él lo hizo cuando El Hijo del Santo le reclamó a Diana por un error que cometió en la floristería. + + Arath de la Torre + Nora Salinas + Dalilah Polanco + + Comedy + + + + Durmiendo con mi Jefe + Eramos pocos + Desesperado, Carlos le cede su departamento a Gael. Cuando se arrepiente, regresa y averigua que tiene dos nuevos inquilinos. + + Jorge Ortiz de Pinedo + Raúl Araiza + Cecilia Galeano + + Comedy + Performing Arts + + + TV14 + + + + Durmiendo con mi Jefe + Como veo doy + Urrutia quiere ayudar a su yerno y vista un casino clandestino donde pierde todos los ahorros de la boda de Carlos. + + Jorge Ortiz de Pinedo + Raúl Araiza + Cecilia Galeano + + Comedy + Performing Arts + + + TV14 + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + La Güereja de mi vida + La gran venta de la revolución + Benito tiene una cena importante con unos clientes de la agencia de autos en donde trabaja y es el encargado de preparar la cena, pero no cuenta con que la Güereja estará lista para ayudarlo. + Comedy + + + + La Güereja de mi vida + El festín de la Güereja + Benito apuesta con Manolo y su jefe que gana el equipo de fútbol América. Éste pierde, así que tiene que hacer una divertida venta el Día de la Revolución Mexicana. + Comedy + + + + Mi querida herencia + Terapia de pareja + Diego y Nana sospechan que el matrimonio de Charly y Deyanira podría terminar debido a que no han dormido juntos varias noches, por lo que deciden llevarlos con una psicóloga para que mejoren su relación. + + Bárbara Islas + Paul Stanley + Patricio Castillo + + Soaps + Comedy + + + + Mi querida herencia + Fiesta sorpresa + Deyanira prepara una fiesta sorpresa para festejar el cumpleaños de Charly, pero las cosas se le complican cuando unos hombres de negocios aparecen en la mansión. + + Bárbara Islas + Paul Stanley + Patricio Castillo + + Soaps + Comedy + + + + Lorenza, bebé a bordo + La suegra llegó + Sarita, la mamá de Luis Enrique, llega de visita de Monterrey, pero ella no sabe que su hijo regresó con Lorenza. Luis Enrique tendrá que librarse del embrollo cuando ambas se enteren de la verdad. + + Bárbara Torres + Moisés Arizmendi + + Comedy + + + + Lorenza, bebé a bordo + La prueba de embarazo + Lorenza considera que Luciano es un mal partido para su amiga y le propone que le hagan creer que la prueba de embarazo salió positiva para ver su reacción. Las cosas se salen de control cuando Luciano desaparece después de saber la noticia. + + Bárbara Torres + Moisés Arizmendi + + Comedy + + + + María de Todos los Ángeles + Domingo en Chapultepec + El Chino necesita visitar el Museo de Antropología e Historia para un trabajo de la escuela. María se ofrece a acompañarlo y compromete a Albertano a ir con ellos. Sin embargo, los jóvenes pasan una romántica tarde hasta que se acuerdan lo prometido. + + Mara Escalante + Ariel Miramontes + Carlos Cobos + + Comedy + + + TVPG + + + + María de Todos los Ángeles + La Fonda + Don Carmelo quiere abrir una fonda en donde el platillo principal serían quelite, pero María no apaga la estufa y se queman, así que le piden ayuda a Doña Lucha para que cocine, al no tener muchos ingredientes, planea preparar sopa de lince. + + Mara Escalante + Ariel Miramontes + Carlos Cobos + + Comedy + + + TVPG + + + + Una familia de diez + Una familia de diez personas vive en un apartamento de sólo dos cuartos, donde reina la locura. + + Jorge Ortiz de Pinedo + Eduardo Manzano + Zully Keith + + Comedy + + + TV14 + + + + Nosotros los guapos + El Vítor y Albertano, los galanes del barrio, tienen que pagar la renta de su apartamento, pero no encuentran trabajo y hacen muchas locuras con tal de tener un techo digno. + + Malillany Marín + Adrián Uribe + Ariel Miramontes + + Soaps + Comedy + + + TV14 + + + + Fútbol UEFA Champions League + Cobertura de los partidos de la UEFA Champions League, el torneo de clubes más importante de Europa. + Sports + Soccer + + + + La familia P. Luche + Una familia que trata con los conflictos y problemas de la vida diaria pero en forma cómica y exagerada con la particularidad que viven en una ciudad que está edificada en su totalidad de peluche y con todos los accesorios de peluche. + + Eugenio Derbez + Consuelo Duval + Luis Manuel Ávila + + Sitcom + Comedy + + + TV14 + + + + XH Derbez + XHDERBEZ es 'el canal' donde Eugenio presenta bromas como si sucedieran dentro de un canal de televisión y en donde los famosos se burlan de sí mismos. + + Eugenio Derbez + Bárbara Torres + Consuelo Duval + + Comedy + + + TV14 + + + + America Says + Wrestlers vs. The Villasenors + Two teams of friends and family race against a clock to guess how America filled in the blanks on a series of survey questions covering every topic under the sun. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Split Second + Well I Could Order a Long Island Ice Tea + John Michael Higgins presents three contestants with a question and three possible choices, and whoever buzzes in fastest earns the right to answer first. + Game Shows + + + + The $100,000 Pyramid + Rob Gronkowski vs. Julian Edelman and Bobby Moynihan vs. Kelly Osbourne + Celebrity contestants include Rob Gronkowski, Julian Edelman, Bobby Moynihan and Kelly Osbourne.Guests: Rob Gronkowski, Julian Edelman, Bobby Moynihan, Kelly Osbourne.. + Game Shows + Comedy + + + TV14 + + + + The $100,000 Pyramid + Bellamy Young vs. Weird Al Yankovic + Celebrity contestants Bellamy Young and Weird Al Yankovic.Guests: Bellamy Young,.. + Game Shows + Comedy + + + TV14 + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + People Puzzler + Midwestern Spirit + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + Game Shows + + + TVPG + + + + People Puzzler + All You Can Eat + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + People Puzzler + Dude, Where's My Puzzle? + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + Game Shows + + + TVPG + + + + People Puzzler + Soul Squad + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + H2O X5 - Super Powerful 5-In-1 Multi-Use Steam Cleaner + Kills 990f Bacteria, Viruses, and Germs with Steam! The 5-in-1 Lightweight, Fast, Powerful, And Completely Chemical Free Steam Cleaner! Lift and remove dirt and stains all around the home! + Paid Program + + + + CHRISTINA HALL and Jacuzzi® amazing bathroom makeovers + SPECIAL OFFER + Trusted brand Jacuzzi® and renowned interior designer, Christina Hall can help you transform your old bathroom into a gorgeous custom, safe and stylish space. Jacuzzi® has limited time special offers to make your dream bathroom happen today CALL NOW. + Paid Program + Home + + + + LegXercise Pro + LegXercise is the easy-to-use, automatic leg mover that uses continuous movement to soothe pain and promote healthy circulation the natural drug-free way! It's Walking Simulator Technology moves your feet back and forth along its motion track. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Cindy Crawford and Ellen Pompeo share secrets + Join Cindy Crawford and Ellen Pompeo as they discuss their busy lives and the breakthrough skin care discovery that keeps them looking their best. Take a trip to the stunning French countryside to see a rare French melon that defies aging. + Paid Program + + + + H2O X5 - Super Powerful 5-In-1 Multi-Use Steam Cleaner + Kills 990f Bacteria, Viruses, and Germs with Steam! The 5-in-1 Lightweight, Fast, Powerful, And Completely Chemical Free Steam Cleaner! Lift and remove dirt and stains all around the home! + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Let's Make Medicare Easier + Aetna licensed agents can simplify Medicare and help you choose coverage that's right for you! + Paid Program + + + + Jane Seymour, Kate Walsh share their skin secrets + Crepe Erase Ultra visibly transforms your skin with 9 super hydrators! Tune in to see how Jane Seymour and Kate Walsh keep their skin so smooth. Treat and repair the look of crepey skin.Shop at CrepeErase.com. + Paid Program + + + + America Says + Team Spellbound vs. Karaoke Cool + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + Game Shows + + + TVPG + + + + America Says + Football Parents vs. The Fishers + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + Game Shows + + + TVPG + + + + America Says + Mental Health Experts vs. Marathon Runners + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + Game Shows + + + TVPG + + + + America Says + Family Church vs. Canine Crew + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + Game Shows + + + TVPG + + + + America Says + Sassy Stewards vs. Baseball Fanatics + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + Game Shows + + + TVPG + + + + America Says + The Stunt Crew vs. The Bells + The Stunt Crew compete against the Bells to guess how Americans responded to survey questions covering every topic under the sun. + Game Shows + + + TVPG + + + + 25 Words or Less + Teams compete to see who can guess secret words or phrases with a limited amount of clues and time; host Meredith Vieira. + Game Shows + + + TVPG + + + + 25 Words or Less + Taye Diggs and Steven Weber vs. Mary McCormack and Ana Ortiz + Teams compete to see who can guess secret words or phrases with a limited amount of clues and time; host Meredith Vieira. + Game Shows + + + TVPG + + + + Common Knowledge + Travel Moms vs. Clark Cousins + Teams of three compete to answer everyday questions, such as which bill is most frequently removed from circulation for being torn or mangled. + Game Shows + + + TVPG + + + + Common Knowledge + Dance Team vs. The Earleys + Everyday questions that everyone should know, such as what one can add to the laundry rinse cycle to keep black clothes from fading. + Game Shows + + + TVPG + + + + Split Second + Let's Do It the O.G. Way + John Michael Higgins presents three contestants with a question and three possible choices, and whoever buzzes in fastest earns the right to answer first. + Game Shows + + + + Cash Cab + Unsuspecting taxi cab passengers answer trivia questions posed by host Ben Bailey; the passengers may reach their destination with cold hard cash or walk away empty-handed. + Game Shows + + + TVG + + + + Cash Cab + Unsuspecting taxi cab passengers answer trivia questions posed by host Ben Bailey; the passengers may reach their destination with cold hard cash or walk away empty-handed. + Game Shows + + + TVG + + + + Cash Cab + Unsuspecting taxi cab passengers answer trivia questions posed by host Ben Bailey; the passengers may reach their destination with cold hard cash or walk away empty-handed. + Game Shows + + + TVG + + + + America Says + Flag Football League vs. Faith Friends + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + Game Shows + + + TVPG + + + + America Says + Restaurant Staff vs. Church Choir + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + Game Shows + + + TVPG + + + + America Says + Festival Crew vs. The Buchanans + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Switch + Spaghetti Fanatic + Jeff Hephner challenges contestants who are ranked based on their answers to trivia questions for a chance at $10,000; every question counts, as each answer can propel them to the top or to the bottom, where they'll be in jeopardy of elimination. + Game Shows + + + TVPG + + + + Split Second + Sir, Your Seatbelt is not Fastened + John Michael Higgins presents three contestants with a question and three possible choices, and whoever buzzes in fastest earns the right to answer first. + Game Shows + + + + The $100,000 Pyramid + Italia Ricci vs. Kal Penn and Ayesha Curry vs. Graham Elliot + Featured celebrities Italia Ricci, Kal Penn, Ayesha Curry and Graham Elliot.Guests: Italia Ricci, Kal Penn, Ayesha Curry, Graham Elliot.. + Game Shows + Comedy + + + TV14 + + + + The $100,000 Pyramid + Tony Hale vs. Justin Long + Celebrity contestants Tony Hale and Justin Long.Guests: Tony Hale, Justin Long.. + Game Shows + Comedy + + + TV14 + + + + Family Feud + Hughes family vs. Prather family. + Game Shows + + + TVPG + + + + Family Feud + Hughes family vs. Reed family. + Game Shows + + + TVPG + + + + Family Feud + Hughes family vs. Reynolds family. + Game Shows + + + TVPG + + + + Family Feud + Hughes family vs. Reynolds family. + Game Shows + + + TVPG + + + + Family Feud + Carter family vs. Bronston family. + Game Shows + + + TVPG + + + + Family Feud + Carter family vs. Hughes family. + Game Shows + + + TVPG + + + + Family Feud + Carter family vs. Vernon family. + Game Shows + + + TVPG + + + + People Puzzler + Don't Poke Me + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + Game Shows + + + TVPG + + + + People Puzzler + Count by Boxes + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Help Israel & Ukraine + There is an urgent need to help Jews suffering in Israel, Ukraine, and around the world. Act now and support the International Fellowship of Christians and Jews in their lifesaving work. + Paid Program + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Tug of Words + Based on the playground game Tug-O-War, teams of two compete to answer word-clue questions correctly and pull the flag on the tug of war rope to their side. + Game Shows + + + TVPG + + + + Catch 21 + Players answer trivia questions to build a hand of cards closest to 21. + Game Shows + + + TVG + + + + Person, Place or Thing + A modern take on the age-old game of 20 Questions intersperses comedy with common knowledge; host People's Choice Award winner Melissa Peterman. + Game Shows + + + TVPG + + + + Master Minds + Three challengers take on some of the greatest minds in trivia in this exciting showdown of smarts and strategy; the last contestant standing will face off against the episode's highest scoring Master Mind in a head-to-head battle. + Game Shows + + + TVPG + + + + People Puzzler + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + Game Shows + + + TVPG + + + + People Puzzler + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + Game Shows + + + TVPG + + + + Who Wants to Be a Millionaire + Contestants vie for escalating prizes; host Regis Philbin. + Game Shows + + + TVPG + + + + Deal or No Deal + Contestants get a chance to win money, from a penny to millions of dollars. + Game Shows + + + TVPG + + + + Match Game + Contestants try to match celebrity answers. + Game Shows + + + TVPG + + + + Match Game + Contestants try to match celebrity answers. + Game Shows + + + TVPG + + + + America Says + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + Game Shows + + + TVPG + + + + America Says + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + Game Shows + + + TVPG + + + + Hey Yahoo! + Contestants try to predict the top five most common Yahoo! Search answers, leading to hilarious, lively and sometimes unusual guesses. + Game Shows + + + + Split Second + John Michael Higgins presents three contestants with a question and three possible choices, and whoever buzzes in fastest earns the right to answer first. + Game Shows + + + + The $100,000 Pyramid + Adam Rodriguez vs. Erika Christensen and Rob Riggle vs. Lauren Ash + Celebrity battles, featuring Adam Rodriguez, Erika Christensen, Rob Riggle and Lauren Ash.Guests: Adam Rodriguez, Erika Christensen, Rob Riggle, Lauren Ash.. + Game Shows + Comedy + + + TV14 + + + + Chain Reaction + The Sales Ladies vs. The Jazz Band + Game Shows + + + TVPG + + + + Chain Reaction + The Soccer Squad vs. The Decade Divas + Game Shows + + + TVPG + + + + Master Minds + Trivia, Smarts & Nope + Three challengers take on some of the greatest minds in trivia in this exciting showdown of smarts and strategy; the last contestant standing will face off against the episode's highest scoring Master Mind in a head-to-head battle. + Game Shows + + + TVPG + + + + People Puzzler + Fresh Egg Delivery + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + Game Shows + + + TVPG + + + + Switch + Thank You, Hulk Hogan + Jeff Hephner challenges contestants who are ranked based on their answers to trivia questions for a chance at $10,000; every question counts, as each answer can propel them to the top or to the bottom, where they'll be in jeopardy of elimination. + Game Shows + + + TVPG + + + + Split Second + Sleeping on a Block of Ice + John Michael Higgins presents three contestants with a question and three possible choices, and whoever buzzes in fastest earns the right to answer first. + Game Shows + + + + Press Your Luck + Whammageddon! + Contestants from Severn, Md.; Newport Beach, Calif; and Redondo Beach, Calif. + Game Shows + + + TVPG + + + + Switch + Go Get 'Em, Tiger! + Jeff Hephner challenges contestants who are ranked based on their answers to trivia questions for a chance at $10,000; every question counts, as each answer can propel them to the top or to the bottom, where they'll be in jeopardy of elimination. + Game Shows + + + TVPG + + + + Split Second + Let's Go Rogue! + John Michael Higgins presents three contestants with a question and three possible choices, and whoever buzzes in fastest earns the right to answer first. + Game Shows + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Leister family vs. Johnson family. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + America Says + Middle School Staff vs. Wellness Warriors + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + Game Shows + + + TVPG + + + + America Says + The Backpackers vs. Foodie Moms + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + Game Shows + + + TVPG + + + + People Puzzler + Show Me the Money + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + Game Shows + + + TVPG + + + + Family Feud + McKissic family vs. Thomas family. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + Cindy Crawford and Ellen Pompeo share secrets + Join Cindy Crawford and Ellen Pompeo as they discuss their busy lives and the breakthrough skin care discovery that keeps them looking their best. Take a trip to the stunning French countryside to see a rare French melon that defies aging. + Paid Program + + + + DraftKings Sportsbook Report + DraftKings Sportsbook, a top-rated sportsbook app! + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + Paid Program + + + TV14 + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Tug of Words + Made for Each Other + Based on the playground game Tug-O-War, teams of two compete to answer word-clue questions correctly and pull the flag on the tug of war rope to their side. + Game Shows + + + TVPG + + + + Catch 21 + Twenty-One or Twenty-None + Players answer trivia questions to build a hand of cards closest to 21. + Game Shows + + + TVG + + + + Person, Place or Thing + A modern take on the age-old game of 20 Questions intersperses comedy with common knowledge; host People's Choice Award winner Melissa Peterman. + Game Shows + + + TVPG + + + + Master Minds + Trivia, Smarts & The Pony Express + Three challengers take on some of the greatest minds in trivia in this exciting showdown of smarts and strategy; the last contestant standing will face off against the episode's highest scoring Master Mind in a head-to-head battle. + Game Shows + + + TVPG + + + + People Puzzler + Readers and Teachers and Winners, Oh My! + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + Game Shows + + + TVPG + + + + People Puzzler + Somebody's Boo + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + Game Shows + + + TVPG + + + + Who Wants to Be a Millionaire + Contestants vie for escalating prizes; host Regis Philbin. + Game Shows + + + TVPG + + + + Deal or No Deal + A Rhode Island math teacher finishes his game; a Riverside, Calif., man tries his luck at the $1 million prize. + Game Shows + + + TVPG + + + + Match Game + Contestants try to match celebrity answers. + Game Shows + + + TVPG + + + + Match Game + Contestants try to match celebrity answers. + Game Shows + + + TVPG + + + + America Says + The Montenegros vs. Helping Hands + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + Game Shows + + + TVPG + + + + America Says + Tennis Champs vs. Club Crawlers + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + Game Shows + + + TVPG + + + + Hey Yahoo! + Stairs Going West + Contestants try to predict the top five most common Yahoo! Search answers, leading to hilarious, lively and sometimes unusual guesses. + Game Shows + + + + Split Second + Where Did I Put My Clothes? + John Michael Higgins presents three contestants with a question and three possible choices, and whoever buzzes in fastest earns the right to answer first. + Game Shows + + + + The $100,000 Pyramid + Bobby Moynihan vs. Melissa Fumero and Terry Crews vs. Andre Braugher + Celebrity battles, featuring Bobby Moynihan, Melissa Fumero, Terry Crews and Andre Braugher.Guests: Bobby Moynihan, Melissa Fumero, Terry Crews, Andre Braugher.. + Game Shows + Comedy + + + TV14 + + + + Chain Reaction + The Teachers vs. The Princi-Pals + Game Shows + + + TVPG + + + + Chain Reaction + Moms Next Door vs. Mama & The Boys + Game Shows + + + TVPG + + + + Master Minds + Trivia, Smarts & Lipstick + Three challengers take on some of the greatest minds in trivia in this exciting showdown of smarts and strategy; the last contestant standing will face off against the episode's highest scoring Master Mind in a head-to-head battle. + Game Shows + + + TVPG + + + + People Puzzler + Twinnies! + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + Game Shows + + + TVPG + + + + Switch + Who Doesn't Like a Nice Lei? + Jeff Hephner challenges contestants who are ranked based on their answers to trivia questions for a chance at $10,000; every question counts, as each answer can propel them to the top or to the bottom, where they'll be in jeopardy of elimination. + Game Shows + + + TVPG + + + + Split Second + Rock N' Roll Teacher + John Michael Higgins presents three contestants with a question and three possible choices, and whoever buzzes in fastest earns the right to answer first. + Game Shows + + + + Press Your Luck + Craziest Day of My Life! + Contestants from Phoenix, Ariz.; Long Beach, Calif., and Columbus, Ohio. + Game Shows + + + TVPG + + + + Switch + A Boy and His Hats + Jeff Hephner challenges contestants who are ranked based on their answers to trivia questions for a chance at $10,000; every question counts, as each answer can propel them to the top or to the bottom, where they'll be in jeopardy of elimination. + Game Shows + + + TVPG + + + + Split Second + Love Cannot Exist in a Vacuum + John Michael Higgins presents three contestants with a question and three possible choices, and whoever buzzes in fastest earns the right to answer first. + Game Shows + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + America Says + Pizza Parents vs. Cal Poly Pals + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + Game Shows + + + TVPG + + + + America Says + The Santanas vs. Gamers + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + Game Shows + + + TVPG + + + + People Puzzler + Movie Royalty + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + Game Shows + + + TVPG + + + + Family Feud + McKissic family vs. Rosado family. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Overcome Pain with Blair Underwood + Award winning actor, Blair Underwood uncovers the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Help Israel & Ukraine + There is an urgent need to help Jews suffering in Israel, Ukraine, and around the world. Act now and support the International Fellowship of Christians and Jews in their lifesaving work. + Paid Program + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Tug of Words + Vegas Love + Based on the playground game Tug-O-War, teams of two compete to answer word-clue questions correctly and pull the flag on the tug of war rope to their side. + Game Shows + + + TVPG + + + + Catch 21 + Royally Flushed + Players answer trivia questions to build a hand of cards closest to 21. + Game Shows + + + TVG + + + + Person, Place or Thing + A modern take on the age-old game of 20 Questions intersperses comedy with common knowledge; host People's Choice Award winner Melissa Peterman. + Game Shows + + + TVPG + + + + Master Minds + Trivia, Smarts & Tiny Sea Creatures + Three challengers take on some of the greatest minds in trivia in this exciting showdown of smarts and strategy; the last contestant standing will face off against the episode's highest scoring Master Mind in a head-to-head battle. + Game Shows + + + TVPG + + + + People Puzzler + Nurses Make Everything Better + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + Game Shows + + + TVPG + + + + People Puzzler + Don't Blink! + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + Game Shows + + + TVPG + + + + Who Wants to Be a Millionaire + Contestants vie for escalating prizes; host Regis Philbin. + Game Shows + + + TVPG + + + + Deal or No Deal + As she plays for $1 million, an Arizona woman finds out she has two chances to win the top prize when her husband plays the game online. + Game Shows + + + TVPG + + + + Match Game + Contestants try to match celebrity answers. + Game Shows + + + TVPG + + + + Match Game + Contestants try to match celebrity answers. + Game Shows + + + TVPG + + + + America Says + Working Moms vs. Friendsgiving + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + Game Shows + + + TVPG + + + + America Says + Surgical Nurses vs. Vital Nurses + Two teams face off to guess Americans' responses to questions covering every topic under the sun; John Michael Higgins hosts. + Game Shows + + + TVPG + + + + Hey Yahoo! + Living on a Boat Under the Stars + Contestants try to predict the top five most common Yahoo! Search answers, leading to hilarious, lively and sometimes unusual guesses. + Game Shows + + + + Split Second + Dark and Weird + John Michael Higgins presents three contestants with a question and three possible choices, and whoever buzzes in fastest earns the right to answer first. + Game Shows + + + + The Opal Hunter With Jason and Mark + Mark showcases the finest opals, colored diamonds, and sapphires directly from Australia. Presented by Gem Shopping. + Shopping + + + + Rare Gems and Fine Jewelry With Brian + An expansive collection of exotic colored gemstones and fine jewelry. Presented by Gem Shopping. + Shopping + + + + Elegant Jewelry Designs & Colored Gemstones With Tara + A collection of modern jewelry featuring invisible set gems along with international estate collections. Presented by Gem Shopping. + Shopping + + + + Modani Jewels With Marvin + Rare colored diamond and gem collection closeouts. Presented by Gem Shopping. + Shopping + + + + The Opal Hunter With Natasha and Mark + Mark showcases the finest opals, colored diamonds, and sapphires directly from Australia. Presented by Gem Shopping. + Shopping + + + + The Opal Hunter With Natasha and Mark + Mark showcases the finest opals, colored diamonds, and sapphires directly from Australia. Presented by Gem Shopping. + Shopping + + + + Magnificent Jewelry & Colored Gemstones With Stu + Multi-generational jewelers show high-end collector loose gems and fine jewelry. Presented by Gem Shopping. + Shopping + + + + Modani Jewels With Jason + Rare colored diamond and gem collection closeouts. Presented by Gem Shopping. + Shopping + + + + Artisan Gems & Jewelry With Tara + Designer handcrafted jewelry featuring colored gemstones and diamonds. + Shopping + + + + Beverly Hills Estate Jewelry With Marvin + Father-daughter duo Kurt and Amy curate collections of modern and vintage estate jewelry featuring diamonds and colored gems. Presented by Gem Shopping. + Shopping + + + + Beverly Hills Estate Jewelry With Marvin + Father-daughter duo Kurt and Amy curate collections of modern and vintage estate jewelry featuring diamonds and colored gems. Presented by Gem Shopping. + Shopping + + + + Elegant Jewelry Designs & Colored Gemstones With Brian + A collection of modern jewelry featuring invisible set gems along with international estate collections. Presented by Gem Shopping. + Shopping + + + + Artisan Gems & Jewelry With Natasha + Designer handcrafted jewelry featuring colored gemstones and diamonds. + Shopping + + + + Jewelry Extravaganza With Mike + A high-energy show featuring a selection of contemporary jewelry and gems from around the world. Presented by Gem Shopping. + Shopping + + + + Beverly Hills Estate Jewelry With Jason + Father-daughter duo Kurt and Amy curate collections of modern and vintage estate jewelry featuring diamonds and colored gems. Presented by Gem Shopping. + Shopping + + + + Beverly Hills Estate Jewelry With Jason + Father-daughter duo Kurt and Amy curate collections of modern and vintage estate jewelry featuring diamonds and colored gems. Presented by Gem Shopping. + Shopping + + + + The Opal Hunter With Juliana + Mark showcases the finest opals, colored diamonds, and sapphires directly from Australia. Presented by Gem Shopping. + Shopping + + + + Jewelry Extravaganza With Mike + A high-energy show featuring a selection of contemporary jewelry and gems from around the world. Presented by Gem Shopping. + Shopping + + + + Beverly Hills Estate Jewelry With Marvin + Father-daughter duo Kurt and Amy curate collections of modern and vintage estate jewelry featuring diamonds and colored gems. Presented by Gem Shopping. + Shopping + + + + Alianza Lima Athlético vs. Universitario de Deportes + Universitario de Deportes vs. Alianza Lima + Final, 1st Leg. + Sports + Soccer + + + + Nacional vs. River Plate (URU) + River Plate vs. Nacional + From Parque Federico Omar Saroldi Stadium. + Sports + Soccer + + + + Portugol + Highlights from Liga NOS, Portugal's top soccer league also known as Primeira Liga. + Sports + Talk Show + + + + Tu Fútbol - Ecuador + Weekly analysis of Ecuador soccer matches. + Sports + Soccer + + + + Go Go Goal + Sports + Soccer + + + + Tu fútbol: Uruguay + Weekly analysis of Uruguay soccer matches. + Sports + Soccer + + + + SD Aucas vs. Deportivo Cuenca + C.D. Cuenca vs. Aucas + From Alejandro Serrano Aguilar Stadium in Cuenca, Ecuador. + Sports + Soccer + + + TV14 + + + + Portugol + Highlights from Liga NOS, Portugal's top soccer league also known as Primeira Liga. + Sports + Talk Show + + + + Javier Romero y Roxana Garcia Introducen + Javier Romero y Roxana Garcia introducen historias de personas que han encontrado una solución totalmente natural para aliviar el dolor articular causado por inflamación. + Paid Program + + + + Descubra una solución natural para el dolor + Connie Craig-Carrol y el fundador Ken Meares investigan OmegaXL, una solución totalmente natural para el dolor articular causado por la inflamación. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Descubra una solución natural para el dolor + Connie Craig-Carrol y el fundador Ken Meares investigan OmegaXL, una solución totalmente natural para el dolor articular causado por la inflamación. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Go Go Goal + Sports + Soccer + + + + The Football Review + The latest soccer news, match highlights and features from around the globe. + Sports + Football + + + + Vitória SC vs. Moreirense + Moreirense vs. Vitória SC + From Jogos Comendador Joaquim de Almeida Freitas Park in Moreira de Conegos, Portugal. + Sports + Soccer + + + TVY7 + + + + Técnico Universitario vs. Mushuc Runa + Mushuc Runa vs. Técnico Universitario + From Cooperativa de Ahorro y Crédito Mushuc Runa Stadium in Echa Leche, Tungurahua, Ecuador. + Sports + Soccer + + + + Tu fútbol: Uruguay + Weekly analysis of Uruguay soccer matches. + Sports + Soccer + + + + Go Go Goal + Sports + Soccer + + + + Clube de Futebol Estrela da Amadora vs. Sporting Clube de Portugal + Sporting Clube de Portugal vs. Clube de Futebol Estrela da Amadora + From Jose Alvalade Stadium in Lisbon, Portugal. + Sports + Soccer + + + TVPG + + + + The Football Review + The latest soccer news, match highlights and features from around the globe. + Sports + Football + + + + El Nacional vs. Barcelona Sporting Club + Barcelona vs. CD El Nacional + From Isidro Romero Carbo Monumental Stadium in Guayaquil, Ecuador. + Sports + Soccer + + + + Liverpool Fútbol Club vs. Peñarol + Peñarol vs. Liverpool + From Campeón del Siglo Stadium in Montevideo, Uruguay. + Sports + Soccer + + + + Portugol + Highlights from Liga NOS, Portugal's top soccer league also known as Primeira Liga. + Sports + Talk Show + + + + Estoril vs. Porto + FC Porto vs. Estoril + From Dragao Stadium in Porto, Norte, Portugal. + Sports + Soccer + + + TV14 + + + + CD Universidad Católica vs. Liga de Quito + L.D.U. de Quito vs. CD Universidad Católica + From Rodrigo Paz Delgado in Quito, Ecuador. + Sports + Soccer + + + + Gil Vicente Futebol Club vs. Famalicão + Famalicão vs. Gil Vicente + From 22 de Junho Municipal Stadium in Vila Nova de Famalicao, Norte, Portugal. + Sports + Soccer + + + TVY7 + + + + Portugol + Highlights from Liga NOS, Portugal's top soccer league also known as Primeira Liga. + Sports + Talk Show + + + + Tu fútbol: Uruguay + Weekly analysis of Uruguay soccer matches. + Sports + Soccer + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Tu Fútbol - Ecuador + Weekly analysis of Ecuador soccer matches. + Sports + Soccer + + + + Go Go Goal + Sports + Soccer + + + + The Football Review + The latest soccer news, match highlights and features from around the globe. + Sports + Football + + + + Emelec vs. Guayaquil City + Guayaquil City vs. C.S. Emelec + From Christian Benítez Betancourt Stadium. + Sports + Soccer + + + TVPG + + + + Tu fútbol: Uruguay + Weekly analysis of Uruguay soccer matches. + Sports + Soccer + + + + Portugol + Highlights from Liga NOS, Portugal's top soccer league also known as Primeira Liga. + Sports + Talk Show + + + + Estoril vs. Porto + FC Porto vs. Estoril + From Dragao Stadium in Porto, Norte, Portugal. + Sports + Soccer + + + TV14 + + + + Tu Fútbol - Ecuador + Weekly analysis of Ecuador soccer matches. + Sports + Soccer + + + + Libertad vs. CD Universidad Católica + CD Universidad Católica vs. Libertad + From Olimpico Atahualpa Stadium in Quito, Ecuador. + Sports + Soccer + + + TVPG + + + + Tu fútbol: Uruguay + Weekly analysis of Uruguay soccer matches. + Sports + Soccer + + + + The Football Review + The latest soccer news, match highlights and features from around the globe. + Sports + Football + + + + Benfica vs. GD Chaves + Chaves vs. Benfica + From Estádio Municipal de Chaves in Chaves, Norte, Portugal. + Sports + Soccer + + + TVY7 + + + + Go Go Goal + Sports + Soccer + + + + El Nacional vs. Barcelona Sporting Club + Barcelona vs. CD El Nacional + From Isidro Romero Carbo Monumental Stadium in Guayaquil, Ecuador. + Sports + Soccer + + + + El Nacional vs. Barcelona Sporting Club + Barcelona vs. CD El Nacional + From Isidro Romero Carbo Monumental Stadium in Guayaquil, Ecuador. + Sports + Soccer + + + + Tu fútbol: Uruguay + Weekly analysis of Uruguay soccer matches. + Sports + Soccer + + + + The Football Review + The latest soccer news, match highlights and features from around the globe. + Sports + Football + + + + Vitória SC vs. Moreirense + Moreirense vs. Vitória SC + From Jogos Comendador Joaquim de Almeida Freitas Park in Moreira de Conegos, Portugal. + Sports + Soccer + + + TVY7 + + + + Tu fútbol: Uruguay + Weekly analysis of Uruguay soccer matches. + Sports + Soccer + + + + Go Go Goal + Sports + Soccer + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + The Football Review + The latest soccer news, match highlights and features from around the globe. + Sports + Football + + + + Gil Vicente Futebol Club vs. Famalicão + Famalicão vs. Gil Vicente + From 22 de Junho Municipal Stadium in Vila Nova de Famalicao, Norte, Portugal. + Sports + Soccer + + + TVY7 + + + + Tu Fútbol - Ecuador + Weekly analysis of Ecuador soccer matches. + Sports + Soccer + + + + Independiente del Valle vs. Liga de Quito + L.D.U. de Quito vs. Independiente del Valle + From Rodrigo Paz Delgado in Quito, Ecuador. + Sports + Soccer + + + TVPG + + + + Nacional vs. River Plate (URU) + River Plate vs. Nacional + From Centenario Stadium in Montevideo, Uruguay. + Sports + Soccer + + + + Go Go Goal + Sports + Soccer + + + + Tu fútbol: Uruguay + Weekly analysis of Uruguay soccer matches. + Sports + Soccer + + + + Portugol + Highlights from Liga NOS, Portugal's top soccer league also known as Primeira Liga. + Sports + Talk Show + + + + Tu Fútbol - Ecuador + Weekly analysis of Ecuador soccer matches. + Sports + Soccer + + + + Alianza Lima Athlético vs. Universitario de Deportes + Universitario de Deportes vs. Alianza Lima + Final, 1st Leg. + Sports + Soccer + + + + Liverpool Fútbol Club vs. Peñarol + Peñarol vs. Liverpool + From Campeón del Siglo Stadium in Montevideo, Uruguay. + Sports + Soccer + + + + Clube de Futebol Estrela da Amadora vs. Sporting Clube de Portugal + Sporting Clube de Portugal vs. Clube de Futebol Estrela da Amadora + From Jose Alvalade Stadium in Lisbon, Portugal. + Sports + Soccer + + + TVPG + + + + The Football Review + The latest soccer news, match highlights and features from around the globe. + Sports + Football + + + + Técnico Universitario vs. Mushuc Runa + Mushuc Runa vs. Técnico Universitario + From Cooperativa de Ahorro y Crédito Mushuc Runa Stadium in Echa Leche, Tungurahua, Ecuador. + Sports + Soccer + + + + Tu Fútbol - Ecuador + Weekly analysis of Ecuador soccer matches. + Sports + Soccer + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Libertad vs. CD Universidad Católica + CD Universidad Católica vs. Libertad + From Olimpico Atahualpa Stadium in Quito, Ecuador. + Sports + Soccer + + + TVPG + + + + Benfica vs. GD Chaves + Chaves vs. Benfica + From Estádio Municipal de Chaves in Chaves, Norte, Portugal. + Sports + Soccer + + + TVY7 + + + + Tu Fútbol - Ecuador + Weekly analysis of Ecuador soccer matches. + Sports + Soccer + + + + Tu fútbol: Uruguay + Weekly analysis of Uruguay soccer matches. + Sports + Soccer + + + + SD Aucas vs. Deportivo Cuenca + C.D. Cuenca vs. Aucas + From Alejandro Serrano Aguilar Stadium in Cuenca, Ecuador. + Sports + Soccer + + + TV14 + + + + Portugol + Highlights from Liga NOS, Portugal's top soccer league also known as Primeira Liga. + Sports + Talk Show + + + + PGA Tour Golf + World Wide Technology Championship, Third Round + Those who survive the cut compete in the third round of the World Wide Technology Championship. El Cardonal at Diamante Cabo San Lucas, a Tiger Woods design, hosts the tournament for the first time. The course is a par 72 that stretches 7,452 yards. + Sports + Golf + + + + LPGA Tour Golf + TOTO Japan Classic, Final Round + From Taihelyo Club Minori Course in Omitama, Ibaraki, Japan. + Sports + Golf + + + + LPGA Tour Golf + TOTO Japan Classic, Final Round + From Taihelyo Club Minori Course in Omitama, Ibaraki, Japan. + Sports + Golf + + + + PGA Tour Golf + World Wide Technology Championship, Third Round + Those who survive the cut compete in the third round of the World Wide Technology Championship. El Cardonal at Diamante Cabo San Lucas, a Tiger Woods design, hosts the tournament for the first time. The course is a par 72 that stretches 7,452 yards. + Sports + Golf + + + + PGA Tour Champions Golf + TimberTech Championship, Second Round + From The Old Course at Broken Sound in Boca Raton, Fla. + Sports + Golf + + + + Golf + Rolex Challenge Tour Grand Final, Final Round + From Club de Golf Alcanada in , Balearic Islands, Spain. + Sports + Golf + + + + Playing Lessons From the Pros + Keegan Bradley + 2011 PGA Championship and multi-time PGA TOUR winner, Keegan Bradley, joins Bones on the course and shares the tips and strategies that have led to his impressive career. Keegan gives unique advice on how he. + Sports + Golf + + + TVG + + + + Golf Central Pregame + Golf Central Pregame preps viewers for all the tournament action, with up-to-date scores, interviews, and analysis. + Sports + Golf + + + TVG + + + + PGA Tour Champions Golf + TimberTech Championship, Final Round + From The Old Course at Broken Sound in Boca Raton, Fla. + Sports + Golf + + + + PGA Tour Golf + World Wide Technology Championship, Final Round + The World Wide Technology Championship reaches its conclusion with the final round. The tournament began in 2007, becoming the first PGA Tour event held in Mexico. Viktor Hovland is the only two-time winner, taking home trophies in 2020 and 2021. + Sports + Golf + + + + Golf Central + Keep up with everything that's happening in the world of golf. The game's only live, daily news source provides more than just scores, delivering in depth analysis, breaking news, and unforgettable highlights. + + Brian Hammons + Lynda Cardwell + + Sports + News + + + TVG + + + + PGA Tour Golf + World Wide Technology Championship, Final Round + The World Wide Technology Championship reaches its conclusion with the final round. The tournament began in 2007, becoming the first PGA Tour event held in Mexico. Viktor Hovland is the only two-time winner, taking home trophies in 2020 and 2021. + Sports + Golf + + + + Golf Central + Keep up with everything that's happening in the world of golf. The game's only live, daily news source provides more than just scores, delivering in depth analysis, breaking news, and unforgettable highlights. + + Brian Hammons + Lynda Cardwell + + Sports + News + + + TVG + + + + PGA Tour Champions Golf + TimberTech Championship, Final Round + From The Old Course at Broken Sound in Boca Raton, Fla. + Sports + Golf + + + + PGA Tour Champions Golf + TimberTech Championship, Final Round + From The Old Course at Broken Sound in Boca Raton, Fla. + Sports + Golf + + + + PGA Tour Golf + World Wide Technology Championship, Final Round + The World Wide Technology Championship reaches its conclusion with the final round. The tournament began in 2007, becoming the first PGA Tour event held in Mexico. Viktor Hovland is the only two-time winner, taking home trophies in 2020 and 2021. + Sports + Golf + + + + Golf Central + Keep up with everything that's happening in the world of golf. The game's only live, daily news source provides more than just scores, delivering in depth analysis, breaking news, and unforgettable highlights. + + Brian Hammons + Lynda Cardwell + + Sports + News + + + TVG + + + + Golf Central + Keep up with everything that's happening in the world of golf. The game's only live, daily news source provides more than just scores, delivering in depth analysis, breaking news, and unforgettable highlights. + + Brian Hammons + Lynda Cardwell + + Sports + News + + + TVG + + + + Golf Central + Keep up with everything that's happening in the world of golf. The game's only live, daily news source provides more than just scores, delivering in depth analysis, breaking news, and unforgettable highlights. + + Brian Hammons + Lynda Cardwell + + Sports + News + + + TVG + + + + Golf Central + Keep up with everything that's happening in the world of golf. The game's only live, daily news source provides more than just scores, delivering in depth analysis, breaking news, and unforgettable highlights. + + Brian Hammons + Lynda Cardwell + + Sports + News + + + TVG + + + + PGA Tour Golf + World Wide Technology Championship, Final Round + The World Wide Technology Championship reaches its conclusion with the final round. The tournament began in 2007, becoming the first PGA Tour event held in Mexico. Viktor Hovland is the only two-time winner, taking home trophies in 2020 and 2021. + Sports + Golf + + + + PGA Tour Golf + World Wide Technology Championship, Final Round + The World Wide Technology Championship reaches its conclusion with the final round. The tournament began in 2007, becoming the first PGA Tour event held in Mexico. Viktor Hovland is the only two-time winner, taking home trophies in 2020 and 2021. + Sports + Golf + + + + GOLF Films + Peter The Great - The Life and Times of Peter Alliss + The story of how. + Sports + Golf + + + TVG + + + + GOLF Films + Shane Lowry - Open + The remarkable story of how Irishman Shane Lowry emerged from a Gaelic Games background to become a Major winner in the unlikely arena of golf, claiming the British Open in 2019. + Sports + Golf + + + TVG + + + + U.S. Open Golf Highlights + 2000 + Tiger Woods dominates Pebble Beach and the field to win his first U.S. Open title. His fifteen stroke margin of victory was the largest in major tournament history. + Sports + Golf + + + TVG + + + + PGA Championship Highlights + 2012: Rory McIlroy + Budding superstar Rory McIlroy routs the field at the 2012 PGA Championship at the Ocean Course at Kiawah Island for his second major championship victory. + Sports + Golf + + + TVG + + + + PGA TOUR: The CUT + Highlighting the lives and interests of the players that make up the world of golf while offering fans a new and modern look at the PGA Tour and its players. + Sports + Golf + + + TVG + + + + PGA TOUR Champions Learning Center + Tips and tricks from the legends of the game. + Sports + Golf + + + + PGA Tour Golf + World Wide Technology Championship, Final Round + The World Wide Technology Championship reaches its conclusion with the final round. The tournament began in 2007, becoming the first PGA Tour event held in Mexico. Viktor Hovland is the only two-time winner, taking home trophies in 2020 and 2021. + Sports + Golf + + + + PGA Tour Golf + World Wide Technology Championship, Final Round + The World Wide Technology Championship reaches its conclusion with the final round. The tournament began in 2007, becoming the first PGA Tour event held in Mexico. Viktor Hovland is the only two-time winner, taking home trophies in 2020 and 2021. + Sports + Golf + + + + PGA Tour Golf + World Wide Technology Championship, Final Round + The World Wide Technology Championship reaches its conclusion with the final round. The tournament began in 2007, becoming the first PGA Tour event held in Mexico. Viktor Hovland is the only two-time winner, taking home trophies in 2020 and 2021. + Sports + Golf + + + + Golf Channel Academy + Angela Stanford - Putting + The 2018 Evian Champion, Angela Stanford, discusses how an improved putter allowed her to win her first major. + Sports + Golf + + + TVG + + + + Golf Channel Academy + Angela Stanford - Short Game + Angela Stanford tries to help improve short game play. Angela highlights how to improve distance control through improved contact, and how to hit a variety of shots around the green. + Sports + Golf + + + TVG + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Ninja Woodfire Outdoor Grill + Meet the Shark Ninja Wood Fire Grill, with Master Grill, BBQ Smoke, and Air Fry outdoor capabilities. Powered by electricity and flavored by real burning wood pellets, Woodfire Technology allows you to easily create rich flavor you can see and taste. + Paid Program + + + + Pain Relief TV + Matt's pain from his 20 year old lost limb is solved. + Paid Program + + + + Legends Tour Highlights + 2023 Staysure PGA Seniors Championship + The best moments and analysis from this year's senior tour. + Sports + Golf + + + + LPGA Tour Golf + TOTO Japan Classic, Final Round + From Taihelyo Club Minori Course in Omitama, Ibaraki, Japan. + Sports + Golf + + + + PGA Tour Champions Golf + TimberTech Championship, Final Round + From The Old Course at Broken Sound in Boca Raton, Fla. + Sports + Golf + + + + Golf + Rolex Challenge Tour Grand Final, Final Round + From Club de Golf Alcanada in , Balearic Islands, Spain. + Sports + Golf + + + + PGA TOUR: The CUT + Highlighting the lives and interests of the players that make up the world of golf while offering fans a new and modern look at the PGA Tour and its players. + Sports + Golf + + + TVG + + + + PGA TOUR Champions Learning Center + Tips and tricks from the legends of the game. + Sports + Golf + + + + Epson Tour Highlights + 2023 Black Desert Resort Championship + Highlights from the Epson Tour, an LPGA qualifying organization. + Sports + Golf + + + + Niiice Shot With Stephen Curry + Jordan Spieth's Bunker Hole-Out + Stephen Curry tries to recreate Jordan Spieth's iconic bunker shot from the 2017 Travelers Championship. + Sports + Golf + + + + Niiice Shot With Stephen Curry + Tiger Woods' Flop Shot + Stephen Curry tries to hole-out just like Tiger Woods did from the deep rough at the 2012 Memorial. + Sports + Golf + + + TV14 + + + + Niiice Shot With Stephen Curry + Rory McIlroy's Fairway Hole-Out + Stephen Curry tries to replicate Rory McIlroy's wedge shot from 137 yards out at the 2016 Tour Championship. + Sports + Golf + + + + Niiice Shot With Stephen Curry + Tiger Woods' Stinger + Tiger Woods used the 2-iron stinger throughout his career. Now Stephen, Andre, Michelle and Stephen's swing coach Alex try to master the art. + Sports + Golf + + + + Tommy's Honour + Tom and Tommy Morris, father and son pioneers of professional golf, relied on skill, business acumen and working-class street smarts to make Tommy one of the world's first sports superstars and found the modern game of golf. + + Peter Mullan + Jack Lowden + Ophelia Lovibond + + 2016 + Movies + History + + + TVG + + + 2 + + + + Tommy's Honour + Tom and Tommy Morris, father and son pioneers of professional golf, relied on skill, business acumen and working-class street smarts to make Tommy one of the world's first sports superstars and found the modern game of golf. + + Peter Mullan + Jack Lowden + Ophelia Lovibond + + 2016 + Movies + History + + + TVG + + + 2 + + + + Tommy's Honour + Tom and Tommy Morris, father and son pioneers of professional golf, relied on skill, business acumen and working-class street smarts to make Tommy one of the world's first sports superstars and found the modern game of golf. + + Peter Mullan + Jack Lowden + Ophelia Lovibond + + 2016 + Movies + History + + + TVG + + + 2 + + + + PGA TOUR: The CUT + Highlighting the lives and interests of the players that make up the world of golf while offering fans a new and modern look at the PGA Tour and its players. + Sports + Golf + + + TVG + + + + PGA TOUR Champions Learning Center + Tips and tricks from the legends of the game. + Sports + Golf + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Get Fit with Total Gym, Risk Free + Get in the best shape of your life with the Total Gym 30 Day Risk-Free Trial Offer. + Paid Program + + + + Best Cooling Topper for Back & Hip Pain! + Dormeo Mattress Topper Transforms Your Bed To Get A Great Night's Sleep. Soothing & Cooling. + Paid Program + + + + Legends Tour Highlights + 2023 Legends Open de France + The best moments and analysis from this year's senior tour. + Sports + Golf + + + + Golf Channel Academy + Angela Stanford - Short Game + Angela Stanford tries to help improve short game play. Angela highlights how to improve distance control through improved contact, and how to hit a variety of shots around the green. + Sports + Golf + + + TVG + + + + Asian Tour Golf + Volvo China Open, Third Round + Golf action from the Asian Tour. + Sports + Golf + + + + Asian Tour Golf + Volvo China Open, Final Round + Golf action from the Asian Tour. + Sports + Golf + + + + Epson Tour Highlights + 2023 Black Desert Resort Championship + Highlights from the Epson Tour, an LPGA qualifying organization. + Sports + Golf + + + + PGA TOUR: The CUT + Highlighting the lives and interests of the players that make up the world of golf while offering fans a new and modern look at the PGA Tour and its players. + Sports + Golf + + + TVG + + + + Golf Today + Damon Hack, Anna Jackson and Eamon Lynch lead and shape the daily conversation throughout the golf world. + Sports + Golf + + + TVG + + + + Golf Today + Damon Hack, Anna Jackson and Eamon Lynch lead and shape the daily conversation throughout the golf world. + Sports + Golf + + + TVG + + + + Golf Central + Keep up with everything that's happening in the world of golf. The game's only live, daily news source provides more than just scores, delivering in depth analysis, breaking news, and unforgettable highlights. + + Brian Hammons + Lynda Cardwell + + Sports + News + + + TVG + + + + Road to the Schwab Cup + Hear from the front runners in the Charles Schwab Cup points standings. + Sports + Golf + + + + Golf Central + Keep up with everything that's happening in the world of golf. The game's only live, daily news source provides more than just scores, delivering in depth analysis, breaking news, and unforgettable highlights. + + Brian Hammons + Lynda Cardwell + + Sports + News + + + TVG + + + + Government Access + Regular + + + + Government Access + Regular + + + + Government Access + Regular + + + + Government Access + Regular + + + + Government Access + Regular + + + + Government Access + Regular + + + + Government Access + Regular + + + + Government Access + Regular + + + + Government Access + Regular + + + + Government Access + Regular + + + + Government Access + Regular + + + + Government Access + Regular + + + + Government Access + Regular + + + + Government Access + Regular + + + + Government Access + Regular + + + + Government Access + Regular + + + + Government Access + Regular + + + + Government Access + Regular + + + + Government Access + Regular + + + + Government Access + Regular + + + + Government Access + Regular + + + + Government Access + Regular + + + + Government Access + Regular + + + + Government Access + Regular + + + + Government Access + Regular + + + + Government Access + Regular + + + + Government Access + Regular + + + + Tour of Duty + Saigon + Strange things happen to the men of Bravo Co. on the eve of the Tet Offensive. + + Terence Knox + Stephen Caffrey + Tony Becker + + Drama + History + + + TV14 + + + + Tour of Duty + For What It's Worth + Taylor is suspected of killing an American officer; Anderson woos a psychiatrist (Betsy Brantley). + + Terence Knox + Stephen Caffrey + Tony Becker + + Drama + History + + + TV14 + + + + Combat! + Nightmare on the Red Ball Run + Kirby and Littlejohn volunteer to drive explosives-laden trucks. + + Vic Morrow + Jack Hogan + Dick Peabody + + Drama + History + + + TVPG + + + + Combat! + Jonah + Strange calamities convince the squad that a new soldier (Tom Simcox) is a jinx. + + Rick Jason + Jack Hogan + Pierre Jalbert + + Drama + History + + + TVPG + + + + Rat Patrol + Two for One Raid + The Rat Patrol must destroy an air-drop of German ammunition before a convoy arrives to pick it up. + + Christopher George + Gary Raymond + Lawrence Casey + + Drama + History + + + TVPG + + + + Rat Patrol + The Last Chance Raid + When a stray bullet wrecks his transmitter, Troy is unable to warn headquarters of a large ambush set up by the Nazis. + + Christopher George + Gary Raymond + Lawrence Casey + + Drama + History + + + TVPG + + + + 12 O'Clock High + Which Way the Wind Blows + Gen. Britt brings in a WAC weather forecaster (Dina Merrill) to help prevent combat losses due to unexpected weather hazards. + + Paul Burke + Chris Robinson + Frank Overton + + Drama + History + + + TVPG + + + + 12 O'Clock High + Underground + Gallagher, downed and taken prisoner in neutral Switzerland, must escape to deliver vital information; guest Robert Walker. + + Paul Burke + Chris Robinson + + Drama + History + + + TVPG + + + + Rat Patrol + The B-Negative Raid + Moffitt loses blood after being seriously wounded during a raid on a German convoy. + + Christopher George + Gary Raymond + Lawrence Casey + + Drama + History + + + TVPG + + + + Rat Patrol + The Exhibit + Troy and Hitchcock capture an infamous Nazi POW camp commander. + + Christopher George + Gary Raymond + Lawrence Casey + + Drama + History + + + TVPG + + + + NUMB3RS + Checkmate + Robin, an old flame of Don's, returns to prosecute an incarcerated criminal, but when three witnesses involved in the case are murdered, Don and the team fear she will be the next victim. + + Rob Morrow + David Krumholtz + Judd Hirsch + + Drama + + + TV14 + + + + Renegade + Honeymoon in Mexico + While vacationing in Mexico, Reno and Bobby encounter a young newlywed whose husband disappeared shortly after their ship arrived in port. + + Lorenzo Lamas + Branscombe Richmond + Kathleen Kinmont + + Drama + + + TVPG + + + + The Restless Gun + Aunt Emma + Bonner's aunt takes care of him as he recovers from injuries sustained during the armed robbery of a bank; she tries to prevent him from going after the criminals, even as they plot to stage a second robbery to nab the bank's remaining money. + + John Payne + + Christmas + + + TVPG + + + + Lawman + Blue Boss and Willie Shay + A man discovers he is wrong when he believes a pet steer is his only friend. + + John Russell + Peter Brown + Peggy Castle + + Regular + + + TVPG + + + + Eco Company + Growing Organic Cotton + Cotton has a big footprint because growers use lots of pesticides and water, but some farmers do things differently. + Talk Shows + Environmental + + + TVG + + + + Science Max: Experiments at Large + The science of everyday, and some not-so-everyday, things. On a full range of subjects, including ecology, biology, chemistry and physics. + Children + Instructional + + + TVY + + + + Walking Wild + Antelopes, wolves, and red river hogs. + Regular + + + TVG + + + + Dragonfly TV Sports + Sports + + + + Family Style With Chef Jeff + The Soup, Sandwich and Dessert Challenge + The New Orleans Center for Creative Arts; soup and grilled-cheese sandwiches; Apple Betty. + Food + Instructional + + + TVG + + + + Now Eat This! + Ed & Samantha + Steak with tomato and spinach salad; smoked oysters in hickory wood; homemade spaghetti with white clam sauce. + Health + Food + + + TVG + + + + Batman + The Purr-Fect Crime + The Catwoman traps Batman and Robin as the duo sets out to guard a valuable statuette. + + Adam West + Burt Ward + Neil Hamilton + + Regular + + + TVPG + + + + Batman + Better Luck Next Time + The Catwoman searches for a pirate's buried treasure. + + Adam West + Burt Ward + Neil Hamilton + + Regular + + + TVPG + + + + Wonder Woman + The Mind Stealers from Outer Space + Andros (Dack Rambo) and Diana attempt to retrieve the great minds of America, stolen by the alien Skrill invaders. + + Lynda Carter + Lyle Waggoner + + Drama + + + TVG + + + + The Adventures of Superman + The Jolly Roger + Jimmy and Lois investigate a deserted island to be used for Navy bomb practice. + + George Reeves + Noel Neill + Jack Larson + + Drama + + + TVG + + + + The Adventures of Superman + Peril in Paris + Superman helps Anna Constantine smuggle jewels out from behind the Iron Curtain to Paris. + + George Reeves + Noel Neill + Jack Larson + + Drama + + + TVG + + + + The Adventures of Superman + Tin Hero + An accidental act of heroism changes a bookkeeper's life. + + George Reeves + Noel Neill + Jack Larson + + Drama + + + TVG + + + + The Adventures of Superman + The Town That Wasn't + Jimmy and Lois are victimized by a phony speed trap and held in a vanishing room. + + George Reeves + Noel Neill + Jack Larson + + Drama + + + TVG + + + + Walker, Texas Ranger + Standoff + Walker and Trivette protect a Mexican presidential candidate from an international assassin hired by an imprisoned drug-lord. + + Chuck Norris + Clarence Gilyard + Sheree J. Wilson + + Drama + + + TV14 + + + + Walker, Texas Ranger + Standoff + After the Rangers' dismissal from the case, the assassin kidnaps the Mexican presidential candidate; Walker disregards orders and takes on the assassin. + + Chuck Norris + Clarence Gilyard + Sheree J. Wilson + + Drama + + + TV14 + + + + Walker, Texas Ranger + Deep Cover + Posing as a suave cocaine dealer, Walker teams with an undercover Miami police officer to catch a drug kingpin. + + Chuck Norris + Clarence Gilyard + Sheree J. Wilson + + Drama + + + TVPG + + + + Walker, Texas Ranger + The Guardians + Walker must uncover the identity of a militant environmentalist before radicals sabotage another oil rig. + + Chuck Norris + Clarence Gilyard + Sheree J. Wilson + + Drama + + + TVPG + + + + Walker, Texas Ranger + Collision Course + Kidnapped by a delusional ex-boyfriend, C.D.'s niece (Shannon Fill) accompanies him on a bank-robbing spree that leaves a trail for bounty hunters and Walker. + + Chuck Norris + Clarence Gilyard + Sheree J. Wilson + + Drama + + + TVPG + + + + Terminator: The Sarah Connor Chronicles + Heavy Metal + When Sarah, Cameron and John track down stolen cargo, they become separated, which leads John to discover that the future is less safe than he hoped; agent Ellison's murder investigation leads him to an interesting suspect. + + Lena Headey + Thomas Dekker + Summer Glau + + Drama + Sci-Fi + + + TV14 + + + + Terminator: The Sarah Connor Chronicles + Queen's Gambit + When Sarah re-evaluates the capability of Andy's computer, she worries about where it could lead; Sarah meets a stranger whose history is tied to hers; agent Ellison discovers remnants from a terminator battle. + + Lena Headey + Thomas Dekker + Summer Glau + + Drama + Sci-Fi + + + TV14 + + + + Star Trek + Plato's Stepchildren + Rulers of a culture modeled after Plato's. + + William Shatner + Leonard Nimoy + DeForest Kelley + + Sci-Fi + + + TVPG + + + + Star Trek: The Next Generation + Starship Mine + Picard and a desperate gang of thieves are trapped on the Enterprise while the ship is being swept with deadly baryon rays. + + Patrick Stewart + Jonathan Frakes + LeVar Burton + + Sci-Fi + Drama + + + TVPG + + + + Star Trek: Deep Space Nine + Penumbra + Ezri steals a runabout to find Worf, who is missing in action; Sisko proposes to Kasidy Yates (Penny Johnson). + + Avery Brooks + Rene Auberjonois + Nicole de Boer + + Sci-Fi + + + TVPG + + + + Star Trek: Voyager + Basics, Part II + Janeway and the crew face hostile natives on a primitive planet; the Kazon plan to annihilate most of Delta Quadrant from the commandeered Voyager. + + Kate Mulgrew + Robert Beltran + Roxann Dawson + + Sci-Fi + + + TVPG + + + + Star Trek: Enterprise + Two Days and Two Nights + Shore leave on the pleasure planet Risa leaves the crew in various states of disarray; Phlox is awakened from his annual 48-hour hibernation to treat an injured crew member. + + Scott Bakula + Connor Trinneer + Jolene Blalock + + Sci-Fi + Drama + + + TVPG + + + + BeastMaster + Mydoro + The Beastmaster must intervene to prevent the Eirons' healing crystal from falling into the hands of the malevolent Voden. + + Daniel Goddard + Jackson Raine + David Paterson + + Drama + + + TVPG + + + + Relic Hunter + The Executioner's Mask + A cursed executioner's mask horribly disfigures anyone who tries it on. With Tia Carrere and Christien Anholt. + + Tia Carrere + Christien Anholt + + Drama + + + TVPG + + + + Rat Patrol + The Exhibit + Troy and Hitchcock capture an infamous Nazi POW camp commander. + + Christopher George + Gary Raymond + Lawrence Casey + + Drama + History + + + TVPG + + + + NUMB3RS + End Game + Don's team tries to figure out the motive when the family of a fugitive (Sharif Atkins), on the run for murder, is kidnapped by a gang of military thieves. + + Rob Morrow + David Krumholtz + Judd Hirsch + + Drama + + + TVPG + + + + Renegade + The Ballad of D.B. Cooper + Reno and Bobby encounter an unscrupulous bounty hunter while tracking the infamous and elusive D.B. Cooper in a prosperous northern town. + + Lorenzo Lamas + Branscombe Richmond + Kathleen Kinmont + + Drama + + + TVPG + + + + The Restless Gun + The Outlander + When Col. Bromley's band of former Confederate soldiers takes control of a Kansas town, a Union soldier with foreign origins challenges the leader to a duel, which Bonner moves to prevent before blood can be spilled. + + John Payne + + Christmas + + + TVPG + + + + Lawman + The Man From New York + Marshal Dan Troop convinces New York's police lieutenant that redemption can be more important than punishment. + + John Russell + Peter Brown + Peggy Castle + + Regular + + + TVPG + + + + Maverick + The Cactus Switch + Bart finds himself in the middle of a swindle when he offers aid to a lovely stranger. + + Jack Kelly + Roger Moore + Robert Colbert + + Drama + + + TV14 + + + + Wanted: Dead or Alive + Epitaph + Josh is asked to hunt down an old friend who robbed the bank of the town in which he was the sheriff. + + Steve McQueen + + Regular + + + TVPG + + + + Wanted: Dead or Alive + The Voice of Silence + A distraught father offers Josh $100 to guard his deaf-mute daughter while he goes to settle an old score. + + Steve McQueen + + Regular + + + TVPG + + + + Have Gun -- Will Travel + Never Help the Devil + Paladin (Richard Boone) becomes the bodyguard of a murderer hunted by a lynch mob. Also starring Bill Wellman. + + Richard Boone + Lu Yan + + Drama + + + TVPG + + + + Have Gun -- Will Travel + Ambush + An old man seeks justice by rounding up suspects in his son's murder. Starring Richard Boone and Alan Dexter. + + Richard Boone + Lu Yan + + Drama + + + TVPG + + + + Rawhide + Incident of the Prairie Elephant + Wishbone guides a traveling circus and winds up between a jealous clown (Lawrence Dobkin) and his wife; guest Billy Barty. + + Eric Fleming + Sheb Wooley + Paul Brinegar + + Drama + + + TVPG + + + + The High Chaparral + The Forge of Hate + A young Apache's efforts to ease tensions between his people and white men are undermined by a belligerent chieftain. + + Leif Erickson + Cameron Mitchell + Henry Darrow + + Drama + + + TVPG + + + + Cheyenne + White Warrior + Cheyenne takes over as leader of a wagon train, unaware that rifles are being smuggled illegally to the Apaches. + + Clint Walker + + Regular + + + TVG + + + + Nash Bridges + Pump Action + An undercover police officer joins forces with Nash to put a choke hold on marauding bodybuilders who are pumped up on illegal steroids. + + Don Johnson + Cheech Marin + Jaime Gomez + + Drama + + + TVPG + + + + Nash Bridges + Hide and Seek + Nash and Joe try to find the governor of California after he slips out of sight, fearing the exposure of a possible sex scandal involving his mistress. + + Don Johnson + Cheech Marin + Jaime Gomez + + Drama + + + TVPG + + + + Nash Bridges + Boomtown + Nash and Joe search for a serial bomber; Cassidy must perform topless in her new play while her father is in the audience; Nick befriends a noisy band. + + Don Johnson + Cheech Marin + Jaime Gomez + + Drama + + + TVPG + + + + Nash Bridges + Angel of Mercy + Nash and Joe search for a serial killer; Caitlin and Joe coach girls soccer teams; Harvey reconciles with his estranged wife. + + Don Johnson + Cheech Marin + Jaime Gomez + + Drama + + + TVPG + + + + Nash Bridges + Power Play + Nash and Joe must cure an amnesiac to rescue a man from the Russian mob; Joe undergoes fertility tests. + + Don Johnson + Cheech Marin + Yasmine Bleeth + + Drama + + + TVPG + + + + Walker, Texas Ranger + Point After + Clues in the death of a high-school football coach lead Walker and Trivette to a Las Vegas gambling ring. + + Chuck Norris + Clarence Gilyard + Sheree J. Wilson + + Drama + + + TVPG + + + + Walker, Texas Ranger + Evil in the Night + The desecration of an American Indian burial ground causes a wicked medicine man to arise from the dead, and Walker must stop the evil. + + Chuck Norris + Clarence Gilyard + Sheree J. Wilson + + Drama + + + TVPG + + + + Walker, Texas Ranger + Final Justice + The brutal loss of his parents as a child finally catches up with Walker and he goes under cover to find the white supremacist who murdered them. + + Chuck Norris + Clarence Gilyard Jr. + Sheree J. Wilson + + Drama + + + TV14 + + + + Star Trek + Wink of an Eye + The dying Scalosians, invisible to humans, need the Enterprise crew to help repopulate their decimated planet. + + William Shatner + Leonard Nimoy + DeForest Kelley + + Sci-Fi + + + TVPG + + + + Star Trek: The Next Generation + Lessons + Picard becomes intrigued and then involved with a brilliant new crew member, creating complications when a potentially deadly mission arises. + + Patrick Stewart + Jonathan Frakes + LeVar Burton + + Sci-Fi + Drama + + + TVPG + + + + Star Trek: Deep Space Nine + 'Til Death Do Us Part + Destiny threatens Sisko's union; Gul Dukat involves himself in Kai Winn's vision; Breen soldiers take Ezri and Worf to the Jem'Hadar. + + Avery Brooks + Rene Auberjonois + Nicole de Boer + + Sci-Fi + + + TVPG + + + + Star Trek: Voyager + Flashback + To help Tuvok battle a debilitating childhood memory, Capt. Janeway enters a mind-meld with him, which transports them to the U.S.S. Excelsior with Capt. Sulu in command. + + Kate Mulgrew + Robert Beltran + Roxann Biggs-Dawson + + Sci-Fi + + + TVPG + + + + Star Trek: Enterprise + Shockwave + Starfleet orders the Enterprise home after the crew appears to have caused the destruction of a planet. + + Scott Bakula + Connor Trinneer + Jolene Blalock + + Sci-Fi + Drama + + + TVPG + + + + BeastMaster + Game of Death + Dar infiltrates the city of Chalka to free the sacred tigers and release Queen Lyoka from her reign of terror. + + Daniel Goddard + Jackson Raine + Anja Coleby + + Drama + + + TVPG + + + + Relic Hunter + The Royal Ring + Romance and sibling rivalry complicate the search for the fabled wedding ring of Anne Boleyn. With Tia Carrere and Christien Anholt. + + Tia Carrere + Christien Anholt + Lindy Booth + + Drama + + + TVPG + + + + NUMB3RS + Atomic No. 33 + A mass poisoning at a cult compound leads the team to a complex murder plot. + + Rob Morrow + David Krumholtz + Judd Hirsch + + Drama + + + TVPG + + + + Renegade + Most Wanted + While tracking a robber, Bobby (Branscombe Richmond) becomes smitten with a woman who raises Reno's (Lorenzo Lamas) suspicions. + + Lorenzo Lamas + Branscombe Richmond + Kathleen Kinmont + + Drama + + + TVPG + + + + The Restless Gun + The Battle of Tower Rock + An entire town takes sides in a feud between two partners who break off and form rival banks; the men blame the situation on their wives' involvement in a strawberry jam contest, and Bonner must find a way to bring peace to the rivals and the town. + + John Payne + + Christmas + + + TVPG + + + + Lawman + Mark of Cain + Marshal Dan Troop discovers that a vengeful widow is not a helpful witness in a murder case. + + John Russell + Peter Brown + Peggy Castle + + Regular + + + TVPG + + + + Maverick + Dutchman's Gold + Beau engages in a desperate struggle with Mexican bandits and Indians to find a lost gold mine. + + Jack Kelly + Roger Moore + Robert Colbert + + Drama + + + TV14 + + + + Wanted: Dead or Alive + El Gato + A man asks Josh's help in finding a famed Mexican bandit so that he can shoot him. + + Steve McQueen + + Regular + + + TVPG + + + + Wanted: Dead or Alive + Detour + A penniless Josh accepts an offer of $100 to help a frightened suitor with his elopement. + + Steve McQueen + + Regular + + + TVPG + + + + Have Gun -- Will Travel + Black Sheep + Paladin (Richard Boone) tracks down an outlaw son who has a claim on a large inheritance. Also starring Pat Wayne. + + Richard Boone + Lu Yan + + Drama + + + TVPG + + + + Have Gun -- Will Travel + Full Circle + Paladin reluctantly agrees to help a con man who once double-crossed him. Starring Richard Boone and Adam Williams. + + Richard Boone + Kam Tong + + Drama + + + TVPG + + + + Rawhide + Incident of the Little Fishes + An Eastern biologist (Burgess Meredith) wreaks havoc among Favor's drovers when he tries to stock Western rivers. + + Eric Fleming + Clint Eastwood + Sheb Wooley + + Drama + + + TVPG + + + + The High Chaparral + Fiesta + A traveling fight promoter (Nehemiah Persoff) fumes when Buck takes away his 11-year-old Mexican charge. + + Leif Erickson + Cameron Mitchell + Henry Darrow + + Drama + + + TVPG + + + + Cheyenne + Ghost of the Cimarron + Cheyenne realizes the sheriff and his posse include him among the outlaws when he is trapped into traveling with a holdup gang. + + Clint Walker + + Regular + + + TVG + + + + Lethal Weapon + Pilot + After losing his wife and unborn child, Martin Riggs, a grieving rogue detective, moves to California to start over at the LAPD; Riggs is partnered with Roger Murtaugh, a by-the-book detective, who is a recovering heart attack victim. + + Damon Wayans + Clayne Crawford + Jordana Brewster + + Comedy + Drama + + + TV14 + + + + Lethal Weapon + Surf N' Turf + A noise complaint at a heavyweight boxer's home leads Riggs and Murtaugh to a case involving illegal gunrunners; Trish worries about the impact Riggs may have on Murtaugh's health. + + Damon Wayans + Clayne Crawford + Jordana Brewster + + Comedy + Drama + + + TV14 + + + + Lethal Weapon + Best Buds + Riggs and Murtaugh investigate a violent case involving a drug cartel, two killings, theft, and Murtaugh's old T.O., Ned Brower, Trish and Murtaugh struggle to find time along. + + Damon Wayans + Clayne Crawford + Jordana Brewster + + Comedy + Drama + + + TV14 + + + + Lethal Weapon + There Goes the Neighborhood + A string of burglaries turns deadly; Roger Junior reunites with an old friend who may be involved in illegal activities. + + Damon Wayans + Clayne Crawford + Jordana Brewster + + Comedy + Drama + + + TV14 + + + + Lethal Weapon + Spilt Milk + Murtaugh draws parallels between a former Navy SEAL wanted for criminal activity and his partner, Riggs, whose connection to the suspect complicates the case. + + Damon Wayans + Clayne Crawford + Jordana Brewster + + Comedy + Drama + + + TV14 + + + + Walker, Texas Ranger + The Lynching + A lynch mob blames an impaired boy for the murder of a popular woman. + + Chuck Norris + Clarence Gilyard Jr. + Sheree J. Wilson + + Drama + + + TVPG + + + + Walker, Texas Ranger + Whitewater + Alex takes Walker on a white-water rafting trip for a doctor-ordered vacation, but it is anything but relaxing when a participant is murdered. + + Chuck Norris + Clarence Gilyard Jr. + Sheree J. Wilson + + Drama + + + TV14 + + + + Walker, Texas Ranger + Whitewater + Walker attempts to arrest the escaped convict who killed the rafting trip organizer and took his place as the other vacationers' lives are in peril. + + Chuck Norris + Clarence Gilyard Jr. + Sheree J. Wilson + + Drama + + + TV14 + + + + Star Trek + The Empath + A silent girl (Kathryn Hays) must save the lives of Kirk, Spock and McCoy when aliens torture them in an experiment. + + William Shatner + Leonard Nimoy + DeForest Kelley + + Sci-Fi + + + TVPG + + + + Star Trek: The Next Generation + The Chase + The death of Picard's archaeology professor results in a tantalizing mystery involving Klingons, Cardassians and Romulans. + + Patrick Stewart + Jonathan Frakes + LeVar Burton + + Sci-Fi + Drama + + + TVPG + + + + Star Trek: Deep Space Nine + Strange Bedfellows + The Dominion and the Breen prepare to ally as Ezri and Worf await execution; Kai Winn unknowingly gets involved with a surgically-altered Gul Dukat. + + Avery Brooks + Rene Auberjonois + Nicole de Boer + + Sci-Fi + + + TVPG + + + + Star Trek: Voyager + The Chute + Lt. Paris and Kim are suspected of being members of the Open Sky terrorist group; Neelix is asked to use his ship on a special mission. + + Kate Mulgrew + Robert Beltran + Roxann Biggs-Dawson + + Sci-Fi + + + TVPG + + + + Star Trek: Enterprise + Shockwave + The Suliban hold the crew hostage while Captain Archer is trapped in the 31st century; Daniels agonizes that his impulsive act threatens the Federation and history. + + Scott Bakula + Connor Trinneer + Jolene Blalock + + Sci-Fi + Drama + + + TVPG + + + + BeastMaster + Regeneration + Arina (Marjean Holden) must protect her unborn child from a demon (guest star Leah Purcell); Voden (guest star David Paterson) wants Citia's foal. + + Daniel Goddard + Jackson Raine + Monika Schnarre + + Drama + + + TVPG + + + + Relic Hunter + Set in Stone + At a remote Hungarian monastery, Nigel and Sydney learn that the magical sword of St. Gabriel was no legend -- and neither was the demon it slew. + + Tia Carrere + Christien Anholt + Lindy Booth + + Drama + + + TVPG + + + + NUMB3RS + Pay to Play + The team uncovers a conspiracy of embezzlement and bribery while investigating the murder of a young rap star. + + Rob Morrow + David Krumholtz + Judd Hirsch + + Drama + + + TV14 + + + + Renegade + Liar's Poker + When a con artist convicted of a payroll heist escapes, Bobby and Reno try to find her before she can retrieve the unrecovered money. + + Lorenzo Lamas + Branscombe Richmond + Kathleen Kinmont + + Drama + + + TVPG + + + + The Restless Gun + The Torn Flag + After discovering a body on the trail, Bonner and a gun salesman learn that the dead man was part of a group planning to reform the Confederacy, and that he left behind a hidden stash of gold. + + John Payne + + Christmas + + + TVPG + + + + Lawman + Fugitive + Marshal Dan Troop shows a man that a father's place is with his family. + + John Russell + Peter Brown + Peggy Castle + + Regular + + + TVPG + + + + Maverick + The Ice Man + A poor Bart discovers a frozen corpse while working on his new job. + + Jack Kelly + Roger Moore + Robert Colbert + + Drama + + + TV14 + + + + Wanted: Dead or Alive + Monday Morning + A clerk embezzles $10,000 from his employer and then wants to return the money. + + Steve McQueen + + Regular + + + TVPG + + + + Wanted: Dead or Alive + The Long Search + A Japanese geisha girl asks Josh to find her lost American boyfriend who promised to marry her. + + Steve McQueen + + Regular + + + TVPG + + + + Have Gun -- Will Travel + The Twins + A man asks for Paladin's assistance in proving his twin brother is guilty of murder. Starring Richard Boone and Brian Hutton. + + Richard Boone + Kam Tong + + Drama + + + TVPG + + + + Have Gun -- Will Travel + The Campaign of Billy Banjo + A would-be politician hires Paladin to protect his opponent from danger. Starring Richard Boone and Jacques Aubuchon. + + Richard Boone + Kam Tong + + Drama + + + TVPG + + + + Rawhide + Incident of the Blue Spy + The drovers' warm welcome turns to hostility and mutiny when they discover a visitor (Phyllis Thaxter) was a Union spy. + + Eric Fleming + Clint Eastwood + Sheb Wooley + + Drama + + + TVPG + + + + The High Chaparral + A Matter of Vengeance + Dan Casement returns to Tucson in pursuit of the outlaws who destroyed his home and killed his infant grandson. + + Leif Erickson + Cameron Mitchell + Henry Darrow + + Drama + + + TVPG + + + + Cheyenne + Wagon-Tongue North + Cheyenne tries to help a pregnant woman get a herd of cattle to town, then learns the man he shot in self-defense is her husband. + + Clint Walker + + Regular + + + TVG + + + + The A-Team + Alive at Five + The team infiltrates an East Coast mob to free an undercover TV reporter from her kingpin lover. + + George Peppard + Mr. T + Dirk Benedict + + Drama + + + TVPG + + + + The A-Team + Point of No Return + The team heads to Hong Kong to look for missing Hannibal and a stolen, leaking canister of plutonium; guests Soon-Teck Oh, Rosalind Chao. + + George Peppard + Mr. T + Dirk Benedict + + Drama + + + TVPG + + + + The A-Team + The Crystal Skull + Stranded on a remote island with Face and Frankie, Murdock is worshiped as a deity by Polynesian warriors. + + George Peppard + Mr. T + Dirk Benedict + + Drama + + + TVPG + + + + The A-Team + The Spy Who Mugged Me + Murdock poses as a secret agent to investigate a terrorist group based in Monte Carlo; guests Roy Dotrice, Toru Tanaka. + + George Peppard + Mr. T + Dirk Benedict + + Drama + + + TVPG + + + + The A-Team + The Grey Team + A group of senior citizens protects a scientist's teenage daughter from the KGB; guests Lew Ayres, John McLiam. + + George Peppard + Mr. T + Dirk Benedict + + Drama + + + TVPG + + + + Walker, Texas Ranger + The Covenant + After a karate student of Walker's joins a gang to get revenge for a drive-by shooting, Walker steps in to try and prevent an all-out gang war. + + Chuck Norris + Clarence Gilyard Jr. + Sheree J. Wilson + + Drama + Christmas + + + TVPG + + + + Walker, Texas Ranger + Rodeo + Walker and Trivette protect the only remaining witness in a mob trial and Walker faces a conundrum when the witness is one of Alex's old beaus. + + Chuck Norris + Clarence Gilyard Jr. + Sheree J. Wilson + + Drama + + + TVPG + + + + Legally Blonde 2: Red, White & Blonde + Fired from her firm, a young Boston lawyer (Reese Witherspoon) heads to Washington, D.C., to fight for animal rights. + + Reese Witherspoon + Sally Field + Regina King + + 2003 + Movies + Comedy + + + TVG + + + 2 + + + + The Gilded Age + You Don't Even Like Opera + Agnes shares news of her nephew Dashiell's imminent arrival in New York; Bertha decides to back the new Metropolitan Opera House. + + Christine Baranski + Cynthia Nixon + Carrie Coon + + Drama + History + + + TVMA + + + + Definitely, Maybe + At his young daughter's (Abigail Breslin) urging, a man (Ryan Reynolds) on the cusp of divorce reminisces about his past romances and has her guess which one became her mother. + + Ryan Reynolds + Isla Fisher + Abigail Breslin + + 2008 + Movies + Drama + + + TVG + + + 3 + + + + Election + When a school's goody-two-shoes (Reese Witherspoon) runs for class president, a teacher/adviser (Matthew Broderick) schemes to keep her from winning. + + Matthew Broderick + Reese Witherspoon + Chris Klein + + 1999 + Movies + Comedy + + + TVPG + + + 3 + + + + Election + When a school's goody-two-shoes (Reese Witherspoon) runs for class president, a teacher/adviser (Matthew Broderick) schemes to keep her from winning. + + Matthew Broderick + Reese Witherspoon + Chris Klein + + 1999 + Movies + Comedy + + + TVPG + + + 3 + + + + 1000% Me: Growing Up Mixed + Multiracial children and their families share the joys and struggles of growing up mixed in the Bay Area. + 2023 + Movies + Documentary + + + + Fever Pitch + A corporate executive (Drew Barrymore) falls for an affable schoolteacher (Jimmy Fallon) obsessed with the Boston Red Sox. + + Drew Barrymore + Jimmy Fallon + James B. Sikking + + 2005 + Movies + Drama + + + TVG + + + 2 + + + + Draft Day + On the day of the NFL draft, the general manager of the Cleveland Browns must decide what he's willing to sacrifice as he angles for the number-one pick. + + Kevin Costner + Jennifer Garner + Denis Leary + + 2014 + Movies + Drama + + + TVG + + + 2 + + + + Barbershop + The owner of a popular barbershop considers selling the place to a loan shark who wants to convert it into a strip club. + + Ice Cube + Anthony Anderson + Cedric the Entertainer + + 2002 + Movies + Comedy + + + TVG + + + 2 + + + + The Forbidden Kingdom + A teenage fan (Michael Angarano) of Hong Kong cinema finds a Chinese relic and travels back in time to help legendary martial-artists free the Monkey King. + + Jackie Chan + Jet Li + Michael Angarano + + 2008 + Movies + Action + + + TVG + + + 2 + + + + Shazam! Fury of the Gods + When a vengeful trio of ancient gods arrives on Earth in search of the magic stolen from them long ago, Shazam and his allies get thrust into a battle for their superpowers, their lives, and the fate of the world. + + Zachary Levi + Asher Angel + Jack Dylan Grazer + + 2023 + Movies + Action + + + TVG + + + 2 + + + + Exodus: Gods and Kings + Raised as an Egyptian prince -- and the favorite of Pharaoh Seti -- Moses (Christian Bale) learns of his actual Hebrew heritage and vows to free his people from bondage, even if it destroys his brotherly bond with Seti's son, Ramses (Joel Edgerton). + + Christian Bale + Joel Edgerton + John Turturro + + 2014 + Movies + Action + + + TVG + + + 2 + + + + Real Time With Bill Maher + Acerbic comic Bill Maher welcomes a panel of guests from diverse parts of the political spectrum for a lively discussion of current events, as well as offering his own perspective on contemporary issues. + Talk Shows + Comedy + + + TVMA + + + + Shakespeare in Love + Young William Shakespeare (Joseph Fiennes) falls for Viola (Gwyneth Paltrow), reawakening his creativity, but she is betrothed to Wessex. + + Joseph Fiennes + Gwyneth Paltrow + Geoffrey Rush + + 1998 + Movies + Romance + + + TVG + + + 3 + + + + Get Smart + A newly promoted field agent (Steve Carell), partnered with veteran Agent 99 (Anne Hathaway), blends inexperience, enthusiasm and ineptitude as he battles against KAOS. + + Steve Carell + Anne Hathaway + Dwayne Johnson + + 2008 + Movies + Comedy + + + TVG + + + 2 + + + + Legally Blonde + A sorority queen (Reese Witherspoon) enrolls in Harvard to prove to her former boyfriend that she has more than good looks. + + Reese Witherspoon + Luke Wilson + Selma Blair + + 2001 + Movies + Comedy + + + TVG + + + 2 + + + + The Gilded Age + Some Sort of Trick + A wide-eyed young scion of a conservative family embarks on a mission to infiltrate the wealthy neighboring clan dominated by ruthless railroad tycoon George Russell, his rakish son, Larry, and his ambitious wife, Bertha. + + Christine Baranski + Cynthia Nixon + Carrie Coon + + Drama + History + + + TVMA + + + + The Gilded Age + Some Sort of Trick + A wide-eyed young scion of a conservative family embarks on a mission to infiltrate the wealthy neighboring clan dominated by ruthless railroad tycoon George Russell, his rakish son, Larry, and his ambitious wife, Bertha. + + Christine Baranski + Cynthia Nixon + Carrie Coon + + Drama + History + + + TVMA + + + + Last Week Tonight With John Oliver + Comedian John Oliver hosts an in-depth, satirical look at developments from the past seven days in news, politics and current events. + Talk Shows + Comedy + + + TVMA + + + + The Gilded Age + Some Sort of Trick + A wide-eyed young scion of a conservative family embarks on a mission to infiltrate the wealthy neighboring clan dominated by ruthless railroad tycoon George Russell, his rakish son, Larry, and his ambitious wife, Bertha. + + Christine Baranski + Cynthia Nixon + Carrie Coon + + Drama + History + + + TVMA + + + + Last Week Tonight With John Oliver + Comedian John Oliver hosts an in-depth, satirical look at developments from the past seven days in news, politics and current events. + Talk Shows + Comedy + + + TVMA + + + + Last Week Tonight With John Oliver + Comedian John Oliver hosts an in-depth, satirical look at developments from the past seven days in news, politics and current events. + Talk Shows + Comedy + + + TVMA + + + + Pearl Harbor + Two pilots and lifelong friends (Ben Affleck, Josh Hartnett) fall for the same woman, but must put aside their differences when the Japanese attack their naval base on Dec. 7, 1941. + + Ben Affleck + Josh Hartnett + Kate Beckinsale + + 2001 + Movies + War + + + TVG + + + 2 + + + + Avatar + On an alien planet, a former Marine (Sam Worthington) falls in love with a blue-skinned warrior (Zoe Saldana) and sides with her people against humankind's encroachment on their lush world. + + Sam Worthington + Zoe Saldana + Sigourney Weaver + + 2009 + Movies + Sci-Fi + + + TVG + + + 3 + + + + XXX + A government agent (Samuel L. Jackson) recruits an athlete (Vin Diesel) to stop an anarchist from using biological and chemical weapons. + + Vin Diesel + Asia Argento + Marton Csokas + + 2002 + Movies + Action + + + TVPG + + + 2 + + + + XXX: State of the Union + In Washington, D.C., the new XXX agent (Ice Cube) must eliminate a threat to the president from within the U.S. government. + + Ice Cube + Willem Dafoe + Scott Speedman + + 2005 + Movies + Action + + + TVPG + + + 2 + + + + Last Week Tonight With John Oliver + Comedian John Oliver hosts an in-depth, satirical look at developments from the past seven days in news, politics and current events. + Talk Shows + Comedy + + + TVMA + + + + Pieces of April + Chaos reigns when a young woman (Katie Holmes) invites her estranged family to her apartment for the first Thanksgiving dinner she has ever cooked. + + Katie Holmes + Patricia Clarkson + Oliver Platt + + 2003 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Transhood + Four kids and their families unmask the intimate realities of how gender fluidity is reshaping the family next door, especially in America's heartland. + 2020 + Movies + Documentary + + + TV14 + + + + Black Adam + Bestowed with the almighty powers of the gods, Black Adam's unique form of justice, born out of rage, is challenged by modern-day heroes who form the Justice Society: Hawkman, Dr. Fate, Atom Smasher and Cyclone. + + Dwayne Johnson + Aldis Hodge + Pierce Brosnan + + 2022 + Movies + Action + + + TVG + + + 2 + + + + Reality + A former American intelligence specialist is given the longest sentence for the unauthorized release of government information to the media about Russian interference in the 2016 United States elections via an email operation. + + Sydney Sweeney + Josh Hamilton + Marchánt Davis + + 2023 + Movies + Drama + + + TVPG + + + + Last Week Tonight With John Oliver + Comedian John Oliver hosts an in-depth, satirical look at developments from the past seven days in news, politics and current events. + Talk Shows + Comedy + + + TVMA + + + + The Gilded Age + Some Sort of Trick + George delivers a final decision to Oscar; Peggy is welcomed back into the Van Rhijn household by all but one; Marian meets a new match. + + Christine Baranski + Cynthia Nixon + Carrie Coon + + Drama + History + + + TVMA + + + + Meg 2: The Trench + Jonas Taylor leads a research team on an exploratory dive into the deepest depths of the ocean. Pitted against colossal, prehistoric sharks and relentless environmental plunderers, they must outrun, outsmart and outswim their merciless predators. + + Jason Statham + Wu Jing + Sophia Cai + + 2023 + Movies + Sci-Fi + + + TVG + + + 2 + + + + 30 Coins + Hellish Creatures + Elena and Paco adjust to their unexpected new circumstances, as Antonio's visions reveal Barbrows' sinister intentions. + + Eduard Fernández + Miguel Ángel Silvestre + Megan Montaner + + Drama + + + TVMA + + + + 30 Coins + Hellish Creatures + Elena and Paco adjust to their unexpected new circumstances, as Antonio's visions reveal Barbrows' sinister intentions. + + Eduard Fernández + Miguel Ángel Silvestre + Megan Montaner + + Drama + + + TVMA + + + + The Manchurian Candidate + A troubled Gulf War veteran (Denzel Washington) becomes suspicious after a powerful senator's (Meryl Streep) son (Liev Schreiber) becomes a candidate for vice president. + + Denzel Washington + Meryl Streep + Liev Schreiber + + 2004 + Movies + Thriller + + + TVPG + + + 3 + + + + The Manchurian Candidate + A troubled Gulf War veteran (Denzel Washington) becomes suspicious after a powerful senator's (Meryl Streep) son (Liev Schreiber) becomes a candidate for vice president. + + Denzel Washington + Meryl Streep + Liev Schreiber + + 2004 + Movies + Thriller + + + TVPG + + + 3 + + + + REAL Sports With Bryant Gumbel + Chatting with University of Connecticut basketball coach Dan Hurley; controversies surrounding Dubai racehorse mogul Sheikh Mohammed bin Rashid al Maktoum; Fox NFL Sunday; an update on the Aldrich brothers. + Sports + Talk Show + + + TVPG + + + + High Life + Monte and his baby daughter are the last survivors of a damned and dangerous mission to the outer reaches of the solar system. They must now rely on each other to survive as they hurtle toward the oblivion of a black hole. + + Robert Pattinson + Juliette Binoche + André Benjamin + + 2018 + Movies + Sci-Fi + + + TV14 + + + + The Ghost and the Darkness + An Irish engineer (Val Kilmer) and a U.S. hunter (Michael Douglas) stalk two lions decimating a construction crew in East Africa. + + Michael Douglas + Val Kilmer + Tom Wilkinson + + 1996 + Movies + History + + + TVPG + + + 3 + + + + Mel Brooks: Unwrapped + From the groundbreaking TV series. + Specials + Documentary + + + TV14 + + + + Lucky You + A poker player (Eric Bana) tries balancing a love affair with his aim for a slot in the world championship game. + + Eric Bana + Drew Barrymore + Robert Duvall + + 2007 + Movies + Drama + + + TVG + + + 2 + + + + Gran Torino + An unlikely friendship forms between a bigoted war veteran (Clint Eastwood) and an Asian boy (Bee Vang) who tried to steal the man's treasured automobile. + + Clint Eastwood + Christopher Carley + Bee Vang + + 2008 + Movies + Drama + + + TVPG + + + 3 + + + + Rocky Balboa + Retired Rocky's (Sylvester Stallone) plan to re-enter the ring for a few small matches escalates into a full-fledged bout with the world's reigning heavyweight. + + Sylvester Stallone + Burt Young + Antonio Tarver + + 2006 + Movies + Drama + + + TVG + + + 3 + + + + Elizabethtown + In Kentucky to bury his father, a troubled man (Orlando Bloom) gets his life on track with the help of a free-spirited flight attendant (Kirsten Dunst). + + Orlando Bloom + Kirsten Dunst + Susan Sarandon + + 2005 + Movies + Romance + + + TVG + + + 2 + + + + Real Time With Bill Maher + Rep. Dean Phillips; Fareed Zakaria; Ian Bremmer + A one-on-one interview with Representative Dean Phillips, Minnesotta's Democratic Congressman; discussion with CNN's Fareed Zakaria and Ian Bremmer, president of Eurasia Group. + Talk Shows + Comedy + + + TVMA + + + + Good Will Hunting + A therapist (Robin Williams), a mathematician and working-class roughs vie for the soul of a janitor (Matt Damon) with a genius IQ. + + Matt Damon + Robin Williams + Ben Affleck + + 1997 + Movies + Drama + + + TVG + + + 3 + + + + Pitch Perfect 2 + When a scandal threatens to derail the Barden Bellas (Anna Kendrick, Rebel Wilson), the women must get their act together and redeem themselves at the world championships in Copenhagen, Denmark. + + Anna Kendrick + Rebel Wilson + Hailee Steinfeld + + 2015 + Movies + Musical + + + TVG + + + 2 + + + + Stand Up & Shout: Songs From a Philly High School + Students at Philadelphia's Hill-Freedman World Academy work with local musicians to create an album of powerful, original songs that captures both the challenging times they're living in and the joy that music brings. + 2023 + Movies + Documentary + + + + Uptown Girls + Forced to get a job, a freewheeling woman (Brittany Murphy) becomes a nanny to the uptight daughter (Dakota Fanning) of a New York executive. + + Brittany Murphy + Dakota Fanning + Marley Shelton + + 2003 + Movies + Comedy + + + TVG + + + 2 + + + + The Gilded Age + Some Sort of Trick + George delivers a final decision to Oscar; Peggy is welcomed back into the Van Rhijn household by all but one; Marian meets a new match. + + Christine Baranski + Cynthia Nixon + Carrie Coon + + Drama + History + + + TVMA + + + + Parasite + Greed and class discrimination threaten the newly formed symbiotic relationship between the wealthy Park family and the destitute Kim clan. + + Song Kang-ho + Lee Sun-gyun + Jo Yeo-jeong + + 2019 + Movies + Thriller + + + TVPG + + + 3 + + + + Parasite + Greed and class discrimination threaten the newly formed symbiotic relationship between the wealthy Park family and the destitute Kim clan. + + Song Kang-ho + Lee Sun-gyun + Jo Yeo-jeong + + 2019 + Movies + Thriller + + + TVPG + + + 3 + + + + Tears of the Sun + A Navy SEAL (Bruce Willis) and his squad try to protect a doctor (Monica Bellucci) and Nigerian refugees from ruthless rebels. + + Bruce Willis + Monica Bellucci + Cole Hauser + + 2003 + Movies + Action + + + TVPG + + + 2 + + + + MI-5 + A former MI5 agent (Peter Firth) investigates the disappearance of Harry Pearce (Kit Harington) when the operative is blamed for the escape of a ruthless terrorist (Elyes Gabel). + + Peter Firth + Kit Harington + Jennifer Ehle + + 2015 + Movies + Thriller + + + TVPG + + + 2 + + + + 38 at the Garden + Point guard Jeremy Lin, an undrafted Harvard graduate, shocks fans, stuns his teammates and galvanizes Asians around the world during his landmark 2011-12 season with the New York Knicks and sparks the. + 2022 + Movies + Documentary + + + + Crazy Heart + Struggling with the reality of his declining career, an aging country-music star (Jeff Bridges) finds unexpected inspiration with a small-town reporter (Maggie Gyllenhaal) and her young son. + + Jeff Bridges + Maggie Gyllenhaal + Robert Duvall + + 2009 + Movies + Drama + + + TVG + + + 3 + + + + Legally Blonde + A sorority queen (Reese Witherspoon) enrolls in Harvard to prove to her former boyfriend that she has more than good looks. + + Reese Witherspoon + Luke Wilson + Selma Blair + + 2001 + Movies + Comedy + + + TVG + + + 2 + + + + Serendipity + A man (John Cusack) and a woman (Kate Beckinsale) try to find each other after spending one night together 10 years earlier. + + John Cusack + Kate Beckinsale + Molly Shannon + + 2001 + Movies + Romance + + + TVG + + + 2 + + + + Stand Up & Shout: Songs From a Philly High School + Students at Philadelphia's Hill-Freedman World Academy work with local musicians to create an album of powerful, original songs that captures both the challenging times they're living in and the joy that music brings. + 2023 + Movies + Documentary + + + + Definitely, Maybe + At his young daughter's (Abigail Breslin) urging, a man (Ryan Reynolds) on the cusp of divorce reminisces about his past romances and has her guess which one became her mother. + + Ryan Reynolds + Isla Fisher + Abigail Breslin + + 2008 + Movies + Drama + + + TVG + + + 3 + + + + The Gilded Age + Some Sort of Trick + George delivers a final decision to Oscar; Peggy is welcomed back into the Van Rhijn household by all but one; Marian meets a new match. + + Christine Baranski + Cynthia Nixon + Carrie Coon + + Drama + History + + + TVMA + + + + Transformers: Revenge of the Fallen + When an ancient Decepticon rises for revenge, Sam (Shia LaBeouf) and Mikaela (Megan Fox) must figure out the history of the Transformers' presence on Earth and find a way to save the planet. + + Shia LaBeouf + Megan Fox + Josh Duhamel + + 2009 + Movies + Action + + + TVG + + + 2 + + + + Shazam! Fury of the Gods + When a vengeful trio of ancient gods arrives on Earth in search of the magic stolen from them long ago, Shazam and his allies get thrust into a battle for their superpowers, their lives, and the fate of the world. + + Zachary Levi + Asher Angel + Jack Dylan Grazer + + 2023 + Movies + Action + + + TVG + + + 2 + + + + Upgrade + An artificial intelligence implant called STEM gives a paralyzed man superhuman strength and agility -- skills he uses to seek revenge against the thugs who killed his wife. + + Logan Marshall-Green + Betty Gabriel + Harrison Gilbertson + + 2018 + Movies + Sci-Fi + + + TVPG + + + 3 + + + + Evil Dead Rise + A reunion between two estranged sisters gets cut short by the rise of flesh-possessing demons, thrusting them into a primal battle for survival as they face the most nightmarish version of family imaginable. + + Lily Sullivan + Alyssa Sutherland + Morgan Davies + + 2023 + Movies + Horror + + + 3 + + + + Real Time With Bill Maher + Acerbic comic Bill Maher welcomes a panel of guests from diverse parts of the political spectrum for a lively discussion of current events, as well as offering his own perspective on contemporary issues. + Talk Shows + Comedy + + + TVMA + + + + Last Week Tonight With John Oliver + Chocolate + John Oliver discusses chocolate, cocoa farming and some facts that make Halloween a little weird. + Talk Shows + Comedy + + + TVMA + + + + Last Week Tonight With John Oliver + Chocolate + John Oliver discusses chocolate, cocoa farming and some facts that make Halloween a little weird. + Talk Shows + Comedy + + + TVMA + + + + American Gangster + A Harlem mobster (Denzel Washington) combines ingenuity and strict business codes to dominate organized crime, while a veteran cop (Russell Crowe) searches for a way to bring him down. + + Denzel Washington + Russell Crowe + Chiwetel Ejiofor + + 2007 + Movies + Crime Story + + + TVPG + + + 3 + + + + The Making Of: Empire of Light + Olivia Colman and Micheal Ward star in the drama film about a romance that develops in an old cinema in the 1980s. + + Olivia Colman + Micheal Ward + + Specials + Documentary + + + TV14 + + + + Safe Haven + Dark secrets intrude on the blossoming romance between a widowed merchant (Josh Duhamel) and a new arrival (Julianne Hough) in a small North Carolina town. + + Josh Duhamel + Julianne Hough + Cobie Smulders + + 2013 + Movies + Romance + + + TVG + + + 2 + + + + Rocky Balboa + Retired Rocky's (Sylvester Stallone) plan to re-enter the ring for a few small matches escalates into a full-fledged bout with the world's reigning heavyweight. + + Sylvester Stallone + Burt Young + Antonio Tarver + + 2006 + Movies + Drama + + + TVG + + + 3 + + + + REAL Sports With Bryant Gumbel + Chatting with University of Connecticut basketball coach Dan Hurley; controversies surrounding Dubai racehorse mogul Sheikh Mohammed bin Rashid al Maktoum; Fox NFL Sunday; an update on the Aldrich brothers. + Sports + Talk Show + + + TVPG + + + + Real Time With Bill Maher + Acerbic comic Bill Maher welcomes a panel of guests from diverse parts of the political spectrum for a lively discussion of current events, as well as offering his own perspective on contemporary issues. + Talk Shows + Comedy + + + TVMA + + + + Furious 7 + A smooth-talking government agent offers to help Dominic Toretto (Vin Diesel) and his gang eliminate a dangerous enemy in exchange for their help in rescuing a kidnapped computer hacker. + + Vin Diesel + Paul Walker + Dwayne Johnson + + 2015 + Movies + Action + + + TVPG + + + 3 + + + + AKA Mr. Chow + Michael Chow overcomes childhood trauma, personal loss and systemic prejudice to become an actor, artist and restaurateur. + 2023 + Movies + Documentary + + + + Dawn of the Planet of the Apes + Human survivors of a plague threaten Caesar's growing nation of genetically evolved apes. Though they reach a fragile peace, soon both sides are brought to the brink of a war that will determine which will become Earth's dominant species. + + Andy Serkis + Jason Clarke + Gary Oldman + + 2014 + Movies + Sci-Fi + + + TVG + + + 3 + + + + The Hobbit: The Battle of the Five Armies + As the dragon Smaug rains fire on the citizens of Lake-town, Sauron sends legions of Orcs to attack the Lonely Mountain. Men, Dwarves and Elves must decide whether to unite and prevail -- or be destroyed -- and Middle Earth hangs in the balance. + + Ian McKellen + Martin Freeman + Richard Armitage + + 2014 + Movies + Fantasy + + + TVG + + + 2 + + + + Focus + A veteran con man (Will Smith) is thrown off his game when his former lover and protege (Margot Robbie) unexpectedly appears and interferes with his latest -- and very dangerous -- scheme. + + Will Smith + Margot Robbie + Adrian Martinez + + 2015 + Movies + Thriller + + + TVPG + + + 2 + + + + The Gilded Age + You Don't Even Like Opera + Agnes shares news of her nephew Dashiell's imminent arrival in New York; Bertha decides to back the new Metropolitan Opera House. + + Christine Baranski + Cynthia Nixon + Carrie Coon + + Drama + History + + + TVMA + + + + Get Shorty + A film-loving loan shark (John Travolta) teams with a B-movie producer (Gene Hackman) to become a Hollywood mogul. + + John Travolta + Gene Hackman + Rene Russo + + 1995 + Movies + Comedy + + + TVPG + + + 3 + + + + Be Cool + Chili Palmer (John Travolta) runs afoul of music-industry players when he teams up with a friend's widow (Uma Thurman) to produce a singer's debut album. + + John Travolta + Uma Thurman + Vince Vaughn + + 2005 + Movies + Comedy + + + TVG + + + 2 + + + + The Last Stand + A sheriff (Arnold Schwarzenegger) must take matters into his own hands when a notorious drug lord escapes from FBI custody and comes speeding toward a showdown in the lawman's quiet border town. + + Arnold Schwarzenegger + Forest Whitaker + Johnny Knoxville + + 2013 + Movies + Action + + + TVPG + + + 2 + + + + The Last Stand + A sheriff (Arnold Schwarzenegger) must take matters into his own hands when a notorious drug lord escapes from FBI custody and comes speeding toward a showdown in the lawman's quiet border town. + + Arnold Schwarzenegger + Forest Whitaker + Johnny Knoxville + + 2013 + Movies + Action + + + TVPG + + + 2 + + + + Oracle + A young woman accepts a job on a property with a traumatic past. Upon her arrival, she soon realizes that the nightmares of her childhood are connected to the evil in the house. + + Heather Graham + Cameron Crovetti + Nicholas Crovetti + + 2023 + Movies + Horror + + + + Narc + A policeman (Jason Patric) and a tough veteran (Ray Liotta) try to solve the murder of the latter's undercover partner. + + Ray Liotta + Jason Patric + Chi McBride + + 2002 + Movies + Thriller + + + TVPG + + + 3 + + + + Agent Cody Banks + Recruited by the CIA, a teen works under cover to befriend a girl whose father unknowingly works for an evil organization. + + Frankie Muniz + Hilary Duff + Angie Harmon + + 2003 + Movies + Children + + + TVG + + + 2 + + + + The Naked Gun: From the Files of Police Squad! + A blundering Los Angeles detective (Leslie Nielsen) and his boss (George Kennedy) foil a plan to assassinate Queen Elizabeth. + + Leslie Nielsen + George Kennedy + Priscilla Presley + + 1988 + Movies + Comedy + + + TVG + + + 3 + + + + The Lord of the Rings: The Fellowship of the Ring + A chosen hobbit (Elijah Wood) and his loyal friends join a wizard (Ian McKellen), humans, a dwarf and an elf on a quest to destroy a powerful ring and defeat an evil lord. + + Elijah Wood + Ian McKellen + Liv Tyler + + 2001 + Movies + Fantasy + + + TVG + + + 3 + + + + Scary Movie + Keenen Ivory Wayans directed this sendup of slasher films in which a vengeful killer stalks a group of nubile teens. + + Shawn Wayans + Marlon Wayans + Cheri Oteri + + 2000 + Movies + Comedy + + + TVPG + + + 3 + + + + Scary Movie 2 + Psychology students and their professor spend the weekend in a haunted house in this sendup of horror films. + + Shawn Wayans + Marlon Wayans + Anna Faris + + 2001 + Movies + Comedy + + + TVPG + + + 1 + + + + Scary Movie 3 + After Cindy (Anna Faris) accidentally watches a strange videotape that causes the viewer to die within a week, she discovers the tape is only one of many weird happenings. + + Anna Faris + Anthony Anderson + Leslie Nielsen + + 2003 + Movies + Comedy + + + TVG + + + 2 + + + + Burn After Reading + Chaos reigns when a gym employee (Frances McDormand) and her colleague try to benefit from a disc that they think holds state secrets but, really, contains the memoirs of a former CIA analyst . + + George Clooney + Frances McDormand + John Malkovich + + 2008 + Movies + Thriller + + + TVPG + + + 3 + + + + Hackers + A master hacker (Jonny Lee Miller) unites teen computer freaks against an embezzling computer-security agent known as the Plague. + + Jonny Lee Miller + Angelina Jolie + Jesse Bradford + + 1995 + Movies + Thriller + + + TVG + + + 2 + + + + The Gilded Age + Some Sort of Trick + George delivers a final decision to Oscar; Peggy is welcomed back into the Van Rhijn household by all but one; Marian meets a new match. + + Christine Baranski + Cynthia Nixon + Carrie Coon + + Drama + History + + + TVMA + + + + Throw Momma From the Train + Two writers (Danny DeVito, Billy Crystal) mistake tit-for-tat murders: one's ex-wife for the other's beastly mother (Anne Ramsey). + + Danny DeVito + Billy Crystal + Anne Ramsey + + 1987 + Movies + Comedy + + + TVG + + + 3 + + + + Bull Durham + A literary baseball groupie (Susan Sarandon) romances a pitcher (Tim Robbins) and a catcher (Kevin Costner) on a minor-league North Carolina team. + + Kevin Costner + Susan Sarandon + Tim Robbins + + 1988 + Movies + Romance + + + TVPG + + + 3 + + + + The Ice Storm + Suburbanites (Kevin Kline, Joan Allen) in failing marriages seek fulfillment elsewhere, while their teen children explore sexuality. + + Kevin Kline + Joan Allen + Henry Czerny + + 1997 + Movies + Drama + + + TVPG + + + 3 + + + + The Ice Storm + Suburbanites (Kevin Kline, Joan Allen) in failing marriages seek fulfillment elsewhere, while their teen children explore sexuality. + + Kevin Kline + Joan Allen + Henry Czerny + + 1997 + Movies + Drama + + + TVPG + + + 3 + + + + 30 Coins + Hellish Creatures + Elena and Paco adjust to their unexpected new circumstances, as Antonio's visions reveal Barbrows' sinister intentions. + + Eduard Fernández + Miguel Ángel Silvestre + Megan Montaner + + Drama + + + TVMA + + + + You're Next + Members of an estranged, upper-class family must pull together to repel home invaders who are disguised in animal masks and trying to kill them. + + Sharni Vinson + Nicholas Tucci + Wendy Glenn + + 2011 + Movies + Horror + + + TV14 + + + 2 + + + + Avatar + On an alien planet, a former Marine (Sam Worthington) falls in love with a blue-skinned warrior (Zoe Saldana) and sides with her people against humankind's encroachment on their lush world. + + Sam Worthington + Zoe Saldana + Sigourney Weaver + + 2009 + Movies + Sci-Fi + + + TVG + + + 3 + + + + Nights in Rodanthe + Two troubled souls (Richard Gere, Diane Lane) find comfort and a life-changing romance during a stormy weekend at a North Carolina inn. + + Richard Gere + Diane Lane + Christopher Meloni + + 2008 + Movies + Romance + + + TVG + + + 2 + + + + Pootie Tang + Although he speaks an indecipherable language, a superhero (Lance Crouther) protects children from a mogul (Jennifer Coolidge) who encourages smoking, drinking and eating fast food. + + Lance Crouther + Jennifer Coolidge + Wanda Sykes + + 2001 + Movies + Comedy + + + TVG + + + 1 + + + + Dude, Where's My Car? + Two potheads (Ashton Kutcher, Seann William Scott) wake to discover their car missing, their drug stash gone and no memory of the previous night's events. + + Ashton Kutcher + Seann William Scott + Kristy Swanson + + 2000 + Movies + Comedy + + + TVG + + + 1 + + + + Wayne's World + Metal-head friends Wayne (Mike Myers) and Garth (Dana Carvey) sell their basement cable-access TV show to a city slicker (Rob Lowe). + + Mike Myers + Dana Carvey + Rob Lowe + + 1992 + Movies + Comedy + + + TVG + + + 2 + + + + Wayne's World 2 + The world's best roadie helps goofy Wayne (Mike Myers) and Garth (Dana Carvey) organize a rock concert called Waynestock. + + Mike Myers + Dana Carvey + Christopher Walken + + 1993 + Movies + Comedy + + + TVG + + + 2 + + + + Flight + A veteran pilot (Denzel Washington) makes a miraculous landing after a mechanical malfunction sends his plane hurtling toward the ground, but an investigation into the incident reveals that he was drunk at the time. + + Denzel Washington + Don Cheadle + Kelly Reilly + + 2012 + Movies + Drama + + + TVPG + + + 3 + + + + AKA Mr. Chow + Michael Chow overcomes childhood trauma, personal loss and systemic prejudice to become an actor, artist and restaurateur. + 2023 + Movies + Documentary + + + + The Gilded Age + Some Sort of Trick + George delivers a final decision to Oscar; Peggy is welcomed back into the Van Rhijn household by all but one; Marian meets a new match. + + Christine Baranski + Cynthia Nixon + Carrie Coon + + Drama + History + + + TVMA + + + + 30 Coins + Hellish Creatures + Elena and Paco adjust to their unexpected new circumstances, as Antonio's visions reveal Barbrows' sinister intentions. + + Eduard Fernández + Miguel Ángel Silvestre + Megan Montaner + + Drama + + + TVMA + + + + Last Week Tonight With John Oliver + Comedian John Oliver hosts an in-depth, satirical look at developments from the past seven days in news, politics and current events. + Talk Shows + Comedy + + + TVMA + + + + American Gangster + A Harlem mobster (Denzel Washington) combines ingenuity and strict business codes to dominate organized crime, while a veteran cop (Russell Crowe) searches for a way to bring him down. + + Denzel Washington + Russell Crowe + Chiwetel Ejiofor + + 2007 + Movies + Crime Story + + + TVPG + + + 3 + + + + The Insurrectionist Next Door + Alexandra Pelosi turns her camera on people who stormed the U.S. Capitol on January 6, 2021; through interviews conducted over two years, Pelosi talks to individuals charged with crimes for their participation in the unprecedented events of the day. + Specials + Documentary + + + TV14 + + + + The Insurrectionist Next Door + Alexandra Pelosi turns her camera on people who stormed the U.S. Capitol on January 6, 2021; through interviews conducted over two years, Pelosi talks to individuals charged with crimes for their participation in the unprecedented events of the day. + Specials + Documentary + + + TV14 + + + + Angel of Mine + A woman begins to lose her grip on her sanity when she begins to think her daughter is still alive. + + Noomi Rapace + Yvonne Strahovski + Luke Evans + + 2019 + Movies + Thriller + + + TVPG + + + + First Reformed + The pastor of a small church in upstate New York spirals out of control after a soul-shaking encounter with an unstable environmental activist and his pregnant wife. + + Ethan Hawke + Amanda Seyfried + Philip Ettinger + + 2017 + Movies + Thriller + + + TVPG + + + 3 + + + + Furious 7 + A smooth-talking government agent offers to help Dominic Toretto (Vin Diesel) and his gang eliminate a dangerous enemy in exchange for their help in rescuing a kidnapped computer hacker. + + Vin Diesel + Paul Walker + Dwayne Johnson + + 2015 + Movies + Action + + + TVPG + + + 3 + + + + Crisis Hotline: Veterans Press 1 + Counselors provide support, guidance and hope to despondent servicemen dealing with emotional, physical and financial troubles. + 2013 + Movies + Documentary + + + TV14 + + + + Out of Time + Considered a suspect in a deadly arson, a police chief (Denzel Washington) must cover his tracks while trying to prove his innocence. + + Denzel Washington + Eva Mendes + Sanaa Lathan + + 2003 + Movies + Thriller + + + TVG + + + 2 + + + + Napoleon Dynamite + A gawky teenager (Jon Heder) from an odd family (Jon Gries, Aaron Ruell) helps his new friend run for class president against a popular student. + + Jon Heder + Jon Gries + Aaron Ruell + + 2004 + Movies + Comedy + + + TVG + + + 3 + + + + Reality + A former American intelligence specialist is given the longest sentence for the unauthorized release of government information to the media about Russian interference in the 2016 United States elections via an email operation. + + Sydney Sweeney + Josh Hamilton + Marchánt Davis + + 2023 + Movies + Drama + + + TVPG + + + + Soul Plane + Passengers and crew (Kevin Hart, Method Man) enjoy a wild party aboard an airliner flying from Los Angeles to New York. + + Kevin Hart + Tom Arnold + Method Man + + 2004 + Movies + Comedy + + + TVPG + + + 2 + + + + Radio + A high-school football coach (Ed Harris) becomes a mentor to a mentally impaired young man (Cuba Gooding Jr.) in 1970s South Carolina. + + Cuba Gooding Jr. + Ed Harris + Alfre Woodard + + 2003 + Movies + Drama + + + TVG + + + 2 + + + + Moonlight + A look at three defining chapters in the life of Chiron, a young black man growing up in Miami. His epic journey to manhood is guided by the kindness, support and love of the community that helps raise him. + + Mahershalalhashbaz Ali + Alex R. Hibbert + Ashton Sanders + + 2016 + Movies + Drama + + + TVPG + + + 3 + + + + Blindspotting + Collin must make it through his final three days of probation for a chance at a new beginning. His bond with his volatile best friend soon gets tested when Collin sees a police officer shoot a suspect in the back during a chase through the streets. + + Daveed Diggs + Rafael Casal + Janina Gavankar + + 2018 + Movies + Comedy + Drama + + + TVPG + + + 3 + + + + Bride Wars + After a clerical error schedules their weddings on the same day, two longtime best friends (Kate Hudson, Anne Hathaway) declare all-out war on each other. + + Kate Hudson + Anne Hathaway + Kristen Johnston + + 2009 + Movies + Comedy + + + TVG + + + 1 + + + + Black Sheep + To head off political embarrassment, the aide (David Spade) of a gubernatorial candidate (Tim Matheson) shepherds his boss's uncouth brother (Chris Farley). + + Chris Farley + David Spade + Tim Matheson + + 1996 + Movies + Comedy + + + TVG + + + 1 + + + + Soul Plane + Passengers and crew (Kevin Hart, Method Man) enjoy a wild party aboard an airliner flying from Los Angeles to New York. + + Kevin Hart + Tom Arnold + Method Man + + 2004 + Movies + Comedy + + + TVPG + + + 2 + + + + Spring Breakers + Four college friends (Vanessa Hudgens, Selena Gomez, Ashley Benson, Rachel Korine) are arrested after robbing a restaurant to fund their spring-break trip. They land in more trouble when a drug and arms dealer bails them out to do some dirty work. + + James Franco + Vanessa Hudgens + Selena Gomez + + 2012 + Movies + Comedy + + + TV14 + + + 3 + + + + The Big Wedding + A long-divorced couple (Robert De Niro, Diane Keaton) must pretend they're still happily married when their adopted son's ultraconservative biological mother flies in for the young man's nuptials. + + Robert De Niro + Diane Keaton + Susan Sarandon + + 2013 + Movies + Romance + + + TVPG + + + 1 + + + + The Big Wedding + A long-divorced couple (Robert De Niro, Diane Keaton) must pretend they're still happily married when their adopted son's ultraconservative biological mother flies in for the young man's nuptials. + + Robert De Niro + Diane Keaton + Susan Sarandon + + 2013 + Movies + Romance + + + TVPG + + + 1 + + + + Military Wives + Faced with their loved ones serving in Afghanistan, women from different backgrounds come together to form the very first military wives choir, helping each other through some of life's most difficult moments on an international stage. + + Kristin Scott Thomas + Sharon Horgan + Jason Flemyng + + 2019 + Movies + Comedy + Drama + + + 2 + + + + See How They Run + In 1950s London, a world-weary inspector and an eager rookie constable take on a puzzling whodunit within the glamorously sordid world of underground theater, investigating a mysterious homicide at their own peril. + + Sam Rockwell + Saoirse Ronan + David Oyelowo + + 2022 + Movies + Mystery + + + TVG + + + 2 + + + + Madagascar: Escape 2 Africa + Zoo animals (Ben Stiller, Chris Rock) from New York meet others of their species for the first time after crash-landing on the Dark Continent. + + Ben Stiller + Chris Rock + David Schwimmer + + 2008 + Movies + Animated + + + TVG + + + 3 + + + + The Fluffy Movie + Stand-up comic Gabriel Iglesias performs during his sold-out. + + Gabriel Iglesias + + 2014 + Movies + Comedy + + + 2 + + + + Batman + Batman (Adam West) and Robin (Burt Ward) save Gotham City from the Catwoman, Joker (Cesar Romero), Penguin and Riddler. + + Adam West + Burt Ward + Cesar Romero + + 1966 + Movies + Action + + + TVG + + + 2 + + + + The Flash + Worlds collide when the Flash travels back in time to change the events of the past. However, when his attempt to save his family alters the future, he becomes trapped in a reality in which General Zod has returned, threatening annihilation. + + Ezra Miller + Michael Keaton + Sasha Calle + + 2023 + Movies + Action + + + 2 + + + + Best Man Down + When their best man (Tyler Labine) dies suddenly, two newlyweds (Justin Long, Jess Weixler) must cancel their honeymoon to arrange his funeral. + + Justin Long + Tyler Labine + Jess Weixler + + 2012 + Movies + Comedy + Drama + + + TVG + + + 2 + + + + The Menu + Shocking surprises await a couple when they travel to a coastal island to sample a chef's lavish menu at an exclusive restaurant. + + Ralph Fiennes + Anya Taylor-Joy + Nicholas Hoult + + 2022 + Movies + Horror + + + TVPG + + + 3 + + + + Bulworth + After hiring a hit man to kill him, a disillusioned senator (Warren Beatty) starts speaking the blunt truth at campaign rallies. + + Warren Beatty + Halle Berry + Don Cheadle + + 1998 + Movies + Comedy + Drama + + + TVPG + + + 3 + + + + Wayne's World 2 + The world's best roadie helps goofy Wayne (Mike Myers) and Garth (Dana Carvey) organize a rock concert called Waynestock. + + Mike Myers + Dana Carvey + Christopher Walken + + 1993 + Movies + Comedy + + + TVG + + + 2 + + + + My Big Fat Greek Wedding + Family tensions arise after a woman (Nia Vardalos) falls in love with a man (John Corbett) who is not Greek. + + Nia Vardalos + John Corbett + Michael Constantine + + 2002 + Movies + Romance + + + TVG + + + 3 + + + + I, Tonya + In 1991, talented figure skater Tonya Harding becomes the first American woman to complete a triple axel during a competition. In 1994, her world comes crashing down when her ex-husband conspires to injure fellow Olympic hopeful Nancy Kerrigan. + + Margot Robbie + Sebastian Stan + Allison Janney + + 2017 + Movies + Drama + + + TVPG + + + 3 + + + + Gloria Bell + A free-spirited divorcee spends her nights on the dance floor, joyfully letting loose at clubs around Los Angeles. She soon finds herself thrust into an unexpected new romance, filled with the joys of budding love and the complications of dating. + + Julianne Moore + John Turturro + Michael Cera + + 2018 + Movies + Romance + + + TVG + + + 3 + + + + Gloria Bell + A free-spirited divorcee spends her nights on the dance floor, joyfully letting loose at clubs around Los Angeles. She soon finds herself thrust into an unexpected new romance, filled with the joys of budding love and the complications of dating. + + Julianne Moore + John Turturro + Michael Cera + + 2018 + Movies + Romance + + + TVG + + + 3 + + + + Diggers + During the 1970s an independent clammer (Paul Rudd) and his friends watch their way of life slowly disappear when corporate fisheries invade the Hamptons. + + Paul Rudd + Lauren Ambrose + Ron Eldard + + 2006 + Movies + Comedy + Drama + + + 2 + + + + Team America: World Police + Puppet commandos protect the planet from fiendish terrorists and North Korean dictator Kim Jong Il (Trey Parker). + + Trey Parker + Matt Stone + Kristen Miller + + 2004 + Movies + Comedy + + + TVPG + + + 3 + + + + Are We There Yet? + Hoping to impress a beautiful divorcee (Nia Long), a man (Ice Cube) takes her two mischievous children on a disastrous road trip. + + Ice Cube + Nia Long + Jay Mohr + + 2005 + Movies + Children + + + TVG + + + 2 + + + + Alvin and the Chipmunks + Musical but mischievous chipmunks Alvin, Simon and Theodore wreak havoc in the life of songwriter Dave Seville (Jason Lee). + + Jason Lee + David Cross + Cameron Richardson + + 2007 + Movies + Children + + + TVG + + + 2 + + + + Teen Titans GO! to the Movies + With a few madcap ideas and a song in their hearts, the Teen Titans head to Hollywood to fulfill their dreams. Things soon go awry, however, when a supervillain plans to take over the planet -- putting the very fate of the young heroes on the line. + + Greg Cipes + Scott Menville + Khary Payton + + 2018 + Movies + Animated + + + 3 + + + + Hotel for Dogs + After moving into a foster home that forbids pets, siblings (Emma Roberts, Jake T. Austin) transform an abandoned hotel into a home for their pooch and a slew of stray dogs. + + Emma Roberts + Jake T. Austin + Lisa Kudrow + + 2009 + Movies + Children + + + TVG + + + 2 + + + + Father Figures + Brothers Kyle and Peter Reynolds are shocked to discover that the father they never knew is still alive. As the siblings set out on an epic quest to find him, they start to learn more about their eccentric mom's past than they ever wanted to know. + + Ed Helms + Owen Wilson + Glenn Close + + 2017 + Movies + Comedy + + + TVPG + + + 1 + + + + The Benchwarmers + A millionaire (Jon Lovitz) helps three nerdy buddies (David Spade, Rob Schneider, Jon Heder) form a baseball team to compete against all the mean Little Leaguers. + + David Spade + Rob Schneider + Jon Heder + + 2006 + Movies + Comedy + + + TVG + + + 1 + + + + Yvonne Orji: A Whole Me + Orji uses therapy as a through line to discuss her thoughts on friendship, dating, adulting and why guys need better friends; Orji shows her range while also being a no-holds-barred therapy session for all. + Specials + Comedy + + + TVMA + + + + Blindspotting + Collin must make it through his final three days of probation for a chance at a new beginning. His bond with his volatile best friend soon gets tested when Collin sees a police officer shoot a suspect in the back during a chase through the streets. + + Daveed Diggs + Rafael Casal + Janina Gavankar + + 2018 + Movies + Comedy + Drama + + + TVPG + + + 3 + + + + The Wash + Two roommates (Dr. Dre, Snoop. + + Dr. Dre + Snoop Dogg + George Wallace + + 2001 + Movies + Comedy + + + TVPG + + + 1 + + + + Martin Lawrence Live: Runteldat + The comic gives his take on critics, sex and his 1999 brush with death in a filmed concert performance. + 2002 + Movies + Comedy + + + TVPG + + + 2 + + + + Birdman or (The Unexpected Virtue of Ignorance) + A washed-up actor (Michael Keaton), whose previous claim to fame was his portrayal of a popular superhero, attempts to recapture his past glory by mounting a Broadway play. + + Michael Keaton + Zach Galifianakis + Edward Norton + + 2014 + Movies + Comedy + + + TVPG + + + 3 + + + + House Party + Aspiring club promoters and best buds Damon and Kevin need a huge windfall to make their problems go away. They decide to host the party of the year at an exclusive mansion, which just happens to belong to none other than NBA superstar LeBron James. + + Tosin Cole + Jacob Latimore + Karen Obilom + + 2023 + Movies + Comedy + + + TVPG + + + 2 + + + + Spaceballs + President Skroob (Mel Brooks) pits evil Dark Helmet (Rick Moranis) against Lone Starr and the half-man, half-dog Barf (John Candy). + + Mel Brooks + John Candy + Rick Moranis + + 1987 + Movies + Comedy + + + TVG + + + 2 + + + + Spaceballs + President Skroob (Mel Brooks) pits evil Dark Helmet (Rick Moranis) against Lone Starr and the half-man, half-dog Barf (John Candy). + + Mel Brooks + John Candy + Rick Moranis + + 1987 + Movies + Comedy + + + TVG + + + 2 + + + + The Mexican + A bungling gangster (Brad Pitt) must reform to please his girlfriend (Julia Roberts) but still has one last job to fulfill. + + Brad Pitt + Julia Roberts + James Gandolfini + + 2001 + Movies + Adventure + + + TVPG + + + 2 + + + + Drew Michael: Red Blue Green + In this hilarious, confessional hour of stand-up, Drew Michael airs his issues with relationships, social media, and comedy as therapy. + Specials + Comedy + + + TVMA + + + + Men at Work + Two goofy garbagemen (Charlie Sheen, Emilio Estevez) find a politician's corpse in a can, and a toxic-waste scheme behind it. + + Charlie Sheen + Emilio Estevez + Leslie Hope + + 1990 + Movies + Comedy + + + TVG + + + 2 + + + + Fantastic Mr. Fox + After three nefarious farmers declare war on them, a sly fox (George Clooney) rallies his animal neighbors to fight back. + + George Clooney + Meryl Streep + Jason Schwartzman + + 2009 + Movies + Animated + + + TVG + + + 3 + + + + Mannequin + A Philadelphia window dresser (Andrew McCarthy) woos a mannequin (Kim Cattrall) brought to life by the spirit of an ancient princess. + + Andrew McCarthy + Kim Cattrall + Estelle Getty + + 1987 + Movies + Fantasy + + + TVG + + + 2 + + + + Tommy Boy + A ne'er-do-well auto-parts heir (Chris Farley) must stop his father's (Brian Dennehy) widow from selling the business. + + Chris Farley + David Spade + Brian Dennehy + + 1995 + Movies + Comedy + + + TVG + + + 2 + + + + Fantastic Beasts: The Secrets of Dumbledore + Professor Albus Dumbledore knows the powerful, dark wizard Gellert Grindelwald is moving to seize control of the wizarding world. Unable to stop him alone, he entrusts magizoologist Newt Scamander to lead an intrepid team of wizards and witches. + + Eddie Redmayne + Jude Law + Mads Mikkelsen + + 2022 + Movies + Fantasy + + + 2 + + + + When You Clean a Stranger's Home + Abby, a first-generation high school student, describes what she and her mom have learned about people when cleaning their homes. + 2021 + Movies + Drama + + + TVPG + + + + Sam Jay: Salute Me or Shoot Me + A witty and raw rumination on life's challenges as well as society at large, ultimately urging people to have empathy for others in spite of differences. + Specials + Comedy + + + TVMA + + + + The Naked Gun 2 1/2: The Smell of Fear + Frank (Leslie Nielsen) and Ed (George Kennedy) of. + + Leslie Nielsen + Priscilla Presley + George Kennedy + + 1991 + Movies + Comedy + + + TVG + + + 2 + + + + Naked Gun 33 1/3: The Final Insult + Ed (George Kennedy) coaxes his. + + Leslie Nielsen + Priscilla Presley + George Kennedy + + 1994 + Movies + Comedy + + + TVG + + + 2 + + + + Swiss Army Man + Stranded on a deserted island, a young man (Paul Dano) embarks on a journey back to civilization with a talking, flatulent corpse (Daniel Radcliffe). + + Paul Dano + Daniel Radcliffe + Mary Elizabeth Winstead + + 2016 + Movies + Comedy + + + TVPG + + + 2 + + + + The Weekend + A down-on-her-luck comedian's vacation plans are interrupted by her ex-boyfriend and his new girlfriend. + + Sasheer Zamata + Tone Bell + DeWanda Wise + + 2018 + Movies + Comedy + + + + Get Shorty + A film-loving loan shark (John Travolta) teams with a B-movie producer (Gene Hackman) to become a Hollywood mogul. + + John Travolta + Gene Hackman + Rene Russo + + 1995 + Movies + Comedy + + + TVPG + + + 3 + + + + Be Cool + Chili Palmer (John Travolta) runs afoul of music-industry players when he teams up with a friend's widow (Uma Thurman) to produce a singer's debut album. + + John Travolta + Uma Thurman + Vince Vaughn + + 2005 + Movies + Comedy + + + TVG + + + 2 + + + + See How They Run + In 1950s London, a world-weary inspector and an eager rookie constable take on a puzzling whodunit within the glamorously sordid world of underground theater, investigating a mysterious homicide at their own peril. + + Sam Rockwell + Saoirse Ronan + David Oyelowo + + 2022 + Movies + Mystery + + + TVG + + + 2 + + + + See How They Run + In 1950s London, a world-weary inspector and an eager rookie constable take on a puzzling whodunit within the glamorously sordid world of underground theater, investigating a mysterious homicide at their own peril. + + Sam Rockwell + Saoirse Ronan + David Oyelowo + + 2022 + Movies + Mystery + + + TVG + + + 2 + + + + The Art of Self-Defense + After getting attacked on the street, a man enlists in a local dojo that's led by a charismatic and mysterious sensei. He soon uncovers a sinister fraternity of violence and masculinity while trying to learn how to defend himself. + + Jesse Eisenberg + Alessandro Nivola + Imogen Poots + + 2019 + Movies + Comedy + + + TVPG + + + 3 + + + + Rubber + A sentient tire rolls through the desert, using the power of its mind to make small animals -- and human heads -- explode. + + Stephen Spinella + Roxane Mesquida + Jack Plotnick + + 2010 + Movies + Comedy + + + TVPG + + + 2 + + + + Throw Momma From the Train + Two writers (Danny DeVito, Billy Crystal) mistake tit-for-tat murders: one's ex-wife for the other's beastly mother (Anne Ramsey). + + Danny DeVito + Billy Crystal + Anne Ramsey + + 1987 + Movies + Comedy + + + TVG + + + 3 + + + + Black Sheep + To head off political embarrassment, the aide (David Spade) of a gubernatorial candidate (Tim Matheson) shepherds his boss's uncouth brother (Chris Farley). + + Chris Farley + David Spade + Tim Matheson + + 1996 + Movies + Comedy + + + TVG + + + 1 + + + + Small Soldiers + A boy (Gregory Smith) and his neighborhood crush (Kirsten Dunst) become involved in a war when a faulty microchip turns toy soldiers into a tiny but lethal army. + + Kirsten Dunst + Gregory Smith + Jay Mohr + + 1998 + Movies + Comedy + + + TVG + + + 2 + + + + Are We There Yet? + Hoping to impress a beautiful divorcee (Nia Long), a man (Ice Cube) takes her two mischievous children on a disastrous road trip. + + Ice Cube + Nia Long + Jay Mohr + + 2005 + Movies + Children + + + TVG + + + 2 + + + + Mass Ave + A racial profiling incident forever changes the relationship between a man and his son. + + Omete Anassi + Benjamin A. Onyango + + 2021 + Movies + Drama + + + TV14 + + + + The Naked Gun: From the Files of Police Squad! + A blundering Los Angeles detective (Leslie Nielsen) and his boss (George Kennedy) foil a plan to assassinate Queen Elizabeth. + + Leslie Nielsen + George Kennedy + Priscilla Presley + + 1988 + Movies + Comedy + + + TVG + + + 3 + + + + The Making Of: The Menu + Ralph Fiennes and Anya Taylor-Joy star in the thriller film about a couple that travels to a remote island to eat at an exclusive restaurant. + + Ralph Fiennes + Anya Taylor-Joy + + Specials + Documentary + + + TV14 + + + + Marley & Me + Newlyweds John and Jenny Grogan (Owen Wilson, Jennifer Aniston) adopt a playful puppy named Marley, who soon grows into an incorrigible handful. + + Owen Wilson + Jennifer Aniston + Eric Dane + + 2008 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Grease + Nice Sandy (Olivia Newton-John) and greaser Danny (John Travolta) try to be like each other in their 1950s high school. + + John Travolta + Olivia Newton-John + Stockard Channing + + 1978 + Movies + Musical + + + TVG + + + 3 + + + + Dim Sum Funeral + The grown children of an overbearing Chinese matriarch reluctantly gather to take part in seven days' worth of traditional funeral rites. + + Bai Ling + Steph Song + Talia Shire + + 2008 + Movies + Comedy + Drama + + + 2 + + + + Focus + A veteran con man (Will Smith) is thrown off his game when his former lover and protege (Margot Robbie) unexpectedly appears and interferes with his latest -- and very dangerous -- scheme. + + Will Smith + Margot Robbie + Adrian Martinez + + 2015 + Movies + Thriller + + + TVPG + + + 2 + + + + The Hobbit: The Battle of the Five Armies + As the dragon Smaug rains fire on the citizens of Lake-town, Sauron sends legions of Orcs to attack the Lonely Mountain. Men, Dwarves and Elves must decide whether to unite and prevail -- or be destroyed -- and Middle Earth hangs in the balance. + + Ian McKellen + Martin Freeman + Richard Armitage + + 2014 + Movies + Fantasy + + + TVG + + + 2 + + + + Hotel for Dogs + After moving into a foster home that forbids pets, siblings (Emma Roberts, Jake T. Austin) transform an abandoned hotel into a home for their pooch and a slew of stray dogs. + + Emma Roberts + Jake T. Austin + Lisa Kudrow + + 2009 + Movies + Children + + + TVG + + + 2 + + + + Throw Momma From the Train + Two writers (Danny DeVito, Billy Crystal) mistake tit-for-tat murders: one's ex-wife for the other's beastly mother (Anne Ramsey). + + Danny DeVito + Billy Crystal + Anne Ramsey + + 1987 + Movies + Comedy + + + TVG + + + 3 + + + + Throw Momma From the Train + Two writers (Danny DeVito, Billy Crystal) mistake tit-for-tat murders: one's ex-wife for the other's beastly mother (Anne Ramsey). + + Danny DeVito + Billy Crystal + Anne Ramsey + + 1987 + Movies + Comedy + + + TVG + + + 3 + + + + Beautiful Creatures + Teens (Alden Ehrenreich, Alice Englert) in a backwater Southern town encounter a history of family secrets and a curse that looms for one as she approaches her 16th birthday. + + Alden Ehrenreich + Alice Englert + Jeremy Irons + + 2013 + Movies + Fantasy + + + TVG + + + 2 + + + + Urban Cowboy + A Texas farmer (John Travolta) moves to the city, immerses himself in honky-tonk and falls for a sexy cowgirl (Debra Winger). + + John Travolta + Debra Winger + Scott Glenn + + 1980 + Movies + Drama + + + TVG + + + 3 + + + + Coraline + A girl (Dakota Fanning) finds a secret door in her new home and walks into an alternate reality that closely mirrors her own but, in many ways, is better. + + Dakota Fanning + Teri Hatcher + Jennifer Saunders + + 2009 + Movies + Animated + + + TVG + + + 3 + + + + The Emperor's Newest Clothes + A musical makeover of Hans Christian Andersen's classic tale about a vain ruler who lives in a kingdom where everyone agrees with him, and a child who reveals the truth that no one else is willing to say out loud. + + Alan Alda + Jeff Daniels + Alison Pill + + Specials + Animated + + + TVG + + + + The Music in Me: A Family Special + Profiles of young musicians from different musical and cultural traditions. + Specials + Documentary + + + TVG + + + + Crocodile Dundee II + Colombian drug dealers pursue the outback he-man (Paul Hogan) and his Manhattan girlfriend (Linda Kozlowski) in Australia. + + Paul Hogan + Linda Kozlowski + Charles S. Dutton + + 1988 + Movies + Comedy + + + TVG + + + 2 + + + + Fantastic Mr. Fox + After three nefarious farmers declare war on them, a sly fox (George Clooney) rallies his animal neighbors to fight back. + + George Clooney + Meryl Streep + Jason Schwartzman + + 2009 + Movies + Animated + + + TVG + + + 3 + + + + Are We Done Yet? + Newlyweds Nick and Suzanne decide to move to the suburbs to provide a better life for their two kids. However, their idea of a dream home is disturbed by a contractor who has a bizarre approach to business. + + Ice Cube + Nia Long + John C. McGinley + + 2007 + Movies + Children + + + TVG + + + 1 + + + + Rookie of the Year + A boy (Thomas Ian Nicholas) lands a job with the Chicago Cubs after an arm injury leaves him with major-league pitching talent. + + Thomas Ian Nicholas + Gary Busey + Albert Hall + + 1993 + Movies + Children + + + TVG + + + 3 + + + + DC League of Super-Pets + Krypto the Super-Dog must convince a ragtag group of animals to master their own newfound powers to help him save Superman and the rest of the Justice League. + + Dwayne Johnson + Kevin Hart + Kate McKinnon + + 2022 + Movies + Animated + + + TVG + + + 2 + + + + Kate & Leopold + A Manhattan woman (Meg Ryan) falls in love with the 19th-century Duke of Albany (Hugh Jackman) who has stepped through a time portal. + + Meg Ryan + Hugh Jackman + Liev Schreiber + + 2001 + Movies + Fantasy + + + TVG + + + 3 + + + + The Tomorrow Man + Ed Hemsler spends his life preparing for a disaster that may never come, and Ronnie Meisner spends her life shopping for things she may never use. These two people will try to find love while trying not to get lost in each other's stuff. + + John Lithgow + Blythe Danner + Derek Cecil + + 2019 + Movies + Romance + + + TVG + + + + Bee Season + A professor's (Richard Gere) obsession with his daughter's (Flora Cross) gift for spelling becomes detrimental to his relationship with his wife (Juliette Binoche) and son. + + Richard Gere + Juliette Binoche + Flora Cross + + 2005 + Movies + Drama + + + TVG + + + 2 + + + + X-Men: Days of Future Past + The X-Men (Hugh Jackman, Ian McKellen, Patrick Stewart) join forces with their younger selves in order to change the past and save mankind's future as well as their own. + + Hugh Jackman + James McAvoy + Michael Fassbender + + 2014 + Movies + Action + + + TVG + + + 3 + + + + Pretty in Pink + A rich teen (Andrew McCarthy) asks an unpopular student (Molly Ringwald) to the senior prom, creating problems among their separate circles of friends. + + Molly Ringwald + Jon Cryer + Andrew McCarthy + + 1986 + Movies + Romance + + + TVG + + + 3 + + + + Pretty in Pink + A rich teen (Andrew McCarthy) asks an unpopular student (Molly Ringwald) to the senior prom, creating problems among their separate circles of friends. + + Molly Ringwald + Jon Cryer + Andrew McCarthy + + 1986 + Movies + Romance + + + TVG + + + 3 + + + + Tommy Boy + A ne'er-do-well auto-parts heir (Chris Farley) must stop his father's (Brian Dennehy) widow from selling the business. + + Chris Farley + David Spade + Brian Dennehy + + 1995 + Movies + Comedy + + + TVG + + + 2 + + + + Grease + Nice Sandy (Olivia Newton-John) and greaser Danny (John Travolta) try to be like each other in their 1950s high school. + + John Travolta + Olivia Newton-John + Stockard Channing + + 1978 + Movies + Musical + + + TVG + + + 3 + + + + Classical Baby (I'm Grown Up Now): The Poetry Show + Actors Andy Garcia, John Lithgow, Susan Sarandon, Jeffrey Wright and others read great works of poetry for children. + Specials + Animated + + + TVY + + + + Kindergarten + One Fast Cookie + The class re-enacts the story of the gingerbread man. + Children + Documentary + + + TVY + + + + Happily Ever After: Fairy Tales for Every Child + The Fisherman and His Wife + The story of a magical fish and a greedy wife gets a Spanish-flavored retelling. Featuring the voices of Paul Rodriguez and Edward James Olmos. + + Paul Rodriguez + Julia Migenes + Liz Torres + + Animated + Children + + + TVY + + + + A Little Curious + Long Short Roll + Segments include Long Jump, Long Story, Short Story, Short Cut, Bob on a Roll, Roly Poly, Long Ago, Long, Long, Short Short Short, The Shoe Family Song, Rolling in Dough, Roll Call, The Long Yawn and more. + Animated + Children + + + TVY + + + + Crashbox + Grade-school children participate in fast-paced educational games. + + Maggie Baird + Veena Bidasha + Peter Lurie + + Game Shows + Children + + + TVY7 + + + + The Music in Me: Children's Recitals From Classical to Latin, Jazz to Zydeco + Profiles of young musicians from different musical and cultural traditions. + Specials + Documentary + + + TVG + + + + The Water Horse: Legend of the Deep + On the shore of Loch Ness, Angus finds an unusual egg that hatches a water horse, the legendary creature from Scottish mythology. Angus tries to keep its existence hidden, until his pet grows into the fabled Loch Ness monster. + + Emily Watson + Alex Etel + Ben Chaplin + + 2007 + Movies + Children + + + TVG + + + 3 + + + + The Prince & Me + A premedical student (Julia Stiles) falls in love with a Danish prince (Luke Mably) who keeps his identity a secret. + + Julia Stiles + Luke Mably + Ben Miller + + 2004 + Movies + Romance + + + TVG + + + 2 + + + + Radio + A high-school football coach (Ed Harris) becomes a mentor to a mentally impaired young man (Cuba Gooding Jr.) in 1970s South Carolina. + + Cuba Gooding Jr. + Ed Harris + Alfre Woodard + + 2003 + Movies + Drama + + + TVG + + + 2 + + + + Are We There Yet? + Hoping to impress a beautiful divorcee (Nia Long), a man (Ice Cube) takes her two mischievous children on a disastrous road trip. + + Ice Cube + Nia Long + Jay Mohr + + 2005 + Movies + Children + + + TVG + + + 2 + + + + Cats + A tribe of cats must decide yearly which one will ascend to the Heaviside Layer and come back to a new life. + + Taylor Swift + Idris Elba + Judi Dench + + 2019 + Movies + Musical + + + TVG + + + 1 + + + + Cesar Chavez + Famed labor organizer and civil-rights activist Cesar Chavez (Michael Peña) is torn between his duty to his family and his commitment to securing a living wage for farm workers. + + Michael Peña + America Ferrera + Rosario Dawson + + 2014 + Movies + History + + + 2 + + + + Avatar: The Way of Water + Jake Sully, Neytiri and their children explore the mysterious lands of Pandora. When a familiar threat resurfaces, they must fight a difficult war to protect their planet. + + Sam Worthington + Zoe Saldana + Sigourney Weaver + + 2022 + Movies + Sci-Fi + + + TVG + + + 3 + + + + Flash of Genius + Robert Kearns (Greg Kinnear) fights the auto industry, claiming that the intermittent windshield wiper is his invention. + + Greg Kinnear + Lauren Graham + Dermot Mulroney + + 2008 + Movies + Drama + + + 2 + + + + Cinéma + I am not your negro + Filmmaker Raoul Peck uses. + 2016 + Movies + Documentary + + + TVG + + + 3 + + + + Cinéma + I am not your negro + Filmmaker Raoul Peck uses. + 2016 + Movies + Documentary + + + TVG + + + 3 + + + + The Legend of Bagger Vance + A golf caddy (Will Smith) shows a disillusioned young war veteran (Matt Damon) how to master challenges and find meaning in life. + + Will Smith + Matt Damon + Charlize Theron + + 2000 + Movies + Drama + + + TVG + + + 3 + + + + Napoleon Dynamite + A gawky teenager (Jon Heder) from an odd family (Jon Gries, Aaron Ruell) helps his new friend run for class president against a popular student. + + Jon Heder + Jon Gries + Aaron Ruell + + 2004 + Movies + Comedy + + + TVG + + + 3 + + + + I Can't Do This but I Can Do That + Profiles of children with learning differences. + Specials + Documentary + + + TVG + + + + Kindergarten + Hooray for Holidays + Miss Johnson and the class celebrate the holidays by singing songs and painting pictures. + Children + Documentary + + + TVY + + + + Happily Ever After: Fairy Tales for Every Child + Aladdin + The tale of the legendary Arabian hero is told from the perspective of a poor Chinese boy. Featuring the voices of B.D. Wong, Joan Chen and George Takei. + + Bradd Wong + Joan Chen + George Takei + + Animated + Children + + + TVY + + + + A Little Curious + The Bob Show + Segments include Sticky Stuck, Echo Below, Rough Sailing, Thick Fog, Bubble Bath, Bubble Love, Rough Day, Into Thin Air. Undercover Cup, Open and Shut Case, Sidekick, Bob on a Roll, The Back of the Book, Covered with Kisses, and Good Night, Bob. + Animated + Children + + + TVY + + + + Crashbox + Segments include Revolting Slob, Haunted House Party, Eddie Bull, Captain Bones and more. + + Maggie Baird + Veena Bidasha + Peter Lurie + + Game Shows + Children + + + TVY7 + + + + HBO Storybook Musicals + Earthday Birthday + Young dinosaurs launch a crusade to save the planet from pollution. Featuring the voices of Christopher Reeve and Lainie Kazan. + Animated + Children + + + TVY + + + + Extranjero: Foreigner + Years after a tragic event ripped his country apart, a man returns to his hometown where he must confront his past and deal with unresolved issues. + + Arturo Lizardi + Jasmin Sanabria + Jorge Antares + + 2018 + Movies + Drama + + + TVPG + + + + El Perro y el Gato + Juntos Otra Vez, Together Again: Vacation + An energetic dog and a mellow cat teach vocabulary in English and Spanish. + Animated + Children + + + TVY + + + + Crocodile Dundee II + Colombian drug dealers pursue the outback he-man (Paul Hogan) and his Manhattan girlfriend (Linda Kozlowski) in Australia. + + Paul Hogan + Linda Kozlowski + Charles S. Dutton + + 1988 + Movies + Comedy + + + TVG + + + 2 + + + + Footloose + A hip Chicago teen (Kevin Bacon) moves to a Midwestern town where, thanks to a pastor (John Lithgow), dancing is outlawed. + + Kevin Bacon + Lori Singer + John Lithgow + + 1984 + Movies + Drama + + + TVG + + + 2 + + + + Just Wright + A physical therapist (Queen Latifah) falls in love with her patient (Common), a basketball player, but he only has eyes for her best friend (Paula Patton). + + Queen Latifah + Common + Paula Patton + + 2010 + Movies + Romance + + + TVG + + + 2 + + + + Robots + A robot (Ewan McGregor) leads a revolution against a corporate bigwig who wants to send older-model cyborgs to the scrap heap. + + Ewan McGregor + Halle Berry + Robin Williams + + 2005 + Movies + Animated + + + TVG + + + 3 + + + + Fame + Students (Asher Book, Kristy Flores, Paul Iacono) at New York's High School of Performing Arts see if they have the dedication and talent necessary to achieve their dreams. + + Asher Book + Kristy Flores + Paul Iacono + + 2009 + Movies + Drama + + + TVG + + + 2 + + + + Best Man Down + When their best man (Tyler Labine) dies suddenly, two newlyweds (Justin Long, Jess Weixler) must cancel their honeymoon to arrange his funeral. + + Justin Long + Tyler Labine + Jess Weixler + + 2012 + Movies + Comedy + Drama + + + TVG + + + 2 + + + + The Flash + Worlds collide when the Flash travels back in time to change the events of the past. However, when his attempt to save his family alters the future, he becomes trapped in a reality in which General Zod has returned, threatening annihilation. + + Ezra Miller + Michael Keaton + Sasha Calle + + 2023 + Movies + Action + + + 2 + + + + Elvis + From his rise to fame to his unprecedented superstardom, rock 'n' roll icon Elvis Presley maintains a complicated relationship with his enigmatic manager, Colonel Tom Parker, over the course of 20 years. + + Austin Butler + Tom Hanks + Olivia DeJonge + + 2022 + Movies + Drama + + + TVG + + + 3 + + + + Dawn of the Planet of the Apes + Human survivors of a plague threaten Caesar's growing nation of genetically evolved apes. Though they reach a fragile peace, soon both sides are brought to the brink of a war that will determine which will become Earth's dominant species. + + Andy Serkis + Jason Clarke + Gary Oldman + + 2014 + Movies + Sci-Fi + + + TVG + + + 3 + + + + Dawn of the Planet of the Apes + Human survivors of a plague threaten Caesar's growing nation of genetically evolved apes. Though they reach a fragile peace, soon both sides are brought to the brink of a war that will determine which will become Earth's dominant species. + + Andy Serkis + Jason Clarke + Gary Oldman + + 2014 + Movies + Sci-Fi + + + TVG + + + 3 + + + + X-Men: Days of Future Past + The X-Men (Hugh Jackman, Ian McKellen, Patrick Stewart) join forces with their younger selves in order to change the past and save mankind's future as well as their own. + + Hugh Jackman + James McAvoy + Michael Fassbender + + 2014 + Movies + Action + + + TVG + + + 3 + + + + Bride Wars + After a clerical error schedules their weddings on the same day, two longtime best friends (Kate Hudson, Anne Hathaway) declare all-out war on each other. + + Kate Hudson + Anne Hathaway + Kristen Johnston + + 2009 + Movies + Comedy + + + TVG + + + 1 + + + + Kindergarten + Doin' the Right Thing + The class learns about being polite to others. + Children + Documentary + + + TVY + + + + Happily Ever After: Fairy Tales for Every Child + The Shoemaker and the Elves + Kindly elves help a poor Aztec shoemaker. Featuring the voices of Jesse Borrego, Liz Torres and Lou Diamond Phillips. + + Jesse Borrego + Wanda De Jesus + Liz Torres + + Animated + Children + + + TVY + + + + A Little Curious + High Low Stretch + Segments include High Jump (Version 1), How Low Can You Go?, Rubberband Stretch, High Flyer, Seventh Inning Stretch, High Chair, Low Chair, High Note, Low Note, Stretch Your Imagination and more. + Animated + Children + + + TVY + + + + Crashbox + Segments include Revolting Slob, Distraction News, Psycho Math, Ten Seconds, Sketch Pad, Poop or Scoop, Haunted House Party and Riddle Snake. + + Maggie Baird + Veena Bidasha + Peter Lurie + + Game Shows + Children + + + TVY7 + + + + Mannequin Two: On the Move + The statue of a hexed Bavarian maiden (Kristy Swanson) comes to life for its keeper (William Ragsdale) in a Philadelphia department store. + + Kristy Swanson + William Ragsdale + Meshach Taylor + + 1991 + Movies + Fantasy + + + TVG + + + 1 + + + + Meet Dave + Tiny aliens explore the wilderness of New York City in a human-sized spaceship modeled after their captain (Eddie Murphy). + + Eddie Murphy + Elizabeth Banks + Gabrielle Union + + 2008 + Movies + Children + + + TVG + + + 2 + + + + DC League of Super-Pets + Krypto the Super-Dog must convince a ragtag group of animals to master their own newfound powers to help him save Superman and the rest of the Justice League. + + Dwayne Johnson + Kevin Hart + Kate McKinnon + + 2022 + Movies + Animated + + + TVG + + + 2 + + + + Aliens in the Attic + Vacationing youths battle an invading force of tiny aliens bent on conquering Earth, while the kids' parents remain unaware of what is happening. + + Carter Jenkins + Austin Butler + Ashley Tisdale + + 2009 + Movies + Children + + + TVG + + + 2 + + + + Are We Done Yet? + Newlyweds Nick and Suzanne decide to move to the suburbs to provide a better life for their two kids. However, their idea of a dream home is disturbed by a contractor who has a bizarre approach to business. + + Ice Cube + Nia Long + John C. McGinley + + 2007 + Movies + Children + + + TVG + + + 1 + + + + Coraline + A girl (Dakota Fanning) finds a secret door in her new home and walks into an alternate reality that closely mirrors her own but, in many ways, is better. + + Dakota Fanning + Teri Hatcher + Jennifer Saunders + + 2009 + Movies + Animated + + + TVG + + + 3 + + + + Hotel for Dogs + After moving into a foster home that forbids pets, siblings (Emma Roberts, Jake T. Austin) transform an abandoned hotel into a home for their pooch and a slew of stray dogs. + + Emma Roberts + Jake T. Austin + Lisa Kudrow + + 2009 + Movies + Children + + + TVG + + + 2 + + + + Meet Dave + Tiny aliens explore the wilderness of New York City in a human-sized spaceship modeled after their captain (Eddie Murphy). + + Eddie Murphy + Elizabeth Banks + Gabrielle Union + + 2008 + Movies + Children + + + TVG + + + 2 + + + + Beautiful Creatures + Teens (Alden Ehrenreich, Alice Englert) in a backwater Southern town encounter a history of family secrets and a curse that looms for one as she approaches her 16th birthday. + + Alden Ehrenreich + Alice Englert + Jeremy Irons + + 2013 + Movies + Fantasy + + + TVG + + + 2 + + + + The Hobbit: The Battle of the Five Armies + As the dragon Smaug rains fire on the citizens of Lake-town, Sauron sends legions of Orcs to attack the Lonely Mountain. Men, Dwarves and Elves must decide whether to unite and prevail -- or be destroyed -- and Middle Earth hangs in the balance. + + Ian McKellen + Martin Freeman + Richard Armitage + + 2014 + Movies + Fantasy + + + TVG + + + 2 + + + + The Hobbit: The Battle of the Five Armies + As the dragon Smaug rains fire on the citizens of Lake-town, Sauron sends legions of Orcs to attack the Lonely Mountain. Men, Dwarves and Elves must decide whether to unite and prevail -- or be destroyed -- and Middle Earth hangs in the balance. + + Ian McKellen + Martin Freeman + Richard Armitage + + 2014 + Movies + Fantasy + + + TVG + + + 2 + + + + Hotel for Dogs + After moving into a foster home that forbids pets, siblings (Emma Roberts, Jake T. Austin) transform an abandoned hotel into a home for their pooch and a slew of stray dogs. + + Emma Roberts + Jake T. Austin + Lisa Kudrow + + 2009 + Movies + Children + + + TVG + + + 2 + + + + Throw Momma From the Train + Two writers (Danny DeVito, Billy Crystal) mistake tit-for-tat murders: one's ex-wife for the other's beastly mother (Anne Ramsey). + + Danny DeVito + Billy Crystal + Anne Ramsey + + 1987 + Movies + Comedy + + + TVG + + + 3 + + + + Beautiful Creatures + Teens (Alden Ehrenreich, Alice Englert) in a backwater Southern town encounter a history of family secrets and a curse that looms for one as she approaches her 16th birthday. + + Alden Ehrenreich + Alice Englert + Jeremy Irons + + 2013 + Movies + Fantasy + + + TVG + + + 2 + + + + Urban Cowboy + A Texas farmer (John Travolta) moves to the city, immerses himself in honky-tonk and falls for a sexy cowgirl (Debra Winger). + + John Travolta + Debra Winger + Scott Glenn + + 1980 + Movies + Drama + + + TVG + + + 3 + + + + Coraline + A girl (Dakota Fanning) finds a secret door in her new home and walks into an alternate reality that closely mirrors her own but, in many ways, is better. + + Dakota Fanning + Teri Hatcher + Jennifer Saunders + + 2009 + Movies + Animated + + + TVG + + + 3 + + + + The Emperor's Newest Clothes + A musical makeover of Hans Christian Andersen's classic tale about a vain ruler who lives in a kingdom where everyone agrees with him, and a child who reveals the truth that no one else is willing to say out loud. + + Alan Alda + Jeff Daniels + Alison Pill + + Specials + Animated + + + TVG + + + + The Music in Me: A Family Special + Profiles of young musicians from different musical and cultural traditions. + Specials + Documentary + + + TVG + + + + Crocodile Dundee II + Colombian drug dealers pursue the outback he-man (Paul Hogan) and his Manhattan girlfriend (Linda Kozlowski) in Australia. + + Paul Hogan + Linda Kozlowski + Charles S. Dutton + + 1988 + Movies + Comedy + + + TVG + + + 2 + + + + Fantastic Mr. Fox + After three nefarious farmers declare war on them, a sly fox (George Clooney) rallies his animal neighbors to fight back. + + George Clooney + Meryl Streep + Jason Schwartzman + + 2009 + Movies + Animated + + + TVG + + + 3 + + + + Are We Done Yet? + Newlyweds Nick and Suzanne decide to move to the suburbs to provide a better life for their two kids. However, their idea of a dream home is disturbed by a contractor who has a bizarre approach to business. + + Ice Cube + Nia Long + John C. McGinley + + 2007 + Movies + Children + + + TVG + + + 1 + + + + Rookie of the Year + A boy (Thomas Ian Nicholas) lands a job with the Chicago Cubs after an arm injury leaves him with major-league pitching talent. + + Thomas Ian Nicholas + Gary Busey + Albert Hall + + 1993 + Movies + Children + + + TVG + + + 3 + + + + DC League of Super-Pets + Krypto the Super-Dog must convince a ragtag group of animals to master their own newfound powers to help him save Superman and the rest of the Justice League. + + Dwayne Johnson + Kevin Hart + Kate McKinnon + + 2022 + Movies + Animated + + + TVG + + + 2 + + + + Kate & Leopold + A Manhattan woman (Meg Ryan) falls in love with the 19th-century Duke of Albany (Hugh Jackman) who has stepped through a time portal. + + Meg Ryan + Hugh Jackman + Liev Schreiber + + 2001 + Movies + Fantasy + + + TVG + + + 3 + + + + The Tomorrow Man + Ed Hemsler spends his life preparing for a disaster that may never come, and Ronnie Meisner spends her life shopping for things she may never use. These two people will try to find love while trying not to get lost in each other's stuff. + + John Lithgow + Blythe Danner + Derek Cecil + + 2019 + Movies + Romance + + + TVG + + + + Bee Season + A professor's (Richard Gere) obsession with his daughter's (Flora Cross) gift for spelling becomes detrimental to his relationship with his wife (Juliette Binoche) and son. + + Richard Gere + Juliette Binoche + Flora Cross + + 2005 + Movies + Drama + + + TVG + + + 2 + + + + Bee Season + A professor's (Richard Gere) obsession with his daughter's (Flora Cross) gift for spelling becomes detrimental to his relationship with his wife (Juliette Binoche) and son. + + Richard Gere + Juliette Binoche + Flora Cross + + 2005 + Movies + Drama + + + TVG + + + 2 + + + + X-Men: Days of Future Past + The X-Men (Hugh Jackman, Ian McKellen, Patrick Stewart) join forces with their younger selves in order to change the past and save mankind's future as well as their own. + + Hugh Jackman + James McAvoy + Michael Fassbender + + 2014 + Movies + Action + + + TVG + + + 3 + + + + Pretty in Pink + A rich teen (Andrew McCarthy) asks an unpopular student (Molly Ringwald) to the senior prom, creating problems among their separate circles of friends. + + Molly Ringwald + Jon Cryer + Andrew McCarthy + + 1986 + Movies + Romance + + + TVG + + + 3 + + + + Tommy Boy + A ne'er-do-well auto-parts heir (Chris Farley) must stop his father's (Brian Dennehy) widow from selling the business. + + Chris Farley + David Spade + Brian Dennehy + + 1995 + Movies + Comedy + + + TVG + + + 2 + + + + Grease + Nice Sandy (Olivia Newton-John) and greaser Danny (John Travolta) try to be like each other in their 1950s high school. + + John Travolta + Olivia Newton-John + Stockard Channing + + 1978 + Movies + Musical + + + TVG + + + 3 + + + + Classical Baby (I'm Grown Up Now): The Poetry Show + Actors Andy Garcia, John Lithgow, Susan Sarandon, Jeffrey Wright and others read great works of poetry for children. + Specials + Animated + + + TVY + + + + Kindergarten + One Fast Cookie + The class re-enacts the story of the gingerbread man. + Children + Documentary + + + TVY + + + + Happily Ever After: Fairy Tales for Every Child + The Fisherman and His Wife + The story of a magical fish and a greedy wife gets a Spanish-flavored retelling. Featuring the voices of Paul Rodriguez and Edward James Olmos. + + Paul Rodriguez + Julia Migenes + Liz Torres + + Animated + Children + + + TVY + + + + A Little Curious + Long Short Roll + Segments include Long Jump, Long Story, Short Story, Short Cut, Bob on a Roll, Roly Poly, Long Ago, Long, Long, Short Short Short, The Shoe Family Song, Rolling in Dough, Roll Call, The Long Yawn and more. + Animated + Children + + + TVY + + + + Crashbox + Grade-school children participate in fast-paced educational games. + + Maggie Baird + Veena Bidasha + Peter Lurie + + Game Shows + Children + + + TVY7 + + + + The Music in Me: Children's Recitals From Classical to Latin, Jazz to Zydeco + Profiles of young musicians from different musical and cultural traditions. + Specials + Documentary + + + TVG + + + + The Water Horse: Legend of the Deep + On the shore of Loch Ness, Angus finds an unusual egg that hatches a water horse, the legendary creature from Scottish mythology. Angus tries to keep its existence hidden, until his pet grows into the fabled Loch Ness monster. + + Emily Watson + Alex Etel + Ben Chaplin + + 2007 + Movies + Children + + + TVG + + + 3 + + + + The Prince & Me + A premedical student (Julia Stiles) falls in love with a Danish prince (Luke Mably) who keeps his identity a secret. + + Julia Stiles + Luke Mably + Ben Miller + + 2004 + Movies + Romance + + + TVG + + + 2 + + + + Radio + A high-school football coach (Ed Harris) becomes a mentor to a mentally impaired young man (Cuba Gooding Jr.) in 1970s South Carolina. + + Cuba Gooding Jr. + Ed Harris + Alfre Woodard + + 2003 + Movies + Drama + + + TVG + + + 2 + + + + Are We There Yet? + Hoping to impress a beautiful divorcee (Nia Long), a man (Ice Cube) takes her two mischievous children on a disastrous road trip. + + Ice Cube + Nia Long + Jay Mohr + + 2005 + Movies + Children + + + TVG + + + 2 + + + + Cats + A tribe of cats must decide yearly which one will ascend to the Heaviside Layer and come back to a new life. + + Taylor Swift + Idris Elba + Judi Dench + + 2019 + Movies + Musical + + + TVG + + + 1 + + + + Cesar Chavez + Famed labor organizer and civil-rights activist Cesar Chavez (Michael Peña) is torn between his duty to his family and his commitment to securing a living wage for farm workers. + + Michael Peña + America Ferrera + Rosario Dawson + + 2014 + Movies + History + + + 2 + + + + Avatar: The Way of Water + Jake Sully, Neytiri and their children explore the mysterious lands of Pandora. When a familiar threat resurfaces, they must fight a difficult war to protect their planet. + + Sam Worthington + Zoe Saldana + Sigourney Weaver + + 2022 + Movies + Sci-Fi + + + TVG + + + 3 + + + + Avatar: The Way of Water + Jake Sully, Neytiri and their children explore the mysterious lands of Pandora. When a familiar threat resurfaces, they must fight a difficult war to protect their planet. + + Sam Worthington + Zoe Saldana + Sigourney Weaver + + 2022 + Movies + Sci-Fi + + + TVG + + + 3 + + + + Flash of Genius + Robert Kearns (Greg Kinnear) fights the auto industry, claiming that the intermittent windshield wiper is his invention. + + Greg Kinnear + Lauren Graham + Dermot Mulroney + + 2008 + Movies + Drama + + + 2 + + + + Cinéma + I am not your negro + Filmmaker Raoul Peck uses. + 2016 + Movies + Documentary + + + TVG + + + 3 + + + + The Legend of Bagger Vance + A golf caddy (Will Smith) shows a disillusioned young war veteran (Matt Damon) how to master challenges and find meaning in life. + + Will Smith + Matt Damon + Charlize Theron + + 2000 + Movies + Drama + + + TVG + + + 3 + + + + Napoleon Dynamite + A gawky teenager (Jon Heder) from an odd family (Jon Gries, Aaron Ruell) helps his new friend run for class president against a popular student. + + Jon Heder + Jon Gries + Aaron Ruell + + 2004 + Movies + Comedy + + + TVG + + + 3 + + + + I Can't Do This but I Can Do That + Profiles of children with learning differences. + Specials + Documentary + + + TVG + + + + Kindergarten + Hooray for Holidays + Miss Johnson and the class celebrate the holidays by singing songs and painting pictures. + Children + Documentary + + + TVY + + + + Happily Ever After: Fairy Tales for Every Child + Aladdin + The tale of the legendary Arabian hero is told from the perspective of a poor Chinese boy. Featuring the voices of B.D. Wong, Joan Chen and George Takei. + + Bradd Wong + Joan Chen + George Takei + + Animated + Children + + + TVY + + + + A Little Curious + The Bob Show + Segments include Sticky Stuck, Echo Below, Rough Sailing, Thick Fog, Bubble Bath, Bubble Love, Rough Day, Into Thin Air. Undercover Cup, Open and Shut Case, Sidekick, Bob on a Roll, The Back of the Book, Covered with Kisses, and Good Night, Bob. + Animated + Children + + + TVY + + + + Crashbox + Segments include Revolting Slob, Haunted House Party, Eddie Bull, Captain Bones and more. + + Maggie Baird + Veena Bidasha + Peter Lurie + + Game Shows + Children + + + TVY7 + + + + HBO Storybook Musicals + Earthday Birthday + Young dinosaurs launch a crusade to save the planet from pollution. Featuring the voices of Christopher Reeve and Lainie Kazan. + Animated + Children + + + TVY + + + + Extranjero: Foreigner + Years after a tragic event ripped his country apart, a man returns to his hometown where he must confront his past and deal with unresolved issues. + + Arturo Lizardi + Jasmin Sanabria + Jorge Antares + + 2018 + Movies + Drama + + + TVPG + + + + El Perro y el Gato + Juntos Otra Vez, Together Again: Vacation + An energetic dog and a mellow cat teach vocabulary in English and Spanish. + Animated + Children + + + TVY + + + + Crocodile Dundee II + Colombian drug dealers pursue the outback he-man (Paul Hogan) and his Manhattan girlfriend (Linda Kozlowski) in Australia. + + Paul Hogan + Linda Kozlowski + Charles S. Dutton + + 1988 + Movies + Comedy + + + TVG + + + 2 + + + + Footloose + A hip Chicago teen (Kevin Bacon) moves to a Midwestern town where, thanks to a pastor (John Lithgow), dancing is outlawed. + + Kevin Bacon + Lori Singer + John Lithgow + + 1984 + Movies + Drama + + + TVG + + + 2 + + + + Just Wright + A physical therapist (Queen Latifah) falls in love with her patient (Common), a basketball player, but he only has eyes for her best friend (Paula Patton). + + Queen Latifah + Common + Paula Patton + + 2010 + Movies + Romance + + + TVG + + + 2 + + + + Robots + A robot (Ewan McGregor) leads a revolution against a corporate bigwig who wants to send older-model cyborgs to the scrap heap. + + Ewan McGregor + Halle Berry + Robin Williams + + 2005 + Movies + Animated + + + TVG + + + 3 + + + + Fame + Students (Asher Book, Kristy Flores, Paul Iacono) at New York's High School of Performing Arts see if they have the dedication and talent necessary to achieve their dreams. + + Asher Book + Kristy Flores + Paul Iacono + + 2009 + Movies + Drama + + + TVG + + + 2 + + + + Best Man Down + When their best man (Tyler Labine) dies suddenly, two newlyweds (Justin Long, Jess Weixler) must cancel their honeymoon to arrange his funeral. + + Justin Long + Tyler Labine + Jess Weixler + + 2012 + Movies + Comedy + Drama + + + TVG + + + 2 + + + + The Flash + Worlds collide when the Flash travels back in time to change the events of the past. However, when his attempt to save his family alters the future, he becomes trapped in a reality in which General Zod has returned, threatening annihilation. + + Ezra Miller + Michael Keaton + Sasha Calle + + 2023 + Movies + Action + + + 2 + + + + Elvis + From his rise to fame to his unprecedented superstardom, rock 'n' roll icon Elvis Presley maintains a complicated relationship with his enigmatic manager, Colonel Tom Parker, over the course of 20 years. + + Austin Butler + Tom Hanks + Olivia DeJonge + + 2022 + Movies + Drama + + + TVG + + + 3 + + + + Elvis + From his rise to fame to his unprecedented superstardom, rock 'n' roll icon Elvis Presley maintains a complicated relationship with his enigmatic manager, Colonel Tom Parker, over the course of 20 years. + + Austin Butler + Tom Hanks + Olivia DeJonge + + 2022 + Movies + Drama + + + TVG + + + 3 + + + + Dawn of the Planet of the Apes + Human survivors of a plague threaten Caesar's growing nation of genetically evolved apes. Though they reach a fragile peace, soon both sides are brought to the brink of a war that will determine which will become Earth's dominant species. + + Andy Serkis + Jason Clarke + Gary Oldman + + 2014 + Movies + Sci-Fi + + + TVG + + + 3 + + + + X-Men: Days of Future Past + The X-Men (Hugh Jackman, Ian McKellen, Patrick Stewart) join forces with their younger selves in order to change the past and save mankind's future as well as their own. + + Hugh Jackman + James McAvoy + Michael Fassbender + + 2014 + Movies + Action + + + TVG + + + 3 + + + + Bride Wars + After a clerical error schedules their weddings on the same day, two longtime best friends (Kate Hudson, Anne Hathaway) declare all-out war on each other. + + Kate Hudson + Anne Hathaway + Kristen Johnston + + 2009 + Movies + Comedy + + + TVG + + + 1 + + + + Kindergarten + Doin' the Right Thing + The class learns about being polite to others. + Children + Documentary + + + TVY + + + + Happily Ever After: Fairy Tales for Every Child + The Shoemaker and the Elves + Kindly elves help a poor Aztec shoemaker. Featuring the voices of Jesse Borrego, Liz Torres and Lou Diamond Phillips. + + Jesse Borrego + Wanda De Jesus + Liz Torres + + Animated + Children + + + TVY + + + + A Little Curious + High Low Stretch + Segments include High Jump (Version 1), How Low Can You Go?, Rubberband Stretch, High Flyer, Seventh Inning Stretch, High Chair, Low Chair, High Note, Low Note, Stretch Your Imagination and more. + Animated + Children + + + TVY + + + + Crashbox + Segments include Revolting Slob, Distraction News, Psycho Math, Ten Seconds, Sketch Pad, Poop or Scoop, Haunted House Party and Riddle Snake. + + Maggie Baird + Veena Bidasha + Peter Lurie + + Game Shows + Children + + + TVY7 + + + + Mannequin Two: On the Move + The statue of a hexed Bavarian maiden (Kristy Swanson) comes to life for its keeper (William Ragsdale) in a Philadelphia department store. + + Kristy Swanson + William Ragsdale + Meshach Taylor + + 1991 + Movies + Fantasy + + + TVG + + + 1 + + + + Meet Dave + Tiny aliens explore the wilderness of New York City in a human-sized spaceship modeled after their captain (Eddie Murphy). + + Eddie Murphy + Elizabeth Banks + Gabrielle Union + + 2008 + Movies + Children + + + TVG + + + 2 + + + + DC League of Super-Pets + Krypto the Super-Dog must convince a ragtag group of animals to master their own newfound powers to help him save Superman and the rest of the Justice League. + + Dwayne Johnson + Kevin Hart + Kate McKinnon + + 2022 + Movies + Animated + + + TVG + + + 2 + + + + Aliens in the Attic + Vacationing youths battle an invading force of tiny aliens bent on conquering Earth, while the kids' parents remain unaware of what is happening. + + Carter Jenkins + Austin Butler + Ashley Tisdale + + 2009 + Movies + Children + + + TVG + + + 2 + + + + Are We Done Yet? + Newlyweds Nick and Suzanne decide to move to the suburbs to provide a better life for their two kids. However, their idea of a dream home is disturbed by a contractor who has a bizarre approach to business. + + Ice Cube + Nia Long + John C. McGinley + + 2007 + Movies + Children + + + TVG + + + 1 + + + + Coraline + A girl (Dakota Fanning) finds a secret door in her new home and walks into an alternate reality that closely mirrors her own but, in many ways, is better. + + Dakota Fanning + Teri Hatcher + Jennifer Saunders + + 2009 + Movies + Animated + + + TVG + + + 3 + + + + Legally Blonde 2: Red, White & Blonde + La abogada de Boston, Elle Woods, pierde su empleo y va a Washington, D.C. para abogar por los derechos de los animales. + + Reese Witherspoon + Sally Field + Regina King + + 2003 + Movies + Comedy + + + TVG + + + 2 + + + + The Gilded Age + El domingo de Pascua, Agnes informa a Ada, Marian y Oscar de la inminente llegada de su sobrino, Dashiell Montgomery, a Nueva York. Bertha rehúye a la señora Astor para apoyar al Metropolitan Opera House. Oscar comienza a cortejar de nuevo a Gladys. + + Christine Baranski + Cynthia Nixon + Carrie Coon + + History + + + TVMA + + + + Definitely, Maybe + A petición de su joven hija, un hombre a punto de divorciarse recuerda sus romances del pasado y le cuenta acerca de la mujer que se convirtió en su madre. + + Ryan Reynolds + Isla Fisher + Abigail Breslin + + 2008 + Movies + Drama + + + TVG + + + 3 + + + + Election + En una organizada sociedad criminal está a punto de realizarse una elección democrática. + + Simon Yam + Tony Leung Ka Fai + Louis Koo + + 2005 + Movies + Thriller + + + TV14 + + + 3 + + + + Election + En una organizada sociedad criminal está a punto de realizarse una elección democrática. + + Simon Yam + Tony Leung Ka Fai + Louis Koo + + 2005 + Movies + Thriller + + + TV14 + + + 3 + + + + 1000% Me: Growing Up Mixed + Menores de diversas razas y sus familias comparten las alegrías y las luchas de crecer en la diversidad de Bay Area. + 2023 + Movies + Documentary + + + + Fever Pitch + Una exitosa mujer piensa que por fin ha encontrado al chico ideal. Todo resulta perfecto hasta que empieza la temporada de béisbol y debe competir con los Boston Red Sox, la verdadera gran pasión del muchacho. + + Drew Barrymore + Jimmy Fallon + James B. Sikking + + 2005 + Movies + Drama + + + TVG + + + 2 + + + + Draft Day + En el día del Draft de la NFL, el gerente general de los Cleveland Browns debe decidir qué es lo que está dispuesto a sacrificar mientras busca al seleccionado número uno. + + Kevin Costner + Jennifer Garner + Denis Leary + + 2014 + Movies + Drama + + + TVG + + + 2 + + + + Barbershop + El dueño de una popular barbería considera vender el lugar a un usurero que desea convertirlo en un club nocturno. + + Ice Cube + Anthony Anderson + Cedric the Entertainer + + 2002 + Movies + Comedy + + + TVG + + + 2 + + + + Un gallo con muchos huevos + Un ranchero embustero engaña a los dueños de la granja donde vive Toto, un joven gallo, que deberá entrenar para vencer al despiadado gallo Bankivoide para defender el destino de la granja y sus habitantes. + + Bruno Bichir + Carlos Espejel + Angelica Vale + + 2015 + Movies + Animated + + + 3 + + + + Shazam! Fury of the Gods + Billy Batson y sus hermanos adoptivos Freddy, Mary, Pedro, Eugene y Darla, también dotados de superpoderes, tienen que enfrentarse a las tres hijas de Atlas: Hespera, Calipso y Anthea. + + Zachary Levi + Asher Angel + Jack Dylan Grazer + + 2023 + Movies + Action + + + TVG + + + 2 + + + + Exodus: Gods and Kings + Criado como un príncipe egipcio y el favorito del faraón Seti, Moisés descubre su verdadera herencia hebrea y promete liberar a su pueblo de la esclavitud, incluso si eso significara destruir su hermandad con el hijo de Seti, Ramsés. + + Christian Bale + Joel Edgerton + John Turturro + + 2014 + Movies + Action + + + TVG + + + 2 + + + + Entre Nos: Spot On + Los comediantes Crystian Ramirez, Vanessa Gonzalez, Rojo Perez y Erik Rivera se turnan al micrófono para compartir sus graciosas anécdotas sobre la vida, el amor y lo que significa ser latinos. + + Crystian Ramirez + Vanessa Gonzalez + Rojo Perez + + Specials + Comedy + + + TV14 + + + + Shakespeare in Love + El joven William Shakespeare se enamora de Viola, lo que despierta su creatividad, pero ella es la prometida de Wessex. + + Joseph Fiennes + Gwyneth Paltrow + Geoffrey Rush + + 1998 + Movies + Romance + + + TVG + + + 3 + + + + Get Smart + Maxwell Smart es promovido a agente secreto. Smart mezcla inexperiencia, entusiasmo e ineptitud mientras él y su compañera, la Agente 99, luchan contra la maléfica organización KAOS. + + Steve Carell + Anne Hathaway + Dwayne Johnson + + 2008 + Movies + Comedy + + + TVG + + + 2 + + + + Legally Blonde + La reina del colegio afirma que triunfará aun sin su ex novio al obtener admisión en la escuela de leyes de Harvard. + + Reese Witherspoon + Luke Wilson + Selma Blair + + 2001 + Movies + Comedy + + + TVG + + + 2 + + + + The Gilded Age + Tras dar a Oscar su veredicto final, George envía a Clay a reunirse con el Sr. Henderson, el líder sindical de su acería en Pittsburgh. Mientras tanto, Agnes regaña a Ada por ser demasiado habladora. + + Christine Baranski + Cynthia Nixon + Carrie Coon + + History + + + TVMA + + + + The Gilded Age + Tras dar a Oscar su veredicto final, George envía a Clay a reunirse con el Sr. Henderson, el líder sindical de su acería en Pittsburgh. Mientras tanto, Agnes regaña a Ada por ser demasiado habladora. + + Christine Baranski + Cynthia Nixon + Carrie Coon + + History + + + TVMA + + + + Princess Cut + Dos mujeres muy distintas forman una amistad, hasta que una de ellas dice una mentira. + + Lauren LaVera + Sydney Amanuel + Amadeo Fusca + + 2020 + Movies + + + + The Gilded Age + Tras dar a Oscar su veredicto final, George envía a Clay a reunirse con el Sr. Henderson, el líder sindical de su acería en Pittsburgh. Mientras tanto, Agnes regaña a Ada por ser demasiado habladora. + + Christine Baranski + Cynthia Nixon + Carrie Coon + + History + + + TVMA + + + + Pearl Harbor + Rafe y Danny, dos pilotos que sobrevivieron al bombardeo de Pearl Harbor, amigos desde la infancia y luego rivales por el amor de una mujer, deben superar sus diferencias y unirse cuando el gobierno los envía a una misión secreta. + + Ben Affleck + Josh Hartnett + Kate Beckinsale + + 2001 + Movies + War + + + TVG + + + 2 + + + + Pearl Harbor + Rafe y Danny, dos pilotos que sobrevivieron al bombardeo de Pearl Harbor, amigos desde la infancia y luego rivales por el amor de una mujer, deben superar sus diferencias y unirse cuando el gobierno los envía a una misión secreta. + + Ben Affleck + Josh Hartnett + Kate Beckinsale + + 2001 + Movies + War + + + TVG + + + 2 + + + + Cinéma + Rendez-vous + En Ciudad de México, la primera cita de una mujer con un hombre al que conoció en línea da un giro inesperado y aterrador. + + Antonio Alcantara + Helena Puig + Markin López + + 2019 + Movies + Thriller + + + + Avatar + En un planeta extraterrestre, un exinfante de marina se enamora de una guerrera de piel azul y se une a su gente en contra de la invasión humana a su mundo. + + Sam Worthington + Zoe Saldana + Sigourney Weaver + + 2009 + Movies + Sci-Fi + + + 3 + + + + XXX + Un estrella del deporte extremo es elegido para infiltrarse en el santuario de un anarquista que pretende desatar un caos. + + Vin Diesel + Asia Argento + Marton Csokas + + 2002 + Movies + Action + + + TVPG + + + 2 + + + + XXX: State of the Union + En Washington D.C., el nuevo agente XXX debe hacer frente a un grupo que planea acabar con la vida del presidente. La amenaza resulta especialmente peligrosa porque proviene del propio gobierno estadounidense. + + Ice Cube + Willem Dafoe + Scott Speedman + + 2005 + Movies + Action + + + TVPG + + + 2 + + + + Camilo: El primer tour de mi vida + El músico colombiano Camilo, cinco veces ganador del Latin Grammy, brinda su primer concierto especial. + Specials + Music + + + TVPG + + + + Transhood + Cuatro chicos y sus familias desenmascaran las realidades íntimas de cómo la fluidez de género transformó a la familia. + 2020 + Movies + Documentary + + + TV14 + + + + Black Adam + Unos arqueólogos liberan de su tumba a Black Adam, quien llevaba 5000 años preso tras haber recibido los poderes de los dioses. De nuevo entre los humanos, Black Adam se dispone a imponer su justicia, muy diferente a la del mundo en el que despertó. + + Dwayne Johnson + Aldis Hodge + Pierce Brosnan + + 2022 + Movies + Action + + + TVG + + + 2 + + + + Reality + Un ex especialista de inteligencia estadounidense recibe una enorme condena por la divulgación no autorizada de información confidencial gubernamental a los medios de comunicación sobre la intervención rusa en las elecciones estadounidenses de 2016. + + Sydney Sweeney + Josh Hamilton + Marchánt Davis + + 2023 + Movies + Drama + + + TVPG + + + + Farruko: En letra de otro + El reguetonero Farruko comparte su intimidad y lo más destacado de su faceta musical. + + Farruko + + Specials + Documentary + + + TV14 + + + + The Gilded Age + Tras dar a Oscar su veredicto final, George envía a Clay a reunirse con el Sr. Henderson, el líder sindical de su acería en Pittsburgh. Mientras tanto, Agnes regaña a Ada por ser demasiado habladora. + + Christine Baranski + Cynthia Nixon + Carrie Coon + + History + + + TVMA + + + + Meg 2: The Trench + Jonas Taylor lidera un equipo de investigación en las profundidades del océano. Acorralados por colosales tiburones prehistóricos y despiadados bandidos, los científicos intentan sobrevivir a toda costa. + + Jason Statham + Wu Jing + Sophia Cai + + 2023 + Movies + Sci-Fi + + + TVG + + + 2 + + + + 30 Coins + Hellish Creatures + El padre Vergara, exorcista, boxeador y exconvicto que fue exiliado a un remoto pueblo de España, solicita la ayuda del alcalde y de un veterinario cuando comienzan a producirse una serie de fenómenos paranormales. + + Eduard Fernández + Miguel Ángel Silvestre + Megan Montaner + + Drama + + + TVMA + + + + 30 Coins + Hellish Creatures + El padre Vergara, exorcista, boxeador y exconvicto que fue exiliado a un remoto pueblo de España, solicita la ayuda del alcalde y de un veterinario cuando comienzan a producirse una serie de fenómenos paranormales. + + Eduard Fernández + Miguel Ángel Silvestre + Megan Montaner + + Drama + + + TVMA + + + + The Manchurian Candidate + Un veterano de la primera Guerra del Golfo, Bennett Marco, tiene recurrentes pesadillas sobre lo que en realidad sucedió durante una emboscada que sufrió su pelotón en el desierto kuwaití y que le valió a su amigo Raymond Shaw la Medalla de Honor. + + Denzel Washington + Meryl Streep + Liev Schreiber + + 2004 + Movies + Thriller + + + TVPG + + + 3 + + + + The Manchurian Candidate + Un veterano de la primera Guerra del Golfo, Bennett Marco, tiene recurrentes pesadillas sobre lo que en realidad sucedió durante una emboscada que sufrió su pelotón en el desierto kuwaití y que le valió a su amigo Raymond Shaw la Medalla de Honor. + + Denzel Washington + Meryl Streep + Liev Schreiber + + 2004 + Movies + Thriller + + + TVPG + + + 3 + + + + REAL Sports With Bryant Gumbel + Survivors + El programa deportivo más galardonado que ofrece las mejores notas de investigación e informes sobre el mundo de los deportes. + Sports + Talk Show + + + TVPG + + + + Amaraica + Un inmigrante indocumentado, Roberto, busca una manera de volverse legal, pero todos los esfuerzos se paralizan cuando se convierte en padre. + + Gerardo Davila + Richard Haylor + Nikki Dixon + + 2020 + Movies + Drama + + + TVY7 + + + + The Ghost and the Darkness + Dos leones devoradores de hombres paralizan la construcción de la vía ferroviaria en África. El ingeniero a cargo, John Patterson, solicita la ayuda de un cazador legendario. Sin embargo, los leones asesinos demuestran ser depredadores excepcionales. + + Michael Douglas + Val Kilmer + Tom Wilkinson + + 1996 + Movies + History + + + TVPG + + + 3 + + + + Double Cultura + Al ser la única angloparlante de la casa, Marisol, de 12 años, asume la abrumadora responsabilidad de ser la traductora de su madre inmigrante para su cita con el médico. + 2021 + Movies + Drama + + + + Romeo Santos: The King Stays King - Sold Out at Madison Square Garden + El primer álbum en vivo del cantautor Romeo Santos., que fue grabado el 24 de febrero de 2012 en el Madison Square Garden de la ciudad de Nueva York. + Specials + Music + + + + Lucky You + Un jugador (Eric Bana) de póquer intenta balancear un romance con el reto que representa lograr un sitio en el campeonato mundial de Las Vegas. + + Eric Bana + Drew Barrymore + Robert Duvall + + 2007 + Movies + Drama + + + TVG + + + 2 + + + + Gran Torino + Walt Kowalski es un veterano de guerra duro e inflexible apasionado por su auto, un Gran Torino del 72. La llegada de unos inmigrantes asiáticos al barrio ablanda su carácter, pero unos pandilleros generan problemas y Walt se ve envuelto en ellos. + + Clint Eastwood + Christopher Carley + Bee Vang + + 2008 + Movies + Drama + + + TVPG + + + 3 + + + + Welcome Back + Tras ser deportadas de Venezuela, Rosa y su hija deben ingeniárselas para escapar a Colombia. + + Joselyn Gallardo + Diana Aboujian + Alejandra Corman + + 2020 + Movies + Drama + + + + Rocky Balboa + El plan del retirado Rocky de regresar a los cuadriláteros para algunos combates de poca importancia termina en una pelea contra el campeón mundial de los pesos pesados. + + Sylvester Stallone + Burt Young + Antonio Tarver + + 2006 + Movies + Drama + + + TVG + + + 3 + + + + Habla y Vota + Las celebridades latinas animan a la comunidad hispana en Estados Unidos para salir a votar en noviembre 2016. + Specials + Local + + + TV14 + + + + Havana Street Party Presents Orishas + El grupo pionero en hip-hop, Orishas, tres veces nominado al Grammy, se presenta en Cuba en un recital especial. + Specials + Music + + + TV14 + + + + Good Will Hunting + Un joven, tras descubrir su talento con las matemáticas, deberá decidir si seguir con su vida de siempre o aprovechar sus grandes cualidades intelectuales en alguna universidad. + + Matt Damon + Robin Williams + Ben Affleck + + 1997 + Movies + Drama + + + TVG + + + 3 + + + + Pitch Perfect 2 + Varios años después de haber sido el primer grupo femenino en ganar el campeonato nacional, las Bellas se presentan a una competición internacional de canto a capella que ningún grupo estadounidense ha ganado hasta el momento. + + Anna Kendrick + Rebel Wilson + Hailee Steinfeld + + 2015 + Movies + Musical + + + TVG + + + 2 + + + + Stand Up & Shout: Songs From a Philly High School + Los estudiantes de Hill-Freedman World Academy de Filadelfia trabajan con músicos locales para crear un álbum de canciones enérgicas y originales que capturen tanto los tiempos difíciles que viven como la alegría que brinda la música. + 2023 + Movies + Documentary + + + + Uptown Girls + Forzada por las circunstancias, una despreocupada mujer se vuelve la niñera de la hija de un ejecutivo neoyorquino. + + Brittany Murphy + Dakota Fanning + Marley Shelton + + 2003 + Movies + Comedy + + + TVG + + + 2 + + + + The Gilded Age + Tras dar a Oscar su veredicto final, George envía a Clay a reunirse con el Sr. Henderson, el líder sindical de su acería en Pittsburgh. Mientras tanto, Agnes regaña a Ada por ser demasiado habladora. + + Christine Baranski + Cynthia Nixon + Carrie Coon + + History + + + TVMA + + + + Parasite + Cuando el hijo mayor de Gi Taek empieza a dar clases particulares en la casa de los adinerados Park, las dos familias, que tienen mucho en común pese a pertenecer a dos mundos totalmente distintos, comienzan una relación de resultados imprevisibles. + + Song Kang-ho + Lee Sun-gyun + Jo Yeo-jeong + + 2019 + Movies + Comedy + + + TVPG + + + 3 + + + + Parasite + Cuando el hijo mayor de Gi Taek empieza a dar clases particulares en la casa de los adinerados Park, las dos familias, que tienen mucho en común pese a pertenecer a dos mundos totalmente distintos, comienzan una relación de resultados imprevisibles. + + Song Kang-ho + Lee Sun-gyun + Jo Yeo-jeong + + 2019 + Movies + Comedy + + + TVPG + + + 3 + + + + Tears of the Sun + Un comando americano y sus hombres tratan de llevar a una doctora y a refugiados africanos a un lugar seguro. + + Bruce Willis + Monica Bellucci + Cole Hauser + + 2003 + Movies + Action + + + TVPG + + + 2 + + + + Reik en vivo desde el Auditorio Nacional + La banda de pop latino Reik, ganadora del premio Grammy, actúa en vivo desde el Auditorio Nacional de la Ciudad de México. A su vez, se ofrece un documental con entrevistas a los tres componentes de este exitoso grupo originario de Mexicali. + Specials + Music + + + TVPG + + + + 38 at the Garden + Jeremy Lin, un graduado de Harvard, sorprende a los fanáticos, asombra a sus compañeros de equipo y atrae a los asiáticos de todo el mundo durante su histórica temporada 2011-12 con los New York Knicks. + 2022 + Movies + Documentary + + + + Crazy Heart + Tras diversos fracasos matrimoniales, y sumido en una carrera en pleno declive, el músico de country Bad Blake se refugia en el alcohol. Cuando parece que ya no hay salvación para él, Jean irrumpe en su vida y, con ella, una esperanza. + + Jeff Bridges + Maggie Gyllenhaal + Robert Duvall + + 2009 + Movies + Drama + + + TVG + + + 3 + + + + Legally Blonde + La reina del colegio afirma que triunfará aun sin su ex novio al obtener admisión en la escuela de leyes de Harvard. + + Reese Witherspoon + Luke Wilson + Selma Blair + + 2001 + Movies + Comedy + + + TVG + + + 2 + + + + Caro Comes Out + Caro Hernández, una escritora cubanoamericana, quiere anunciarle a su familia, cuyos miembros residen en Miami, que es lesbiana. + 2020 + Movies + Documentary + + + + Serendipity + Luego de haber tentado al destino, dos amantes predestinados a estar juntos regresan a Nueva York para reencontrarse una vez más. + + John Cusack + Kate Beckinsale + Molly Shannon + + 2001 + Movies + Romance + + + TVG + + + 2 + + + + Stand Up & Shout: Songs From a Philly High School + Los estudiantes de Hill-Freedman World Academy de Filadelfia trabajan con músicos locales para crear un álbum de canciones enérgicas y originales que capturen tanto los tiempos difíciles que viven como la alegría que brinda la música. + 2023 + Movies + Documentary + + + + Definitely, Maybe + A petición de su joven hija, un hombre a punto de divorciarse recuerda sus romances del pasado y le cuenta acerca de la mujer que se convirtió en su madre. + + Ryan Reynolds + Isla Fisher + Abigail Breslin + + 2008 + Movies + Drama + + + TVG + + + 3 + + + + The Gilded Age + Tras dar a Oscar su veredicto final, George envía a Clay a reunirse con el Sr. Henderson, el líder sindical de su acería en Pittsburgh. Mientras tanto, Agnes regaña a Ada por ser demasiado habladora. + + Christine Baranski + Cynthia Nixon + Carrie Coon + + History + + + TVMA + + + + Transformers: Revenge of the Fallen + Han pasado dos años desde que los Transformers irrumpieran en la vida de Sam Witwicky. Ahora, el objetivo de Sam es ingresar en la universidad y llevar una vida tranquila, pero se ve otra vez involucrado en la guerra entre Autobots y Decepticons. + + Shia LaBeouf + Megan Fox + Josh Duhamel + + 2009 + Movies + Action + + + TVG + + + 2 + + + + Shazam! Fury of the Gods + Billy Batson y sus hermanos adoptivos Freddy, Mary, Pedro, Eugene y Darla, también dotados de superpoderes, tienen que enfrentarse a las tres hijas de Atlas: Hespera, Calipso y Anthea. + + Zachary Levi + Asher Angel + Jack Dylan Grazer + + 2023 + Movies + Action + + + TVG + + + 2 + + + + 30 Coins + While an empowered Merche revels in her newfound abilities, Paco fights to save Elena from a horrifying ritual. + + Eduard Fernández + Miguel Ángel Silvestre + Megan Montaner + + Drama + + + TVMA + + + + Immortals + A Greek stonemason named Theseus (Henry Cavill) revolts against a bloodthirsty king who wants to throw the gods out of Olympus and become master of the world. + + Henry Cavill + Stephen Dorff + Isabel Lucas + + 2011 + Movies + Adventure + + + TVPG + + + 2 + + + + Anna + Beneath a woman's striking beauty lies a secret that will unleash her indelible strength and skill to become one of the most feared assassins on the planet. + + Sasha Luss + Luke Evans + Cillian Murphy + + 2019 + Movies + Action + + + TVPG + + + 2 + + + + The Conjuring + Paranormal investigators Lorraine (Vera Farmiga) and Ed (Patrick Wilson) Warren confront a powerful demonic entity when they try to help parents and children being terrorized in their secluded farmhouse. + + Vera Farmiga + Patrick Wilson + Lili Taylor + + 2013 + Movies + Horror + + + TVPG + + + 3 + + + + The Conjuring + Paranormal investigators Lorraine (Vera Farmiga) and Ed (Patrick Wilson) Warren confront a powerful demonic entity when they try to help parents and children being terrorized in their secluded farmhouse. + + Vera Farmiga + Patrick Wilson + Lili Taylor + + 2013 + Movies + Horror + + + TVPG + + + 3 + + + + Culpa + A print shop worker who is stuck in a routine realizes that guilt can kill a person. + + Daniel Hernández + Daniela Tablante + Miguel Angel Ferrer + + 2020 + Movies + Horror + + + TVMA + + + + Greenland + A family embarks on a perilous journey as a planet-killing comet hurtles toward Earth. As the countdown to the global apocalypse approaches zero, their incredible trek culminates in a desperate and last-minute flight to a possible safe haven. + + Gerard Butler + Morena Baccarin + Roger Dale Floyd + + 2020 + Movies + Action + + + TVPG + + + 2 + + + + Welcome to Marwen + After surviving a violent assault, Mark Hogancamp creates a miniature World War II town that comes to life with astonishingly realistic dolls. Through this fantasy world, Mark finds the strength to triumph in the real world and face his attackers. + + Steve Carell + Leslie Mann + Diane Kruger + + 2018 + Movies + Fantasy + + + TVG + + + 2 + + + + Ballet 422 + Filmmaker Jody Lee Lipes follows emerging choreographer Justin Peck as he undertakes the difficult tasks of creating and dancing in the New York City Ballet's 422nd original piece. + + Tiler Peck + David Prottas + Amar Ramasar + + 2014 + Movies + Documentary + + + 3 + + + + Soapdish + The star (Sally Field) of a soap opera is rattled by her ex-lover's (Kevin Kline) return to the daytime drama. + + Sally Field + Kevin Kline + Robert Downey Jr. + + 1991 + Movies + Comedy + + + TVG + + + 2 + + + + Pitch Perfect 2 + When a scandal threatens to derail the Barden Bellas (Anna Kendrick, Rebel Wilson), the women must get their act together and redeem themselves at the world championships in Copenhagen, Denmark. + + Anna Kendrick + Rebel Wilson + Hailee Steinfeld + + 2015 + Movies + Musical + + + TVG + + + 2 + + + + Georgia Rule + Exasperated with her rebellious daughter (Lindsay Lohan), a woman (Felicity Huffman) sends the teen to Idaho to live with her own stern mother (Jane Fonda). + + Jane Fonda + Lindsay Lohan + Felicity Huffman + + 2007 + Movies + Drama + + + TVG + + + 1 + + + + Sleepy Hollow + A Colonial-era constable (Johnny Depp) probes a series of grisly decapitations in an upstate New York hamlet. + + Johnny Depp + Christina Ricci + Miranda Richardson + + 1999 + Movies + Horror + + + TVPG + + + 3 + + + + Spy + When her partner (Jude Law) falls off the grid and another top agent (Jason Statham) is compromised, a desk-bound CIA analyst (Melissa McCarthy) volunteers to go deep under cover as the world's newest and unlikeliest secret weapon. + + Melissa McCarthy + Jason Statham + Rose Byrne + + 2015 + Movies + Comedy + + + TVPG + + + 3 + + + + Mistress America + A college freshman (Lola Kirke) cures her disappointment and loneliness by allowing herself to be pulled into the wacky schemes of her future stepsister (Greta Gerwig). + + Greta Gerwig + Lola Kirke + Matthew Shear + + 2015 + Movies + Comedy + + + TVG + + + 3 + + + + Last Week Tonight With John Oliver + Chocolate + John Oliver discusses chocolate, cocoa farming and some facts that make Halloween a little weird. + Talk Shows + Comedy + + + TVMA + + + + Good Will Hunting + A therapist (Robin Williams), a mathematician and working-class roughs vie for the soul of a janitor (Matt Damon) with a genius IQ. + + Matt Damon + Robin Williams + Ben Affleck + + 1997 + Movies + Drama + + + TVG + + + 3 + + + + The Lovely Bones + A 14-year-old murder victim watches from heaven, as her family tries to heal and her killer continues on his own dark path. + + Mark Wahlberg + Rachel Weisz + Susan Sarandon + + 2009 + Movies + Drama + + + TVG + + + 2 + + + + Gran Torino + An unlikely friendship forms between a bigoted war veteran (Clint Eastwood) and an Asian boy (Bee Vang) who tried to steal the man's treasured automobile. + + Clint Eastwood + Christopher Carley + Bee Vang + + 2008 + Movies + Drama + + + TVPG + + + 3 + + + + Gran Torino + An unlikely friendship forms between a bigoted war veteran (Clint Eastwood) and an Asian boy (Bee Vang) who tried to steal the man's treasured automobile. + + Clint Eastwood + Christopher Carley + Bee Vang + + 2008 + Movies + Drama + + + TVPG + + + 3 + + + + Unfinished Business + A business trip to Europe goes disastrously awry for a business owner (Vince Vaughn) and his associates (Tom Wilkinson, Dave Franco), who are hoping to close the most important deal of their lives. + + Vince Vaughn + Tom Wilkinson + Dave Franco + + 2015 + Movies + Comedy + + + TVPG + + + 1 + + + + The Devil Wears Prada + A recent college graduate (Anne Hathaway) lands a job working for a famous and diabolical editor (Meryl Streep) of a New York fashion magazine. + + Meryl Streep + Anne Hathaway + Adrian Grenier + + 2006 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Edward Scissorhands + A deceased inventor's unfinished creation (Johnny Depp) becomes an instant celebrity when a cheery suburbanite (Dianne Wiest) brings him home. + + Johnny Depp + Winona Ryder + Dianne Wiest + + 1990 + Movies + Christmas + Fantasy + + + TVG + + + 3 + + + + Sarah's Key + An account of research by a journalist (Kristin Scott Thomas) into a shameful incident in French history intertwines with a story of a 10-year-old Jewish girl (Mélusine Mayance) from that time period. + + Kristin Scott Thomas + Mélusine Mayance + Niels Arestrup + + 2010 + Movies + Drama + + + TVG + + + 2 + + + + Source Code + A helicopter pilot (Jake Gyllenhaal) takes part in a secret government program that enables him to assume someone's identity and experience the last few minutes of that person's life. + + Jake Gyllenhaal + Michelle Monaghan + Vera Farmiga + + 2011 + Movies + Thriller + + + TVG + + + 3 + + + + Pulp Fiction + Two hit men (John Travolta, Samuel L. Jackson), a boxer, a crime boss and others meet their fates over the course of two days. + + John Travolta + Samuel L. Jackson + Uma Thurman + + 1994 + Movies + Crime Story + + + TV14 + + + 4 + + + + Date Night + Mistaken identity creates an unforgettable adventure for two suburbanites (Steve Carell, Tina Fey) who were trying to invigorate their marriage with an evening at a bistro. + + Steve Carell + Tina Fey + Mark Wahlberg + + 2010 + Movies + Action + + + TVG + + + 2 + + + + Magic Mike's Last Dance + Hoping for one last hurrah, Mike Lane heads to London with a wealthy socialite who lures him with an offer he can't refuse. With everything on the line, he soon finds himself trying to whip a hot new roster of talented dancers into shape. + + Channing Tatum + Salma Hayek Pinault + Ayub Khan Din + + 2023 + Movies + Comedy + Drama + + + TVG + + + 2 + + + + Serendipity + A man (John Cusack) and a woman (Kate Beckinsale) try to find each other after spending one night together 10 years earlier. + + John Cusack + Kate Beckinsale + Molly Shannon + + 2001 + Movies + Romance + + + TVG + + + 2 + + + + Just Like Heaven + A San Francisco widower (Mark Ruffalo) falls in love with a ghostly doctor (Reese Witherspoon) while subletting her apartment. + + Reese Witherspoon + Mark Ruffalo + Donal Logue + + 2005 + Movies + Romance + + + TVG + + + 2 + + + + Welcome to Marwen + After surviving a violent assault, Mark Hogancamp creates a miniature World War II town that comes to life with astonishingly realistic dolls. Through this fantasy world, Mark finds the strength to triumph in the real world and face his attackers. + + Steve Carell + Leslie Mann + Diane Kruger + + 2018 + Movies + Fantasy + + + TVG + + + 2 + + + + Election + When a school's goody-two-shoes (Reese Witherspoon) runs for class president, a teacher/adviser (Matthew Broderick) schemes to keep her from winning. + + Matthew Broderick + Reese Witherspoon + Chris Klein + + 1999 + Movies + Comedy + + + TVPG + + + 3 + + + + Fever Pitch + A corporate executive (Drew Barrymore) falls for an affable schoolteacher (Jimmy Fallon) obsessed with the Boston Red Sox. + + Drew Barrymore + Jimmy Fallon + James Sikking + + 2005 + Movies + Drama + + + TVG + + + 2 + + + + Definitely, Maybe + At his young daughter's (Abigail Breslin) urging, a man (Ryan Reynolds) on the cusp of divorce reminisces about his past romances and has her guess which one became her mother. + + Ryan Reynolds + Isla Fisher + Abigail Breslin + + 2008 + Movies + Drama + + + TVG + + + 3 + + + + Definitely, Maybe + At his young daughter's (Abigail Breslin) urging, a man (Ryan Reynolds) on the cusp of divorce reminisces about his past romances and has her guess which one became her mother. + + Ryan Reynolds + Isla Fisher + Abigail Breslin + + 2008 + Movies + Drama + + + TVG + + + 3 + + + + Bullet to the Head + After his partner is killed, a veteran hit man (Sylvester Stallone) joins forces with a New Orleans detective (Sung Kang) against a ruthless real-estate developer (Adewale Akinnuoye-Agbaje). + + Sylvester Stallone + Sung Kang + Sarah Shahi + + 2012 + Movies + Action + + + TVPG + + + 2 + + + + Breathe + After contracting polio at the age of 28, Robin Cavendish is confined to a bed and given only months to live. With help from his family and inventor Teddy Hall, Cavendish devotes the rest of his life to helping fellow patients and the disabled. + + Andrew Garfield + Claire Foy + Tom Hollander + + 2017 + Movies + History + + + TVG + + + 2 + + + + Young Frankenstein + Respected medical lecturer Dr. Frederick Frankenstein (Gene Wilder) learns that he has inherited his infamous grandfather's estate in Transylvania. Arriving at the castle, Dr. Frankenstein soon begins to recreate his grandfather's experiments. + + Gene Wilder + Peter Boyle + Cloris Leachman + + 1974 + Movies + Comedy + + + TVG + + + 4 + + + + Draft Day + On the day of the NFL draft, the general manager of the Cleveland Browns must decide what he's willing to sacrifice as he angles for the number-one pick. + + Kevin Costner + Jennifer Garner + Denis Leary + + 2014 + Movies + Drama + + + TVG + + + 2 + + + + Traffik + A couple and their two friends embark on a weekend getaway to an isolated estate in the mountains. They soon find themselves in a fight for their lives when members of a violent biker gang show up to protect their secrets from the outside world. + + Paula Patton + Omar Epps + Laz Alonso + + 2018 + Movies + Thriller + + + TVPG + + + 1 + + + + American Sniper + Sniper and U.S. Navy SEAL Chris Kyle (Bradley Cooper) saves many lives on battlefields in Iraq while striving to be a good husband and father to his loved ones back in America. + + Bradley Cooper + Sienna Miller + Jake McDorman + + 2014 + Movies + War + + + TVPG + + + 3 + + + + Lakeview Terrace + A police officer (Samuel L. Jackson), the self-proclaimed watchdog of his neighborhood, becomes increasingly hostile toward the interracial couple next door. + + Samuel L. Jackson + Patrick Wilson + Kerry Washington + + 2008 + Movies + Thriller + + + TVPG + + + 2 + + + + Exodus: Gods and Kings + Raised as an Egyptian prince -- and the favorite of Pharaoh Seti -- Moses (Christian Bale) learns of his actual Hebrew heritage and vows to free his people from bondage, even if it destroys his brotherly bond with Seti's son, Ramses (Joel Edgerton). + + Christian Bale + Joel Edgerton + John Turturro + + 2014 + Movies + Action + + + TVG + + + 2 + + + + The Conjuring + Paranormal investigators Lorraine (Vera Farmiga) and Ed (Patrick Wilson) Warren confront a powerful demonic entity when they try to help parents and children being terrorized in their secluded farmhouse. + + Vera Farmiga + Patrick Wilson + Lili Taylor + + 2013 + Movies + Horror + + + TVPG + + + 3 + + + + The Gilded Age + Some Sort of Trick + George delivers a final decision to Oscar; Peggy is welcomed back into the Van Rhijn household by all but one; Marian meets a new match. + + Christine Baranski + Cynthia Nixon + Carrie Coon + + Drama + History + + + TVMA + + + + Black Adam + Bestowed with the almighty powers of the gods, Black Adam's unique form of justice, born out of rage, is challenged by modern-day heroes who form the Justice Society: Hawkman, Dr. Fate, Atom Smasher and Cyclone. + + Dwayne Johnson + Aldis Hodge + Pierce Brosnan + + 2022 + Movies + Action + + + TVG + + + 2 + + + + 30 Coins + Hellish Creatures + Elena and Paco adjust to their unexpected new circumstances, as Antonio's visions reveal Barbrows' sinister intentions. + + Eduard Fernández + Miguel Ángel Silvestre + Megan Montaner + + Drama + + + TVMA + + + + Anna + Beneath a woman's striking beauty lies a secret that will unleash her indelible strength and skill to become one of the most feared assassins on the planet. + + Sasha Luss + Luke Evans + Cillian Murphy + + 2019 + Movies + Action + + + TVPG + + + 2 + + + + Anna + Beneath a woman's striking beauty lies a secret that will unleash her indelible strength and skill to become one of the most feared assassins on the planet. + + Sasha Luss + Luke Evans + Cillian Murphy + + 2019 + Movies + Action + + + TVPG + + + 2 + + + + Road House + Hired to tame a rowdy Missouri bar, a Ph.D. bouncer (Patrick Swayze) romances a doctor (Kelly Lynch) and tames the whole town. + + Patrick Swayze + Kelly Lynch + Sam Elliott + + 1989 + Movies + Action + + + TVPG + + + 2 + + + + Sabrina + Sons (Harrison Ford, Greg Kinnear) of a Long Island tycoon become romantic rivals for the chauffeur's daughter (Julia Ormond). + + Harrison Ford + Julia Ormond + Greg Kinnear + + 1995 + Movies + Romance + + + TVG + + + 2 + + + + Pieces of April + Chaos reigns when a young woman (Katie Holmes) invites her estranged family to her apartment for the first Thanksgiving dinner she has ever cooked. + + Katie Holmes + Patricia Clarkson + Oliver Platt + + 2003 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Rocky IV + Champ Rocky Balboa (Sylvester Stallone) trains in Siberia for a bout against a lab-tested Soviet with a 2000-psi punch. + + Sylvester Stallone + Talia Shire + Burt Young + + 1985 + Movies + Drama + + + TVG + + + 2 + + + + Max + The family of a fallen Marine adopts his traumatized service dog, giving both the four-legged veteran and a troubled teen (Josh Wiggins) the chance to heal. + + Josh Wiggins + Lauren Graham + Thomas Haden Church + + 2015 + Movies + Drama + + + TVG + + + 2 + + + + Head of State + An alderman (Chris Rock) becomes a presidential candidate and chooses his unsophisticated brother (Bernie Mac) as a running mate. + + Chris Rock + Bernie Mac + Dylan Baker + + 2003 + Movies + Comedy + + + 2 + + + + Get Smart + A newly promoted field agent (Steve Carell), partnered with veteran Agent 99 (Anne Hathaway), blends inexperience, enthusiasm and ineptitude as he battles against KAOS. + + Steve Carell + Anne Hathaway + Dwayne Johnson + + 2008 + Movies + Comedy + + + TVG + + + 2 + + + + Be Kind Rewind + Rentals fly off the shelves after two friends (Jack Black, Mos Def) create homemade versions of popular movies to replace a video store's obliterated inventory. + + Jack Black + Mos Def + Danny Glover + + 2008 + Movies + Comedy + + + TVG + + + 2 + + + + Last Week Tonight With John Oliver + Comedian John Oliver hosts an in-depth, satirical look at developments from the past seven days in news, politics and current events. + Talk Shows + Comedy + + + TVMA + + + + Great Expectations + In a modern adaptation of Dickens' classic, an artist (Ethan Hawke) deals with rejection from his childhood sweetheart (Gwyneth Paltrow). + + Ethan Hawke + Gwyneth Paltrow + Hank Azaria + + 1998 + Movies + Drama + + + TV14 + + + 2 + + + + The Gilded Age + Some Sort of Trick + George delivers a final decision to Oscar; Peggy is welcomed back into the Van Rhijn household by all but one; Marian meets a new match. + + Christine Baranski + Cynthia Nixon + Carrie Coon + + Drama + History + + + TVMA + + + + Sky Captain and the World of Tomorrow + A daredevil aviator (Jude Law) and an ace reporter (Gwyneth Paltrow) fight an evil mastermind and his army of gigantic robots. + + Gwyneth Paltrow + Jude Law + Angelina Jolie + + 2004 + Movies + Adventure + + + TVG + + + 3 + + + + Night at the Museum: Secret of the Tomb + Upon learning that the museum's magic is disappearing, night watchman Larry Daley (Ben Stiller) sets out on an epic quest to the British Museum in London to save his friends one last time. + + Ben Stiller + Robin Williams + Owen Wilson + + 2014 + Movies + Children + + + TVG + + + 2 + + + + Pitch Perfect 2 + When a scandal threatens to derail the Barden Bellas (Anna Kendrick, Rebel Wilson), the women must get their act together and redeem themselves at the world championships in Copenhagen, Denmark. + + Anna Kendrick + Rebel Wilson + Hailee Steinfeld + + 2015 + Movies + Musical + + + TVG + + + 2 + + + + Beauty Shop + A determined hairstylist (Queen Latifah) competes with her former boss after opening her own business in Atlanta. + + Queen Latifah + Alicia Silverstone + Andie MacDowell + + 2005 + Movies + Comedy + + + TVG + + + 2 + + + + Beauty Shop + A determined hairstylist (Queen Latifah) competes with her former boss after opening her own business in Atlanta. + + Queen Latifah + Alicia Silverstone + Andie MacDowell + + 2005 + Movies + Comedy + + + TVG + + + 2 + + + + While We're Young + While grappling with the changes brought by middle-age, a filmmaker (Ben Stiller) and his wife (Naomi Watts) find their stagnant lives reinvigorated by their friendship with a couple of twentysomething hipsters. + + Ben Stiller + Naomi Watts + Adam Driver + + 2014 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Shakespeare in Love + Young William Shakespeare (Joseph Fiennes) falls for Viola (Gwyneth Paltrow), reawakening his creativity, but she is betrothed to Wessex. + + Joseph Fiennes + Gwyneth Paltrow + Geoffrey Rush + + 1998 + Movies + Romance + + + TVG + + + 3 + + + + Teen Witch + A girl (Robyn Lively) with a crush on the captain (Dan Gauthier) of the football team turns into a witch on her 16th birthday. + + Robyn Lively + Dan Gauthier + Joshua Miller + + 1989 + Movies + Fantasy + + + TVG + + + 2 + + + + Southside With You + Future U.S. President Barack Obama (Parker Sawyers) and lawyer Michelle Robinson (Tika Sumpter) go on a fateful first date in the summer of 1989. + + Tika Sumpter + Parker Sawyers + Vanessa Bell Calloway + + 2016 + Movies + Romance + + + 3 + + + + Pieces of April + Chaos reigns when a young woman (Katie Holmes) invites her estranged family to her apartment for the first Thanksgiving dinner she has ever cooked. + + Katie Holmes + Patricia Clarkson + Oliver Platt + + 2003 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Into the Forest + In the wilds of the Pacific Northwest, two sisters must fight for survival after an apocalyptic blackout leaves them without gas, water, electricity or cellphones. + + Ellen Page + Evan Rachel Wood + Max Minghella + + 2015 + Movies + Thriller + + + TVPG + + + 2 + + + + Shirley + A famous horror writer finds inspiration for her next book after she and her husband take in a young couple. + + Elisabeth Moss + Michael Stuhlbarg + Odessa Young + + 2020 + Movies + Drama + + + TV14 + + + + Beyond the Reach + In the Mojave Desert, a naked and unarmed hunting guide (Jeremy Irvine) runs from a wealthy hunter (Michael Douglas) who wants to ensure his silence in the death of an old man. + + Michael Douglas + Jeremy Irvine + Hanna Mangan Lawrence + + 2014 + Movies + Thriller + + + TVG + + + 1 + + + + The Monster + Left stranded after their car breaks down, a woman (Zoe Kazan) and her daughter (Ella Ballentine) must fight for survival when a terrifying monster attacks them on a deserted road near the woods. + + Zoe Kazan + Scott Speedman + Ella Ballentine + + 2016 + Movies + Horror + + + 3 + + + + The Silence of the Lambs + An FBI trainee (Jodie Foster) seeks advice from a brilliant, psychopathic prisoner (Anthony Hopkins) to catch a killer who skins his victims. + + Jodie Foster + Anthony Hopkins + Scott Glenn + + 1991 + Movies + Thriller + + + TV14 + + + 4 + + + + Chernobyl Diaries + Stranded in the ghost town of Pripyat, Ukraine, near the Chernobyl disaster site, tourists (Ingrid Bolsø Berdal, Jonathan Sadowski, Devin Kelley) find that they are not alone. + + Ingrid Bolsø Berdal + Jonathan Sadowski + Devin Kelley + + 2012 + Movies + Horror + + + TVPG + + + 1 + + + + Fast Color + Hunted by mysterious forces, a woman with supernatural abilities must go on the run. With nowhere else to go, she goes back to her estranged family and the farmhouse she abandoned long ago. + + Gugu Mbatha-Raw + Lorraine Toussaint + Saniyya Sidney + + 2018 + Movies + Sci-Fi + + + TVPG + + + + Fantastic Four + Four people (Ioan Gruffudd, Jessica Alba, Chris Evans) gain unusual powers after a space mission exposes them to cosmic radiation. + + Ioan Gruffudd + Jessica Alba + Chris Evans + + 2005 + Movies + Action + + + TVG + + + 2 + + + + Journey to the Center of the Earth + A science professor (Brendan Fraser) and his nephew (Josh Hutcherson) encounter strange creatures and stranger lands as they travel beneath the Earth's surface. + + Brendan Fraser + Josh Hutcherson + Anita Briem + + 2008 + Movies + Children + + + TVG + + + 2 + + + + Journey to the Center of the Earth + A science professor (Brendan Fraser) and his nephew (Josh Hutcherson) encounter strange creatures and stranger lands as they travel beneath the Earth's surface. + + Brendan Fraser + Josh Hutcherson + Anita Briem + + 2008 + Movies + Children + + + TVG + + + 2 + + + + Dune + Paul Atreides, a brilliant and gifted young man born into a great destiny beyond his understanding, must travel to the most dangerous planet in the universe to ensure the future of his family and his people. + + Timothée Chalamet + Rebecca Ferguson + Oscar Isaac + + 2021 + Movies + Sci-Fi + + + 3 + + + + Exodus: Gods and Kings + Raised as an Egyptian prince -- and the favorite of Pharaoh Seti -- Moses (Christian Bale) learns of his actual Hebrew heritage and vows to free his people from bondage, even if it destroys his brotherly bond with Seti's son, Ramses (Joel Edgerton). + + Christian Bale + Joel Edgerton + John Turturro + + 2014 + Movies + Action + + + TVG + + + 2 + + + + Pieces of April + Chaos reigns when a young woman (Katie Holmes) invites her estranged family to her apartment for the first Thanksgiving dinner she has ever cooked. + + Katie Holmes + Patricia Clarkson + Oliver Platt + + 2003 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + All About Steve + After a blind date leaves her breathless, a crossword-puzzle creator (Sandra Bullock) follows a news cameraman (Bradley Cooper) around the country in a bid for his undying love. + + Sandra Bullock + Thomas Haden Church + Bradley Cooper + + 2009 + Movies + Comedy + + + TVG + + + 1 + + + + While We're Young + While grappling with the changes brought by middle-age, a filmmaker (Ben Stiller) and his wife (Naomi Watts) find their stagnant lives reinvigorated by their friendship with a couple of twentysomething hipsters. + + Ben Stiller + Naomi Watts + Adam Driver + + 2014 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Transformers: Revenge of the Fallen + When an ancient Decepticon rises for revenge, Sam (Shia LaBeouf) and Mikaela (Megan Fox) must figure out the history of the Transformers' presence on Earth and find a way to save the planet. + + Shia LaBeouf + Megan Fox + Josh Duhamel + + 2009 + Movies + Action + + + TVG + + + 2 + + + + Barbarian + A young woman discovers the rental home she booked is already occupied by a stranger. Against her better judgment, she decides to spend the night but soon discovers there's a lot more to fear than just an unexpected house guest. + + Georgina Campbell + Bill Skarsgård + Justin Long + + 2022 + Movies + Horror + + + TVPG + + + 3 + + + + Head of State + An alderman (Chris Rock) becomes a presidential candidate and chooses his unsophisticated brother (Bernie Mac) as a running mate. + + Chris Rock + Bernie Mac + Dylan Baker + + 2003 + Movies + Comedy + + + 2 + + + + Kart Racer + A teenager (Will Rothhaar) and his estranged father (Randy Quaid) rekindle their relationship by trying to win a race. + + Randy Quaid + Will Rothhaar + Jennifer Wigmore + + 2003 + Movies + Drama + + + TVG + + + 2 + + + + House of Sand and Fog + Mistakenly evicted from her house, a woman (Jennifer Connelly) tries to reobtain it from the new owner (Ben Kingsley). + + Jennifer Connelly + Ben Kingsley + Ron Eldard + + 2003 + Movies + Drama + + + TVPG + + + 3 + + + + The Thomas Crown Affair + A billionaire (Pierce Brosnan) looking for new challenges attracts the attention of an investigator (Rene Russo) when a priceless Monet is stolen. + + Pierce Brosnan + Rene Russo + Denis Leary + + 1999 + Movies + Thriller + + + TVG + + + 3 + + + + Anthropoid + In December 1941, two Czech soldiers (Cillian Murphy, Jamie Dornan) parachute into their occupied homeland to assassinate Nazi officer Reinhard Heydrich (Detlef Bothe). + + Cillian Murphy + Jamie Dornan + Charlotte Le Bon + + 2016 + Movies + History + + + TVPG + + + 2 + + + + Whiteout + The only U.S. Marshal (Kate Beckinsale) assigned to Antarctica has just three days to solve the continent's first murder before six months of darkness strand her with the killer. + + Kate Beckinsale + Gabriel Macht + Tom Skerritt + + 2009 + Movies + Thriller + + + TVPG + + + 1 + + + + Whiteout + The only U.S. Marshal (Kate Beckinsale) assigned to Antarctica has just three days to solve the continent's first murder before six months of darkness strand her with the killer. + + Kate Beckinsale + Gabriel Macht + Tom Skerritt + + 2009 + Movies + Thriller + + + TVPG + + + 1 + + + + The Blackcoat's Daughter + During the dead of winter, a troubled young woman (Emma Roberts) embarks on a mysterious journey to an isolated prep school where two stranded students (Kiernan Shipka, Lucy Boynton) face a sinister threat from an unseen evil force. + + Emma Roberts + Kiernan Shipka + Lucy Boynton + + 2015 + Movies + Horror + + + + Stephen King's Graveyard Shift + The owner (Stephen Macht) of an ancient mill hires a drifter (David Andrews) to rid the basement of rats. + + David Andrews + Kelly Wolf + Stephen Macht + + 1990 + Movies + Horror + + + TVPG + + + 1 + + + + The Super Bob Einstein Movie + Actor, writer and producer Bob Einstein becomes famous for his iconic alter ego Super Dave Osborne, working with the Smothers Brothers, and playing Marty Funkhouser on the hit TV series. + 2021 + Movies + Documentary + + + + Culpa + A print shop worker who is stuck in a routine realizes that guilt can kill a person. + + Daniel Hernández + Daniela Tablante + Miguel Angel Ferrer + + 2020 + Movies + Horror + + + TVMA + + + + Friday the 13th + The reopening of Camp Crystal Lake spells murder and mayhem for a group of sexually promiscuous counselors. + + Betsy Palmer + Adrienne King + Harry Crosby + + 1980 + Movies + Horror + + + TVPG + + + 2 + + + + Friday the 13th, Part 2 + Mrs. Voorhees' son Jason is waiting when another load of teens (Amy Steel, John Furey, Adrienne King) tries to make a buck at Camp Crystal. + + Amy Steel + John Furey + Adrienne King + + 1981 + Movies + Horror + + + TVPG + + + 1 + + + + Friday the 13th - Part III + Killer Jason terrorizes teens (Dana Kimmell, Paul Kratka, Tracie Savage) and a biker gang. + + Dana Kimmell + Paul Kratka + Tracie Savage + + 1982 + Movies + Horror + + + TVPG + + + 1 + + + + Friday the 13th: The Final Chapter + Hockey-masked Jason goes after another batch of teens (Kimberly Beck, Peter Barton, Corey Feldman) at Crystal Lake. + + Kimberly Beck + Peter Barton + Corey Feldman + + 1984 + Movies + Horror + + + TVMA + + + 1 + + + + Friday the 13th -- A New Beginning + Teens (Melanie Kinnaman, Shavar Ross) flee and use a chain saw against someone wearing slasher Jason's hockey mask. + + John Shepherd + Melanie Kinnaman + Shavar Ross + + 1985 + Movies + Horror + + + TVPG + + + 1 + + + + Friday the 13th, Part VI: Jason Lives + Teenage Tommy (Thom Mathews) meets masked-killer Jason, brought back by a lightning bolt at the lake. + + Thom Mathews + Jennifer Cooke + Ron Palillo + + 1986 + Movies + Horror + + + TVPG + + + 2 + + + + Friday the 13th Part VII -- The New Blood + A psychic teen's (Lar Park Lincoln) psychiatrist (Terry Kiser) sends her and her mother (Susan Blu) to Crystal Lake, home of hockey-masked Jason. + + Lar Park Lincoln + Terry Kiser + Susan Blu + + 1988 + Movies + Horror + + + TVPG + + + 1 + + + + Friday the 13th Part VIII: Jason Takes Manhattan + Hockey-masked slasher Jason (Kane Hodder) follows a Crystal Lake teen (Jensen Daggett) and her friends on a cruise to New York. + + Jensen Daggett + Scott Reeves + Kane Hodder + + 1989 + Movies + Horror + + + TVPG + + + 1 + + + + The Monster + Left stranded after their car breaks down, a woman (Zoe Kazan) and her daughter (Ella Ballentine) must fight for survival when a terrifying monster attacks them on a deserted road near the woods. + + Zoe Kazan + Scott Speedman + Ella Ballentine + + 2016 + Movies + Horror + + + 3 + + + + The Silence of the Lambs + An FBI trainee (Jodie Foster) seeks advice from a brilliant, psychopathic prisoner (Anthony Hopkins) to catch a killer who skins his victims. + + Jodie Foster + Anthony Hopkins + Scott Glenn + + 1991 + Movies + Thriller + + + TV14 + + + 4 + + + + Hannibal + Seven years have passed since Dr. Hannibal Lecter (Anthony Hopkins) escaped from custody. The doctor is now at large in Europe. Mason Verger (Gary Oldman) remembers Lecter too, and is obsessed with revenge. + + Anthony Hopkins + Julianne Moore + Gary Oldman + + 2001 + Movies + Thriller + + + TV14 + + + 2 + + + + Under the Skin + Disguising herself as a human female, an extraterrestrial (Scarlett Johansson) drives around Scotland and tries to lure unsuspecting men into her van. + + Scarlett Johansson + Jeremy McWilliams + Lynsey Taylor Mackay + + 2013 + Movies + Sci-Fi + + + TV14 + + + 3 + + + + Under the Skin + Disguising herself as a human female, an extraterrestrial (Scarlett Johansson) drives around Scotland and tries to lure unsuspecting men into her van. + + Scarlett Johansson + Jeremy McWilliams + Lynsey Taylor Mackay + + 2013 + Movies + Sci-Fi + + + TV14 + + + 3 + + + + Monos + A terrorized American engineer is held captive by teenaged guerilla bandits in a South American jungle. + + Julianne Nicholson + Moises Arias + Sofia Buenaventura + + 2019 + Movies + Thriller + + + TVPG + + + + Cujo + Bitten by a rabid bat, a huge dog traps a Maine woman (Dee Wallace) and her young son (Danny Pintauro) in their Ford Pinto. + + Dee Wallace + Danny Pintauro + Daniel Hugh Kelly + + 1983 + Movies + Horror + + + TVPG + + + 3 + + + + Stephen King's Silver Bullet + A boy (Corey Haim) in a wheelchair stops a werewolf with his uncle (Gary Busey) and sister (Megan Follows). + + Gary Busey + Corey Haim + Megan Follows + + 1985 + Movies + Horror + + + TVPG + + + 2 + + + + Six Days, Seven Nights + An emergency landing strands a New York magazine editor (Anne Heche) and a South Pacific cargo pilot (Harrison Ford) on an unknown Tahitian island. + + Harrison Ford + Anne Heche + David Schwimmer + + 1998 + Movies + Romance + + + TVG + + + 2 + + + + A Life Less Ordinary + An enraged Scottish janitor (Ewan McGregor) shoots his wealthy employer in the leg and kidnaps his daughter (Cameron Diaz) at gunpoint. + + Ewan McGregor + Cameron Diaz + Holly Hunter + + 1997 + Movies + Romance + + + TVPG + + + 2 + + + + Ronin + An Irish ringleader (Natascha McElhone) organizes an international team of hired guns (Robert De Niro, Jean Reno) to retrieve a briefcase from criminals. + + Robert De Niro + Jean Reno + Natascha McElhone + + 1998 + Movies + Action + + + TVPG + + + 2 + + + + Tyrel + Tyler spirals out of control when he realizes he's the only black person attending a weekend birthday party in a secluded cabin. + + Jason Mitchell + Christopher Abbott + Michael Cera + + 2018 + Movies + Comedy + Drama + + + TV14 + + + 2 + + + + Barbershop 2: Back in Business + The owner (Ice Cube) of a barbershop faces pressure from a corporation that is opening establishments in his neighborhood. + + Ice Cube + Cedric the Entertainer + Sean Patrick Thomas + + 2004 + Movies + Comedy + + + TVG + + + 3 + + + + Fever Pitch + A corporate executive (Drew Barrymore) falls for an affable schoolteacher (Jimmy Fallon) obsessed with the Boston Red Sox. + + Drew Barrymore + Jimmy Fallon + James Sikking + + 2005 + Movies + Drama + + + TVG + + + 2 + + + + Date Night + Mistaken identity creates an unforgettable adventure for two suburbanites (Steve Carell, Tina Fey) who were trying to invigorate their marriage with an evening at a bistro. + + Steve Carell + Tina Fey + Mark Wahlberg + + 2010 + Movies + Action + + + TVG + + + 2 + + + + Entourage + When their $100 million movie goes over budget, actor/director Vince Chase (Adrian Grenier), studio boss Ari Gold and the rest of the boys (Kevin Connolly, Kevin Dillon) find themselves at the mercy of the cutthroat world of Hollywood. + + Kevin Connolly + Adrian Grenier + Kevin Dillon + + 2015 + Movies + Comedy + + + TVPG + + + 2 + + + + Machine Gun Preacher + Sam Childers (Gerard Butler), a former biker, travels to Africa to establish an orphanage for young victims of war. + + Gerard Butler + Michelle Monaghan + Michael Shannon + + 2011 + Movies + Drama + + + TVPG + + + 2 + + + + Running Scared + A low-level mobster (Paul Walker) runs into trouble when the gun he was supposed to discard winds up in the wrong hands after a drug deal and the deaths of some dirty cops. + + Paul Walker + Cameron Crigger + Vera Farmiga + + 2006 + Movies + Thriller + + + TV14 + + + 2 + + + + Machine Gun Preacher + Sam Childers (Gerard Butler), a former biker, travels to Africa to establish an orphanage for young victims of war. + + Gerard Butler + Michelle Monaghan + Michael Shannon + + 2011 + Movies + Drama + + + TVPG + + + 2 + + + + Machine Gun Preacher + Sam Childers (Gerard Butler), a former biker, travels to Africa to establish an orphanage for young victims of war. + + Gerard Butler + Michelle Monaghan + Michael Shannon + + 2011 + Movies + Drama + + + TVPG + + + 2 + + + + Running Scared + A low-level mobster (Paul Walker) runs into trouble when the gun he was supposed to discard winds up in the wrong hands after a drug deal and the deaths of some dirty cops. + + Paul Walker + Cameron Crigger + Vera Farmiga + + 2006 + Movies + Thriller + + + TV14 + + + 2 + + + + NEW Shark Vacuum! Your Pet Hair Solution! + Shark's most advanced, innovative upright vacuum. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. + Paid Program + + + + NEW Shark Deep Carpet Cleaner + 2-in-1 deep carpet cleaner and handheld spot & stain eliminator combines strong suction and high-pressure spray to deliver the best deep carpet cleaning and tough stain elimination in the market. + Paid Program + + + + The Mechanic + A master hit man (Charles Bronson) teaches the trade to an eager young man (Jan-Michael Vincent) who idolizes him. + + Charles Bronson + Jan-Michael Vincent + Keenan Wynn + + 1972 + Movies + Action + + + TVG + + + 2 + + + + The Longest Yard + A warden (Eddie Albert) forces an ex-football star (Burt Reynolds) to lead fellow inmates in a game against the guards. + + Burt Reynolds + Eddie Albert + Ed Lauter + + 1974 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + The Horse Soldiers + A pacifist doctor (William Holden) joins a Union colonel's (John Wayne) cavalry raid in Confederate territory. + + John Wayne + William Holden + Constance Towers + + 1959 + Movies + Action + + + TVG + + + 3 + + + + Robbers' Roost + Trouble brews on the horizon when a disabled rancher hires two rival outlaw gangs to stand guard over his cattle. + + George Montgomery + Richard Boone + Sylvia Findley + + 1955 + Movies + Western + + + 1 + + + + The Horse Soldiers + A pacifist doctor (William Holden) joins a Union colonel's (John Wayne) cavalry raid in Confederate territory. + + John Wayne + William Holden + Constance Towers + + 1959 + Movies + Action + + + TVG + + + 3 + + + + Robbers' Roost + Trouble brews on the horizon when a disabled rancher hires two rival outlaw gangs to stand guard over his cattle. + + George Montgomery + Richard Boone + Sylvia Findley + + 1955 + Movies + Western + + + 1 + + + + Chinatown + A 1930s gumshoe named Jake (Jack Nicholson) sticks his nose into a sordid mess over Los Angeles land and water. + + Jack Nicholson + Faye Dunaway + John Huston + + 1974 + Movies + Crime Story + + + TVPG + + + 4 + + + + Easy Rider + Two free spirits (Peter Fonda, Dennis Hopper) on chopped motorcycles clash with the Establishment and meet a boozy lawyer (Jack Nicholson) as they cross America. + + Peter Fonda + Dennis Hopper + Jack Nicholson + + 1969 + Movies + Drama + + + TVPG + + + 3 + + + + Chinatown + A 1930s gumshoe named Jake (Jack Nicholson) sticks his nose into a sordid mess over Los Angeles land and water. + + Jack Nicholson + Faye Dunaway + John Huston + + 1974 + Movies + Crime Story + + + TVPG + + + 4 + + + + Chinatown + A 1930s gumshoe named Jake (Jack Nicholson) sticks his nose into a sordid mess over Los Angeles land and water. + + Jack Nicholson + Faye Dunaway + John Huston + + 1974 + Movies + Crime Story + + + TVPG + + + 4 + + + + Ambush Bay + Marines (Hugh O'Brian, Mickey Rooney, James Mitchum) have 96 hours to search a Japanese-held island for someone with information Gen. MacArthur needs. + + Hugh O'Brian + Mickey Rooney + James Mitchum + + 1966 + Movies + War + + + TVPG + + + 2 + + + + Grill, Smoke AND Air-Fry + Our Cyclonic Grilling Technology gives you food that's tender and juicy on the inside and char-grilled on every side. + Paid Program + Food + + + + NEW Shark Deep Carpet Cleaner + 2-in-1 deep carpet cleaner and handheld spot & stain eliminator combines strong suction and high-pressure spray to deliver the best deep carpet cleaning and tough stain elimination in the market. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. + Paid Program + + + + The Horse Soldiers + A pacifist doctor (William Holden) joins a Union colonel's (John Wayne) cavalry raid in Confederate territory. + + John Wayne + William Holden + Constance Towers + + 1959 + Movies + Action + + + TVG + + + 3 + + + + Prairie Fever + While transporting three women across the plains, a man (Kevin Sorbo) encounters an outlaw (Jamie Anne Allman) on the run from her partner (Lance Henriksen). + + Kevin Sorbo + Jamie Brown + Lance Henriksen + + 2007 + Movies + Western + + + 1 + + + + Chinatown + A 1930s gumshoe named Jake (Jack Nicholson) sticks his nose into a sordid mess over Los Angeles land and water. + + Jack Nicholson + Faye Dunaway + John Huston + + 1974 + Movies + Crime Story + + + TVPG + + + 4 + + + + Casualties of War + An innocent private (Michael J. Fox) sees his half-mad sergeant (Sean Penn) lead the rape/murder of a Vietnamese girl. + + Michael J. Fox + Sean Penn + Don Harvey + + 1989 + Movies + War + + + TVPG + + + 3 + + + + Easy Rider + Two free spirits (Peter Fonda, Dennis Hopper) on chopped motorcycles clash with the Establishment and meet a boozy lawyer (Jack Nicholson) as they cross America. + + Peter Fonda + Dennis Hopper + Jack Nicholson + + 1969 + Movies + Drama + + + TVPG + + + 3 + + + + Mary Reilly + Gentle Dr. Jekyll (John Malkovich) confides in a young chambermaid (Julia Roberts) and transforms into evil Mr. Hyde in 19th-century London. + + Julia Roberts + John Malkovich + George Cole + + 1996 + Movies + Drama + + + TVPG + + + 2 + + + + Bernie + The residents of an upscale Texas town rally behind a beloved mortician (Jack Black) after he is arrested for the murder of a rich but mean-spirited widow (Shirley MacLaine) whom no one liked. + + Jack Black + Shirley MacLaine + Matthew McConaughey + + 2011 + Movies + Comedy + + + TVG + + + 3 + + + + Rush + Two undercover narcotics officers (Jason Patric, Jennifer Jason Leigh) become lovers hooked on drugs and danger in 1970s Texas. + + Jason Patric + Jennifer Jason Leigh + Sam Elliott + + 1991 + Movies + Drama + + + TVG + + + 3 + + + + Bernie + The residents of an upscale Texas town rally behind a beloved mortician (Jack Black) after he is arrested for the murder of a rich but mean-spirited widow (Shirley MacLaine) whom no one liked. + + Jack Black + Shirley MacLaine + Matthew McConaughey + + 2011 + Movies + Comedy + + + TVG + + + 3 + + + + Bernie + The residents of an upscale Texas town rally behind a beloved mortician (Jack Black) after he is arrested for the murder of a rich but mean-spirited widow (Shirley MacLaine) whom no one liked. + + Jack Black + Shirley MacLaine + Matthew McConaughey + + 2011 + Movies + Comedy + + + TVG + + + 3 + + + + Rush + Two undercover narcotics officers (Jason Patric, Jennifer Jason Leigh) become lovers hooked on drugs and danger in 1970s Texas. + + Jason Patric + Jennifer Jason Leigh + Sam Elliott + + 1991 + Movies + Drama + + + TVG + + + 3 + + + + Vacuum & Mop at the SAME Time + The Shark Matrix Plus combines an ultra-powerful vacuum with Sonic Mopping for a complete clean from start to finish. + Paid Program + + + + BEST Shark Vacuum Yet! New Stratos! + Shark's most advanced, innovative upright vacuum. + Paid Program + + + + Looking for a Medicare Plan? + The Medicare Annual Election Period ends on December 7th. Watch and learn about Humana Medicare Advantage plans. + Paid Program + Business + + + + Bernie + The residents of an upscale Texas town rally behind a beloved mortician (Jack Black) after he is arrested for the murder of a rich but mean-spirited widow (Shirley MacLaine) whom no one liked. + + Jack Black + Shirley MacLaine + Matthew McConaughey + + 2011 + Movies + Comedy + + + TVG + + + 3 + + + + Little Women + Louisa May Alcott's classic story of the lives, loves and triumphs of four sisters in Civil War-era New England. + + Winona Ryder + Gabriel Byrne + Trini Alvarado + + 1994 + Movies + Drama + + + TVG + + + 3 + + + + Mary Reilly + Gentle Dr. Jekyll (John Malkovich) confides in a young chambermaid (Julia Roberts) and transforms into evil Mr. Hyde in 19th-century London. + + Julia Roberts + John Malkovich + George Cole + + 1996 + Movies + Drama + + + TVPG + + + 2 + + + + 10 to Midnight + An outraged police detective (Charles Bronson) and his rookie partner (Andrew Stevens) skirt the law to catch a killer of women. + + Charles Bronson + Andrew Stevens + Lisa Eilbacher + + 1983 + Movies + Thriller + + + TVPG + + + 2 + + + + Fist of Fury + In turn-of-the-century China, a martial-arts student declares war against the rival fighters who murdered his mentor. + + Bruce Lee + Nora Miao + James Tien + + 1972 + Movies + Adventure + + + TVPG + + + 3 + + + + The White Buffalo + Wild Bill Hickok (Charles Bronson) and Chief Crazy Horse (Will Sampson) hunt a legendary white bison. + + Charles Bronson + Jack Warden + Will Sampson + + 1977 + Movies + Western + + + TVG + + + 2 + + + + The Pink Panther + Clumsy Inspector Jacques Clouseau (Peter Sellers) chases a jewel thief (David Niven) and his nephew (Robert Wagner). + + Peter Sellers + David Niven + Robert Wagner + + 1963 + Movies + Comedy + + + TVG + + + 3 + + + + The Return of the Pink Panther + Bungling Inspector Clouseau (Peter Sellers) once again seeks the Pink Panther diamond and maddens his boss (Herbert Lom). + + Peter Sellers + Christopher Plummer + Herbert Lom + + 1975 + Movies + Comedy + + + TVG + + + 3 + + + + The Pink Panther + Clumsy Inspector Jacques Clouseau (Peter Sellers) chases a jewel thief (David Niven) and his nephew (Robert Wagner). + + Peter Sellers + David Niven + Robert Wagner + + 1963 + Movies + Comedy + + + TVG + + + 3 + + + + The Pink Panther + Clumsy Inspector Jacques Clouseau (Peter Sellers) chases a jewel thief (David Niven) and his nephew (Robert Wagner). + + Peter Sellers + David Niven + Robert Wagner + + 1963 + Movies + Comedy + + + TVG + + + 3 + + + + The Return of the Pink Panther + Bungling Inspector Clouseau (Peter Sellers) once again seeks the Pink Panther diamond and maddens his boss (Herbert Lom). + + Peter Sellers + Christopher Plummer + Herbert Lom + + 1975 + Movies + Comedy + + + TVG + + + 3 + + + + NEW Shark Deep Carpet Cleaner + 2-in-1 deep carpet cleaner and handheld spot & stain eliminator combines strong suction and high-pressure spray to deliver the best deep carpet cleaning and tough stain elimination in the market. + Paid Program + + + + NEW Shark Vacuum! Your Pet Hair Solution! + Shark's most advanced, innovative upright vacuum. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. + Paid Program + + + + The Pink Panther + Clumsy Inspector Jacques Clouseau (Peter Sellers) chases a jewel thief (David Niven) and his nephew (Robert Wagner). + + Peter Sellers + David Niven + Robert Wagner + + 1963 + Movies + Comedy + + + TVG + + + 3 + + + + Borderline + A U.S. Border Patrol officer (Charles Bronson) poses as an illegal alien to catch a killer (Ed Harris) smuggling laborers from Mexico. + + Charles Bronson + Bruno Kirby + Ed Harris + + 1980 + Movies + Crime Story + + + TVG + + + 2 + + + + Fist of Fury + In turn-of-the-century China, a martial-arts student declares war against the rival fighters who murdered his mentor. + + Bruce Lee + Nora Miao + James Tien + + 1972 + Movies + Adventure + + + TVPG + + + 3 + + + + Posse + A U.S. marshal (Kirk Douglas) tracks an outlaw (Bruce Dern), killing his chance to be a senator from Texas. + + Kirk Douglas + Bruce Dern + Bo Hopkins + + 1975 + Movies + Western + + + TVG + + + 3 + + + + Malone + An ex-CIA hit man (Burt Reynolds) stops in an Oregon town and stays to fight the sheriff (Kenneth McMillan) and a land-grabber (Cliff Robertson). + + Burt Reynolds + Cliff Robertson + Kenneth McMillan + + 1987 + Movies + Action + + + TVPG + + + 2 + + + + Night of the Living Dead + People (Tony Todd, Patricia Tallman, Tom Towles) hide in a farmhouse from carnivorous walking corpses revived by who knows what. + + Tony Todd + Patricia Tallman + Tom Towles + + 1990 + Movies + Horror + + + TVPG + + + 2 + + + + Overboard + A yachtsman's (Edward Herrmann) wife (Goldie Hawn) falls overboard, forgets who she is and becomes an Oregon carpenter's (Kurt Russell) mate. + + Goldie Hawn + Kurt Russell + Edward Herrmann + + 1987 + Movies + Comedy + + + TVG + + + 2 + + + + House Hunters + From Boston to New Hampshire + Boston newlyweds are packing up to start a family in New Hampshire; he wants to be secluded with a modern cabin in the woods, but she's looking for a house with lots of charm that's around neighbors. + Reality TV + + + TVG + + + + House Hunters + New Jersey Jam + A musical couple search for a home with the freedom to rock as loud as they want in New Jersey; they're looking for a place with ceilings high enough for him. + Reality TV + + + TVG + + + + House Hunters + Firewalking in New Mexico + A woman is on the hunt for a second home outside of Taos, N.M.; she's hoping to find the perfect place to host retreats in conjunction with her business as a shaman and firewalking instructor. + Reality TV + + + TVG + + + + House Hunters + Bartender and Mom Buy in New York + A young bartender looks to buy her first place and her parents are fronting the down payment in upstate New York. + Reality TV + + + TVG + + + + House Hunters + A First Home in New Haven + After overcoming hardship, a couple searches for their first home in New Haven, Conn.; he is looking for a fixer-upper with space for a game room, but she wants move-in ready with a fireplace and two full bathrooms. + Reality TV + + + TVG + + + + House Hunters + Finding Room in New Smyrna + A couple hunt for a beachfront property in New Smyrna Beach, Fla., with plenty of room to entertain their friends and family. + Reality TV + + + TVG + + + + House Hunters + Fresh Start in New Rochelle + A family has been staying with parents until they can afford a place of their own in New Rochelle, N.Y.; one doesn't mind spending more on a fully-renovated historic charmer, but the other is determined to find a home in need of fixing up. + Reality TV + + + TVG + + + + House Hunters + Firewalking in New Mexico + A woman is on the hunt for a second home outside of Taos, N.M.; she's hoping to find the perfect place to host retreats in conjunction with her business as a shaman and firewalking instructor. + Reality TV + + + TVG + + + + House Hunters + Bartender and Mom Buy in New York + A young bartender looks to buy her first place and her parents are fronting the down payment in upstate New York. + Reality TV + + + TVG + + + + House Hunters + First Home Near New Orleans + A couple relocates from the Florida Keys to the New Orleans area and searches for their first home. + Reality TV + + + TVG + + + + House Hunters + A First Home in New Haven + After overcoming hardship, a couple searches for their first home in New Haven, Conn.; he is looking for a fixer-upper with space for a game room, but she wants move-in ready with a fireplace and two full bathrooms. + Reality TV + + + TVG + + + + House Hunters + First Home Near New Orleans + A couple relocates from the Florida Keys to the New Orleans area and searches for their first home. + Reality TV + + + TVG + + + + House Hunters + A First Home in New Haven + After overcoming hardship, a couple searches for their first home in New Haven, Conn.; he is looking for a fixer-upper with space for a game room, but she wants move-in ready with a fireplace and two full bathrooms. + Reality TV + + + TVG + + + + House Hunters + Finding Room in New Smyrna + A couple hunt for a beachfront property in New Smyrna Beach, Fla., with plenty of room to entertain their friends and family. + Reality TV + + + TVG + + + + House Hunters + Fresh Start in New Rochelle + A family has been staying with parents until they can afford a place of their own in New Rochelle, N.Y.; one doesn't mind spending more on a fully-renovated historic charmer, but the other is determined to find a home in need of fixing up. + Reality TV + + + TVG + + + + House Hunters + From Boston to New Hampshire + Boston newlyweds are packing up to start a family in New Hampshire; he wants to be secluded with a modern cabin in the woods, but she's looking for a house with lots of charm that's around neighbors. + Reality TV + + + TVG + + + + House Hunters + New Jersey Jam + A musical couple search for a home with the freedom to rock as loud as they want in New Jersey; they're looking for a place with ceilings high enough for him. + Reality TV + + + TVG + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Jane Seymour, Kate Walsh share their skin secrets + Crepe Erase Ultra visibly transforms your skin with 9 super hydrators! Tune in to see how Jane Seymour and Kate Walsh keep their skin so smooth. Treat and repair the look of crepey skin.Shop at CrepeErase.com. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Jane Seymour, Kate Walsh share their skin secrets + Crepe Erase Ultra visibly transforms your skin with 9 super hydrators! Tune in to see how Jane Seymour and Kate Walsh keep their skin so smooth. Treat and repair the look of crepey skin.Shop at CrepeErase.com. + Paid Program + + + + Cindy Crawford and Ellen Pompeo share secrets + Join Cindy Crawford and Ellen Pompeo as they discuss their busy lives and the breakthrough skin care discovery that keeps them looking their best. Take a trip to the stunning French countryside to see a rare French melon that defies aging. + Paid Program + + + + My Lottery Dream Home + Buy Now, Inherit Later + A construction worker wins $250,000 and calls on David to help him find a place near his eight adult daughters. + Reality TV + + + TVG + + + + My Lottery Dream Home + A Spacious Win + A single mom wins $3 million on the lottery and wants more space after sharing an apartment with her three growing girls; with four ladies to please, David Bromstad has his hands full finding a home with rooms for everyone and space to spread out. + Reality TV + + + TVG + + + + My Lottery Dream Home + Cashed Up in Cartersville + After winning $2,000,000 on a scratcher, a Florida couple is moving to just outside of Atlanta; David's shocked at how much house they can buy close to a major city as this family decides between a five-acre yard and a six-bedroom home. + Reality TV + + + TVG + + + + My Lottery Dream Home + Million Dollar Angel + When a selfless Massachusetts woman and family caretaker wins $2 million, it means a brighter future for the whole household; David takes her on an adventure through Plymouth, as they encounter cranberry bogs, historic homes, and farmyard animals. + Reality TV + + + TVG + + + + My Lottery Dream Home + Texas Tranquility + After an unexpected inheritance, a woman is finally able to buy a home near her daughter and grandchildren; She wants a house that's no more than ten minutes away from her family. + Reality TV + + + TVG + + + + My Lottery Dream Home + Rubber City Band Aid + A couple living in her grandmother's tiny two-bedroom house have never had the means to buy their own home -- until they win $1 million on a scratch-off; David searches Akron, Ohio, for a home with a big yard and enough space to host band practice. + Reality TV + + + TVG + + + + Bargain Block + The Italian House + Keith and Evan tackle a crumbling home to create an Italian countryside oasis; they're looking to create an old country feel in their design, so they enlist the expertise of good friends Dave and Jenny Marrs to bring the whole theme to life. + Reality TV + Home + + + TVG + + + + Bargain Block + The Boys House + Keith and Evan have a change of pace and tackle a renovation to create their own dream home in the heart of Detroit; with a few setbacks, the team dreams up a lofty plan all while renovating their other houses throughout the block. + Reality TV + Home + + + TVG + + + + Bargain Block + The Forest House + Keith and Evan buy a home littered with debris and branches and feel they may be landscaping indoors during demo; however, Keith finds a few treasures that inspire him to create a forest-chic design. + Reality TV + Home + + + TVG + + + + Bargain Block + The Physics House + The boys take on a desolate house that Evan has gifted Keith for his birthday; inspired by Evan's background in physics, Keith seizes the opportunity to push the laws of nature and design to create a dream home. + Reality TV + Home + + + TVG + + + + Bargain Block + The Rustic Cozy Cabin + Keith and Evan have their hands full as they take on a decrepit house filled with auto parts and old tires; inspired by the chaos, Keith decides to take the reno in a cozy direction with a rugged style to create an enviable, cabin-style home. + Reality TV + Home + + + TVG + + + + Bargain Block + The Scandinavian House + Keith and Evan purchase a dilapidated home and turn it into a neutral Nordic paradise; with setbacks that send the budget spiraling, the project is difficult but evokes the spirit of Scandinavian design. + Reality TV + Home + + + TVG + + + + Bargain Block + The Classic Detroit House + Keith and Evan tackle a 1920s house with original details and hidden charm; the vintage vibe inspires Keith to incorporate classic Detroit styles throughout the design, combining old and new to create a city-chic throwback home. + Reality TV + Home + + + TVG + + + + Unsellable Houses + Historic Home Rescue + An overwhelmed woman needs Lyndsay and Leslie's help after her mother's home has sat on the market for months; they expose the 1906 home's classic character with a cozy-chic cottage feel. + Home + Reality TV + + + TVG + + + + Unsellable Houses + Peach Freak, Grandma Chic + A realtor tries big price drops on a property, but it still doesn't sell; Lyndsay and Leslie step in and look to turn a midcentury rambler from gray and peach into a retro prize. + Home + Reality TV + + + TVG + + + + Unsellable Houses + Double Design: Colorfully Crafted + Including never-before-seen footage, Leslie worries that Lyndsay's pink tile and green cabinets will repel buyers of a 2002 rambler. And in a bonus renovation, the twins hit a roadblock while restoring a craftsman home's living and dining rooms. + Home + Reality TV + + + TVG + + + + Unsellable Houses + In the Dog House + A chance meeting leads Lyndsay and Leslie to a pet damaged home where they turn a patchwork place of unfinished projects into a boho ranch; the twins focus on a kitchen redesign and curb appeal; one sister can't resist a new puppy of her own. + Home + Reality TV + + + TVG + + + + House Hunters + Family Visits in Orlando + A Texas woman looks for a vacation home near family in Orlando, Fla.; her real estate agent sister helps search for a place on the water, but since she prefers saving to spending, she hesitates to spend the money. + Reality TV + + + TVG + + + + House Hunters + Mother Knows Best in Atlanta + With her adult son back home from college, a single mom has outgrown her apartment and looks to purchase a larger home of her own in the suburbs of Atlanta; she dreams of a single-family ranch, but he wants a condo or townhome with amenities. + Reality TV + + + TVG + + + + House Hunters + Getting It All in the Kansas Suburbs + A couple is hoping to get everything they want in the Kansas suburbs; she's looking for a midcentury modern house, but he has his eyes set on a new build. + Reality TV + + + TVG + + + + House Hunters + From the Far East to the Midwest + After living in China for the past two years, a married couple is looking for a spacious place with lots of room to accommodate their large family, but they can't seem to agree on style or price. + Reality TV + + + TVG + + + + House Hunters + First Timers in Fargo + A couple want to trade apartment living for a home of their own and a sense of permanence in Fargo, N.D.; they're looking for more space, but bigger homes come with big price tags, so they may be forced to make some compromises. + Reality TV + + + TVG + + + + House Hunters + Car Dad in Carlsbad + A recent divorcee in Carlsbad, CA, looks for a unique home for himself and his extensive car collection. His daughter joins the hunt to help curb his impulsiveness and offer her opinion on the homes' positive and negative energy. + Reality TV + + + TVG + + + + House Hunters + Family Visits in Orlando + A Texas woman looks for a vacation home near family in Orlando, Fla.; her real estate agent sister helps search for a place on the water, but since she prefers saving to spending, she hesitates to spend the money. + Reality TV + + + TVG + + + + House Hunters + Mother Knows Best in Atlanta + With her adult son back home from college, a single mom has outgrown her apartment and looks to purchase a larger home of her own in the suburbs of Atlanta; she dreams of a single-family ranch, but he wants a condo or townhome with amenities. + Reality TV + + + TVG + + + + House Hunters + Getting It All in the Kansas Suburbs + A couple is hoping to get everything they want in the Kansas suburbs; she's looking for a midcentury modern house, but he has his eyes set on a new build. + Reality TV + + + TVG + + + + House Hunters + From the Far East to the Midwest + After living in China for the past two years, a married couple is looking for a spacious place with lots of room to accommodate their large family, but they can't seem to agree on style or price. + Reality TV + + + TVG + + + + House Hunters + First Timers in Fargo + A couple want to trade apartment living for a home of their own and a sense of permanence in Fargo, N.D.; they're looking for more space, but bigger homes come with big price tags, so they may be forced to make some compromises. + Reality TV + + + TVG + + + + House Hunters + Car Dad in Carlsbad + A recent divorcee in Carlsbad, CA, looks for a unique home for himself and his extensive car collection. His daughter joins the hunt to help curb his impulsiveness and offer her opinion on the homes' positive and negative energy. + Reality TV + + + TVG + + + + Unsellable Houses + In the Dog House + A chance meeting leads Lyndsay and Leslie to a pet damaged home where they turn a patchwork place of unfinished projects into a boho ranch; the twins focus on a kitchen redesign and curb appeal; one sister can't resist a new puppy of her own. + Home + Reality TV + + + TVG + + + + Unsellable Houses + No Appeal to Curb Appeal + A couple's desperation to sell its small, historic bungalow has hit an all-time high; Leslie and Lyndsay decide the house just needs a little love to make it sellable. + Home + Reality TV + + + TVG + + + + Unsellable Houses + Road House to Show House + Leslie and Lyndsay help a family struggling to sell their roadside rambler; hoping to distract buyers from the road noise outside, the twins make some bold design choices to turn the dated ranch house into a stylish home. + Home + Reality TV + + + TVG + + + + Unsellable Houses + Condo Cleanup + A young millennial's recent home improvement projects have made it hard for her to sell her condo; Leslie and Lyndsay transform her DIY disaster into a hip, modern home that's perfect for a first-time home buyer. + Home + Reality TV + + + TVG + + + + Unsellable Houses + Moving Sale Makeover + A couple is moving out of state for work and need Leslie and Lyndsay's help to sell their house. + Home + Reality TV + + + TVG + + + + Property Brothers: Forever Home + Go With the Flow + Florence and Humberto have loved living in their L.A. bungalow for over 20 years, but the tired home needs a facelift and the couple need help deciding how make their house work for their evolving needs. + Reality TV + Home + + + TVG + + + + Property Brothers: Forever Home + Making It Ours + A long-distance couple are finally coming together in Los Angeles, but his Spanish-style bungalow needs a major update; Jonathan and Drew help them ditch the bachelor decor and improve the disjointed layout for a cozy, modern home they'll both love. + Reality TV + Home + + + TVG + + + + Property Brothers: Forever Home + Keeping It in the Family + A woman inherits a home that's been in her family for generations, and soon she will pass it on to her son; Drew and Jonathan balance the family's design styles to rework the layout and crumbling kitchen so this legacy home will be built to last. + Reality TV + Home + + + TVG + + + + Property Brothers: Forever Home + Rockin' Reno + After inheriting his grandparent's house, a couple look to transform it into a home for their two beloved dogs and his guitar collection; Jonathan and Drew reimagine the entire space to make new memories for the next generation. + Reality TV + Home + + + TVG + + + + Property Brothers: Forever Home + Farmhouse in the City + A family finds the perfect home to realize their dream of a backyard farm, but with a baby on the way, they can no longer endure the impractical layout; the brothers completely reimagine the home's footprint to create the farmhouse of their dreams. + Reality TV + Home + + + TVG + + + + House Hunters + Island Life in Charleston + A couple looks to upgrade to a coastal cottage in Charleston, South Carolina. She's worried about overspending while he's willing to go to their max, but in this very popular market, they each may have to compromise. + Reality TV + + + TVG + + + + House Hunters + Near the Beach in Los Angeles + Buyers sell their condo and try to find a home in West Los Angeles; he wants to stay as close to the beach as possible; she thinks they should move inland to have shorter commutes and be closer to their son's day care. + Reality TV + + + TVG + + + + House Hunters + A Newlywed Conundrum in Colorado + A newly married couple is looking for a new home in Colorado; as a designer, she's bursting with creativity and dreams of gutting a fixer, but that conflicts with his plans of living in a low-maintenance new build. + Reality TV + + + TVG + + + + House Hunters + In for the Long Haul on Long Island + A couple is ready to take their relationship to the next level, so they search for a home to share on Long Island, N.Y.; he's looking to buy an old fixer, but she wants to spend their max on something turnkey that's near her mom. + Reality TV + + + TVG + + + + House Hunters + Lovebirds or Landlords in Chicago + The pursuit of the perfect home involves big decisions. Each episode follows real buyers as they establish a budget, tour homes for sale, weigh pros and cons and finally make an offer. + Reality TV + + + TVG + + + + House Hunters + A New House for New Parents in Atlanta + A young couple discovers they're expecting and now they're searching for a bigger home in Atlanta; he doesn't mind spending for something that's huge and updated, but she's willing to put up with some quirks in order to keep costs low. + Reality TV + + + TVG + + + + House Hunters + Creative Eye in Seattle + After moving all over the country, a buyer looks to put down roots near friends and family in Seattle; she has the eye of a creative director, which doesn't always jive with her budget, so her best friend is along to help keep things in perspective. + Reality TV + + + TVG + + + + House Hunters + Forging a Future in Florida + Two theme park entertainers search for a home together in Orlando, Fla.; they're looking for a place that can accommodate practicing their unique talent of stilt walking and aerialist abilities; she wants to spend more than him. + Reality TV + + + TVG + + + + House Hunters + A Downtown Dilemma in Nashville + A young couple has differing priorities on their search for a home in Nashville; she wants a modern condo in the action downtown, but he's getting ready to pop the question and prefers a house in the suburbs where they can raise future kids. + Reality TV + + + TVG + + + + House Hunters + To Finally Say That We're Home + A long-distance couple who are now engaged look for a home in Louisania; she's looking for a newer place in a family-friendly area, but he wants something with privacy and land. + Reality TV + + + TVG + + + + My Lottery Dream Home + Lucky In Las Vegas + After a man hit it big in Vegas on his wife's birthday, a couple is ready to find a quiet spot where they can raise their family away from the bright lights of the Strip; David works to find the perfect family home far from the commotion of the city. + Reality TV + + + TVG + + + + My Lottery Dream Home + Winning Big in Florida + A man who won big is ready to buy a new home in Cape Coral, Fla., with his wife; they look to David Bromstad for his real estate expertise; David finds potential properties with reasonable price tags and breathtaking scenic waterways. + Reality TV + + + TVG + + + + My Lottery Dream Home + Big Sky Dream Home + Daniel and Marcia won $1 million in the state lottery and can now afford to buy a dream home in Montana to accommodate their big family; Daniel wants a ranch on 200 acres of land, but Marcia would like something more manageable. + Reality TV + + + TVG + + + + My Lottery Dream Home + Lucky Lakeside + A Connecticut couple wants a lake home where they can make memories with their kids, so David looks for the perfect place on the water of East Haddam. + Reality TV + + + TVG + + + + My Lottery Dream Home + Mountain High Dreams + When a Florida couple receives an inheritance from a long-lost relative that leaves them $900,000 richer, they struggle to agree on a budget for a mountain vacation home in Blue Ridge, Ga. + Reality TV + + + TVG + + + + My Lottery Dream Home + Seven Million Big Ones + Two New York EMTs have dedicated their lives to helping others, but with a lotto win under their belts, it's their turn for some self-care. + Reality TV + + + TVG + + + + My Lottery Dream Home + California Dreams + After a $5 million scratch-off win, a family of five can finally move out of the two bedroom apartment they share with three dogs; David helps them navigate the California market for a home that has a room for everyone. + Reality TV + + + TVG + + + + My Lottery Dream Home + Must Love Goats + Through difficult circumstances, a single man gets an unexpected windfall, and now he's ready to find his dream home; David searches California's Central Valley to find a place where he can host guests, settle down and maybe start his own family. + Reality TV + + + TVG + + + + My Lottery Dream Home + A Snowbirder's Florida Haven + Thanks to a family inheritance, a Midwestern couple are ready for the relaxing vibes of central Florida; they're bringing in David to help search for their forever home, and now it's a decision between a golf course view and a relaxing rural outlook. + Reality TV + + + TVG + + + + My Lottery Dream Home + Big Kona Energy + A couple got married in Hawaii 18 years ago, and after winning $5 million on a scratcher, they're moving to the Big Island; with a huge budget, David searches for properties with ocean views, and takes in the Big Kona energy along the way. + Reality TV + + + TVG + + + + Tough Love With Hilary Farr + Brick by Brick + A couple purchased their midcentury home three years ago, but now the layout doesn't work for their family of four; Hilary plans to open up the space, but she faces resistance when the homeowner changes her mind about losing a brick wall. + Home + + + TVG + + + + House Hunters + Whimsy Wanted in New York + Buyers outside of New York City sold their apartment in less than a week, so now they need to find a new home; he wants to go with something small to keep costs down, but she's got her heart set on a large house with charm and a whimsical feel. + Reality TV + + + TVG + + + + House Hunters + Newbies in Vancouver + A newly married couple in the medical field look for their first home together as they relocate to Vancouver, Wash.; she's looking for something older with character, but he prefers a place that's modern with a lower price tag. + Reality TV + + + TVG + + + + House Hunters International + Meditation Madness in Thailand + A whirlwind romance has a couple sharing his small apartment after just the second date; his small space is hindering her dreams of hosting meditation retreats, and she's antsy to upgrade, but he doesn't see a need for change. + Reality TV + Travel + + + TVG + + + + House Hunters International + What Happens in Vegas Stays in London + After four years of long-distance dating, newlyweds look for their first place together in London; she's leaving everything to move to his home turf, and managing big changes on a single income will be a greater challenge than they anticipated. + Reality TV + Travel + + + TVG + + + + Tough Love With Hilary Farr + Brick by Brick + A couple purchased their midcentury home three years ago, but now the layout doesn't work for their family of four; Hilary plans to open up the space, but she faces resistance when the homeowner changes her mind about losing a brick wall. + Home + + + TVG + + + + House Hunters + Whimsy Wanted in New York + Buyers outside of New York City sold their apartment in less than a week, so now they need to find a new home; he wants to go with something small to keep costs down, but she's got her heart set on a large house with charm and a whimsical feel. + Reality TV + + + TVG + + + + House Hunters + Newbies in Vancouver + A newly married couple in the medical field look for their first home together as they relocate to Vancouver, Wash.; she's looking for something older with character, but he prefers a place that's modern with a lower price tag. + Reality TV + + + TVG + + + + House Hunters International + Meditation Madness in Thailand + A whirlwind romance has a couple sharing his small apartment after just the second date; his small space is hindering her dreams of hosting meditation retreats, and she's antsy to upgrade, but he doesn't see a need for change. + Reality TV + Travel + + + TVG + + + + House Hunters International + What Happens in Vegas Stays in London + After four years of long-distance dating, newlyweds look for their first place together in London; she's leaving everything to move to his home turf, and managing big changes on a single income will be a greater challenge than they anticipated. + Reality TV + Travel + + + TVG + + + + My Lottery Dream Home + A Snowbirder's Florida Haven + Thanks to a family inheritance, a Midwestern couple are ready for the relaxing vibes of central Florida; they're bringing in David to help search for their forever home, and now it's a decision between a golf course view and a relaxing rural outlook. + Reality TV + + + TVG + + + + My Lottery Dream Home + Big Kona Energy + A couple got married in Hawaii 18 years ago, and after winning $5 million on a scratcher, they're moving to the Big Island; with a huge budget, David searches for properties with ocean views, and takes in the Big Kona energy along the way. + Reality TV + + + TVG + + + + House Hunters + Picky in Palm Springs + A Los Angeles couple hunts for a vacation home in sunny Palm Springs, Calif.; her detailed focus on style and renovation, however, gets in the way of his desire to have a cocktail by the pool. + Reality TV + + + TVG + + + + House Hunters + Renovation Hesitation in New Jersey + A New Jersey couple agrees that they need more space, but that's where the agreement ends; he wants a fixer-upper that he can put his own touches on, but she doesn't want to be stuck in a construction zone forever. + Reality TV + + + TVG + + + + House Hunters + Beachfront or Bust in Maui + A musician is buying his first home near where he grew up on the island of Maui, in Hawaii; he wants an oceanfront property with a pool and a second bedroom, but his friend insists he'll have to compromise. + Reality TV + + + TVG + + + + House Hunters + My Way or the Rahway + A couple in Rahway, N.J., looks for a new home; she's sick of stairs and wants a one-story ranch that she can fix up, but he's worried about the cost of renovation and would rather have a turnkey with a big backyard. + Reality TV + + + TVG + + + + Why the Heck Did I Buy This House? + A House Divided + A couple are desperate to find more room in their small starter home; with limited space and a tight budget, Kim Wolfe steps in to rework their dream home. + Home + + + TVG + + + + Why the Heck Did I Buy This House? + Kids and Chaos + A family loves that they get to live next door to Grandpa, but their own home has been completely taken over by their kids' clutter; Kim arrives to help them carve out some personal space and make the house work. + Home + + + TVG + + + + Why the Heck Did I Buy This House? + Hidden Compound + A hidden compound in a couple's backyard has asbestos floors and unsafe electrical, so Kim pieces their outdoor space back together so that the family can have a safe place to thrive. + Home + + + TVG + + + + Why the Heck Did I Buy This House? + Clash of the Decades + The Wests fell for the nostalgic vintage feel of their house, but the lack of modern conveniences is causing major remorse; Kim Wolfe manages to save the charm they fell for while giving them a functional, modern home to live in. + Home + + + TVG + + + + Home Town + From the Big Apple to the Little Catfish + A surgeon and his wife are moving to Mississippi from New York City, and their all-in budget goes a long way; Ben and Erin pay homage to the historic property's original elements to design a charming family home. + Reality TV + Home + + + TVG + + + + Home Town + A New Beginning + A photographer who is friends with Napier looks for a home with a touch of modern style; Ben and Erin transform a classic mansion that needs a complete makeover. + Reality TV + Home + + + TVG + + + + Home Town + Architect's Linear Loft + An architect is looking to expand his business, so he's headed downtown to find the perfect combination of work and living space; Ben and Erin show him two buildings with plenty of room and opportunity for both a growing business and his Great Dane. + Reality TV + Home + + + TVG + + + + Home Town + A Colorful Match + Young entrepreneurs are excited to embark on a new chapter with the purchase of their first home; they want to incorporate bright colors into their design, and while Ben and Erin look to maximize space, it may also mean a bit of compromise. + Reality TV + Home + + + TVG + + + + Home Town + A Drop of Sunshine + California transplants look for a simpler small-town feel in Laurel and they're hoping to find a house with architectural charm; Ben and Erin present them with two home options, and the one they choose gives Erin a few design surprises along the way. + Reality TV + Home + + + TVG + + + + Fixer to Fabulous + Midcentury Party House + A couple who love the midcentury modern style thought buying a 1970s home made sense, but a pile of renovation projects has them calling for help; Dave and Jenny get to work, bringing their groovy pad and pool house back to its former glory. + + Dave Marrs + Jenny Marrs + + Home + + + TVG + + + + Fixer to Fabulous + Modern Cabin in the Woods + A couple purchases a '90s lake house with the hopes of making it their forever home, but it desperately needs an update; Dave and Jenny transform the dated home into a modern cabin-in-the-woods by using the surrounding lush forest as inspiration. + Home + + + TVG + + + + Fixer to Fabulous + Historic Cottage Gets a Modern Upgrade + High school sweethearts looking for a change of pace from suburban life find a historic 1940s home in downtown Bentonville, Ark.; Dave and Jenny transform the small home by maximizing every square foot and giving it a cottage-inspired look. + Home + + + TVG + + + + Fixer to Fabulous + Century-Old Barn Turned Family Home + A couple with family across the country want to turn their century-old barn into a home to host everyone; Dave and Jenny take on the massive project and transform their rustic barn into a modern gathering space with unique design choices. + Home + + + TVG + + + + Fixer to Fabulous + Life on Marrs: Family Home with Aussie Flair + A couple with Australian roots wanted to brighten up their dull '80s rancher and make it fit their family's lifestyle. Dave and Jenny revisit this renovation where they gave their home a family friendly update with Aussie inspired touches. + Home + + + TVG + + + + Fixer to Fabulous + Drab Fixer to Charming Cottage + A first-time homeowner is excited for her English cottage-style renovation that she can enjoy with her friends; as demolition gets underway, Dave and Jenny uncover an unexpected challenge when they discover her crawl space is filled with water. + Home + + + TVG + + + + Building Roots + Building on Shaky Ground + A couple wants to update a home they inherited from his stepfather, with plans to make it their permanent residence. But when Ben and Cristi uncover countless structural issues, this discovery threatens to consume the couple's entire budget. + Home + + + TVG + + + + House Hunters + Body Slams and Big Houses in Orlando + A former professional wrestler is looking for a showcase home in Orlando, Fla.; he wants a fun place for throwing big parties, but his spiritual practitioner wife prefers a more tranquil home to start a family. + Reality TV + + + TVG + + + + House Hunters International + Giving Back to Mom in Paris + After an incredible sacrifice, a grateful son looks to repay his mother with a home of her own in Paris; she's always dreamt of a colorful Parisian lifestyle, but convincing her to embrace a fresh start in a new city may be a challenge. + Reality TV + Travel + + + TVG + + + + House Hunters + Long Time Sweethearts Buy in Georgia + After a 20-year courtship, a couple look for their first home together to start a family in Georgia; she wants to find a grand, two-story house with five or more bedrooms, but he prefers a smaller three-bedroom rancher. + Reality TV + + + TVG + + + + House Hunters International + Empty Nests and Resets in Cabo San Lucas + After 40 trips to Cabo San Lucas, empty nesters look to buy a home in their favorite vacation spot; they want to keep their house in Oregon, but accomplishing this dream may come with a price tag that means they'll have to keep working to afford it. + Reality TV + Travel + + + TVG + + + + Building Roots + Building on Shaky Ground + A couple wants to update a home they inherited from his stepfather, with plans to make it their permanent residence. But when Ben and Cristi uncover countless structural issues, this discovery threatens to consume the couple's entire budget. + Home + + + TVG + + + + House Hunters + Body Slams and Big Houses in Orlando + A former professional wrestler is looking for a showcase home in Orlando, Fla.; he wants a fun place for throwing big parties, but his spiritual practitioner wife prefers a more tranquil home to start a family. + Reality TV + + + TVG + + + + House Hunters International + Giving Back to Mom in Paris + After an incredible sacrifice, a grateful son looks to repay his mother with a home of her own in Paris; she's always dreamt of a colorful Parisian lifestyle, but convincing her to embrace a fresh start in a new city may be a challenge. + Reality TV + Travel + + + TVG + + + + House Hunters + Long Time Sweethearts Buy in Georgia + After a 20-year courtship, a couple look for their first home together to start a family in Georgia; she wants to find a grand, two-story house with five or more bedrooms, but he prefers a smaller three-bedroom rancher. + Reality TV + + + TVG + + + + House Hunters International + Empty Nests and Resets in Cabo San Lucas + After 40 trips to Cabo San Lucas, empty nesters look to buy a home in their favorite vacation spot; they want to keep their house in Oregon, but accomplishing this dream may come with a price tag that means they'll have to keep working to afford it. + Reality TV + Travel + + + TVG + + + + Fixer to Fabulous + Drab Fixer to Charming Cottage + A first-time homeowner is excited for her English cottage-style renovation that she can enjoy with her friends; as demolition gets underway, Dave and Jenny uncover an unexpected challenge when they discover her crawl space is filled with water. + Home + + + TVG + + + + Fixer to Fabulous + Historic Home Overhaul + Dave and Jenny transform the Newberry family's historic 1893 house into their first family home; From turning an attic space into a two-bedroom suite to renovating the kitchen, they'll do whatever it takes to give the family of five their dream home. + Home + + + TVG + + + + Fixer to Fabulous + A Drab Victorian Gets a Fab Facelift + Dave and Jenny help a woman turn her home into a beautiful Victorian retreat; they try to complete the contracting work left in the living room, kitchen, master bedroom, and back porch. + Home + + + TVG + + + + Love It or List It + Pool House Problems + Stew and Alan love to entertain, but after retiring, Stew noticed how small and dated their space has become. + Home + + + TVPG + + + + Love It or List It + Overseas Oversight + Jeff and Callie bought their home sight-unseen while living overseas, and it's too small and dysfunctional for their growing family. + Home + + + TVPG + + + + Love It or List It + Too Close for Comfort + Joi is frustrated with the lack of privacy in their home. + Home + + + TVPG + + + + Buying Back the Block + We're In the Army + Comedian Mike Epps and his wife Kyra have bought several homes on his childhood block in Indianapolis, and their goal is to revitalize the struggling neighborhood and bring back the charm, community and character that Mike valued growing up. + Regular + + + TVG + + + + Buying Back the Block + Grandma's House + Comedian Mike Epps and his wife Kyra have bought several homes on his childhood block in Indianapolis, and their goal is to revitalize the struggling neighborhood and bring back the charm, community and character that Mike valued growing up. + Regular + + + TVG + + + + Married to Real Estate + Adjusting in South Fulton + An active family of five needs to buy a home close to their chiropractic business in South Fulton, Ga.; with a laundry list of must-haves and a very tight budget, they'll need all the help they can get from Egypt and Mike. + Home + + + TVG + + + + Married to Real Estate + Big Dreams from Beantown + First-time buyers from Boston move to Atlanta and are looking for an open-concept house with plenty of open space for their dog; a modern design with earthy tones is a must, so Egypt and Mike work tirelessly to create their perfect home. + Home + + + TVG + + + + Married to Real Estate + Fixing the Forever Home + A bachelor is looking for a forever home that fits his lifestyle and incorporates his someday Mrs. Right; Egypt and Mike turn a midcentury tear-down home into a work of art with a complete revamp, including a new addition for entertaining. + Home + + + TVG + + + + Unsellable Houses + Sibling Split Level + Contractor Jeff's sister and brother-in-law want to move into their forever home, but they need to get their split level off the market; with a sibling discount and some creativity, Leslie and Lyndsay turn the home into a French country cottage. + Home + Reality TV + + + TVG + + + + Unsellable Houses + Cottage Vibe + Three generations of women are eager to sell their over-customized and unfinished 1950s rambler before they find a new place near the ocean; Lyndsay and Leslie introduce the Zen-like qualities of cottagecore style to create a cozy home like no other. + Home + Reality TV + + + TVG + + + + Unsellable Houses + Unsellable Disaster + Lyndsay and Leslie undertake a 1950s rambler with a rough exterior and an old bomb shelter in the backyard; the twins discover that the home's proximity to a new sewer system triggers a series of problems that only continue to worsen. + Home + Reality TV + + + TVG + + + + Unsellable Houses + The Actually Unsellable House Returns + After discovering a failing septic system, Lyndsay and Leslie are stuck with a home they can't sell until the county approves costly plans; with no end in sight, the twins look to turn a historic ballroom to its former glory with modern elements. + Home + Reality TV + + + TVG + + + + Help! I Wrecked My House + Help! My Reno Has No Plan + Mike and Sara buy their dream home knowing it needs work, but what they think will be a quick reno turns into months of living out of a suitcase at their in-laws; Jasmine delivers an open concept kitchen and living room fit for their family of five. + Home + + + TVG + + + + El universo: Misterios antiguos resueltos + Los expertos responden antiguos misterios de la humanidad con la ayuda de imágenes generadas por computadora. + Documentary + Science + + + TVPG + + + + Ancient Impossible + Relatos que revelan cómo muchos de los logros tecnológicos de hoy en día fueron desarrollados realmente hace siglos. Monumentos colosales, hazañas increíbles de ingeniería, tecnologías tan precisas que desafían la reinvención. + History + Documentary + + + TVPG + + + + Al descubierto + A través de hermosas imágenes y las historias extraordinarias de los animales y las personas que viven allí, esta serie celebra los lugares más emblemáticos y dramáticos de América Latina, Medio Oriente, India, Indochina, islas salvajes y Europa. + Regular + + + + Al descubierto + A través de hermosas imágenes y las historias extraordinarias de los animales y las personas que viven allí, esta serie celebra los lugares más emblemáticos y dramáticos de América Latina, Medio Oriente, India, Indochina, islas salvajes y Europa. + Regular + + + + Planeta feroz + Un emocionante viaje al corazón de la ira de la madre naturaleza, revelando la velocidad de un tornado, la fuerza letal de un rayo, el poder de un huracán y una devastadora inundación. + Environmental + + + TVPG + + + + Al descubierto + A través de hermosas imágenes y las historias extraordinarias de los animales y las personas que viven allí, esta serie celebra los lugares más emblemáticos y dramáticos de América Latina, Medio Oriente, India, Indochina, islas salvajes y Europa. + Regular + + + + Al descubierto + A través de hermosas imágenes y las historias extraordinarias de los animales y las personas que viven allí, esta serie celebra los lugares más emblemáticos y dramáticos de América Latina, Medio Oriente, India, Indochina, islas salvajes y Europa. + Regular + + + + Al descubierto + A través de hermosas imágenes y las historias extraordinarias de los animales y las personas que viven allí, esta serie celebra los lugares más emblemáticos y dramáticos de América Latina, Medio Oriente, India, Indochina, islas salvajes y Europa. + Regular + + + + Vida y salud + Un programa de entrevistas a diversos médicos, especialistas y expertos en bienestar, para conocer de una manera puntual y divertida sobre el cuidado de la salud física, emocional y mental. + Health + + + + Al-Ándalus + Un espacio dedicado a la historia y la belleza de los monumentos de la península ibérica de estilo musulmán o islámico. + Documentary + History + + + + Crimen 360 + La investigación policial que utiliza la tecnología de avanzada para encontrar y reforzar las evidencias y las teorías. + Computers & Technologies + Documentary + + + TV14 + + + + Maestros de las abejas + A través de los cinco continentes, se exploran las relaciones íntimas que los humanos forjan con las abejas para producir miel, desde la cosecha en los valles del Himalaya hasta la jungla de Indonesia. + Animals + Documentary + + + TVG + + + + Euronews + Noticias sobre economía, política y diplomacia de Europa y del mundo. + News + + + + Ancient Impossible + Relatos que revelan cómo muchos de los logros tecnológicos de hoy en día fueron desarrollados realmente hace siglos. Monumentos colosales, hazañas increíbles de ingeniería, tecnologías tan precisas que desafían la reinvención. + History + Documentary + + + TVPG + + + + Voces + Historias exitosas de hispanos que han transformado la comunidad. Temas actuales que inspirarán a hacer la diferencia en la sociedad. + Performing Arts + Local + + + + Voces + Historias exitosas de hispanos que han transformado la comunidad. Temas actuales que inspirarán a hacer la diferencia en la sociedad. + Performing Arts + Local + + + + Estudio D.C. + Specials + Performing Arts + + + + Cómo hablar con los niños sobre la violencia + Estrategias para afrontar una conversación con los niños acerca del porqué de la violencia. + Specials + Local + + + + Maestros de las abejas + A través de los cinco continentes, se exploran las relaciones íntimas que los humanos forjan con las abejas para producir miel, desde la cosecha en los valles del Himalaya hasta la jungla de Indonesia. + Animals + Documentary + + + TVG + + + + Voces + Historias exitosas de hispanos que han transformado la comunidad. Temas actuales que inspirarán a hacer la diferencia en la sociedad. + Performing Arts + Local + + + + Voces + Historias exitosas de hispanos que han transformado la comunidad. Temas actuales que inspirarán a hacer la diferencia en la sociedad. + Performing Arts + Local + + + + Estudio D.C. + Specials + Performing Arts + + + + Cómo hablar con los niños sobre la violencia + Estrategias para afrontar una conversación con los niños acerca del porqué de la violencia. + Specials + Local + + + + Maestros de las abejas + A través de los cinco continentes, se exploran las relaciones íntimas que los humanos forjan con las abejas para producir miel, desde la cosecha en los valles del Himalaya hasta la jungla de Indonesia. + Animals + Documentary + + + TVG + + + + Pet Heroes + Las historias de animales valientes y leales que rescatan personas. + + Daniel Onerheim + + Animals + + + TVPG + + + + Top dog + Perros policías compiten con perros civiles en pruebas de velocidad, agilidad, habilidad de olfato y trabajo en equipo en circuitos de obstáculos diseñados por expertos para imitar situaciones a las que estos héroes caninos se enfrentan cada día. + Animals + Game Shows + + + TVPG + + + + Hospital Animal + Regular + + + + Servidor del pueblo + La lucha de un profesor de escuela contra la corrupción del gobierno lo termina llevando a ocupar el asiento del presidente. + + Vladimir Zelenskiy + Stanislav Boklan + Natalya Sumskaya + + Sitcom + Comedy + + + TV14 + + + + Tu planeta + Un viaje inolvidable, una visita a los lugares más espectaculares del mundo. + Travel + History + + + + Isabel + La vida de Isabel una joven dulce que a raíz del ejercicio del poder y el sufrimiento personal, se convertiría en una de las gobernantes más grandes de la historia de España. + + Michelle Jenner + Rodolfo Sancho + Pablo Derqui + + History + + + + El tiempo entre costuras + La vida de Sira, una modista que llevada por el amor de un hombre, se marcha desde el Madrid convulso previo a la Guerra Civil a Tánger, donde sin querer se verá envuelta en una trama de espionaje. + + Adriana Ugarte + Tristán Ulloa + Elvira Mínguez + + Drama + + + TVG + + + + Tu planeta + Un viaje inolvidable, una visita a los lugares más espectaculares del mundo. + Travel + History + + + + Isabel + La vida de Isabel una joven dulce que a raíz del ejercicio del poder y el sufrimiento personal, se convertiría en una de las gobernantes más grandes de la historia de España. + + Michelle Jenner + Rodolfo Sancho + Pablo Derqui + + History + + + + El tiempo entre costuras + La vida de Sira, una modista que llevada por el amor de un hombre, se marcha desde el Madrid convulso previo a la Guerra Civil a Tánger, donde sin querer se verá envuelta en una trama de espionaje. + + Adriana Ugarte + Tristán Ulloa + Elvira Mínguez + + Drama + + + TVG + + + + América salvaje + Un viaje desde Alaska hasta la Patagonia, recorriendo los paisajes más enigmáticos y las criaturas que sobreviven en estas condiciones salvajes. Esta es la historia de América. + Documentary + + + TVPG + + + + Tesoros de Asia + Un recorrido por las riquezas naturales y ancestrales del continente más extenso y poblado de la Tierra. + Documentary + + + + Vida y salud + Un programa de entrevistas a diversos médicos, especialistas y expertos en bienestar, para conocer de una manera puntual y divertida sobre el cuidado de la salud física, emocional y mental. + Health + + + + Al-Ándalus + Un espacio dedicado a la historia y la belleza de los monumentos de la península ibérica de estilo musulmán o islámico. + Documentary + History + + + + Creciendo juntos + Se realizan dinámicas que permiten aprender más sobre temas importantes para el desarrollo, como valores familiares, autoestima y seguridad personal, manejo del acoso escolar, equidad de género, entre otros. + Animated + Instructional + + + + Maestros de las abejas + A través de los cinco continentes, se exploran las relaciones íntimas que los humanos forjan con las abejas para producir miel, desde la cosecha en los valles del Himalaya hasta la jungla de Indonesia. + Animals + Documentary + + + TVG + + + + Euronews + Noticias sobre economía, política y diplomacia de Europa y del mundo. + News + + + + Vida y salud + Un programa de entrevistas a diversos médicos, especialistas y expertos en bienestar, para conocer de una manera puntual y divertida sobre el cuidado de la salud física, emocional y mental. + Health + + + + Creciendo juntos + Se realizan dinámicas que permiten aprender más sobre temas importantes para el desarrollo, como valores familiares, autoestima y seguridad personal, manejo del acoso escolar, equidad de género, entre otros. + Animated + Instructional + + + + Overland + Un viaje para descubrir tierras lejanas. + Travel + Documentary + + + + Centro médico + Programa que presenta dos casos médicos basados en hechos reales. Utilizando el formato del documental de ficción, cinco médicos y dos enfermeras irán indagando en cada caso. + + Marina Lozano + Fran Martínez + Rocío Anker + + Health + Performing Arts + + + + Centro médico + Programa que presenta dos casos médicos basados en hechos reales. Utilizando el formato del documental de ficción, cinco médicos y dos enfermeras irán indagando en cada caso. + + Marina Lozano + Fran Martínez + Rocío Anker + + Health + Performing Arts + + + + Creciendo juntos + Se realizan dinámicas que permiten aprender más sobre temas importantes para el desarrollo, como valores familiares, autoestima y seguridad personal, manejo del acoso escolar, equidad de género, entre otros. + Animated + Instructional + + + + Overland + Un viaje para descubrir tierras lejanas. + Travel + Documentary + + + + Mi odisea griega + Un viaje espectacular a través de las únicas y espectaculares islas griegas. Se explora su cultura, historia y gastronomía y, al mismo tiempo, se conocen a sus pobladores. + Travel + + + + Centro médico + Programa que presenta dos casos médicos basados en hechos reales. Utilizando el formato del documental de ficción, cinco médicos y dos enfermeras irán indagando en cada caso. + + Marina Lozano + Fran Martínez + Rocío Anker + + Health + Performing Arts + + + + Centro médico + Programa que presenta dos casos médicos basados en hechos reales. Utilizando el formato del documental de ficción, cinco médicos y dos enfermeras irán indagando en cada caso. + + Marina Lozano + Fran Martínez + Rocío Anker + + Health + Performing Arts + + + + Overland + Un viaje para descubrir tierras lejanas. + Travel + Documentary + + + + Mi odisea griega + Un viaje espectacular a través de las únicas y espectaculares islas griegas. Se explora su cultura, historia y gastronomía y, al mismo tiempo, se conocen a sus pobladores. + Travel + + + + Centro médico + Programa que presenta dos casos médicos basados en hechos reales. Utilizando el formato del documental de ficción, cinco médicos y dos enfermeras irán indagando en cada caso. + + Marina Lozano + Fran Martínez + Rocío Anker + + Health + Performing Arts + + + + Centro médico + Programa que presenta dos casos médicos basados en hechos reales. Utilizando el formato del documental de ficción, cinco médicos y dos enfermeras irán indagando en cada caso. + + Marina Lozano + Fran Martínez + Rocío Anker + + Health + Performing Arts + + + + Bajo cero + Un detective de Alaska se une a una joven que escapó de las garras de un asesino en serie para llevar al criminal a la justicia. + + Nicolas Cage + John Cusack + Vanessa Hudgens + + 2013 + Movies + Thriller + + + TVPG + + + + Animales maravillosos + Hay más de 10 millones de especies en el planeta, pero ¿por qué han prosperado algunas donde otras han fracasado? Esta fascinante serie realiza un exhaustivo estudio de estos ganadores de la naturaleza para revelar los secretos de su éxito. + Animals + Documentary + + + + África Salvaje + África salvaje: programa filmado por cineastas premiados, muestra un variado panorama de la vida salvaje y exhibe uno de los dramas más interesantes del planeta. + Animals + + + + Bajo cero + Un detective de Alaska se une a una joven que escapó de las garras de un asesino en serie para llevar al criminal a la justicia. + + Nicolas Cage + John Cusack + Vanessa Hudgens + + 2013 + Movies + Thriller + + + TVPG + + + + Animales maravillosos + Hay más de 10 millones de especies en el planeta, pero ¿por qué han prosperado algunas donde otras han fracasado? Esta fascinante serie realiza un exhaustivo estudio de estos ganadores de la naturaleza para revelar los secretos de su éxito. + Animals + Documentary + + + + África Salvaje + África salvaje: programa filmado por cineastas premiados, muestra un variado panorama de la vida salvaje y exhibe uno de los dramas más interesantes del planeta. + Animals + + + + Bajo cero + Un detective de Alaska se une a una joven que escapó de las garras de un asesino en serie para llevar al criminal a la justicia. + + Nicolas Cage + John Cusack + Vanessa Hudgens + + 2013 + Movies + Thriller + + + TVPG + + + + Animales maravillosos + Hay más de 10 millones de especies en el planeta, pero ¿por qué han prosperado algunas donde otras han fracasado? Esta fascinante serie realiza un exhaustivo estudio de estos ganadores de la naturaleza para revelar los secretos de su éxito. + Animals + Documentary + + + + Vida y salud + Un programa de entrevistas a diversos médicos, especialistas y expertos en bienestar, para conocer de una manera puntual y divertida sobre el cuidado de la salud física, emocional y mental. + Health + + + + Habla Nuestro Cuerpo + El funcionamiento del cuerpo humano, cómo responden los órganos y las células del cuerpo ante el estrés y los traumas. + Documentary + + + TVG + + + + Maestros de las abejas + A través de los cinco continentes, se exploran las relaciones íntimas que los humanos forjan con las abejas para producir miel, desde la cosecha en los valles del Himalaya hasta la jungla de Indonesia. + Animals + Documentary + + + TVG + + + + Euronews + Noticias sobre economía, política y diplomacia de Europa y del mundo. + News + + + + Vida y salud + Un programa de entrevistas a diversos médicos, especialistas y expertos en bienestar, para conocer de una manera puntual y divertida sobre el cuidado de la salud física, emocional y mental. + Health + + + + Habla Nuestro Cuerpo + El funcionamiento del cuerpo humano, cómo responden los órganos y las células del cuerpo ante el estrés y los traumas. + Documentary + + + TVG + + + + Overland + Un viaje para descubrir tierras lejanas. + Travel + Documentary + + + + La cocinera de Castamar + Clara Belmonte comienza a cocinar para el duque de Castamar, algo que cambiará la vida de ambos, ya que deberán luchar contra uno de los grandes obstáculos de la época para estar juntos: la diferencia de clases. + + Michelle Jenner + Roberto Enríquez + Hugo Silva + + Drama + + + TVMA + + + + Habla Nuestro Cuerpo + El funcionamiento del cuerpo humano, cómo responden los órganos y las células del cuerpo ante el estrés y los traumas. + Documentary + + + TVG + + + + Overland + Un viaje para descubrir tierras lejanas. + Travel + Documentary + + + + Mi odisea griega + Un viaje espectacular a través de las únicas y espectaculares islas griegas. Se explora su cultura, historia y gastronomía y, al mismo tiempo, se conocen a sus pobladores. + Travel + + + + Centro médico + Programa que presenta dos casos médicos basados en hechos reales. Utilizando el formato del documental de ficción, cinco médicos y dos enfermeras irán indagando en cada caso. + + Marina Lozano + Fran Martínez + Rocío Anker + + Health + Performing Arts + + + + Centro médico + Programa que presenta dos casos médicos basados en hechos reales. Utilizando el formato del documental de ficción, cinco médicos y dos enfermeras irán indagando en cada caso. + + Marina Lozano + Fran Martínez + Rocío Anker + + Health + Performing Arts + + + + Overland + Un viaje para descubrir tierras lejanas. + Travel + Documentary + + + + Mi odisea griega + Un viaje espectacular a través de las únicas y espectaculares islas griegas. Se explora su cultura, historia y gastronomía y, al mismo tiempo, se conocen a sus pobladores. + Travel + + + + Centro médico + Programa que presenta dos casos médicos basados en hechos reales. Utilizando el formato del documental de ficción, cinco médicos y dos enfermeras irán indagando en cada caso. + + Marina Lozano + Fran Martínez + Rocío Anker + + Health + Performing Arts + + + + Centro médico + Programa que presenta dos casos médicos basados en hechos reales. Utilizando el formato del documental de ficción, cinco médicos y dos enfermeras irán indagando en cada caso. + + Marina Lozano + Fran Martínez + Rocío Anker + + Health + Performing Arts + + + + Será anunciado + Programación que se anunciará. + News + Performing Arts + + + TVPG + + + + Al descubierto + A través de hermosas imágenes y las historias extraordinarias de los animales y las personas que viven allí, esta serie celebra los lugares más emblemáticos y dramáticos de América Latina, Medio Oriente, India, Indochina, islas salvajes y Europa. + Regular + + + + Tesoros de Asia + Un recorrido por las riquezas naturales y ancestrales del continente más extenso y poblado de la Tierra. + Documentary + + + + Será anunciado + Programación que se anunciará. + News + Performing Arts + + + TVPG + + + + Al descubierto + A través de hermosas imágenes y las historias extraordinarias de los animales y las personas que viven allí, esta serie celebra los lugares más emblemáticos y dramáticos de América Latina, Medio Oriente, India, Indochina, islas salvajes y Europa. + Regular + + + + Tesoros de Asia + Un recorrido por las riquezas naturales y ancestrales del continente más extenso y poblado de la Tierra. + Documentary + + + + Será anunciado + Programación que se anunciará. + News + Performing Arts + + + TVPG + + + + Al descubierto + A través de hermosas imágenes y las historias extraordinarias de los animales y las personas que viven allí, esta serie celebra los lugares más emblemáticos y dramáticos de América Latina, Medio Oriente, India, Indochina, islas salvajes y Europa. + Regular + + + + Vida y salud + Un programa de entrevistas a diversos médicos, especialistas y expertos en bienestar, para conocer de una manera puntual y divertida sobre el cuidado de la salud física, emocional y mental. + Health + + + + Creciendo juntos + Se realizan dinámicas que permiten aprender más sobre temas importantes para el desarrollo, como valores familiares, autoestima y seguridad personal, manejo del acoso escolar, equidad de género, entre otros. + Animated + Instructional + + + + Maestros de las abejas + A través de los cinco continentes, se exploran las relaciones íntimas que los humanos forjan con las abejas para producir miel, desde la cosecha en los valles del Himalaya hasta la jungla de Indonesia. + Animals + Documentary + + + TVG + + + + Euronews + Noticias sobre economía, política y diplomacia de Europa y del mundo. + News + + + + Vida y salud + Un programa de entrevistas a diversos médicos, especialistas y expertos en bienestar, para conocer de una manera puntual y divertida sobre el cuidado de la salud física, emocional y mental. + Health + + + + Creciendo juntos + Se realizan dinámicas que permiten aprender más sobre temas importantes para el desarrollo, como valores familiares, autoestima y seguridad personal, manejo del acoso escolar, equidad de género, entre otros. + Animated + Instructional + + + + Overland + Un viaje para descubrir tierras lejanas. + Travel + Documentary + + + + Isabel + La vida de Isabel una joven dulce que a raíz del ejercicio del poder y el sufrimiento personal, se convertiría en una de las gobernantes más grandes de la historia de España. + + Michelle Jenner + Rodolfo Sancho + Pablo Derqui + + History + + + + Creciendo juntos + Se realizan dinámicas que permiten aprender más sobre temas importantes para el desarrollo, como valores familiares, autoestima y seguridad personal, manejo del acoso escolar, equidad de género, entre otros. + Animated + Instructional + + + + Overland + Un viaje para descubrir tierras lejanas. + Travel + Documentary + + + + Mi odisea griega + Un viaje espectacular a través de las únicas y espectaculares islas griegas. Se explora su cultura, historia y gastronomía y, al mismo tiempo, se conocen a sus pobladores. + Travel + + + + Centro médico + Programa que presenta dos casos médicos basados en hechos reales. Utilizando el formato del documental de ficción, cinco médicos y dos enfermeras irán indagando en cada caso. + + Marina Lozano + Fran Martínez + Rocío Anker + + Health + Performing Arts + + + + Centro médico + Programa que presenta dos casos médicos basados en hechos reales. Utilizando el formato del documental de ficción, cinco médicos y dos enfermeras irán indagando en cada caso. + + Marina Lozano + Fran Martínez + Rocío Anker + + Health + Performing Arts + + + + Overland + Un viaje para descubrir tierras lejanas. + Travel + Documentary + + + + Mi odisea griega + Un viaje espectacular a través de las únicas y espectaculares islas griegas. Se explora su cultura, historia y gastronomía y, al mismo tiempo, se conocen a sus pobladores. + Travel + + + + Forensic Files + In Harm's Way + An Alaskan trooper finds a woman's body beside a frozen road, but evidence is scant even after a suspected murder weapon is found. + Documentary + + + TV14 + + + + Forensic Files + No Corpus Delicti + Police link a clump of hair discovered in an isolated area with a woman who disappeared 20 years ago. + Documentary + + + TVPG + + + + Forensic Files + News at 11 + A news anchor is shot to death outside her home in an apparent crime of passion by a fan; a police dog tracks the scent of the killer back to the crime scene. + Documentary + + + TVPG + + + + Forensic Files + Burning Desire + A fire, caused by an unattended cigarette, kills the estranged wife of a police officer; forensic scientists discover that the cause is far more complicated. + Documentary + + + TVPG + + + + Forensic Files + Bad Medicine + When a woman's bone marrow test reveals arsenic poisoning, investigators try to determine if it is due to groundwater contamination or something more sinister. + Documentary + + + TVPG + + + + Forensic Files + Stick 'em Up + A missing bank president's body is found floating in a lake; the duct tape used in binding him to a chair helps solve the crime. + Documentary + + + TVPG + + + + Forensic Files + Head Games + A husband was shot and killed, forensic psychiatry helped the wife to remember the details for what happened. + Documentary + + + TVPG + + + + Forensic Files + Making the Collar + The body of a 16-year-old girl is discovered nine months after her disappearance; forensic scientists find clues that paint a virtual portrait of her killer. + Documentary + + + TVPG + + + + Forensic Files + Financial Downfall + A young woman falls to her death in what appears to be a tragic accident; a forensic exam of photos taken at the scene tells a different story. + Documentary + + + TVPG + + + + Forensic Files + A Daughter's Journey + Haunted by her mother's long-ago disappearance, a woman undertakes an investigation of her own and stumbles upon a dark family secret. + Documentary + + + TVPG + + + + Forensic Files + Over a Barrel + The robbery and brutal murder of an elderly couple goes unsolved for 10 years; a forensic scientist makes history when he solves the crime. + Documentary + + + TVPG + + + + Forensic Files + A Daughter's Journey + Haunted by her mother's long-ago disappearance, a woman undertakes an investigation of her own and stumbles upon a dark family secret. + Documentary + + + TVPG + + + + Forensic Files + Over a Barrel + The robbery and brutal murder of an elderly couple goes unsolved for 10 years; a forensic scientist makes history when he solves the crime. + Documentary + + + TVPG + + + + Forensic Files + Pinned by the Evidence + A man is charged with the murder of a wrestling champion; six years later, a forensic animator testifies on his behalf. + Documentary + + + TVPG + + + + Forensic Files + Cries Unheard + A 19-year-old girl is found dead in her car in what appears to be a suicide; police discover that the victime was involved in a love quadrangle, giving several people motive to kill. + Documentary + + + TVPG + + + + Forensic Files + Buried Treasure + Fifteen years after a man disappears, using a metal detector, police find evidence which proves what had happened. + Documentary + + + TVPG + + + + Forensic Files + Badge of Betrayal + The body of a young California co-ed under an isolated interstate ramp sets off an investigation; San Diego police have no idea who would want her dead, but they discover a tiny, unique fiber on the victim's clothing. + Documentary + + + TVPG + + + + Forensic Files + Deadly Matrimony + Police become suspicious of a man who reported his wife missing 15 years after doing the same thing with his first wife. + Documentary + + + TVPG + + + + Forensic Files + Muddy Waters + While investigating the case of a Colorado hunter shot three times and killed, police suspect two murder weapons, and two killers, but forensic evidence points them closer to home. + Documentary + + + TVPG + + + + Forensic Files + Dark Waters + Hit-and-run boating accident that kills a popular young man causes investigators to search for one boat out of thousands. + Documentary + + + TVPG + + + + Forensic Files + Nice Threads + A woman is found dead on her bedroom floor, the only clue is a bloodstained sheet; breakthrough forensics enable police to identify the killer. + Documentary + + + TVPG + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + Deadline: Crime With Tamron Hall + Eyes Like Daddy + After a young mother is murdered inside her home, an early arrest and a surprising confession point to a dark conspiracy, leading investigators to someone many townspeople thought they knew. + News Magazine + + + TV14 + + + + Deadline: Crime With Tamron Hall + New Mexico Desert Killings + When a young woman vanishes from a New Mexico convenience store, two detectives discover tracks in the dirt that may lead to answers; after a second woman disappears, it's a race against time to stop a possible serial killer. + News Magazine + + + TV14 + + + + Deadline: Crime With Tamron Hall + Innocence Lost + In 2006, a young woman and her baby are found murdered at home; detectives discover a complicated romance, a revelation and evidence to make an arrest. + News Magazine + + + TV14 + + + + Deadline: Crime With Tamron Hall + Vanishing on I-95 + A woman vanishes while driving on I-95 in Florida; her divorce leads police one way, then her body is found, suggesting a different more horrible path; another woman reads about the case and has a hunch she knows the killer. + News Magazine + + + TV14 + + + + Deadline: Crime With Tamron Hall + The Jersey Devil + Star student Brittney Gregory, 16, vanishes from Brick Township, N.J., in 2004; police launch an investigation that leads them into a world of dark secrets and dangerous players as they strive to solve her disappearance. + News Magazine + + + TV14 + + + + Deadline: Crime With Tamron Hall + Driven to Murder + After helping a friend fix his computer, 18-year-old tech prodigy Sam Poss takes off on foot and never returns home. + News Magazine + + + TV14 + + + + Death Row Stories + Edward Lee Elmore + Tenacious legal intern Diana Holt, comes across the case of African American handyman, Edward Lee Elmore and devotes her life to saving his when he is quickly found guilty in the murder of an elderly white widow and sentenced to death. + Legal + Documentary + + + TV14 + + + + Death Row Stories + Gloria Killian + Joyce Ride, the mother of Sally Ride, America's first female astronaut, becomes intrigued by the case of former Sacramento law school student, Gloria Killian who has no prior criminal record and was found guilty of a brutal home invasion and murder. + Legal + Documentary + + + TV14 + + + + Death Row Stories + Joe D'Ambrosio + No one listened to 27-year old Army vet Joe D'Ambrosio's pleas of innocence in the 1988 murder of Tony Klann, until Father Neil Kookoothe began investigating and discovered a shocking cover-up. + Legal + Documentary + + + TV14 + + + + Death Row Stories + James Duckett + Detective Marshall Frank attempts to exonerate his fellow cop James Duckett, who is sentenced to death for the rape and murder of an eleven year-old girl. + Legal + Documentary + + + TV14 + + + + Forensic Files + Point of Origin + A serial arsonist burns thousands of California homes and businesses. + Documentary + + + TVPG + + + + Forensic Files + Seeds for Doubt + A small community in upstate New York is devastated when a car accident claims the life of a well-respected nurse. + Documentary + + + TVPG + + + + Forensic Files + Saving Face + A woman disappears without a trace, and police learn two other women vanished under similar circumstances. + Documentary + + + TVPG + + + + Forensic Files + Northern Exposure + Hikers near Anchorage, Alaska discover a body wrapped in sheets edged in orange stitching; they discover threads of evidence clinging to the sheet. + Documentary + + + TVPG + + + + Forensic Files + Silk Stalkings + The son of a murder victim contacts the police when a flight attendant is brutally murdered in a remarkably similar way. + Documentary + + + TVPG + + + + Forensic Files + Fishing for the Truth + A two-man shrimp boat sinks when a fast-moving, violent storm struck the Louisiana coast; a deckhand is considered a hero for trying to save the drowned captain, until his body is found. + Documentary + + + TVPG + + + + Forensic Files + For Love or Money + A real estate tycoon must have had a premonition about foul play, as he wrote it in his will. + Documentary + + + TVPG + + + + Forensic Files + South of the Border + The cold-blooded murder of an American tourist in a Mexican resort causes law enforcement to focus on both sides of the border. + Documentary + + + TVPG + + + + Forensic Files + The Stake-Out + When a prominent banker's wife is kidnapped, the trail leads police on a wild goose chase; they track down disgruntled bank customers and examine computer fonts. + Documentary + + + TVPG + + + + Forensic Files + Walking Terror + A man has no recollection of events after stabbing his wife and holding her head underwater in a swimming pool. + Documentary + + + TVPG + + + + Forensic Files + Trial by Fire + A fire investigator determines if a kerosene heater is the cause of a fire that killed one person or if it was murder. + Documentary + + + TVPG + + + + Forensic Files + Marked for Life + California police in 1957 search for a murderer, but the case goes cold; 50 years after a crime is committed, advances in computer technology determine the killer. + Documentary + + + TVPG + + + + Forensic Files + Plastic Puzzle + Police collect evidence leading to a driver who fatally injured a cyclist in a hit-and-run accident. + Documentary + + + TVPG + + + + Forensic Files + Up in Smoke + A man becomes the prime suspect when his parents are killed in a house fire. + Documentary + + + TVPG + + + + Forensic Files + Soiled Plan + Twenty years after the murder of a young mother, technology gives new light to evidence and points to the killer. + Documentary + + + TVPG + + + + Forensic Files + Headquarters + When hunters find a skull in a Texas canyon, police find bits of clothing, a woman's shoe, some small bones and a strand of hair; once they discover her identity, it was time to find the killer. + + Karen T. Taylor + Angela Allen + Frank Webb + + Documentary + + + TVPG + + + + Forensic Files + One for the Road + A wife is missing in Key West; investigators wonder if they should be searching for a missing person or a killer. + Documentary + + + TVPG + + + + Forensic Files + Army of Evidence + Suicide notes and a pistol in hand lead police to suspect that a mother of two young children appeared to had killed herself, but when investigators learned of a house fire she was in three years earlier, they reinvestigate. + Documentary + + + TVPG + + + + Forensic Files + Shear Luck + The wife of a serviceman was brutally murdered in the Philippines in 1991, investigators must reassemble a 5-1/4 computer disk cut to pieces with pinking shears to find the murderer. + Documentary + + + TVPG + + + + Forensic Files + Tagging a Suspect + Pieces of plastic the size of sand hold clues to a bombing. + Documentary + + + TVPG + + + + Forensic Files + Grave Danger + Police are suspicious of a mysterious car crash that kills a young man. + Documentary + + + TVPG + + + + Forensic Files + Internal Affair + A woman is found dead, police use blood evidence and computer forensics to convince a jury that the murderer is guilty. + Documentary + + + TVPG + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + Very Scary People + The Hillside Stranglers: A Pair of Serial Killers Pt. 1 + In the fall of 1977, bodies of young women begin piling up in Los Angeles; almost all of the victims are nude, discarded on hillsides, and show signs of torture; it is nearly a year before two murders 1,200 miles away uncover the Hillside Stranglers. + Documentary + + + + Very Scary People + The Hillside Stranglers: She Walked Into the Trap Pt. 2 + In the fall of 1977, bodies of young women begin piling up in Los Angeles; almost all of the victims are nude, discarded on hillsides, and show signs of torture; it is nearly a year before two murders 1,200 miles away uncover the Hillside Stranglers. + Documentary + + + + Very Scary People + The Cross Country Killer: He Could Make People Disappear Pt. 1 + While closing shop in Anchorage, Alaska, Samantha Koenig is approached by a man known in the community as a business owner and caring father who kidnaps her, triggering a manhunt. + Documentary + + + + Very Scary People + The Cross Country Killer: The Kill Kits Pt. 2 + While closing shop in Anchorage, Alaska, Samantha Koenig is approached by a man known in the community as a business owner and caring father who kidnaps her, triggering a manhunt. + Documentary + + + + Very Scary People + John Gotti: It Was Kill or Be Killed Pt. 1 + John Gotti's expensive suits and swagger earn him the nickname Dapper Don; in reality, he is a man to be feared, a ruthless, dangerous Mafia gangster who orders hits on his enemies, his friends, and anyone who crosses him. + Documentary + + + + Very Scary People + John Gotti: There Were Fatal Consequences Pt. 2 + John Gotti's expensive suits and swagger earn him the nickname Dapper Don; in reality, he is a man to be feared, a ruthless, dangerous Mafia gangster who orders hits on his enemies, his friends, and anyone who crosses him. + Documentary + + + + Forensic Files + Speck of Evidence + A speck of bicycle paint and a speck of nickel left over from a collision with a twice-convicted child molester's car provide critical clues in the murder of a 9-year-old. + + Frank Atwood + Larry Bagley + Walter Birkby + + Documentary + + + TVPG + + + + Forensic Files + Broken Bond + A 2-year-old boy's brain seizures and breathing problems baffle doctors until they learn the mother exhibits signs of Munchausen syndrome by proxy, a rare condition that led her to physically abuse her son and contributed to her daughter's death. + + Randell Alexander + + Documentary + + + TVPG + + + + Forensic Files + Out of the Ashes + Two years after an 18-year-old's murder in Albion, Mich., a tiny drop of blood and burned bones lead police to her killers. + + Doug Barrett + Don Brooks + + Documentary + + + TVPG + + + + Forensic Files + Invisible Intruder + A mother claims that an intruder murdered her two sons, but lacking a motive, police use blood-spatter analysis and behavioral profiling to reconstruct a different scenario. + + Tom Bevel + Alan Brantley + Jodi Cotner + + Documentary + + + TV14 + + + + Forensic Files + The Killing Room + A routine missing persons report leads Texas police to discover a deadly love triangle; evidence found in a suspect's home matches the murder scene and leads to the indictment of the victim's girlfriend and her lover. + Documentary + + + TVPG + + + + Forensic Files + Ultimate Betrayal + A 1995 fire razes the mansion of a Kansas doctor, killing two of her three children; disturbing accounts from an ex-husband lead investigators to believe the doctor set the blaze herself. + Documentary + + + TVPG + + + + Forensic Files + Cement the Case + A husband confesses to his wife's murder, only to be found not guilty a year later when a phone tip and forensic evidence point to another. + Documentary + + + TVPG + + + + Forensic Files + Innocence Lost + In Lorton, Va., police attempt to determine who abducted 5-year-old Melissa Brannen after she disappears from a Christmas party, but cannot be certain until they match hair from a rabbit-fur jacket Brannen wore that day. + Documentary + + + TVPG + + + + Forensic Files + Frozen Assets + Police get a big break when Mother Nature aids their investigation into the murder of a woman at her business. + Documentary + + + TVPG + + + + Forensic Files + House Hunting + Eyewitness to real estate agent's murder is put under forensic hypnosis in an attempt to help him recall the killer's face. + Documentary + + + TVPG + + + + Forensic Files + Shoot to Thrill + Police launch a search for a killer after a teenager returns home to find his father's body in a pool of blood. + Documentary + + + TVPG + + + + Forensic Files + Political Thriller + Pathologist examining the death of a politician who was running for re-election finds tiny puncture wounds at the autopsy. + Documentary + + + TVPG + + + + Forensic Files + Double Cross + A Naval officer who threatened to go public with tales of on-the-job sexual harassment and assault is brutally murdered, but when investigators find the allegations could be part of an elaborate scheme for money, they turn to forensic science. + Documentary + + + TVPG + + + + Forensic Files + Dancing With the Devil + A few drops of blood are the only clues a man's female killer leaves behind, but years later and hundreds of miles away investigators hear an intriguing story about an exotic dancer who got away with murder. + Documentary + + + TVPG + + + + Forensic Files + Last Dance + After police identify a murder victim thanks to her butterfly necklace, they discover several co-workers had vendettas against the victim. + Documentary + + + TVPG + + + + Forensic Files + Constructive Criticism + The brutal murder of a construction site foreman looks like the work of a disgruntled employee, but forensic science points to an unlikely suspect. + Documentary + + + TVPG + + + + Forensic Files + Van-ished + When police doubt a young girl's story about being abused, fibers on her clothes help her case. + Documentary + + + TVPG + + + + Forensic Files + A Novel Idea + Police are suspicious of numerous bloodstains when a woman has a fatal fall down the stairs. + Documentary + + + TVPG + + + + Forensic Files + Chief Suspect + A decade old case reopens, and a few seconds of a 911 call enable investigators to determine who is responsible for a murder. + Documentary + + + TVPG + + + + Forensic Files + Water Hazard + Murderer killed innocent people to get the person he wanted. + Documentary + + + TVPG + + + + Forensic Files + Shell Game + A clue no bigger than a thumbtack leads investigators to a trio of killers. + Documentary + + + TVPG + + + + Forensic Files + Ring Him Up + The disappearance of a college co-ed goes unsolved for 10 years, until new testing sheds a different light. + Documentary + + + TVPG + + + + Forensic Files + Killer Impression + Tipster is found dead after revealing that a woman's death 16 years ago was murder. + Documentary + + + TVPG + + + + Forensic Files + If I Were You + Woman suspected something wrong with her father flew back a thousand miles to find his home empty. + Documentary + + + TVPG + + + + Forensic Files + A Case of the Flue + When an elderly woman dies in an apparent robbery-homicide, evidence suggests the suspect broke out of the house rather than breaking in. + Documentary + + + TVPG + + + + Forensic Files + No Safe Place + Wealthy man is shot dead while his wife is forced to open their hidden safe, but they couldn't be identified because they were wearing ski masks. + Documentary + + + TVPG + + + + Forensic Files + Live Wire + A bomb kills a man and a painstaking search yields tiny clues which precisely identify the killer. + Documentary + + + TVPG + + + + Forensic Files + Van-ished + When police doubt a young girl's story about being abused, fibers on her clothes help her case. + Documentary + + + TVPG + + + + Forensic Files + A Novel Idea + Police are suspicious of numerous bloodstains when a woman has a fatal fall down the stairs. + Documentary + + + TVPG + + + + Forensic Files + Chief Suspect + A decade old case reopens, and a few seconds of a 911 call enable investigators to determine who is responsible for a murder. + Documentary + + + TVPG + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + Nightmare Next Door + Madison Murder Mystery + Joel Marino, a salesman from Madison, Wis. is stabbed to death in broad daylight; the predator seems to be one step ahead of the police. + Documentary + + + TV14 + + + + Nightmare Next Door + Small Town Secret + Kari Nixon goes missing in upstate New York; with no body or clues, detectives struggle to solve the mystery. + Documentary + + + TV14 + + + + Nightmare Next Door + The Art of Murder + Kristin Huggins, a 22-year-old artist, suddenly disappears after leaving her parents' home for work. Police soon discover she had a brush with disaster. + + Laura Zollinhofer + Robert Olausen + Irvin Kalugdan + + Documentary + + + TV14 + + + + Nightmare Next Door + Death in the Dark + When Audrey Giannotti is found shot to death in her basement apartment, the cluttered crime scene points to a burglary gone wrong, but police suspect some close to the victim. + Documentary + + + TV14 + + + + Nightmare Next Door + Bloodshed in Biloxi + Panic spreads through a town as Lynette Jarrett disappears. When the case reaches a dead-end due to scant evidence, a new lead proves to be fruitful. + + Stacy Gedney + Martha McConnell + Sarah Ragsdale + + Documentary + + + TV14 + + + + Nightmare Next Door + Murder in the Night + Three members of a church-going family are killed in a triple murder in Lancaster, Pa. + Documentary + + + TV14 + + + + Lies, Crimes & Video + 22 Seconds + Shocking lies, deceit and bad behavior-all caught on camera. Criminal cases are full of terrifying 911 calls, police interrogations, jail house recordings, body camera and surveillance video. + Documentary + + + TV14 + + + + Forensic Files + Til Death Do Us Part + When a Pennsylvania man checks into a hospital for leg pain and later dies of thallium poisoning, police investigate his wife and find her in the process of collecting an insurance payment for her previous husband's death. + Documentary + + + TVPG + + + + Forensic Files + Body of Evidence + Police exhume the body of Karla Brown, murdered in her home in 1978, to study bite wounds, which eventually lead to the killer. + Documentary + + + TVPG + + + + Forensic Files + Accident or Murder? + A new life-insurance policy sparks suspicions of murder when a Nova Scotia schoolteacher's body is found at the bottom of her basement stairs. + Documentary + + + TVPG + + + + Forensic Files + Core Evidence + A beverage company pleads guilty to violating federal safety laws when a baby dies from E. coli after drinking apple juice. + Documentary + + + TVPG + + + + Forensic Files + Haunting Vision + A woman who survived a deadly childhood fire sends police a letter charging that her father killed her mother 30 years ago. + Documentary + + + TVPG + + + + Forensic Files + With Every Breath + After more than 20 people on a Native American reservation die suddenly from a flu-like disease, Navajo medicine men provide a clue that leads to a most unlikely killer. + Documentary + + + TVPG + + + + Forensic Files + Home Evasion + A shooting victim mutters the name of her apparent assailant before dying, but fingerprint comparisons, handwriting analysis, ballistics and DNA testing show someone else close to home is the true killer. + Documentary + + + TVPG + + + + Forensic Files + Window Watcher + A woman tells investigators that a man broke into her home wearing only underwear and gloves, killed her boyfriend, and raped and terrorized her. + Documentary + + + TVPG + + + + Forensic Files + Stranger in the Night + After a Delaware man's mother is found dead, he tells a story that's so improbable police think it can't possibly be true. + Documentary + + + TVPG + + + + Forensic Files + Kidnapping + A family vacation turns into a terrifying search for a missing wife and baby, then becomes a manhunt for a killer who committed a horrific crime. + Documentary + + + TVPG + + + + Forensic Files + Sands of Crime + A DNA dragnet catches a killer eight years after the kidnapping, rape and murder of a college coed in Oklahoma. + Documentary + + + TVPG + + + + Forensic Files + Calculated Coincidence + A nosy neighbor with a disturbing obsession becomes a suspect in a woman's murder at an upscale apartment complex; police discover an incredible link to an unrelated murder thousands of miles away. + Documentary + + + TVPG + + + + Forensic Files + Sworded Scheme + A college student turns up dead and her boyfriend becomes a prime suspect when blood splatters are discovered on his wall. + Documentary + + + TVPG + + + + Forensic Files + Unmasked + Texas police hunt frantically for a brutal rapist. No one knows where he'll strike next, but given the increasingly violent nature of his crimes, he must be found soon. + Documentary + + + TVPG + + + + Forensic Files + As the Tide Turns + Forensic science is used to determine if a woman's death was a botched robbery or intentional murder. + Documentary + + + TVPG + + + + Forensic Files + A Tight Leash + Detectives discover new clues left by a stalker's letter to his victim. + Documentary + + + TVPG + + + + Forensic Files + Muffled Cries + A killer is careless when using a murder weapon that is unique and easily traceable. + Documentary + + + TVPG + + + + Forensic Files + Critical Maneuver + When a high school athlete is killed in a hit and run accident, investigators hoped tiny paint chips and shards of plastic would lead them to the driver. + Documentary + + + TVPG + + + + Forensic Files + Skirting the Evidence + A woman is abducted and a month later found dead, then a tip leads investigators in the right direction. + Documentary + + + TVPG + + + + Forensic Files + Small Town Terror + How the bombs were made leads investigators in Colorado to find the perpetrator. + Documentary + + + TVPG + + + + Forensic Files + Fresh Heir + DNA profiling reveals clues leading to a killer's identity 20 years later. + Documentary + + + TVPG + + + + Forensic Files + Ticker Tape + A device intended to save lives proves to be the only witness to a mans death. + Documentary + + + TVPG + + + + Forensic Files + Water Hazard + Murderer killed innocent people to get the person he wanted. + Documentary + + + TVPG + + + + Forensic Files + Shell Game + A clue no bigger than a thumbtack leads investigators to a trio of killers. + Documentary + + + TVPG + + + + Forensic Files + Ring Him Up + The disappearance of a college co-ed goes unsolved for 10 years, until new testing sheds a different light. + Documentary + + + TVPG + + + + Forensic Files + Killer Impression + Tipster is found dead after revealing that a woman's death 16 years ago was murder. + Documentary + + + TVPG + + + + Forensic Files + If I Were You + Woman suspected something wrong with her father flew back a thousand miles to find his home empty. + Documentary + + + TVPG + + + + Forensic Files + As the Tide Turns + Forensic science is used to determine if a woman's death was a botched robbery or intentional murder. + Documentary + + + TVPG + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + Nightmare Next Door + Death in Daytona + A female student is shot while on Spring Break in Daytona Beach, Fla. + Documentary + + + TV14 + + + + Nightmare Next Door + Memorial Day Murder + At first thought to be linked to a home invasion, the death of mother-to-be Kelsey Monahon is linked to a trio of suspects which includes Kelsey's husband. + Documentary + + + TV14 + + + + Nightmare Next Door + The Coldest Case + The murder of Christopher Green sends shivers up citizens' spines in the small, snowbound city of Bangor, Mich., and detectives follow the clues down a path to a chilling outcome. + + Dallas White + Alexis Barone + George Gmontana Graham + + Documentary + + + TV14 + + + + Nightmare Next Door + Left for Dead + In Orlando, a mysterious call to the sheriff's office draws investigators to a second floor apartment where a young woman has been brutally beaten. + Documentary + + + TV14 + + + + Nightmare Next Door + Risky Business + In St. Charles, Mo., insurance agent Bob Eidman is found shot to death in his office, leading police to probe his secret life and uncover a slew of murder suspects. + + Vince Eisenson + Tom Gambrill + Donald Imm + + Documentary + + + TV14 + + + + Nightmare Next Door + Daylight Abduction + In Orlando, a woman vanishes in broad daylight, then her naked body is found dumped in the woods a few days later. + + Jeff Ashton + Tony Barber + Jeff Collins + + Documentary + + + TV14 + + + + Forensic Files + Slippery Motives + While at a real estate conference in St. Louis, a man finds his wife drowned in the bathtub in their hotel room. + Documentary + + + TVPG + + + + Forensic Files + Badge of Deceit + A cunning serial rapist who leaves no decisive evidence forces investigators to rely on geographical profiling in their search for an identity; DNA from a cigarette butt may provide the final piece of evidence needed to catch the suspect. + Documentary + + + TVPG + + + + Forensic Files + Dew Process + New evidence including fibers and weather patterns point to a different killer in the 1986 case of a Pennsylvania dentist's murdered wife. + Documentary + + + TVPG + + + + Forensic Files + A Woman Scorned + Insects and a single strand of hair uncover an additional suspect in the killing of a young mother and her baby in Lehigh Valley, Pa. + Documentary + + + TVPG + + + + Forensic Files + A Voice From Beyond + A decomposed body is found in a barrel, and a dilapidated address book may hold the answer, but investigators must find a way to read the pages because the passage of 30 years has turned them blank. + Documentary + + + TVPG + + + + Forensic Files + Burning Ambition + When a policeman's home burns to the ground, he later arrests a man who confesses to arson, but the confession seems dubious. + Documentary + + + TVPG + + + + Forensic Files + Memories + A woman identifies her husband as her attacker, but questions arise 16 years later regarding her recollections. + Documentary + + + TVPG + + + + Forensic Files + Material Evidence + A young girl is found dead, the victim of an apparent sex killer; there are few clues to the killer's identity, but authorities are intrigued by unusual orange fibers embedded in clothing found near the victim. + Documentary + + + TVPG + + + + Black Friday Now - Tarte Cosmetics Premiere + Define your holiday beauty and gift gorgeous with high-perfomance naturals from tarte Cosmetics.Guests: Stephanie Hoover.. + Shopping + + + TVG + + + + Black Friday Now! - Electronic Gifts + Brand name electronics, great values and quality products that are perfect for gift giving. + Shopping + + + TVG + + + + Get Gifty + Exploring how to make holiday gift giving simple, fun, and affordable this season. + Shopping + + + TVG + + + + Get Gifty + Exploring how to make holiday gift giving simple, fun, and affordable this season. + Shopping + + + TVG + + + + Black Friday Now! - HP Electronic Gifts + Electronics and innovative products for the home, work, business or everyday life.Guests: Aaron Berger.. + Shopping + + + TVG + + + + Black Friday Now! - Electronic Gifts + Brand name electronics, great values and quality products that are perfect for gift giving. + Shopping + + + TVG + + + + Black Friday Now! - Electronic Gifts + Brand name electronics, great values and quality products that are perfect for gift giving. + Shopping + + + TVG + + + + Black Friday Now! - HP Electronic Gifts + Electronics and innovative products for the home, work, business or everyday life. + Shopping + + + TVG + + + + Black Friday Now! - HP Electronic Gifts + Electronics and innovative products for the home, work, business or everyday life. + Shopping + + + TVG + + + + Black Friday Now! - HP Electronic Gifts + Electronics and innovative products for the home, work, business or everyday life. + Shopping + + + TVG + + + + Black Friday Now! - HP Electronic Gifts + Electronics and innovative products for the home, work, business or everyday life. + Shopping + + + TVG + + + + Black Friday Now! - HP Electronic Gifts + Electronics and innovative products for the home, work, business or everyday life. + Shopping + + + TVG + + + + Black Friday Now! - HP Electronic Gifts + Electronics and innovative products for the home, work, business or everyday life. + Shopping + + + TVG + + + + Gifts for the Gal With Val - Black Friday Now! + HSN host Valerie Stup has a keen eye for gifts for all different kinds of gals. + Shopping + + + TVG + + + + Gifts for the Gal With Val - Black Friday Now! + HSN host Valerie Stup has a keen eye for gifts for all different kinds of gals. + Shopping + + + TVG + + + + Black Friday Now! - Perlier Beauty Gifts + Bath and skin care products made with ingredients from Italian botanical gardens.Guests: Prince Scipione Borghese.. + Shopping + + + TVG + + + + Black Friday Now! - HP Electronic Gifts + Electronics and innovative products for the home, work, business or everyday life.Guests: Aaron Berger.. + Shopping + + + TVG + + + + Black Friday Now! - Great Gifts + A variety of great gifts and something for everyone on the gift list this holiday season. + Shopping + + + TVG + + + + Black Friday Now! - HP Electronic Gifts + Electronics and innovative products for the home, work, business or everyday life.Guests: Aaron Berger.. + Shopping + + + TVG + + + + Black Friday Now! - Mine Finds by Jay King Jewelry Gifts + Celebrate the Black Friday savings with unique jewelry gifts she'll love from Jay King. + Shopping + + + TVG + + + + Black Friday Now! - Mine Finds by Jay King Jewelry Gifts + Celebrate the Black Friday savings with unique jewelry gifts she'll love from Jay King. + Shopping + + + TVG + + + + Black Friday Now! - HP Electronic Gifts + Electronics and innovative products for the home, work, business or everyday life.Guests: Aaron Berger.. + Shopping + + + TVG + + + + Black Friday Now - Warm & Cozy Gifts + Gift cozy with all they need for the ultimate winter warm-up. + Shopping + + + TVG + + + + Black Friday Now! - Gifts Under $50 + Celebrate the Black Friday savings now, with must-have gifts Under $50 they'll love. + Shopping + + + TVG + + + + Black Friday Now! - HP Electronic Gifts + Electronics and innovative products for the home, work, business or everyday life.Guests: Aaron Berger.. + Shopping + + + TVG + + + + Black Friday Now! - Perlier Beauty Gifts + Bath and skin care products made with ingredients from Italian botanical gardens.Guests: Prince Scipione Borghese.. + Shopping + + + TVG + + + + Black Friday Now! - HP Electronic Gifts + Electronics and innovative products for the home, work, business or everyday life.Guests: Aaron Berger.. + Shopping + + + TVG + + + + Black Friday Now! - Mine Finds by Jay King Jewelry Gifts + Celebrate the Black Friday savings with unique jewelry gifts she'll love from Jay King. + Shopping + + + TVG + + + + Black Friday Now! - Mine Finds by Jay King Jewelry Gifts + Celebrate the Black Friday savings with unique jewelry gifts she'll love from Jay King. + Shopping + + + TVG + + + + Deck the Halls Under $50 + An extensive collection of holiday decor and gifts; decorations, gifts and entertaining pieces that bring a little magic into the home for the holiday season. + Shopping + + + TVG + + + + Deck the Halls - Mr. Christmas + An extensive collection of holiday decor and gifts; decorations, gifts and entertaining pieces that bring a little magic into the home for the holiday season. + Shopping + + + TVG + + + + Deck the Halls Under $50 + An extensive collection of holiday decor and gifts; decorations, gifts and entertaining pieces that bring a little magic into the home for the holiday season. + Shopping + + + TVG + + + + Deck the Halls Under $50 + An extensive collection of holiday decor and gifts; decorations, gifts and entertaining pieces that bring a little magic into the home for the holiday season. + Shopping + + + TVG + + + + Deck the Halls Under $50 + An extensive collection of holiday decor and gifts; decorations, gifts and entertaining pieces that bring a little magic into the home for the holiday season. + Shopping + + + TVG + + + + Deck the Halls Under $50 + An extensive collection of holiday decor and gifts; decorations, gifts and entertaining pieces that bring a little magic into the home for the holiday season. + Shopping + + + TVG + + + + Deck the Halls Under $50 + An extensive collection of holiday decor and gifts; decorations, gifts and entertaining pieces that bring a little magic into the home for the holiday season. + Shopping + + + TVG + + + + HSN Today With Tina & Ty - Morning Gifts + The hottest items, new brands, amazing events, and premieres with Tina & Ty. + Shopping + + + TVG + + + + HSN Today With Tina & Ty - Morning Gifts + The hottest items, new brands, amazing events, and premieres with Tina & Ty. + Shopping + + + TVG + + + + Deck the Halls with Alyce + Updating the holiday decor with holiday planning expert, Alyce. + Shopping + + + TVG + + + + Deck the Halls with Alyce + Updating the holiday decor with holiday planning expert, Alyce. + Shopping + + + TVG + + + + Deck the Halls with Alyce + Updating the holiday decor with holiday planning expert, Alyce. + Shopping + + + TVG + + + + Deck the Halls - Mr. Christmas + An extensive collection of holiday decor and gifts; decorations, gifts and entertaining pieces that bring a little magic into the home for the holiday season. + Shopping + + + TVG + + + + Deck the Halls - August & Leo Holiday Home by Giuliana Rancic + A chic holiday collection of ornaments and home decor by Giuliana Rancic. + Shopping + + + TVG + + + + Deck the Halls Under $50 + An extensive collection of holiday decor and gifts; decorations, gifts and entertaining pieces that bring a little magic into the home for the holiday season. + Shopping + + + TVG + + + + Deck the Halls - Norman Rockwell Holiday Decor Premiere + Shopping + + + TVG + + + + Deck the Halls + Get and gift our best deals on the festive decor and entertaining must-haves and bring the magic home.Guests: Andrea Moorehead, Ellen Bunner.. + Shopping + Christmas + + + TVG + + + + Deck the Halls - Winter Lane Holiday Decor + It's the most wonderful time of the year to shop an extensive collection of holiday decor and gifts. Let the countdown begin and find the perfect decorations, gifts and entertaining pieces to bring a little magic into the home this holiday season. + Shopping + + + TVG + + + + Deck the Halls - August & Leo Holiday Home by Giuliana Rancic + A chic holiday collection of ornaments and home decor by Giuliana Rancic. + Shopping + + + TVG + + + + Deck the Halls + Get and gift our best deals on the festive decor and entertaining must-haves and bring the magic home.Guests: Ellen Bunner, Erik Terkelsen, Merril Hermanson.. + Shopping + Christmas + + + TVG + + + + Deck the Halls - Mr. Christmas 90th Anniversary Edition + Guests: Merril Hermanson.. + Shopping + + + TVG + + + + Adam's Open House - Deck the Halls + Get your home holiday-ready with Adam. + Shopping + + + TVG + + + + Adam's Open House - Deck the Halls + Get your home holiday-ready with Adam. + Shopping + + + TVG + + + + Adam's Open House - Deck the Halls + Get your home holiday-ready with Adam. + Shopping + + + TVG + + + + Holiday Kitchen - Kalorik With Chef Jamie Gwen + Shopping + + + TVG + + + + KitchenHQ Holiday Favorites With Chef Shahir + Shopping + + + TVG + + + + Holiday Kitchen - Kalorik With Chef Jamie Gwen + Shopping + + + TVG + + + + Holiday Kitchen - Kalorik With Chef Jamie Gwen + Shopping + + + TVG + + + + Holiday Kitchen - Kalorik With Chef Jamie Gwen + Shopping + + + TVG + + + + Holiday Kitchen - Kalorik With Chef Jamie Gwen + Shopping + + + TVG + + + + Holiday Kitchen - Kalorik With Chef Jamie Gwen + Shopping + + + TVG + + + + HSN Today With Tina & Ty - Holiday Brunch + Shopping + + + TVG + + + + HSN Today With Tina & Ty - Holiday Brunch + Shopping + + + TVG + + + + Gifts For The Chef Under $50 + Gift ideas for the ones on your holiday list that love to cook, tinker in the kitchen and under $50. + Shopping + + + TVG + + + + Holiday Kitchen - Kalorik With Chef Jamie Gwen + Shopping + + + TVG + + + + KitchenHQ Holiday Favorites With Chef Shahir + Shopping + + + TVG + + + + Gifts For The Chef Under $50 + Gift ideas for the ones on your holiday list that love to cook, tinker in the kitchen and under $50. + Shopping + + + TVG + + + + Chef Emeril Lagasse Holiday Kitchen + Shopping + + + TVG + + + + Holiday Kitchen - Kalorik With Chef Jamie Gwen + Shopping + + + TVG + + + + Holiday Kitchen - Kalorik With Chef Jamie Gwen + Shopping + + + TVG + + + + Now That's Tasty! With Guy - Mama DePandi Gourmet Italian Food Premiere + Shopping + + + TVG + + + + Now That's Tasty! with Guy + Guys' delicious food finds will have people eating well and satisfy every craving. + Shopping + + + TVG + + + + Chef Curtis Stone - Live From Four Stones Farm + Chef Curtis Stone's collection of kitchenware that simplifies prep and makes cooking fun. + Shopping + + + TVG + + + + Chef Jet Tila Holiday Kitchen + Shopping + + + TVG + + + + Holiday Kitchen - Kalorik With Chef Jamie Gwen + Shopping + + + TVG + + + + Chef Curtis Stone - Live From Four Stones Farm + Chef Curtis Stone's collection of kitchenware that simplifies prep and makes cooking fun. + Shopping + + + TVG + + + + KitchenHQ Holiday Favorites With Chef Shahir + Shopping + + + TVG + + + + HSN Cooks - Holiday Edition Finale + Shopping + + + TVG + + + + Nakery Beauty Gifts - All On Free Shipping + Smooth, glowing skin can be achieved with clean bath and body care courtesy of Nakery. + Shopping + + + TVG + + + + Nakery Beauty Gifts - All On Free Shipping + Smooth, glowing skin can be achieved with clean bath and body care courtesy of Nakery. + Shopping + + + TVG + + + + Nakery Beauty Gifts - All On Free Shipping + Smooth, glowing skin can be achieved with clean bath and body care courtesy of Nakery. + Shopping + + + TVG + + + + Nakery Beauty Gifts - All On Free Shipping + Smooth, glowing skin can be achieved with clean bath and body care courtesy of Nakery. + Shopping + + + TVG + + + + Nakery Beauty Gifts - All On Free Shipping + Smooth, glowing skin can be achieved with clean bath and body care courtesy of Nakery. + Shopping + + + TVG + + + + Nakery Beauty Gifts - All On Free Shipping + Smooth, glowing skin can be achieved with clean bath and body care courtesy of Nakery. + Shopping + + + TVG + + + + Nakery Beauty Gifts - All On Free Shipping + Smooth, glowing skin can be achieved with clean bath and body care courtesy of Nakery. + Shopping + + + TVG + + + + HSN Today With Tina & Ty - Morning Gifts + The hottest items, new brands, amazing events, and premieres with Tina & Ty. + Shopping + + + TVG + + + + HSN Today With Tina & Ty - Morning Gifts + The hottest items, new brands, amazing events, and premieres with Tina & Ty. + Shopping + + + TVG + + + + Wake Up Beautiful With Valerie - Gifts Under $50 + Shopping + + + TVG + + + + Wake Up Beautiful With Valerie - Gifts Under $50 + Shopping + + + TVG + + + + Electronic Gift Connection + Innovative, brand-name smartphones, computers, tablets, home theater systems and more. + Shopping + + + TVG + + + + Nakery Beauty Gifts - All On Free Shipping + Smooth, glowing skin can be achieved with clean bath and body care courtesy of Nakery. + Shopping + + + TVG + + + + Nakery Beauty Gifts - All On Free Shipping + Smooth, glowing skin can be achieved with clean bath and body care courtesy of Nakery. + Shopping + + + TVG + + + + Colleen Lopez Gemstone Jewelry Gifts + An effortlessly elegant and sophisticated jewelry collection from Colleen Lopez. + Shopping + + + TVG + + + + Colleen Lopez Gemstone Jewelry Gifts + An effortlessly elegant and sophisticated jewelry collection from Colleen Lopez. + Shopping + + + TVG + + + + Electronic Gift Connection + Innovative, brand-name smartphones, computers, tablets, home theater systems and more. + Shopping + + + TVG + + + + Nakery Beauty Gifts - All On Free Shipping + Smooth, glowing skin can be achieved with clean bath and body care courtesy of Nakery. + Shopping + + + TVG + + + + Nakery Beauty Gifts - All On Free Shipping + Smooth, glowing skin can be achieved with clean bath and body care courtesy of Nakery. + Shopping + + + TVG + + + + Discover HSN2 - First Look With HP Computers + How HP Electronics innovation can help. + Shopping + + + TVG + + + + Coin Collector Gifts + A robust selection of limited edition, graded coins for both beginners and seasoned collectors. + Shopping + + + TVG + + + + Discover HSN2 - First Look With HP Computers + How HP Electronics innovation can help. + Shopping + + + TVG + + + + Best of HSN2 Gifts + A collection of favorites. + Shopping + + + TVG + + + + Weekend Beauty Report With Amy Morrison + Discovering beauty with host Amy Morrison, with tips and trends on hair, makeup, skin care and more. + Shopping + + + TVG + + + + Best of HSN2 Gifts + A collection of favorites. + Shopping + + + TVG + + + + Best of HSN2 Gifts + A collection of favorites. + Shopping + + + TVG + + + + Gifts for the Guy With Guy + Guy Yovan has a keen eye for gifts for guys. + Shopping + + + TVG + + + + Black Friday Deals + Turn-up the merry feelings with the lowest prices of the season and sleigh holiday shopping. + Shopping + + + TVG + + + + Best of HSN2 Gifts + A collection of favorites. + Shopping + + + TVG + + + + Black Friday Deals + Turn-up the merry feelings with the lowest prices of the season and sleigh holiday shopping. + Shopping + + + TVG + + + + Weekend Beauty Report With Amy Morrison + Discovering beauty with host Amy Morrison, with tips and trends on hair, makeup, skin care and more. + Shopping + + + TVG + + + + Gifts for the Guy With Guy + Guy Yovan has a keen eye for gifts for guys. + Shopping + + + TVG + + + + Black Friday Now! - HP Electronic Gifts + Celebrating Black Friday with savings on popular electronics from HP. + Shopping + + + TVG + + + + Best of HSN2 Gifts + A collection of favorites. + Shopping + + + TVG + + + + Black Friday Now! - HP Electronic Gifts + Celebrating Black Friday with savings on popular electronics from HP. + Shopping + + + TVG + + + + Black Friday Deals + Turn-up the merry feelings with the lowest prices of the season and sleigh holiday shopping. + Shopping + + + TVG + + + + Black Friday Now! - HP Electronic Gifts + Celebrating Black Friday with savings on popular electronics from HP. + Shopping + + + TVG + + + + Weekend Beauty Report With Amy Morrison + Discovering beauty with host Amy Morrison, with tips and trends on hair, makeup, skin care and more. + Shopping + + + TVG + + + + Black Friday Now! - HP Electronic Gifts + Celebrating Black Friday with savings on popular electronics from HP. + Shopping + + + TVG + + + + Black Friday Now! - HP Electronic Gifts + Celebrating Black Friday with savings on popular electronics from HP. + Shopping + + + TVG + + + + Black Friday Deals + Turn-up the merry feelings with the lowest prices of the season and sleigh holiday shopping. + Shopping + + + TVG + + + + Black Friday Now! - HP Electronic Gifts + Celebrating Black Friday with savings on popular electronics from HP. + Shopping + + + TVG + + + + Nakery Beauty - All on Free Shipping + Getting glowing skin with clean bath and body care by Nakery. + Shopping + + + TVG + + + + Weekend Beauty Report With Amy Morrison + Discovering beauty with host Amy Morrison, with tips and trends on hair, makeup, skin care and more. + Shopping + + + TVG + + + + Black Friday Now! - HP Electronic Gifts + Celebrating Black Friday with savings on popular electronics from HP. + Shopping + + + TVG + + + + Nakery Beauty - All on Free Shipping + Getting glowing skin with clean bath and body care by Nakery. + Shopping + + + TVG + + + + Black Friday Now! - HP Electronic Gifts + Celebrating Black Friday with savings on popular electronics from HP. + Shopping + + + TVG + + + + Black Friday Deals + Turn-up the merry feelings with the lowest prices of the season and sleigh holiday shopping. + Shopping + + + TVG + + + + Daily Deals & Top Gifts + Top deals of the day from Monday through Friday, all month long. + Shopping + + + TVG + + + + Electronic Gift Connection + Great electronic gifts for everyone. + Shopping + + + TVG + + + + Beauty Gifts + Giving gorgeously with beauty gift sets, fragrance, haircare, and unique stocking stuffers; finding great beauty gifts for everyone, including gift sets in make-up and skincare, nails and more from all the favorite beauty brands. + Shopping + + + TVG + + + + Gifts for the Family + One stop shopping for the family. + Shopping + + + TVG + + + + Daily Deals & Top Gifts + Top deals of the day from Monday through Friday, all month long. + Shopping + + + TVG + + + + Electronic Gift Connection + Great electronic gifts for everyone. + Shopping + + + TVG + + + + Beauty Gifts + Giving gorgeously with beauty gift sets, fragrance, haircare, and unique stocking stuffers; finding great beauty gifts for everyone, including gift sets in make-up and skincare, nails and more from all the favorite beauty brands. + Shopping + + + TVG + + + + Deck the Halls Under $50 + It's the most wonderful time of the year to shop an extensive collection of holiday decor and gifts. Let the countdown begin and find the perfect decorations, gifts and entertaining pieces to bring a little magic into the home this holiday season. + Shopping + + + TVG + + + + Daily Deals & Top Gifts + Top deals of the day from Monday through Friday, all month long. + Shopping + + + TVG + + + + Deck the Halls Under $50 + It's the most wonderful time of the year to shop an extensive collection of holiday decor and gifts. Let the countdown begin and find the perfect decorations, gifts and entertaining pieces to bring a little magic into the home this holiday season. + Shopping + + + TVG + + + + Gifts for the Family + One stop shopping for the family. + Shopping + + + TVG + + + + Electronic Gift Connection + Great electronic gifts for everyone. + Shopping + + + TVG + + + + Deck the Halls Under $50 + It's the most wonderful time of the year to shop an extensive collection of holiday decor and gifts. Let the countdown begin and find the perfect decorations, gifts and entertaining pieces to bring a little magic into the home this holiday season. + Shopping + + + TVG + + + + Deck the Halls Under $50 + It's the most wonderful time of the year to shop an extensive collection of holiday decor and gifts. Let the countdown begin and find the perfect decorations, gifts and entertaining pieces to bring a little magic into the home this holiday season. + Shopping + + + TVG + + + + Beauty Gifts + Giving gorgeously with beauty gift sets, fragrance, haircare, and unique stocking stuffers; finding great beauty gifts for everyone, including gift sets in make-up and skincare, nails and more from all the favorite beauty brands. + Shopping + + + TVG + + + + Daily Deals & Top Gifts + Top deals of the day from Monday through Friday, all month long. + Shopping + + + TVG + + + + Gifts for the Family + One stop shopping for the family. + Shopping + + + TVG + + + + Deck the Halls Under $50 + It's the most wonderful time of the year to shop an extensive collection of holiday decor and gifts. Let the countdown begin and find the perfect decorations, gifts and entertaining pieces to bring a little magic into the home this holiday season. + Shopping + + + TVG + + + + Deck the Halls Under $50 + It's the most wonderful time of the year to shop an extensive collection of holiday decor and gifts. Let the countdown begin and find the perfect decorations, gifts and entertaining pieces to bring a little magic into the home this holiday season. + Shopping + + + TVG + + + + Electronic Gift Connection + Great electronic gifts for everyone. + Shopping + + + TVG + + + + Gifts for the Family + One stop shopping for the family. + Shopping + + + TVG + + + + Monday Night Beauty + Fresh finds in makeup, skin care, tools, bath and body, and more. + Shopping + + + TVG + + + + Deck the Halls Under $50 + It's the most wonderful time of the year to shop an extensive collection of holiday decor and gifts. Let the countdown begin and find the perfect decorations, gifts and entertaining pieces to bring a little magic into the home this holiday season. + Shopping + + + TVG + + + + Daily Deals & Top Gifts + Top deals of the day from Monday through Friday, all month long. + Shopping + + + TVG + + + + Gifts for Her + A collection of great presents for the ladies; whether she likes to stay looking young with beauty products or apprciates the lastest gadgets, there's plenty of items to complete anyone's shopping list. + Shopping + + + TVG + + + + Holiday Home Solutions + Products that solve a problem around the home. + Shopping + + + TVG + + + + Best of HSN2 Gifts + A collection of favorites. + Shopping + + + TVG + + + + Tech Around the Tree + Featured electronic gifts for the home and everyone on the holiday list. + Shopping + + + TVG + + + + Gifts for Her + A collection of great presents for the ladies; whether she likes to stay looking young with beauty products or apprciates the lastest gadgets, there's plenty of items to complete anyone's shopping list. + Shopping + + + TVG + + + + Best of HSN2 Gifts + A collection of favorites. + Shopping + + + TVG + + + + Tech Around the Tree + Featured electronic gifts for the home and everyone on the holiday list. + Shopping + + + TVG + + + + Holiday Kitchen - Kalorik With Chef Jamie Gwen + Shopping + + + TVG + + + + Holiday Home Solutions + Products that solve a problem around the home. + Shopping + + + TVG + + + + Holiday Kitchen - Kalorik With Chef Jamie Gwen + Shopping + + + TVG + + + + Best of HSN2 Gifts + A collection of favorites. + Shopping + + + TVG + + + + Holiday Kitchen - Kalorik With Chef Jamie Gwen + Shopping + + + TVG + + + + Holiday Home Solutions + Products that solve a problem around the home. + Shopping + + + TVG + + + + Holiday Kitchen - Kalorik With Chef Jamie Gwen + Shopping + + + TVG + + + + Gifts for Her + A collection of great presents for the ladies; whether she likes to stay looking young with beauty products or apprciates the lastest gadgets, there's plenty of items to complete anyone's shopping list. + Shopping + + + TVG + + + + Tech Around the Tree + Featured electronic gifts for the home and everyone on the holiday list. + Shopping + + + TVG + + + + Holiday Kitchen - Kalorik With Chef Jamie Gwen + Shopping + + + TVG + + + + Best of HSN2 Gifts + A collection of favorites. + Shopping + + + TVG + + + + Holiday Kitchen - Kalorik With Chef Jamie Gwen + Shopping + + + TVG + + + + Holiday Home Solutions + Products that solve a problem around the home. + Shopping + + + TVG + + + + Gifts for Her + A collection of great presents for the ladies; whether she likes to stay looking young with beauty products or apprciates the lastest gadgets, there's plenty of items to complete anyone's shopping list. + Shopping + + + TVG + + + + Holiday Kitchen - Kalorik With Chef Jamie Gwen + Shopping + + + TVG + + + + Best of HSN2 Gifts + A collection of favorites. + Shopping + + + TVG + + + + Tech Around the Tree + Featured electronic gifts for the home and everyone on the holiday list. + Shopping + + + TVG + + + + Gift Shopping with Amy & Adam + A guide to holiday shopping with aficionados Amy and Adam.Guests: Stephanie Metkus.. + Shopping + + + TVG + + + + Daily Deals & Top Gifts + Top deals of the day from Monday through Friday, all month long. + Shopping + + + TVG + + + + Gifts for Her + A collection of great presents for the ladies; whether she likes to stay looking young with beauty products or apprciates the lastest gadgets, there's plenty of items to complete anyone's shopping list. + Shopping + + + TVG + + + + Best of HSN2 Gifts + A collection of favorites. + Shopping + + + TVG + + + + Gifts Under $50 + A variety of gifts, all under $50, for everyone on the gift list this season. + Shopping + + + TVG + + + + Daily Deals & Top Gifts + Top deals of the day from Monday through Friday, all month long. + Shopping + + + TVG + + + + Gift Shopping with Amy & Adam + A guide to holiday shopping with aficionados Amy and Adam.Guests: Stephanie Metkus.. + Shopping + + + TVG + + + + Nakery Beauty Gifts - All On Free Shipping + Give the gift of glowing skin with clean bath & body care by Nakery - all with FREE shipping. + Shopping + + + TVG + + + + Daily Deals & Top Gifts + Top deals of the day from Monday through Friday, all month long. + Shopping + + + TVG + + + + Gifts for Her + A collection of great presents for the ladies; whether she likes to stay looking young with beauty products or apprciates the lastest gadgets, there's plenty of items to complete anyone's shopping list. + Shopping + + + TVG + + + + Best of HSN2 Gifts + A collection of favorites. + Shopping + + + TVG + + + + Nakery Beauty Gifts - All On Free Shipping + Give the gift of glowing skin with clean bath & body care by Nakery - all with FREE shipping. + Shopping + + + TVG + + + + Gifts Under $50 + A variety of gifts, all under $50, for everyone on the gift list this season. + Shopping + + + TVG + + + + Gift Shopping with Amy & Adam + A guide to holiday shopping with aficionados Amy and Adam.Guests: Stephanie Metkus.. + Shopping + + + TVG + + + + Nakery Beauty Gifts - All On Free Shipping + Give the gift of glowing skin with clean bath & body care by Nakery - all with FREE shipping. + Shopping + + + TVG + + + + Nakery Beauty Gifts - All On Free Shipping + Give the gift of glowing skin with clean bath & body care by Nakery - all with FREE shipping. + Shopping + + + TVG + + + + Daily Deals & Top Gifts + Top deals of the day from Monday through Friday, all month long. + Shopping + + + TVG + + + + Gifts Under $50 + A variety of gifts, all under $50, for everyone on the gift list this season. + Shopping + + + TVG + + + + Best of HSN2 Gifts + A collection of favorites. + Shopping + + + TVG + + + + Flipping for Christmas + It's almost Christmas when busy realtor Abigail agrees to help her sister with the simple flip of a recently inherited home. Unfortunately, co-beneficiary Bo has other plans in mind. + + Ashley Newbrough + Marcus Rosner + Natalie Lisinska + + 2023 + Movies + Christmas + Drama + + + TVG + + + + Never Been Chris'd + Home for the holidays, BFFs Naomi and Liz reconnect with high school crush Chris Silver. A complex love triangle forms, forcing them to take stock of their lives and find the value of friendship. + + Janel Parrish + Pascal Lamothe-Kipnes + Tyler Hynes + + 2023 + Movies + Christmas + Romance + + + TVG + + + + The Sweetest Christmas + A struggling pastry chef is thrilled to learn that she has made it to the finals of the American Gingerbread Competition, but distractions in her love life threaten to derail her dreams of taking home the grand prize. + + Lacey Chabert + Lea Coco + Jonathan Adams + + 2017 + Movies + Christmas + Romance + + + TVG + + + + The Sweetest Christmas + A struggling pastry chef is thrilled to learn that she has made it to the finals of the American Gingerbread Competition, but distractions in her love life threaten to derail her dreams of taking home the grand prize. + + Lacey Chabert + Lea Coco + Jonathan Adams + + 2017 + Movies + Christmas + Romance + + + TVG + + + + On the 12th Date of Christmas + Two seemingly incompatible game designers in Chicago team up to create a romantic city-wide scavenger hunt to promote a hotel chain. + + Mallory Jansen + Tyler Hynes + Zoe Fish + + 2020 + Movies + Christmas + Romance + + + TVG + + + + The Nine Lives of Christmas + As the Christmas holiday draws near, a veterinary student (Kimberly Sustad) and a stray cat challenge a fireman's (Brandon Routh) commitment to life as a bachelor. + + Brandon Routh + Kimberley Sustad + Gregory Harrison + + 2014 + Movies + Christmas + Children + + + TVG + + + + Write Before Christmas + Jessica sends Christmas cards to five people who have greatly impacted her life. + + Torrey DeVitto + Chad Michael Murray + Lolita Davidovich + + 2019 + Movies + Christmas + Romance + + + TVG + + + + Ghosts of Christmas Always + Katherine, a Ghost of Christmas Present, must help one soul rediscover his Christmas spirit, but this year has something unusual in store. + + Kim Matula + Ian Harding + Beth Leavel + + 2022 + Movies + Christmas + Fantasy + + + TVG + + + + Next Stop, Christmas + Angie wonders what life would be like if she had married an ex who became famous. When she finds herself magically transported into the past, Angie has the chance to relive that Christmas and learn what (and who) is truly important to her. + + Lyndsy Fonseca + Chandler Massey + Lea Thompson + + 2021 + Movies + Christmas + Fantasy + + + TVG + + + + Let It Snow + An executive examines her company's new property and prepares a presentation to transform the rustic lodge into a new hot spot. She tries to ignore the lodge's festive celebrations during her stay, but an unexpected romance changes her heart. + + Candace Cameron Bure + Jesse Hutch + Alan Thicke + + 2013 + Movies + Christmas + Drama + + + TVG + + + + Under the Christmas Sky + Sparks fly between astronaut Kat and by-the-book David when they work on a planetarium exhibit that's opening right before Christmas. + + Jessica Parker Kennedy + Ryan Paevey + Andrew Bushell + + 2023 + Movies + Christmas + Romance + + + TVG + + + + My Southern Family Christmas + Under the guise of a journalist, Campbell has a chance to get to know her biological father for the first time -- without him ever knowing who she really is. + + Jaicy Elliot + Ryan Rottman + Moira Kelly + + 2022 + Movies + Christmas + Drama + + + TVG + + + + Christmas by Design + A fashion designer learns what's most important in life when she joins a Christmas challenge to create a new holiday-themed collection. + + Rebecca Dalton + Jonathan Keltz + David Pinard + + 2023 + Movies + Christmas + Romance + + + TVG + + + + A Fabled Holiday + Talia and her childhood best friend unexpectedly reunite in a curiously familiar-looking town that's full of Christmas spirit. + + Brooke D'Orsay + Ryan Paevey + Daphne Hoskins + + 2022 + Movies + Christmas + Romance + + + TVG + + + + Never Been Chris'd + Home for the holidays, BFFs Naomi and Liz reconnect with high school crush Chris Silver. A complex love triangle forms, forcing them to take stock of their lives and find the value of friendship. + + Janel Parrish + Pascal Lamothe-Kipnes + Tyler Hynes + + 2023 + Movies + Christmas + Romance + + + TVG + + + + The Santa Summit + Jordin returns home to regroup after setbacks, and attends the town's annual holiday celebration with friends. She bonds with Liam, but doesn't get his name before they're separated in a sea of Santas. + + Hunter King + Benjamin Hollingsworth + Amy Groening + + 2023 + Movies + Christmas + Romance + + + TVG + + + + The Santa Summit + Jordin returns home to regroup after setbacks, and attends the town's annual holiday celebration with friends. She bonds with Liam, but doesn't get his name before they're separated in a sea of Santas. + + Hunter King + Benjamin Hollingsworth + Amy Groening + + 2023 + Movies + Christmas + Romance + + + TVG + + + + Haul Out the Holly + Emily comes home to visit her parents, only to discover they're leaving for a trip of their own. While staying at their house for the holidays, Emily meets members of the community who want her to join in the neighborhood's Christmas festivities. + + Lacey Chabert + Wes Brown + Stephen Tobolowsky + + 2022 + Movies + Christmas + Comedy + + + TVG + + + + You, Me & the Christmas Trees + An arborist falls in love with a farmer as she tries to save his trees before the town tree lighting. + + Danica McKellar + Benjamin Ayres + Jason Hervey + + 2021 + Movies + Christmas + Romance + + + TVG + + + + A Christmas Detour + Two travelers become linked when a snowstorm grounds their flight in Buffalo. Paige desperately needs to find a way to New York City to meet her fiance's parents, and it's up to Dylan, a fellow passenger and a guy she can't stand, to get her there. + + Candace Cameron Bure + Paul Greene + Sarah Strange + + 2015 + Movies + Christmas + Romance + + + TVG + + + + The Christmas House + Working through some difficult decisions, a mother and father summon their two grown sons home for the holidays. + + Robert Buckley + Ana Ayora + Treat Williams + + 2020 + Movies + Christmas + Romance + + + TVG + + + + A Very Merry Mix-Up + A woman plans to meet her future in-laws at Christmas and, through a serendipitous series of events, spends the holiday with a warm and caring family whose son catches her eye. + + Alicia Witt + Mark Wiebe + Scott Gibson + + 2013 + Movies + Christmas + Romance + + + TVG + + + + Double Holiday + Rebecca must throw the company holiday party with her office rival, Chris. It coincides with Hanukkah, so she must juggle her work, family traditions, and nemesis to make the party a success. + + Carly Pope + Kristoffer Polaha + Laura Cilevitz + + 2019 + Movies + Christmas + Romance + + + TVG + + + + The Mistletoe Secret + Aria hopes being selected for Sterling Masters' Big Holiday Adventure will save Christmas in Midway. Little does she know that Alex Bartlett is the voice behind Sterling Masters. + + Kellie Pickler + Tyler Hynes + Christopher Russell + + 2019 + Movies + Romance + + + TVG + + + + Snow Bride + A tabloid reporter races to find juicy gossip on a prominent political family. She ends up spending the week before Christmas with the family and falls for one of their sons. + + Katrina Law + Jordan Belfi + Susie Abromeit + + 2013 + Movies + Christmas + Drama + + + TVG + + + + In Merry Measure + When pop star Darcy returns home to spend Christmas with her sister and niece, she unexpectedly finds herself coaching the high school choir with her onetime rival, Adam. + + Patti Murin + Brendan Penny + Jennifer Robertson + + 2022 + Movies + Christmas + Romance + + + TVG + + + + Christmas at Castle Hart + Brooke Bennett goes to Ireland during Christmastime to search for her Irish roots. Mistaken for an elite event planner, she's soon hired to host an epic Christmas party at a nobleman's castle. + + Lacey Chabert + Stuart Townsend + Ali Hardiman + + 2021 + Movies + Christmas + Romance + + + TVG + + + + Picture a Perfect Christmas + A photographer returns home to take care of her grandmother and gets involved with helping a neighbor look after his young nephew. + + Merritt Patterson + Jon Cor + Luke Roessler + + 2019 + Movies + Christmas + Romance + + + TVG + + + + Pride, Prejudice and Mistletoe + When Darcy returns to her hometown for Christmas, and she reconnects with Luke, a former rival, they must plan a charity event together. As she spends time with her family and Luke, she starts to realize what matters most in life. + + Lacey Chabert + Brendan Penny + Sherry Miller + + 2018 + Movies + Christmas + Romance + + + TVG + + + + Christmas at the Golden Dragon + When Romy and Rick's parents surprise them with news that they'll be closing their decades-old Chinese restaurant, the siblings soon find themselves reevaluating their futures. + + Kara Wang + Osric Chau + Sara Canning + + 2022 + Movies + Christmas + Drama + + + TVG + + + + Christmas at the Plaza + When historian Jessica is hired to create the Plaza's Christmas display, she finds more than facts while teaming up with handsome decorator Nick to bring the display to life. + + Elizabeth Henstridge + Ryan Paevey + Bruce Davison + + 2019 + Movies + Christmas + Romance + + + TVG + + + + A Christmas Together With You + Planning on spending the holidays alone, Megan and her father figure, Frank, go on a road trip to find his first true love. + + Laura Vandervoort + Niall Matter + Harry Lennix + + 2021 + Movies + Christmas + Romance + + + TVG + + + + A Dickens of a Holiday! + To mark the 100th anniversary of a Victorian festival, Cassie invites movie star and former high school classmate Jake to play Scrooge in. + + Brooke D'Orsay + Kristoffer Polaha + Max Archibald + + 2021 + Movies + Christmas + Romance + + + TVG + + + + Undercover Holiday + Returning home for the holidays, pop star Jaylen tells her protective family that Matt is her new beau, when in reality, he's her overzealous security guard. + + Noemí González + Stephen Huszar + Ann Pirvu + + 2022 + Movies + Christmas + Romance + + + TVG + + + + The Nine Kittens of Christmas + Cat lovers Zachary and Marilee are thrown back together at Christmastime when they're tasked with finding homes for a litter of adorable kittens. + + Kimberley Sustad + Brandon Routh + Gregory Harrison + + 2021 + Movies + Christmas + Romance + + + TVG + + + + Christmas Wishes & Mistletoe Kisses + Weeks before Christmas, an interior designer is hired to decorate the estate of a wealthy businessman. + + Jill Wagner + Matthew Davis + Donna Mills + + 2019 + Movies + Christmas + Romance + + + TVG + + + + A Royal Corgi Christmas + The prince's Christmas gift for his mother, a corgi puppy, turns into a disaster when the dog misbehaves constantly. He turns to an American dog trainer for assistance and sparks begin to fly. + + Hunter King + Jordan Renzo + Frank Smith + + 2022 + Movies + Christmas + Romance + + + TVG + + + + Christmas Waltz + A woman makes an unexpected connection with her dance instructor after her storybook Christmas wedding is canceled. + + Lacey Chabert + Will Kemp + Katrina Reynolds + + 2020 + Movies + Christmas + Romance + + + TVG + + + + Lights, Camera, Christmas! + A woman signs on to be a costume designer for a movie that's shooting in he hometown. While rediscovering her passion for the craft, she winds up falling for the film's famous leading man. + + Kimberley Sustad + John Brotherton + Laura Soltis + + 2022 + Movies + Christmas + Romance + + + TVG + + + + A Royal Christmas Crush + Ava accepts the opportunity of a lifetime to work at the Royal Ice Hotel, which leads to a surprise whirlwind romance with the most important guest of all, the prince himself. + + Katie Cassidy + Stephen Huszar + Angela Besharah + + 2023 + Movies + Christmas + Romance + + + TVG + + + + Crown for Christmas + After getting fired from her job as a maid at a ritzy New York City hotel, a woman accepts a temporary job as governess to a young girl who is part of a powerful European family. + + Danica McKellar + Rupert Penry-Jones + Ellie Botterill + + 2015 + Movies + Christmas + Romance + + + TVG + + + + Joyeux Noel + When a romantic painting of a Christmas market captures the imagination of copy editor Lea, she travels to France with a pragmatic reporter to uncover the mystery behind the artist. + + Jaicy Elliot + Brant Daugherty + Michael Obiora + + 2023 + Movies + Christmas + Romance + + + TVG + + + + Christmas Getaway + After a surprising breakup with her boyfriend, a travel writer decides to go on the picturesque Christmas vacation planned for the two of them, alone. + + Bridget Regan + Travis Van Winkle + Raven Rosemary Stewart + + 2017 + Movies + Christmas + Romance + + + TVG + + + + We Wish You a Married Christmas + Taking advice from their marriage coach, a couple visit a quiet town to reconnect during Christmastime. + + Marisol Nichols + Kristoffer Polaha + Claude Knowlton + + 2022 + Movies + Christmas + Romance + + + TVG + + + + Coming Home for Christmas + Lizzie Richfield lands a job as house manager for the exquisite Ashford Estate in the Virginia countryside. While preparing the place for sale, Lizzie plans one final Christmas Eve gala for the family, although they seem to be a family in name only. + + Danica McKellar + Neal Bledsoe + Andrew Francis + + 2017 + Movies + Christmas + Romance + + + TVG + + + + A Nashville Christmas Carol + A workaholic television producer receives a visit from her recently deceased mentor, who warns her that her current path leads to a dark future. + + Jessy Schram + Wes Brown + Kix Brooks + + 2020 + Movies + Christmas + Romance + + + TVG + + + + On the 12th Date of Christmas + Two seemingly incompatible game designers in Chicago team up to create a romantic city-wide scavenger hunt to promote a hotel chain. + + Mallory Jansen + Tyler Hynes + Zoe Fish + + 2020 + Movies + Christmas + Romance + + + TVG + + + + Christmas by Starlight + A lawyer makes a deal with the heir to a development firm to spare her family's restaurant from demolition. However, she must spend the week posing as the legal counsel his father is demanding he hire in the wake of some costly mistakes. + + Kimberley Sustad + Paul Campbell + Darren Martens + + 2020 + Movies + Christmas + Romance + + + TVG + + + + My Christmas Family Tree + A woman meets long-lost relatives for the first time after discovering her family tree during the holidays. + + Aimee Teegarden + Andrew W. Walker + James Tupper + + 2021 + Movies + Christmas + Romance + + + TVG + + + + A Kismet Christmas + A children's author reconnects with her hometown, family and teenage crush while confronting a legend that may actually be true. + + Sarah Ramos + Carlo Marks + Marilu Henner + + 2022 + Movies + Christmas + Romance + + + TVG + + + + Long Lost Christmas + Hayley is an interior designer who plans to surprise her recently widowed mother with the perfect holiday present -- the extended family she knows her mom yearns for. + + Taylor Cole + Benjamin Ayres + Camille Mitchell + + 2022 + Movies + Christmas + Drama + + + TVG + + + + My Christmas Guide + After losing his eyesight, a college professor adopts a seeing-eye dog from a guide dog trainer. As they all spend time together, his confidence returns and his heart begins to open. + + Amber Marshall + Ben Mehl + Ava Weiss + + 2023 + Movies + Christmas + Romance + + + TVG + + + + Debbie Macomber's Dashing Through the Snow + A young woman becomes stranded in an airport at Christmastime and accepts a ride from a man who rented the last rental car in town. As they head north, a hint of romance develops when they encounter a few bumps on the road. + + Meghan Ory + Andrew Walker + Aaron Craven + + 2015 + Movies + Christmas + Romance + + + TVG + + + + Debbie Macomber's Dashing Through the Snow + A young woman becomes stranded in an airport at Christmastime and accepts a ride from a man who rented the last rental car in town. As they head north, a hint of romance develops when they encounter a few bumps on the road. + + Meghan Ory + Andrew Walker + Aaron Craven + + 2015 + Movies + Christmas + Romance + + + TVG + + + + Angel Falls: A Novel Holiday + Book editor Hannah must work with former rival Ryan to help a potential writer find her way, and Angel Anthony reminds them about Christmas spirit and the value of community. + + Jen Lilley + Carlo Marks + Eric Close + + 2019 + Movies + Christmas + Romance + + + TVG + + + + Christmas in the Air + A no-nonsense professional organizer (Catherine Bell) learns that opposites do attract when she begins to fall for her client, a frazzled widower (Eric Close) who spends his time inventing toys. + + Catherine Bell + Eric Close + Ken Tremblett + + 2017 + Movies + Christmas + Romance + + + TVG + + + + Christmas at Cartwright's + An angel delivers good fortune and the possibility of holiday romance to a struggling single mother who takes a job as a department store Santa Claus. + + Alicia Witt + Gabriel Hogan + Wallace Shawn + + 2014 + Movies + Christmas + Drama + + + TVG + + + + Christmas at Grand Valley + Kelly returns to Grand Valley for Christmas. When Leo, a single dad, arrives in town with his kids to review a hotel, the two cross paths. As Kelly re-experiences traditions with Leo, she begins to find her way back to her passion for art. + + Danica McKellar + Brennan Elliott + Dan Lauria + + 2018 + Movies + Christmas + Romance + + + TVG + + + + A Joyous Christmas + A successful motivational speaker learns the true meaning of Christmas when a stranger rescues her from a near-fatal accident. + + Natalie Knepp + Michael Rady + Bonnie Bedelia + + 2017 + Movies + Christmas + Romance + + + TVG + + + + Christmas Wonderland + Heidi returns home to watch her niece and nephew and comes face to face with her high school love. Heidi offers to help him with a dance, and the more time she spends decorating, the more she finds herself inspired to start painting again. + + Emily Osment + Ryan Rottman + Kelly Hu + + 2018 + Movies + Christmas + Romance + + + TVG + + + + The Christmas Secret + A struggling single mother (Bethany Joy Lenz) searches for a lost family heirloom that she hopes will bring her love and good fortune in time for the holidays. + + Bethany Joy Lenz + John Reardon + Susan Hogan + + 2014 + Movies + Christmas + Drama + + + TVG + + + + The Christmas Promise + Nicole learns to deal with grief, with the help of her grandfather and a carpenter she hires to renovate the home that was once meant for her and her fiancé. + + Torrey DeVitto + Dylan Bruce + Patrick Duffy + + 2021 + Movies + Christmas + Drama + + + TVG + + + + A Dream of Christmas + An ambitious married woman gets more than she bargained for when her wish to be single again is granted. She awakens to discover she's got everything she's ever wanted, except her husband. She resolves to find him a second time. + + Nikki Deloach + Andrew Walker + Cindy Williams + + 2016 + Movies + Christmas + Drama + + + TVG + + + + My Christmas Guide + After losing his eyesight, a college professor adopts a seeing-eye dog from a guide dog trainer. As they all spend time together, his confidence returns and his heart begins to open. + + Amber Marshall + Ben Mehl + Ava Weiss + + 2023 + Movies + Christmas + Romance + + + TVG + + + + Holiday Hearts + While planning an annual Christmas party, Peyton is forced together with Ben to care for a friend's daughter. + + Ashley Williams + Paul Campbell + Payton Lepinski + + 2019 + Movies + Christmas + Romance + + + TVG + + + + Project Christmas Wish + A woman's life becomes transformed as she works toward granting a little girl's wish for a Christmas like she used to have with her mother. + + Amanda Schull + Travis Van Winkle + Averie Peters + + 2020 + Movies + Christmas + Drama + + + TVG + + + + Holly & Ivy + A contractor helps a woman renovate a house so she can adopt a sick neighbor's two children. + + Janel Parrish + Jeremy Jordan + Marisol Nichols + + 2020 + Movies + Christmas + Drama + + + TVG + + + + Holly & Ivy + A contractor helps a woman renovate a house so she can adopt a sick neighbor's two children. + + Janel Parrish + Jeremy Jordan + Marisol Nichols + + 2020 + Movies + Christmas + Drama + + + TVG + + + + Christmas in My Heart + Violinist Beth returns home after the recent death of her mother and tutors the daughter of a reclusive country music star to prepare her for the upcoming holiday concert. + + Heather Hemmens + Luke MacFarlane + Sheryl Lee Ralph + + 2021 + Movies + Christmas + Drama + + + TVG + + + + A Christmas Visitor + Grieving over a son's death in the Gulf War, a family (William Devane, Meredith Baxter, Reagan Pasternak) meets a stranger who rekindles the holiday spirit. + + William Devane + Meredith Baxter + Reagan Pasternak + + 2002 + Movies + Christmas + Drama + + + TVPG + + + 3 + + + + Christmas Comes Twice + When a Christmas carnival comes to town, a ride on the carousel transports a top newscaster back in time, giving her a second chance at love. + + Tamera Mowry + Michael Xavier + Sheryl Lee Ralph + + 2020 + Movies + Christmas + Romance + + + TVG + + + + A Bride for Christmas + Aiden (Andrew Walker) bets his friends that he can convince a woman to marry him by Christmas, and he sets his sights on Jessie (Arielle Kebbel), a young woman who has sworn off serious relationships. + + Arielle Kebbel + Andrew Walker + Sage Brocklebank + + 2012 + Movies + Christmas + Romance + + + TVG + + + + Every Time a Bell Rings + Three reunited sisters discover their late father planned one last scavenger hunt -- an annual holiday tradition when they were young. As their sisterly bond gets rekindled, they soon learn important lessons about what they want in life and in love. + + Erin Cahill + Brittany Ishibashi + Ali Liebert + + 2021 + Movies + Christmas + Romance + + + TVG + + + + Once Upon a Christmas Miracle + Told she would have less than a few months to live without a new liver, Heather's time was running out when a kind stranger heard of her plight and discovered he was a perfect match. The two met and before long a friendship developed into romance. + + Aimee Teegarden + Brett Dalton + Lolita Davidovich + + 2018 + Movies + Christmas + Drama + + + TVG + + + + Jingle Bell Bride + A wedding planner finds romance with a handsome local after traveling to a remote town in Alaska to find a rare flower for a celebrity client. + + Julie Gonzalo + Ronnie Rowe + BJ Harrison + + 2020 + Movies + Christmas + Romance + + + TVG + + + + A Christmas to Remember + A TV personality drives to a small-town mountain retreat. On her way, a blizzard veers her off the road and she crashes. When she awakens, she has complete amnesia, and a friendly passerby takes her in. + + Mira Sorvino + Cameron Mathison + Jesse Filkow + + 2016 + Movies + Christmas + Drama + + + TVG + + + + Christmas in Angel Falls + Guardian angel Gabby is sent to the town of Angel Falls to restore its Christmas spirit. As she helps the townspeople to revive their traditions, Gabby meets a volunteer fire chief who teaches her the truth about the love she admires from afar. + + Rachel Boston + Paul Greene + Beau Bridges + + 2017 + Movies + Christmas + Drama + + + TVG + + + + Homegrown Christmas + When forced to work together to organize a Christmas dance for the local high school, former sweethearts find themselves rediscovering what made them fall in love all those years ago. + + Lori Loughlin + Victor Webster + Gwynyth Walsh + + 2018 + Movies + Christmas + Romance + + + TVG + + + + Cherished Memories: A Gift to Remember 2 + As Darcy and Aiden prepare to celebrate their second Christmas together, an unexpected guest and a fight to save the beloved community center unites everyone for an unforgettable holiday. + + Peter Porte + Ali Liebert + Tina Lifford + + 2019 + Movies + Christmas + Romance + + + TVG + + + + Two Turtle Doves + Dr. Sharon Hayes returns home to search for a beloved family heirloom. With the help of an adorable little girl and her dispirited father, together they rediscover the magic of Christmas. + + Nikki Deloach + Michael Rady + Michaela Russell + + 2019 + Movies + Christmas + Romance + + + TVG + + + + Two Turtle Doves + Dr. Sharon Hayes returns home to search for a beloved family heirloom. With the help of an adorable little girl and her dispirited father, together they rediscover the magic of Christmas. + + Nikki Deloach + Michael Rady + Michaela Russell + + 2019 + Movies + Christmas + Romance + + + TVG + + + + Eight Gifts of Hanukkah + An anonymous suitor sends optometrist Sara a gift for each night of Hanukkah, and on her journey to find her secret admirer, she learns her one true love might be someone she never expected. + + Inbar Lavi + Jake Epstein + Sheila Tyson + + 2021 + Movies + Christmas + Romance + + + TVG + + + + Time for You to Come Home for Christmas + Katherine returns home after her husband passes and meets a veteran who is on his holiday journey. As Christmas nears, they learn of a bond that may be the miracle they need. + + Alison Sweeney + Lucas Bryant + Kiefer O'Reilly + + 2019 + Movies + Christmas + Romance + + + TVG + + + + Looks Like Christmas + An over-involved single mother (Anne Heche) butts heads with a single dad (Dylan Neal) over the school's annual Christmas Spectacular, an event that she feels like she owns. + + Anne Heche + Dylan Neal + Sean Michael Kyer + + 2016 + Movies + Christmas + Drama + + + TVG + + + + Christmas at Graceland: Home for the Holidays + A former tour guide meets a busy single father on a Graceland tour and agrees to be his temporary nanny for the holidays. + + Kaitlin Doubleday + Adrian Grenier + Sunny Mabrey + + 2019 + Movies + Christmas + Romance + + + TVG + + + + Our Christmas Love Song + When country star Melody Jones is accused of plagiarizing her holiday single, she returns home to spend Christmas with her estranged family and old flame and learns what is important in life. + + Alicia Witt + Brendan Hines + Andrea del Campo + + 2019 + Movies + Christmas + Romance + + + TVG + + + + The Gift of Peace + Traci is a once-devout Christian who stopped believing in God after her husband tragically died despite her prayers. As her second Christmas without him approaches, she tries going to a support group for inspiration and comfort. + + Nikki Deloach + Brennan Elliott + Princess Davis + + 2022 + Movies + Christmas + Drama + + + TVG + + + + A December Bride + Layla accompanies Seth to her cousin's wedding, and everyone is surprised when she announces they're engaged. They are forced to keep up the pretense, and as they spend more time together, they find themselves feeling something very real. + + Jessica Lowndes + Daniel Lissing + April Telek + + 2016 + Movies + Christmas + Drama + + + TVG + + + + Karen Kingsbury's Maggie's Christmas Miracle + Maggie tries to maintain the balance of being a mother and having a career. When her son Jordan needs help at school, he meets Casey, a tutor, and the two quickly bond. As Casey becomes a father figure, Jordan wishes his mom could find love again. + + Jill Wagner + Luke McFarlane + Marcus Zane Carvalho + + 2017 + Movies + Christmas + Romance + + + TVG + + + + A Christmas Melody + A single mother moves back to her hometown with her young daughter. Having a hard time adjusting, the daughter seeks help from her music teacher to write a song for the Christmas variety show. + + Lacey Chabert + Brennan Elliott + Kathy Najimy + + 2015 + Movies + Christmas + Comedy + + + TVG + + + + Christmas on My Mind + Lucy Lovett wakes up holding a wedding dress and assumes she is about to marry the love her life, Zach Callahan. + + Ashley Greene + Andrew W. Walker + Jackée Harry + + 2019 + Movies + Christmas + Romance + + + TVG + + + + Christmas Tree Lane + When music store owner Meg spearheads community efforts to save her street from demolition, she is shocked to find out that the man she's falling for is working for the company that she is fighting. + + Alicia Witt + Andrew W. Walker + Drake Hogestyn + + 2020 + Movies + Christmas + Romance + + + TVG + + + + Debbie Macomber's A Mrs. Miracle Christmas + When members of a family face loneliness and lose faith, Mrs. Miracle swoops in to renew their Christmas spirit. + + Kaitlin Doubleday + Steve Lund + Caroline Rhea + + 2021 + Movies + Christmas + Romance + + + TVG + + + + Debbie Macomber's A Mrs. Miracle Christmas + When members of a family face loneliness and lose faith, Mrs. Miracle swoops in to renew their Christmas spirit. + + Kaitlin Doubleday + Steve Lund + Caroline Rhea + + 2021 + Movies + Christmas + Romance + + + TVG + + + + The Christmas Train + A cynical journalist must get from Washington, D.C., to Los Angeles in time for Christmas, and his only option is to take the train. + + Dermot Mulroney + Kimberly Williams-Paisley + Danny Glover + + 2017 + Movies + Christmas + Drama + + + TVG + + + + Sugar Plum Twist + After failing to get the coveted role of the Sugar Plum Fairy in. + + Jamie Gray Hyder + Ektor Rivera + Laura Rosguer + + 2021 + Movies + Christmas + Romance + + + TVG + + + + The Christmas Doctor + A doctor encounters a man from her past who brings with him a revelation that could change her life forever. + + Holly Robinson + Adrian Holmes + Chris Wood + + 2020 + Movies + Christmas + Drama + + + + Christmas in Evergreen: Tidings of Joy + A skeptical writer shows up in Evergreen to get the scoop on the town's famed passion for Christmas during a search for a long-lost time capsule. + + Maggie Lawson + Paul Greene + Rukiya Bernard + + 2019 + Movies + Christmas + Romance + + + TVG + + + + Christmas in Homestead + An actress heads to the Christmas-obsessed town of Homestead, Iowa, to shoot a holiday-themed movie. She is shocked when a romance blooms with Matt, a single dad. As she gets a taste of small-town life, she discovers the true meaning of Christmas. + + Taylor Cole + Michael Rady + Brooklyn Rae Silzer + + 2016 + Movies + Christmas + Romance + + + TVG + + + + USS Christmas + Maddie, a reporter for a Norfolk newspaper, embarks on a Tiger Cruise during Christmastime where she meets a handsome naval officer and stumbles upon a mystery in the ship's archive room. + + Jen Lilley + Trevor Donovan + Barbara Niven + + 2020 + Movies + Christmas + Romance + + + TVG + + + + Merry & Bright + Merry and Bright Candy Cane Company owner Cate meets a man during the busy Christmas season and assumes he is the suitor her mother is trying to set her up with. + + Jodie Sweetin + Andrew W. Walker + Sharon Lawrence + + 2019 + Movies + Christmas + Romance + + + TVG + + + + Time for Them to Come Home for Christmas + A woman with amnesia catches a ride with her handsome nurse to investigate the only clue to her identity: a newspaper clipping for a Christmas festival with a cryptic invitation. + + Jessy Schram + Brendan Penny + Brendon Zub + + 2021 + Movies + Christmas + Romance + + + TVG + + + + Chateau Christmas + A world-renowned pianist rediscovers her passion for music after reuniting with her ex during the holidays. + + Merritt Patterson + Luke Macfarlane + Jesse Hutch + + 2020 + Movies + Christmas + Romance + + + TVG + + + + Christmas in Montana + An efficiency expert goes to Montana before the holidays and attempts to help a man save his ranch. + + Kellie Martin + Colin Ferguson + Ava Preston + + 2019 + Movies + Christmas + Drama + + + + Long Lost Christmas + Hayley is an interior designer who plans to surprise her recently widowed mother with the perfect holiday present -- the extended family she knows her mom yearns for. + + Taylor Cole + Benjamin Ayres + Camille Mitchell + + 2022 + Movies + Christmas + Drama + + + TVG + + + + My Christmas Guide + After losing his eyesight, a college professor adopts a seeing-eye dog from a guide dog trainer. As they all spend time together, his confidence returns and his heart begins to open. + + Amber Marshall + Ben Mehl + Ava Weiss + + 2023 + Movies + Christmas + Romance + + + TVG + + + + My Christmas Guide + After losing his eyesight, a college professor adopts a seeing-eye dog from a guide dog trainer. As they all spend time together, his confidence returns and his heart begins to open. + + Amber Marshall + Ben Mehl + Ava Weiss + + 2023 + Movies + Christmas + Romance + + + TVG + + + + Debbie Macomber's Dashing Through the Snow + A young woman becomes stranded in an airport at Christmastime and accepts a ride from a man who rented the last rental car in town. As they head north, a hint of romance develops when they encounter a few bumps on the road. + + Meghan Ory + Andrew Walker + Aaron Craven + + 2015 + Movies + Christmas + Romance + + + TVG + + + + Angel Falls: A Novel Holiday + Book editor Hannah must work with former rival Ryan to help a potential writer find her way, and Angel Anthony reminds them about Christmas spirit and the value of community. + + Jen Lilley + Carlo Marks + Eric Close + + 2019 + Movies + Christmas + Romance + + + TVG + + + + Christmas in the Air + A no-nonsense professional organizer (Catherine Bell) learns that opposites do attract when she begins to fall for her client, a frazzled widower (Eric Close) who spends his time inventing toys. + + Catherine Bell + Eric Close + Ken Tremblett + + 2017 + Movies + Christmas + Romance + + + TVG + + + + Christmas at Cartwright's + An angel delivers good fortune and the possibility of holiday romance to a struggling single mother who takes a job as a department store Santa Claus. + + Alicia Witt + Gabriel Hogan + Wallace Shawn + + 2014 + Movies + Christmas + Drama + + + TVG + + + + Christmas at Grand Valley + Kelly returns to Grand Valley for Christmas. When Leo, a single dad, arrives in town with his kids to review a hotel, the two cross paths. As Kelly re-experiences traditions with Leo, she begins to find her way back to her passion for art. + + Danica McKellar + Brennan Elliott + Dan Lauria + + 2018 + Movies + Christmas + Romance + + + TVG + + + + A Joyous Christmas + A successful motivational speaker learns the true meaning of Christmas when a stranger rescues her from a near-fatal accident. + + Natalie Knepp + Michael Rady + Bonnie Bedelia + + 2017 + Movies + Christmas + Romance + + + TVG + + + + Christmas Wonderland + Heidi returns home to watch her niece and nephew and comes face to face with her high school love. Heidi offers to help him with a dance, and the more time she spends decorating, the more she finds herself inspired to start painting again. + + Emily Osment + Ryan Rottman + Kelly Hu + + 2018 + Movies + Christmas + Romance + + + TVG + + + + The Christmas Secret + A struggling single mother (Bethany Joy Lenz) searches for a lost family heirloom that she hopes will bring her love and good fortune in time for the holidays. + + Bethany Joy Lenz + John Reardon + Susan Hogan + + 2014 + Movies + Christmas + Drama + + + TVG + + + + The Christmas Promise + Nicole learns to deal with grief, with the help of her grandfather and a carpenter she hires to renovate the home that was once meant for her and her fiancé. + + Torrey DeVitto + Dylan Bruce + Patrick Duffy + + 2021 + Movies + Christmas + Drama + + + TVG + + + + A Dream of Christmas + An ambitious married woman gets more than she bargained for when her wish to be single again is granted. She awakens to discover she's got everything she's ever wanted, except her husband. She resolves to find him a second time. + + Nikki Deloach + Andrew Walker + Cindy Williams + + 2016 + Movies + Christmas + Drama + + + TVG + + + + My Christmas Guide + After losing his eyesight, a college professor adopts a seeing-eye dog from a guide dog trainer. As they all spend time together, his confidence returns and his heart begins to open. + + Amber Marshall + Ben Mehl + Ava Weiss + + 2023 + Movies + Christmas + Romance + + + TVG + + + + Holiday Hearts + While planning an annual Christmas party, Peyton is forced together with Ben to care for a friend's daughter. + + Ashley Williams + Paul Campbell + Payton Lepinski + + 2019 + Movies + Christmas + Romance + + + TVG + + + + Project Christmas Wish + A woman's life becomes transformed as she works toward granting a little girl's wish for a Christmas like she used to have with her mother. + + Amanda Schull + Travis Van Winkle + Averie Peters + + 2020 + Movies + Christmas + Drama + + + TVG + + + + Holly & Ivy + A contractor helps a woman renovate a house so she can adopt a sick neighbor's two children. + + Janel Parrish + Jeremy Jordan + Marisol Nichols + + 2020 + Movies + Christmas + Drama + + + TVG + + + + Christmas in My Heart + Violinist Beth returns home after the recent death of her mother and tutors the daughter of a reclusive country music star to prepare her for the upcoming holiday concert. + + Heather Hemmens + Luke MacFarlane + Sheryl Lee Ralph + + 2021 + Movies + Christmas + Drama + + + TVG + + + + A Christmas Visitor + Grieving over a son's death in the Gulf War, a family (William Devane, Meredith Baxter, Reagan Pasternak) meets a stranger who rekindles the holiday spirit. + + William Devane + Meredith Baxter + Reagan Pasternak + + 2002 + Movies + Christmas + Drama + + + TVPG + + + 3 + + + + Christmas Comes Twice + When a Christmas carnival comes to town, a ride on the carousel transports a top newscaster back in time, giving her a second chance at love. + + Tamera Mowry + Michael Xavier + Sheryl Lee Ralph + + 2020 + Movies + Christmas + Romance + + + TVG + + + + A Bride for Christmas + Aiden (Andrew Walker) bets his friends that he can convince a woman to marry him by Christmas, and he sets his sights on Jessie (Arielle Kebbel), a young woman who has sworn off serious relationships. + + Arielle Kebbel + Andrew Walker + Sage Brocklebank + + 2012 + Movies + Christmas + Romance + + + TVG + + + + Every Time a Bell Rings + Three reunited sisters discover their late father planned one last scavenger hunt -- an annual holiday tradition when they were young. As their sisterly bond gets rekindled, they soon learn important lessons about what they want in life and in love. + + Erin Cahill + Brittany Ishibashi + Ali Liebert + + 2021 + Movies + Christmas + Romance + + + TVG + + + + Once Upon a Christmas Miracle + Told she would have less than a few months to live without a new liver, Heather's time was running out when a kind stranger heard of her plight and discovered he was a perfect match. The two met and before long a friendship developed into romance. + + Aimee Teegarden + Brett Dalton + Lolita Davidovich + + 2018 + Movies + Christmas + Drama + + + TVG + + + + Jingle Bell Bride + A wedding planner finds romance with a handsome local after traveling to a remote town in Alaska to find a rare flower for a celebrity client. + + Julie Gonzalo + Ronnie Rowe + BJ Harrison + + 2020 + Movies + Christmas + Romance + + + TVG + + + + A Christmas to Remember + A TV personality drives to a small-town mountain retreat. On her way, a blizzard veers her off the road and she crashes. When she awakens, she has complete amnesia, and a friendly passerby takes her in. + + Mira Sorvino + Cameron Mathison + Jesse Filkow + + 2016 + Movies + Christmas + Drama + + + TVG + + + + Christmas in Angel Falls + Guardian angel Gabby is sent to the town of Angel Falls to restore its Christmas spirit. As she helps the townspeople to revive their traditions, Gabby meets a volunteer fire chief who teaches her the truth about the love she admires from afar. + + Rachel Boston + Paul Greene + Beau Bridges + + 2017 + Movies + Christmas + Drama + + + TVG + + + + Homegrown Christmas + When forced to work together to organize a Christmas dance for the local high school, former sweethearts find themselves rediscovering what made them fall in love all those years ago. + + Lori Loughlin + Victor Webster + Gwynyth Walsh + + 2018 + Movies + Christmas + Romance + + + TVG + + + + Cherished Memories: A Gift to Remember 2 + As Darcy and Aiden prepare to celebrate their second Christmas together, an unexpected guest and a fight to save the beloved community center unites everyone for an unforgettable holiday. + + Peter Porte + Ali Liebert + Tina Lifford + + 2019 + Movies + Christmas + Romance + + + TVG + + + + Two Turtle Doves + Dr. Sharon Hayes returns home to search for a beloved family heirloom. With the help of an adorable little girl and her dispirited father, together they rediscover the magic of Christmas. + + Nikki Deloach + Michael Rady + Michaela Russell + + 2019 + Movies + Christmas + Romance + + + TVG + + + + Eight Gifts of Hanukkah + An anonymous suitor sends optometrist Sara a gift for each night of Hanukkah, and on her journey to find her secret admirer, she learns her one true love might be someone she never expected. + + Inbar Lavi + Jake Epstein + Sheila Tyson + + 2021 + Movies + Christmas + Romance + + + TVG + + + + Time for You to Come Home for Christmas + Katherine returns home after her husband passes and meets a veteran who is on his holiday journey. As Christmas nears, they learn of a bond that may be the miracle they need. + + Alison Sweeney + Lucas Bryant + Kiefer O'Reilly + + 2019 + Movies + Christmas + Romance + + + TVG + + + + Looks Like Christmas + An over-involved single mother (Anne Heche) butts heads with a single dad (Dylan Neal) over the school's annual Christmas Spectacular, an event that she feels like she owns. + + Anne Heche + Dylan Neal + Sean Michael Kyer + + 2016 + Movies + Christmas + Drama + + + TVG + + + + Christmas at Graceland: Home for the Holidays + A former tour guide meets a busy single father on a Graceland tour and agrees to be his temporary nanny for the holidays. + + Kaitlin Doubleday + Adrian Grenier + Sunny Mabrey + + 2019 + Movies + Christmas + Romance + + + TVG + + + + Our Christmas Love Song + When country star Melody Jones is accused of plagiarizing her holiday single, she returns home to spend Christmas with her estranged family and old flame and learns what is important in life. + + Alicia Witt + Brendan Hines + Andrea del Campo + + 2019 + Movies + Christmas + Romance + + + TVG + + + + The Gift of Peace + Traci is a once-devout Christian who stopped believing in God after her husband tragically died despite her prayers. As her second Christmas without him approaches, she tries going to a support group for inspiration and comfort. + + Nikki Deloach + Brennan Elliott + Princess Davis + + 2022 + Movies + Christmas + Drama + + + TVG + + + + A December Bride + Layla accompanies Seth to her cousin's wedding, and everyone is surprised when she announces they're engaged. They are forced to keep up the pretense, and as they spend more time together, they find themselves feeling something very real. + + Jessica Lowndes + Daniel Lissing + April Telek + + 2016 + Movies + Christmas + Drama + + + TVG + + + + Karen Kingsbury's Maggie's Christmas Miracle + Maggie tries to maintain the balance of being a mother and having a career. When her son Jordan needs help at school, he meets Casey, a tutor, and the two quickly bond. As Casey becomes a father figure, Jordan wishes his mom could find love again. + + Jill Wagner + Luke McFarlane + Marcus Zane Carvalho + + 2017 + Movies + Christmas + Romance + + + TVG + + + + A Christmas Melody + A single mother moves back to her hometown with her young daughter. Having a hard time adjusting, the daughter seeks help from her music teacher to write a song for the Christmas variety show. + + Lacey Chabert + Brennan Elliott + Kathy Najimy + + 2015 + Movies + Christmas + Comedy + + + TVG + + + + Christmas on My Mind + Lucy Lovett wakes up holding a wedding dress and assumes she is about to marry the love her life, Zach Callahan. + + Ashley Greene + Andrew W. Walker + Jackée Harry + + 2019 + Movies + Christmas + Romance + + + TVG + + + + Christmas Tree Lane + When music store owner Meg spearheads community efforts to save her street from demolition, she is shocked to find out that the man she's falling for is working for the company that she is fighting. + + Alicia Witt + Andrew W. Walker + Drake Hogestyn + + 2020 + Movies + Christmas + Romance + + + TVG + + + + Debbie Macomber's A Mrs. Miracle Christmas + When members of a family face loneliness and lose faith, Mrs. Miracle swoops in to renew their Christmas spirit. + + Kaitlin Doubleday + Steve Lund + Caroline Rhea + + 2021 + Movies + Christmas + Romance + + + TVG + + + + The Christmas Train + A cynical journalist must get from Washington, D.C., to Los Angeles in time for Christmas, and his only option is to take the train. + + Dermot Mulroney + Kimberly Williams-Paisley + Danny Glover + + 2017 + Movies + Christmas + Drama + + + TVG + + + + Sugar Plum Twist + After failing to get the coveted role of the Sugar Plum Fairy in. + + Jamie Gray Hyder + Ektor Rivera + Laura Rosguer + + 2021 + Movies + Christmas + Romance + + + TVG + + + + The Christmas Doctor + A doctor encounters a man from her past who brings with him a revelation that could change her life forever. + + Holly Robinson + Adrian Holmes + Chris Wood + + 2020 + Movies + Christmas + Drama + + + + Christmas in Evergreen: Tidings of Joy + A skeptical writer shows up in Evergreen to get the scoop on the town's famed passion for Christmas during a search for a long-lost time capsule. + + Maggie Lawson + Paul Greene + Rukiya Bernard + + 2019 + Movies + Christmas + Romance + + + TVG + + + + Christmas in Homestead + An actress heads to the Christmas-obsessed town of Homestead, Iowa, to shoot a holiday-themed movie. She is shocked when a romance blooms with Matt, a single dad. As she gets a taste of small-town life, she discovers the true meaning of Christmas. + + Taylor Cole + Michael Rady + Brooklyn Rae Silzer + + 2016 + Movies + Christmas + Romance + + + TVG + + + + USS Christmas + Maddie, a reporter for a Norfolk newspaper, embarks on a Tiger Cruise during Christmastime where she meets a handsome naval officer and stumbles upon a mystery in the ship's archive room. + + Jen Lilley + Trevor Donovan + Barbara Niven + + 2020 + Movies + Christmas + Romance + + + TVG + + + + Merry & Bright + Merry and Bright Candy Cane Company owner Cate meets a man during the busy Christmas season and assumes he is the suitor her mother is trying to set her up with. + + Jodie Sweetin + Andrew W. Walker + Sharon Lawrence + + 2019 + Movies + Christmas + Romance + + + TVG + + + + Fuera del aire + Fin de emisión. + Specials + Performing Arts + + + TVG + + + + Fuera del aire + Fin de emisión. + Specials + Performing Arts + + + TVG + + + + Fuera del aire + Fin de emisión. + Specials + Performing Arts + + + TVG + + + + Fuera del aire + Fin de emisión. + Specials + Performing Arts + + + TVG + + + + Fuera del aire + Fin de emisión. + Specials + Performing Arts + + + TVG + + + + Fuera del aire + Fin de emisión. + Specials + Performing Arts + + + TVG + + + + Fuera del aire + Fin de emisión. + Specials + Performing Arts + + + TVG + + + + Fuera del aire + Fin de emisión. + Specials + Performing Arts + + + TVG + + + + Fuera del aire + Fin de emisión. + Specials + Performing Arts + + + TVG + + + + Fuera del aire + Fin de emisión. + Specials + Performing Arts + + + TVG + + + + Fuera del aire + Fin de emisión. + Specials + Performing Arts + + + TVG + + + + Fuera del aire + Fin de emisión. + Specials + Performing Arts + + + TVG + + + + Fuera del aire + Fin de emisión. + Specials + Performing Arts + + + TVG + + + + Fuera del aire + Fin de emisión. + Specials + Performing Arts + + + TVG + + + + Fuera del aire + Fin de emisión. + Specials + Performing Arts + + + TVG + + + + Fuera del aire + Fin de emisión. + Specials + Performing Arts + + + TVG + + + + Fuera del aire + Fin de emisión. + Specials + Performing Arts + + + TVG + + + + Fuera del aire + Fin de emisión. + Specials + Performing Arts + + + TVG + + + + Fuera del aire + Fin de emisión. + Specials + Performing Arts + + + TVG + + + + Fuera del aire + Fin de emisión. + Specials + Performing Arts + + + TVG + + + + Fuera del aire + Fin de emisión. + Specials + Performing Arts + + + TVG + + + + Fuera del aire + Fin de emisión. + Specials + Performing Arts + + + TVG + + + + Fuera del aire + Fin de emisión. + Specials + Performing Arts + + + TVG + + + + Fuera del aire + Fin de emisión. + Specials + Performing Arts + + + TVG + + + + Fuera del aire + Fin de emisión. + Specials + Performing Arts + + + TVG + + + + here! On Demand + Local + + + TVG + + + + here! On Demand + Local + + + TVG + + + + here! On Demand + Local + + + TVG + + + + here! On Demand + Local + + + TVG + + + + here! On Demand + Local + + + TVG + + + + here! On Demand + Local + + + TVG + + + + here! On Demand + Local + + + TVG + + + + here! On Demand + Local + + + TVG + + + + here! On Demand + Local + + + TVG + + + + here! On Demand + Local + + + TVG + + + + here! On Demand + Local + + + TVG + + + + here! On Demand + Local + + + TVG + + + + here! On Demand + Local + + + TVG + + + + here! On Demand + Local + + + TVG + + + + here! On Demand + Local + + + TVG + + + + here! On Demand + Local + + + TVG + + + + here! On Demand + Local + + + TVG + + + + here! On Demand + Local + + + TVG + + + + here! On Demand + Local + + + TVG + + + + here! On Demand + Local + + + TVG + + + + here! On Demand + Local + + + TVG + + + + here! On Demand + Local + + + TVG + + + + here! On Demand + Local + + + TVG + + + + here! On Demand + Local + + + TVG + + + + here! On Demand + Local + + + TVG + + + + here! On Demand + Local + + + TVG + + + + here! On Demand + Local + + + TVG + + + + Ancient Aliens + Recovering the Ark of the Covenant + Some 2,600 years ago, the most sacred relic of the ancient world suddenly disappeared from history. + + Giorgio A. Tsoukalos + Erich von Däniken + David Childress + + History + Documentary + + + TVPG + + + + Ancient Aliens + The Giants of Malta + Enormous, megalithic structures of mysterious origins; a vast underground complex containing the remains of what some believe to be otherworldly beings; the ancient mysteries that exist on the islands of Malta could be connected to alien visitation. + + Giorgio A. Tsoukalos + Erich von Däniken + David Childress + + History + Documentary + + + TVPG + + + + Ancient Aliens + The Ultimate Guide to UFOs + UFO witnesses have reported a wide variety of objects in Earth's skies and not only in modern times, but for centuries; could they offer important clues about other intelligent life. + + Giorgio A. Tsoukalos + Erich von Däniken + David Childress + + History + Documentary + + + TVPG + + + + Ancient Aliens + The New UFO Hunters + In the 21st century, UFOs have gone from fringe science to mainstream obsession; a new generation of UFO hunters employ technology, and unidentified flying objects are openly investigated by the government. + + Giorgio A. Tsoukalos + Erich von Däniken + David Childress + + History + Documentary + + + TVPG + + + + Ancient Aliens + Element 115 + According to physicist Bob Lazar, Element 115 is the fuel source for an alien spacecraft he was hired to reverse-engineer by the U.S. government to find a way to harness its power. + + Giorgio A. Tsoukalos + Erich von Däniken + David Childress + + History + Documentary + + + TVPG + + + + Ancient Aliens + The Star Gods of Sirius + Aliens from the tiny star Sirius B may have visited humans in the distant past, imparting the knowledge of civilization to peoples thousands of miles apart. + + Giorgio A. Tsoukalos + Erich von Däniken + David Childress + + History + Documentary + + + TVPG + + + + Ancient Aliens + The Star Gods of Sirius + Aliens from the tiny star Sirius B may have visited humans in the distant past, imparting the knowledge of civilization to peoples thousands of miles apart. + + Giorgio A. Tsoukalos + Erich von Däniken + David Childress + + History + Documentary + + + TVPG + + + + Ancient Aliens + The Storming of Area 51 + In 2019, millions responded to an internet post advocating to storm the gates of the world's most top-secret military installation -- Area 51 but when they did, the U.S. military vowed to defend the base with deadly force. + + Giorgio A. Tsoukalos + Erich von Däniken + David Childress + + History + Documentary + + + TVPG + + + + Ancient Aliens + The New UFO Hunters + In the 21st century, UFOs have gone from fringe science to mainstream obsession; a new generation of UFO hunters employ technology, and unidentified flying objects are openly investigated by the government. + + Giorgio A. Tsoukalos + Erich von Däniken + David Childress + + History + Documentary + + + TVPG + + + + Ancient Aliens + Element 115 + According to physicist Bob Lazar, Element 115 is the fuel source for an alien spacecraft he was hired to reverse-engineer by the U.S. government to find a way to harness its power. + + Giorgio A. Tsoukalos + Erich von Däniken + David Childress + + History + Documentary + + + TVPG + + + + Ancient Aliens + The Star Gods of Sirius + Aliens from the tiny star Sirius B may have visited humans in the distant past, imparting the knowledge of civilization to peoples thousands of miles apart. + + Giorgio A. Tsoukalos + Erich von Däniken + David Childress + + History + Documentary + + + TVPG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Ancient Aliens + The Storming of Area 51 + In 2019, millions responded to an internet post advocating to storm the gates of the world's most top-secret military installation -- Area 51 but when they did, the U.S. military vowed to defend the base with deadly force. + + Giorgio A. Tsoukalos + Erich von Däniken + David Childress + + History + Documentary + + + TVPG + + + + Coin Collecting with Mike Mezack + Learn about the wonderful world of numismatics with your host Mike Mezack and get the opportunity to build your own collection with some of the best deals around! + Paid Program + + + + Coin Collecting with Mike Mezack + Learn about the wonderful world of numismatics with your host Mike Mezack and get the opportunity to build your own collection with some of the best deals around! + Paid Program + + + + Coin Collecting with Mike Mezack + Learn about the wonderful world of numismatics with your host Mike Mezack and get the opportunity to build your own collection with some of the best deals around! + Paid Program + + + + Coin Collecting with Mike Mezack + Learn about the wonderful world of numismatics with your host Mike Mezack and get the opportunity to build your own collection with some of the best deals around! + Paid Program + + + + Coin Collecting with Mike Mezack + Learn about the wonderful world of numismatics with your host Mike Mezack and get the opportunity to build your own collection with some of the best deals around! + Paid Program + + + + Coin Collecting with Mike Mezack + Learn about the wonderful world of numismatics with your host Mike Mezack and get the opportunity to build your own collection with some of the best deals around! + Paid Program + + + + Dark Marvels + Pain and Punishment + The twisted origin stories of some of history's most diabolically creative and brutal torture devices, from the. + Documentary + History + + + + Dark Marvels + Blades of Fury + From the destructive Viking axe to the sacred but deadly Samurai katana, razor sharp blades wielded by fearsome warriors have spilled blood and forged empires. + Documentary + History + + + TV14 + + + + Dark Marvels + Treacherous Traps + Whether they're used to stop treasure hunters, body snatchers, or wartime enemies, booby traps are diabolical devices just waiting to kill. + + Jimmy Bacon + + Documentary + History + + + + Dark Marvels + Bloodsports + The origins of history's deadliest games, from Roman bloodsports to Russian roulette. + + Jonathan Peacy + + Documentary + History + + + TV14 + + + + Dark Marvels + Sinister Spy Weapons + An exploration into the dark art of spy-craft, from the frankenkitty to the umbrella gun, reveals the deadliest spy weapons deployed to gather information and assassinate enemies. + Documentary + History + + + TV14 + + + + The Food That Built America + A Game of Chicken + In the 1970s, Ray Kroc is far ahead of the competition, but when a burger chain claiming to be king, poaches his third-highest ranking executive, Don Smith, it's war. + History + Food + + + TVPG + + + + The Food That Built America + Thanksgiving Dinner + A look at some staples of Thanksgiving dinner that weren't around until a few brands used technological advances to reinvent turkey, stuffing, cranberry sauce, pumpkin pie and more; food innovators made each part of the meal accessible. + History + Food + + + TVPG + + + + The Food That Built America + The Rise of a Rival + Candy company president Charles Guth buys a bankrupt cola company and goes to war with the supplier who wronged him and its new CEO, maverick businessman Robert Woodruff. + History + Food + + + TVPG + + + + The Food That Built America + Chain Reaction + Former wrestler Rocky Aoki and a perfume salesman become the unlikely fathers of a casual dining revolution when they open different establishments in the heart of New York City: one of America's first Japanese restaurants and a swinging singles bar. + History + Food + + + TVPG + + + + The Food That Built America + Let Them Eat Snack Cakes + Martha Entenmann takes the reins of her late husband's baking company and grows it into a national powerhouse; a married couple bankrupt one bakery but succeed during their second time around with a revolutionary way to sell snack cakes. + History + Food + + + TVPG + + + + The Food That Built America + A Dish Best Served... Soft + When his ice cream truck breaks down, Tom Carvel discovers that half-melted ice cream is a surefire hit with customers. + History + Food + + + TVPG + + + + The Food That Built America + Dog Eat Dog + At a time when dog food is a rarity and cat food is almost nonexistent, it will take visionary innovators to invent the first dog treat, dry food, the first cat food, and many more innovations that will carve out the billion-dollar pet food industry. + History + Food + + + TVPG + + + + The Toys That Built America + Masters of Invention + During World War II, a naval engineer accidentally creates an iconic spiral toy that walks down stairs; an engineer tries to invent a synthetic rubber for the war effort and instead creates a strange putty. + + Kimberley Wintle + + History + Documentary + + + TVPG + + + + The Toys That Built America + Video Game Visionaries + Thanks to the industry-defining innovations of three men through the creation of games like Super Mario Brothers, The Legend of Zelda, and Pokémon, Nintendo goes from a struggling playing card company to a video game juggernaut. + History + Documentary + + + + The Toys That Built America + Game Night Legends + In the 1970s, the board game industry was aimed almost entirely at children, until a literal game changer came along in Trivial Pursuit; redefining the possibilities for adult fun, it opened up a whole new genre. + History + Documentary + + + + The Toys That Built America + Game Night Legends + In the 1970s, the board game industry was aimed almost entirely at children, until a literal game changer came along in Trivial Pursuit; redefining the possibilities for adult fun, it opened up a whole new genre. + History + Documentary + + + + The Toys That Built America + Transforming Toy Invasion + In 1983, underdog company Tonka sets out to bring the transformable robot from Japan to America, but they're soon confronted by an industry giant as Hasbro has its own competing toy line. + + George Dunsay + + History + Documentary + + + + The Toys That Built America + Mind Game Masters + Postwar peace and prosperity reveals a demand for more challenging pastimes; after decades of struggle, three different innovators break the mold to release games that combine fun with an intellectual challenge: Scrabble, Clue and Yahtzee. + History + Documentary + + + + The Toys That Built America + Game Night Legends + In the 1970s, the board game industry was aimed almost entirely at children, until a literal game changer came along in Trivial Pursuit; redefining the possibilities for adult fun, it opened up a whole new genre. + History + Documentary + + + + The Toys That Built America + Transforming Toy Invasion + In 1983, underdog company Tonka sets out to bring the transformable robot from Japan to America, but they're soon confronted by an industry giant as Hasbro has its own competing toy line. + + George Dunsay + + History + Documentary + + + + The Toys That Built America + Video Game Visionaries + Thanks to the industry-defining innovations of three men through the creation of games like Super Mario Brothers, The Legend of Zelda, and Pokémon, Nintendo goes from a struggling playing card company to a video game juggernaut. + History + Documentary + + + + The Toys That Built America + Mind Game Masters + Postwar peace and prosperity reveals a demand for more challenging pastimes; after decades of struggle, three different innovators break the mold to release games that combine fun with an intellectual challenge: Scrabble, Clue and Yahtzee. + History + Documentary + + + + Help Israel & Ukraine + There is an urgent need to help Jews suffering in Israel, Ukraine, and around the world. Act now and support the International Fellowship of Christians and Jews in their lifesaving work. + Paid Program + + + + Home Title Theft is Real! Home Title Lock Protects Your Title 24/7 + When a criminal fraudulently transfers your home title to a fake identity and steals your title, no one will notify you. Not your county, not the police, not even your bank. Home Title Lock protects your title 24/7 from this this fast-growing crime. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Amazing Facts With Doug Batchelor + Pastor Doug Batchelor reveals. + Religious + + + TVG + + + + David Jeremiah + Dr. David Jeremiah's goal is to deliver the unchanging Word of God to an ever-changing world. + Religious + + + TVG + + + + The Curse of Oak Island + Yes We Can + As winter approaches, the fellowship races to complete their dig plan in the money pit, and a Knights Templar lead has members of the team preparing for an expedition. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island + Follow the Cobblestone Road + The team is stunned when an expedition to Portugal delivers undeniable evidence of a Knights Templar connection to Oak Island. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island + On the Road + Marty Lagina makes an incredible discovery on Oak Island; on the other side of the Atlantic, Rick finds evidence that could tie the Knights Templar to the construction of the Money Pit. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island + Treasure Island + After more than a decade of work, the Laginas and their dedicated team are close to recovering the treasure. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island + On Their Marks + After a decade of searching, Rick, Marty, and the team return to Oak Island and immediately uncover evidence of a tunnel in the Money Pit; the fellowship gets a clear look at an underground structure, getting it closer to solving the mystery. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island + Across the Pond + While on a research mission in England, Marty, Alex, and Charles are thrilled to uncover more evidence connecting the Knights Templar to the Oak Island mystery. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island + Bubbling Over + Armed with more evidence that the garden shaft is connected to a possible series of tunnels in the Money Pit, the team begins the arduous work necessary to get a team member underground. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island + Wharf and Pieces + The team is astonished when Gary unearths multiple artifacts in close proximity to the old ship's wharf; with the discovery of a shallower tunnel in the Money Pit, Marty's theory of an off-set chamber may finally be proven. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island + Duc it Out + The discovery of mysterious ship logs provides more evidence that a 1746 French armada led by the Duc D'Anville landed on Oak Island; at the Money Pit, the team gets closer to getting a team member underground. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island + Over the Muon + Gary unearths a curious artifact on Lot 8 and in the Money Pit; the team is astonished to discover that they may be chasing multiple tunnels towards the gold in the garden shaft. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island + Norsing Around + The team returns to the swamp and immediately uncovers more evidence of a sunken ship; in the money pit, the discovery of a collapsed structure could mean they have finally located the off-set chamber. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island + A Lot to Be Desired + The team's high hopes of finding the fabled treasure are intensified when it procures what could be the final piece of the puzzle. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island: Digging Deeper + Countdown to Season 11 + Enhanced; the fellowship is stunned when evidence suggests that a dam lies buried at the end of the swamp, corroborating both Fred Nolan's theory, and Zena Halpern's Templar map. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island: Digging Deeper + Countdown to Season 11 + Enhanced; the fellowship is stunned when evidence suggests that a dam lies buried at the end of the swamp, corroborating both Fred Nolan's theory, and Zena Halpern's Templar map. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island + First Look: On the Money + A sneak-peek at the first new episode of Season 11 of. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island: Digging Deeper + Beware the Blob + While the team searches for clues to understand why an ancient well was constructed on Lot 26, excitement abounds when more evidence of a tunnel heading directly toward the garden shaft is discovered. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island: Digging Deeper + Countdown to Season 11 + Enhanced; the fellowship is stunned when evidence suggests that a dam lies buried at the end of the swamp, corroborating both Fred Nolan's theory, and Zena Halpern's Templar map. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island + First Look: On the Money + A sneak-peek at the first new episode of Season 11 of. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island: Digging Deeper + Beware the Blob + While the team searches for clues to understand why an ancient well was constructed on Lot 26, excitement abounds when more evidence of a tunnel heading directly toward the garden shaft is discovered. + Reality TV + History + + + TVPG + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Help Israel & Ukraine + There is an urgent need to help Jews suffering in Israel, Ukraine, and around the world. Act now and support the International Fellowship of Christians and Jews in their lifesaving work. + Paid Program + + + + FALL FESTIVAL OF KNIVES + This is a special presentation of Cutlery Corner. Our Fall Festival set has 110 total pieces including a Katana sword, filet knife with sheath, several fixed blades, multiple bowies and tactical knives and a 21 piece kitchen set. FLEX PAY allowed. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Amazing Facts With Doug Batchelor + Pastor Doug Batchelor reveals. + Religious + + + TVG + + + + David Jeremiah + Dr. David Jeremiah's goal is to deliver the unchanging Word of God to an ever-changing world. + Religious + + + TVG + + + + The Curse of Oak Island + All's Well + As the Fellowship prepares to get a team member underground in the Money Pit for the first time, a new theory emerges suggesting that Nolan's Cross holds the secret to its exact location. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island + Getting the Shaft + The team is ecstatic when new scientific evidence narrows down the location of the gold signature in the Money Pit; Rick realizes a lifelong dream when he finally gets underground on Oak Island. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island + Wood You Believe It? + Confidence grows when irrefutable, scientific evidence reports the fellowship is closer than ever to the gold. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island + Striking Gold + The Fellowship is certain that they're closer than ever to an offset chamber when the probe drilling operation in the garden shaft finally gets underway. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island + A Well of Secrets + As the garden shaft operation gets deeper, the evidence of gold gets stronger. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island + A Quadrilateral Move + While the drilling operation gets closer and closer to its destination, the team is shocked when they discover evidence of an ancient safe. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island + Ramping Up + After a long wait, the Fellowship gets permission to return to their excavation in the swamp; almost immediately, they make a discovery that could connect all the cobblestone dots in the mysterious bog. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island + A Barrel Full of Clues + As time is running out, an exciting find in the swamp may have the fellowship rewriting the history of North America. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island + Roman Around + After a new find suggests that the Oak Island mystery could have ancient ties to Italy, the team investigates a stone structure that shockingly has a design that matches the original Money Pit treasure shaft. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island + Starry Knights + The North Atlantic winter is quickly approaching, but the stars are aligning for the fellowship of the dig when the swamp reveals more of its secrets, and a trip to Italy provides new insight into Nolan's cross. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island + The Italian Job + While an incredible new discovery is made in the triangle-shaped swamp, Rick Lagina and members of the team make shocking connections in Italy between the Knights Templar and the Oak Island mystery. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island + Down the Hatch + Rick, Marty and the team make a discovery below the Garden Shaft that could be the key to solving the Oak Island mystery. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island + And the Hits Keep Coming + As new discoveries are uncovered in the triangle-shaped swamp and on Lot Five, the Oak Island team makes an incredible revelation in the Money Pit. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island: Drilling Down + Back to the Hunt + Matty Blake returns to Oak Island and gets an insider's look at the incredible challenges and triumphs the fellowship of the dig have experienced this year in their quest to finally solve the old Oak Island mystery. + Reality TV + Talk Shows + + + TVPG + + + + The Curse of Oak Island + On the Money + As Rick and Marty Lagina and their team relaunch their quest to solve the Oak Island mystery, they make a number of the most historic discoveries ever unearthed in North America. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island + On the Money + As Rick and Marty Lagina and their team relaunch their quest to solve the Oak Island mystery, they make a number of the most historic discoveries ever unearthed in North America. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island + On the Money + As Rick and Marty Lagina and their team relaunch their quest to solve the Oak Island mystery, they make a number of the most historic discoveries ever unearthed in North America. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island: Drilling Down + Back to the Hunt + Matty Blake returns to Oak Island and gets an insider's look at the incredible challenges and triumphs the fellowship of the dig have experienced this year in their quest to finally solve the old Oak Island mystery. + Reality TV + Talk Shows + + + TVPG + + + + The Curse of Oak Island + On the Money + As Rick and Marty Lagina and their team relaunch their quest to solve the Oak Island mystery, they make a number of the most historic discoveries ever unearthed in North America. + Reality TV + History + + + TVPG + + + + The Curse of Oak Island + On the Money + As Rick and Marty Lagina and their team relaunch their quest to solve the Oak Island mystery, they make a number of the most historic discoveries ever unearthed in North America. + Reality TV + History + + + TVPG + + + + The Coin Vault - your trusted source for coins and currency. + With a history that spans over 140 years, the popularity and impact of the Morgan Dollar has NOT waivered! Collect a piece of history with these stunning coins struck by the United States Mint! + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Pain Relief TV + Matt's pain from his 20 year old lost limb is solved. + Paid Program + + + + Amazing Facts With Doug Batchelor + Pastor Doug Batchelor reveals. + Religious + + + TVG + + + + David Jeremiah + Dr. David Jeremiah's goal is to deliver the unchanging Word of God to an ever-changing world. + Religious + + + TVG + + + + Pawn Stars + Pawnsplosion + Rick has the chance to drive a WWII tank; vintage toy soldiers march into the shop; Rick and Corey are visited by Haunted Mansion memorabilia; Chum finds a flamethrower. + Reality TV + History + + + TVPG + + + + Pawn Stars + Across the Pawn'd + Rick shoots over to England for an explosive chance to test out antique weapons; an item that inspired a classic movie rifles into the shop; Rick gets a look at a classic car that belonged to Winston Churchill. + Reality TV + History + + + TVPG + + + + Pawn Stars + I Don't Give a Dime + A seller brings in an unusual diamond made from the DNA of a musical genius; a vintage collection of paperbacks books; Floyd Norman draws Rick's attention to his collection of prints; Chum has a very special surprise in store for Rick's birthday. + Reality TV + History + + + TVPG + + + + Pawn Stars + Appetite for Pawnstruction + Corey has an appetite for a deal when a Guns N' Roses collector box rocks into the shop. + Reality TV + History + + + TVPG + + + + Pawn Stars + Fender Vendor + Rick looks at a Honus Wagner baseball card; Chum strums a custom Fender by guitar maker John Carruthers; Rick is thrilled to see a Draped Bust half dollar hit the counter. + Reality TV + History + + + TVPG + + + + Pawn Stars + There's No Crying in Pawn Stars + Chum tries to put his best foot forward when a Nike Lebron sneaker hits the counter; Rick keeps watch on a seller who comes in with a signed. + Reality TV + History + + + TVPG + + + + Pawn Stars + Detective Rick Tracy + A seller walks into the shop hoping to score with his Magic Johnson 50th birthday invitation; Chum takes a look at some joker playing cards used as props in. + Reality TV + History + + + TVPG + + + + Pawn Stars + Chum Goes to Hollywood + Rick tackles a football helmet signed by 28 Heisman Trophy winners; Corey gears up to buy a devastatingly cool. + Reality TV + History + + + TVPG + + + + Pawn Stars + Thunder Pawns + Rick sees red when a Rolex Submariner hits the counter; Corey gets slap happy over a hockey stick signed by Paul Newman; Chum and Santos are sweet on a set of Mr. Softee trading cards; Rick heads to the range to see a set of Bolivian thunder mugs. + Reality TV + History + + + TVPG + + + + How To On Demand + Specials + Instructional + + + + How To On Demand + Specials + Instructional + + + + How To On Demand + Specials + Instructional + + + + How To On Demand + Specials + Instructional + + + + How To On Demand + Specials + Instructional + + + + How To On Demand + Specials + Instructional + + + + How To On Demand + Specials + Instructional + + + + How To On Demand + Specials + Instructional + + + + How To On Demand + Specials + Instructional + + + + How To On Demand + Specials + Instructional + + + + How To On Demand + Specials + Instructional + + + + How To On Demand + Specials + Instructional + + + + How To On Demand + Specials + Instructional + + + + How To On Demand + Specials + Instructional + + + + How To On Demand + Specials + Instructional + + + + How To On Demand + Specials + Instructional + + + + How To On Demand + Specials + Instructional + + + + How To On Demand + Specials + Instructional + + + + How To On Demand + Specials + Instructional + + + + How To On Demand + Specials + Instructional + + + + How To On Demand + Specials + Instructional + + + + How To On Demand + Specials + Instructional + + + + How To On Demand + Specials + Instructional + + + + How To On Demand + Specials + Instructional + + + + How To On Demand + Specials + Instructional + + + + How To On Demand + Specials + Instructional + + + + How To On Demand + Specials + Instructional + + + + Hustler On Demand + Specials + Adult + + + + Hustler On Demand + Specials + Adult + + + + Hustler On Demand + Specials + Adult + + + + Hustler On Demand + Specials + Adult + + + + Hustler On Demand + Specials + Adult + + + + Hustler On Demand + Specials + Adult + + + + Hustler On Demand + Specials + Adult + + + + Hustler On Demand + Specials + Adult + + + + Hustler On Demand + Specials + Adult + + + + Hustler On Demand + Specials + Adult + + + + Hustler On Demand + Specials + Adult + + + + Hustler On Demand + Specials + Adult + + + + Hustler On Demand + Specials + Adult + + + + Hustler On Demand + Specials + Adult + + + + Hustler On Demand + Specials + Adult + + + + Hustler On Demand + Specials + Adult + + + + Hustler On Demand + Specials + Adult + + + + Hustler On Demand + Specials + Adult + + + + Hustler On Demand + Specials + Adult + + + + Hustler On Demand + Specials + Adult + + + + Hustler On Demand + Specials + Adult + + + + Hustler On Demand + Specials + Adult + + + + Hustler On Demand + Specials + Adult + + + + Hustler On Demand + Specials + Adult + + + + Hustler On Demand + Specials + Adult + + + + Hustler On Demand + Specials + Adult + + + + Hustler On Demand + Specials + Adult + + + + Animal House + At a 1962 College, Dean Vernon Wormer is determined to expel the entire Delta Tau Chi Fraternity, but those troublemakers have other plans for him. (repeat). + 1978 + + + The Blues Brothers + Two soul-singing brothers are sent on a "mission from God" to raise $5000 to save a Chicago orphanage. On their fund-raising tour de force, they encounter a multitude of mishaps and mayhem. (repeat). + + John Belushi + Dan Aykroyd + James Brown + Cab Calloway + Carrie Fisher + Ray Charles + Elmer Bernstein + John Landis + Bernie Brillstein + + 1980 + Drama + Music + Comedy + Action & Adventure + + + TV-14 + + + + Bill and Ted's Excellent Adventure + Two dim best friends who dream of being famous rock stars time-travel in order to bring ancient figures to modern times so that they can pass a history class and graduate. If they fail, one of them will be forced to join the military. (repeat). + + Keanu Reeves + George Carlin + Rod Loomis + Terry Camilleri + Dan Shor + Tony Steedman + David Newman + Stephen Herek + Robert W. Cort + Christian Matheson + + 1989 + Music + Comedy + Action & Adventure + Science Fiction + + + TV-PG + + + + Bill & Ted's Bogus Journey + Bill and Ted's lyrics create a utopian future, so a tyrant sends evil robot versions of the simple-minded heroes back in time to kill them. Bill and Ted end up in the afterlife, and must outsmart the Grim Reaper in order to return to the land of the living to stop their evil counterparts and save their girlfriends. (repeat). + + Alex Winter + Keanu Reeves + William Sadler + Joss Ackland + Pam Grier + George Carlin + David Newman + Peter Hewitt + Connie Tavel + Chris Matheson + + 1991 + Comedy + Action & Adventure + Science Fiction + + + TV-PG + + + + Portlandia + Farm + Comic vignettes chart the lives of offbeat fictional Oregonians. In the premiere, a couple get way too involved in ordering a restaurant meal. Later, two store employees deal with a man (Steve Buscemi) who uses the restroom without making a purchase; and Portland's Adult Hide-and-Seek League stages a competition in a college library. (repeat). + + Fred Armisen + Carrie Brownstein + Chloë Sevigny + Jonathan Krisel + Steve Buscemi + Lorne Michaels + + 2011 + Comedy + + S1 + 1 E1 + + TV-14 + + + 7.6/10 + + + + Portlandia + A Song for Portland + The mayor (Kyle MacLachlan) of Portland gives Carrie and Fred a special assignment. (repeat). + + Fred Armisen + Carrie Brownstein + Chloë Sevigny + Jonathan Krisel + Steve Buscemi + Lorne Michaels + + 2011 + Comedy + + S1 + 1 E2 + + TV-14 + + + 7.6/10 + + + + Portlandia + Aimee + Carrie and Fred are surprised to learn that singer-songwriter Aimee Mann is moonlighting as their maid. (repeat). + + Fred Armisen + Carrie Brownstein + Chloë Sevigny + Jonathan Krisel + Steve Buscemi + Lorne Michaels + + 2011 + Comedy + + S1 + 1 E3 + + TV-14 + + + 7.6/10 + + + + Portlandia + Mayor Is Missing + Carrie and Fred hunt for the mayor, who has disappeared. (repeat). + + Fred Armisen + Carrie Brownstein + Chloë Sevigny + Jonathan Krisel + Steve Buscemi + Lorne Michaels + + 2011 + Comedy + + S1 + 1 E4 + + TV-14 + + + 7.6/10 + + + + Portlandia + Blunderbuss + The town is excited about a new music and film festival. (repeat). + + Fred Armisen + Carrie Brownstein + Chloë Sevigny + Jonathan Krisel + Steve Buscemi + Lorne Michaels + + 2011 + Comedy + + S1 + 1 E5 + + TV-14 + + + 7.6/10 + + + + Portlandia + Baseball + The mayor has big dreams about bringing a big-league baseball team to Portland and recruits Carrie and Fred to help. (repeat). + + Fred Armisen + Carrie Brownstein + Chloë Sevigny + Jonathan Krisel + Steve Buscemi + Lorne Michaels + + 2011 + Comedy + + S1 + 1 E6 + + TV-14 + + + 7.6/10 + + + + Portlandia + Mixologist + In the Season 2 opener, Carrie and Fred discover the world of mixology on a quest away from the city. (repeat). + + Fred Armisen + Carrie Brownstein + Chloë Sevigny + Jonathan Krisel + Steve Buscemi + Lorne Michaels + + 2012 + Comedy + + S2 + 2 E1 + + TV-14 + + + 7.6/10 + + + + Portlandia + One Moore Episode + Doug and Claire become a bit obsessed with "Battlestar Galactica" and it begins to take over their lives. (repeat). + + Fred Armisen + Carrie Brownstein + Chloë Sevigny + Jonathan Krisel + Steve Buscemi + Lorne Michaels + + 2012 + Comedy + + S2 + 2 E2 + + TV-14 + + + 7.6/10 + + + + The Blues Brothers + Two soul-singing brothers are sent on a "mission from God" to raise $5000 to save a Chicago orphanage. On their fund-raising tour de force, they encounter a multitude of mishaps and mayhem. (repeat). + + John Belushi + Dan Aykroyd + James Brown + Cab Calloway + Carrie Fisher + Ray Charles + Elmer Bernstein + John Landis + Bernie Brillstein + + 1980 + Drama + Music + Comedy + Action & Adventure + + + TV-14 + + + + Animal House + At a 1962 College, Dean Vernon Wormer is determined to expel the entire Delta Tau Chi Fraternity, but those troublemakers have other plans for him. (repeat). + 1978 + + + Caddyshack + A cash-strapped teen spends a summer working at a ritzy country club in the hopes of earning a caddy scholarship. In order to succeed, he must first win the favor of the elitist Judge Smails, then the caddy golf tournament which the good judge sponsors. Meanwhile, the posh country club has to deal with a brash new member and a destructive gopher hell-bent on destroying their beloved golf course. (repeat). + + Chevy Chase + Rodney Dangerfield + Ted Knight + Bill Murray + Michael O'Keefe + Sarah Holcomb + Johnny Mandel + Harold Ramis + Stan Jolly + Dave Thomas + + 1980 + Comedy + + + TV-14 + + + 4.8/10 + + + + Look Who's Talking + When a woman becomes pregnant after an affair with a client, she is left alone to raise her child, whose thoughts can be heard as a wisecracking narrator. (repeat). + + John Travolta + Kirstie Alley + Olympia Dukakis + George Segal + Abe Vigoda + Twink Caplan + David Kitay + Amy Heckerling + Jonathan D. Krane + Amy Heckerling + + 1989 + Fantasy + Comedy + + + TV-14 + + + 5.1/10 + + + + Everybody Loves Raymond + Lucky Suit + Robert becomes furious with Marie after she ruins his "lucky suit," which he was going to wear to an interview with the FBI. Agent Garfield: Sam Anderson. Secretary: Carole Gutierrez. Robert: Brad Garrett. Marie: Doris Roberts. (repeat). + + Ray Romano + Patricia Heaton + Madylin Sweeten + Brad Garrett + Doris Roberts + Peter Boyle + Gary Halvorson + Will Mackenzie + Lisa Helfrich Jackson + Steve Skrovan + + 2002 + Comedy + + S6 E16 + + TV-PG + + + 7.4/10 + + + + Everybody Loves Raymond + The Skit + Ray and Debra impersonate Frank and Marie in a skit at a 45th wedding-anniversary party hosted by Marie. Stan: Victor Raider-Wexler. Lee: Debra Mooney. Garvin: Len Lesser. Debra: Patricia Heaton. Frank: Peter Boyle. Marie: Doris Roberts. (repeat). + + Ray Romano + Patricia Heaton + Madylin Sweeten + Brad Garrett + Doris Roberts + Peter Boyle + Gary Halvorson + Will Mackenzie + Lisa Helfrich Jackson + Steve Skrovan + + 2002 + Comedy + + S6 E17 + + TV-PG + + + 7.4/10 + + + + Everybody Loves Raymond + The Breakup Tape + Debra wants to know why Ray has kept a tape from 1982 on which one of Ray's former girlfriends breaks up with him, but Ray won't tell her. Debra: Patricia Heaton. (repeat). + + Ray Romano + Patricia Heaton + Madylin Sweeten + Brad Garrett + Doris Roberts + Peter Boyle + Gary Halvorson + Will Mackenzie + Lisa Helfrich Jackson + Steve Skrovan + + 2002 + Comedy + + S6 E18 + + TV-PG + + + 7.4/10 + + + + Everybody Loves Raymond + Talk to Your Daughter + Ray tries to explain the birds and the bees to Ally, but she throws him for a loop when she instead asks about the meaning of life. Of course, Ray hasn't a clue and quickly runs for cover. To make matters worse, Frank, Marie and Robert come over and offer their ill-formed opinions. Ally: Madylin Sweeten. Gianni: Jon Manfrellotti. Bernie: Tom McGowan. (repeat). + + Ray Romano + Patricia Heaton + Madylin Sweeten + Brad Garrett + Doris Roberts + Peter Boyle + Gary Halvorson + Will Mackenzie + Lisa Helfrich Jackson + Steve Skrovan + + 2002 + Comedy + + S6 E19 + + TV-PG + + + 7.4/10 + + + + Everybody Loves Raymond + A Vote for Debra + Debra runs for president of the governing board at the twins' school, but Ray isn't so sure he wants her to win because it'll mean he will have to spend more time taking care of the boys at home while she attends meetings. Parker: David Hunt. Carrie: Elizabeth Herring. Principal: Kevin Brief. (repeat). + + Ray Romano + Patricia Heaton + Madylin Sweeten + Brad Garrett + Doris Roberts + Peter Boyle + Gary Halvorson + Will Mackenzie + Lisa Helfrich Jackson + Steve Skrovan + + 2002 + Comedy + + S6 E20 + + TV-PG + + + 7.4/10 + + + + Everybody Loves Raymond + ELR: The First Six Years + Part 1 of two. The sitcom celebrates six seasons of laughter with a clip-rich showcase. In addition to the clips, celebrities comment on their own families and how they relate to the Barones. Included: Mary Tyler Moore, Ron Howard, Bob Newhart, Billy Bob Thornton, Larry King, Martin Short, Jon Voight, Norman Lear and Curt Schilling. (repeat). + + Ray Romano + Patricia Heaton + Madylin Sweeten + Brad Garrett + Doris Roberts + Peter Boyle + Gary Halvorson + Will Mackenzie + Lisa Helfrich Jackson + Steve Skrovan + + 2002 + Comedy + + + TV-PG + + + 7.4/10 + + + + Everybody Loves Raymond + The First Six Years Part 2 + Celebrity fans including Ron Howard, Larry King, Mary Tyler Moore, Bob Newhart, Martin Short, Billy Bob Thornton, Jon Voight discuss the series. (repeat). + + Ray Romano + Patricia Heaton + Madylin Sweeten + Brad Garrett + Doris Roberts + Peter Boyle + Gary Halvorson + Will Mackenzie + Lisa Helfrich Jackson + Steve Skrovan + + 2002 + Comedy + + + TV-PG + + + 7.4/10 + + + + Everybody Loves Raymond + Call Me Mom + Ray persuades Debra to call Marie "Mom," but when she does, Marie's reaction isn't at all what Debra expected. Lois: Katherine Helmond. Debra: Patricia Heaton. Marie: Doris Roberts. (repeat). + + Ray Romano + Patricia Heaton + Madylin Sweeten + Brad Garrett + Doris Roberts + Peter Boyle + Gary Halvorson + Will Mackenzie + Lisa Helfrich Jackson + Steve Skrovan + + 2002 + Comedy + + S6 E21 + + TV-PG + + + 7.4/10 + + + + Everybody Loves Raymond + Mother's Day + Debra and Marie stop talking to each other when Debra puts an abrupt end to one of Marie's unannounced visits, which comes just as Debra is trying to get the kids into the tub and Marie wants the twins to regale her friends with a knock-knock joke. Hilda: Anne Gee Byrd. Artie: Fred Ornstein. Ally: Madylin Sweeten. Debra: Patricia Heaton. Marie: Doris Roberts. (repeat). + + Ray Romano + Patricia Heaton + Madylin Sweeten + Brad Garrett + Doris Roberts + Peter Boyle + Gary Halvorson + Will Mackenzie + Lisa Helfrich Jackson + Steve Skrovan + + 2002 + Comedy + + S6 E22 + + TV-PG + + + 7.4/10 + + + + Everybody Loves Raymond + The Bigger Person + Ray and Frank take advantage of the silent feud between Debra and Marie to get what they want, but Robert is horrified by their selfish actions. Robert: Brad Garrett. Frank: Peter Boyle. Marie: Doris Roberts. (repeat). + + Ray Romano + Patricia Heaton + Madylin Sweeten + Brad Garrett + Doris Roberts + Peter Boyle + Gary Halvorson + Will Mackenzie + Lisa Helfrich Jackson + Steve Skrovan + + 2002 + Comedy + + S6 E24 + + TV-PG + + + 7.4/10 + + + + Everybody Loves Raymond + The First Time (3) + In this flashback episode, Ray and Debra reminisce about the first time they made love. Suddenly the clock turns back 15 years, and Ray's pals are teaching him about signals women supposedly send out when they want to have sex. Ray believes Debra is giving off those signals...as does Marie, who'll stop at nothing to prevent her beloved son from having premarital sex. Father Hubley: Charles Durning. Gianni: Jon Manfrellotti. Bernie: Tom McGowan. (repeat). + + Ray Romano + Patricia Heaton + Madylin Sweeten + Brad Garrett + Doris Roberts + Peter Boyle + Gary Halvorson + Will Mackenzie + Lisa Helfrich Jackson + Steve Skrovan + + 2002 + Comedy + + S6 E23 + + TV-PG + + + 7.4/10 + + + + Everybody Loves Raymond + The Cult + Robert, distraught over a feud between Marie and Debra, joins a support group. But the family fears it's a cult, so they work to free him from it. Judy: Sherri Shepherd. Mariann: Susan Yeagley. Gerard: Fred Stoller. Robert: Brad Garrett. (repeat). + + Ray Romano + Patricia Heaton + Madylin Sweeten + Brad Garrett + Doris Roberts + Peter Boyle + Gary Halvorson + Will Mackenzie + Lisa Helfrich Jackson + Steve Skrovan + + 2002 + Comedy + + S7 E1 + + TV-PG + + + 7.4/10 + + + + Everybody Loves Raymond + Counseling + Debra convinces Ray they need marriage counseling. (repeat). + + Ray Romano + Patricia Heaton + Madylin Sweeten + Brad Garrett + Doris Roberts + Peter Boyle + Gary Halvorson + Will Mackenzie + Lisa Helfrich Jackson + Steve Skrovan + + 2002 + Comedy + + + TV-PG + + + 7.4/10 + + + + Three's Company + The Case of the Missing Blonde + Cindy goes to meet her father while he is visiting town but Jack and Janet think that she has been kidnapped. (repeat). + + Joyce DeWitt + John Ritter + Richard Kline + Priscilla Barnes + Dave Powers + Bill Hobin + Paul Wayne + + 1981 + Comedy + + S5 + 5 E21 + + TV-PG + + + + Three's Company + Honest Jack Tripper + Jack swears off fibbing for good, but then learns that blatant honesty is not always the best policy. Lisa: Anne Schedeen. Janet: Joyce DeWitt. Luanne: Shell Kepler. Cindy: Jenilee Harrison. Furley: Don Knotts. Larry: Richard Kline. (repeat). + + Joyce DeWitt + John Ritter + Richard Kline + Priscilla Barnes + Dave Powers + Bill Hobin + Paul Wayne + + 1981 + Comedy + + S5 + 5 E22 + + TV-PG + + + + Three's Company + Dying to Meet You + Jack fakes his death to avoid dealing with a girl's jealous boyfriend. (repeat). + + Joyce DeWitt + John Ritter + Richard Kline + Priscilla Barnes + Dave Powers + Bill Hobin + Paul Wayne + + 1981 + Comedy + + S5 + 5 E20 + + TV-PG + + + + Three's Company + Jack Bares All + Part 1 of two. A new roommate starts off on the wrong foot with Jack (John Ritter). Janet: Joyce DeWitt. Angelino: Jordan Charney. Filipe: Gino Conforti. Didi: Shell Kepler. Dr. Cooper: Bobby Ellerbee. (repeat). + + Joyce DeWitt + John Ritter + Richard Kline + Priscilla Barnes + Dave Powers + Bill Hobin + Paul Wayne + + 1981 + Comedy + + S6 + 6 E1 + + TV-PG + + + + Three's Company + Jack Bares All + Conclusion. Jack and Larry scheme to get rid of Terri (Priscilla Barnes). Jack: John Ritter. Larry: Richard Kline. Cindy: Jenilee Harrison. Furley: Don Knotts. (repeat). + + Joyce DeWitt + John Ritter + Richard Kline + Priscilla Barnes + Dave Powers + Bill Hobin + Paul Wayne + + 1981 + Comedy + + S6 + 6 E2 + + TV-PG + + + + Three's Company + Terri Makes Her Move + Janet suspects that Terri has a more than platonic interest in Jack. Terri: Priscilla Barnes. Mrs. Alden: Mina Kolb (repeat). + + Joyce DeWitt + John Ritter + Richard Kline + Priscilla Barnes + Dave Powers + Bill Hobin + Paul Wayne + + 1981 + Comedy + + S6 + 6 E3 + + TV-PG + + + + Three's Company + Professor Jack + Jack is giving cooking lessons to raise some money and Terri mistakes them as love lessons. (repeat). + + Joyce DeWitt + John Ritter + Richard Kline + Priscilla Barnes + Dave Powers + Bill Hobin + Paul Wayne + + 1981 + Comedy + + S6 + 6 E4 + + TV-PG + + + + Three's Company + Eyewitness Blues + A plainclothes cop moves in to protect Jack, who witnessed an armed robbery. Jack: John Ritter. Robber: Alan McRae. Lieutenant: Edmund Gilbert. (repeat). + + Joyce DeWitt + John Ritter + Richard Kline + Priscilla Barnes + Dave Powers + Bill Hobin + Paul Wayne + + 1981 + Comedy + + S6 + 6 E8 + + TV-PG + + + + Three's Company + Two Flew Over the Cuckoo's Nest + Jack and Janet think a doctor that Terri brought home is really a mental patient. (repeat). + + Joyce DeWitt + John Ritter + Richard Kline + Priscilla Barnes + Dave Powers + Bill Hobin + Paul Wayne + + 1981 + Comedy + + S6 + 6 E7 + + TV-PG + + + + Gilligan's Island + Meet the Meteor + Rays from a grounded meteor age trees 50 years in seven days, causing Gilligan to dream about that aging's impact on the castaways. Gilligan: Bob Denver. Skipper: Alan Hale. Professor: Russell Johnson. Howell: Jim Backus. Ginger: Tina Louise. Mrs. Howell: Natalie Schafer. Mary Ann: Dawn Wells. (repeat). + + Alan Hale + Bob Denver + Tina Louise + Jim Backus + Natalie Schafer + Dawn Wells + Jack Arnold + Leslie Goodwins + Jack Arnold + Roland MacLane + + 1966 + Comedy + S2 E32 + + TV-G + + + + Gilligan's Island + Up at Bat + Bitten by a bat, Gilligan thinks he's turning into a vampire---a feeling heightened by his dream in which he's a Transylvanian count in 1895. The other castaways are servants and guests at the count's castle. Gilligan: Bob Denver. Skipper: Alan Hale. Howell: Jim Backus. Ginger: Tina Louise. The Professor: Russell Johnson. (repeat). + + Alan Hale + Bob Denver + Tina Louise + Jim Backus + Natalie Schafer + Dawn Wells + Jack Arnold + Leslie Goodwins + Jack Arnold + Roland MacLane + + 1966 + Comedy + S3 E1 + + TV-G + + + + Gilligan's Island + Gilligan vs. Gilligan + Bob Denver has a dual role as Gilligan and his look-alike, a spy whose government thinks the castaways are on a secret mission. Gilligan: Bob Denver. Skipper: Alan Hale. Howell: Jim Backus. Ginger: Tina Louise. The Professor: Russell Johnson. (repeat). + + Alan Hale + Bob Denver + Tina Louise + Jim Backus + Natalie Schafer + Dawn Wells + Jack Arnold + Leslie Goodwins + Jack Arnold + Roland MacLane + + 1966 + Comedy + S3 E2 + + TV-G + + + + Gilligan's Island + Pass the Vegetables, Please + Radioactive seeds yield vegetables that give the castaways unusual powers. For example, spinach-eating Gilligan can lift tree trunks; and Mary Ann, who ate carrots, can see small things 20 miles away. Gilligan: Bob Denver. Skipper: Alan Hale. Howell: Jim Backus. Ginger: Tina Louise. The Professor: Russell Johnson. Mary Ann: Dawn Wells. (repeat). + + Alan Hale + Bob Denver + Tina Louise + Jim Backus + Natalie Schafer + Dawn Wells + Jack Arnold + Leslie Goodwins + Jack Arnold + Roland MacLane + + 1966 + Comedy + S3 E3 + + TV-G + + + + Gilligan's Island + The Producer + Phil Silvers is a flamboyant film producer and plane-crash survivor who lends the castaways his ears for their musical version of "Hamlet." It ain't Shakespeare, but it does get the attention of the impresario, who soon swipes all the singing parts for himself (a quicksilver bit of shtick for Silvers). Gilligan: Bob Denver. Skipper: Alan Hale. Ginger: Tina Louise. Howell: Jim Backus. (repeat). + + Alan Hale + Bob Denver + Tina Louise + Jim Backus + Natalie Schafer + Dawn Wells + Jack Arnold + Leslie Goodwins + Jack Arnold + Roland MacLane + + 1966 + Comedy + S3 E4 + + TV-G + + + + Gilligan's Island + Voodoo + Voodoo bedevils the castaways---thanks to look-alike dolls that a witch doctor made to bring the islanders under his spell. He even turns the Professor into a zombie. Witch Doctor: Eddie Little Sky. Gilligan: Bob Denver. Skipper: Alan Hale. Howell: Jim Backus. Ginger: Tina Louise. The Professor: Russell Johnson. Mary Ann: Dawn Wells. Mrs. Howell: Natalie Schafer. (repeat). + + Alan Hale + Bob Denver + Tina Louise + Jim Backus + Natalie Schafer + Dawn Wells + Jack Arnold + Leslie Goodwins + Jack Arnold + Roland MacLane + + 1966 + Comedy + S3 E5 + + TV-G + + + + Gilligan's Island + Where There's a Will + An ill Howell makes the castaways heirs to his fortune---then reconsiders when he thinks that his new legatees are trying to do him in. Howell: Jim Backus. Gilligan: Bob Denver. Skipper: Alan Hale. Ginger: Tina Louise. The Professor: Russell Johnson. Mary Ann: Dawn Wells. (repeat). + + Alan Hale + Bob Denver + Tina Louise + Jim Backus + Natalie Schafer + Dawn Wells + Jack Arnold + Leslie Goodwins + Jack Arnold + Roland MacLane + + 1966 + Comedy + S3 E6 + + TV-G + + + + Gilligan's Island + Man with a Net + Veteran character actor John McGiver plays a butterfly buff, whom the castaways help search for an elusive rarity in the hope that he'll help them get off the island. McGiver had a similar role as a quirky bird-watcher in 1962's "Mr. Hobbs Takes a Vacation," which starred James Stewart. Gilligan: Bob Denver. Skipper: Alan Hale. Howell: Jim Backus. Ginger: Tina Louise. Mary Ann: Dawn Wells. (repeat). + + Alan Hale + Bob Denver + Tina Louise + Jim Backus + Natalie Schafer + Dawn Wells + Jack Arnold + Leslie Goodwins + Jack Arnold + Roland MacLane + + 1966 + Comedy + S3 E7 + + TV-G + + + + Parks and Recreation + End of the World + A local group predicts that the end of the world is near, prompting everyone to reflect on their lives. Tom decides to throw a huge party, while April helps Andy check items off his "bucket list." (repeat). + + Amy Poehler + Aziz Ansari + Aubrey Plaza + Nick Offerman + Chris Pratt + Retta + Mark Rivers + Dean Holland + Troy Miller + Greg Daniels + Joe Mande + + 2011 + Comedy + + S4 + 4 E6 + + TV-PG + + + 6.7/10 + + + + Parks and Recreation + The Treaty + Leslie hosts a Model United Nations at a Pawnee high school; Ron searches for a replacement for Tom; Chris seeks Ann's advice on love after a date cancels on him. (repeat). + + Amy Poehler + Aziz Ansari + Aubrey Plaza + Nick Offerman + Chris Pratt + Retta + Mark Rivers + Dean Holland + Troy Miller + Greg Daniels + Joe Mande + + 2011 + Comedy + + S4 + 4 E7 + + TV-PG + + + 6.7/10 + + + + Parks and Recreation + Smallest Park + Leslie builds the smallest park in Indiana in hopes of attracting tourists; April and Ron encourage Andy to go to college; Tom and Jerry are tasked with redesigning the Parks and Recreation Department logo. (repeat). + + Amy Poehler + Aziz Ansari + Aubrey Plaza + Nick Offerman + Chris Pratt + Retta + Mark Rivers + Dean Holland + Troy Miller + Greg Daniels + Joe Mande + + 2011 + Comedy + + S4 + 4 E8 + + TV-PG + + + 6.7/10 + + + + Parks and Recreation + The Trial of Leslie Knope + Leslie goes on trial and defends her actions. (repeat). + + Amy Poehler + Aziz Ansari + Aubrey Plaza + Nick Offerman + Chris Pratt + Retta + Mark Rivers + Dean Holland + Troy Miller + Greg Daniels + Joe Mande + + 2011 + Comedy + + S4 + 4 E9 + + TV-PG + + + 6.7/10 + + + + Parks and Recreation + Citizen Knope + Frustrated by how hard it is to get things done from inside the Parks Dept., Leslie forms a citizen action group and fights from the outside. Meanwhile, everyone in the office tries to come up with the perfect Christmas gift for Leslie. (repeat). + + Amy Poehler + Aziz Ansari + Aubrey Plaza + Nick Offerman + Chris Pratt + Retta + Mark Rivers + Dean Holland + Troy Miller + Greg Daniels + Joe Mande + + 2011 + Comedy + + S4 + 4 E10 + + TV-PG + + + 6.7/10 + + + + Parks and Recreation + The Comeback Kid + Leslie stages an attention-getting event. Meanwhile, Andy and April adopt a pet, and Ben takes up a new hobby. (repeat). + + Amy Poehler + Aziz Ansari + Aubrey Plaza + Nick Offerman + Chris Pratt + Retta + Mark Rivers + Dean Holland + Troy Miller + Greg Daniels + Joe Mande + + 2012 + Comedy + + S4 + 4 E11 + + TV-PG + + + 6.7/10 + + + + Parks and Recreation + Campaign Ad + Leslie and Ben clash while working on her first campaign ad. Elsewhere, Chris tries to befriend Ron, making Ron very uncomfortable, while April and Andy take a trip to the doctor. (repeat). + + Amy Poehler + Aziz Ansari + Aubrey Plaza + Nick Offerman + Chris Pratt + Retta + Mark Rivers + Dean Holland + Troy Miller + Greg Daniels + Joe Mande + + 2012 + Comedy + + S4 + 4 E12 + + TV-PG + + + 6.7/10 + + + + Parks and Recreation + Bowling for Votes + Feedback from a focus group prompts Leslie to host a bowling party in hopes of gathering support for her campaign. Meanwhile, April, Chris, Donna and Jerry begin cold calling voters while competing to see who can raise the most money for Leslie's campaign. (repeat). + + Amy Poehler + Aziz Ansari + Aubrey Plaza + Nick Offerman + Chris Pratt + Retta + Mark Rivers + Dean Holland + Troy Miller + Greg Daniels + Joe Mande + + 2012 + Comedy + + S4 + 4 E13 + + TV-PG + + + 6.7/10 + + + + Parks and Recreation + Operation Ann + Leslie makes it her mission to find Ann a date for Valentine's Day. Meanwhile, Ben turns to Ron for help in figuring out Leslie's elaborate Valentine scavenger hunt, and Chris is troubled by the status of his love life. (repeat). + + Amy Poehler + Aziz Ansari + Aubrey Plaza + Nick Offerman + Chris Pratt + Retta + Mark Rivers + Dean Holland + Troy Miller + Greg Daniels + Joe Mande + + 2012 + Comedy + + S4 + 4 E14 + + TV-PG + + + 6.7/10 + + + + Parks and Recreation + Dave Returns + Leslie and Ben have an awkward run-in with Leslie's old flame Dave; Andy writes a theme song for Leslie's campaign. (repeat). + + Amy Poehler + Aziz Ansari + Aubrey Plaza + Nick Offerman + Chris Pratt + Retta + Mark Rivers + Dean Holland + Troy Miller + Greg Daniels + Joe Mande + + 2012 + Comedy + + S4 + 4 E15 + + TV-PG + + + 6.7/10 + + + + Parks and Recreation + Sweet Sixteen + Everyone forgets Jerry's birthday. To make up for it, Leslie throws him a post-birthday party at a special location. Meanwhile, Tom is shocked to learn that he and Ann have very different tastes in music. (repeat). + + Amy Poehler + Aziz Ansari + Aubrey Plaza + Nick Offerman + Chris Pratt + Retta + Mark Rivers + Dean Holland + Troy Miller + Greg Daniels + Joe Mande + + 2012 + Comedy + + S4 + 4 E16 + + TV-PG + + + 6.7/10 + + + + Parks and Recreation + Campaign Shake-up + Leslie and Ben are caught off guard when her opponent hires a high-power campaign manager from Washington, D.C. Meanwhile, Ron reluctantly interviews replacements for Leslie after things start falling through the cracks at the office. (repeat). + + Amy Poehler + Aziz Ansari + Aubrey Plaza + Nick Offerman + Chris Pratt + Retta + Mark Rivers + Dean Holland + Troy Miller + Greg Daniels + Joe Mande + + 2012 + Comedy + + S4 + 4 E17 + + TV-PG + + + 6.7/10 + + + + Parks and Recreation + Lucky + Leslie lands a big interview on an Indianapolis talk show. Meanwhile, Andy preps for his final exam in his women's studies course, with help from Ron and April. (repeat). + + Amy Poehler + Aziz Ansari + Aubrey Plaza + Nick Offerman + Chris Pratt + Retta + Mark Rivers + Dean Holland + Troy Miller + Greg Daniels + Joe Mande + + 2012 + Comedy + + S4 + 4 E18 + + TV-PG + + + 6.7/10 + + + + Parks and Recreation + Live Ammo + When Leslie learns that the Parks Dept. budget is about to be cut, she persuades Councilman Pillner to make the cuts elsewhere, but there are unforeseen consequences for her campaign. Elsewhere, Ron and Chris visit a meditation center together. (repeat). + + Amy Poehler + Aziz Ansari + Aubrey Plaza + Nick Offerman + Chris Pratt + Retta + Mark Rivers + Dean Holland + Troy Miller + Greg Daniels + Joe Mande + + 2012 + Comedy + + S4 + 4 E19 + + TV-PG + + + 6.7/10 + + + + Everybody Loves Raymond + Homework + Ray must address the school district's curriculum review board after he complains to Ally's teacher that Ally has too much homework and the teacher agrees with him. Miss Purcell: Kimberly Scott. Guy: Jerry Lambert. Silber: Diana Tanaka. Ally: Madylin Sweeten. (repeat). + + Ray Romano + Patricia Heaton + Madylin Sweeten + Brad Garrett + Doris Roberts + Peter Boyle + Gary Halvorson + Will Mackenzie + Lisa Helfrich Jackson + Steve Skrovan + + 2002 + Comedy + + S7 E3 + + TV-PG + + + 7.4/10 + + + + Everybody Loves Raymond + Pet the Bunny + As a challenge to himself, Ray writes an early eulogy for Frank in which he recalls a time when he watched his so-called tough dad pet a bunny. Unfortunately, Frank learns of it and vehemently denies that the event ever occurred. Meanwhile, Marie wants to know where her eulogy is. Stan: Victor Raider-Wexler. Garvin: Len Lesser. Frank: Peter Boyle. Marie: Doris Roberts. (repeat). + + Ray Romano + Patricia Heaton + Madylin Sweeten + Brad Garrett + Doris Roberts + Peter Boyle + Gary Halvorson + Will Mackenzie + Lisa Helfrich Jackson + Steve Skrovan + + 2002 + Comedy + + S7 E4 + + TV-PG + + + 7.4/10 + + + + Everybody Loves Raymond + Who Am I? + Ray thinks something is wrong with him after he returns from a night out with the guys and admits to Debra that he didn't enjoy it. She thinks it's a sign that he's finally growing up, but she's horrified when Ray says he wants to join his dad's lodge. Gianni: Jon Manfrellotti. Max: Max Rosenthal. Albert: Albert Romano. Bernie: Tom McGowan. Linda: Maggie Wheeler. Stan: Victor Raider-Wexler. Garvin: Len Lesser. Brian: James Rich. Everett: J.G. Hertzler. (repeat). + + Ray Romano + Patricia Heaton + Madylin Sweeten + Brad Garrett + Doris Roberts + Peter Boyle + Gary Halvorson + Will Mackenzie + Lisa Helfrich Jackson + Steve Skrovan + + 2002 + Comedy + + S7 E5 + + TV-PG + + + 7.4/10 + + + + Everybody Loves Raymond + Robert Needs Money + Ray and Debra give Robert $1000 to help him out after his pay is cut, and they are shocked by what he plans to do with the money. Robert: Brad Garrett. Debra: Patricia Heaton. Ray: Ray Romano. (repeat). + + Ray Romano + Patricia Heaton + Madylin Sweeten + Brad Garrett + Doris Roberts + Peter Boyle + Gary Halvorson + Will Mackenzie + Lisa Helfrich Jackson + Steve Skrovan + + 2002 + Comedy + + S7 E6 + + TV-PG + + + 7.4/10 + + + + Two and a Half Men + Captain Terry's Spray-On Hair + Charlie's male ego is bruised when he learns that he hasn't been satisfying Chelsea; and Alan tries a cheap cure for his thinning hair. (repeat). + + Jon Cryer + Conchata Ferrell + Marin Hinkle + April Bowlby + Ryan Stiles + Holland Taylor + Grant Geissman + James Widdoes + Andy Ackerman + Kim Tannenbaum + Eddie Gorodetsky + + 2012 + Drama + Family + Comedy + + S7 + 7 E9 + + TV-14 + + + 6.7/10 + + + + Two and a Half Men + That's Why They Call It Ball Room + Charlie discovers a secret that Chelsea's been keeping from him regarding her finances. (repeat). + + Jon Cryer + Conchata Ferrell + Marin Hinkle + April Bowlby + Ryan Stiles + Holland Taylor + Grant Geissman + James Widdoes + Andy Ackerman + Kim Tannenbaum + Eddie Gorodetsky + + 2019 + Drama + Family + Comedy + + S7 + 7 E10 + + TV-14 + + + 6.7/10 + + + + Two and a Half Men + Warning, It's Dirty + Charlie teaches Jake the tricks of infidelity while his girlfriend is away for the holidays; Evelyn invites a legendary TV producer (Carl Reiner) to Charlie's for Christmas dinner. (repeat). + + Jon Cryer + Conchata Ferrell + Marin Hinkle + April Bowlby + Ryan Stiles + Holland Taylor + Grant Geissman + James Widdoes + Andy Ackerman + Kim Tannenbaum + Eddie Gorodetsky + + 2009 + Drama + Family + Comedy + + S7 + 7 E11 + + TV-14 + + + 6.7/10 + + + + Two and a Half Men + Fart Jokes, Pie and Celeste + Jake tries to win back his ex-girlfriend by writing her love songs, while Alan and Herb try to hide their friendship from Judith. (repeat). + + Jon Cryer + Conchata Ferrell + Marin Hinkle + April Bowlby + Ryan Stiles + Holland Taylor + Grant Geissman + James Widdoes + Andy Ackerman + Kim Tannenbaum + Eddie Gorodetsky + + 2010 + Drama + Family + Comedy + + S7 + 7 E12 + + TV-14 + + + 6.7/10 + + + + Two and a Half Men + Yay, No Polyps! + Charlie gets a colonoscopy just to get out of a trip to see Chelsea's parents, but he returns home to find them there. Tom: Stacy Keach. (repeat). + + Jon Cryer + Conchata Ferrell + Marin Hinkle + April Bowlby + Ryan Stiles + Holland Taylor + Grant Geissman + James Widdoes + Andy Ackerman + Kim Tannenbaum + Eddie Gorodetsky + + 2010 + Drama + Family + Comedy + + S7 + 7 E13 + + TV-14 + + + 6.7/10 + + + + Two and a Half Men + Crude and Uncalled For + Alan gets into a bar fight and lands in jail, while Charlie fears that Chelsea likes Alan's lawyer (Steven Eckholdt). (repeat). + + Jon Cryer + Conchata Ferrell + Marin Hinkle + April Bowlby + Ryan Stiles + Holland Taylor + Grant Geissman + James Widdoes + Andy Ackerman + Kim Tannenbaum + Eddie Gorodetsky + + 2010 + Drama + Family + Comedy + + S7 + 7 E14 + + TV-14 + + + 6.7/10 + + + + Two and a Half Men + Aye, Aye, Captain Douche + Chelsea has had enough of Charlie's jealousy, which is threatening their relationship. (repeat). + + Jon Cryer + Conchata Ferrell + Marin Hinkle + April Bowlby + Ryan Stiles + Holland Taylor + Grant Geissman + James Widdoes + Andy Ackerman + Kim Tannenbaum + Eddie Gorodetsky + + 2015 + Drama + Family + Comedy + + S7 + 7 E15 + + TV-14 + + + 6.7/10 + + + + Two and a Half Men + Tinkle Like a Princess + Charlie goes to Las Vegas and returns with his new wife, but it's not Chelsea; and Chelsea's dad visits with his boyfriend. Stacy Keach, John Amos. (repeat). + + Jon Cryer + Conchata Ferrell + Marin Hinkle + April Bowlby + Ryan Stiles + Holland Taylor + Grant Geissman + James Widdoes + Andy Ackerman + Kim Tannenbaum + Eddie Gorodetsky + + 2012 + Drama + Family + Comedy + + S7 + 7 E16 + + TV-14 + + + 6.7/10 + + + + Two and a Half Men + I Found Your Moustache + Charlie and Chelsea reunite briefly, giving Charlie hope that they could get back together. (repeat). + + Jon Cryer + Conchata Ferrell + Marin Hinkle + April Bowlby + Ryan Stiles + Holland Taylor + Grant Geissman + James Widdoes + Andy Ackerman + Kim Tannenbaum + Eddie Gorodetsky + + 2015 + Drama + Family + Comedy + + S7 + 7 E17 + + TV-14 + + + 6.7/10 + + + + Two and a Half Men + Ixnay on the Oggie Day + Tricia Helfer returns as Chelsea's college friend, whom Charlie meets again; and Alan has a surprising effect on a patient (Frances Fisher). (repeat). + + Jon Cryer + Conchata Ferrell + Marin Hinkle + April Bowlby + Ryan Stiles + Holland Taylor + Grant Geissman + James Widdoes + Andy Ackerman + Kim Tannenbaum + Eddie Gorodetsky + + 2010 + Drama + Family + Comedy + + S7 + 7 E18 + + TV-14 + + + 6.7/10 + + + + Two and a Half Men + Boompa Loved His Hookers + Lyndsey asks Alan to move in with her, but he's not sure it's the right thing to do. Meanwhile, Walden worries that Louis' adoption could be in jeopardy if he breaks up with Ms. McMartin. (repeat). + + Jon Cryer + Conchata Ferrell + Marin Hinkle + April Bowlby + Ryan Stiles + Holland Taylor + Grant Geissman + James Widdoes + Andy Ackerman + Kim Tannenbaum + Eddie Gorodetsky + + 2011 + Drama + Family + Comedy + + S12 + 12 E13 + + TV-14 + + + 6.7/10 + + + + Two and a Half Men + Don't Give a Monkey a Gun + Walden and Alan get divorced, but the latter chooses a selfish parting gift that jeopardizes his relationship with Lyndsey. (repeat). + + Jon Cryer + Conchata Ferrell + Marin Hinkle + April Bowlby + Ryan Stiles + Holland Taylor + Grant Geissman + James Widdoes + Andy Ackerman + Kim Tannenbaum + Eddie Gorodetsky + + 2011 + Drama + Family + Comedy + + S12 + 12 E14 + + TV-14 + + + 6.7/10 + + + + 3rd Rock from the Sun + Dick Is From Mars, Sally Is From Venus + Dick assigns Sally (Kristen Johnston) to go on a date and, not surprisingly, the guy turns out to be a jerk. Tommy: Joseph Gordon-Levitt. Albright: Jane Curtin. Nina: Simbi Khali. Brad: Artie Anderson. Dick: John Lithgow. (repeat). + + Simbi Khali + Jan Hooks + Wayne Knight + Elmarie Wendel + Larisa Oleynik + Terry Hughes + James Burrows + Bob Kushell + + 1996 + Comedy + + S1 + 1 E4 + + TV-PG + + + 5.3/10 + + + + 3rd Rock from the Sun + Dick, Smoker + Sally does a slow burn at being the second-in-command; Dick (John Lithgow) takes up smoking. Tommy: Joseph Gordon-Levitt. Harry: French Stewart. Mrs. Dubcek: Elmarie Wendel. (repeat). + + Simbi Khali + Jan Hooks + Wayne Knight + Elmarie Wendel + Larisa Oleynik + Terry Hughes + James Burrows + Bob Kushell + + 1996 + Comedy + + S1 + 1 E5 + + TV-PG + + + 5.3/10 + + + + 3rd Rock from the Sun + Green-eyed Dick + Dick discovers jealousy when Dr. Albright's old boyfriend (Ed Begley Jr.) reenters her life. Kate: Kathryn LaNasa. Emily: Katie Layman. Jeff's Brother: Richard Gilbert-Hill. Dr. Albright: Jane Curtin. (repeat). + + Simbi Khali + Jan Hooks + Wayne Knight + Elmarie Wendel + Larisa Oleynik + Terry Hughes + James Burrows + Bob Kushell + + 1996 + Comedy + + S1 + 1 E6 + + TV-PG + + + 5.3/10 + + + + 3rd Rock from the Sun + Lonely Dick + Dick's one lonely guy when Dr. Albright goes on vacation, and the skin-care industry snares Harry and Sally. Phil Hartman has a cameo as a cosmetics salesman. Harry: French Stewart. Sally: Kristen Johnston. August: Shay Astar. (repeat). + + Simbi Khali + Jan Hooks + Wayne Knight + Elmarie Wendel + Larisa Oleynik + Terry Hughes + James Burrows + Bob Kushell + + 1996 + Comedy + + S1 + 1 E7 + + TV-PG + + + 5.3/10 + + + + 3rd Rock from the Sun + Body & Soul & Dick + When an obnoxious professor (John Mahoney) dies, Dick must deliver his eulogy; Tommy hits it off with a cheerleader (Anna Slotky). Dean Sumner: William Bogert. Mrs. Sumner: Jennifer Rhodes. Professor: Harry Murphy. (repeat). + + Simbi Khali + Jan Hooks + Wayne Knight + Elmarie Wendel + Larisa Oleynik + Terry Hughes + James Burrows + Bob Kushell + + 1996 + Comedy + + S1 + 1 E8 + + TV-PG + + + 5.3/10 + + + + 3rd Rock from the Sun + Ab-Dick-ted + The Solomons meet Dr. Albright's brother (Bronson Pinchot), who claims to have been abducted by aliens. Dr. Albright: Jane Curtin. August: Shay Astar. Nina: Simbi Khali. Dick: John Lithgow. Sally: Kristen Johnston. (repeat). + + Simbi Khali + Jan Hooks + Wayne Knight + Elmarie Wendel + Larisa Oleynik + Terry Hughes + James Burrows + Bob Kushell + + 1996 + Comedy + + S1 + 1 E9 + + TV-PG + + + 5.3/10 + + + + Cooper's Bar + The Set + Wait, when did this become "Britney Lasker's Cooper's Bar?" (repeat). + + Rhea Seehorn + Louis Mustillo + David Conolly + Casey Washington + Kila Kitu + Alfredo De Villa + + 2023 + Drama + Comedy + S2 E5 + + TV-MA + + + + Cooper's Bar + The Premiere + Lights! Camera! Back pain! If Cooper can finally nail his takes, a red-carpet evening awaits... (repeat). + + Rhea Seehorn + Louis Mustillo + David Conolly + Casey Washington + Kila Kitu + Alfredo De Villa + + 2023 + Drama + Comedy + S2 E6 + + TV-MA + + + + 3rd Rock from the Sun + Truth or Dick + Dick discovers the consequences of truth when he repeats Dr. Albright's unflattering comments. Meanwhile, Sally and Harry apply for driver's licenses. Dr. Byron: Richard Roat. Caryn: Denise Nicolet. (repeat). + + Simbi Khali + Jan Hooks + Wayne Knight + Elmarie Wendel + Larisa Oleynik + Terry Hughes + James Burrows + Bob Kushell + + 1996 + Comedy + + S1 + 1 E10 + + TV-PG + + + 5.3/10 + + + + 3rd Rock from the Sun + The Art of Dick + While Dick and Harry take up painting (Harry's good; Dick isn't), Sally takes over the school bake sale with the gusto of Gen. Patton. Mrs. Walters: Lorna Scott. Mrs. Hartzinger: Peggy Billo. (repeat). + + Simbi Khali + Jan Hooks + Wayne Knight + Elmarie Wendel + Larisa Oleynik + Terry Hughes + James Burrows + Bob Kushell + + 1996 + Comedy + + S1 + 1 E11 + + TV-PG + + + 5.3/10 + + + + 3rd Rock from the Sun + Angry Dick + The Solomons learn about the give and take necessary for friendship from their neighbors (Mike Starr, Lois Foraker). Bug: David DeLuise. Pitman: Chris Hogan. Caryn: Danielle Nicolet. Leon: Ian Lithgow. (repeat). + + Simbi Khali + Jan Hooks + Wayne Knight + Elmarie Wendel + Larisa Oleynik + Terry Hughes + James Burrows + Bob Kushell + + 1996 + Comedy + + S1 + 1 E13 + + TV-PG + + + 5.3/10 + + + + 3rd Rock from the Sun + The Dicks They Are a-Changin' + When Dick's evasive about his past, Dr. Albright suspects he's a '60s radical fugitive. Meanwhile, Harry joins a CD-of-the-month club, and is swamped with CDs. Harry: French Stewart. Sally: Kristen Johnston. (repeat). + + Simbi Khali + Jan Hooks + Wayne Knight + Elmarie Wendel + Larisa Oleynik + Terry Hughes + James Burrows + Bob Kushell + + 1996 + Comedy + + S1 + 1 E14 + + TV-PG + + + 5.3/10 + + + + 3rd Rock from the Sun + I Enjoy Being a Dick + Flummoxed by feminism, Dick dons a dress to infiltrate Dr. Albright's women-only study group. Meanwhile, Harry and Sally get jobs at a pancake restaurant. Dr. Blumfeld: Jane Galloway. August: Shay Astar. Nina: Simbi Khali. (repeat). + + Simbi Khali + Jan Hooks + Wayne Knight + Elmarie Wendel + Larisa Oleynik + Terry Hughes + James Burrows + Bob Kushell + + 1996 + Comedy + + S1 + 1 E15 + + TV-PG + + + 5.3/10 + + + + 3rd Rock from the Sun + Dick like Me + Dick decides that the Solomons don't "fit in" on Earth, so he shops for an ethnic group to join. Meanwhile, Sally wants to fit in with Tommy's handsome teacher (John D'Aquino). Nina: Simbi Khali. Caryn: Denise Nicolet. Dick: John Lithgow. (repeat). + + Simbi Khali + Jan Hooks + Wayne Knight + Elmarie Wendel + Larisa Oleynik + Terry Hughes + James Burrows + Bob Kushell + + 1996 + Comedy + + S1 + 1 E16 + + TV-PG + + + 5.3/10 + + + + 3rd Rock from the Sun + Assault with a Deadly Dick + The Solomons' faith in human nature is shaken when they fall victim to crime; Dick makes Tommy join the school basketball team. Don: Wayne Knight. Coach: Michael Milhoan. Mugger: Ray Proscia. Salesman: Lance Nichols. (repeat). + + Simbi Khali + Jan Hooks + Wayne Knight + Elmarie Wendel + Larisa Oleynik + Terry Hughes + James Burrows + Bob Kushell + + 1996 + Comedy + + S1 + 1 E17 + + TV-PG + + + 5.3/10 + + + + 3rd Rock from the Sun + Father Knows Dick + Dick decides that Harry needs a father; Sally meets Randell's domineering mother (Naomi Judd). Randell: Frank D'Aquino. Frank: J. Jay Cohen. Marguerite: Lisa Kaminer. Harry: French Stewart. Sally: Kristen Johnston. (repeat). + + Simbi Khali + Jan Hooks + Wayne Knight + Elmarie Wendel + Larisa Oleynik + Terry Hughes + James Burrows + Bob Kushell + + 1996 + Comedy + + S1 + 1 E18 + + TV-PG + + + 5.3/10 + + + + 3rd Rock from the Sun + Selfish Dick + Albright gets a new office, much to Dick's chagrin; Sally lands in the hospital---where she, Harry and Tommy pretend to be "ER" doctors. Albright: Jane Curtin. Suter: Harry Morgan. Father Rice: Bruce Morrow. Judith: Ileen Getz. (repeat). + + Simbi Khali + Jan Hooks + Wayne Knight + Elmarie Wendel + Larisa Oleynik + Terry Hughes + James Burrows + Bob Kushell + + 1996 + Comedy + + S1 + 1 E19 + + TV-PG + + + 5.3/10 + + + + 3rd Rock from the Sun + See Dick Run + Dr. Albright finally agrees to date Dick; Harry receives an ominous message from the home planet. Randell: John D'Aquino. August: Shay Astar. Nina: Simbi Khali. Sally: Kristen Johnston. Dr. Albright: Jane Curtin. (repeat). + + Simbi Khali + Jan Hooks + Wayne Knight + Elmarie Wendel + Larisa Oleynik + Terry Hughes + James Burrows + Bob Kushell + + 1996 + Comedy + + S1 + 1 E20 + + TV-PG + + + 5.3/10 + + + + Parks and Recreation + The Debate + Leslie squares off against her opponent, Bobby Newport (Paul Rudd), in a televised debate. Ann, Tom and Chris keep busy in the media spin room, while Ron works to save a party for Leslie's donors. Amy Poehler wrote and directed the episode. (repeat). + + Amy Poehler + Aziz Ansari + Aubrey Plaza + Nick Offerman + Chris Pratt + Retta + Mark Rivers + Dean Holland + Troy Miller + Greg Daniels + Alan Yang + + 2012 + Comedy + + S4 + 4 E20 + + TV-PG + + + 6.7/10 + + + + Parks and Recreation + Bus Tour + Leslie embarks on a bus tour on the final day of her campaign, but she becomes distracted by the sudden death of an important person in Pawnee. Elsewhere, Andy investigates a security threat, while Chris discovers a surprising cure for his depression. (repeat). + + Amy Poehler + Aziz Ansari + Aubrey Plaza + Nick Offerman + Chris Pratt + Retta + Mark Rivers + Dean Holland + Troy Miller + Greg Daniels + Alan Yang + + 2012 + Comedy + + S4 + 4 E21 + + TV-PG + + + 6.7/10 + + + + Parks and Recreation + Win, Lose, or Draw + Election Day arrives in Pawnee, and the race between Leslie and Bobby Newport (Paul Rudd) is neck-and-neck in the Season 4 finale. While waiting for the results, everyone reflects on what the future might bring. (repeat). + + Amy Poehler + Aziz Ansari + Aubrey Plaza + Nick Offerman + Chris Pratt + Retta + Mark Rivers + Dean Holland + Troy Miller + Greg Daniels + Alan Yang + + 2012 + Comedy + + S4 + 4 E22 + + TV-PG + + + 6.7/10 + + + + Parks and Recreation + Ms. Knope Goes to Washington + Sens. John McCain (R-Ariz.), Olympia Snowe (R-Maine) and Barbara Boxer (D-Cal.) guest star in the Season 5 opener, which finds Leslie and Andy in Washington, D.C., visiting Ben and April at their new jobs. Back in Pawnee, Ron hosts a barbecue for the entire Parks and Recreation staff. (repeat). + + Amy Poehler + Aziz Ansari + Aubrey Plaza + Nick Offerman + Chris Pratt + Retta + Mark Rivers + Dean Holland + Troy Miller + Greg Daniels + Alan Yang + + 2012 + Comedy + + S5 + 5 E1 + + TV-PG + + + 6.7/10 + + + + Parks and Recreation + Soda Tax + Leslie decides to wage war on obesity in Pawnee in her first mission as city councilor by passing a city-wide soda tax. Meanwhile, Andy tries to get in shape for his police-entrance exam, and Ben struggles to connect with the interns in his office. (repeat). + + Amy Poehler + Aziz Ansari + Aubrey Plaza + Nick Offerman + Chris Pratt + Retta + Mark Rivers + Dean Holland + Troy Miller + Greg Daniels + Alan Yang + + 2012 + Comedy + + S5 + 5 E2 + + TV-PG + + + 6.7/10 + + + + Parks and Recreation + How a Bill Becomes a Law + Leslie helps a local swim team get more practice time by working on a new law that extends the hours at the community pool; Ron finds himself filling a pothole for a local woman (Lucy Lawless) as part of Chris' new plan to solve citizens' problems around the city; April and Ben take a road trip to Pawnee. (repeat). + + Amy Poehler + Aziz Ansari + Aubrey Plaza + Nick Offerman + Chris Pratt + Retta + Mark Rivers + Dean Holland + Troy Miller + Greg Daniels + Alan Yang + + 2012 + Comedy + + S5 + 5 E3 + + TV-PG + + + 6.7/10 + + + + Parks and Recreation + Sex Education + Leslie responds to an STD outbreak among Pawnee seniors by conducting her own sex-education class. At the same time, Tom finds himself gadget-less and turning to Ron for help coping with life without technology; and Ben and April have their first encounter with Congressman Murray. (repeat). + + Amy Poehler + Aziz Ansari + Aubrey Plaza + Nick Offerman + Chris Pratt + Retta + Mark Rivers + Dean Holland + Troy Miller + Greg Daniels + Alan Yang + + 2012 + Comedy + + S5 E4 + + TV-PG + + + 6.7/10 + + + + Parks and Recreation + Halloween Surprise + Halloween brings some upsetting news for Leslie in the form of a job offer for Ben. At the same time, Ron and Andy go trick-or-treating with Diane's daughters, while Tom looks for a new business venture. (repeat). + + Amy Poehler + Aziz Ansari + Aubrey Plaza + Nick Offerman + Chris Pratt + Retta + Mark Rivers + Dean Holland + Troy Miller + Greg Daniels + Alan Yang + + 2012 + Comedy + + S5 + 5 E5 + + TV-PG + + + 6.7/10 + + + + Parks and Recreation + Ben's Parents + Leslie is apprehensive about meeting Ben's divorced parents for the first time; Tom turns to Jean-Ralphio for help pitching his new business venture to Ron; and Chris finds himself on an emotional roller coaster. (repeat). + + Amy Poehler + Aziz Ansari + Aubrey Plaza + Nick Offerman + Chris Pratt + Retta + Mark Rivers + Dean Holland + Troy Miller + Greg Daniels + Alan Yang + + 2012 + Comedy + + S5 + 5 E6 + + TV-PG + + + 6.7/10 + + + + Parks and Recreation + Leslie vs. April + Leslie disapproves of April's plan to transform a lot into a dog park, while Ben gets roped into helping Tom launch his new business venture, and Andy finds himself playing crime-scene investigator. (repeat). + + Amy Poehler + Aziz Ansari + Aubrey Plaza + Nick Offerman + Chris Pratt + Retta + Mark Rivers + Dean Holland + Troy Miller + Greg Daniels + Alan Yang + + 2012 + Comedy + + S5 + 5 E7 + + TV-PG + + + 6.7/10 + + + + Parks and Recreation + Pawnee Commons + Leslie becomes suspicious when an architect from Eagleton responds to her public appeal for park suggestions. Meanwhile, Tom sets up his rent-a-swag business with help from the office; and Andy adds some excitement to his new gig as a security guard. (repeat). + + Amy Poehler + Aziz Ansari + Aubrey Plaza + Nick Offerman + Chris Pratt + Retta + Mark Rivers + Dean Holland + Troy Miller + Greg Daniels + Alan Yang + + 2012 + Comedy + + S5 + 5 E8 + + TV-PG + + + 6.7/10 + + + + Parks and Recreation + Ron and Diane + Ron's new girlfriend, Diane, meets his ex-wife Tammy Two when they all attend a woodworking-awards dinner. At the same time, Jerry throws a holiday party and not everyone is invited. (repeat). + + Amy Poehler + Aziz Ansari + Aubrey Plaza + Nick Offerman + Chris Pratt + Retta + Mark Rivers + Dean Holland + Troy Miller + Greg Daniels + Alan Yang + + 2012 + Comedy + + S5 + 5 E9 + + TV-PG + + + 6.7/10 + + + + Parks and Recreation + Two Parties + Councilman Jamm inserts himself into the bachelorette party Ann has planned for Leslie; at the same time, Chris throws a game night with the guys in honor of Ben's last days as a single man. (repeat). + + Amy Poehler + Aziz Ansari + Aubrey Plaza + Nick Offerman + Chris Pratt + Retta + Mark Rivers + Dean Holland + Troy Miller + Greg Daniels + Alan Yang + + 2013 + Comedy + + S5 + 5 E10 + + TV-PG + + + 6.7/10 + + + + Parks and Recreation + Women in Garbage + Leslie's push to get more women in government jobs results in her and April collecting garbage. Meanwhile, Tom asks Andy and Ben to teach him about basketball; and Ron takes on the responsibility of watching Diane's kids while their babysitter is out of town. (repeat). + + Amy Poehler + Aziz Ansari + Aubrey Plaza + Nick Offerman + Chris Pratt + Retta + Mark Rivers + Dean Holland + Troy Miller + Greg Daniels + Alan Yang + + 2013 + Comedy + + S5 + 5 E11 + + TV-PG + + + 6.7/10 + + + + Everybody Loves Raymond + The Sigh + Ray moves his things out of the master bathroom and into the kids' bath so Debra can have more space, but he soon regrets it when his dad and brother start teasing him and tell him that he is no longer king of his own house. Debra: Patricia Heaton. Robert: Brad Garrett. Ray: Ray Romano. (repeat). + + Ray Romano + Patricia Heaton + Madylin Sweeten + Brad Garrett + Doris Roberts + Peter Boyle + Gary Halvorson + Will Mackenzie + Lisa Helfrich Jackson + Steve Skrovan + + 2002 + Comedy + + S7 E7 + + TV-PG + + + 7.4/10 + + + + Everybody Loves Raymond + The Annoying Kid + Ray and Debra's friendship with a new couple is threatened by the pair's obnoxious 8-year-old son, who constantly annoys Ray. Lauren: Cheryl Hines. Neil: Craig Anton. Spencer: Brett Buford. (repeat). + + Ray Romano + Patricia Heaton + Madylin Sweeten + Brad Garrett + Doris Roberts + Peter Boyle + Gary Halvorson + Will Mackenzie + Lisa Helfrich Jackson + Steve Skrovan + + 2002 + Comedy + + S7 E8 + + TV-PG + + + 7.4/10 + + + + Everybody Loves Raymond + She's the One + Everyone thinks Robert has found true love until Ray witnesses his brother's new girlfriend (Elizabeth Bogush) do something shocking, which Robert refuses to believe. Amy: Monica Horan. Rick: Aaron D. Spears. Robert: Brad Garrett. (repeat). + + Ray Romano + Patricia Heaton + Madylin Sweeten + Brad Garrett + Doris Roberts + Peter Boyle + Gary Halvorson + Will Mackenzie + Lisa Helfrich Jackson + Steve Skrovan + + 2002 + Comedy + + S7 E9 + + TV-PG + + + 7.4/10 + + + + Everybody Loves Raymond + The Thought That Counts + Robert gives Ray a great idea on what to get Debra for Christmas, but he isn't very happy when Ray takes all the credit for it. Amy: Monica Horan. Robert: Brad Garrett. Debra: Patricia Heaton. (repeat). + + Ray Romano + Patricia Heaton + Madylin Sweeten + Brad Garrett + Doris Roberts + Peter Boyle + Gary Halvorson + Will Mackenzie + Lisa Helfrich Jackson + Steve Skrovan + + 2002 + Comedy + + S7 E11 + + TV-PG + + + 7.4/10 + + + + Two and a Half Men + Keith Moon is Vomiting in His Grave + Alan tolerates Jake's new friend, who is a bad influence, because he's attracted to the boy's mother, played by Courtney Thorne-Smith. (repeat). + + Jon Cryer + Conchata Ferrell + Marin Hinkle + April Bowlby + Ryan Stiles + Holland Taylor + Grant Geissman + James Widdoes + Andy Ackerman + Kim Tannenbaum + Eddie Gorodetsky + + 2012 + Drama + Family + Comedy + + S7 + 7 E19 + + TV-14 + + + 6.7/10 + + + + Two and a Half Men + I Called Him Magoo + Alan plans a romantic night with his new girlfriend (Courtney Thorne-Smith), hoping for more intimacy. (repeat). + + Jon Cryer + Conchata Ferrell + Marin Hinkle + April Bowlby + Ryan Stiles + Holland Taylor + Grant Geissman + James Widdoes + Andy Ackerman + Kim Tannenbaum + Eddie Gorodetsky + + 2016 + Drama + Family + Comedy + + S7 + 7 E20 + + TV-14 + + + 6.7/10 + + + + Two and a Half Men + Gumby with a Pokey + While Alan and Jake are away on a road trip, Charlie is visited by the ghosts of his former girlfriends. ZZ Top make a cameo appearance. (repeat). + + Jon Cryer + Conchata Ferrell + Marin Hinkle + April Bowlby + Ryan Stiles + Holland Taylor + Grant Geissman + James Widdoes + Andy Ackerman + Kim Tannenbaum + Eddie Gorodetsky + + 2012 + Drama + Family + Comedy + + S7 + 7 E21 + + TV-14 + + + 6.7/10 + + + + Two and a Half Men + This Is Not Gonna End Well + In the seventh-season finale, Charlie's license is suspended and Jake becomes his driver; and Alan plans to attend Chelsea's birthday party, which doesn't please Charlie. (repeat). + + Jon Cryer + Conchata Ferrell + Marin Hinkle + April Bowlby + Ryan Stiles + Holland Taylor + Grant Geissman + James Widdoes + Andy Ackerman + Kim Tannenbaum + Eddie Gorodetsky + + 2010 + Drama + Family + Comedy + + S7 + 7 E22 + + TV-14 + + + 6.7/10 + + + + Two and a Half Men + Three Girls and a Guy Named Bud + In the eighth-season opener, Jake goes to live with his mom and Herb when he finds out that his dad is dating Eldridge's mom; and Charlie thinks it's time to cut back on his drinking. (repeat). + + Jon Cryer + Conchata Ferrell + Marin Hinkle + April Bowlby + Ryan Stiles + Holland Taylor + Grant Geissman + James Widdoes + Andy Ackerman + Kim Tannenbaum + Eddie Gorodetsky + + 2012 + Drama + Family + Comedy + + S8 + 8 E1 + + TV-14 + + + 6.7/10 + + + + Two and a Half Men + A Bottle of Wine and a Jackhammer + Lyndsey asks Alan to move in with her, and an overjoyed Charlie tries to persuade Alan to accept the offer. (repeat). + + Jon Cryer + Conchata Ferrell + Marin Hinkle + April Bowlby + Ryan Stiles + Holland Taylor + Grant Geissman + James Widdoes + Andy Ackerman + Kim Tannenbaum + Eddie Gorodetsky + + 2012 + Drama + Family + Comedy + + S8 E2 + + TV-14 + + + 6.7/10 + + + + Two and a Half Men + A Pudding-Filled Cactus + Alan moves in with Lyndsey, but he continues his affair with Melissa, whom he meets at Charlie's house. (repeat). + + Jon Cryer + Conchata Ferrell + Marin Hinkle + April Bowlby + Ryan Stiles + Holland Taylor + Grant Geissman + James Widdoes + Andy Ackerman + Kim Tannenbaum + Eddie Gorodetsky + + 2012 + Drama + Family + Comedy + + S8 E3 + + TV-14 + + + 6.7/10 + + + + Two and a Half Men + Hookers, Hookers, Hookers + When Alan burns down Lyndsey's home, Lyndsey and Eldridge move into Charlie's house. (repeat). + + Jon Cryer + Conchata Ferrell + Marin Hinkle + April Bowlby + Ryan Stiles + Holland Taylor + Grant Geissman + James Widdoes + Andy Ackerman + Kim Tannenbaum + Eddie Gorodetsky + + 2012 + Drama + Family + Comedy + + S8 E4 + + TV-14 + + + 6.7/10 + + + + Two and a Half Men + The Immortal Mr. Billy Joel + Alan pretends to be Charlie for a night, while Charlie is away getting cosmetic surgery. (repeat). + + Jon Cryer + Conchata Ferrell + Marin Hinkle + April Bowlby + Ryan Stiles + Holland Taylor + Grant Geissman + James Widdoes + Andy Ackerman + Kim Tannenbaum + Eddie Gorodetsky + + 2012 + Drama + Family + Comedy + + S8 E5 + + TV-14 + + + 6.7/10 + + + + Two and a Half Men + Twanging Your Magic Clanger + Charlie dates a woman who's slightly older, but the age difference is just enough to trouble him. (repeat). + + Jon Cryer + Conchata Ferrell + Marin Hinkle + April Bowlby + Ryan Stiles + Holland Taylor + Grant Geissman + James Widdoes + Andy Ackerman + Kim Tannenbaum + Eddie Gorodetsky + + 2015 + Drama + Family + Comedy + + S8 E6 + + TV-14 + + + 6.7/10 + + + + Two and a Half Men + Of Course He's Dead - Part 1 + Part 1 of 2. The series finale recalls the life—and presumed death—of Charlie Harper as it finally dawns on Alan that he never had proof that his brother died. (repeat). + + Jon Cryer + Conchata Ferrell + Marin Hinkle + April Bowlby + Ryan Stiles + Holland Taylor + Grant Geissman + James Widdoes + Andy Ackerman + Kim Tannenbaum + Eddie Gorodetsky + + 2015 + Drama + Family + Comedy + + S12 + 12 E15 + + TV-14 + + + 6.7/10 + + + + Two and a Half Men + Of Course He's Dead - Part 2 + Conclusion. The series finale recalls the life—and presumed death—of Charlie Harper as it finally dawns on Alan that he never had proof that his brother died. (repeat). + + Jon Cryer + Conchata Ferrell + Marin Hinkle + April Bowlby + Ryan Stiles + Holland Taylor + Grant Geissman + James Widdoes + Andy Ackerman + Kim Tannenbaum + Eddie Gorodetsky + + 2015 + Drama + Family + Comedy + + S12 + 12 E16 + + TV-14 + + + 6.7/10 + + + + Who's the Boss? + Grandmommie Dearest + Mona's mother doesn't approve of Tony and Angela's marriage, so she suggests a prenuptial agreement. Paul Murphy: Tony Jay. Ben: Dick Christie. Mona: Katherine Helmond. Tony: Tony Danza. (repeat). + + Tony Danza + Judith Light + Katherine Helmond + Alyssa Milano + Danny Pintauro + Rhoda Gemignani + Blake Hunter + Asaad Kelada + Tony Singletary + Asaad Kelada + + 1991 + Family + Comedy + S8 E9 + + TV-14 + + + + Who's the Boss? + Field of Screams + Tony strikes out with Sam when he refuses to get her a job, recalling the error he made helping Jonathan become a ball boy for the Mets. Jerry Kaminski: Sal Viscuso. Usher: John Mallory Asher. Girl: Sherri Lynn Rothman. (repeat). + + Tony Danza + Judith Light + Katherine Helmond + Alyssa Milano + Danny Pintauro + Rhoda Gemignani + Blake Hunter + Asaad Kelada + Tony Singletary + Asaad Kelada + + 1991 + Family + Comedy + S8 E10 + + TV-14 + + + + Who's the Boss? + This Sold House + Tony persuades Angela to sell the house to the man who grew up there, so they can start fresh in a new home. Lavonne: Lauren Tewes. Mr. Baker: Russell Nype. Garry Havlock: Lenny Wolpe. Angela: Judith Light. (repeat). + + Tony Danza + Judith Light + Katherine Helmond + Alyssa Milano + Danny Pintauro + Rhoda Gemignani + Blake Hunter + Asaad Kelada + Tony Singletary + Asaad Kelada + + 1991 + Family + Comedy + S8 E11 + + TV-14 + + + + Who's the Boss? + Tony, Can You Spare a Dime? + Although her business has hit lean times, Angela can't adjust to Tony's plan to cut the fat out of their budget. Robert Mandan. Tony: Tony Danza. Angela: Judith Light. Mona: Katherine Helmond. Samantha: Alyssa Milano. (repeat). + + Tony Danza + Judith Light + Katherine Helmond + Alyssa Milano + Danny Pintauro + Rhoda Gemignani + Blake Hunter + Asaad Kelada + Tony Singletary + Asaad Kelada + + 1992 + Family + Comedy + S8 E12 + + TV-14 + + + + Who's the Boss? + Mrs. Al + Sam poses as Al's wife to help him get an apartment, but Tony insists they divorce themselves of the lie. Al: William Gallo. Mr. Chomsky: William G. Schilling. Tony: Tony Danza. Angela: Judith Light. (repeat). + + Tony Danza + Judith Light + Katherine Helmond + Alyssa Milano + Danny Pintauro + Rhoda Gemignani + Blake Hunter + Asaad Kelada + Tony Singletary + Asaad Kelada + + 1992 + Family + Comedy + S8 E13 + + TV-14 + + + + Who's the Boss? + Who's the Boss? + Tony's buddies accuse him of being henpecked, so he decides to show them who rules the roost by chickening out on a date with Angela, who catches him with egg on his face. Tony: Tony Danza. Tiny: Walter Olkewicz. Vinnie: Vinny Argiro. Hank: Curnal Aulisio. Al: William Gallo. Ernie: Ralph P. Martin. Angela: Judith Light. Samantha: Alyssa Milano. Mona: Katherine Helmond. (repeat). + + Tony Danza + Judith Light + Katherine Helmond + Alyssa Milano + Danny Pintauro + Rhoda Gemignani + Blake Hunter + Asaad Kelada + Tony Singletary + Asaad Kelada + + 1992 + Family + Comedy + S8 E14 + + TV-14 + + + + Who's the Boss? + Tony Micelli, This Is Your Other Life + After meeting a famous baseball player, Tony dreams about what could have been if he'd made it in the Majors. William Utay. Coach: Brandon Maggart. Mike Va Salle: Richard Burgi. Jo Jo: Shari Shattuck. (repeat). + + Tony Danza + Judith Light + Katherine Helmond + Alyssa Milano + Danny Pintauro + Rhoda Gemignani + Blake Hunter + Asaad Kelada + Tony Singletary + Asaad Kelada + + 1992 + Family + Comedy + S8 E15 + + TV-PG + + + + Who's the Boss? + Allergic to Love + When Tony's lips swell up in an allergic reaction to matrimony, Angela thinks it best to put off kissing the bride. Bruce French. Elaine: Eileen Barnett. Dr. Thomas: Max Wright. Barry: James O'Sullivan. Nurse: Patricia Belcher. (repeat). + + Tony Danza + Judith Light + Katherine Helmond + Alyssa Milano + Danny Pintauro + Rhoda Gemignani + Blake Hunter + Asaad Kelada + Tony Singletary + Asaad Kelada + + 1992 + Family + Comedy + S8 E16 + + TV-14 + + + + Who's the Boss? + Better Off Wed + During preparations for Tony and Angela's wedding, Sam and Hank decide to say their I do's, too. Part 1 of two. Vic Polizos. Fran: Candice Azzara. Hank: Curnal Aulisio. Samantha: Alyssa Milano. Tony: Tony Danza. (repeat). + + Tony Danza + Judith Light + Katherine Helmond + Alyssa Milano + Danny Pintauro + Rhoda Gemignani + Blake Hunter + Asaad Kelada + Tony Singletary + Asaad Kelada + + 1992 + Family + Comedy + S8 E17 + + TV-PG + + + + Who's the Boss? + Better Off Wed + Conclusion. Tony, Angela and Hank's parents chase their eloping children to the chapel. Curnal Aulisio. Joe: Vic Polizos. Fran: Candice Azzara. Mrs. Rossini: Rhoda Gemignani. Samantha: Alyssa Milano. Tony: Tony Danza. (repeat). + + Tony Danza + Judith Light + Katherine Helmond + Alyssa Milano + Danny Pintauro + Rhoda Gemignani + Blake Hunter + Asaad Kelada + Tony Singletary + Asaad Kelada + + 1992 + Family + Comedy + S8 E18 + + TV-PG + + + + Who's the Boss? + Tony and the Honeymooners + Newlyweds Sam and Hank interrupt Tony and Angela's honeymoon when they show up needing a place to stay. Hank: Curnal Aulisio. Joe: Vic Polizos. Fran: Candice Azzara. Samantha: Alyssa Milano. Tony: Tony Danza. (repeat). + + Tony Danza + Judith Light + Katherine Helmond + Alyssa Milano + Danny Pintauro + Rhoda Gemignani + Blake Hunter + Asaad Kelada + Tony Singletary + Asaad Kelada + + 1992 + Family + Comedy + S8 E19 + + TV-14 + + + + Who's the Boss? + Split Decision + Angela escapes a tense Tony by going to a resort where she meets a man who seems to be his easygoing twin (Tony Danza in a dual role). Angela: Judith Light. Waiter: Richard Minchenberg. Chef: Jaime Cardriche. (repeat). + + Tony Danza + Judith Light + Katherine Helmond + Alyssa Milano + Danny Pintauro + Rhoda Gemignani + Blake Hunter + Asaad Kelada + Tony Singletary + Asaad Kelada + + 1992 + Family + Comedy + S8 E20 + + TV-PG + + + + Who's the Boss? + Mr. Micelli Builds His Dream House + Angela hires Sam's father-in-law (Vic Polizos) to remodel her bedroom, but Tony's interference is a blueprint for disaster. Fran: Candice Azzara. Al: William Gallo. Dave: Frank Pesce. Sam: Alyssa Milano. (repeat). + + Tony Danza + Judith Light + Katherine Helmond + Alyssa Milano + Danny Pintauro + Rhoda Gemignani + Blake Hunter + Asaad Kelada + Tony Singletary + Asaad Kelada + + 1992 + Family + Comedy + S8 E21 + + TV-14 + + + + Who's the Boss? + Savor the Veal + Tony graduates with a teaching degree, but it may be "Goodbye, Mr. Micelli" when he gets an out-of-state job offer. Part 1 of three. Dr. Graham: Jerry Hardin. Kelly: Kimberlee Kramer. (repeat). + + Tony Danza + Judith Light + Katherine Helmond + Alyssa Milano + Danny Pintauro + Rhoda Gemignani + Blake Hunter + Asaad Kelada + Tony Singletary + Asaad Kelada + + 1992 + Family + Comedy + S8 E22 + + TV-PG + + + + Who's the Boss? + Savor the Veal: Part 2 + Tony and Angela's long-distance relationship comes up short, pulling them farther apart. Part 2 of three. Dr. Graham: Jerry Hardin. Candy: Frances Bay. Ned: Pat Millicano. Rosie: Rosemary Taravella. Wendell: Troy Fromin. Businessman: Nick Toth. (repeat). + + Tony Danza + Judith Light + Katherine Helmond + Alyssa Milano + Danny Pintauro + Rhoda Gemignani + Blake Hunter + Asaad Kelada + Tony Singletary + Asaad Kelada + + 1992 + Family + Comedy + S8 E24 + + TV-14 + + + + Who's the Boss? + Savor the Veal + Conclusion. When Tony and Angela's long-distance relationship comes up short, Angela (Judith Light) is moved to make a decision that she hopes will bring them closer together. Tony: Tony Danza. Samantha: Alyssa Milano. Mona: Katherine Helmond. (repeat). + + Tony Danza + Judith Light + Katherine Helmond + Alyssa Milano + Danny Pintauro + Rhoda Gemignani + Blake Hunter + Asaad Kelada + Tony Singletary + Asaad Kelada + + 1992 + Family + Comedy + S8 E23 + + TV-PG + + + + Three's Company + Lies My Roommate Told Me + Jack lies to Janet about having a date that night so that he can go out with 'Greedy' Gretchen. (repeat). + + Joyce DeWitt + John Ritter + Richard Kline + Priscilla Barnes + Dave Powers + Bill Hobin + Paul Wayne + + 1981 + Comedy + + S6 + 6 E6 + + TV-PG + + + + Three's Company + Some of That Jazz + Jack comes to the rescue when Janet meets an unscrupulous ballet dancer who tells her she has real talent to be a dancer in order to sleep with her. (repeat). + + Joyce DeWitt + John Ritter + Richard Kline + Priscilla Barnes + Dave Powers + Bill Hobin + Paul Wayne + + 1981 + Comedy + + S6 + 6 E5 + + TV-PG + + + + Three's Company + Dates of Wrath + Janet inadvertently fixes up Terri with a guy she's interested in herself. Bob: Brad Maule. Janet: Joyce DeWitt. Donna: Connie Hill. Terri: Priscilla Barnes. (repeat). + + Joyce DeWitt + John Ritter + Richard Kline + Priscilla Barnes + Dave Powers + Bill Hobin + Paul Wayne + + 1981 + Comedy + + S6 + 6 E10 + + TV-PG + + + + Three's Company + Boy Meets Dummy + Jack has a date with Angelino's daughter against her father's strict wishes and so to turn her off, pretends he is with his ""wife"" which is really a CPR dummy. (repeat). + + Joyce DeWitt + John Ritter + Richard Kline + Priscilla Barnes + Dave Powers + Bill Hobin + Paul Wayne + + 1981 + Comedy + + S6 + 6 E9 + + TV-PG + + + + Three's Company + Macho Man + While taking fighting lessons from Terri, Jack accidentally tackles an undercover cop making an arrest and gets arrested for assault. (repeat). + + Joyce DeWitt + John Ritter + Richard Kline + Priscilla Barnes + Dave Powers + Bill Hobin + Paul Wayne + + 1981 + Comedy + + S6 + 6 E11 + + TV-PG + + + + Three's Company + Strangers in the Night + Jack falls in love with a beautiful woman and wants to serenade her. He goes to her apartment and sings at the window, but what he doesn't know is that he has serenaded an overweight girl. The overweight girls thinks that Jack likes her, but the beautiful woman trashes her in front of Jack. Jack decides to have a date with the overweight girl instead. (repeat). + + Joyce DeWitt + John Ritter + Richard Kline + Priscilla Barnes + Dave Powers + Bill Hobin + Paul Wayne + + 1982 + Comedy + + S6 + 6 E12 + + TV-PG + + + + Three's Company + The Matchbreakers + Larry tries to determine if Furley's latest find is a gold digger. Larry: Richard Kline. Furley: Don Knotts. (repeat). + + Joyce DeWitt + John Ritter + Richard Kline + Priscilla Barnes + Dave Powers + Bill Hobin + Paul Wayne + + 1982 + Comedy + + S6 + 6 E14 + + TV-PG + + + + Three's Company + Oh, Nun + Jack suspects Terri's friend wants to give up her life as a nun to marry him. Captain James: John Brandon. Chuck: Britt Leach. Jack: John Ritter. (repeat). + + Joyce DeWitt + John Ritter + Richard Kline + Priscilla Barnes + Dave Powers + Bill Hobin + Paul Wayne + + 1982 + Comedy + + S6 + 6 E13 + + TV-PG + + + + Three's Company + Maid to Order + The trio reluctantly hires ex-roommate Cindy as their cleaning lady. Cindy: Jenilee Harrison. Joey: Peter Isacksen. Marty: Charlie Stavola. Rita: Jennifer Shaw. Jack: John Ritter. (repeat). + + Joyce DeWitt + John Ritter + Richard Kline + Priscilla Barnes + Dave Powers + Bill Hobin + Paul Wayne + + 1982 + Comedy + + S6 + 6 E15 + + TV-PG + + + + Three's Company + A Friend in Need + Jack scores a hit with a mobster when he subs for the chef at Angelino's restaurant. Canon: Terry Kiser. Angelino: Jordan Charney. Felipe: Gino Conforti. Jack: John Ritter. (repeat). + + Joyce DeWitt + John Ritter + Richard Kline + Priscilla Barnes + Dave Powers + Bill Hobin + Paul Wayne + + 1982 + Comedy + + S6 + 6 E18 + + TV-PG + + + + Three's Company + Hearts and Flowers + An efficiency expert drives Janet to quit her job at the flower shop. Bobbi: Laurie L. Schaefer. Franklin: Rod Colbin. Janet: Joyce DeWitt. Jack: John Ritter. Furley: Don Knotts. (repeat). + + Joyce DeWitt + John Ritter + Richard Kline + Priscilla Barnes + Dave Powers + Bill Hobin + Paul Wayne + + 1982 + Comedy + + S6 + 6 E16 + + TV-PG + + + + Three's Company + Urban Plowboy + The threesome spends a weekend on a farm owned by Cindy's Aunt Becky. Wally: Herman Poppe. Jack: John Ritter. Cindy: Jenilee Harrison. Janet: Joyce DeWitt. (repeat). + + Joyce DeWitt + John Ritter + Richard Kline + Priscilla Barnes + Dave Powers + Bill Hobin + Paul Wayne + + 1982 + Comedy + + S6 + 6 E17 + + TV-PG + + + + Three's Company + Critic's Choice + Jack challenges a food critic to sample his cuisine. Jason Defarge: Jay Garner. Chloe: Louise Williams. Jack: John Ritter. Janet: Joyce DeWitt. Furley: Don Knotts. (repeat). + + Joyce DeWitt + John Ritter + Richard Kline + Priscilla Barnes + Dave Powers + Bill Hobin + Paul Wayne + + 1982 + Comedy + + S6 + 6 E21 + + TV-PG + + + + Three's Company + Jack's 10 + Jack changes not only his image but his career plans to please a girlfriend. Denise: Karen Austin. Jack: John Ritter. Woman in Bar: Melanie Vincz. Terri: Priscilla Barnes. (repeat). + + Joyce DeWitt + John Ritter + Richard Kline + Priscilla Barnes + Dave Powers + Bill Hobin + Paul Wayne + + 1982 + Comedy + + S6 + 6 E19 + + TV-PG + + + + Three's Company + Doctor in the House + Jack pretends he's a doctor to impress his visiting grandfather (Edward Andrews). Dr. Phillips: Keith Lawrence. Patient: Toni Lamond. Jack: John Ritter. Furley: Don Knotts. (repeat). + + Joyce DeWitt + John Ritter + Richard Kline + Priscilla Barnes + Dave Powers + Bill Hobin + Paul Wayne + + 1982 + Comedy + + S6 + 6 E20 + + TV-PG + + + + Three's Company + Paradise Lost + Larry and Furley connive to keep the trio from moving to a beach house. Sheila: Faith McSwain. Dr. Benson: Alvah Stanley. Larry: Richard Kline. Furley: Don Knotts. (repeat). + + Joyce DeWitt + John Ritter + Richard Kline + Priscilla Barnes + Dave Powers + Bill Hobin + Paul Wayne + + 1982 + Comedy + + S6 + 6 E22 + + TV-PG + + + + Everybody Loves Raymond + The Kicker + Frank riles sports fans when he catches a history-making football at a game, then runs off with it and puts it up for sale. Ron: Boris Cabrera. Ron's Father: Winston J. Rocha. Dave: Hiram Kasten. Frank: Peter Boyle. (repeat). + + Ray Romano + Patricia Heaton + Madylin Sweeten + Brad Garrett + Doris Roberts + Peter Boyle + Gary Halvorson + Will Mackenzie + Lisa Helfrich Jackson + Steve Skrovan + + 2001 + Comedy + + S6 E11 + + TV-PG + + + 7.4/10 + + + + Everybody Loves Raymond + Grandpa Steals + Frank's heated argument with a supermarket manager frightens Ally so much that she becomes afraid of her grandpa. Frank realizes he needs to talk to her, but he's reluctant to do so because he's never had a real conversation with her and he doesn't know what to say. Jimmy: Jeff Garlin. Ally: Madylin Sweeten. Frank: Peter Boyle. Debra: Patricia Heaton. (repeat). + + Ray Romano + Patricia Heaton + Madylin Sweeten + Brad Garrett + Doris Roberts + Peter Boyle + Gary Halvorson + Will Mackenzie + Lisa Helfrich Jackson + Steve Skrovan + + 2003 + Comedy + + S7 E12 + + TV-PG + + + 7.4/10 + + + + Everybody Loves Raymond + Somebody Hates Raymond + Raymond is dumbfounded when he learns that a popular sports-radio host hates him and refuses to ever book him on his show. Of course, Ray wants to find out why, so he confronts the man. Musso: Steve Vinovich. Andy: Andy Kindler. Robert: Brad Garrett. (repeat). + + Ray Romano + Patricia Heaton + Madylin Sweeten + Brad Garrett + Doris Roberts + Peter Boyle + Gary Halvorson + Will Mackenzie + Lisa Helfrich Jackson + Steve Skrovan + + 2003 + Comedy + + S7 E13 + + TV-PG + + + 7.4/10 + + + + Everybody Loves Raymond + Just a Formality + Robert visits Amy's parents (Fred Willard, Georgia Engel) to ask them for their daughter's hand in marriage, and Ray tags along to offer support. Peter: Chris Elliott. Amy: Monica Horan. Robert: Brad Garrett. (repeat). + + Ray Romano + Patricia Heaton + Madylin Sweeten + Brad Garrett + Doris Roberts + Peter Boyle + Gary Halvorson + Will Mackenzie + Lisa Helfrich Jackson + Steve Skrovan + + 2003 + Comedy + + S7 E14 + + TV-PG + + + 7.4/10 + + + + The Last Sentinel + A warrior (Don Wilson) and a freedom fighter (Katee Sackhoff) join forces to battle an elite unit meant to protect mankind. + + Don + + 2007 + Movies + Action + + + + Disobedience + Photographer Ronit Krushka returns to the London community that shunned her decades earlier for her childhood attraction to a female friend. Their happy reunion soon reignites their burning passion as they explore boundaries of faith and sexuality. + + Rachel Weisz + Rachel McAdams + Alessandro Nivola + + 2017 + Movies + Romance + + + TVG + + + 3 + + + + Just Before I Go + A man travels back to his hometown to make amends before he gives up on life. + + Seann William Scott + Olivia Thirlby + Garret Dillahunt + + 2014 + Movies + Comedy + Drama + + + TVPG + + + 1 + + + + Officer Down + A cop's (Stephen Dorff) shady past comes back to haunt him as he investigates a series of assaults against women at a strip club. + + Stephen Dorff + James Woods + Stephen Lang + + 2013 + Movies + Crime Story + + + TVPG + + + + Officer Down + A cop's (Stephen Dorff) shady past comes back to haunt him as he investigates a series of assaults against women at a strip club. + + Stephen Dorff + James Woods + Stephen Lang + + 2013 + Movies + Crime Story + + + TVPG + + + + Never Let Me Go + Three friends (Carey Mulligan, Andrew Garfield, Keira Knightley), who grew up at a seemingly idyllic boarding school, confront a haunting reality about their futures. + + Carey Mulligan + Andrew Garfield + Keira Knightley + + 2010 + Movies + Drama + + + TVG + + + 3 + + + + The Swearing Jar + Carey and Simon, an otherwise perfect couple, try to kick their swearing habit before their baby arrives. + + Alison Pill + Adelaide Clemens + Patrick J. Adams + + 2022 + Movies + Comedy + + + + Side Effects + A woman's (Rooney Mara) world unravels after her psychiatrist (Jude Law) prescribes a new medication to treat her anxiety. + + Jude Law + Rooney Mara + Channing Tatum + + 2013 + Movies + Drama + + + TVPG + + + 3 + + + + Starz Inside + Bloodsucking Cinema + The origins of the vampire myth and evolution in cinema. + Documentary + + + TVMA + + + + Out of Season + A drifter (Jordan Frieda) gets mixed up with shady characters embroiled in devious plots in a seaside town. + + Dennis Hopper + Gina Gershon + Jordan Frieda + + 2004 + Movies + Thriller + + + 1 + + + + Jane and Emma + Jane is a black woman who walks hundreds of miles to meet Joseph Smith, a revered cleric who inspires people in the Deep South. When Smith lands in trouble with local hooligans, Jane offers comfort and companionship to his wife in her darkest hour. + + Danielle Deadwyler + Emily Goss + Brad Schmidt + + 2018 + Movies + Drama + + + + Diana + During the last two years of her life, Princess Diana (Naomi Watts) campaigns against the use of land mines and has a secret love affair with a Pakistani heart surgeon (Naveen Andrews). + + Naomi Watts + Naveen Andrews + Douglas Hodge + + 2013 + Movies + Docu-Drama + + + TVG + + + 1 + + + + The Last Sentinel + A warrior (Don Wilson) and a freedom fighter (Katee Sackhoff) join forces to battle an elite unit meant to protect mankind. + + Don + + 2007 + Movies + Action + + + + Heathers + Cool Veronica (Winona Ryder) and her quirky new boyfriend (Christian Slater) topple a high-school trio of too-cool Heathers. + + Winona Ryder + Christian Slater + Shannen Doherty + + 1989 + Movies + Comedy + + + TVPG + + + 3 + + + + Ma Belle, My Beauty + A surprise reunion in the South of France reignites passions and jealousies between two women who were formerly in a polyamorous relationship. + + Idella Johnson + Hannah Pepper + Lucien Guignard + + 2021 + Movies + Drama + + + + Diana + During the last two years of her life, Princess Diana (Naomi Watts) campaigns against the use of land mines and has a secret love affair with a Pakistani heart surgeon (Naveen Andrews). + + Naomi Watts + Naveen Andrews + Douglas Hodge + + 2013 + Movies + Docu-Drama + + + TVG + + + 1 + + + + Jane and Emma + Jane is a black woman who walks hundreds of miles to meet Joseph Smith, a revered cleric who inspires people in the Deep South. When Smith lands in trouble with local hooligans, Jane offers comfort and companionship to his wife in her darkest hour. + + Danielle Deadwyler + Emily Goss + Brad Schmidt + + 2018 + Movies + Drama + + + + Side Effects + A woman's (Rooney Mara) world unravels after her psychiatrist (Jude Law) prescribes a new medication to treat her anxiety. + + Jude Law + Rooney Mara + Channing Tatum + + 2013 + Movies + Drama + + + TVPG + + + 3 + + + + Heathers + Cool Veronica (Winona Ryder) and her quirky new boyfriend (Christian Slater) topple a high-school trio of too-cool Heathers. + + Winona Ryder + Christian Slater + Shannen Doherty + + 1989 + Movies + Comedy + + + TVPG + + + 3 + + + + Diana + During the last two years of her life, Princess Diana (Naomi Watts) campaigns against the use of land mines and has a secret love affair with a Pakistani heart surgeon (Naveen Andrews). + + Naomi Watts + Naveen Andrews + Douglas Hodge + + 2013 + Movies + Docu-Drama + + + TVG + + + 1 + + + + Diana + During the last two years of her life, Princess Diana (Naomi Watts) campaigns against the use of land mines and has a secret love affair with a Pakistani heart surgeon (Naveen Andrews). + + Naomi Watts + Naveen Andrews + Douglas Hodge + + 2013 + Movies + Docu-Drama + + + TVG + + + 1 + + + + The Swearing Jar + Carey and Simon, an otherwise perfect couple, try to kick their swearing habit before their baby arrives. + + Alison Pill + Adelaide Clemens + Patrick J. Adams + + 2022 + Movies + Comedy + + + + Wolf Totem + While staying with the nomadic herdsmen of Mongolia, a young Chinese student (Shaofeng Feng) develops a fascination with the wolves that roam the plains. + + Shaofeng Feng + Shawn Dou + Basen Zhabu + + 2015 + Movies + Adventure + + + TVG + + + 2 + + + + Conan the Barbarian + The Cimmerian warrior (Jason Momoa) slashes his way across Hyboria on a mission that begins as a personal vendetta but turns into an epic battle against a supernatural evil. + + Jason Momoa + Rachel Nichols + Stephen Lang + + 2011 + Movies + Adventure + + + TVPG + + + 2 + + + + Midnight Movies: From the Margin to the Mainstream + Filmmaker Stuart Samuels examines six cult movies that gained a late-night following, including. + 2005 + Movies + Documentary + + + TVPG + + + 3 + + + + Marcus + Marcus has a checkered past and an unstable present, but unexpected news brings a new opportunity for him to right old wrongs and make amends. + + Owen Miller + Katana Malone + Todd Bruno + + 2020 + Movies + Drama + + + + Wolf Totem + While staying with the nomadic herdsmen of Mongolia, a young Chinese student (Shaofeng Feng) develops a fascination with the wolves that roam the plains. + + Shaofeng Feng + Shawn Dou + Basen Zhabu + + 2015 + Movies + Adventure + + + TVG + + + 2 + + + + Dudes & Dragons + An evil, jaded wizard makes it his business to rid the realm of love. Now, a brave warrior and his reluctant brother stand between the good people of the world and a fleet of fire-breathing dragons. + + James Marsters + Kaitlin Doubleday + Luke Perry + + 2015 + Movies + Fantasy + + + + Conan the Barbarian + The Cimmerian warrior (Jason Momoa) slashes his way across Hyboria on a mission that begins as a personal vendetta but turns into an epic battle against a supernatural evil. + + Jason Momoa + Rachel Nichols + Stephen Lang + + 2011 + Movies + Adventure + + + TVPG + + + 2 + + + + Home + After 17 years in prison, Marvin returns to his hometown to face the repercussions of the demons from his past. + + Jake McLaughlin + Kathy Bates + Aisling Franciosi + + 2020 + Movies + Drama + + + + Sleepwalking + A girl (AnnaSophia Robb) tries to cope with her mother's abandonment by forging a bond with her troubled uncle (Nick Stahl). + + Nick Stahl + AnnaSophia Robb + Charlize Theron + + 2008 + Movies + Drama + + + TVPG + + + 2 + + + + Wolf Totem + While staying with the nomadic herdsmen of Mongolia, a young Chinese student (Shaofeng Feng) develops a fascination with the wolves that roam the plains. + + William Feng + Shawn Dou + Basen Zhabu + + 2015 + Movies + Adventure + + + TVG + + + 2 + + + + Conan the Barbarian + The Cimmerian warrior (Jason Momoa) slashes his way across Hyboria on a mission that begins as a personal vendetta but turns into an epic battle against a supernatural evil. + + Jason Momoa + Rachel Nichols + Stephen Lang + + 2011 + Movies + Adventure + + + TVPG + + + 2 + + + + Dudes & Dragons + An evil, jaded wizard makes it his business to rid the realm of love. Now, a brave warrior and his reluctant brother stand between the good people of the world and a fleet of fire-breathing dragons. + + James Marsters + Kaitlin Doubleday + Luke Perry + + 2015 + Movies + Fantasy + + + + Dudes & Dragons + An evil, jaded wizard makes it his business to rid the realm of love. Now, a brave warrior and his reluctant brother stand between the good people of the world and a fleet of fire-breathing dragons. + + James Marsters + Kaitlin Doubleday + Luke Perry + + 2015 + Movies + Fantasy + + + + Sleepwalking + A girl (AnnaSophia Robb) tries to cope with her mother's abandonment by forging a bond with her troubled uncle (Nick Stahl). + + Nick Stahl + AnnaSophia Robb + Charlize Theron + + 2008 + Movies + Drama + + + TVPG + + + 2 + + + + 5 Days of War + A journalist (Rupert Friend), his cameraman (Richard Coyle) and a Georgia native (Emmanuelle Chriqui) are caught in the crossfire of the Russia-Georgia conflict. + + Rupert Friend + Richard Coyle + Emmanuelle Chriqui + + 2011 + Movies + Drama + + + TV14 + + + 1 + + + + Home + After 17 years in prison, Marvin returns to his hometown to face the repercussions of the demons from his past. + + Jake McLaughlin + Kathy Bates + Aisling Franciosi + + 2020 + Movies + Drama + + + + Dudes & Dragons + An evil, jaded wizard makes it his business to rid the realm of love. Now, a brave warrior and his reluctant brother stand between the good people of the world and a fleet of fire-breathing dragons. + + James Marsters + Kaitlin Doubleday + Luke Perry + + 2015 + Movies + Fantasy + + + + Tahara + Two best friends attend the funeral of a Hebrew school classmate who died by suicide and accidentally damage their friendship beyond repair. + + Madeline Grey DeFreece + Rachel Sennott + Daniel Taveras + + 2020 + Movies + Drama + + + + The Last Deal + When new laws make cannabis legal, there are limited dispensary licenses available and black market marijuana dealer Vince may go out of business. He's desperate to make one final score, but borrows money from the wrong people. + + Anthony Molinari + Sala Baker + Gigi Gustin + + 2023 + Movies + Action + + + + The Benefactor + Consumed by guilt over the accidental death of a couple, an eccentric Philadelphia philanthropist (Richard Gere) provides financial assistance to their pregnant daughter (Dakota Fanning) and her new husband (Theo James). + + Richard Gere + Dakota Fanning + Theo James + + 2015 + Movies + Drama + + + TVPG + + + + Girl Most Likely + After losing her job and her boyfriend, a woman (Kristen Wiig) moves in with her estranged mother (Annette Bening) and finds an assortment of strange characters inhabiting the home. + + Kristen Wiig + Annette Bening + Matt Dillon + + 2012 + Movies + Comedy + + + TVG + + + 2 + + + + 18 1/2 + In 1974, a White House transcriber is thrust into the Watergate scandal when she obtains the only copy of the infamous 18 1/2-minute gap in Nixon's tapes. + + Willa Fitzgerald + John Magaro + Vondie Curtis Hall + + 2021 + Movies + Thriller + + + + 5 Days of War + A journalist (Rupert Friend), his cameraman (Richard Coyle) and a Georgia native (Emmanuelle Chriqui) are caught in the crossfire of the Russia-Georgia conflict. + + Rupert Friend + Richard Coyle + Emmanuelle Chriqui + + 2011 + Movies + Drama + + + TV14 + + + 1 + + + + The Loft + Paranoia grips a group of married men (Karl Urban, James Marsden, Wentworth Miller) who find the dead body of an unknown woman in the penthouse they share for extramarital trysts. + + Karl Urban + James Marsden + Wentworth Miller + + 2014 + Movies + Thriller + + + TV14 + + + 1 + + + + Girl Most Likely + After losing her job and her boyfriend, a woman (Kristen Wiig) moves in with her estranged mother (Annette Bening) and finds an assortment of strange characters inhabiting the home. + + Kristen Wiig + Annette Bening + Matt Dillon + + 2012 + Movies + Comedy + + + TVG + + + 2 + + + + The Benefactor + Consumed by guilt over the accidental death of a couple, an eccentric Philadelphia philanthropist (Richard Gere) provides financial assistance to their pregnant daughter (Dakota Fanning) and her new husband (Theo James). + + Richard Gere + Dakota Fanning + Theo James + + 2015 + Movies + Drama + + + TVPG + + + + 18 1/2 + In 1974, a White House transcriber is thrust into the Watergate scandal when she obtains the only copy of the infamous 18 1/2-minute gap in Nixon's tapes. + + Willa Fitzgerald + John Magaro + Vondie Curtis Hall + + 2021 + Movies + Thriller + + + + 18 1/2 + In 1974, a White House transcriber is thrust into the Watergate scandal when she obtains the only copy of the infamous 18 1/2-minute gap in Nixon's tapes. + + Willa Fitzgerald + John Magaro + Vondie Curtis Hall + + 2021 + Movies + Thriller + + + + The Loft + Paranoia grips a group of married men (Karl Urban, James Marsden, Wentworth Miller) who find the dead body of an unknown woman in the penthouse they share for extramarital trysts. + + Karl Urban + James Marsden + Wentworth Miller + + 2014 + Movies + Thriller + + + TV14 + + + 1 + + + + Ma Belle, My Beauty + A surprise reunion in the South of France reignites passions and jealousies between two women who were formerly in a polyamorous relationship. + + Idella Johnson + Hannah Pepper + Lucien Guignard + + 2021 + Movies + Drama + + + + The Benefactor + Consumed by guilt over the accidental death of a couple, an eccentric Philadelphia philanthropist (Richard Gere) provides financial assistance to their pregnant daughter (Dakota Fanning) and her new husband (Theo James). + + Richard Gere + Dakota Fanning + Theo James + + 2015 + Movies + Drama + + + TVPG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Knight of Cups + A Los Angeles screenwriter (Christian Bale) indulges his wild side with a stripper (Teresa Palmer), a model (Freida Pinto) and a married woman (Natalie Portman). + + Christian Bale + Cate Blanchett + Natalie Portman + + 2015 + Movies + Drama + + + TVG + + + 2 + + + + Ma Belle, My Beauty + A surprise reunion in the South of France reignites passions and jealousies between two women who were formerly in a polyamorous relationship. + + Idella Johnson + Hannah Pepper + Lucien Guignard + + 2021 + Movies + Drama + + + + 18 1/2 + In 1974, a White House transcriber is thrust into the Watergate scandal when she obtains the only copy of the infamous 18 1/2-minute gap in Nixon's tapes. + + Willa Fitzgerald + John Magaro + Vondie Curtis Hall + + 2021 + Movies + Thriller + + + + Bachelorette + After ruining their friend's wedding gown, bridesmaids (Kirsten Dunst, Isla Fisher, Lizzy Caplan) set out on a frantic search for a replacement, but their mission degenerates into a night of booze, drugs and nightclubbing. + + Kirsten Dunst + Isla Fisher + Lizzy Caplan + + 2012 + Movies + Comedy + + + TVPG + + + 2 + + + + Off the Menu + A talented and feisty female chef in a small New Mexico town falls for the unlikely heir to a Mexican fast-food franchise. + + Dania Ramirez + Santino Fontana + Makenzie Moss + + 2018 + Movies + Romance + + + TVG + + + + Knight of Cups + A Los Angeles screenwriter (Christian Bale) indulges his wild side with a stripper (Teresa Palmer), a model (Freida Pinto) and a married woman (Natalie Portman). + + Christian Bale + Cate Blanchett + Natalie Portman + + 2015 + Movies + Drama + + + TVG + + + 2 + + + + Bloodline + Haunted by dark memories of childhood abuse, Evan, a social worker and first-time dad, struggles to keep his need for revenge in check. + + Seann William Scott + Mariela Garriga + Dale Dickey + + 2018 + Movies + Horror + + + TVPG + + + + Gunsmoke + The Pariah + A resident is praised for killing a wanted man. The truth comes out when a reporter investigates. + + James Arness + Milburn Stone + Amanda Blake + + Drama + + + TVPG + + + + Ulzana's Raid + A trail-worn scout and an idealistic cavalryman have opposing views on how to handle a group of rampaging Apaches. + + Burt Lancaster + Bruce Davison + Jorge Luke + + 1972 + Movies + Western + + + TVPG + + + 3 + + + + Tales of Wells Fargo + The Kid + Jim Hardie tries to clear a colleague of a murder charge after the man is found standing over a dead man, holding a smoking gun. + + Dale Robertson + + Regular + + + TVPG + + + + Tales of Wells Fargo + The Barbary Coast + The Wells Fargo team is tasked with protecting a shipment of jade in San Francisco. + + Dale Robertson + + Regular + + + TVPG + + + + How the West Was Won + The Rustler + Jessie becomes infatuated with a man who later rustles Zeb's horses; Jessie breaks Bob out of jail. + + James Arness + Fionnula Flanagan + Bruce Boxleitner + + History + Drama + + + + Gunsmoke + The Disciple + Dodge City residents are stunned when Matt turns in his badge because he no longer feels he can keep the peace. + + James Arness + Milburn Stone + Amanda Blake + + Drama + + + TVG + + + + Rawhide + Incident of the Hunter + The drovers recount past misdeeds after recognizing a bounty hunter among them; guests Mark Stevens, Gregory Walcott. + + Eric Fleming + Clint Eastwood + Charles H. Gray + + Drama + + + TVPG + + + + Rawhide + Incident of the Portrait + The blind daughter of murder victims hooks up with the drive, unaware the killer (John Ireland) is among the drovers. + + Eric Fleming + Clint Eastwood + Robert Cabal + + Drama + + + TVPG + + + + Campmeeting + Morris Cerullo + With Morris Cerullo. + Religious + + + TVG + + + + Campmeeting + Mike Murdock + With Dr. Mike Murdock. + Religious + + + TVG + + + + Campmeeting + Mike Murdock + With Dr. Mike Murdock. + Religious + + + TVG + + + + Mike Murdock - School of Wisdom + Biblical principles of wisdom that help individuals face life's successes. + + Michael Murdock + + Religious + + + TVG + + + + David Jeremiah + Dr. David Jeremiah's goal is to deliver the unchanging Word of God to an ever-changing world. + Religious + + + TVG + + + + In Touch With Dr. Charles Stanley + In Touch Ministries is the broadcast teaching ministry of Dr. Charles Stanley. + Religious + + + TVG + + + + Michael Youssef + Leading The Way ministries and Dr. Michael Youssef share the Gospel across the globe, equipping believers to grow into a deeper walk with Christ. + Religious + + + TVG + + + + The Big Valley + Bounty on a Barkley + Nick falls for a newcomer (Leslie Parrish); Victoria learns why she is so reluctant. + + Barbara Stanwyck + Richard Long + Peter Breck + + Drama + + + TVG + + + + The Big Valley + Devil's Masquerade + Heath suspects a woman who has come to wed her longtime pen pal, a homely, middle-aged farmer. + + Barbara Stanwyck + Richard Long + Peter Breck + + Drama + + + TVG + + + + Daniel Boone + The Witness + A killer (John Carradine) terrorizes witnesses Israel and friends into silence. + + Fess Parker + Patricia Blair + Darby Hinton + + Drama + + + TVPG + + + + Daniel Boone + The Flaming Rocks + Daniel saves a stubborn man and his family whose lives are endangered by the Indians they have cheated. + + Fess Parker + Patricia Blair + Darby Hinton + + Drama + + + TVPG + + + + Tales of Wells Fargo + The Great Bullion Robbery + A man kills a Wells Fargo agent while stealing gold bullion. + + Dale Robertson + + Regular + + + TVPG + + + + Tales of Wells Fargo + The Outlaw's Wife + An outlaw's wife offers Hardie a share of the loot to protect her from blackmailers. + + Dale Robertson + + Regular + + + TVPG + + + + The Kentuckian + A frontiersman (Burt Lancaster) heads for Texas with his son and meets two women (Dianne Foster, Diana Lynn) and a guy with a bullwhip. + + Burt Lancaster + Dianne Foster + Diana Lynn + + 1955 + Movies + Western + + + TVG + + + 2 + + + + The Virginian + Timberland + A cowhand (Martin Milner) courts a logging boss's daughter (Joan Freeman), threatening any compromise in a dispute between timbermen and ranchers; guests Arch Johnson, William Smith. + + James Drury + Doug McClure + Lee J. Cobb + + Drama + + + TVPG + + + + Bonanza + The Debt + A con man's (Ford Rainey) children (Tommy Sands, Brooke Bundy) want to clear their family name by working for his victims. + + Lorne Greene + Dan Blocker + Michael Landon + + Drama + + + TVG + + + + Gunsmoke + Big Man + A man whom Matt publicly fought with turns up dead, and an eyewitness claims Matt is the murderer. + + James Arness + Amanda Blake + Milburn Stone + + Drama + + + TVPG + + + + Gunsmoke + Little Girl + Matt has trouble finding home for an orphan girl whose father died in a fire. + + James Arness + Amanda Blake + Milburn Stone + + Drama + + + TVPG + + + + Gunsmoke + Gilt Guilt + Doc tries to help a poor woman and her son suffering from scurvy. + + James Arness + Milburn Stone + Amanda Blake + + Drama + + + TVPG + + + + Lawman + A marshal (Burt Lancaster) seeks justice in another marshal's (Robert Ryan) town, run by a corrupt rancher (Lee J. Cobb). + + Burt Lancaster + Robert Ryan + Lee J. Cobb + + 1971 + Movies + Western + + + TVG + + + 3 + + + + Tales of Wells Fargo + A Fistful of Pride + A washed-up boxer challenges the Frisco Kid to a fight. + + Dale Robertson + + Regular + + + TVPG + + + + The Duel at Silver Creek + A quick-draw marshal (Stephen McNally) deputizes the Silver Kid (Audie Murphy) to track down a claim jumper (Faith Domergue) and her gang. + + Audie Murphy + Faith Domergue + Stephen McNally + + 1952 + Movies + Western + + + 1 + + + + The Duel at Silver Creek + A quick-draw marshal (Stephen McNally) deputizes the Silver Kid (Audie Murphy) to track down a claim jumper (Faith Domergue) and her gang. + + Audie Murphy + Faith Domergue + Stephen McNally + + 1952 + Movies + Western + + + 1 + + + + The Lone Gun + A marshal (George Montgomery) courts a rancher's sister (Dorothy Malone) and rids a town of rustlers. + + George Montgomery + Dorothy Malone + Frank Faylen + + 1954 + Movies + Western + + + TVG + + + 2 + + + + Tales of Wells Fargo + The Hasty Gun + Jim investigates an accidental killing during a robbery. + + Dale Robertson + + Regular + + + TVPG + + + + Campmeeting + Joshua Fowler + Trust God for your breakthrough. Enter into powerful worship! Join us for Campmeeting. + Religious + + + TVG + + + + Campmeeting + Mike Murdock + With Dr. Mike Murdock. + Religious + + + TVG + + + + Campmeeting + Mike Murdock + With Dr. Mike Murdock. + Religious + + + TVG + + + + Gunsmoke + A Town in Chains + Matt rides into a town to warn about approaching outlaws, only to be captured and held for ransom by the band himself. + + James Arness + Buck Taylor + + Drama + + + TVG + + + + Laramie + Killer Without Cause + Slim finds the town turning against him when he presses charges after a neighbor kills Slim's new ranch hand. + + John Smith + Robert Fuller + Robert Crawford Jr. + + Drama + + + TVPG + + + + Laramie + Stolen Tribute + An ex con forces Jess to take him to Utah, where Jess had killed the con's brother -- and where that brother had hidden a large sum of cash. + + John Smith + Robert Fuller + Robert Crawford Jr. + + Drama + + + TVPG + + + + Cheyenne + Quicksand + Cheyenne and a group of travelers fall under attack. + + Clint Walker + + Regular + + + TVG + + + + Gunsmoke + Distant Drummer + Matt helps a brain-damaged former drummer boy who has been accused of murder. + + James Arness + Amanda Blake + Milburn Stone + + Drama + + + TVPG + + + + Gunsmoke + Ben Tolliver's Stud + Matt helps a man who is fired after being accused of stealing his boss's horses. + + James Arness + Amanda Blake + Milburn Stone + + Drama + + + TVPG + + + + Rawhide + Incident of the Gilded Goddess + Favor disbelieves a woman (Dina Merrill) claiming she was unjustly accused of murder -- and a bullet in the back proves he is right. + + Eric Fleming + Clint Eastwood + Paul Brinegar + + Drama + + + TVPG + + + + Rawhide + Incident at Seven Fingers + Rowdy wants to attend the court martial of a soldier (William Marshall) he believes unjustly accused of desertion; guest Hari Rhodes. + + Eric Fleming + Clint Eastwood + Paul Brinegar + + Drama + + + TVPG + + + + Wagon Train + The Bleeker Story + A gang joins the train in the guise of farmers and plans to take it over. + + Robert Fuller + John McIntire + Frank McGrath + + Regular + + + TVG + + + + Wild West Chronicles + Bat Masterson & the Dodge City Dead Line: Part 1 + Newspaperman Bat Masterson recalls his time as sheriff of Dodge City when he worked with Wyatt Earp to clean up the notorious frontier town. + Docu-Series + History + + + TVPG + + + + Gunsmoke + Big Man, Big Target + Matt trails a man suspected of framing a farmer for horse-stealing. + + James Arness + Milburn Stone + Amanda Blake + + Drama + + + TVPG + + + + Cheyenne + Sweet Sam + Cheyenne reveals a bank robber masquerading as friend to every man. + + Clint Walker + + Regular + + + TVG + + + + Laramie + The Sometime Gambler + Though they don't trust him, Slim and Jess are forced to watch an injured ex-con who was forced to assist in a bank robbery. + + John Smith + Robert Fuller + Dennis Holmes + + Drama + + + TVPG + + + + Gunsmoke + Abe Blocker + Matt learns that an old friend has become deranged and is bent on driving ranchers off of their land. + + James Arness + Milburn Stone + Amanda Blake + + Drama + + + TVPG + + + + Tales of Wells Fargo + The English Woman + An Englishwoman hopes Hardie can find her mother's killer. + + Dale Robertson + + Regular + + + TVPG + + + + Tales of Wells Fargo + Forty-Four Forty + An unusual bullet offers the only clue to a murder. + + Dale Robertson + + Regular + + + TVPG + + + + Gunsmoke + Perce + Matt's efforts to help a former outlaw go straight are thwarted by the influence of a beautiful woman. + + James Arness + Dennis Weaver + Milburn Stone + + Drama + + + TVPG + + + + Gunsmoke + Baker's Dozen + Doc Adams fights to prevent three newborn babies from going to an orphanage. + + James Arness + Milburn Stone + Amanda Blake + + Drama + + + TVPG + + + + Tales of Wells Fargo + Royal Maroon + When a friendly wager involving a beautiful woman turns to murder, Hardie investigates a stagecoach robbery after the woman turns up with amnesia. + + Dale Robertson + Jack Ging + William Demarest + + Regular + + + TVPG + + + + Gunsmoke + The Still + A schoolmarm's crooked relatives begin a moonshining operation in Dodge City. + + James Arness + Milburn Stone + Amanda Blake + + Drama + + + TVPG + + + + Wagon Train + Chuck Wooster, Wagonmaster + After many disappearances, Wooster takes charge and leads the train southward. + + Ward Bond + Robert Horton + Frank McGrath + + Regular + + + TVG + + + + Wagon Train + The Jose Maria Moran Story + Adams rescues a man staked and left to die in the desert. + + Ward Bond + Robert Horton + Frank McGrath + + Regular + + + TVG + + + + Mountain Men + Valley of the Wolves + Tom has a bloody encounter with a pack of wolves; Marty meets with his family about surviving the season; Eustace tries to repair a sawmill. + Reality TV + + + TVPG + + + + Campmeeting + Mike Murdock: Uncommon Blessing + With Dr. Mike Murdock. + Religious + + + TVG + + + + Campmeeting + James Payne + With James Payne. + Religious + + + TVG + + + + Gunsmoke + Thirty a Month and Found + A sequence of tragedies leads to the death of three cowboys, one of them a friend of Matt's. + + James Arness + + Drama + + + TVG + + + + Laramie + The Lost Dutchman + When a cattleman who double-crossed Slim is later found dead, Slim becomes the prime suspect in the man's death. + + John Smith + Robert Fuller + Robert Crawford Jr. + + Drama + + + TVPG + + + + Laramie + Cactus Lady + A sick passenger arrives on the stage, looking for Jess, who wants nothing to do with the new arrival. + + John Smith + Robert Fuller + Robert Crawford Jr. + + Drama + + + TVPG + + + + Cheyenne + Fury at Rio Hondo + Cheyenne and Pete are caught in the middle of Mexico's battle against France. + + Clint Walker + + Regular + + + TVG + + + + Gunsmoke + No Chip + Neighbors victimize a rancher with their cattle, but the conflict leads to murder. + + James Arness + Amanda Blake + Milburn Stone + + Drama + + + TVPG + + + + Gunsmoke + The Wake + A henpecked husband plots to escape his wife, but Matt interferes with his plan. + + James Arness + Amanda Blake + Milburn Stone + + Drama + + + TVPG + + + + Rawhide + Incident of the Peyote Cup + Hey Soos is captured by an American Indian tribe and forced to drink a liquid that causes hallucinations. + + Eric Fleming + Robert Cabal + Paul Brinegar + + Drama + + + TVPG + + + + Rawhide + The Race + Rowdy quits after an argument with Favor, then becomes a trail boss himself and promises to outrace his old boss to a railhead. + + Eric Fleming + Clint Eastwood + Paul Brinegar + + Drama + + + TVPG + + + + Wagon Train + The Story of Cain + While in the desert, Cooper finds a prospector who is lost and near death from exposure and thirst. + + Robert Fuller + John McIntire + Frank McGrath + + Regular + + + TVG + + + + Wild West Chronicles + Bat Masterson & the Dodge City Dead Line: Part 2 + Newspaperman Bat Masterson recalls his time as sheriff of Dodge City when he tracked down the man who killed the town's beloved entertainer. + Docu-Series + History + + + TVPG + + + + Gunsmoke + Chicken + A cowboy with a false reputation as a gunfighter must decide whether to fight for a woman. + + James Arness + Milburn Stone + Amanda Blake + + Drama + + + TVPG + + + + Cheyenne + Man Alone + Cheyenne helps a young amnesiac recover his memory. + + Clint Walker + + Regular + + + TVG + + + + Laramie + Edge of Evil + While on the trail with a couple facing financial issues, Jess and the couple find a mule loaded with sacks of gold. + + John Smith + Robert Fuller + Dennis Holmes + + Drama + + + TVPG + + + + Gunsmoke + The Way It Is + Angered when Matt breaks an important date, Kitty goes off to visit friends and comes upon a handsome stranger. + + James Arness + Dennis Weaver + Milburn Stone + + Drama + + + TVPG + + + + Tales of Wells Fargo + The Late Mayor Brown + An unusual gun provides Hardie a clue in a mayor's murder. + + Dale Robertson + + Regular + + + TVPG + + + + Tales of Wells Fargo + Black Trail + Watching a killer's girlfriend in order to capture him. + + Dale Robertson + + Regular + + + TVPG + + + + Gunsmoke + Old Yellow Boots + An unmarried woman is willing to go to any lengths, including murder, to obtain a man. + + James Arness + Dennis Weaver + Milburn Stone + + Drama + + + TVPG + + + + Gunsmoke + The Victim + A lovesick roustabout faces a lynch mob when he accidentally kills a popular young cowhand. + + James Arness + Milburn Stone + Amanda Blake + + Drama + + + TVPG + + + + Tales of Wells Fargo + The Gold Witch + Two sideshow hypnotists, The Great Reardon and his wife, use their powers to fleece a gold-mine owner after Hardie hires them to serve as entertainment at a Wells Fargo celebration. + + Dale Robertson + Jack Ging + William Demarest + + Regular + + + TVPG + + + + Gunsmoke + A Matter of Honor + A man is accused of murder after being found drunk beside a dying man. + + James Arness + Milburn Stone + Amanda Blake + + Drama + + + TVPG + + + + Wagon Train + The Andrew Hale Story + The preacher Andrew Hale wanders off after accidentally killing one of his congregation members. + + Ward Bond + Robert Horton + Frank McGrath + + Regular + + + TVG + + + + Wagon Train + The Rodney Lawrence Story + A young, white man is found wandering with a band of Native Americans. + + Ward Bond + Robert Horton + Frank McGrath + + Regular + + + TVG + + + + Mountain Men + The Revelations + Marty makes a new start in some of Alaska's most unforgiving terrain; Kyle helps his son break his first colt; Eustace and Preston set out to build an enormous lumber shed. + Reality TV + + + TVPG + + + + Campmeeting + Ayo Oritsejafor + Trust God for your breakthrough. Enter into powerful worship! Join us for Campmeeting. + Religious + + + TVG + + + + Campmeeting + Joshua Fowler + Trust God for your breakthrough. Enter into powerful worship! Join us for Campmeeting. + Religious + + + TVG + + + + Gunsmoke + The Wiving + A farmer (Harry Morgan) orders his three sons to go to town and not come back without prospective brides. + + James Arness + Milburn Stone + + Drama + + + TVG + + + + Laramie + Riders of the Night + A wounded outlaw's brother kidnaps Slim and a vet and takes them to the gang's hideout to tend the injured man. + + John Smith + Robert Fuller + Robert Crawford Jr. + + Drama + + + TVPG + + + + Laramie + Mark of the Manhunters + An injured marshal, transporting a prisoner to court to testify, is forced to seek help at the Sherman ranch, where they are surrounded by gang members who want to prevent the prisoner's testimony. + + John Smith + Robert Fuller + Robert Crawford Jr. + + Drama + + + TVPG + + + + Cheyenne + Star in the Dust + The losers of a poker game challenge Cheyenne to a duel. + + Clint Walker + + Regular + + + TVG + + + + Gunsmoke + The Cook + After a customer is killed, Matt must hunt a talented chef over the town's objections. + + James Arness + Amanda Blake + Milburn Stone + + Drama + + + TVPG + + + + Gunsmoke + Old Fool + Matt finds himself stuck in the middle of a domestic triangle with an old married couple. + + James Arness + Amanda Blake + Milburn Stone + + Drama + + + TVPG + + + + Rawhide + The Enormous Fist + Favor tries to help the family of a man he killed accidentally, but the dead man's son swears revenge; guest Brenda Scott. + + Eric Fleming + Clint Eastwood + Paul Brinegar + + Drama + + + TVPG + + + + Rawhide + Piney + A bankrupt former cattle baron (Ed Begley) robs a bank, then plans to escape by joining Favor's cattle drive. + + Eric Fleming + Clint Eastwood + Paul Brinegar + + Drama + + + TVPG + + + + Wagon Train + The Cassie Vance Story + While traveling with Chris Hale's wagon train, a young woman (Laraine Day) with a criminal past is blamed for the theft of a passenger's money. + + Robert Fuller + John McIntire + Frank McGrath + + Regular + + + TVG + + + + Wild West Chronicles + The Hunt for Outlaw Bill Doolin + After Bill Doolin escapes from jail, the US Marshals are determined to keep the notorious outlaw from robbing any more banks or trains; Heck Thomas and his posse finally corner Doolin, he refuses to surrender, and gunfire is the only way out. + Docu-Series + History + + + TVPG + + + + Gunsmoke + Innocence + Two jealous cowboys fight over a new saloon hostess the night before her wedding. + + James Arness + Milburn Stone + Amanda Blake + + Drama + + + TVPG + + + + Cheyenne + The Quick and the Deadly + Cheyenne clears an old friend of a robbery charge. + + Clint Walker + + Regular + + + TVG + + + + Laramie + Broken Honor + When he plans to ride shotgun on a stage carrying a bank shipment, Jess is asked to look the other way and allow a robbery, but when Jess tries to have the man arrested, the office manager refuses to press charges. + + John Smith + Robert Fuller + Dennis Holmes + + Drama + + + TVPG + + + + Law & Order: Special Victims Unit + Criminal Pathology + Detectives continue to investigate a woman's murder and dismemberment by following a lead provided by serial killer Gregory Yates. + + Mariska Hargitay + Ice-T + Kelli Giddish + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Transgender Bridge + When a 15-year-old who was part of a group of kids who put a transgender teen in the hospital is tried as an adult, the SVU team wonders whether the punishment fits the crime. + + Mariska Hargitay + Ice-T + Kelli Giddish + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Institutional Fail + When a starving toddler is found wandering the streets, detectives are led to a home where another child is in grave condition; Chief Dodds (Peter Gallagher) suggests that Benson's squad may be undergoing changes. + + Mariska Hargitay + Ice-T + Kelli Giddish + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Community Policing + An unarmed black man is shot during the pursuit of a suspect, raising racial tensions; Barba must indict the three officers involved -- who claim they followed procedure. + + Mariska Hargitay + Ice-T + Kelli Giddish + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Maternal Instincts + Rollins' mother throws her a baby shower; the team's investigation into the rape of a violinist by her colleague leads to Rollins' fugitive sister; Sgt. Mike Dodds reports for his first day. + + Mariska Hargitay + Ice-T + Kelli Giddish + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Patrimonial Burden + When the 13-year-old daughter of a reality-TV family discovers she's pregnant, the team investigates. + + Mariska Hargitay + Ice-T + Kelli Giddish + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Melancholy Pursuit + The search for a missing teenager takes an emotional toll on Dodds; DNA evidence could lead to the teen's abductor. + + Mariska Hargitay + Ice-T + Kelli Giddish + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Depravity Standard + Barba relies on old evidence, and faces off against a former colleague, during the trial of child abductor Lewis Hodda. + + Mariska Hargitay + Ice-T + Kelli Giddish + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Catfishing Teacher + A high-school student plans a secret hookup with a female teacher, but ends up in a sinister situation. + + Mariska Hargitay + Ice-T + Kelli Giddish + + Drama + + + TV14 + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + Paid Program + + + TV14 + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Get Fit with Total Gym, Risk Free + Get in the best shape of your life with the Total Gym 30 Day Risk-Free Trial Offer. + Paid Program + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + In Touch With Dr. Charles Stanley + In Touch Ministries is the broadcast teaching ministry of Dr. Charles Stanley. + Religious + + + TVG + + + + Inspiration Ministries + Trust God for the breakthrough you've been praying for. Your Heavenly Father loves you and wants you to step into the circumstances of your life! Enter into powerful worship by joining us for Inspiration Ministries. + Religious + + + + Bones + The Rocker in the Rinse Cycle + Booth and Brennan investigate a death at a rock `n' roll fantasy camp. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Bones + The Witch in the Wardrobe + When a cabin in the woods burns down, the bodies of two witches are revealed; Angela and Hodgins are arrested. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The Boy With the Answer + Everyone at the Jeffersonian tries to uncover forensic evidence to help elicit a conviction in the trial of the Gravedigger. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The Beginning in the End + The remains of a hoarder are discovered; Angela's father (Billy Gibbons) visits; Booth and Brennan are each confronted with unique opportunities. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + NCIS + Saviors + Insurgents in Sudan attack volunteer doctors -- including the man married to DiNozzo's ex-girlfriend, Jeanne Benoit. + + Mark Harmon + Michael Weatherly + Pauley Perrette + + Drama + + + TV14 + + + + NCIS + Day in Court + A petty officer hoping to prove his innocence volunteers to be court martialed by NCIS if the team investigates his case; Jake and Bishop talk about their marital issues. + + Mark Harmon + Michael Weatherly + Pauley Perrette + + Drama + + + TVPG + + + + NCIS + Blood Brothers + A sailor who lost two siblings -- Marines who were killed in the line of duty -- needs a bone marrow transplant; Bishop returns to Oklahoma for Thanksgiving. + + Mark Harmon + Michael Weatherly + Pauley Perrette + + Drama + Christmas + + + TVPG + + + + NCIS + Spinning Wheel + Ducky is attacked by a man who claims to have information about his half-brother, who died decades earlier; Jake and Bishop talk about their future. + + Mark Harmon + Michael Weatherly + Pauley Perrette + + Drama + + + TV14 + + + + NCIS + Sister City: Part One + Abby's brother becomes the prime suspect when the passengers and crew of a private plane traveling from New Orleans are poisoned. + + Mark Harmon + Michael Weatherly + Pauley Perrette + + Drama + + + TVPG + + + + NCIS + Deja Vu + A seaman who was prepared to testify before a grand jury is murdered, which leads the team to discover the resurgence of an international human trafficking ring; a storm causes power outages all over the city. + + Mark Harmon + Michael Weatherly + Pauley Perrette + + Drama + + + TV14 + + + + NCIS + Decompressed + An unusual investigation takes place when the body of a murdered deep-sea diver and his suspected co-workers must stay in a decompression chamber for four days. + + Mark Harmon + Michael Weatherly + Pauley Perrette + + Drama + + + TV14 + + + + NCIS + React + Secretary of the Navy Sarah Porter's daughter is kidnapped; NCIS Special Agent Valerie Page, McGee's childhood friend, assists the team with advance tactics training. + + Mark Harmon + Michael Weatherly + Pauley Perrette + + Drama + + + TV14 + + + + NCIS + Loose Cannons + Dr. Cyril Taft finds key evidence when he is assigned to surgical duty for a suspect. + + Mark Harmon + Michael Weatherly + Pauley Perrette + + Drama + + + TV14 + + + + NCIS + After Hours + Personal plans are interrupted when errors are found in what seemed to be a straight-forward, closed case; McGee and Delilah argue whether work should be discussed during dinner. + + Mark Harmon + Michael Weatherly + Pauley Perrette + + Drama + + + TV14 + + + + NCIS + Scope + After an American couple is attacked in Iraq, Gibbs questions the lone survivor of a Special Ops group that was attacked months earlier in the same area. + + Mark Harmon + Michael Weatherly + Pauley Perrette + + Drama + + + TV14 + + + + NCIS + Reasonable Doubts + When a Navy officer is murdered, the team must determine whether the man's wife or mistress is lying; a homeless woman believes Anthony DiNozzo Sr. is her father. + + Mark Harmon + Michael Weatherly + Pauley Perrette + + Drama + + + TVPG + + + + NCIS + Charade + After Special Agent DiNozzo's identity is stolen, the perpetrators use his name to begin blackmailing senators. + + Mark Harmon + Michael Weatherly + Pauley Perrette + + Drama + + + TVPG + + + + NCIS + Return to Sender + NCIS teams up with the FBI and Homeland Security to pursue two escaped British prisoners, one of them a former spy, who have crossed international borders. + + Mark Harmon + Michael Weatherly + Pauley Perrette + + Drama + + + TV14 + + + + NCIS + Homefront + Gibbs suspects that a 14-year-old who stopped a home invasion is holding back information; Vance and Fornell head to London as part of the case involving the escaped British spy. + + Mark Harmon + Michael Weatherly + Pauley Perrette + + Drama + + + TV14 + + + + NCIS + Dead Letter + The FBI and M16 continue their international manhunt as the escaped British spy leaves one agent fighting for his life in the ICU. + + Mark Harmon + Michael Weatherly + Pauley Perrette + + Drama + + + TV14 + + + + Ninja Woodfire Outdoor Grill + Meet the Shark Ninja Wood Fire Grill, with Master Grill, BBQ Smoke, and Air Fry outdoor capabilities. Powered by electricity and flavored by real burning wood pellets, Woodfire Technology allows you to easily create rich flavor you can see and taste. + Paid Program + + + + Total Gym with Chuck & Dakota Norris + Get in the best shape of your life with the Total Gym 30 Day Risk-Free Trial Offer. + Paid Program + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + Ninja Woodfire Outdoor Grill + Meet the Shark Ninja Wood Fire Grill, with Master Grill, BBQ Smoke, and Air Fry outdoor capabilities. Powered by electricity and flavored by real burning wood pellets, Woodfire Technology allows you to easily create rich flavor you can see and taste. + Paid Program + + + + Through the Bible With Les Feldick + Religious programming. + Religious + + + TVG + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + NCIS: Los Angeles + Let Fate Decide + Callen and Sam work with Navy Capt. Harmon Rabb Jr. to apprehend spies aboard the USS Allegiance; Hetty tries to neutralize a missile attack in the Middle East; Kensi and Deeks are trapped in a mobile CIA unit in Iraq while under attack. + + Chris O'Donnell + LL Cool J + Linda Hunt + + Drama + + + TV14 + + + + NCIS: Los Angeles + Decoy + Faced with multiple cases worldwide, the team splits up, with Callen and Sam working in Tel Aviv while Kensi partners with Department of Justice Agent Lance Hamilton in Los Angeles. + + Chris O'Donnell + LL Cool J + Linda Hunt + + Drama + + + TV14 + + + + NCIS: Los Angeles + Hail Mary + Callen and Sam run protection detail for retired Navy Adm. Kilbride in an operation to locate a missing naval intelligence officer. + + Chris O'Donnell + LL Cool J + Linda Hunt + + Drama + + + TV14 + + + + NCIS: Los Angeles + Yellow Jack + Callen and Sam are aboard a ship that is placed under quarantine for possible Ebola exposure; Kensi and Deeks investigate the murder of a petty officer who recently departed the ship and is linked to the Ebola exposure. + + Chris O'Donnell + LL Cool J + Linda Hunt + + Drama + + + TVPG + + + + NCIS: Los Angeles + Provenance + The team searches for a stolen painting valued at $40 million after online chatter indicates the artwork is being sold on the black market to fund terrorist activity. + + Chris O'Donnell + LL Cool J + Linda Hunt + + Drama + + + TV14 + + + + Criminal Minds + Assistance Is Futile + A mother steps forward with valuable information for the BAU to aid in their investigation of an unsub known as the bone crusher; Reid must adapt to a new set of rules in prison. + + Joe Mantegna + Matthew Gray Gubler + Kirsten Vangsness + + Drama + Legal + + + TV14 + + + + Criminal Minds + In the Dark + The BAU believes two unsubs may be operating simultaneously when victims killed in two different ways are discovered in the same city; the team grapples with keeping Reid safe in prison. + + Joe Mantegna + Matthew Gray Gubler + Kirsten Vangsness + + Drama + Legal + + + TV14 + + + + Criminal Minds + Hell's Kitchen + The BAU investigates an urban vampire who kidnaps his victims at night and holds them underground in the sewer system; Reid makes a difficult decision in prison. + + Joe Mantegna + Matthew Gray Gubler + Kirsten Vangsness + + Drama + Legal + + + TV14 + + + + Criminal Minds + True North + The BAU is called to investigate after three victims are discovered tied to stakes in the brutal Arizona desert. + + Joe Mantegna + Matthew Gray Gubler + Kirsten Vangsness + + Drama + Legal + + + TV14 + + + + Criminal Minds + Unforgettable + The BAU investigates when several federal government employees, including a close friend of Walker's, succumb to symptoms of a heart attack; Reid anxiously awaits his trial date. + + Joe Mantegna + Matthew Gray Gubler + Kirsten Vangsness + + Drama + Legal + + + TV14 + + + + Criminal Minds + Green Light + When Reid fears his mother has been abducted, he asks the BAU to investigate while he's stuck in prison. + + Joe Mantegna + Matthew Gray Gubler + Kirsten Vangsness + + Drama + Legal + + + TV14 + + + + Criminal Minds + Red Light + Morgan brings the BAU new information in the case against Mr. Scratch, a serial killer and escaped convict who has been wreaking havoc on the team. + + Joe Mantegna + Matthew Gray Gubler + Kirsten Vangsness + + Drama + Legal + + + TV14 + + + + Criminal Minds + Wheels Up + Agent Matt Simmons joins the BAU team in a race to take down Mr. Scratch and save one of their own in the process. + + Joe Mantegna + Paget Brewster + Matthew Gray Gubler + + Drama + Legal + + + TV14 + + + + FBI + One Night Stand + When a young couple is found murdered in a New York City park after returning from a vacation, the team searches for a suspect linked to the drug trade; Scola turns over a new leaf when it comes to his relationships. + + Missy Peregrym + Zeeko Zaki + Jeremy Sisto + + Drama + + + TV14 + + + + FBI + Hero's Journey + The team pivots when their sting operation to secure a massive bomb from an illegal broker leads them to discover that the device is already in the wrong hands; Jubal's promise to be present at his son's birthday party is put to the test. + + Missy Peregrym + Zeeko Zaki + Jeremy Sisto + + Drama + + + TV14 + + + + FBI + Love Is Blind + When an officer is shot dead at a pawn shop along with the store's owner, the team tries to figure out why a young, recent Ivy League dropout is tied to the crime. + + Missy Peregrym + Zeeko Zaki + Jeremy Sisto + + Drama + + + TV14 + + + + FBI + Prodigal Son + As the team investigates a deadly robbery, it discovers one of the perpetrators is a classmate of Jubal's son. + + Missy Peregrym + Zeeko Zaki + Jeremy Sisto + + Drama + + + TV14 + + + + FBI + Victim + The team investigates a series of brutal assaults; OA hides information about his own mugging. + + Missy Peregrym + Zeeko Zaki + Jeremy Sisto + + Drama + + + TV14 + + + + FBI + Fear Nothing + OA is forced to confront one of his biggest fears when the team discovers that deadly sarin gas may have been sold to terrorists. + + Missy Peregrym + Zeeko Zaki + Jeremy Sisto + + Drama + + + TV14 + + + + FBI + Face Off + When a morning show host is murdered inside her home, the team tracks the killer; things become awkward for Scola when agent Nina Chase becomes part of the team during Maggie's recovery. + + Missy Peregrym + Zeeko Zaki + Jeremy Sisto + + Drama + + + TV14 + + + + Total Gym with Chuck & Dakota Norris + Get in the best shape of your life with the Total Gym 30 Day Risk-Free Trial Offer. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + Paid Program + + + TV14 + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Through the Bible With Les Feldick + Religious programming. + Religious + + + TVG + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + Paid Program + + + TV14 + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + NCIS: Los Angeles + A Bloody Brilliant Plan + The NCIS team reluctantly aligns with two former criminals from England, Ricky Dorsey and Frankie Bolton, after a powerful arms dealer kidnaps Ricky's daughter in an attempt to obtain a dangerous weapons system. + + Chris O'Donnell + LL Cool J + Linda Hunt + + Drama + + + TV14 + + + + NCIS: Los Angeles + Concours D'Elegance + The NCIS team links the theft of an undersea drone prototype to a video game streamer's elaborate party; Callen and Sam cross paths again with insurance broker Katherine Casillas, who insures the gamer's property. + + Chris O'Donnell + LL Cool J + Linda Hunt + + Drama + + + TV14 + + + + NCIS: Los Angeles + Human Resources + After a Navy lieutenant disappears from the scene of a car accident, the team discovers his laptop is missing along with recently accessed confidential information for retired Navy SEALs. + + Chris O'Donnell + LL Cool J + Linda Hunt + + Drama + + + TV14 + + + + NCIS: Los Angeles + Kill Beale: Vol. 1 + Callen and Sam travel to San Francisco to search for Beale after he's kidnapped during a clandestine mission for Hetty. + + Chris O'Donnell + LL Cool J + Linda Hunt + + Drama + + + TVPG + + + + NCIS: Los Angeles + Mother + A former Black Ops agent originally recruited and trained by Hetty Lange, returns to seek revenge on Hetty for the life she introduced him to. + + Chris O'Donnell + LL Cool J + Linda Hunt + + Drama + + + TV14 + + + + Chicago Fire + Fire Cop + Severide and Seager team up to investigate a fire at the home of a troubled young woman; Pelham moves into 51's rumored cursed office; Kylie assists Kidd with Girls on Fire. + + Jesse Spencer + Taylor Kinney + Eamonn Walker + + Drama + + + TV14 + + + + Chicago Fire + An Officer With Grit + Chief Hawkins goes above and beyond to help Brett and Violet with a problem; Kidd pursues an open lieutenant position; a blast from the past asks Mouch and Herrmann for a favor. + + Jesse Spencer + Taylor Kinney + Eamonn Walker + + Drama + + + TV14 + + + + Chicago Fire + The Missing Piece + Following an injury in the aftermath of an industrial fire, Severide and Seager work together to investigate an anonymous tip; Kidd searches for the right person to fill the open spot on Truck 81; a possible new recruit to 51 gets tested at a call. + + Jesse Spencer + Taylor Kinney + Eamonn Walker + + Drama + + + TV14 + + + + Chicago Fire + Finish What You Started + Firehouse 51 tackles a fire caused by a dropped jet engine, and one of their own is accused of a theft related to the incident; Kidd and Boden disapprove of Kylie's potential new love interest. + + Jesse Spencer + Taylor Kinney + Eamonn Walker + + Drama + + + TV14 + + + + Chicago Fire + Pilot + The members of Firehouse 51 struggle to cope when one of their own dies in a fire; as Lts. Casey and Severide blame each other for the tragedy, Casey also secretly goes through a separation. + + Jesse Spencer + Taylor Kinney + Charlie Barnett + + Drama + + + TV14 + + + + Chicago Fire + Mon Amour + Severide hides his serious shoulder injury as he tries to rescue a construction worker from a collapsed building; two teens are trapped in a vehicle. + + Jesse Spencer + Taylor Kinney + Charlie Barnett + + Drama + + + TV14 + + + + Chicago Fire + Professional Courtesy + Casey must decide whether to turn in a cop's son who paralyzed a teen in a drunken-driving accident; Severide learns he has a fractured vertebra; Mills is torn between his mother and the job. + + Jesse Spencer + Taylor Kinney + Charlie Barnett + + Drama + + + TV14 + + + + Chicago Fire + One Minute + Chief Boden faces accusations that he abandoned a homeless man to die in a warehouse fire; Severide helps an elderly woman; Detective Voight tries to convince Casey not to testify against his son; Shay has to face her ex during a call. + + Jesse Spencer + Taylor Kinney + Charlie Barnett + + Drama + + + TV14 + + + + Chicago Fire + Hanging On + Casey must face the consequences of confronting Detective Voight; Dawson faces disciplinary action; Severide reaches out to an old friend about his injury. + + Jesse Spencer + Taylor Kinney + Charlie Barnett + + Drama + + + TV14 + + + + Chicago Fire + Hold on Tight + Kidd and Severide's honeymoon is interrupted by a dangerous person from their past; Kidd's former academy classmate joins Firehouse 51; Brett and Violet reflect on their relationships. + + Taylor Kinney + Eamonn Walker + David Eigenberg + + Drama + + + TV14 + + + + Chicago Fire + Every Scar Tells a Story + Javi spends a couple of shifts at Firehouse 51; Kidd and Carver work together to help Carver's former boss; as Hawkins and Violet's relationship blossoms, Gallo turns his attention elsewhere. + + Jesse Spencer + Taylor Kinney + Eamonn Walker + + Drama + + + TV14 + + + + Chicago Fire + Completely Shattered + Kidd recruits Carver, Capp and Tony to help prepare her new lieutenant's quarters; Severide and Detective Pryma reluctantly pair up to work a police investigation; Firehouse 51 comes together to fight a movie theater fire. + + Jesse Spencer + Taylor Kinney + Eamonn Walker + + Drama + + + TV14 + + + + Chicago Fire + The Center of the Universe + Kidd gets a glimpse into Carver's chaotic personal life; Mouch and Herrmann receive an unexpected gift. + + Jesse Spencer + Taylor Kinney + Eamonn Walker + + Drama + + + TV14 + + + + Chicago Fire + Winterfest + Gallo, Violet and Ritter debut their microbrewery business at Winterfest; Brett prepares to present her paramedicine program to an oversight panel; Firehouse 51 gets in the holiday spirit. + + Jesse Spencer + Taylor Kinney + Eamonn Walker + + Drama + + + TVPG + + + + Chicago Fire + Hot and Fast + Cruz forms a bond with a young immigrant boy he meets while fighting an apartment fire; Squad makes plans to prank the newest member of their team; Hawkins and Violet struggle to keep their relationship a secret. + + Jesse Spencer + Taylor Kinney + Eamonn Walker + + Drama + + + TV14 + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Ninja Woodfire Outdoor Grill + Meet the Shark Ninja Wood Fire Grill, with Master Grill, BBQ Smoke, and Air Fry outdoor capabilities. Powered by electricity and flavored by real burning wood pellets, Woodfire Technology allows you to easily create rich flavor you can see and taste. + Paid Program + + + + Coin Collecting with Mike Mezack + Learn about the wonderful world of numismatics with your host Mike Mezack and get the opportunity to build your own collection with some of the best deals around! + Paid Program + + + + Through the Bible With Les Feldick + Religious programming. + Religious + + + TVG + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + Paid Program + + + TV14 + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + NCIS: New Orleans + The Assassination of Dwayne Pride + A journalist posts a scathing article documenting Pride's. + + Scott Bakula + Lucas Black + Vanessa Ferlito + + Drama + + + TV14 + + + + NCIS: New Orleans + Checkmate, Part I + Pride assembles an off-the-books team to search for a loophole when he faces a grand jury indictment for abuse of power. + + Scott Bakula + Lucas Black + Vanessa Ferlito + + Drama + + + TV14 + + + + NCIS: New Orleans + Checkmate, Part II + Pride's teams uncover a sinister plot during the New Orleans Tricentennial Fleet Week celebration. + + Scott Bakula + Lucas Black + Vanessa Ferlito + + Drama + + + TV14 + + + + NCIS: New Orleans + See You Soon + While Pride fights for his life in the ICU, the team scours the city for the hit woman who attempted to assassinate him. + + Scott Bakula + Lucas Black + Vanessa Ferlito + + Drama + + + TV14 + + + + NCIS: New Orleans + Inside Out + The team searches for a former Irish Republican Army bomb maker who was smuggled into the city; they are joined by agent Hannah Khoury, Pride's replacement during his medical leave; Pride considers a new position within the agency. + + Scott Bakula + Lucas Black + Vanessa Ferlito + + Drama + + + TV14 + + + + Blue Bloods + More Than Meets the Eye + Erin tries not to feel overpowered as her new boss shadows her at work just as she's trying to get a nervous eyewitness to reveal the identity of who shot her boyfriend; Jaime arrests an intrusive reporter who appears at a series of store lootings. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + For Whom the Bell Tolls + Baez confides in Danny and asks for his help in proving her innocence after she finds a corpse in her front yard; Erin struggles to find a peaceful solution when she receives harsh case notes from her boss. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + The Common Good + Frank asks Erin to help with policy reform he privately backs but can't publicly support; Danny and Baez become enmeshed in the world of competitive gaming when a high-profile video game streamer is murdered. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + Guardian Angels + Frank takes matters into his own hands to save Gormley's career when complaints against him become public knowledge; Danny and Baez learn to be allies when the transgender community comes under attack. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + Happy Endings + Business becomes personal for Frank and his team when Baker is assaulted; Erin asks her ex-husband to represent a defendant she's prosecuting; Eddie wonders if she's being too stubborn after she publicly undermines one of Jamie's decisions at work. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Mysticism With Sadhguru + Documentary + + + + Kabhi Alvida Na Kahna + Regular + + + + Virtual Encounters + News + + + TVG + + + + Karpum's Travel + Travel + + + + Rag Rag Mein Ganga + Drama + + + TVG + + + + Forts of India + Performing Arts + + + TVG + + + + English News + Daily News Bulletin from India. + News + + + + Baatein Filmo Ki + Performing Arts + + + TVG + + + + Mysticism With Sadhguru + Documentary + + + + Karpum's Travel + Travel + + + + Aspirational India - Good News India + News + + + + Aspirational India - Good News India + News + + + + English News + Daily News Bulletin from India. + News + + + + Forts Of India + History + Performing Arts + + + + ITV Gold Features + Drama + + + + Mornings With Sadhvi Bhagawati + Religious + + + + Meditation Session + Religious + + + + English News + Daily News Bulletin from India. + News + + + + Hindi News + Daily News Bulletin from India. + News + + + + R.S.R. TV + Caribbean Entertainment Show. + Performing Arts + + + + ITV Gold + Local + + + + Karpum's Travel + Travel + + + + Vision of Asia - Voice of the Community + Drama + + + + Gora + Regular + + + TVG + + + + Shillong Holiday Home + Documentary + + + + Kanaposie + Variety + + + + Thumari - Ek Parampara + The musician plans to have his children carry the family's legacy, but they have their own dreams. + Drama + + + + Aisa Prem Kahaan + Ramesh and Hemnalini are hit by the social and natural calamities and tested to the limit. + + Ramesh + + Performing Arts + + + + Subah Ke Raag + Regular + + + + Betaab + A young man (Sunny Deol) and woman (Amrita Singh) fall in love, but face obstacles from their families. + + Sunny Deol + Amrita Singh + Nirupa Roy + + 1983 + Movies + Romance + + + + Hindi News + Daily News Bulletin from India. + News + + + + Wide Angle + with Ashok Vyas. + Performing Arts + + + + English News + Daily News Bulletin from India. + News + + + + Business Talk With AJ + Talk Shows + + + + Real Estate On Track + Variety + + + + Kabhi Alvida Na Kahna + Regular + + + + Virtual Encounters + News + + + TVG + + + + Forts of India + Performing Arts + + + TVG + + + + HW Hour + Performing Arts + + + + Rag Rag Mein Ganga + Drama + + + TVG + + + + Karpum's Travel + Travel + + + + English News + Daily News Bulletin from India. + News + + + + Guyana News + Indo-South Asian Community platform. + News + + + + ITV Gold + Local + + + + Vision of Asia + Weekly round-up of Indo-South Asian community developments. + Local + + + + English News + Daily News Bulletin from India. + News + + + + In Conversation + Local + + + + ITV Gold Features + Drama + + + + Mornings With Sadhvi Bhagawati + Religious + + + + Meditation Session + Religious + + + + English News + Daily News Bulletin from India. + News + + + + Hindi News + Daily News Bulletin from India. + News + + + + Aisa Prem Kahaan + Ramesh and Hemnalini are hit by the social and natural calamities and tested to the limit. + + Ramesh + + Performing Arts + + + + Tejpur General Store + Performing Arts + + + + Dil Hai Phir Bhi Hindustani + Performing Arts + + + TVG + + + + News in Telugu + A rapid fire news bulletin. + News + + + + Rag Rag Mein Ganga + Drama + + + TVG + + + + In Conversation + Local + + + + Aisa Prem Kahaan + Ramesh and Hemnalini are hit by the social and natural calamities and tested to the limit. + + Ramesh + + Performing Arts + + + + Byomkesh Bakshi + Local + + + TVG + + + + Byomkesh Bakshi + Local + + + TVG + + + + Tejpur General Store + Performing Arts + + + + Dil Hai Phir Bhi Hindustani + Performing Arts + + + TVG + + + + Movie + Movie to be disclosed. + Movies + + + + Hindi News + Daily News Bulletin from India. + News + + + + In Conversation + Local + + + + English News + Daily News Bulletin from India. + News + + + + Insight Tonight With Ashok Vyas + Local + + + + Vision of Asia - Voice of the Community + Drama + + + + Kabhi Alvida Na Kahna + Regular + + + + Tejpur General Store + Performing Arts + + + + Dil Hai Phir Bhi Hindustani + Performing Arts + + + TVG + + + + HW Hour + Performing Arts + + + + Rag Rag Mein Ganga + Drama + + + TVG + + + + Vision of Asia - Voice of the Community + Drama + + + + English News + Daily News Bulletin from India. + News + + + + Kabhi Alvida Na Kahna + Regular + + + + Tejpur General Store + Performing Arts + + + + Dil Hai Phir Bhi Hindustani + Performing Arts + + + TVG + + + + Aisa Prem Kahaan + Ramesh and Hemnalini are hit by the social and natural calamities and tested to the limit. + + Ramesh + + Performing Arts + + + + English News + Daily News Bulletin from India. + News + + + + In Conversation + Local + + + + ITV Gold Features + Drama + + + + Mornings With Sadhvi Bhagawati + Religious + + + + Meditation Session + Religious + + + + English News + Daily News Bulletin from India. + News + + + + Hindi News + Daily News Bulletin from India. + News + + + + Aisa Prem Kahaan + Ramesh and Hemnalini are hit by the social and natural calamities and tested to the limit. + + Ramesh + + Performing Arts + + + + Tejpur General Store + Performing Arts + + + + Dil Hai Phir Bhi Hindustani + Performing Arts + + + TVG + + + + News in Punjabi + Latest news from Punjab, India. + News + + + + Kabhi Alvida Na Kahna + Regular + + + + Forts Of India + History + Performing Arts + + + + Aisa Prem Kahaan + Ramesh and Hemnalini are hit by the social and natural calamities and tested to the limit. + + Ramesh + + Performing Arts + + + + Byomkesh Bakshi + Local + + + TVG + + + + Byomkesh Bakshi + Local + + + TVG + + + + Tejpur General Store + Performing Arts + + + + Dil Hai Phir Bhi Hindustani + Performing Arts + + + TVG + + + + Movie + Movie to be disclosed. + Movies + + + + Hindi News + Daily News Bulletin from India. + News + + + + Aspirational India - Good News India + News + + + + English News + Daily News Bulletin from India. + News + + + + Insight Tonight With Ashok Vyas + Local + + + + Vision of Asia - Voice of the Community + Drama + + + + ITV Gold Geetmala + Performing Arts + + + + Tejpur General Store + Performing Arts + + + + Dil Hai Phir Bhi Hindustani + Performing Arts + + + TVG + + + + HW Hour + Performing Arts + + + + Forts Of India + History + Performing Arts + + + + Vision of Asia - Voice of the Community + Drama + + + + English News + Daily News Bulletin from India. + News + + + + ITV Gold Geetmala + Performing Arts + + + + Tejpur General Store + Performing Arts + + + + Dil Hai Phir Bhi Hindustani + Performing Arts + + + TVG + + + + Aisa Prem Kahaan + Ramesh and Hemnalini are hit by the social and natural calamities and tested to the limit. + + Ramesh + + Performing Arts + + + + English News + Daily News Bulletin from India. + News + + + + Doctor's Chat + Health + + + + ITV Gold Features + Drama + + + + Mornings With Sadhvi Bhagawati + Religious + + + + Meditation Session + Religious + + + + English News + Daily News Bulletin from India. + News + + + + Hindi News + Daily News Bulletin from India. + News + + + + Aisa Prem Kahaan + Ramesh and Hemnalini are hit by the social and natural calamities and tested to the limit. + + Ramesh + + Performing Arts + + + + Tejpur General Store + Performing Arts + + + + Dil Hai Phir Bhi Hindustani + Performing Arts + + + TVG + + + + Sankat Mochan Hanuman + Music + + + TVG + + + + ITV Gold Geetmala + Performing Arts + + + + Explorer of the Misty Mountains + Travel + + + + Aisa Prem Kahaan + Ramesh and Hemnalini are hit by the social and natural calamities and tested to the limit. + + Ramesh + + Performing Arts + + + + Byomkesh Bakshi + Local + + + TVG + + + + Byomkesh Bakshi + Local + + + TVG + + + + Tejpur General Store + Performing Arts + + + + Dil Hai Phir Bhi Hindustani + Performing Arts + + + TVG + + + + Movie + Movie to be disclosed. + Movies + + + + Hindi News + Daily News Bulletin from India. + News + + + + This Week With Padma Shri Dr Sudhir Parikh + Health + Talk Shows + + + + Aspirational India - Good News India + News + + + + Maximize Living Today With Bishop I.V. Hilliard + With Bishop I.V. Hilliard, Senior Pastor of New Light Christian Center Church in Houston. + Religious + + + + Miracles Do Happen With Apostle Wayne T. Jackson + Apostle Wayne and Dr. Beverly Y. Jackson demonstrates signs, miracles and wonders through Miracles Do Happen ministry broadcast. + Religious + + + + Time 4 Video Gospel With Dr. Bobby Jones + Gospel music videos. + Religious + Music + + + + Inspired Family Life With Dr. David Jefferson + Religious + + + + Time 4 Video Gospel With Dr. Bobby Jones + Gospel music videos. + Religious + Music + + + + PHD Ministries + Prayer, Healing, and Deliverance Ministries. + Religious + + + TVG + + + + Victory Life Today + Religious + + + + Miracles Do Happen With Apostle Wayne T. Jackson + Apostle Wayne and Dr. Beverly Y. Jackson demonstrates signs, miracles and wonders through Miracles Do Happen ministry broadcast. + Religious + + + + Time 4 Video Gospel With Dr. Bobby Jones + Gospel music videos. + Religious + Music + + + + 230 Herbs with Greg Gunn + Regular + + + + 230 Herbs with Greg Gunn + Regular + + + + PHD Ministries + Prayer, Healing, and Deliverance Ministries. + Religious + + + TVG + + + + Believer's Voice of Victory + Kenneth and Gloria Copeland talk about how love, faith, prosperity and healing can be found through listening to the Word of God. + Religious + + + TVG + + + + Inspiration Ministries Camp Meeting + A spirit filled camp meeting reveals Biblical keys to achieving unprecedented success. + Religious + + + TVG + + + + On the Floor with Dr. Terra DeFoe + Up to date legislative; business; finance; family and faith based information to the community by providing one on one or panel interviews; highlighting the interpersonal testimonies of professionals and other leaders. + Local + + + + Reaching the World for Christ + Religious + + + + Inspiration Ministries Camp Meeting + A spirit filled camp meeting reveals Biblical keys to achieving unprecedented success. + Religious + + + TVG + + + + Pray in Jesus' Name + With Gordon James Klingenschmitt, former U.S. Navy Chaplain who stood up for the rights of military chaplains to pray publicly. + Religious + + + + W. Franklyn Richardson Ministries + Dr. W. Franklyn Richardson speaks truth to power on issues of faith, social justice and equality through the gospel of Jesus Christ from the ministry of Grace Baptist Church in Mount Vernon, N.Y. + Religious + + + + Tony & Cynthia Brazelton + Teaching and preaching the word of God. + Religious + + + TVG + + + + Jewish Voice + Rabbi Jonathan Bernis teaches about the Jewish roots of Christianity and Last Days Bible Prophecy. + Religious + + + TVG + + + + Bishop Stanley Williams + With Bishop Stanley M. Williams, Founder and Senior Pastor of The Church 3:20 in Jacksonville, Fla. + Religious + + + + Max Life With Bishop I.V. Hilliard + Religious + + + + Miracles Do Happen With Apostle Wayne T. Jackson + Apostle Wayne and Dr. Beverly Y. Jackson demonstrates signs, miracles and wonders through Miracles Do Happen ministry broadcast. + Religious + + + + Ever Increasing Faith With Dr. Fred Price + The dynamic teaching of Dr Frederick K. C. Price. + Religious + + + TVG + + + + Bill Winston Ministries + Embracing the word of God. + + Bill Winston + + Religious + + + TVPG + + + + In Touch With Dr. Charles Stanley + In Touch Ministries is the broadcast teaching ministry of Dr. Charles Stanley. + Religious + + + TVG + + + + Mt. Carmel Baptist With Pastor Timothy Flemming + Religious + + + + Robin Davis Ministries + Religious + + + + March of Faith + Bishop P.A. Brooks. + Religious + + + + Inspired Family Life With Dr. David Jefferson + Religious + + + + Life Today with James Robison + Inspirational stories through a talk show format with daily guests. + Talk Shows + + + + Climbing Higher With Bishop Eric Lambert + Bishop Eric Lambert, the pastor of Bethel Deliverance International Church in Wyncote, Penn., provides biblical and practical teaching for achieving daily victory. + Religious + + + + The Jewish Jesus + Messianic Rabbi Kirt Schneider, a Jewish believer in Jesus, shares his insights into the Old and New Testaments, provides guidance on prayer and delivers the Word of God. + Religious + + + TVG + + + + Newton Media Get Involved + Regular + + + + Bishop Stanley Williams + With Bishop Stanley M. Williams, Founder and Senior Pastor of The Church 3:20 in Jacksonville, Fla. + Religious + + + + Jewish Voice with Jonathan Bernis + Exploring the Jewish roots of Christian faith; learning how bible prophecy and today's world events surrounding Israel are connected. + Religious + Talk Shows + + + TVG + + + + Max Life With Bishop I.V. Hilliard + Religious + + + + Miracles Do Happen With Apostle Wayne T. Jackson + Apostle Wayne and Dr. Beverly Y. Jackson demonstrates signs, miracles and wonders through Miracles Do Happen ministry broadcast. + Religious + + + + Bobby Hogan Ministries + Religious + + + + Trinity Gospel Temple with Brother Dave Lombardi + Religious + + + + Tomorrow's World + Original Christianity as taught and practiced by Jesus Christ and the original Apostles. + Religious + + + TVG + + + + Breath of the Spirit Ministries with Dr. Michelle Corral + Religious + + + + Through the Bible + Les Feldick has a love for the Scriptures, bringing it alive to believers of every denomination. + Religious + + + + Jewish Voice + Rabbi Jonathan Bernis teaches about the Jewish roots of Christianity and Last Days Bible Prophecy. + Religious + + + TVG + + + + Forgotten Truths With Richard Jordan + With featured Bible teacher Richard Jordan. + Religious + + + + Joseph Prince Ministries + Religious programming. + Religious + + + + 230 Herbs with Greg Gunn + Regular + + + + Miracles Do Happen With Apostle Wayne T. Jackson + Apostle Wayne and Dr. Beverly Y. Jackson demonstrates signs, miracles and wonders through Miracles Do Happen ministry broadcast. + Religious + + + + Breakthrough With Rod Parsley + Religious + + + TVG + + + + Sid Roth's It's Supernatural! + Investigative reporter Sid Roth verifies the supernatural. + Religious + + + TVG + + + + The Jim Bakker Show + Jim and Lori Bakker bring to the stage prophets, experts, and leaders of the Christian world to discuss and understand Biblical prophecy and the Revelations of God's Word. + Religious + + + TVG + + + + Stem Cell Activators With Dr. Joseph Christiano + Naturopathic doctor, Joseph Christiano, shares how stem cell therapies help people live healthier. + Health + + + + Miracles Do Happen With Apostle Wayne T. Jackson + Apostle Wayne and Dr. Beverly Y. Jackson demonstrates signs, miracles and wonders through Miracles Do Happen ministry broadcast. + Religious + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + TVG + + + + Sid Roth's It's Supernatural! + Investigative reporter Sid Roth verifies the supernatural. + Religious + + + TVG + + + + Creflo Dollar Ministries + Dr. Creflo and Taffi Dollar minister to people from all walks of life. + Religious + + + TVG + + + + Enjoying Everyday Life with Joyce Meyer + Religious + + + + The Jewish Jesus + Messianic Rabbi Kirt Schneider, a Jewish believer in Jesus, shares his insights into the Old and New Testaments, provides guidance on prayer and delivers the Word of God. + Religious + + + TVG + + + + Food For Your Soul with Apostle Ron Hill + Religious + + + + Miracles Do Happen With Apostle Wayne T. Jackson + Apostle Wayne and Dr. Beverly Y. Jackson demonstrates signs, miracles and wonders through Miracles Do Happen ministry broadcast. + Religious + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + TVG + + + + Breakthrough With Rod Parsley + Religious + + + TVG + + + + Maximize Living Today With Bishop I.V. Hilliard + With Bishop I.V. Hilliard, Senior Pastor of New Light Christian Center Church in Houston. + Religious + + + + The Jim Bakker Show + Jim and Lori Bakker bring to the stage prophets, experts, and leaders of the Christian world to discuss and understand Biblical prophecy and the Revelations of God's Word. + Religious + + + TVG + + + + Jewish Voice + Rabbi Jonathan Bernis teaches about the Jewish roots of Christianity and Last Days Bible Prophecy. + Religious + + + TVG + + + + Grace for Today + Pastor Lawson Perdue teaches the Bible. + Religious + + + + Life Today with James Robison + Inspirational stories through a talk show format with daily guests. + Talk Shows + + + + The CrossOver With Bishop Clarence Langston + With Bishop Clarence Langston, senior pastor of Word in Action Christian Center International in Detroit. + Religious + + + + Dr. Lynn Hiles + Dr. Lynn Hiles preaches the word of God. + Specials + Religious + + + TVG + + + + Jewish Voice + Rabbi Jonathan Bernis teaches about the Jewish roots of Christianity and Last Days Bible Prophecy. + Religious + + + TVG + + + + Prosper Through Prophecy With Prophet Fred Brame + Local + + + + Miracles Do Happen With Apostle Wayne T. Jackson + Apostle Wayne and Dr. Beverly Y. Jackson demonstrates signs, miracles and wonders through Miracles Do Happen ministry broadcast. + Religious + + + + The Jewish Jesus + Messianic Rabbi Kirt Schneider, a Jewish believer in Jesus, shares his insights into the Old and New Testaments, provides guidance on prayer and delivers the Word of God. + Religious + + + TVG + + + + Through the Bible With Les Feldick + Religious programming. + Religious + + + TVG + + + + The Church 3:20 With Bishop Stanley Williams + From The Church 3:20 in Jacksonville, Fla. + Religious + + + + Faith for Every Nation With Mark and Trina Hankins + Religious + + + TVG + + + + Maximize Living Today With Bishop I.V. Hilliard + With Bishop I.V. Hilliard, Senior Pastor of New Light Christian Center Church in Houston. + Religious + + + + Miracles Do Happen With Apostle Wayne T. Jackson + Apostle Wayne and Dr. Beverly Y. Jackson demonstrates signs, miracles and wonders through Miracles Do Happen ministry broadcast. + Religious + + + + Food For Your Soul with Apostle Ron Hill + Religious + + + + Bill Winston Ministries + Embracing the word of God. + + Bill Winston + + Religious + + + TVPG + + + + Sid Roth's It's Supernatural! + Investigative reporter Sid Roth verifies the supernatural. + Religious + + + TVG + + + + Breakthrough With Rod Parsley + Religious + + + TVG + + + + Through the Bible + Les Feldick has a love for the Scriptures, bringing it alive to believers of every denomination. + Religious + + + + Dr. Lynn Hiles + Dr. Lynn Hiles preaches the word of God. + Specials + Religious + + + TVG + + + + Food For Your Soul with Apostle Ron Hill + Religious + + + + CNBC's Healing & Hope + Regular + + + + Joseph Prince Ministries + Religious programming. + Religious + + + + 230 Herbs with Greg Gunn + Regular + + + + Miracles Do Happen With Apostle Wayne T. Jackson + Apostle Wayne and Dr. Beverly Y. Jackson demonstrates signs, miracles and wonders through Miracles Do Happen ministry broadcast. + Religious + + + + Breakthrough With Rod Parsley + Religious + + + TVG + + + + Sid Roth's It's Supernatural! + Investigative reporter Sid Roth verifies the supernatural. + Religious + + + TVG + + + + Inspiration Ministries Camp Meeting + A spirit filled camp meeting reveals Biblical keys to achieving unprecedented success. + Religious + + + TVG + + + + Stem Cell Activators With Dr. Joseph Christiano + Naturopathic doctor, Joseph Christiano, shares how stem cell therapies help people live healthier. + Health + + + + Miracles Do Happen With Apostle Wayne T. Jackson + Apostle Wayne and Dr. Beverly Y. Jackson demonstrates signs, miracles and wonders through Miracles Do Happen ministry broadcast. + Religious + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + + Sid Roth's It's Supernatural! + Investigative reporter Sid Roth verifies the supernatural. + Religious + + + TVG + + + + The Church 3:20 With Bishop Stanley Williams + From The Church 3:20 in Jacksonville, Fla. + Religious + + + + Enjoying Everyday Life with Joyce Meyer + Religious + + + + The Jewish Jesus + Messianic Rabbi Kirt Schneider, a Jewish believer in Jesus, shares his insights into the Old and New Testaments, provides guidance on prayer and delivers the Word of God. + Religious + + + TVG + + + + Food For Your Soul with Apostle Ron Hill + Religious + + + + Miracles Do Happen With Apostle Wayne T. Jackson + Apostle Wayne and Dr. Beverly Y. Jackson demonstrates signs, miracles and wonders through Miracles Do Happen ministry broadcast. + Religious + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + + Breakthrough With Rod Parsley + Religious + + + TVG + + + + Maximize Living Today With Bishop I.V. Hilliard + With Bishop I.V. Hilliard, Senior Pastor of New Light Christian Center Church in Houston. + Religious + + + + The Jim Bakker Show + Jim and Lori Bakker bring to the stage prophets, experts, and leaders of the Christian world to discuss and understand Biblical prophecy and the Revelations of God's Word. + Religious + + + TVG + + + + Jewish Voice + Rabbi Jonathan Bernis teaches about the Jewish roots of Christianity and Last Days Bible Prophecy. + Religious + + + TVG + + + + Grace for Today + Pastor Lawson Perdue teaches the Bible. + Religious + + + + Life Today with James Robison + Inspirational stories through a talk show format with daily guests. + Talk Shows + + + + The CrossOver With Bishop Clarence Langston + With Bishop Clarence Langston, senior pastor of Word in Action Christian Center International in Detroit. + Religious + + + + Jewish Voice + Rabbi Jonathan Bernis teaches about the Jewish roots of Christianity and Last Days Bible Prophecy. + Religious + + + TVG + + + + Tony & Cynthia Brazelton + Teaching and preaching the word of God. + Religious + + + TVG + + + + Prosper Through Prophecy With Prophet Fred Brame + Local + + + + Miracles Do Happen With Apostle Wayne T. Jackson + Apostle Wayne and Dr. Beverly Y. Jackson demonstrates signs, miracles and wonders through Miracles Do Happen ministry broadcast. + Religious + + + + The Jewish Jesus + Messianic Rabbi Kirt Schneider, a Jewish believer in Jesus, shares his insights into the Old and New Testaments, provides guidance on prayer and delivers the Word of God. + Religious + + + TVG + + + + Through the Bible With Les Feldick + Religious programming. + Religious + + + TVG + + + + The Church 3:20 With Bishop Stanley Williams + From The Church 3:20 in Jacksonville, Fla. + Religious + + + + Faith for Every Nation With Mark and Trina Hankins + Religious + + + TVG + + + + Maximize Living Today With Bishop I.V. Hilliard + With Bishop I.V. Hilliard, Senior Pastor of New Light Christian Center Church in Houston. + Religious + + + + Miracles Do Happen With Apostle Wayne T. Jackson + Apostle Wayne and Dr. Beverly Y. Jackson demonstrates signs, miracles and wonders through Miracles Do Happen ministry broadcast. + Religious + + + + Healing & Hope Presented by CNBC + Regular + + + + Tony & Cynthia Brazelton + Teaching and preaching the word of God. + Religious + + + TVG + + + + Sid Roth's It's Supernatural! + Investigative reporter Sid Roth verifies the supernatural. + Religious + + + TVG + + + + Breakthrough With Rod Parsley + Religious + + + TVG + + + + Through the Bible + Les Feldick has a love for the Scriptures, bringing it alive to believers of every denomination. + Religious + + + + Creflo Dollar Ministries + Dr. Creflo and Taffi Dollar minister to people from all walks of life. + Religious + + + TVG + + + + Miracles Do Happen With Apostle Wayne T. Jackson + Apostle Wayne and Dr. Beverly Y. Jackson demonstrates signs, miracles and wonders through Miracles Do Happen ministry broadcast. + Religious + + + + Joseph Prince Ministries + Religious programming. + Religious + + + + 230 Herbs with Greg Gunn + Regular + + + + Miracles Do Happen With Apostle Wayne T. Jackson + Apostle Wayne and Dr. Beverly Y. Jackson demonstrates signs, miracles and wonders through Miracles Do Happen ministry broadcast. + Religious + + + + Breakthrough With Rod Parsley + Religious + + + TVG + + + + Sid Roth's It's Supernatural! + Investigative reporter Sid Roth verifies the supernatural. + Religious + + + TVG + + + + Inspiration Ministries Camp Meeting + A spirit filled camp meeting reveals Biblical keys to achieving unprecedented success. + Religious + + + TVG + + + + The Brigitte Gabriel Show + Specials + Religious + + + + Stem Cell Activators With Dr. Joseph Christiano + Naturopathic doctor, Joseph Christiano, shares how stem cell therapies help people live healthier. + Health + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + TVG + + + + Sid Roth's It's Supernatural! + Investigative reporter Sid Roth verifies the supernatural. + Religious + + + TVG + + + + Creflo Dollar Ministries + Dr. Creflo and Taffi Dollar minister to people from all walks of life. + Religious + + + TVG + + + + Enjoying Everyday Life with Joyce Meyer + Religious + + + + The Jewish Jesus + Messianic Rabbi Kirt Schneider, a Jewish believer in Jesus, shares his insights into the Old and New Testaments, provides guidance on prayer and delivers the Word of God. + Religious + + + TVG + + + + Food For Your Soul with Apostle Ron Hill + Religious + + + + Miracles Do Happen With Apostle Wayne T. Jackson + Apostle Wayne and Dr. Beverly Y. Jackson demonstrates signs, miracles and wonders through Miracles Do Happen ministry broadcast. + Religious + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + TVG + + + + Breakthrough With Rod Parsley + Religious + + + TVG + + + + Maximize Living Today With Bishop I.V. Hilliard + With Bishop I.V. Hilliard, Senior Pastor of New Light Christian Center Church in Houston. + Religious + + + + The Jim Bakker Show + Jim and Lori Bakker bring to the stage prophets, experts, and leaders of the Christian world to discuss and understand Biblical prophecy and the Revelations of God's Word. + Religious + + + TVG + + + + Jewish Voice + Rabbi Jonathan Bernis teaches about the Jewish roots of Christianity and Last Days Bible Prophecy. + Religious + + + TVG + + + + Grace for Today + Pastor Lawson Perdue teaches the Bible. + Religious + + + + Life Today with James Robison + Inspirational stories through a talk show format with daily guests. + Talk Shows + + + + The CrossOver With Bishop Clarence Langston + With Bishop Clarence Langston, senior pastor of Word in Action Christian Center International in Detroit. + Religious + + + + Inspiration Ministries Camp Meeting + A spirit filled camp meeting reveals Biblical keys to achieving unprecedented success. + Religious + + + TVG + + + + Prosper Through Prophecy With Prophet Fred Brame + Local + + + + Miracles Do Happen With Apostle Wayne T. Jackson + Apostle Wayne and Dr. Beverly Y. Jackson demonstrates signs, miracles and wonders through Miracles Do Happen ministry broadcast. + Religious + + + + The Jewish Jesus + Messianic Rabbi Kirt Schneider, a Jewish believer in Jesus, shares his insights into the Old and New Testaments, provides guidance on prayer and delivers the Word of God. + Religious + + + TVG + + + + Through the Bible With Les Feldick + Religious programming. + Religious + + + TVG + + + + Animal House + Bluto (John Belushi), Otter and the rowdy Deltas make fools of the dean and the square Omegas at 1962 Faber College. + + John Belushi + Kevin Bacon + Donald Sutherland + + 1978 + Movies + Comedy + + + TVPG + + + 3 + + + + The Blues Brothers + Joliet Jake (John Belushi) and Elwood Blues (Dan Aykroyd), brothers on a mission from God, bomb around Chicago in an old police car, reuniting their hot band. + + John Belushi + Dan Aykroyd + James Brown + + 1980 + Movies + Action + + + TVG + + + 3 + + + + Bill & Ted's Excellent Adventure + Two dopey dudes (Keanu Reeves, Alex Winter) go back in time to fetch Beethoven, Napoleon and other biggies for a history project. + + Keanu Reeves + Alex Winter + George Carlin + + 1989 + Movies + Comedy + + + 3 + + + + Bill & Ted's Bogus Journey + The dopey dudes (Keanu Reeves, Alex Winter) beat the Grim Reaper (William Sadler) in a board-game contest, so he must help them stop their evil robot twins. + + Keanu Reeves + Alex Winter + William Sadler + + 1991 + Movies + Comedy + + + TVG + + + 2 + + + + Portlandia + Farm + Peter and Nance go to great lengths to make sure that their restaurant order is ethical and humane; restroom policy. + + Carrie Brownstein + Fred Armisen + + Comedy + + + TV14 + + + + Portlandia + A Song for Portland + Fred and Carrie meet the Mayor of Portland; Toni and Candace help a student at the Feminist Bookstore. + + Carrie Brownstein + Fred Armisen + + Comedy + + + TV14 + + + + Portlandia + Aimee + Fred and Carrie discover that their maid is is their favorite singer-songwriter Aimee Mann; Spike decides it's over; Coffee Land. + + Carrie Brownstein + Fred Armisen + + Comedy + + + TV14 + + + + Portlandia + Mayor Is Missing + Much to their dismany, Fred and Carrie learn the Mayor has gone missing so they begin a frantic search for him. + + Carrie Brownstein + Fred Armisen + + Comedy + + + TV14 + + + + Portlandia + Blunderbuss + A new music and film festival takes over Portland and Fred, Carrie and all of Portland gets swept up in the excitement. + + Carrie Brownstein + Fred Armisen + + Comedy + + + TV14 + + + + Portlandia + Baseball + The Mayor turns to Fred and Carrie to help him put together a big league baseball team; an artisinal light bulb maker. + + Carrie Brownstein + Fred Armisen + + Comedy + + + TV14 + + + + Portlandia + Mixologist + Fred and Carrie decide to venture outside of Portland and along the way they learn about the special art of love. + + Carrie Brownstein + Fred Armisen + + Comedy + + + TV14 + + + + Portlandia + One Moore Episode + Fred and Carrie become obsessed with. + + Carrie Brownstein + Fred Armisen + + Comedy + + + TV14 + + + + The Blues Brothers + Joliet Jake (John Belushi) and Elwood Blues (Dan Aykroyd), brothers on a mission from God, bomb around Chicago in an old police car, reuniting their hot band. + + John Belushi + Dan Aykroyd + James Brown + + 1980 + Movies + Action + + + TVG + + + 3 + + + + Animal House + Bluto (John Belushi), Otter and the rowdy Deltas make fools of the dean and the square Omegas at 1962 Faber College. + + John Belushi + Kevin Bacon + Donald Sutherland + + 1978 + Movies + Comedy + + + TVPG + + + 3 + + + + Caddyshack + Oddballs (Chevy Chase, Rodney Dangerfield, Bill Murray) and gophers undermine a country-club caddy out to win a college scholarship. + + Chevy Chase + Rodney Dangerfield + Bill Murray + + 1980 + Movies + Comedy + + + TVG + + + 2 + + + + Look Who's Talking + An unwed accountant (Kirstie Alley) gives birth to Mikey, a hip baby who provides sarcastic commentary on events. + + John Travolta + Kirstie Alley + Olympia Dukakis + + 1989 + Movies + Comedy + + + TVG + + + 2 + + + + Everybody Loves Raymond + Lucky Suit + Marie ruins Robert's lucky suit while ironing it for his interview with the FBI. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + The Skit + Ray and Debra parody Frank and Marie's relationship, then the older couple does the same for them -- with different results. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + The Breakup Tape + Ray is jealous when Debra shows him the mementos she saved from past relationships. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + Talk to Your Daughter + Ray tries to talk to Ally about the birds and the bees, but she's more interested in learning about the meaning of life. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + A Vote for Debra + Debra runs for school board president, but she might lose Ray's vote because he doesn't like being left to care for the children. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + The First Six Years + Celebrity fans including Ron Howard, Larry King, Mary Tyler Moore, Bob Newhart, Martin Short, Billy Bob Thornton and Jon Voight discuss the series. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + The First Six Years + Celebrity fans including Ron Howard, Larry King, Mary Tyler Moore, Bob Newhart, Martin Short, Billy Bob Thornton and Jon Voight discuss the series. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + Call Me Mom + When Ray and Debra agree to start calling each other's mother. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVG + + + + Everybody Loves Raymond + Mother's Day + A feud erupts between Debra and Marie, forcing the rest of the family to choose sides and making Frank and Ray to do the talking for them. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + The Bigger Person + Robert's attempt to play peacemaker backfires, escalating the cold war between Marie and Debra. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + The First Time + Debra rebuffs an amorous advance from Ray, triggering a flashback about the first time they had sex. Charles Durning guest stars. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + The Cult + The family becomes concerned when a depressed Robert joins an organization that may actually be a cult. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + Counseling + An argument over housework leads Ray and Debra to a marriage counselor, but their session is far from therapeutic. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Three's Company + The Case of the Missing Blonde + Jack and Janet become detectives when Cindy mysteriously vanishes. + + John Ritter + Joyce DeWitt + Jenilee Harrison + + Sitcom + + + TVPG + + + + Three's Company + Honest Jack Tripper + Jack stops lying to women about his roommates. + + John Ritter + Joyce DeWitt + Jenilee Harrison + + Sitcom + + + TVPG + + + + Three's Company + Dying to Meet You + Larry hatches a plan to save Jack from his girlfriend's jealous other boyfriend. + + John Ritter + Joyce DeWitt + Jenilee Harrison + + Sitcom + + + TVPG + + + + Three's Company + Jack Bares All + Jack and Janet find a new roommate after Cindy moves into a college dorm. + + John Ritter + Joyce DeWitt + Priscilla Barnes + + Sitcom + + + TVPG + + + + Three's Company + Jack Bares All + Jack and Larry devise a way of getting rid of Jack's new roommate. + + John Ritter + Joyce DeWitt + Priscilla Barnes + + Sitcom + + + TVPG + + + + Three's Company + Terri Makes Her Move + Terri's overly friendly behavior toward Jack makes Janet suspicious. + + John Ritter + Joyce DeWitt + Priscilla Barnes + + Sitcom + + + TVPG + + + + Three's Company + Professor Jack + Terri thinks Jack is giving love lessons. + + John Ritter + Joyce DeWitt + Priscilla Barnes + + Sitcom + + + TVPG + + + + Three's Company + Eyewitness Blues + A policeman moves in to protect Jack after he witnesses an armed robbery. + + John Ritter + Joyce DeWitt + Priscilla Barnes + + Sitcom + + + TVPG + + + + Three's Company + Two Flew Over the Cuckoo's Nest + Jack and Janet mistake Terri's psychiatrist friend for a mental-ward escapee. + + John Ritter + Joyce DeWitt + Priscilla Barnes + + Sitcom + + + TVPG + + + + Gilligan's Island + Meet the Meteor + A large meteorite lands on the island and threatens all living things. + + Bob Denver + Alan Hale Jr. + Jim Backus + + Sitcom + + + TVG + + + + Gilligan's Island + Up at Bat + Gilligan emerges from an unexplored cave with a bat bite on his neck. + + Bob Denver + Alan Hale Jr. + Jim Backus + + Sitcom + + + TVG + + + + Gilligan's Island + Gilligan vs. Gilligan + A spy identical to Gilligan questions the castaways about their shipwreck. + + Bob Denver + Alan Hale Jr. + Jim Backus + + Sitcom + + + TVG + + + + Gilligan's Island + Pass the Vegetables Please + Gilligan fishes a crate of vegetable seeds out of the lagoon. + + Bob Denver + Alan Hale Jr. + Jim Backus + + Sitcom + + + TVG + + + + Gilligan's Island + The Producer + A Hollywood producer makes an emergency landing on the island just as Ginger hears that he is on a worldwide talent search. + + Bob Denver + Alan Hale Jr. + Jim Backus + + Sitcom + + + TVG + + + + Gilligan's Island + Voodoo + While exploring an island cave, Gilligan discovers the relics of an ancient civilization. + + Bob Denver + Alan Hale Jr. + Jim Backus + + Sitcom + + + TVG + + + + Gilligan's Island + Where There's a Will + Mr. Howell revises his will, leaving each castaway a valuable piece of his estate. + + Bob Denver + Alan Hale Jr. + Jim Backus + + Sitcom + + + TVG + + + + Gilligan's Island + Man With a Net + A famous butterfly collector (John McGiver) comes to the island seeking a rare specimen. + + Bob Denver + Alan Hale Jr. + Jim Backus + + Sitcom + + + TVG + + + + Parks and Recreation + End of the World + Pawnee residents contemplate their lives after a local group predicts the end of the world; Tom plans one last big party. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + + + TVPG + + + + Parks and Recreation + The Treaty + Leslie asks Ben, Andy and April to help host a Model U.N. for the local high school; Chris asks Ann for dating advice; Ron tries to find a replacement for Tom. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + + + TVPG + + + + Parks and Recreation + Smallest Park + Leslie uses her new tourist attraction to spend more time with Ben; Ron and April encourage Andy to further his education; Chris assigns a logo redesign to Tom and Jerry. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + + + TVPG + + + + Parks and Recreation + The Trial of Leslie Knope + Leslie and Ben defend themselves against Chris' ethics charges. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + + + TVPG + + + + Parks and Recreation + Citizen Knope + Leslie forms a citizen action group in hope of getting some work done; everyone in the office tries to plan a Christmas gift for Leslie. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + + + TVPG + + + + Parks and Recreation + The Comeback Kid + Leslie asks for help staging an event; Ben gets a new hobby; April and Andy adopt a pet. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + + + TVPG + + + + Parks and Recreation + Campaign Ad + Leslie and Ben disagree about her campaign ad; Chris makes Ron uncomfortable; Andy and April go to the doctor. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + + + TVPG + + + + Parks and Recreation + Bowling for Votes + After receiving feedback from a focus group, Leslie and Ben plan a casual bowling party; April, Jerry and Chris compete to see who can raise the most money for Leslie's campaign. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + + + TVPG + + + + Parks and Recreation + Operation Ann + Leslie tries to find Ann a date for Valentine's Day; Ben asks Ron to help with the scavenger hunt Leslie sent him on; Chris is upset about his love life. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + + + TVPG + + + + Parks and Recreation + Dave Returns + Leslie and Ben run into Leslie's ex (Louis C.K.) while soliciting an endorsement from the Chief of Police; Andy leads the search for a campaign theme song. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + + + TVPG + + + + Parks and Recreation + Sweet Sixteen + After realizing everyone forgot Jerry's birthday, Leslie decides to throw him a party; Tom is shocked to learn Ann doesn't share his taste in music. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + + + TVPG + + + + Parks and Recreation + Campaign Shake-Up + Leslie's opponent, Bobby Newport, hires a powerful campaign manager (Kathryn Hahn); Ron is forced to interview replacements for Leslie; an unlikely employee discovers a solution to a challenging problem. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + + + TVPG + + + + Parks and Recreation + Lucky + An Indianapolis talk show host asks to interview Leslie; April and Ron help ready Andy for his final exam. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + + + TVPG + + + + Parks and Recreation + Live Ammo + Leslie takes action when she learns the Parks Department budget is about to be cut; Chris takes Ron to a meditation center. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + Homework + Ally's teacher invites Ray to address the curriculum review board after he comments that the kids have too much work to do. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVG + + + + Everybody Loves Raymond + Pet the Bunny + Raymond writes a sample eulogy for Frank that ends up in the wrong hands. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + Who Am I? + Ray starts to think he's having an identity crisis since he no longer enjoys his juvenile pursuits with his friends. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + Robert Needs Money + Ray and Debra are flummoxed when a cash-strapped Robert accepts $1,000 from them and then wants to high-tail it to Vegas. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Two and a Half Men + Captain Terry's Spray-On Hair + Charlie discovers he has not been satisfying Chelsea; Alan attempts to cure his thinning hair without spending much money. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + That's Why They Call It Ball Room + Charlie discovers that Chelsea has not been completely honest about her finances. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Warning, It's Dirty + Charlie coaches Jake on the art of infidelity while his girlfriend is away for Christmas. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Fart Jokes, Pie and Celeste + Jake writes love songs to woo his ex-girlfriend; Herb and Alan hide their secret friendship from Judith. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Yay, No Polyps! + Charlie undergoes a colonoscopy to avoid a trip to see Chelsea's bigoted parents, but he finds them in his living room when he returns home. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Crude and Uncalled For + A bar fight lands Alan in jail; Charlie worries that Chelsea is interested in the lawyer who takes Alan's case. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Aye, Aye, Captain + Charlie's relationship with Chelsea is threatened by his jealousy. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Tinkle Like a Princess + After running off to Las Vegas, Charlie returns with a new wife. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + I Found Your Mustache + Charlie and Chelsea have a post-breakup one-night stand. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Ixnay on the Oggie Day + Charlie has a return engagement with Gail (Tricia Helfer), Chelsea's best friend; Alan has a surprising effect on a female patient. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Boompa Loved His Hookers + Walden worries that ending things with Ms. McMartin will become an issue; when Lyndsey asks Alan to move in with her, he hesitates. + + Jon Cryer + Ashton Kutcher + Conchata Ferrell + + Sitcom + + + TV14 + + + + Two and a Half Men + Don't Give a Monkey a Gun + When their divorce becomes official, Walden offers Alan a gift; Alan's impractical choice strains his relationship with Lyndsey. + + Ashton Kutcher + Jon Cryer + Conchata Ferrell + + Sitcom + + + TV14 + + + + 3rd Rock From the Sun + Dick Is From Mars, Sally Is From Venus + Various social problems indicate Dick's plans to mold the team into an Earth family have exceeded expectations. + + John Lithgow + Jane Curtin + Simbi Khali + + Sitcom + Sci-Fi + + + TVPG + + + + 3rd Rock From the Sun + Dick, Smoker + Dick gets locked in the stairwell of a high-rise while indulging his addiction to cigarettes. + + John Lithgow + Jane Curtin + Simbi Khali + + Sitcom + Sci-Fi + + + TVPG + + + + 3rd Rock From the Sun + Green-Eyed Dick + Dick becomes jealous when Dr. Albright's old flame (Ed Begley Jr.) visits the campus. + + John Lithgow + Jane Curtin + Simbi Khali + + Sitcom + Sci-Fi + + + TVPG + + + + 3rd Rock From the Sun + Lonely Dick + Dick gets extremely lonely when Dr. Albright goes away on vacation; Sally learns about makeup. + + John Lithgow + Jane Curtin + Simbi Khali + + Sitcom + Sci-Fi + + + TVPG + + + + 3rd Rock From the Sun + Body & Soul & Dick + Dick learns about human death rituals when he is asked to deliver the eulogy at an unpopular professor's funeral. + + John Lithgow + Jane Curtin + Simbi Khali + + Sitcom + Sci-Fi + + + TVPG + + + + 3rd Rock From the Sun + Ab-Dick-ted + Dick invites Dr. Albright and her brother, Roy, over for dinner, and Roy recounts being abducted by aliens. + + John Lithgow + Jane Curtin + Simbi Khali + + Sitcom + Sci-Fi + + + TVPG + + + + Cooper's Bar + The Set + Britney Lasker's Cooper's Bar. + + Louis Mustillo + David Conolly + Casey Washington + + Comedy + + + TVMA + + + + Cooper's Bar + The Premiere + If Cooper can finally nail his takes, a red-carpet evening awaits. + + Louis Mustillo + David Conolly + Casey Washington + + Comedy + + + TVMA + + + + 3rd Rock From the Sun + Truth or Dick + Dick learns about the dangers of total honesty when he substitutes for Dr. Albright at a committee meeting. + + John Lithgow + Jane Curtin + Simbi Khali + + Sitcom + Sci-Fi + + + TVPG + + + + 3rd Rock From the Sun + The Art of Dick + Dick enrolls in a painting class in order to understand the human urge to create art. + + John Lithgow + Jane Curtin + Simbi Khali + + Sitcom + Sci-Fi + + + TVPG + + + + 3rd Rock From the Sun + Angry Dick + Dick learns something about class conflict when he befriends his blue-collar neighbor (Mike Starr). + + John Lithgow + Jane Curtin + Simbi Khali + + Sitcom + Sci-Fi + + + TVPG + + + + 3rd Rock From the Sun + The Dicks They Are A-Changin' + Dr. Albright suspects Dick was a Berkeley radical in the 1960s. + + John Lithgow + Jane Curtin + Simbi Khali + + Sitcom + Sci-Fi + + + TVPG + + + + 3rd Rock From the Sun + I Enjoy Being a Dick + Excluded from Dr. Albright and Nina's women's study group, Dick dons a dress to crash their meeting. + + John Lithgow + Jane Curtin + Simbi Khali + + Sitcom + Sci-Fi + + + TVPG + + + + 3rd Rock From the Sun + Dick Like Me + Dick hunts for the Solomons' roots when he discovers ethnic groups. + + John Lithgow + Jane Curtin + Simbi Khali + + Sitcom + Sci-Fi + + + TVPG + + + + 3rd Rock From the Sun + Assault with a Deadly Dick + Dick loses trust in humans after he is robbed at an ATM and his car radio is stolen. + + John Lithgow + Jane Curtin + Simbi Khali + + Sitcom + Sci-Fi + + + TVPG + + + + 3rd Rock From the Sun + Father Knows Dick + Sally faces disapproving scrutiny from her new boyfriend's (John D'Aquino) mother (Naomi Judd). + + John Lithgow + Jane Curtin + Simbi Khali + + Sitcom + Sci-Fi + + + TVPG + + + + 3rd Rock From the Sun + Selfish Dick + The aliens visit a hospital ER; Albright gets her own office. + + John Lithgow + Jane Curtin + Simbi Khali + + Sitcom + Sci-Fi + + + TVPG + + + + 3rd Rock From the Sun + See Dick Run + The aliens fear replacement when their mission falls into jeopardy. + + John Lithgow + Jane Curtin + Simbi Khali + + Sitcom + Sci-Fi + + + TVPG + + + + Parks and Recreation + The Debate + Leslie faces Bobby Newport in a televised debate; Ann, Tom and Chris man the media spin room; Ron works to save a party for Leslie's donors. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + + + TVPG + + + + Parks and Recreation + Bus Tour + An important person in Pawnee dies while Leslie is on a bus tour for the final day of her campaign; Andy investigates a security threat; Chris finds a cure for his depression. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + + + TVPG + + + + Parks and Recreation + Win, Lose or Draw + Leslie and Bobby Newport (Paul Rudd) are separated by a miniscule margin on Election Day; as everyone waits for election results, they ponder the future. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + + + TVPG + + + + Parks and Recreation + Ms. Knope Goes to Washington + Leslie is overwhelmed when she and Andy visit Ben and April in Washington, D.C.; Ron throws a barbecue for the whole staff. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + + + TVPG + + + + Parks and Recreation + Soda Tax + Leslie passes a city-wide tax on huge sodas in hope of combating obesity in Pawnee; Chris helps Andy prepare for his police entrance exam. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + + + TVPG + + + + Parks and Recreation + How a Bill Becomes a Law + Leslie tries to pass a law extending the community pool hours; Chris thinks of a new way to solve people's problems around the city, which leads to Ron fixing a pothole for a local mother (Lucy Lawless); April and Ben plan a road trip. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + + + TVPG + + + + Parks and Recreation + Sex Education + Leslie holds a sex-education class following an STD outbreak among senior citizens in Pawnee; when Tom's gadgets are taken away, Ron helps him acclimate to life without technology; April and Ben meet Congressman Murray. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + + + TV14 + + + + Parks and Recreation + Halloween Surprise + Ben gets a job offer, forcing Leslie to think about their future; Ron and Andy take Diane's girls trick-or-treating; Tom looks for a new business idea. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + Christmas + + + TVPG + + + + Parks and Recreation + Ben's Parents + Leslie meets Ben's parents; Jean-Ralphio helps Tom prepare the pitch for his new business idea; Chris has mood swings. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + + + TV14 + + + + Parks and Recreation + Leslie vs. April + April tries to get Lot 48 turned into a dog park, upsetting Leslie; Tom gets Ben's help with his new business idea; Andy improves his crime scene investigation skills. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + + + TVPG + + + + Parks and Recreation + Pawnee Commons + Leslie asks the public for park design suggestions but is suspicious when the best design comes from an Eagleton architect; Tom asks the office for help with his new business; Andy tries to make his job as a security guard exciting. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + + + TVPG + + + + Parks and Recreation + Ron and Diane + Tammy II crashes a woodworking awards dinner that Ron, Diane and Leslie are attending; Jerry fails to invite some of his friends to his holiday party. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + + + TV14 + + + + Parks and Recreation + Two Parties + Ann plans a bachelorette party for Leslie, but Councilman Jamm derails the event; Chris has a game night at Ben's. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + + + TV14 + + + + Parks and Recreation + Women in Garbage + April and Leslie try to get more women hired in government; Tom asks Ben and Andy to teach him about basketball; Ron watches Diane's kids. + + Amy Poehler + Rashida Jones + Aziz Ansari + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + The Sigh + Ray gives Debra exclusive use of their bathroom, then realizes he made a big mistake. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVG + + + + Everybody Loves Raymond + The Annoying Kid + Raymond encounters problems with the young son of a befriended couple. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + She's the One + Robert fears his family will ruin his developing relationship with. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + The Thought That Counts + Debra wonders why Ray does not put the same effort into finding thoughtful gifts for her as he does for Marie. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + Christmas + + + TVPG + + + + Two and a Half Men + Keith Moon Is Vomiting in His Grave + Jake's new friend, Eldridge, is a bad influence; Alan likes Eldrigdge's attractive mother (Courtney Thorne-Smith). + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + I Called Him Magoo + Alan tries for an intimate night at a hotel with his new girlfriend; Charlie tries his own approach to get the. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Gumby With a Pokey + While Alan and Jake are away on a road trip, Charlie is visited by the ghosts of his ex-girlfriends. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + This Is Not Gonna End Well + After Charlie's license is suspended, Jake becomes his driver; Alan plans to go to Chelsea's birthday party. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Three Girls and a Guy Named Bud + Jake goes to live with Judith and Herb after learning that Alan has been dating Eldridge's mom; Charlie decides to cut back on his drinking. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + A Bottle of Wine and a Jackhammer + When Lindsey asks Alan to move in with her, Charlie will do anything to get him to agree to it. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + A Pudding-Filled Cactus + After moving in with Lyndsey, Alan continues to have a rendezvous with Melissa at Charlie's house. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Hookers, Hookers, Hookers + Lyndsey and Eldridge move into Charlie's house after their home burns down. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + The Immortal Mr. Billy Joel + Alan pretends to be Charlie when he goes out on the town; Charlie sneaks off for cosmetic surgery. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Twanging Your Magic Clanger + Charlie has difficulty dealing with dating a slightly older woman. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Of Course He's Dead -- Part One + Details regarding Charlie Harper are revealed. + + Jon Cryer + Ashton Kutcher + Conchata Ferrell + + Sitcom + + + TV14 + + + + Two and a Half Men + Of Course He's Dead -- Part Two + Details regarding Charlie Harper are revealed. + + Jon Cryer + Ashton Kutcher + Conchata Ferrell + + Sitcom + + + TV14 + + + + Who's the Boss? + Grandmommie Dearest + Mona's mother arrives to sabotage Angela and Tony's wedding by suggesting that they sign a prenuptial agreement. + + Tony Danza + Judith Light + Katherine Helmond + + Sitcom + + + TVPG + + + + Who's the Boss? + Field of Screams + When Samantha (Alyssa Milano) decides to pursue a job at the campus travel agency, she asks for Tony's (Tony Danza) help. With Judith Light. + + Tony Danza + Judith Light + Katherine Helmond + + Sitcom + + + TVPG + + + + Who's the Boss? + This Sold House + Tony persuades Angela to accept a huge offer for the Bower house so they can buy a dream house of their own. + + Tony Danza + Judith Light + Katherine Helmond + + Sitcom + + + TVPG + + + + Who's the Boss? + Tony, Can You Spare a Dime? + Tony (Tony Danza) takes away Angela's (Judith Light) credit cards and imposes tough restrictions on the family budget. + + Tony Danza + Judith Light + Katherine Helmond + + Sitcom + + + TVPG + + + + Who's the Boss? + Mrs. Al + Sam (Alyssa Milano) gets in trouble with Tony (Tony Danza) when she poses as Al's (William Gallo) wife to help him get an apartment. + + Tony Danza + Judith Light + Katherine Helmond + + Sitcom + + + TVPG + + + + Who's the Boss? + Widower Tony Micelli is the housekeeper for a female ad executive. + + Judith Light + Tony Danza + Alyssa Milano + + Sitcom + + + TVPG + + + + Who's the Boss? + Tony Micelli, This Is Your Life + A meeting with a pro baseball player causes Tony (Tony Danza) to dream about what might have been. With Judith Light. + + Tony Danza + Judith Light + Katherine Helmond + + Sitcom + + + TVPG + + + + Who's the Boss? + Allergic to Love + Tony thinks it is an allergic reaction when his lips become swollen, but Angela has another explanation. + + Tony Danza + Judith Light + Katherine Helmond + + Sitcom + + + TVPG + + + + Who's the Boss? + Better Off Wed + Sam's fiance, Hank, infuriates Tony, but not as much as Hank's parents, who arrive to help celebrate the engagement. + + Tony Danza + Judith Light + Katherine Helmond + + Sitcom + + + TVPG + + + + Who's the Boss? + Better Off Wed + Tony, Angela (Tony Danza, Judith Light) and the Thomopolouses (Vic Polizos, Candice Azzara) rush to Vermont to stop the wedding when Sam (Alyssa Milano) elopes with Hank (Curnal Aulisio). + + Tony Danza + Judith Light + Katherine Helmond + + Sitcom + + + TVPG + + + + Who's the Boss? + Tony and the Honeymooners + Tony (Tony Danza) struggles to keep his promise not to meddle when Sam and Hank (Alyssa Milano, Curnal Aulisio) move in for a short time. + + Tony Danza + Judith Light + Katherine Helmond + + Sitcom + + + TVPG + + + + Who's the Boss? + Split Decision + While at a resort with Mona and Sam, Angela meets a Tony look-alike who has all his charm and none of his faults. + + Tony Danza + Judith Light + Katherine Helmond + + Sitcom + + + TVPG + + + + Who's the Boss? + Mr. Micelli Builds His Dream House + Tony's demands for perfection drive everyone crazy when he hires his new in-law, Joe, to remodel the master bedroom. + + Tony Danza + Judith Light + Katherine Helmond + + Sitcom + + + TVPG + + + + Who's the Boss? + Savor the Veal + Tony and Angela must make a decision about their future together when he receives a job offer from a college in Iowa. + + Tony Danza + Judith Light + Katherine Helmond + + Sitcom + + + TVPG + + + + Who's the Boss? + Savor the Veal + Tony (Tony Danza) takes the teaching job in Iowa, while Angela (Judith Light) remains in Connecticut. + + Tony Danza + Judith Light + Katherine Helmond + + Sitcom + + + TVPG + + + + Who's the Boss? + Savor the Veal + Tony and Angela (Tony Danza, Judith Light) realize that a long-distance romance is not going to work. + + Tony Danza + Judith Light + Katherine Helmond + + Sitcom + + + TVPG + + + + Three's Company + Lies My Roommate Told Me + Jack breaks a date with Janet to coach Larry in the art of romantic conversation. + + John Ritter + Joyce DeWitt + Priscilla Barnes + + Sitcom + + + TVPG + + + + Three's Company + Some of That Jazz + Terri and Jack fear that Janet will need to have an affair with her dance instructor if she is to be successful. + + John Ritter + Joyce DeWitt + Priscilla Barnes + + Sitcom + + + TVPG + + + + Three's Company + Dates of Wrath + Janet inadvertently fixes Terri up with a guy she had wanted to date herself. + + John Ritter + Joyce DeWitt + Priscilla Barnes + + Sitcom + + + TVPG + + + + Three's Company + Boy Meets Dummy + Jack must come up with a temporary wife to deter his boss's man-hungry daughter. + + John Ritter + Joyce DeWitt + Priscilla Barnes + + Sitcom + + + TVPG + + + + Three's Company + Macho Man + Much to Jack's embarrassment, Terri subdues a drunk with karate. + + John Ritter + Joyce DeWitt + Priscilla Barnes + + Sitcom + + + TVPG + + + + Three's Company + Strangers in the Night + Jack tries to win over a Southern belle whom he insulted on a date. + + John Ritter + Joyce DeWitt + Priscilla Barnes + + Sitcom + + + TVPG + + + + Three's Company + The Matchbreakers + Larry sets up a test to determine if Furley's latest girl is a gold digger. + + John Ritter + Joyce DeWitt + Priscilla Barnes + + Sitcom + + + TVPG + + + + Three's Company + Oh, Nun + Jack assumes that Terri's friend wants to leave the convent to be with him. + + John Ritter + Joyce DeWitt + Priscilla Barnes + + Sitcom + + + TVPG + + + + Three's Company + Maid to Order + The roommates reluctantly hire Cindy as a maid. + + John Ritter + Joyce DeWitt + Priscilla Barnes + + Sitcom + + + TVPG + + + + Three's Company + A Friend in Need + Jack substitutes for a chef and winds up with a full-time job. + + John Ritter + Joyce DeWitt + Priscilla Barnes + + Sitcom + + + TVPG + + + + Three's Company + Hearts and Flowers + An efficiency expert drives Janet to quit. + + John Ritter + Joyce DeWitt + Priscilla Barnes + + Sitcom + + + TVPG + + + + Three's Company + Urban Plowboy + Cindy invites the trio for a weekend on the farm. + + John Ritter + Joyce DeWitt + Priscilla Barnes + + Sitcom + + + TVPG + + + + Three's Company + Critic's Choice + Jack cooks dinner for a famous food critic. + + John Ritter + Joyce DeWitt + Priscilla Barnes + + Sitcom + + + TVPG + + + + Three's Company + Jack's 10 + Jack adopts a new image to please a wealthy woman who would like to marry him. + + John Ritter + Joyce DeWitt + Priscilla Barnes + + Sitcom + + + TVPG + + + + Three's Company + Doctor in the House + Jack pretends he's a doctor to impress his visiting grandfather. + + John Ritter + Joyce DeWitt + Priscilla Barnes + + Sitcom + + + TVPG + + + + Three's Company + Paradise Lost + Larry and Furley attempt to stop the threesome from moving to a luxury beach house. + + John Ritter + Joyce DeWitt + Priscilla Barnes + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + The Kicker + Frank becomes a wanted man after he catches the ball at a college football game and refuses to give it back to the kicker. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + Grandpa Steals + Frank must make amends with his granddaughter, Ally, when she catches him stealing food at the supermarket. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + Somebody Hates Raymond + Raymond learns that a local sports radio broadcaster dislikes him after Ray offers to be on his show. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + Just a Formality + Robert decides he's going to pop the question to Amy. Chris Elliott, Fred Willard and Georgia Engel guest star. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Married With Secrets + Gambling With Death + Police believe the beating and fatal stabbing of a Northern California couple was a robbery gone wrong until investigators hone in on the motive and learn about the killer's twisted double life. + + Antoine Dykes + + Documentary + + + TV14 + + + + Married With Secrets + Dancing With Death + Wife and mother Stephanie Roller Bruner vanishes in a blizzard shortly before Thanksgiving, prompting officers to launch a massive search; then, the sordid details of a secret love triangle emerge, causing the case to take a twisted turn. + + Laura Avnaim + Andy Gates + Brent Harvey + + Documentary + + + TV14 + + + + Married With Secrets + Fear the Ether Man + A serial rapist known as the Ether Man lurks in the shadows of Albuquerque, N.M., and victims cannot identify the masked attacker; while the offender expands his hunting grounds, officials work to stop him before he attacks again. + Documentary + + + TV14 + + + + Fatal Vows + Living With the Devil + When Darren and Elizabeth marry eight weeks after meeting, no one thinks it's a good idea, but the couple just doesn't care; then, one of them gets attacked, and a sniper is spotted across the way. + Documentary + + + TV14 + + + + Fatal Vows + Death Outranks Love + It's a military match made in heaven for Roger and Margorie, but a tangled web of financial secrets and twisted lies ruins the young couple's future; while the rise of their careers and romance seems meteoric, the ensuing fall is deadly. + Documentary + + + TV14 + + + + Killer in Paradise + Wanton in Waikiki + A man and his two lovers travel to Hawaii for a birthday celebration, but the getaway ends abruptly after one of the women fails to return from a solo night out; security footage could help police determine whether she's missing or mudered. + Regular + + + + Fatal Vows + Lethal Romance + An ambitious Harlem couple dreams of a better life for themselves, but stuck in a bitter cycle of poverty, poor health and mistrust, one of them decides to put their dreams to rest forever. + Documentary + + + TV14 + + + + Fatal Vows + Death Outranks Love + It's a military match made in heaven for Roger and Margorie, but a tangled web of financial secrets and twisted lies ruins the young couple's future; while the rise of their careers and romance seems meteoric, the ensuing fall is deadly. + Documentary + + + TV14 + + + + Killer in Paradise + Wanton in Waikiki + A man and his two lovers travel to Hawaii for a birthday celebration, but the getaway ends abruptly after one of the women fails to return from a solo night out; security footage could help police determine whether she's missing or mudered. + Regular + + + + Married With Secrets + Fear the Ether Man + A serial rapist known as the Ether Man lurks in the shadows of Albuquerque, N.M., and victims cannot identify the masked attacker; while the offender expands his hunting grounds, officials work to stop him before he attacks again. + Documentary + + + TV14 + + + + Fatal Vows + Lethal Romance + An ambitious Harlem couple dreams of a better life for themselves, but stuck in a bitter cycle of poverty, poor health and mistrust, one of them decides to put their dreams to rest forever. + Documentary + + + TV14 + + + + Fatal Vows + Living With the Devil + When Darren and Elizabeth marry eight weeks after meeting, no one thinks it's a good idea, but the couple just doesn't care; then, one of them gets attacked, and a sniper is spotted across the way. + Documentary + + + TV14 + + + + Your Worst Nightmare + Come With Me + After a failed relationship, 22-year-old Jennifer Hitchcock thinks she may have finally found that special someone in Maurice Mason; however, after Maurice moves in, Jennifer begins to feel as though someone is watching her every move. + + Eric Abraham + Clark Sarullo + + Documentary + + + TV14 + + + + Your Worst Nightmare + Shadow Walker + Sandi Musk begins dating Andy LeFleur while separated from her husband, then Musk tries to break things off with LeFleur only to find he is the kind of person who won't take no for answer. + + Eric Abraham + Clark Sarullo + Jason Shablik + + Documentary + + + TV14 + + + + Murder in the Heartland + A Deceitful Heart + A town in Michigan becomes scandalized when a partially nude corpse turns up; police sift through lies and alibis as they search for the killer. + + Stuart Todd Martin + Reb Johnson + + Documentary + + + TV14 + + + + Murder in the Heartland + Whispered Warnings + The community of Kankakee, Ill., comes together to aid police in uncovering the vile killer in the shooting death of an up-and-coming model, Sarah Washington. + Documentary + + + TV14 + + + + Murder in the Heartland + Shallow Grave + In Noble, Okla., a dog drops a human skull onto its owners' front porch on Christmas Day; after six years and no leads, the police must navigate the twists and turns of the victim's past to find justice. + + Jeff Cox + + Documentary + + + TV14 + + + + Murder in the Heartland + The Gravel Pit Murders + In Howard City, Michigan, detectives investigate a night of horror that ends with the shooting of beloved couple Robert and Norma Bean in a gravel pit; local tips provide alarming new clues, revealing the shocking timeline of their final hours. + + Justin Hankinson + + Documentary + + + TV14 + + + + Fear Thy Neighbor + The Secret Wife + A peaceful suburb turns upside down when a family learns that the neighbor has kept a secret wife locked in his home for years; things escalate when the family helps her escape with her baby, leading to a bitter feud that ends in terrible bloodshed. + Regular + + + TV14 + + + + Fear Thy Neighbor + Bullets in the Snow + After years of a married couple ruling their street, a new neighbor who doesn't abide by them moves in; years of tension fester between the two parties until one is pushed over the edge, resulting in a shocking double-execution. + Regular + + + TV14 + + + + Fear Thy Neighbor + Vendetta in Vegas + A Baptist pastor moves in next-door to a free-spirited older woman in suburban Las Vegas, leading to years of back and forth accusations of dog theft, intimidation and drug use; once the agitation reaches biblical proportions, retribution is wrought. + Regular + + + TV14 + + + + Fear Thy Neighbor + Commanded to Kill + The paranoid delusions of one young man compel him to conspire against the unwitting family next door; over a series of months, his deteriorating mental condition escalates into a midnight shooting, which shakes the foundation of the neighborhood. + Regular + + + TV14 + + + + American Monster + Double Cross + Four best friends, two married couples, multiple sordid secrets, and one betrayal that leads to murder; with exclusive interviews and never-before-aired home movie footage. + Biography + Documentary + + + TV14 + + + + American Monster + Hoop Dreams + Surrounded by a big, loving family, high achiever Keonte Chavis goes missing, then she is found strangled to death in the woods, and the perpetrator turns out to be a family member. + Biography + Documentary + + + TV14 + + + + American Monster + Who Am I? + Dianne Hart and Donnie Rudd begin an affair in a small Chicago suburb, and Dianne's kids hope their mom has found love; however, it triggers a series of bizarre lies and deceptions that reveal a cold-hearted killer in their midst. + Biography + Documentary + + + TV14 + + + + American Monster + Plus-One + Melissa and Rob find love at a birthday BBQ, but when time and tensions build, the once happy relationship comes to a deadly end. + Biography + Documentary + + + TV14 + + + + American Monster + About to Break + When newly divorced Wendi Davidson meets charming Brian Chevalier, it seems to be the perfect remedy for heartbreak, but all is not as blissful as it seems. + Biography + Documentary + + + TV14 + + + + American Monster + It's Over. Move On + Rowena Irani, a Pakistani immigrant, aspires to be a teen psychologist until a pathological love connection shatters everything. + Biography + Documentary + + + TV14 + + + + Evil Lives Here: The Killer Speaks + I Always Knew I Could Kill + Patrick Pidock knows there's something dark inside him, and his daughter, Fawn, and those around him suffer from his sudden outbursts; he's warned that one day he'll kill someone, but no one knows how dangerous he is until he takes a life. + Documentary + + + TV14 + + + + Lost Women of Highway 20 + Vanished + When 13-year-old Rachanda Pickle goes missing, suspicion falls on her father who has a dark past. + Regular + + + TV14 + + + + Lost Women of Highway 20 + Hidden in Plain Sight + Detectives discover that Rachanda's disappearance connects to other crimes buried in Oregon's wilderness; they must close in on a suspect who has evaded justice for decades, but he is always one step ahead. + Regular + + + TV14 + + + + Lost Women of Highway 20 + Tip of the Iceberg + Detectives are close to nabbing their suspect, but he is already closing in on new victims; when justice comes, it reveals that previous horrors may only be the tip of the iceberg; a journalist fights to bring the truth to light. + Regular + + + TV14 + + + + Lost Women of Highway 20 + Vanished + When 13-year-old Rachanda Pickle goes missing, suspicion falls on her father who has a dark past. + Regular + + + TV14 + + + + Lost Women of Highway 20 + Hidden in Plain Sight + Detectives discover that Rachanda's disappearance connects to other crimes buried in Oregon's wilderness; they must close in on a suspect who has evaded justice for decades, but he is always one step ahead. + Regular + + + TV14 + + + + Lost Women of Highway 20 + Tip of the Iceberg + Detectives are close to nabbing their suspect, but he is already closing in on new victims; when justice comes, it reveals that previous horrors may only be the tip of the iceberg; a journalist fights to bring the truth to light. + Regular + + + TV14 + + + + Evil Lives Here: The Killer Speaks + I Always Knew I Could Kill + Patrick Pidock knows there's something dark inside him, and his daughter, Fawn, and those around him suffer from his sudden outbursts; he's warned that one day he'll kill someone, but no one knows how dangerous he is until he takes a life. + Documentary + + + TV14 + + + + On the Case With Paula Zahn + Lost Life, Evidence Found + Puzzling clues and odd witness accounts create huge challenges for investigators who are trying to solve a girl's murder. + Legal + Documentary + + + TV14 + + + + On the Case With Paula Zahn + Where Is Miya? + A college student disappears, and her family launches a desperate investigation to find her; what they discover changes their lives forever. + Legal + Documentary + + + TV14 + + + + On the Case With Paula Zahn + A Call for Answers + After police find a young mother bound and murdered in her bedroom, her family challenges police to bring a heartless killer to justice. + Legal + Documentary + + + TV14 + + + + Homicide Hunter: American Detective + The Creek + A home health care aide's body floats in a rural Connecticut creek, and detective Garritt Kelly joins the investigation to bring justice to a community gripped by fear; Kelly will need to employ burgeoning forensic technology to secure a conviction. + Documentary + + + TV14 + + + + Homicide Hunter: American Detective + Prodigal Son + A hardworking father of five lies dead on his kitchen floor with a bullet to the back of the head; to get to the bottom of the mystery, Det. James Colley must untangle a web of twisted relationships and bizarre fantasies. + Documentary + + + TV14 + + + + Homicide Hunter: American Detective + One Drop + A fisherman spots a dismembered corpse floating in Thunder Bay; the case stalls until a young witness delivers a harrowing testimony. + Documentary + + + + Homicide Hunter: American Detective + Murder Capitol + After a hardworking young mother goes missing on the mean streets of Washington, D.C., Detective Jackie Middleton must get to the bottom of a cold-blooded conspiracy. + Documentary + + + + Hometown Homicide + In the Neighborhood + In May 2017, high school teacher Theresa Lockhart is a no-show at her confirmation sponsor's big event; later, her car is discovered with nothing inside, prompting police to turn the community upside down. + + Jimmy Donohue + Hannah Eakin + Michelle Lulic + + Regular + + + TV14 + + + + Hometown Homicide + I Will Find You + Roger Kemp finds the body of his murdered 19-year-old daughter, Ali, at the neighborhood pool where she worked; Kemp embarks on a quest to find his daughter's killer using billboards. + Regular + + + TV14 + + + + Hometown Homicide + This Just in + College student Jessica O'Grady vanishes one night, making locals wonder if she was kidnapped, especially since another woman disappeared a week earlier. + + Chris Cimperman + Carlo Fiorletta + Alice Hale + + Regular + + + TV14 + + + + Murder Comes to Town + Something's Not Right + When a popular cheerleader goes missing in rural Arkansas, the small town is sent into a panic; after her sports car is found abandoned, investigators are sure something is not right, but no one expects the horror that ensues. + + Nick Augest + Perry Ball + Ed Breese + + Documentary + + + TV14 + + + + Murder Comes to Town + The Sinner and the Saint + In Mooresburg, Tenn., residents are shocked to learn that beloved school teacher 79-year-old Margaret Jack Sliger has been murdered on her farm; Hawkins County detectives are charged with finding Sliger's killer and bringing justice to the community. + + Jeremy Carr + Campbell Cox + Travis Dunn + + Documentary + + + TV14 + + + + Murder Comes to Town + No Witnesses + When two young women fail to return home after a run to the local drive-thru, their concerned parents immediately start searching for them; however, it will be a fisherman who gives police their first clue that something evil has happened. + + Cassie Lowe + Abi Van Andel + + Documentary + + + TV14 + + + + Nightmare Next Door + Death Takes a Toll + After business owner Michael Zammitti Jr. is found shot to death at his desk, police must untangle a web of lies and corruption that will rock two New England towns. + + Steven Ablondi + Julie Bell + Wayne Cox + + Documentary + + + TV14 + + + + Nightmare Next Door + Only the Good + Jimmy McClain is a teacher and coach at a Tennessee high school, then he is found assassinated in his home, and police must contend with a laundry list of suspects. + Documentary + + + TV14 + + + + Nightmare Next Door + Everyone Has a Motive + After John Kowalczyk is shot dead, his friends cannot imagine who would murder the successful entrepreneur, but suspects emerge as police begin to look at Kowalczyk's inner circle. + Documentary + + + TV14 + + + + Fear Thy Neighbor + Vendetta in Vegas + A Baptist pastor moves in next-door to a free-spirited older woman in suburban Las Vegas, leading to years of back and forth accusations of dog theft, intimidation and drug use; once the agitation reaches biblical proportions, retribution is wrought. + Regular + + + TV14 + + + + Fear Thy Neighbor + Full Frontal Attack + A family lends a friend a place to stay but kicks her out after a blowup; instead of moving away, she buys a house across the street, kicking off a yearslong dispute ending in a hail of bullets, blood, death, and a community in shock. + Regular + + + TV14 + + + + Murder at the Cabin + A Knock After Midnight + A woman leaves her husband and moves into her brother's cozy cabin in Maine; as she rebuilds her life, she sees a bright future ahead, until the terrible night a strange woman knocks on the door. + Regular + + + TV14 + + + + People Magazine Investigates + Alibi + During an armed robbery, a father of three is fatally shot, but for 23 years, another family questions if the wrong man is behind bars. + News Magazine + + + TV14 + + + + Fear Thy Neighbor + Full Frontal Attack + A family lends a friend a place to stay but kicks her out after a blowup; instead of moving away, she buys a house across the street, kicking off a yearslong dispute ending in a hail of bullets, blood, death, and a community in shock. + Regular + + + TV14 + + + + Murder at the Cabin + A Knock After Midnight + A woman leaves her husband and moves into her brother's cozy cabin in Maine; as she rebuilds her life, she sees a bright future ahead, until the terrible night a strange woman knocks on the door. + Regular + + + TV14 + + + + People Magazine Investigates + Alibi + During an armed robbery, a father of three is fatally shot, but for 23 years, another family questions if the wrong man is behind bars. + News Magazine + + + TV14 + + + + Fear Thy Neighbor + Vendetta in Vegas + A Baptist pastor moves in next-door to a free-spirited older woman in suburban Las Vegas, leading to years of back and forth accusations of dog theft, intimidation and drug use; once the agitation reaches biblical proportions, retribution is wrought. + Regular + + + TV14 + + + + 48 Hours on ID + Who Killed Rachael DelTondo? + Rachael DelTondo is gunned down on Mother's Day 2018 in her parents' driveway; the murder investigation takes twists and turns, including multiple suspects, secret romantic relationships and allegations of corruption. + News Magazine + + + TV14 + + + + 48 Hours on ID + The Mysterious Death of Kat West + Kat West's lifeless body was found outside of her home and the scene appeared to have been staged; West, a Marilyn Monroe look-alike, actively posted on her OnlyFans account, and authorities wonder if a fan might be guilty. + News Magazine + + + TV14 + + + + The Perfect Murder + No Happy Ending + After 44-year-old masseuse Larissa Macriello vanishes from her Miami apartment, police are thrust into a world of sex, lies and secrets as they try to find her. + Docu-Series + + + TV14 + + + + The Perfect Murder + Defenseless + A car races up to the emergency room doors at a Mount Kisco, N.Y., hospital; driver Carlos Perez-Olivo has been shot in his side, while wife Peggy has been shot in the head; investigators must determine what horror has befallen this couple. + + Lou Martini Jr. + Rhianna Radick + Kevin Barbaro + + Docu-Series + + + TV14 + + + + Southern Gothic + Creek Runs Red + After a Tennessee fisherman finds a woman's body floating in a creek, family secrets, decades-long feuds, and a suspicious funeral shine light on a complex conspiracy, but the truth is far more shocking than anyone could have ever imagined. + + Kip Arrowood + Chad Darnell + Brier Hight + + Regular + + + TV14 + + + + Southern Gothic + Who Killed Katie Autry? + The community of Bowling Green, Ky., is devastated when a student is assaulted and burned in her college dorm room; after the victim succumbs to her injuries without naming her attacker, police find two suspects who have very different stories. + + Brandon Wall + Wisdom Allah + Christopher Michael Clark + + Regular + + + TV14 + + + + Southern Gothic + Memphis Blues + A loving mother is shot three times at a gas station in Memphis, Tenn.; as police search for clues, a mysterious letter threatens to complicate the already tense relationship between local law enforcement and the community they are sworn to protect. + + Jasmine S. Davis + Tracy Mazyck + Jeremy Miller + + Regular + + + TV14 + + + + Deadly Recall + No Body No Crime + Detective Postiglione investigates a crime scene where pools of blood indicate that something terrible occurred, but the female victim is nowhere to be found; it's up to Postiglione to find her and a possible murderer. + + Pat Postiglione + + Regular + + + TV14 + + + + Deadly Recall + Check List + In 1991, a woman is found murdered inside a Nashville motel room; the investigation escalates after Detective Postiglione discovers a similar crime scene in Cincinnati, sending him on a yearlong odyssey to capture a serial killer. + + Pat Postiglione + + Regular + + + TV14 + + + + Deadly Recall + Air McNair + Former Tennessee Titan quarterback and public hero Steve McNair is found dead in his condo; the body of a young female is also present in an apparent double homicide. + + Pat Postiglione + + Regular + + + TV14 + + + + Body Cam + Disorderly Conduct + A police officer tracks down an armed carjacker and comes under heavy fire; a stabbing in broad daylight forces the police to take decisive action; a routine traffic stop results in an officer being shot and fighting for his life. + Reality TV + Documentary + + + TV14 + + + + Body Cam + On the Edge + Arkansas police stop a knifeman enraged over a midnight pot roast; in Delray Beach, Fla., officers must rescue two children teetering on a ledge with their mother who is high on drugs; in Utah, a trespasser attacks an officer with his own baton. + Reality TV + Documentary + + + TV14 + + + + Body Cam + My Name Is Death + Officers confront a knife-wielding suspect; in Florida, a man who flees into the woods is outsmarted by a K9 officer; in Indiana, a gunman wages war on police, which is caught on surveillance cameras, until SWAT closes in. + Reality TV + Documentary + + + TV14 + + + + Body Cam + Red Alert + A K-9 unit tracks an armed murder suspect through an Oklahoma residential area, where he ambushes police; in Texas, police officers respond when a couple falls into an icy lake, and one officer risks his own life to go into the water. + Reality TV + Documentary + + + TV14 + + + + Body Cam + Into the Darkness + In Washington State, an off-duty officer spots a wanted criminal in an elementary school; officers in Georgia chase a woman on a violent rampage in her car; in Florida, a stolen car crashes, and the suspect flees into an alligator-infested marsh. + Reality TV + Documentary + + + TV14 + + + + Body Cam + Collision Course + In Tennessee, a stolen squad car hits an officer and leaves him for dead; in Florida, deputies witness an armed carjacking; in Los Angeles, a light plane crashes onto rail tracks and officers try to free the pilot as a train speeds towards the wreck. + Reality TV + Documentary + + + TV14 + + + + Body Cam + Family Ties + In Michigan, the family of a shooter begs him to give himself up; in Florida, a day cruise goes disastrously wrong and rescuers race to save two drowning families; in Detroit, suspects stealing marijuana flee at high speed through the city. + Reality TV + Documentary + + + TV14 + + + + Body Cam: On the Scene + On the Run + The streets turn deadly when the driver of a stolen vehicle tries to flee; a sheriff's K9 is let loose on its first pursuit; a spree of home invasions leads to a three-day manhunt. + Reality TV + Documentary + + + + Hostage 911 + We Cannot Guarantee Your Safety + Two mothers face their worst fear: suspects take their children hostage; negotiators work via text to get a baby to safety, and they draw on their own parenting experience to convince a suspect to give himself up. + Regular + + + + Hostage 911 + Who Rescues the Rescuers? + An elderly man faking chest pains takes five EMT firefighters hostage at gunpoint; with a house full of firearms and an unwillingness to negotiate, officers believe he has a deadly plan in mind. + Regular + + + TV14 + + + + Body Cam: On the Scene + On the Run + The streets turn deadly when the driver of a stolen vehicle tries to flee; a sheriff's K9 is let loose on its first pursuit; a spree of home invasions leads to a three-day manhunt. + Reality TV + Documentary + + + + Hostage 911 + We Cannot Guarantee Your Safety + Two mothers face their worst fear: suspects take their children hostage; negotiators work via text to get a baby to safety, and they draw on their own parenting experience to convince a suspect to give himself up. + Regular + + + + Hostage 911 + Who Rescues the Rescuers? + An elderly man faking chest pains takes five EMT firefighters hostage at gunpoint; with a house full of firearms and an unwillingness to negotiate, officers believe he has a deadly plan in mind. + Regular + + + TV14 + + + + Body Cam + Family Ties + In Michigan, the family of a shooter begs him to give himself up; in Florida, a day cruise goes disastrously wrong and rescuers race to save two drowning families; in Detroit, suspects stealing marijuana flee at high speed through the city. + Reality TV + Documentary + + + TV14 + + + + 20/20 on ID + CutThroat, Inc. -- Part One + Stories about crime victims, their families and the search for truth and justice. + News Magazine + + + TV14 + + + + 20/20 on ID + CutThroat, Inc. -- Part Two + Stories about crime victims, their families and the search for truth and justice. + News Magazine + + + TV14 + + + + Devil in the Web + Reptile Cult + Online cult leader Sherry Shriner reaches her followers through YouTube videos and keeps them in line via her Facebook page; when a group member dies in a tragic shooting, attention turns to Sherry and the control she wields over her followers. + Regular + + + TV14 + + + + Devil in the Web + Scammed On + CeCe bonds with a man she meets on a dating app and she happily obliges when he asks her for money for his business, but she becomes yet another victim of a romance scam. + Regular + + + TV14 + + + + Devil in the Web + Cyber-Stalker + Andy Castillo uses the internet to call and text female realtors in 20 different states; wielding their social media against them, he makes the women believe he's lurking nearby, adding to their terror. + Regular + + + TV14 + + + + Devil in the Web + Revenge Porn + Chrissy Chambers and her girlfriend, Bria Kam, are huge YouTube personalities in the lesbian world; Chrissy's old flame -- a man -- starts a devastating revenge porn campaign, spreading videos of him having sex with her while she's unconscious. + Regular + + + TV14 + + + + Web of Lies + Flirting With the Enemy + College freshman Jason Rodriguez finds freedom online when he begins dating several young women who pique his interest, then he turns up dead after agreeing to meet one of them in person. + Docu-Series + + + TV14 + + + + Web of Lies + Hitman 4 Hire + After Leslie Long goes online to make business contacts, her family finds itself besieged by mysterious threats, and her husband is nearly killed by a gunman. + Docu-Series + + + TV14 + + + + Web of Lies + Fatal Friendship + A 15-year-old girl accepts a few Facebook friend requests from boys she doesn't know, then she agrees to meet one of them in person and discovers the truth behind their online friendship. + Docu-Series + + + TV14 + + + + Web of Lies + The Candyman + After moving to the idyllic town of Gulfport, Fla., Candy Williams meets a handsome stranger at the beach, but her storybook romance turns into a real-life nightmare as his past comes to light. + Docu-Series + + + TV14 + + + + See No Evil + All Eyes on Jordie + On April 10, 2016, 45-year-old Jordie Hudson vanishes after a night out with friends, then investigators find her eye glasses in a pool of blood; a surveillance video shows an attack, and police race to find Hudson before it's too late. + Reality TV + + + TV14 + + + + See No Evil + Michigan City Murder + On April 23, 2016, car salesman Hufracio Arteaga is found stabbed to death in his Michigan City, Ind., office; with no witnesses, investigators use surveillance cameras from an adjacent building to find out who murdered Arteaga. + Reality TV + + + TV14 + + + + Equal Justice With Judge Eboni K. Williams + A landlord sues for rent and utility overages after a duplex tenant has a guest stay longer than the lease allows. + + + + Equal Justice With Judge Eboni K. Williams + A blended family vacation ends before it starts when the stepfather cancels his stepdaughter's plane ticket; a house sitter is blamed for a termite infestation. + + + + Justice With Judge Mablean + Photographer blames dancer's umbrella for his career-ending injury; dispute over payment for house cleaning services and damaged property. + + + + Justice With Judge Mablean + A woman says she was unfairly stripped of a pageant title and scholarship; a prized guitar is smashed during a concert. + + + + America's Court With Judge Ross + Dispute between friends over who should pay for unexpected vet bills; bride has landscaping removed before wedding, without permission of homeowner. + + + + America's Court With Judge Ross + A man blames his ex-girlfriend for lost wages after she reveals their affair; a dispute between neighbors over a fence. + + + + Supreme Justice With Judge Karen + A tenant is blamed for poisoning her landlord's goat with paint; friends argue over an unpaid dinner and bar tab at a networking event. + + + + Supreme Justice With Judge Karen + A woman blames her brother for damaging Christmas decorations that belonged to their late mother; a neighbor's dog bites a child. + + + + We the People With Judge Lauren Lake + A dispute between sisters over unpaid rent; a motivational speaker ends up with broken ribs after receiving a hug from an audience member. + + + + We the People With Judge Lauren Lake + A man seeks a refund for the cost of jewelry he was tricked into purchasing when a neighbor pretended to be someone else. + + + + The Verdict With Judge Hatchett + A man says his neighbor's twin boys broke his car mirror; a daughter refuses to accept responsibility for her parents' home being burglarized. + + + + The Verdict With Judge Hatchett + A woman sues her ex-boyfriend over endorsement earnings; a bakery patron is injured after another customer panics when a fire breaks out. + + + + Justice for All With Judge Cristina Pérez + Landlord seeks unpaid rent from ex-tenant, but she says an excessive amount of bird droppings forced her to move; dispute over a bathroom renovation. + + + + Justice for All With Judge Cristina Pérez + A woman blames her messy roommates for the loss of her security deposit; a man wants his athletic competition partner to refund his money because she missed an event. + + + + Justice for All With Judge Cristina Pérez + An event planner is blamed after outdoor furniture is ruined during a Holi party at a client's home; reckless behavior causes a sledding injury. + + + + Justice for All With Judge Cristina Pérez + A man sues his ex-girlfriend over money given years earlier. + + + + America's Court With Judge Ross + Dispute between friends over who should pay for unexpected vet bills; bride has landscaping removed before wedding, without permission of homeowner. + + + + America's Court With Judge Ross + A man blames his ex-girlfriend for lost wages after she reveals their affair; a dispute between neighbors over a fence. + + + + Supreme Justice With Judge Karen + A tenant is blamed for poisoning her landlord's goat with paint; friends argue over an unpaid dinner and bar tab at a networking event. + + + + Supreme Justice With Judge Karen + A woman blames her brother for damaging Christmas decorations that belonged to their late mother; a neighbor's dog bites a child. + + + + Justice for All With Judge Cristina Pérez + A woman sells her engagement ring after she finds out her fiancé was deceiving her for years. + + + + Justice for All With Judge Cristina Pérez + A woman sues her mother over the cost of designer shoes; a dispute over property damage, a grocery bill and an uninvited guest on a beach trip. + + + + We the People With Judge Lauren Lake + A car is damaged after an affair is discovered; a dispute between former roommates over a robbery and unpaid rent. + + + + We the People With Judge Lauren Lake + Grandmothers feud over the cost of an extravagant baby shower. + + + + Equal Justice With Judge Eboni K. Williams + A first-time kayaker refuses to be blamed for the tour guide losing his valuable camera; sisters argue over the cost of a dinner celebrating their late mother. + + + + Equal Justice With Judge Eboni K. Williams + A bartender blames his ex for lost income after he revealed secrets to a customer; a child is accused of injuring a bookstore patron by pulling her hair. + + + + Justice With Judge Mablean + Pressure to reveal a secret relationship leads to an argument and a damaged car. + + + + Justice With Judge Mablean + A woman sues a matchmaker after being set up with an ex-convict; a woman blames movers for damage to her apartment. + + + + The Verdict With Judge Hatchett + Dispute between social influencers over who is to blame for a lost brand deal; a woman sues her former roommate for two months of unpaid rent. + + + + The Verdict With Judge Hatchett + A woman says she paid for seminars that turned out to be a scam; a man blames his former friend for a lost job opportunity. + + + + We the People With Judge Lauren Lake + A car is damaged after an affair is discovered; a dispute between former roommates over a robbery and unpaid rent. + + + + We the People With Judge Lauren Lake + Grandmothers feud over the cost of an extravagant baby shower. + + + + Supreme Justice With Judge Karen + Dispute between a former couple over podcasting equipment taken after their breakup; a maintenance worker is injured by a tenant's aggressive cats. + + + + Supreme Justice With Judge Karen + A dispute over a ski lesson that was given in exchange for a lift ticket; a snapping turtle injures a man. + + + + Justice for All With Judge Cristina Pérez + A woman sells her engagement ring after she finds out her fiancé was deceiving her for years. + + + + Justice for All With Judge Cristina Pérez + A woman sues her mother over the cost of designer shoes; a dispute over property damage, a grocery bill and an uninvited guest on a beach trip. + + + + Justice With Judge Mablean + Pressure to reveal a secret relationship leads to an argument and a damaged car. + + + + Justice With Judge Mablean + A woman sues a matchmaker after being set up with an ex-convict; a woman blames movers for damage to her apartment. + + + + America's Court With Judge Ross + Assistant believes she was hired for her looks and was wrongfully terminated by her shady boss after he assumed she was dating a co-worker. + + + + America's Court With Judge Ross + A groom claims he was overcharged for wedding reception rentals; a dispute over a defective horse saddle. + + + + Justice for the People With Judge Milian + A student filmmaker sues a property owner for calling "cut" on his production before the negotiated end time. + + + + Justice for the People With Judge Milian + A man sues for profits from selling a litter of kittens his cat fathered; a dispute between friends after a vintage car receives avoidable parking tickets. + + + + Mathis Court With Judge Mathis + A woman accuses her sister of stealing money from their joint account to start a nail business; a dramatic kitchen fire ruins a dinner date. + + + + Mathis Court With Judge Mathis + A dispute over who is to blame after a store's keypad door lock is broken, trapping a child for hours. + + + + Justice for the People With Judge Milian + A student filmmaker sues a property owner for calling "cut" on his production before the negotiated end time. + + + + Justice for the People With Judge Milian + A man sues for profits from selling a litter of kittens his cat fathered; a dispute between friends after a vintage car receives avoidable parking tickets. + + + + Mathis Court With Judge Mathis + A woman accuses her sister of stealing money from their joint account to start a nail business; a dramatic kitchen fire ruins a dinner date. + + + + Mathis Court With Judge Mathis + A dispute over who is to blame after a store's keypad door lock is broken, trapping a child for hours. + + + + Equal Justice With Judge Eboni K. Williams + A first-time kayaker refuses to be blamed for the tour guide losing his valuable camera; sisters argue over the cost of a dinner celebrating their late mother. + + + + Equal Justice With Judge Eboni K. Williams + A bartender blames his ex for lost income after he revealed secrets to a customer; a child is accused of injuring a bookstore patron by pulling her hair. + + + + Justice With Judge Mablean + Pressure to reveal a secret relationship leads to an argument and a damaged car. + + + + Justice With Judge Mablean + A woman sues a matchmaker after being set up with an ex-convict; a woman blames movers for damage to her apartment. + + + + America's Court With Judge Ross + Assistant believes she was hired for her looks and was wrongfully terminated by her shady boss after he assumed she was dating a co-worker. + + + + America's Court With Judge Ross + A groom claims he was overcharged for wedding reception rentals; a dispute over a defective horse saddle. + + + + Supreme Justice With Judge Karen + Dispute between a former couple over podcasting equipment taken after their breakup; a maintenance worker is injured by a tenant's aggressive cats. + + + + Supreme Justice With Judge Karen + A dispute over a ski lesson that was given in exchange for a lift ticket; a snapping turtle injures a man. + + + + We the People With Judge Lauren Lake + A car is damaged after an affair is discovered; a dispute between former roommates over a robbery and unpaid rent. + + + + We the People With Judge Lauren Lake + Grandmothers feud over the cost of an extravagant baby shower. + + + + The Verdict With Judge Hatchett + Dispute between social influencers over who is to blame for a lost brand deal; a woman sues her former roommate for two months of unpaid rent. + + + + The Verdict With Judge Hatchett + A woman says she paid for seminars that turned out to be a scam; a man blames his former friend for a lost job opportunity. + + + + Justice for All With Judge Cristina Pérez + A woman sells her engagement ring after she finds out her fiancé was deceiving her for years. + + + + Justice for All With Judge Cristina Pérez + A woman sues her mother over the cost of designer shoes; a dispute over property damage, a grocery bill and an uninvited guest on a beach trip. + + + + America's Court With Judge Ross + Assistant believes she was hired for her looks and was wrongfully terminated by her shady boss after he assumed she was dating a co-worker. + + + + America's Court With Judge Ross + A groom claims he was overcharged for wedding reception rentals; a dispute over a defective horse saddle. + + + + Supreme Justice With Judge Karen + Dispute between a former couple over podcasting equipment taken after their breakup; a maintenance worker is injured by a tenant's aggressive cats. + + + + Supreme Justice With Judge Karen + A dispute over a ski lesson that was given in exchange for a lift ticket; a snapping turtle injures a man. + + + + The Verdict With Judge Hatchett + Dispute between social influencers over who is to blame for a lost brand deal; a woman sues her former roommate for two months of unpaid rent. + + + + The Verdict With Judge Hatchett + A woman says she paid for seminars that turned out to be a scam; a man blames his former friend for a lost job opportunity. + + + + Justice for All With Judge Cristina Pérez + A courier blames a mechanic for lost work because his motorcycle wasn't fixed in a timely manner; a woman is injured after she is served scalding-hot coffee. + + + + Justice for All With Judge Cristina Pérez + A woman refuses to pay for travel expenses because her friend drove recklessly during a road trip, causing her to have an anxiety attack. + + + + We the People With Judge Lauren Lake + Dispute between neighbors over a loud party and damaged speakers; woman blames her friend for her missed flight after they're pulled over by the police. + + + + We the People With Judge Lauren Lake + A woman blames a hairstylist's all-inclusive micro-link package for ruining her hair; a man sues his ex-girlfriend, saying her social media posts ruined his life. + + + + Equal Justice With Judge Eboni K. Williams + Man seeks compensation after spotty Wi-Fi at a vacation rental costs him a lucrative client for his business. + + + + Equal Justice With Judge Eboni K. Williams + A vegan sues a party guest for cooking meat indoors against her wishes, ruining her birthday; a man blames a faulty swing for damage to his camera. + + + + Justice With Judge Mablean + Judge Mablean Ephraim presides over small-claims court arbitrations. + + + + Justice With Judge Mablean + Judge Mablean Ephraim presides over small-claims court arbitrations. + + + + The Verdict With Judge Hatchett + Award-winning Judge Glenda Hatchett returns to TV to preside over small-claims court arbitrations. + + + + The Verdict With Judge Hatchett + Award-winning Judge Glenda Hatchett returns to TV to preside over small-claims court arbitrations. + + + + We the People With Judge Lauren Lake + Family lawyer and legal analyst Lauren Lake helps litigants resolve issues. + + + + We the People With Judge Lauren Lake + Family lawyer and legal analyst Lauren Lake helps litigants resolve issues. + + + + Supreme Justice With Judge Karen + Judge Karen Mills presides over small-claims court arbitrations. + + + + Supreme Justice With Judge Karen + Judge Karen Mills presides over small-claims court arbitrations. + + + + Justice for All With Judge Cristina Pérez + Judge Cristina Pérez presides over small-claims court arbitrations. + + + + Justice for All With Judge Cristina Pérez + Judge Cristina Pérez presides over small-claims court arbitrations. + + + + Justice With Judge Mablean + Judge Mablean Ephraim presides over small-claims court arbitrations. + + + + Justice With Judge Mablean + Judge Mablean Ephraim presides over small-claims court arbitrations. + + + + America's Court With Judge Ross + Former judge and prosecutor Kevin Ross presides over small-claims court arbitrations. + + + + America's Court With Judge Ross + Former judge and prosecutor Kevin Ross presides over small-claims court arbitrations. + + + + Justice for the People With Judge Milian + A couple's anniversary weekend falls flat after hotel's special event doesn't deliver on advertised perks. + + + + Justice for the People With Judge Milian + Newlyweds sue the mother of the groom's twins because the children missed the wedding. + + + + Mathis Court With Judge Mathis + Mobile tattoo artist seeks payment for his services at a party; woman sues after a specialized yoga class doesn't deliver as advertised. + + + + Mathis Court With Judge Mathis + A woman is injured after her wig is repossessed; on-air talent outsources interviews for a web series to her assistant. + + + + Justice for the People With Judge Milian + A couple's anniversary weekend falls flat after hotel's special event doesn't deliver on advertised perks. + + + + Justice for the People With Judge Milian + Newlyweds sue the mother of the groom's twins because the children missed the wedding. + + + + Mathis Court With Judge Mathis + Mobile tattoo artist seeks payment for his services at a party; woman sues after a specialized yoga class doesn't deliver as advertised. + + + + Mathis Court With Judge Mathis + A woman is injured after her wig is repossessed; on-air talent outsources interviews for a web series to her assistant. + + + + Equal Justice With Judge Eboni K. Williams + Man seeks compensation after spotty Wi-Fi at a vacation rental costs him a lucrative client for his business. + + + + Equal Justice With Judge Eboni K. Williams + A vegan sues a party guest for cooking meat indoors against her wishes, ruining her birthday; a man blames a faulty swing for damage to his camera. + + + + Justice With Judge Mablean + Dispute between co-parents over their daughter's winnings from a beauty pageant; woman sues after an expensive blanket is returned damaged. + + + + Justice With Judge Mablean + A restaurant owner sues a chef for bail money and property damage after a fight with a patron on opening night. + + + + America's Court With Judge Ross + Damaged furniture, unpaid rent, and too many guests come between feisty ex-roommates in their golden years. + + + + America's Court With Judge Ross + An altercation between karaoke singers leads to a broken jaw; a man is pushed into a lake, damaging a cell phone. + + + + Supreme Justice With Judge Karen + Influencer is sued for bringing a woman with excessive body hair to a beach party; dispute between neighbors over an avocado tree. + + + + Supreme Justice With Judge Karen + A woman sues a problematic massage client; a fight between two dogs causes injuries. + + + + We the People With Judge Lauren Lake + Dispute between neighbors over a loud party and damaged speakers; woman blames her friend for her missed flight after they're pulled over by the police. + + + + We the People With Judge Lauren Lake + A woman blames a hairstylist's all-inclusive micro-link package for ruining her hair; a man sues his ex-girlfriend, saying her social media posts ruined his life. + + + + The Verdict With Judge Hatchett + Woman sues her vain sister for refusing to split the cost of their mother's birthday gift; mother blames babysitter for child's online shopping spree. + + + + The Verdict With Judge Hatchett + A college prank leads to a lost scholarship; a dispute between neighbors over stray cats and a damaged garden. + + + + Justice for All With Judge Cristina Pérez + A courier blames a mechanic for lost work because his motorcycle wasn't fixed in a timely manner; a woman is injured after she is served scalding-hot coffee. + + + + Justice for All With Judge Cristina Pérez + A woman refuses to pay for travel expenses because her friend drove recklessly during a road trip, causing her to have an anxiety attack. + + + + America's Court With Judge Ross + Damaged furniture, unpaid rent, and too many guests come between feisty ex-roommates in their golden years. + + + + America's Court With Judge Ross + An altercation between karaoke singers leads to a broken jaw; a man is pushed into a lake, damaging a cell phone. + + + + Supreme Justice With Judge Karen + Influencer is sued for bringing a woman with excessive body hair to a beach party; dispute between neighbors over an avocado tree. + + + + Supreme Justice With Judge Karen + A woman sues a problematic massage client; a fight between two dogs causes injuries. + + + + The Verdict With Judge Hatchett + Woman sues her vain sister for refusing to split the cost of their mother's birthday gift; mother blames babysitter for child's online shopping spree. + + + + The Verdict With Judge Hatchett + A college prank leads to a lost scholarship; a dispute between neighbors over stray cats and a damaged garden. + + + + Justice for All With Judge Cristina Pérez + A dispute between parents after their teens are banned from prom; a woman breaks her lease in order to pay a hefty fine because she dyed her dog's fur. + + + + Justice for All With Judge Cristina Pérez + A woman's son ingests batteries while in her neighbor's care; a dispute between friends over profits from a viral video. + + + + We the People With Judge Lauren Lake + Woman sues her ex-boyfriend for selling her dog while she was in prison; man blames his flooded apartment on his neighbor's leaky washing machine. + + + + We the People With Judge Lauren Lake + A dispute between friends over who should pay for a vacation; a breeder accuses a pet owner of violating a contract after purchasing a puppy. + + + + Equal Justice With Judge Eboni K. Williams + Woman sues after her ex-best friend takes someone else to a concert; salon owner seeks compensation after a hairstylist leaves without notice. + + + + Equal Justice With Judge Eboni K. Williams + A former employee is accused of fraudulently exploiting a referral program; a dispute between roommates after a car isn't moved for street-sweeping. + + + + Justice With Judge Mablean + Aunt seeks remaining rent after she kicks out her niece who refuses to stop stripping online; defective tote bags are given away without permission. + + + + Justice With Judge Mablean + A promotional model sues for breach of contract; a man blames the landlord after he is injured using fitness equipment at an apartment complex. + + + + The Verdict With Judge Hatchett + Woman is sued over a lost security deposit after she agreed to live with her friend but moved in with her boyfriend instead. + + + + The Verdict With Judge Hatchett + A woman blames a costumer for a forfeited dance competition; a kiteboarding date ends with an injury. + + + + We the People With Judge Lauren Lake + Woman sues her ex-boyfriend for selling her dog while she was in prison; man blames his flooded apartment on his neighbor's leaky washing machine. + + + + We the People With Judge Lauren Lake + A dispute between friends over who should pay for a vacation; a breeder accuses a pet owner of violating a contract after purchasing a puppy. + + + + Supreme Justice With Judge Karen + Catty comments come between friends; dispute between co-parents after a child misses his own surprise birthday party. + + + + Supreme Justice With Judge Karen + A man says his mother's social media posts led to a robbery; a babysitter sues a former client over lost wages. + + + + Justice for All With Judge Cristina Pérez + A dispute between parents after their teens are banned from prom; a woman breaks her lease in order to pay a hefty fine because she dyed her dog's fur. + + + + Justice for All With Judge Cristina Pérez + A woman's son ingests batteries while in her neighbor's care; a dispute between friends over profits from a viral video. + + + + Justice With Judge Mablean + Aunt seeks remaining rent after she kicks out her niece who refuses to stop stripping online; defective tote bags are given away without permission. + + + + Justice With Judge Mablean + A promotional model sues for breach of contract; a man blames the landlord after he is injured using fitness equipment at an apartment complex. + + + + America's Court With Judge Ross + A man sues his ex-girlfriend for spending too much of his money on her vacation; a father blames his daughter's ex-boyfriend for property damage. + + + + America's Court With Judge Ross + A former couple fight over their dog; a damaged computer. + + + + Justice for the People With Judge Milian + Tenant sues her former landlord after a broken air-conditioning unit isn't replaced, leading to heat stroke; former friends argue over seats at a concert. + + + + Justice for the People With Judge Milian + Legal flames ignite when a voice actor blames his girlfriend's brother for deliberately over-spicing the wings during a friendly competition. + + + + Mathis Court With Judge Mathis + Judge Greg Mathis presides over small-claims court arbitrations. + + + + Mathis Court With Judge Mathis + A son is sued after he has no choice but to send his father packing. + + + + Justice for the People With Judge Milian + Tenant sues her former landlord after a broken air-conditioning unit isn't replaced, leading to heat stroke; former friends argue over seats at a concert. + + + + Justice for the People With Judge Milian + Legal flames ignite when a voice actor blames his girlfriend's brother for deliberately over-spicing the wings during a friendly competition. + + + + Mathis Court With Judge Mathis + Judge Greg Mathis presides over small-claims court arbitrations. + + + + Mathis Court With Judge Mathis + A son is sued after he has no choice but to send his father packing. + + + + Equal Justice With Judge Eboni K. Williams + Woman sues after her ex-best friend takes someone else to a concert; salon owner seeks compensation after a hairstylist leaves without notice. + + + + Equal Justice With Judge Eboni K. Williams + A former employee is accused of fraudulently exploiting a referral program; a dispute between roommates after a car isn't moved for street-sweeping. + + + + Justice With Judge Mablean + Aunt seeks remaining rent after she kicks out her niece who refuses to stop stripping online; defective tote bags are given away without permission. + + + + Justice With Judge Mablean + A promotional model sues for breach of contract; a man blames the landlord after he is injured using fitness equipment at an apartment complex. + + + + America's Court With Judge Ross + A man sues his ex-girlfriend for spending too much of his money on her vacation; a father blames his daughter's ex-boyfriend for property damage. + + + + America's Court With Judge Ross + A former couple fight over their dog; a damaged computer. + + + + Supreme Justice With Judge Karen + Catty comments come between friends; dispute between co-parents after a child misses his own surprise birthday party. + + + + Supreme Justice With Judge Karen + A man says his mother's social media posts led to a robbery; a babysitter sues a former client over lost wages. + + + + We the People With Judge Lauren Lake + Woman sues her ex-boyfriend for selling her dog while she was in prison; man blames his flooded apartment on his neighbor's leaky washing machine. + + + + We the People With Judge Lauren Lake + A dispute between friends over who should pay for a vacation; a breeder accuses a pet owner of violating a contract after purchasing a puppy. + + + + The Verdict With Judge Hatchett + Woman is sued over a lost security deposit after she agreed to live with her friend but moved in with her boyfriend instead. + + + + The Verdict With Judge Hatchett + A woman blames a costumer for a forfeited dance competition; a kiteboarding date ends with an injury. + + + + Justice for All With Judge Cristina Pérez + A dispute between parents after their teens are banned from prom; a woman breaks her lease in order to pay a hefty fine because she dyed her dog's fur. + + + + Justice for All With Judge Cristina Pérez + A woman's son ingests batteries while in her neighbor's care; a dispute between friends over profits from a viral video. + + + + America's Court With Judge Ross + A man sues his ex-girlfriend for spending too much of his money on her vacation; a father blames his daughter's ex-boyfriend for property damage. + + + + America's Court With Judge Ross + A former couple fight over their dog; a damaged computer. + + + + Supreme Justice With Judge Karen + Catty comments come between friends; dispute between co-parents after a child misses his own surprise birthday party. + + + + Supreme Justice With Judge Karen + A man says his mother's social media posts led to a robbery; a babysitter sues a former client over lost wages. + + + + The Verdict With Judge Hatchett + Woman is sued over a lost security deposit after she agreed to live with her friend but moved in with her boyfriend instead. + + + + The Verdict With Judge Hatchett + A woman blames a costumer for a forfeited dance competition; a kiteboarding date ends with an injury. + + + + Justice for All With Judge Cristina Pérez + A woman sues her ex-girlfriend for outing her to her conservative parents; a man blames his neighbor after his house is vandalized. + + + + Justice for All With Judge Cristina Pérez + A caterer's business is damaged because a groom's ex-girlfriend sabotaged his wedding by canceling his catering order; a former couple argue over lost property. + + + + We the People With Judge Lauren Lake + A one-night stand is blamed for a red wine stain; dispute between ex-friends over money given to benefit goddaughter. + + + + We the People With Judge Lauren Lake + A dispute between a rideshare driver and a passenger over who is to blame for damage to a car door; a woman sues after spiritual cleansing does not work. + + + + Equal Justice With Judge Eboni K. Williams + Tenant seeks the return of prepaid rent after her landlord's home was overrun with dogs. + + + + Equal Justice With Judge Eboni K. Williams + A nanny sues a former employer for expenses owed after a work trip. + + + + Justice With Judge Mablean + Woman sues her ex-boyfriend for the return of her security deposit after she moved across the country to live with him, only to discover he was cheating. + + + + Justice With Judge Mablean + Newlyweds sue their officiant after the bride is injured during wedding ceremony; a man blames a nightclub coat check for lost keys. + + + + The Verdict With Judge Hatchett + Woman sues for tuition reimbursement after school fails to disclose specific curriculum. + + + + The Verdict With Judge Hatchett + A man sues after his girlfriend fails to show up for an elaborate vacation; a collision between a car and a scooter. + + + + We the People With Judge Lauren Lake + A one-night stand is blamed for a red wine stain; dispute between ex-friends over money given to benefit goddaughter. + + + + We the People With Judge Lauren Lake + A dispute between a rideshare driver and a passenger over who is to blame for damage to a car door; a woman sues after spiritual cleansing does not work. + + + + Supreme Justice With Judge Karen + Man sues for wrongful termination after a hotel guest falsely accuses him of inappropriate behavior during work hours. + + + + Supreme Justice With Judge Karen + A woman sues her child's father for breach of contract; a birthday party on a chartered boat doesn't go as planned. + + + + Justice for All With Judge Cristina Pérez + A woman sues her ex-girlfriend for outing her to her conservative parents; a man blames his neighbor after his house is vandalized. + + + + Justice for All With Judge Cristina Pérez + A caterer's business is damaged because a groom's ex-girlfriend sabotaged his wedding by canceling his catering order; a former couple argue over lost property. + + + + Justice With Judge Mablean + Woman sues her ex-boyfriend for the return of her security deposit after she moved across the country to live with him, only to discover he was cheating. + + + + Justice With Judge Mablean + Newlyweds sue their officiant after the bride is injured during wedding ceremony; a man blames a nightclub coat check for lost keys. + + + + America's Court With Judge Ross + A man seeks compensation from his cousin's neighbor after he was wrongfully arrested because she called the police while he was house-sitting. + + + + America's Court With Judge Ross + A dispute over the appraised value of a guitar; a sorority formal doesn't go as planned. + + + + Justice for the People With Judge Milian + Mother blames her son's piano teacher after he is denied admission to a performing arts school; dispute between co-workers over vet bills. + + + + Justice for the People With Judge Milian + Ethics and expenses clash when a mother demands reimbursement for travel expenses from her son's baseball team. + + + + Mathis Court With Judge Mathis + Man sues his roommate's girlfriend for intentionally breaking his television, twice; woman seeks compensation after a food festival booth is a success. + + + + Mathis Court With Judge Mathis + A parent seeks compensation after a son is traumatized by a co-worker's road rage; a woman sues after she is scammed by an online love interest. + + + + Justice for the People With Judge Milian + Mother blames her son's piano teacher after he is denied admission to a performing arts school; dispute between co-workers over vet bills. + + + + Justice for the People With Judge Milian + Ethics and expenses clash when a mother demands reimbursement for travel expenses from her son's baseball team. + + + + Park Avenue Jewelry Collection + Park Avenue Diamonds Collection with Jennifer (Nov 4th, 2023 20:00) + Join Tony Malvagna for unique diamond designs in an array of colors without the expensive Park Avenue boutique prices! + + Tony Malvagna + + Shopping + + + TVG + + + + Sterling Moments Jewelry + Sterling Moments with Heidi (Nov 4th, 2023 22:00) + Own today's hottest sterling silver jewelry styles. Relax and shop our eye-catching assortment and exciting values. + + Heidi Williams + + Shopping + + + TVG + + + + Gold Jewelry Showcase + Gold Showcase Sale with Heidi (Nov 5th, 2023 00:00) + Lavish yourself in elegant gold and gemstones. Get swept away by outstanding prices on gold jewelry. + + Heidi Williams + + Shopping + + + TVG + + + + Gold Jewelry Showcase + Gold Showcase Sale with Heidi (Nov 5th, 2023 00:00) + Lavish yourself in elegant gold and gemstones. Get swept away by outstanding prices on gold jewelry. + + Heidi Williams + + Shopping + + + TVG + + + + Personalized Style + Personalized Style with Misty (Nov 5th, 2023 02:00) + Join Misty Mills as she offers her favorite jewelry. Don't miss this chance to add great pieces to your personal collection. + Shopping + + + TVG + + + + Wrapped in Gold Jewelry + Wrapped in Gold with Lissa (Nov 5th, 2023 04:00) + The look of solid gold without the solid gold price in as assortment of beautiful jewelry designs clad in gold. + + Lissa Daigle + + Shopping + + + TVG + + + + Sterling Moments Jewelry + Sterling Moments with Heidi (Nov 5th, 2023 06:00) + Own today's hottest sterling silver jewelry styles. Relax and shop our eye-catching assortment and exciting values. + + Heidi Williams + + Shopping + + + TVG + + + + Jewel School - Jewelry Making + Jewel School with Susan (Nov 5th, 2023 08:00) + From beads to supplies and storage options, Jewel School is the creative academy for jewelry-makers and crafters. Jewel School provides all the essentials needed to create one-of-a-kind designs on your own schedule and pace. + Shopping + + + TVG + + + + Jewelry Love + Jewelry Love with Misty (Nov 5th, 2023 10:00) + Fall in love with jewelry all over again. Shop a mix of the best-loved lines at JTV. All in one show. + Shopping + + + TVG + + + + Sterling Moments Jewelry + Sterling Moments with Lissa (Nov 5th, 2023 12:00) + Own today's hottest sterling silver jewelry styles. Relax and shop our eye-catching assortment and exciting values. + + Lissa Daigle + + Shopping + + + TVG + + + + Park Avenue Jewelry Collection + Park Avenue Diamonds Collection with Melissa (Nov 5th, 2023 14:00) + Join Tony Malvagna for unique diamond designs in an array of colors without the expensive Park Avenue boutique prices! + + Melissa Wolfe + Tony Malvagna + + Shopping + + + TVG + + + + Sparkle in Silver Jewelry + Sparkle in Silver with Melissa (Nov 5th, 2023 16:00) + Spice up your life with a little sparkle! Shop stunning silver jewelry designs set with glimmering gems. + + Melissa Wolfe + + Shopping + + + TVG + + + + Gold Jewelry Showcase + Gold Showcase with Scott and Cristina (Nov 5th, 2023 18:00) + Lavish yourself in elegant gold and gemstones. Get swept away by outstanding prices on gold jewelry. + + Cristina Yanez + + Shopping + + + TVG + + + + Jewelry Love + Jewelry Love with Heidi (Nov 5th, 2023 20:00) + Fall in love with jewelry all over again. Shop a mix of the best-loved lines at JTV. All in one show. + + Heidi Williams + + Shopping + + + TVG + + + + Bella Luce Jewelry + Bella Luce Sale & Clearance with Casey (Nov 6th, 2023 00:00) + Get your glamour on with gorgeous jewelry featuring fine diamond and gemstone simulants. Bella Luce makes exclusive luxury looks affordable. + + Casey Gagliardi + + Shopping + + + TVG + + + + Bella Luce Jewelry + Bella Luce Sale & Clearance with Casey (Nov 6th, 2023 00:00) + Get your glamour on with gorgeous jewelry featuring fine diamond and gemstone simulants. Bella Luce makes exclusive luxury looks affordable. + + Casey Gagliardi + + Shopping + + + TVG + + + + Sterling Moments Jewelry + Sterling Moments with Melissa (Nov 6th, 2023 02:00) + Own today's hottest sterling silver jewelry styles. Relax and shop our eye-catching assortment and exciting values. + + Melissa Wolfe + + Shopping + + + TVG + + + + Sparkle in Silver Jewelry + Sparkle in Silver (Nov 6th, 2023 04:00) + Spice up your life with a little sparkle! Shop stunning silver jewelry designs set with glimmering gems. + Shopping + + + TVG + + + + Bella Luce Jewelry + Bella Luce (Nov 6th, 2023 06:00) + Get your glamour on with gorgeous jewelry featuring fine diamond and gemstone simulants. Bella Luce makes exclusive luxury looks affordable. + Shopping + + + TVG + + + + Exclusively Gold Jewelry + Exclusively Gold Sale with Wendy (Nov 6th, 2023 08:00) + Classic goes uptown elegant in gold jewelry you'll love. Outstanding prices make it easy to bring uptown elegance home. Shop and enjoy! + + Wendy Caldwell + + Shopping + + + TVG + + + + Jewel School - Jewelry Making + Jewel School with Susan and Laura (Nov 6th, 2023 10:00) + From beads to supplies and storage options, Jewel School is the creative academy for jewelry-makers and crafters. Jewel School provides all the essentials needed to create one-of-a-kind designs on your own schedule and pace. + + Laura Graham + + Shopping + + + TVG + + + + Silver Showcase Jewelry + Silver Showcase Sale with Mandy (Nov 6th, 2023 12:00) + Shop fantastic values in timeless yet trendy sterling silver jewelry and gemstones. Then wow your friends with your new looks! + + Mandy Bradshaw + + Shopping + + + TVG + + + + Park Avenue Jewelry Collection + Park Ave Diamond Sale with Mandy (Nov 6th, 2023 14:00) + Join Tony Malvagna for unique diamond designs in an array of colors without the expensive Park Avenue boutique prices! + + Mandy Bradshaw + Tony Malvagna + + Shopping + + + TVG + + + + Silver Jewelry Sale + Silver Jewelry Sale with Cristina and Scott (Nov 6th, 2023 16:00) + An assortment of the best silver pieces ready to take home and wear every day. + + Cristina Yanez + + Shopping + + + TVG + + + + Exclusively Gold Jewelry + Exclusively Gold Sale with Scott and Cristina (Nov 6th, 2023 18:00) + Classic goes uptown elegant in gold jewelry you'll love. Outstanding prices make it easy to bring uptown elegance home. Shop and enjoy! + + Cristina Yanez + + Shopping + + + TVG + + + + Silver Showcase Jewelry + Silver Showcase Sale with Jennifer (Nov 6th, 2023 20:00) + Shop fantastic values in timeless yet trendy sterling silver jewelry and gemstones. Then wow your friends with your new looks! + Shopping + + + TVG + + + + Park Avenue Jewelry Collection + Park Ave Diamond Sale with Jennifer (Nov 6th, 2023 22:00) + Join Tony Malvagna for unique diamond designs in an array of colors without the expensive Park Avenue boutique prices! + + Tony Malvagna + + Shopping + + + TVG + + + + Silver Jewelry Sale + Silver Jewelry Sale with Casey (Nov 7th, 2023 00:00) + An assortment of the best silver pieces ready to take home and wear every day. + + Casey Gagliardi + + Shopping + + + TVG + + + + Silver Jewelry Sale + Silver Jewelry Sale with Casey (Nov 7th, 2023 00:00) + An assortment of the best silver pieces ready to take home and wear every day. + + Casey Gagliardi + + Shopping + + + TVG + + + + Jewelry Love + Jewelry Love with Heidi (Nov 7th, 2023 02:00) + Fall in love with jewelry all over again. Shop a mix of the best-loved lines at JTV. All in one show. + + Heidi Williams + + Shopping + + + TVG + + + + Bella Luce Jewelry + Bella Luce Sale & Clearance with Casey (Nov 7th, 2023 04:00) + Get your glamour on with gorgeous jewelry featuring fine diamond and gemstone simulants. Bella Luce makes exclusive luxury looks affordable. + + Casey Gagliardi + + Shopping + + + TVG + + + + Silver Showcase Jewelry + Silver Showcase Sale with Jennifer (Nov 7th, 2023 06:00) + Shop fantastic values in timeless yet trendy sterling silver jewelry and gemstones. Then wow your friends with your new looks! + Shopping + + + TVG + + + + Wrapped in Gold Jewelry + Wrapped in Gold with Tommy and Dawn (Nov 7th, 2023 08:00) + The look of solid gold without the solid gold price in as assortment of beautiful jewelry designs clad in gold. + + Dawn Tesh + + Shopping + + + TVG + + + + Jewel School - Jewelry Making + Jewel School with Susan and Katy (Nov 7th, 2023 10:00) + From beads to supplies and storage options, Jewel School is the creative academy for jewelry-makers and crafters. Jewel School provides all the essentials needed to create one-of-a-kind designs on your own schedule and pace. + Shopping + + + TVG + + + + Bella Luce Jewelry + Bella Luce with Mandy (Nov 7th, 2023 12:00) + Get your glamour on with gorgeous jewelry featuring fine diamond and gemstone simulants. Bella Luce makes exclusive luxury looks affordable. + + Mandy Bradshaw + + Shopping + + + TVG + + + + Affordable Jewelry Luxuries + Affordable Luxuries with Mandy (Nov 7th, 2023 14:00) + Live luxuriously! Shop for trendsetting jewelry that's exceptionally well-priced; no crowds, no long lines, and no hassles. + + Mandy Bradshaw + + Shopping + + + TVG + + + + Park Avenue Jewelry Collection + Park Avenue Diamonds Collection with Nikki (Nov 7th, 2023 16:00) + Join Tony Malvagna for unique diamond designs in an array of colors without the expensive Park Avenue boutique prices! + + Nikki Rouleau + Tony Malvagna + + Shopping + + + TVG + + + + Sterling Moments Jewelry + Sterling Moments with Nikki (Nov 7th, 2023 18:00) + Own today's hottest sterling silver jewelry styles. Relax and shop our eye-catching assortment and exciting values. + + Nikki Rouleau + + Shopping + + + TVG + + + + Color and Karat Jewelry + Color & Karat with Scott and Cristina (Nov 7th, 2023 20:00) + Glisten in gold and glorious gems. Shop the richness of gold jewelry styles set with rainbows of colorful gemstones. JTV ensures the best values in the jewelry you want. + + Cristina Yanez + + Shopping + + + TVG + + + + Southwest Style Jewelry Collection by JTV + Southwest Style by JTV with Jennifer and Scott (Nov 7th, 2023 22:00) + Join us for jewelry that marries gems like turquoise, shell and coral with sterling silver with southwest influence by JTV. + Shopping + + + TVG + + + + Park Avenue Jewelry Collection + Park Avenue Diamonds Collection with Casey (Nov 8th, 2023 00:00) + Join Tony Malvagna for unique diamond designs in an array of colors without the expensive Park Avenue boutique prices! + + Casey Gagliardi + Tony Malvagna + + Shopping + + + TVG + + + + Park Avenue Jewelry Collection + Park Avenue Diamonds Collection with Casey (Nov 8th, 2023 00:00) + Join Tony Malvagna for unique diamond designs in an array of colors without the expensive Park Avenue boutique prices! + + Casey Gagliardi + Tony Malvagna + + Shopping + + + TVG + + + + Silver Jewelry Sale + Silver Jewelry Sale with Cristina and Scott (Nov 8th, 2023 02:00) + An assortment of the best silver pieces ready to take home and wear every day. + + Cristina Yanez + + Shopping + + + TVG + + + + Sterling Moments Jewelry + Sterling Moments with Nikki (Nov 8th, 2023 04:00) + Own today's hottest sterling silver jewelry styles. Relax and shop our eye-catching assortment and exciting values. + + Nikki Rouleau + + Shopping + + + TVG + + + + Exclusively Gold Jewelry + Exclusively Gold Sale with Scott and Cristina (Nov 8th, 2023 06:00) + Classic goes uptown elegant in gold jewelry you'll love. Outstanding prices make it easy to bring uptown elegance home. Shop and enjoy! + + Cristina Yanez + + Shopping + + + TVG + + + + Affordable Jewelry Luxuries + Affordable Luxuries with Dawn (Nov 8th, 2023 08:00) + Live luxuriously! Shop for trendsetting jewelry that's exceptionally well-priced; no crowds, no long lines, and no hassles. + + Dawn Tesh + + Shopping + + + TVG + + + + Southwest Style Jewelry Collection by JTV + Southwest Style Jewelry Collection by JTV with Albany (Nov 8th, 2023 10:00) + Join us for jewelry that marries gems like turquoise, shell and coral with sterling silver with southwest influence by JTV. + + Albany Irvin + + Shopping + + + TVG + + + + Exclusively Gold Jewelry + Exclusively Gold with Mandy (Nov 8th, 2023 12:00) + Classic goes uptown elegant in gold jewelry you'll love. Outstanding prices make it easy to bring uptown elegance home. Shop and enjoy! + + Mandy Bradshaw + + Shopping + + + TVG + + + + Bella Luce Jewelry + Bella Luce with Jennifer (Nov 8th, 2023 14:00) + Get your glamour on with gorgeous jewelry featuring fine diamond and gemstone simulants. Bella Luce makes exclusive luxury looks affordable. + Shopping + + + TVG + + + + Silver Showcase Jewelry + Silver Showcase with Heidi (Nov 8th, 2023 16:00) + Shop fantastic values in timeless yet trendy sterling silver jewelry and gemstones. Then wow your friends with your new looks! + + Heidi Williams + + Shopping + + + TVG + + + + Color and Karat Jewelry + Color & Karat with Heidi (Nov 8th, 2023 18:00) + Glisten in gold and glorious gems. Shop the richness of gold jewelry styles set with rainbows of colorful gemstones. JTV ensures the best values in the jewelry you want. + + Heidi Williams + + Shopping + + + TVG + + + + Israel at War + A Writer's Perspective + Historian, author and Moment columnist Fania Oz-Salzberger discusses how she's processing the Israel-Hamas war and how she decides what to share in her writing, with Moment Book and Opinion Editor Amy E. Schwartz, in a program of Moment Magazine. + News + + + + Fighting Fascism Symposium + What is Fascism + Panelists tackle this question and explore the differences between fascism and other rightwing movements by exploring their ideological and historical origins from the interwar period up to the present, in a symposium from AJHS / CJH. + Regular + + + + 92nd Street Y + Capture of Adolf Eichmann + Avner Avraham, a former Mossad agent, and Eli Rosenbaum, a former prosecutor of Nazi war criminals for the U.S. Dept. of Justice, describe Israel's dramatic capture of Adolf Eichmann in 1960. + Religious + + + TVG + + + + Good Week Israel + A look into the stories, people, cultural sights and events that make up Israeli life. + News Magazine + + + TVPG + + + + In the News + Shahar Azani + A look at recent events in the news, often with in-studio or phone interviews. + News + + + TVPG + + + + Fighting Fascism Symposium + What is Fascism + Panelists tackle this question and explore the differences between fascism and other rightwing movements by exploring their ideological and historical origins from the interwar period up to the present, in a symposium from AJHS / CJH. + Regular + + + + Ethics of Campaign Against Hamas + Yehuda Kurtzer and Chanan Weissman + Chanan Weissman (SAPIR Institute) and Yehuda Kurtzer (Shalom Hartman Institute) discuss Yehuda's recent trip to Israel, the deep trauma facing Jews in the Diaspora, and the ethical considerations of Israel's military campaign against Hamas. + Regular + + + + Ethics of Campaign Against Hamas + Yehuda Kurtzer and Chanan Weissman + Chanan Weissman (SAPIR Institute) and Yehuda Kurtzer (Shalom Hartman Institute) discuss Yehuda's recent trip to Israel, the deep trauma facing Jews in the Diaspora, and the ethical considerations of Israel's military campaign against Hamas. + Regular + + + + Defending Israel + David Harris with Alan Mendoza + Lifelong Jewish frontline activist and JBS strategic analyst David Harris shares his perspectives of the Hamas-triggered war with Israel. + News + Political + + + TVPG + + + + Good Week Israel + A look into the stories, people, cultural sights and events that make up Israeli life. + News Magazine + + + TVPG + + + + Israel at War + News + + + + In the News + Shahar Azani + A look at recent events in the news, often with in-studio or phone interviews. + News + + + TVPG + + + + In the Spotlight + Elana Stein Hain + Abigail Pogrebin sits with Elana Stein Hain, Senior Fellow at the Shalom Hartman Institute of North America to discuss how text and teaching helps people in difficult times. + Regular + + + TVPG + + + + In the Spotlight + Rabbi Chaim Steinmetz + Chaim Steinmetz, Senior Rabbi of Congregation Kehilath Jeshurun in NYC, shares his perspectives on the Israel-Hamas war with Abigail Pogrebin. + Regular + + + TVPG + + + + Rabbi Hirsch + Hamas Brutality + Rabbi Hirsch looks to the Torah for reasons yet to believe in humanity's righteousness, even while contemplating the unfathomable brutality of October 7th. + Religious + + + + Rabbi Sharon Brous + We've Lost So Much + In her remarks on Shabbat following the October 7th attacks, IKAR's Rabbi Sharon Brous speaks of Jewish existential loneliness, collective sorrow, solidarity, and the Jewish values that should guide people during this tragic time. + Religious + + + + Balfour Declaration + Steven Bayme + Steven Bayme describes the history of The Balfour Declaration and the international forces that were at play. + Regular + + + TVPG + + + + Balfour Declaration + Daniel Gordis + Daniel Gordis discusses the significance of the Balfour Declaration and its impact on Israel's Declaration of Independence. + Regular + + + TVPG + + + + Israel at War + News + + + + Israel at War + Shahar Azani + Information and in-depth discussion on the Israel-Hamas war. + News + + + + Talmud Study + Three Oaths + Three Oaths, Aliyah, and the State Of Israel--on the commandments relating to making aliyah and living in Israel (based on Kesuvos 96a and 96b)--is presented by Rabbi Mordechai Becher on this edition of Shalom TV's Dimensions of the Daf. + Religious + + + TVG + + + + Talmud Study + Danger Warnings + Warnings about potential dangers (and an exploration of whether tragedies are in the hands of heaven or man) are examined in Put On a Sweater Or You'll Catch a Cold, based on Kesuvos Daf Lamed. + Religious + + + TVG + + + + In the Spotlight + Elana Stein Hain + Abigail Pogrebin sits with Elana Stein Hain, Senior Fellow at the Shalom Hartman Institute of North America to discuss how text and teaching helps people in difficult times. + Regular + + + TVPG + + + + Srugim + Five modern Orthodox singles look for love in Jerusalem as they get ever-nearer to the age of 30. + + Ohad Knoller + Amos Tamam + Yael Sharoni + + Drama + + + + Jewish Homeland: 1917 + For the 100th anniversary of the Balfour Declaration of 1917, Yehuda Kurtzer discusses the evolution of the idea of a Jewish homeland in Palestine. + Regular + + + TVPG + + + + L'Chayim + Playwright J.T. Rogers discusses and defends his choices in his depiction of one of the most notorious events in modern Jewish history, the Oslo Accords, as portrayed in his most recent play. + Talk Shows + Religious + + + TVG + + + + Israel at War + Aaron David Miller and Robert Siegel + 50 years after the YK War, Israel is under unprecedented siege; Middle East Analyst Aaron David Miller and former NPR host Robert Siegel discuss what happened, where things stand and how and when this war might end, in a program of Moment Magazine. + News + + + + War of Independence: Benny Morris + One of the world's leading historians of Israel's War of Independence, Benny Morris, discusses some of the surprising facts his new research reveals about Israel's 1948 battle with Arab nations. + Regular + + + TVPG + + + + Witness + The Stermer Family + Mr. and Mrs. Stermer and their six children miraculously survived living underground for the majority of the war despite the deficit of food and water. + Regular + + + TVPG + + + + Shalom Kids + A Mezuzah on the Door + When his family moves to a new home, Noah learns the meaning and comfort of friendship in. + Variety + + + TVG + + + + Shalom Kids + Fins and Scales + Young Yoni Katz learns about kosher and non-kosher foods in the children's book. + Variety + + + TVG + + + + ILTV News Sunday + ILTV English Language News from Israel. + Specials + + + + In the News + Shahar Azani + A look at recent events in the news, often with in-studio or phone interviews. + News + + + TVPG + + + + L'Chayim + Emanuel Aronson Rund + Filmmaker, journalist and historian Emanuel Aronson Rund shares personal memories of growing up in Israel during the 1948 War of Independence and discusses contemporary issues challenging the Jewish State today. + Talk Shows + Religious + + + TVG + + + + The Quad + Bearing Witness: Kibbutz Be'eri + Fleur Hassan-Nahoum (Deputy Mayor of Jerusalem), Ashira Solomon (political moderator) and Emily Schrader (journalist/activist) visit an Israeli Kibbutz that was massacred, and analyze the disturbing range of global responses to the murder of Jews. + Regular + + + + Defending Israel + David Harris with Danny Ayalon + Longtime Jewish frontline activist and JBS strategic analyst David Harris is joined in conversation about the Hamas-triggered war with Israel. + News + Political + + + TVPG + + + + Defending Israel + David Harris with Shahar Azani + Lifelong Jewish frontline activist and JBS strategic analyst David Harris shares his perspectives of the Hamas-triggered war with Israel. + News + Political + + + TVPG + + + + 92nd Street Y + Jonathan Sacks on Extremism + Rabbi Lord Jonathan Sacks, former Chief Rabbi of the UK and author of. + Religious + + + TVG + + + + Rabbi Sharon Brous + We've Lost So Much + In her remarks on Shabbat following the October 7th attacks, IKAR's Rabbi Sharon Brous speaks of Jewish existential loneliness, collective sorrow, solidarity, and the Jewish values that should guide people during this tragic time. + Religious + + + + Srugim + Five modern Orthodox singles look for love in Jerusalem as they get ever-nearer to the age of 30. + + Ohad Knoller + Amos Tamam + Yael Sharoni + + Drama + + + + ILTV News Sunday + ILTV English Language News from Israel. + Specials + + + + ILTV: Insider + Specials + + + TVPG + + + + The Quad + Bearing Witness: Kibbutz Be'eri + Fleur Hassan-Nahoum (Deputy Mayor of Jerusalem), Ashira Solomon (political moderator) and Emily Schrader (journalist/activist) visit an Israeli Kibbutz that was massacred, and analyze the disturbing range of global responses to the murder of Jews. + Regular + + + + Defending Israel + David Harris with Danny Ayalon + Longtime Jewish frontline activist and JBS strategic analyst David Harris is joined in conversation about the Hamas-triggered war with Israel. + News + Political + + + TVPG + + + + Defending Israel + David Harris with Shahar Azani + Lifelong Jewish frontline activist and JBS strategic analyst David Harris shares his perspectives of the Hamas-triggered war with Israel. + News + Political + + + TVPG + + + + 92nd Street Y + Jonathan Sacks on Extremism + Rabbi Lord Jonathan Sacks, former Chief Rabbi of the UK and author of. + Religious + + + TVG + + + + ILTV News Sunday + ILTV English Language News from Israel. + Specials + + + + ILTV: Insider + Specials + + + TVPG + + + + Witness + The Stermer Family + Mr. and Mrs. Stermer and their six children miraculously survived living underground for the majority of the war despite the deficit of food and water. + Regular + + + TVPG + + + + Rabbi Sharon Brous + We've Lost So Much + In her remarks on Shabbat following the October 7th attacks, IKAR's Rabbi Sharon Brous speaks of Jewish existential loneliness, collective sorrow, solidarity, and the Jewish values that should guide people during this tragic time. + Religious + + + + Srugim + Five modern Orthodox singles look for love in Jerusalem as they get ever-nearer to the age of 30. + + Ohad Knoller + Amos Tamam + Yael Sharoni + + Drama + + + + ILTV News Sunday + ILTV English Language News from Israel. + Specials + + + + Harmony Yoga + Kripalu Yoga Sessions + Join trained occupational therapist Carol Shwidock as she leads another of her Kripalu Yoga sessions at her Stamford Studio that helps one stretch, breathe and relax in true Shalom (Harmony) with oneself and one's world. + Regular + + + TVPG + + + + Israel at War + Rabbi Buchdahl + Rabbi Buchdahl describes the new beginning that is happening for Israel as the light was separated from the dark on October 7th, and reminds her congregation of the power of words and truth, and how silence can enable evil and chaos. + News + + + + Rabbi Hirsch + Hamas Brutality + Rabbi Hirsch looks to the Torah for reasons yet to believe in humanity's righteousness, even while contemplating the unfathomable brutality of October 7th. + Religious + + + + ILTV News Sunday + ILTV English Language News from Israel. + Specials + + + + ILTV: Insider + Specials + + + TVPG + + + + The Aleph Bet + Lesson 7 + Learn Hebrew letters Samech, Gimmel, Yud and Daled. + Religious + Instructional + + + TVG + + + + The Aleph Bet + Lesson 8 + Hebrew letters Pay, Fay and Final Fay are introduced, along with the correct pronunciation of the word for a festive Jewish holiday. + Religious + Instructional + + + TVG + + + + Witness + The Stermer Family + Mr. and Mrs. Stermer and their six children miraculously survived living underground for the majority of the war despite the deficit of food and water. + Regular + + + TVPG + + + + Israel at War + Aaron David Miller and Robert Siegel + 50 years after the YK War, Israel is under unprecedented siege; Middle East Analyst Aaron David Miller and former NPR host Robert Siegel discuss what happened, where things stand and how and when this war might end, in a program of Moment Magazine. + News + + + + ILTV News Sunday + ILTV English Language News from Israel. + Specials + + + + ILTV: Insider + Specials + + + TVPG + + + + The Quad + Bearing Witness: Kibbutz Be'eri + Fleur Hassan-Nahoum (Deputy Mayor of Jerusalem), Ashira Solomon (political moderator) and Emily Schrader (journalist/activist) visit an Israeli Kibbutz that was massacred, and analyze the disturbing range of global responses to the murder of Jews. + Regular + + + + Defending Israel + David Harris with Danny Ayalon + Longtime Jewish frontline activist and JBS strategic analyst David Harris is joined in conversation about the Hamas-triggered war with Israel. + News + Political + + + TVPG + + + + Defending Israel + David Harris with Shahar Azani + Lifelong Jewish frontline activist and JBS strategic analyst David Harris shares his perspectives of the Hamas-triggered war with Israel. + News + Political + + + TVPG + + + + L'Chayim + Ehud Diskin + Ehud Diskin, a 7th generation Jerusalemite who served as an IDF commander during the Yom Kippur War and is now a successful businessman, talks about his career and life philosophy. + Talk Shows + Religious + + + TVG + + + + Shalom Kids + Fins and Scales + Young Yoni Katz learns about kosher and non-kosher foods in the children's book. + Variety + + + TVG + + + + Shalom Kids + Joseph Who Loved the Sabbath + A poor tenant farmer who reveres the Sabbath comes to own the lands. + Variety + + + TVG + + + + 92nd Street Y + Jonathan Sacks on Extremism + Rabbi Lord Jonathan Sacks, former Chief Rabbi of the UK and author of. + Religious + + + TVG + + + + ILTV and JBS News + JBS presents ILTV English Language News from Israel and the JBS News Update with JBS anchor Teisha Bader, with stories of Jewish interest in America, Israel and around the world. + News + + + TVPG + + + + Good Week Israel + A look into the stories, people, cultural sights and events that make up Israeli life. + News Magazine + + + TVPG + + + + Israel at War + Shahar Azani + Information and in-depth discussion on the Israel-Hamas war. + News + + + + Hampton Authors + Meryl Ain Author of Shadows We Carry + Author Meryl Ain discusses and reads excerpts from her new novel,. + Religious + + + + In the Spotlight + Spiked Antisemitism on Campus + At this most charged time for students on college campuses, Abigail Pogrebin speaks with Hillel directors Uri Cohen (Yale), Jenna Citron Schwab (Queens College) and Michael Simon (Northwestern). + Regular + + + TVPG + + + + L'Chayim + One of the longest running Jewish series on television. + Talk Shows + Religious + + + TVG + + + + Jewish Cinema + Yaron Zilberman + Israeli director Yaron Zilberman discusses his film. + Documentary + Performing Arts + + + TVG + + + + ILTV and JBS News + JBS presents ILTV English Language News from Israel and the JBS News Update with JBS anchor Teisha Bader, with stories of Jewish interest in America, Israel and around the world. + News + + + TVPG + + + + Good Week Israel + A look into the stories, people, cultural sights and events that make up Israeli life. + News Magazine + + + TVPG + + + + L'Chayim + Israelis Fight BDS + American-born Israelis Josh Malchman and Kayla Dulin, who each served in the IDF as Lone Soldiers (with no family in Israel) and who are visiting the U.S. to combat BDS on college campuses, discuss their personal journeys and feelings for Israel. + Talk Shows + Religious + + + TVG + + + + L'Chayim + Israelis Fight BDS + American-born Israelis Josh Malchman and Kayla Dulin, who each served in the IDF as Lone Soldiers (with no family in Israel) and who are visiting the U.S. to combat BDS on college campuses, discuss their personal journeys and feelings for Israel. + Talk Shows + Religious + + + TVG + + + + Hampton Authors + Meryl Ain Author of Shadows We Carry + Author Meryl Ain discusses and reads excerpts from her new novel,. + Religious + + + + In the Spotlight + Spiked Antisemitism on Campus + At this most charged time for students on college campuses, Abigail Pogrebin speaks with Hillel directors Uri Cohen (Yale), Jenna Citron Schwab (Queens College) and Michael Simon (Northwestern). + Regular + + + TVPG + + + + ILTV and JBS News + JBS presents ILTV English Language News from Israel and the JBS News Update with JBS anchor Teisha Bader, with stories of Jewish interest in America, Israel and around the world. + News + + + TVPG + + + + Good Week Israel + A look into the stories, people, cultural sights and events that make up Israeli life. + News Magazine + + + TVPG + + + + 92nd Street Y + Jonathan Sacks on Extremism + Rabbi Lord Jonathan Sacks, former Chief Rabbi of the UK and author of. + Religious + + + TVG + + + + Defending Israel + David Harris with Ron Prosor + Israel's world-renowned ambassador to Germany, Ron Prosor, joins David Harris to discuss the Hamas-triggered war against Israel, Berlin's response, and threats to Jewish life in Germany. + News + Political + + + TVPG + + + + Jewish Cinema + Yaron Zilberman + Israeli director Yaron Zilberman discusses his film. + Documentary + Performing Arts + + + TVG + + + + ILTV and JBS News + JBS presents ILTV English Language News from Israel and the JBS News Update with JBS anchor Teisha Bader, with stories of Jewish interest in America, Israel and around the world. + News + + + TVPG + + + + Harmony Yoga + Kripalu Yoga Sessions + Join trained occupational therapist Carol Shwidock as she leads another of her Kripalu Yoga sessions at her Stamford Studio that helps one stretch, breathe and relax in true Shalom (Harmony) with oneself and one's world. + Regular + + + TVPG + + + + Shalom Kids + Joseph Who Loved the Sabbath + A poor tenant farmer who reveres the Sabbath comes to own the lands. + Variety + + + TVG + + + + Shalom Kids + Benjamin & the Goblet + Through the eyes of Benjamin, the story of how Joseph tests his brothers when they travel from Canaan to Egypt looking for food. + Variety + + + TVG + + + + ILTV and JBS News + JBS presents ILTV English Language News from Israel and the JBS News Update with JBS anchor Teisha Bader, with stories of Jewish interest in America, Israel and around the world. + News + + + TVPG + + + + Good Week Israel + A look into the stories, people, cultural sights and events that make up Israeli life. + News Magazine + + + TVPG + + + + Talmud Study + Three Oaths + Three Oaths, Aliyah, and the State Of Israel--on the commandments relating to making aliyah and living in Israel (based on Kesuvos 96a and 96b)--is presented by Rabbi Mordechai Becher on this edition of Shalom TV's Dimensions of the Daf. + Religious + + + TVG + + + + Talmud Study + Danger Warnings + Warnings about potential dangers (and an exploration of whether tragedies are in the hands of heaven or man) are examined in Put On a Sweater Or You'll Catch a Cold, based on Kesuvos Daf Lamed. + Religious + + + TVG + + + + Defending Israel + David Harris + Longtime Jewish frontline activist and JBS strategic analyst David Harris is joined in conversation about the Hamas-triggered war with Israel. + News + Political + + + TVPG + + + + Hampton Authors + Meryl Ain Author of Shadows We Carry + Author Meryl Ain discusses and reads excerpts from her new novel,. + Religious + + + + In the Spotlight + Campus Hillel + Abigail Pogrebin speaks with Hillel representatives Uri Cohen (Yale), Jenna Citron (Queens College) and hopefully Rabbi Gabe Greenberg (Upenn). + Regular + + + TVPG + + + + ILTV and JBS News + JBS presents ILTV English Language News from Israel and the JBS News Update with JBS anchor Teisha Bader, with stories of Jewish interest in America, Israel and around the world. + News + + + TVPG + + + + Good Week Israel + A look into the stories, people, cultural sights and events that make up Israeli life. + News Magazine + + + TVPG + + + + Jewish Film Festival + Berel Wein's Israel Journey: Jerusalem + A magical journey through the modern state of Israel, centered on the beauty, mystery, and spirituality of Jerusalem. + Religious + + + TVPG + + + + In the Spotlight + Elana Stein Hain + Abigail Pogrebin sits with Elana Stein Hain, Senior Fellow at the Shalom Hartman Institute of North America to discuss how text and teaching helps people in difficult times. + Regular + + + TVPG + + + + L'Chayim + Israelis Fight BDS + American-born Israelis Josh Malchman and Kayla Dulin, who each served in the IDF as Lone Soldiers (with no family in Israel) and who are visiting the U.S. to combat BDS on college campuses, discuss their personal journeys and feelings for Israel. + Talk Shows + Religious + + + TVG + + + + Shalom Kids + Benjamin & the Goblet + Through the eyes of Benjamin, the story of how Joseph tests his brothers when they travel from Canaan to Egypt looking for food. + Variety + + + TVG + + + + Talmud Study + Three Oaths + Three Oaths, Aliyah, and the State Of Israel--on the commandments relating to making aliyah and living in Israel (based on Kesuvos 96a and 96b)--is presented by Rabbi Mordechai Becher on this edition of Shalom TV's Dimensions of the Daf. + Religious + + + TVG + + + + Talmud Study + Danger Warnings + Warnings about potential dangers (and an exploration of whether tragedies are in the hands of heaven or man) are examined in Put On a Sweater Or You'll Catch a Cold, based on Kesuvos Daf Lamed. + Religious + + + TVG + + + + ILTV and JBS News + JBS presents ILTV English Language News from Israel and the JBS News Update with JBS anchor Teisha Bader, with stories of Jewish interest in America, Israel and around the world. + News + + + TVPG + + + + ILTV: Insider + Specials + + + TVPG + + + + Jewish Film Festival + Eagles Over Auschwitz + Compelling story of the historic flyover of Auschwitz-Birkenau by three Israeli F-15s. + Religious + + + + Jewish Cinema + Meaning of Hitler + Filmmakers Petra Epperlein and Michael Tucker discuss their film,. + Documentary + + + TVG + + + + Fighting Fascism Symposium + Fighting Fascism in Europe Part 2 + Panelists discuss how European Jews initially responded to Nazism, fascism and other right-wing movements, and examine how those responses evolved as Europe descended into war in 1939; part of a symposium from AJHS and CJH. + Regular + + + + L'Chayim + Eugene Aryeh Lebovitz + One of the longest running Jewish series on television. + Talk Shows + Religious + + + TVG + + + + Roosevelt, Wise & Holocaust + Holocaust scholar Rafael Medoff (. + Specials + + + TVPG + + + + ILTV and JBS News + JBS presents ILTV English Language News from Israel and the JBS News Update with JBS anchor Teisha Bader, with stories of Jewish interest in America, Israel and around the world. + News + + + TVPG + + + + ILTV: Insider + Specials + + + TVPG + + + + L'Chayim + Eugene Aryeh Lebovitz + One of the longest running Jewish series on television. + Talk Shows + Religious + + + TVG + + + + Fighting Fascism Symposium + Fighting Fascism in Europe Part 2 + Panelists discuss how European Jews initially responded to Nazism, fascism and other right-wing movements, and examine how those responses evolved as Europe descended into war in 1939; part of a symposium from AJHS and CJH. + Regular + + + + Roosevelt, Wise & Holocaust + Holocaust scholar Rafael Medoff (. + Specials + + + TVPG + + + + ILTV and JBS News + JBS presents ILTV English Language News from Israel and the JBS News Update with JBS anchor Teisha Bader, with stories of Jewish interest in America, Israel and around the world. + News + + + TVPG + + + + ILTV: Insider + Specials + + + TVPG + + + + The Quad + Bearing Witness: Kibbutz Be'eri + Fleur Hassan-Nahoum (Deputy Mayor of Jerusalem), Ashira Solomon (political moderator) and Emily Schrader (journalist/activist) visit an Israeli Kibbutz that was massacred, and analyze the disturbing range of global responses to the murder of Jews. + Regular + + + + In the Spotlight + Spiked Antisemitism on Campus + At this most charged time for students on college campuses, Abigail Pogrebin speaks with Hillel directors Uri Cohen (Yale), Jenna Citron Schwab (Queens College) and Michael Simon (Northwestern). + Regular + + + TVPG + + + + ILTV and JBS News + JBS presents ILTV English Language News from Israel and the JBS News Update with JBS anchor Teisha Bader, with stories of Jewish interest in America, Israel and around the world. + News + + + TVPG + + + + Harmony Yoga + Kripalu Yoga Sessions + Join trained occupational therapist Carol Shwidock as she leads another of her Kripalu Yoga sessions at her Stamford Studio that helps one stretch, breathe and relax in true Shalom (Harmony) with oneself and one's world. + Regular + + + TVPG + + + + Shalom Kids + Benjamin & the Goblet + Through the eyes of Benjamin, the story of how Joseph tests his brothers when they travel from Canaan to Egypt looking for food. + Variety + + + TVG + + + + Shalom Kids + The Littlest Pair + In a tale written by Sylvia Rouss with illustrations by Holly Hannon, two termites ultimately save Noah's Ark; winner of the National Jewish Book Award. + Variety + + + TVG + + + + ILTV and JBS News + JBS presents ILTV English Language News from Israel and the JBS News Update with JBS anchor Teisha Bader, with stories of Jewish interest in America, Israel and around the world. + News + + + TVPG + + + + ILTV: Insider + Specials + + + TVPG + + + + A Train Near Magdeburg + The true story of American GIs who liberated Holocaust survivors from a train deserted by the Nazis. + Specials + Documentary + + + TVPG + + + + Fighting Fascism Symposium + Fighting Fascism in Europe Part 2 + Panelists discuss how European Jews initially responded to Nazism, fascism and other right-wing movements, and examine how those responses evolved as Europe descended into war in 1939; part of a symposium from AJHS and CJH. + Regular + + + + Roosevelt, Wise & Holocaust + Holocaust scholar Rafael Medoff (. + Specials + + + TVPG + + + + ILTV and JBS News + JBS presents ILTV English Language News from Israel and the JBS News Update with JBS anchor Teisha Bader, with stories of Jewish interest in America, Israel and around the world. + News + + + TVPG + + + + ILTV: Insider + Specials + + + TVPG + + + + Hampton Authors + Meryl Ain Author of Shadows We Carry + Author Meryl Ain discusses and reads excerpts from her new novel,. + Religious + + + + Kristallnacht Commemoration + Rafael Medoff + Rafael Medoff, noted historian, author and lecturer, analyzes President Roosevelt's response to Kristallnacht and what the U.S. could have possibly done to help the Jews, during a commemoration from Iona University. + Regular + + + + Hannah Senesh z + Remembering Hannah Senesh z + A tribute to Hannah Senesh, a Jewish heroine who gave her life trying to save Hungarian Jews from Nazi Germany, executed November 7, 1944. + Regular + + + TVG + + + + L'Chayim + Eugene Aryeh Lebovitz + One of the longest running Jewish series on television. + Talk Shows + Religious + + + TVG + + + + The Quad + Bearing Witness: Kibbutz Be'eri + Fleur Hassan-Nahoum (Deputy Mayor of Jerusalem), Ashira Solomon (political moderator) and Emily Schrader (journalist/activist) visit an Israeli Kibbutz that was massacred, and analyze the disturbing range of global responses to the murder of Jews. + Regular + + + + Srugim + Five modern Orthodox singles look for love in Jerusalem as they get ever-nearer to the age of 30. + + Ohad Knoller + Amos Tamam + Yael Sharoni + + Drama + + + + Srugim + Staunch feminist Reut asks Amir to help her fix her bed; Yifat may have blown it with Natti by dating a pilot. + + Ohad Knoller + Amos Tamam + Yael Sharoni + + Drama + + + + ILTV and JBS News + JBS presents ILTV English Language News from Israel and the JBS News Update with JBS anchor Teisha Bader, with stories of Jewish interest in America, Israel and around the world. + News + + + TVPG + + + + Think Out Loud + Micah Halpern + Columnist and social and political commentator Micah Halpern; analysis of stories, op op-ed pieces and political cartoons in the news. + News + + + TVPG + + + + Silent Wings: The American Glider Pilots of World War II + Hal Holbrook examines the crucial role that gliders played in World War II offensives and follows the history of the glider from the race to master the sky to the beaches of Normandy and Germany's last stand. + + Walter Cronkite + Andy Rooney + + 2007 + Movies + War + + + + We Were There: Jewish Liberators of the Nazi Concentration Camps + Jewish-American soldiers describe the Holocaust. + Specials + Documentary + + + + Silent Wings: The American Glider Pilots of World War II + Hal Holbrook examines the crucial role that gliders played in World War II offensives and follows the history of the glider from the race to master the sky to the beaches of Normandy and Germany's last stand. + + Walter Cronkite + Andy Rooney + + 2007 + Movies + War + + + + We Were There: Jewish Liberators of the Nazi Concentration Camps + Jewish-American soldiers describe the Holocaust. + Specials + Documentary + + + + We Were There: Jewish Liberators of the Nazi Concentration Camps + Jewish-American soldiers describe the Holocaust. + Specials + Documentary + + + + The Word With Scott Rubin + Noah, People Are Talking + In Genesis 5:30-6:3, the curious long single life of Noah is no problem for the guests and panel to crack; Joe Rogan is the opener for comedian Lara Beitz and International Comic Tehran. + Religious + + + + Vision of the Bible + Samuel 1 9:1-9:5 -- Miraculous Birth, Service to God + Hannah gives birth to Samuel; the house of Eli is judged; the Philistines fight Israel and capture the Ark, but their people begin to die. + Religious + + + + Miracles & Meals with Joanne Caras + Israeli Chickpea Salad & Potato Puffs + The story of of Carol Wilner, whose mother Etta Hauptmann hid the 18 month old from the Nazis for two and a half years. + Food + + + TVG + + + + Feed Me Bubbe + Chicken Snitzel; Kash Varnishkes; Fish Bulbe + Chicken snitzel, kash varnishkes and fish bulbe. + Food + + + TVG + + + + Quick & Kosher + Pink-Rimmed Gefilte Fish, Avgolemono Soup, Sweet and Pungent Asian Roast, Potato Kugel, Red and Green Coleslaw. + Religious + Food + + + TVG + + + + Kosher Organic Ranchero + Barberi & Lavash + A trip to Silver City Resort to make Barberi and Lavash with roasted pepper quesadillas and griddled heirlooms. + Food + + + TVG + + + + Alive & Well + Ritz Carlton Spa + Author David Niven (. + Health + + + + Rhythm 'N Ruach + Shabbat Angels + Preparing for Shabbat; taking out a tambourine for today's class and some movement scarves; Hebrew Word of the Day: Challot or Challah Bread; Instrument of the Day: Kalimba/Thumb Piano. + Music + Religious + + + + Total Body Sculpt Plus + Extended Daily Workout + Gilad weaves the best of strength and circuit training, cardio bursts, kickboxing and martial arts into a routine that will work your whole body. + Health + + + TVG + + + + A New Way 2 Move + Exercise for seniors that can be done seated or standing. + Regular + + + TVG + + + + Israeli Krav Maga + Punches and Pushes + Israeli Krav Maga Expert Oren Mellul provides strategies when pushed and then compares defensive techniques among the different martial arts when facing punches. + Health + Sports + + + TVG + + + + Bible Stories for Kids! + The Story of Jonah + The story of how God sent Jonah to preach to the Nineveh. + Religious + Children + + + + Rhythm 'N Ruach + Shabbat Angels + Preparing for Shabbat; taking out a tambourine for today's class and some movement scarves; Hebrew Word of the Day: Challot or Challah Bread; Instrument of the Day: Kalimba/Thumb Piano. + Music + Religious + + + + Total Body Sculpt Plus + Extended Daily Workout + Gilad weaves the best of strength and circuit training, cardio bursts, kickboxing and martial arts into a routine that will work your whole body. + Health + + + TVG + + + + A New Way 2 Move + Exercise for seniors that can be done seated or standing. + Regular + + + TVG + + + + Stories of Love to the Rescue by Shriners Hospitals for Children® + Alec and Kaleb interview patients and their families, and how their lives have been changed because of the life-changing pediatric specialty care they received at Shriners Hospitals for Children®. + Paid Program + + + + Bible Stories for Kids! + The Story of Jonah + The story of how God sent Jonah to preach to the Nineveh. + Religious + Children + + + + Rhythm 'N Ruach + Shabbat Angels + Preparing for Shabbat; taking out a tambourine for today's class and some movement scarves; Hebrew Word of the Day: Challot or Challah Bread; Instrument of the Day: Kalimba/Thumb Piano. + Music + Religious + + + + Jewish American Artists + Painter Paul Resika + Painter Paul Resika has devoted himself to the exploration of light and color, and the synthesis of abstraction and representation; as a member of the American Academy of Arts & Letters, his works are found in major collections around the world. + Arts & Entertainment + + + + Mom: Confessions of a Male Orthodox Model + A music video journey of twelve original songs of Yisrael Lifschutz, a Male Orthodox Jewish Model. + Specials + Religious + + + + Beat the Devil + International swindlers are diverted from their sinister dealings when an explosion wrecks the ship they are aboard. + + Humphrey Bogart + Jennifer Jones + Gina Lollobrigida + + 1953 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Hollywood Idols + Mae West ... And the Men Who Knew Her + When censorship issues kept Mae West from film, she toured in stage shows, which became classics; clips include. + Biography + + + TVPG + + + + Fauda + Episode 2 + Tensions rise on both sides as Doron's team intensifies its hunt and Abu Samara hands Al Makdasi an ultimatum; Shirin faces tough questions. + + Lior Raz + Hisham Suliman + Shadi Mar'i + + Drama + + + TVMA + + + + Prisoners of War + Birthday + Talia breaks down while Nimrode is out partying; Uri and Nurit try to bridge their gap; Yussuf and Abdullah head out to handle an arms deal. + + Yoram Toledano + Ishai Golan + Assi Cohen + + Drama + History + + + TVMA + + + + Inside Prisoners of War + Haim, Iris & Hezi Shai + Host Brad Pomerance speaks with Gal Zaid (Dr. Haim Cohen) about wearing so many hats on the series, Sendi Bar (Iris) about her complex character, and author Ory Slonim about series consultant Hezi Shai, who was an actual Israeli prisoner of war. + Performing Arts + + + + ILTV News + Daily news from the State of Israel. + News + + + TVG + + + + ILTV Weekly Review + Weekly review of news items from Israel. + News + + + TVG + + + + Land of Israel: God's Story + Abraham Argues to Save Sodom + Visiting Nebi Yakin, where Abraham argued with G-d. In the floor of the ancient mosque, there are footsteps marking the location where Abraham stood. The site is a 2.5 hour walk from Hebron, the first place seen on the way to the Dead Sea Valley. + Regular + + + + Explore Israel + Exploring different aspects of Israel: history, landmarks, tourism, lifestyle, celebrities, politics and more. + Travel + News + + + + Air, Land and Sea + Turkey's Ancient Izmir + Venturing deep into Turkey's Izmir Province to explore the country's crown jewels, the ancient city of Ephesus and the home of the Virgin Mary, the mother of Jesus Christ. + Travel + + + TVG + + + + Unpacked: The History of Israel Explained + Unpacking the complexities of Judaism and Israel into bite-sized morsels. + Religious + + + + Land of Israel: God's Story + Abraham Argues to Save Sodom + Visiting Nebi Yakin, where Abraham argued with G-d. In the floor of the ancient mosque, there are footsteps marking the location where Abraham stood. The site is a 2.5 hour walk from Hebron, the first place seen on the way to the Dead Sea Valley. + Regular + + + + Explore Israel + Exploring different aspects of Israel: history, landmarks, tourism, lifestyle, celebrities, politics and more. + Travel + News + + + + Air, Land and Sea + Turkey's Ancient Izmir + Venturing deep into Turkey's Izmir Province to explore the country's crown jewels, the ancient city of Ephesus and the home of the Virgin Mary, the mother of Jesus Christ. + Travel + + + TVG + + + + Unpacked: The History of Israel Explained + Unpacking the complexities of Judaism and Israel into bite-sized morsels. + Religious + + + + ILTV News + Daily news from the State of Israel. + News + + + TVG + + + + Vision of the Bible + Samuel 1 9:6- 9:10 -- Israel Demands A King + The Philistines return the ark to Israel; Samuel urges Israel to serve only God, and they defeat the Philistines; Israel demands a king; God tells Samuel to anoint Saul as king. + Religious + + + + You Bet Your Life + Shoe + The secret word is shoe. + Game Shows + + + + The Jack Benny Program + Don's 27th Anniversary With Jack + Jack reminisces about how he discovered his announcer. + + Jack Benny + Eddie Anderson + Don Wilson + + Comedy + + + TVG + + + + Bonanza + The Mission + Hoss befriends a former Army scout (Henry Hull) who drinks to forget the massacre of his troop. + + Dan Blocker + + Drama + + + TVPG + + + + Annie Oakley + Annie Takes a Chance + Annie (Gail Davis) tries to reason with a vengeful gunman who has plans to murder a local judge. With Marshall Bradford, Douglas Kennedy. + + Gail Davis + Brad Johnson + Jimmy Hawkins + + Christmas + + + TVPG + + + + Stories of the Century + Bill Longley + A killer escapes from prison and tries to reunite with his girlfriend. + Regular + + + + Bodies in Motion With Gilad + Gilad Goes to Oahu's North Side + The areas of the day are buns, thighs, biceps, and abs. + Health + + + TVG + + + + Total Body Sculpt With Gilad + 6 Body Parts + Areas of the day are hips, thighs, buns, biceps, triceps and abs; with Nikki, Arthur, Danielle and Jim. + Health + Lifestyle + + + TVG + + + + Vitality 4 Life With Curtis Adams + Total Body Tai Chi + Workout program that everyone can do featuring total body Tai Chi at Morikami Japanese Gardens in Delray Beach, Florida; equipment needed: two dumbbells and a chair. + Health + + + + Israeli Krav Maga + Holds, Hugs and Grabs + Israeli Krav Maga expert Oren Mellul teaches defensive techniques for facing a hold, headlock, bear hug, or hand grab. + Health + Sports + + + TVG + + + + The J Report With Brad Pomerance + More Jewish Education + Investigating educational initiatives in the Jewish community. + Talk Shows + News Magazine + + + TVG + + + + Bodies in Motion With Gilad + Gilad Goes to Oahu's North Side + The areas of the day are buns, thighs, biceps, and abs. + Health + + + TVG + + + + Total Body Sculpt With Gilad + 6 Body Parts + Areas of the day are hips, thighs, buns, biceps, triceps and abs; with Nikki, Arthur, Danielle and Jim. + Health + Lifestyle + + + TVG + + + + Vitality 4 Life With Curtis Adams + Total Body Tai Chi + Workout program that everyone can do featuring total body Tai Chi at Morikami Japanese Gardens in Delray Beach, Florida; equipment needed: two dumbbells and a chair. + Health + + + + Israeli Krav Maga + Holds, Hugs and Grabs + Israeli Krav Maga expert Oren Mellul teaches defensive techniques for facing a hold, headlock, bear hug, or hand grab. + Health + Sports + + + TVG + + + + Unpacked: The History of Israel Explained + Baseball, Int'l Relations, Torah & More + Unpacking the stories behind Orthodox Jewish baseball players, the Cold War, U.S. aid to Israel, Israel Defense Forces Search & Rescue Unit 669, Torah tropes and the BRCA gene mutation. + Religious + + + + Bodies in Motion With Gilad + Gilad Goes to Oahu's North Side + The areas of the day are buns, thighs, biceps, and abs. + Health + + + TVG + + + + Vision of the Bible + Samuel 1 9:6- 9:10 -- Israel Demands A King + The Philistines return the ark to Israel; Samuel urges Israel to serve only God, and they defeat the Philistines; Israel demands a king; God tells Samuel to anoint Saul as king. + Religious + + + + Cruising Israel + Terrific Tel Aviv + From the nightlife to the high life in Tel Aviv: the Israeli city that never sleeps. + Travel + + + TVG + + + + Good Week Israel + A look into the stories, people, cultural sights and events that make up Israeli life. + News Magazine + + + TVPG + + + + Flavors of Israel + Tunisian Sandwich + Emanuelle makes a Tunisian Sandwich with Masterchef Winner Tom Aviv, while Natalie joins Chef and Holistic Health Coach Lil Aronin in the kitchen to cook up a vegetable lasagna and sushi salad. + Food + + + TVG + + + + Land of Israel: God's Story + Abraham Argues to Save Sodom + Visiting Nebi Yakin, where Abraham argued with G-d. In the floor of the ancient mosque, there are footsteps marking the location where Abraham stood. The site is a 2.5 hour walk from Hebron, the first place seen on the way to the Dead Sea Valley. + Regular + + + + The Goldbergs + What's in a Name + An argument occurs over the name for Elka's new grandchild. + + Gertrude Berg + Harold J. Stone + Arlene McQuade + + Sitcom + + + TVG + + + + The Soupy Sales Show + Comedy for all ages. + + Soupy Sales + + Performing Arts + + + + You Bet Your Life + Voice + The secret word is voice. + Game Shows + + + + The Jack Benny Program + The Tall Cowboy Sketch + Clint Walker teaches Jack to be a two-fisted he-man.Guests: Clint Walker.. + + Jack Benny + Eddie Anderson + Don Wilson + + Comedy + + + TVG + + + + The Lucy Show + Lucy Gets Trapped + Lucy feigns illness to have the day off to attend a department store sale. + + Lucille Ball + Gale Gordon + Mary Jane Croft + + Sitcom + + + TVG + + + + The Beverly Hillbillies + Getting Settled + Jed and his family are mistaken for a staff of crazy servants when they move into their new mansion. + + Buddy Ebsen + Irene Ryan + Donna Douglas + + Sitcom + + + TVG + + + + Annie Oakley + Annie and the Higher Court + Annie suspects foul play when a judge mysteriously postpones a medically necessary trip to hear a case. + + Gail Davis + Brad Johnson + Jimmy Hawkins + + Christmas + + + TVPG + + + + Stories of the Century + Black Bart + The man behind a string of stagecoach robberies has remained out of reach of company detectives Matt and Frankie, but reinforcements from the city help to crack the case. + + Jim Davis + Mary Castle + + Regular + + + + ILTV News + Daily news from the State of Israel. + News + + + TVG + + + + Bubbies Know Best + Sionne + Bubbies Bunny, Linda and S.J. select the perfect date for Sionne; Erin Davis hosts. + Reality TV + + + + Servant of the People + The president asks the Minister of Infrastructure to oversee mass road repairs; Sanin strives to muster up the courage to dismiss Sveta. + + Volodymyr Selenskyi + Stanislav Boklan + Natalya Sumskaya + + Sitcom + Comedy + + + TV14 + + + + Reviewish + La Brea; Free Guy; Queen of Meth + Boomer Jeffrey gives the most unexpected review of NBC's La Brea; Millennial Chelsea joins him to address the generation gap head-on with Ryan Reynolds' Free Guy, while the duo takes a serious turn with Discovery+'s Queen of Meth. + Talk Shows + Performing Arts + + + + Good Week Israel + The World Reacts to the Israeli-Hamas War + The Good Week Israel gang reports on organizations helping the Israeli community during wartime, French President Macron's visit to Israel, a survivor's account from the music festival massacre, and a letter of support from many of Hollywood's elite. + News Magazine + + + TVPG + + + + The Word With Scott Rubin + It's All in the Name + Looking at Genesis 2:19-2:25, the fun gets going when Psychiatrist & Author Scott Mendelson and Internationally Renowned Vocal Artist Stevvi Alexander bring it! If you were named Junior, enter at your own risk. + Religious + + + + Laughter in Paradise + Featuring comedians Happy Cole, Dave Pengelly, Dan St. Paul and Sonya White. + Comedy + + + + LMAO + Clark & Berman + Get ready to laugh out loud as veteran comedian Skip Clark takes the stage to tell it like it is; joining Skip is seasoned comedian Peter Berman, who has appeared on the Greg Kilborn Show, MTV, VH-1, and Star Search. + Comedy + + + + Servant of the People + The president asks the Minister of Infrastructure to oversee mass road repairs; Sanin strives to muster up the courage to dismiss Sveta. + + Volodymyr Selenskyi + Stanislav Boklan + Natalya Sumskaya + + Sitcom + Comedy + + + TV14 + + + + Reviewish + La Brea; Free Guy; Queen of Meth + Boomer Jeffrey gives the most unexpected review of NBC's La Brea; Millennial Chelsea joins him to address the generation gap head-on with Ryan Reynolds' Free Guy, while the duo takes a serious turn with Discovery+'s Queen of Meth. + Talk Shows + Performing Arts + + + + Good Week Israel + The World Reacts to the Israeli-Hamas War + The Good Week Israel gang reports on organizations helping the Israeli community during wartime, French President Macron's visit to Israel, a survivor's account from the music festival massacre, and a letter of support from many of Hollywood's elite. + News Magazine + + + TVPG + + + + The Word With Scott Rubin + It's All in the Name + Looking at Genesis 2:19-2:25, the fun gets going when Psychiatrist & Author Scott Mendelson and Internationally Renowned Vocal Artist Stevvi Alexander bring it! If you were named Junior, enter at your own risk. + Religious + + + + Laughter in Paradise + Featuring comedians Happy Cole, Dave Pengelly, Dan St. Paul and Sonya White. + Comedy + + + + LMAO + Clark & Berman + Get ready to laugh out loud as veteran comedian Skip Clark takes the stage to tell it like it is; joining Skip is seasoned comedian Peter Berman, who has appeared on the Greg Kilborn Show, MTV, VH-1, and Star Search. + Comedy + + + + ILTV News + Daily news from the State of Israel. + News + + + TVG + + + + Vision of the Bible + Samuel 1 9:11-9:14 -- History Teaches Us Lessons + Saul defeats the Ammonites and becomes King; Samuel teaches Israel their history, telling them to fear and serve God; Samuel warns Saul his kingdom will not last; Saul's son Jonathan fights and defeats the Philistines. + Religious + + + + You Bet Your Life + Skin + The secret word is skin. + Game Shows + + + + The Jack Benny Program + The comedian provides laughs with a series of guest stars. + + Eddie Anderson + Frank Nelson + Artie Auerbach + + Comedy + + + TVG + + + + Bonanza + Badge Without Honor + A Deputy U.S. Marshal arrives to escort a man to California to testify against a gang; guest Dan Duryea. + + Lorne Greene + Michael Landon + Dan Blocker + + Drama + + + TVPG + + + + Annie Oakley + Annie and the Higher Court + Annie suspects foul play when a judge mysteriously postpones a medically necessary trip to hear a case. + + Gail Davis + Brad Johnson + Jimmy Hawkins + + Christmas + + + TVPG + + + + Stories of the Century + Harry Tracy + Harry Tracy terrorized America's northwest at the end of the 19th century; Matt and a posse have corner the outlaw. + Regular + + + + Bodies in Motion: 30th Anniversary + Chest, Buns and Abs + Areas of the day are chest, buns and abs, with aerobics from Shark's Cove. + Regular + + + TVG + + + + Total Body Sculpt With Gilad + Thighs, Shoulders, Abs + Israeli Exercise Guru Gilad Janklowicz targets your outer thighs, shoulders and abs, joined by Arthur, Nikki, Danielle and Jim. + Health + Lifestyle + + + TVG + + + + A New Way 2 Move + Exercise for seniors that can be done seated or standing. + Regular + + + TVG + + + + Israeli Krav Maga + Multiples and Mistakes + Israeli Krav Maga Expert Oren Mellul provides defense techniques when facing multiple attackers and addresses common mistakes in self-defense. + Health + Sports + + + TVG + + + + Air, Land and Sea + The Jewish History of Magnificent Malta + Explore the history of one of the oldest Jewish communities in the world, Maltese Jewry, which historians believe began before the Common Era and continues to blossom into the 21st Century. Hosted by Brad Pomerance. + Travel + + + TVG + + + + Bodies in Motion: 30th Anniversary + Chest, Buns and Abs + Areas of the day are chest, buns and abs, with aerobics from Shark's Cove. + Regular + + + TVG + + + + Total Body Sculpt With Gilad + Thighs, Shoulders, Abs + Israeli Exercise Guru Gilad Janklowicz targets your outer thighs, shoulders and abs, joined by Arthur, Nikki, Danielle and Jim. + Health + Lifestyle + + + TVG + + + + A New Way 2 Move + Exercise for seniors that can be done seated or standing. + Regular + + + TVG + + + + Alive & Well + Krav Maga + Learning to defend yourself and stay in great shape with Israeli Karate, Krav Maga; getting rid of varicose veins; tofu key lime pie; Marcus Kowel; Dr. Robert Rey; Vivian Cannon; Jennifer Lopez; Dr. Celedonia Yu; Dr. Lorrie Klein. + Health + + + + Unpacked: The History of Israel Explained + Hamas, Border Wall & Normalization + Unpacking the history of the terrorist organization known as Hamas, the Israeli border wall, and recent normalization of relations between Israel and several Arab nations. + Religious + + + + Bodies in Motion: 30th Anniversary + Chest, Buns and Abs + Areas of the day are chest, buns and abs, with aerobics from Shark's Cove. + Regular + + + TVG + + + + Vision of the Bible + Samuel 1 9:11-9:14 -- History Teaches Us Lessons + Saul defeats the Ammonites and becomes King; Samuel teaches Israel their history, telling them to fear and serve God; Samuel warns Saul his kingdom will not last; Saul's son Jonathan fights and defeats the Philistines. + Religious + + + + Cruising Israel + Natalie & Max take us on a culinary tasting tour in Mahane Yehuda market, get pampered at the award winning spa at Hotel Yehuda and explorea biblical zoo. + Travel + + + TVG + + + + Good Week Israel + A look into the stories, people, cultural sights and events that make up Israeli life. + News Magazine + + + TVPG + + + + Israel in Style + Fashion correspondent Noa Bonne talks about the royal wedding; comic Cornelius; architect Ari Liberson discusses his work with recycled wood; makeup artist Camila Pinzon gives tips for warmer weather. + Fashion + + + TVG + + + + Explore Israel + Israel-Hamas War + Exploring the Israel-Hamas war with Australian Actor/Activist Nathaniel Buzolic. + Travel + News + + + + The Goldbergs + The Voice of Experience + Mr. Pincus, the proprietor of Pincus Pines, the family's Catskills vacation resort, suggests a business venture to Jake, but Molly, unhappy with the idea, conspires to halt the plan. + + Gertrude Berg + Harold J. Stone + Arlene McQuade + + Sitcom + + + TVG + + + + The Soupy Sales Show + Comedy for all ages. + + Soupy Sales + + Performing Arts + + + + You Bet Your Life + Groucho Marx hosts a question-and-answer game show. + Game Shows + + + + The Jack Benny Program + Dennis Day's Surprise Birthday Party + Jack wants to give Dennis a surprise birthday party. + + Jack Benny + Eddie Anderson + Don Wilson + + Comedy + + + TVG + + + + The George Burns and Gracie Allen Show + The Property Tax Assessor + A real-estate tax man speaks with Gracie; Gracie thinks she dented George's car. + + Hal March + Bea Benaderet + Bill Goodwin + + Sitcom + + + TVG + + + + I Married Joan + Clothes Budget + Brad and Joan disagree over how much she spends on clothes, so Brad devises a challenge. + + Joan Davis + Jim Backus + + Sitcom + + + + Life With Elizabeth + Collection Agency; Monster with Green Eyes; Good Neighbor Policy + An overdue bill concerns Elizabeth but she doesn't recall the purchase; Alvin admires an actress and Elizabeth becomes jealous; neighbors who are jingle writers run some by Alvin and Elizabeth. + + Betty White + Del Moore + + Sitcom + + + TVPG + + + + Date With the Angels + Catered Party + Vickie tries to impress clients with a dinner party. + + Betty White + Bill Williams + Burt Mustin + + Sitcom + + + TVPG + + + + ILTV News + Daily news from the State of Israel. + News + + + TVG + + + + Bubbies Know Best + The Bubbies Kibbit from Home + Bubbies Bunny, Linda and SJ get some words of wisdom from J Swipe Founder David Yarus, interview Actor and Yiddishist Eli Rosen from Netflix's Unorthodox and react to videos from your favorite reality television shows. + Reality TV + + + + The J Report With Brad Pomerance + Israel From the Sky + Host Brad Pomerance speaks with aerial photographer Donn Delson about his breath-taking photography of Israel from the sky; recent Dead Sea Scroll discoveries; the new Porto Holocaust Museum; the LA Jewish Symphony's Black Into White. + Talk Shows + News Magazine + + + TVG + + + + Land of Israel: God's Story + Abraham Argues to Save Sodom + Visiting Nebi Yakin, where Abraham argued with G-d. In the floor of the ancient mosque, there are footsteps marking the location where Abraham stood. The site is a 2.5 hour walk from Hebron, the first place seen on the way to the Dead Sea Valley. + Regular + + + + Stand With Us + Defeating BDS on Campus + Campus coordinators Johanna Wilder and Jennifer Halperin discuss the Boycott-Divest-Sanction efforts against Israel. + Local + + + TVG + + + + Insider + An inside look at Israeli politics, from the left, right and center with Israeli politicians, thought leaders and experts. + News + Political + + + + ILTV Weekly Review + Weekly review of news items from Israel. + News + + + TVG + + + + The J Report With Brad Pomerance + Israel From the Sky + Host Brad Pomerance speaks with aerial photographer Donn Delson about his breath-taking photography of Israel from the sky; recent Dead Sea Scroll discoveries; the new Porto Holocaust Museum; the LA Jewish Symphony's Black Into White. + Talk Shows + News Magazine + + + TVG + + + + Land of Israel: God's Story + Abraham Argues to Save Sodom + Visiting Nebi Yakin, where Abraham argued with G-d. In the floor of the ancient mosque, there are footsteps marking the location where Abraham stood. The site is a 2.5 hour walk from Hebron, the first place seen on the way to the Dead Sea Valley. + Regular + + + + Stand With Us + Defeating BDS on Campus + Campus coordinators Johanna Wilder and Jennifer Halperin discuss the Boycott-Divest-Sanction efforts against Israel. + Local + + + TVG + + + + Insider + An inside look at Israeli politics, from the left, right and center with Israeli politicians, thought leaders and experts. + News + Political + + + + ILTV Weekly Review + Weekly review of news items from Israel. + News + + + TVG + + + + ILTV News + Daily news from the State of Israel. + News + + + TVG + + + + Vision of the Bible + Samuel 1 9:15-9:17 -- David, New King of Israel + Israel defeats the Amalekites; Samuel announces the downfall of Saul; Saul repents but is no longer recognized as King; Samuel anoints David as King; the Philistines gather against Israel; David accepts Goliath challenge and defeats him. + Religious + + + + You Bet Your Life + Smile + The secret word is smile. + Game Shows + + + + The Jack Benny Program + Humphrey Bogart Show + Bob Crosby gets angry at Jack cutting his song; Don is upset because his commercial is to be cut; Detective Benny interrogates Baby Face Bogart about the murder of Blinky Mason. + + Jack Benny + + Comedy + + + TVG + + + + Bonanza + The Mill + A hired hand (Claude Akins) victimizes the Cartwrights' disabled neighbor (Harry Townes). + + Lorne Greene + Michael Landon + Dan Blocker + + Drama + + + TVG + + + + Annie Oakley + Powder Rock Stampede + Annie (Gail Davis) has hopes of acquiring a prime piece of land in a newly opened territory. With Douglas Kennedy, James Griffith. + + Gail Davis + Brad Johnson + Jimmy Hawkins + + Christmas + + + TVPG + + + + Stories of the Century + The Wild Bunch of Wyoming + Matt and Frankie follow Butch Cassidy to South America. + + Jim Davis + Mary Castle + + Regular + + + + Bodies in Motion With Gilad + Chest & Triceps at Rock Piles, Oahu + Join Gilad for a workout featuring chest, back and triceps at Rock Piles Beach on the North Shore. + Health + + + TVG + + + + Total Body Sculpt With Gilad + 4 Body Parts + Gilad Janklowicz shows you how to shape your thighs, triceps and back, and abs. + Health + Lifestyle + + + TVG + + + + Vitality 4 Life With Curtis Adams + Challenging Chair Workout + Exhilarating workout program that everyone can do featuring a challenging chair workout at Gulfstream Park in Hallandale Beach, FL; two dumbbells are needed. + Health + + + + Israeli Krav Maga + Krav Maga for Women + Israeli Krav Maga expert Oren Mellul offers Krav Maga defense techniques specifically for women. + Health + Sports + + + TVG + + + + The J Report With Brad Pomerance + Holocaust Education + Uncovering unique initiatives to educate the world about the Holocaust. + Talk Shows + News Magazine + + + TVG + + + + Bodies in Motion With Gilad + Chest & Triceps at Rock Piles, Oahu + Join Gilad for a workout featuring chest, back and triceps at Rock Piles Beach on the North Shore. + Health + + + TVG + + + + Total Body Sculpt With Gilad + 4 Body Parts + Gilad Janklowicz shows you how to shape your thighs, triceps and back, and abs. + Health + Lifestyle + + + TVG + + + + Vitality 4 Life With Curtis Adams + Challenging Chair Workout + Exhilarating workout program that everyone can do featuring a challenging chair workout at Gulfstream Park in Hallandale Beach, FL; two dumbbells are needed. + Health + + + + Israeli Krav Maga + Krav Maga for Women + Israeli Krav Maga expert Oren Mellul offers Krav Maga defense techniques specifically for women. + Health + Sports + + + TVG + + + + Unpacked: The History of Israel Explained + Ukraine + Unpacking centuries-old Jewish connections to the Ukraine and exploring the power of healthy disagreement and forgiveness. + Religious + + + + Bodies in Motion With Gilad + Chest & Triceps at Rock Piles, Oahu + Join Gilad for a workout featuring chest, back and triceps at Rock Piles Beach on the North Shore. + Health + + + TVG + + + + Vision of the Bible + Samuel 1 9:15-9:17 -- David, New King of Israel + Israel defeats the Amalekites; Samuel announces the downfall of Saul; Saul repents but is no longer recognized as King; Samuel anoints David as King; the Philistines gather against Israel; David accepts Goliath challenge and defeats him. + Religious + + + + Cruising Israel + Natalie and Max travel to the longest zipline in Israel, learn about the craft of balloon art, visit professional therapists specializing in ancient therapy and enjoy an Israeli brewery. + Travel + + + TVG + + + + Good Week Israel + A look into the stories, people, cultural sights and events that make up Israeli life. + News Magazine + + + TVPG + + + + Flavors of Israel + Natalie visits the kitchen of Lily Aronin to make healthy peanut butter cups and a smoothie bowl, while Emanuelle visits the kitchen of. + Food + + + TVG + + + + Friends of Israel + Mike Evans + Steven Paul, Jon Voight, and Pastors Phil and Tammy Hotsenpiller speak with Christian Zionist Leader Mike Evans, born to a Jewish mother and raised Christian, about his faith journey. + Religious + + + + The Goldbergs + The Landlord + When a new landlord takes over the Goldbergs' apartment building, Jake and Molly become advocates for the tenants and demand renovations. + + Gertrude Berg + Harold J. Stone + Arlene McQuade + + Sitcom + + + + The Soupy Sales Show + Civic Soupy + Soupy's American Revolution; Keep Our City Clean Day; exercise; new TV shows; Pookie; The Prince and the Papa. + + Soupy Sales + + Performing Arts + + + + You Bet Your Life + Water + This episode features pro golfer Jim Ferrier. + Game Shows + + + + The Jack Benny Program + Jack and the Crying Cab Driver + A cabbie becomes attached to Jack on the way to the airport. + + Jack Benny + Eddie Anderson + Don Wilson + + Comedy + + + TVG + + + + The Lucy Show + Lucy and the French Movie Star + Lucy is enchanted when Jacques Bergerac arrives at the bank to cash some checks. + + Lucille Ball + Gale Gordon + Roy Roberts + + Sitcom + + + TVG + + + + The Beverly Hillbillies + Meanwhile, Back at the Cabin + The Clampetts find that their mansion is a poor substitute for their mountain shack. + + Buddy Ebsen + Irene Ryan + Donna Douglas + + Sitcom + + + TVG + + + + Annie Oakley + Powder Rock Stampede + Annie (Gail Davis) has hopes of acquiring a prime piece of land in a newly opened territory. With Douglas Kennedy, James Griffith. + + Gail Davis + Brad Johnson + Jimmy Hawkins + + Christmas + + + TVPG + + + + Stories of the Century + Henry Plummer + Elected as mayor, an outlaw deputizes members of his gang. + + Jim Davis + Mary Castle + + Regular + + + + Immortal Songs + The true classic of the century is born again. The legendary classic which is reinterpreted by the best idol groups in Korea and their incredible singing skills, which were yet to be spotted. + Music + + + + Live Your Own Life + Lee Hyosim, a breadwinner of her family, has spent her whole life sacrificing for her family, who leeches off of her. She finally decides to seek her own happiness and sets out to lead an independent life. + Drama + + + + Doctor Prisoner + An ace doctor in a university hospital is wrongfully accused of a medical malpractice incident and gets ousted from the hospital. He then applies to work at a prison. + + Namgoong Min + Kwon Na-ra + Kim Byung-chul + + Drama + + + + Doctor Prisoner + An ace doctor in a university hospital is wrongfully accused of a medical malpractice incident and gets ousted from the hospital. He then applies to work at a prison. + + Namgoong Min + Kwon Na-ra + Kim Byung-chul + + Drama + + + + Doctor Prisoner + An ace doctor in a university hospital is wrongfully accused of a medical malpractice incident and gets ousted from the hospital. He then applies to work at a prison. + + Namgoong Min + Kwon Na-ra + Kim Byung-chul + + Drama + + + + Doctor Prisoner + An ace doctor in a university hospital is wrongfully accused of a medical malpractice incident and gets ousted from the hospital. He then applies to work at a prison. + + Namgoong Min + Kwon Na-ra + Kim Byung-chul + + Drama + + + + The Seasons + Performing Arts + Music + + + + The Seasons + Performing Arts + Music + + + + Elegant Empire + + Kim Jin-woo + Han Ji-wan + Kang Yul + + Drama + + + + Elegant Empire + + Kim Jin-woo + Han Ji-wan + Kang Yul + + Drama + + + + Elegant Empire + + Kim Jin-woo + Han Ji-wan + Kang Yul + + Drama + + + + Elegant Empire + + Kim Jin-woo + Han Ji-wan + Kang Yul + + Drama + + + + Elegant Empire + + Kim Jin-woo + Han Ji-wan + Kang Yul + + Drama + + + + Music Bank K Chart + Introduce K-pop songs, along with the most popular music rankings and the latest music information every week. + Music + Performing Arts + + + + Music Bank + The latest Korean songs and music information of various genres such as K-POP, ballad, and hip-hop are delivered on various stages by singers. + Music + + + + Live Your Own Life + Lee Hyosim, a breadwinner of her family, has spent her whole life sacrificing for her family, who leeches off of her. She finally decides to seek her own happiness and sets out to lead an independent life. + Drama + + + + Immortal Songs + The true classic of the century is born again. The legendary classic which is reinterpreted by the best idol groups in Korea and their incredible singing skills, which were yet to be spotted. + Music + + + + Perfume + + Shin Sung-rok + Ko Won-hee + Ha Jaesook + + Drama + + + + Perfume + + Shin Sung-rok + Ko Won-hee + Ha Jaesook + + Drama + + + + Perfume + + Shin Sung-rok + Ko Won-hee + Ha Jaesook + + Drama + + + + Perfume + + Shin Sung-rok + Ko Won-hee + Ha Jaesook + + Drama + + + + Live Your Own Life + Lee Hyosim, a breadwinner of her family, has spent her whole life sacrificing for her family, who leeches off of her. She finally decides to seek her own happiness and sets out to lead an independent life. + Drama + + + + Music Bank K Chart + Introduce K-pop songs, along with the most popular music rankings and the latest music information every week. + Music + Performing Arts + + + + Music Bank + The latest Korean songs and music information of various genres such as K-POP, ballad, and hip-hop are delivered on various stages by singers. + Music + + + + The Seasons + Performing Arts + Music + + + + Spy + Former North Korean informant is suddenly assigned a mission to recruit her son, a genius NIS agent. + + Kim Jae-joong + Bae Jong-ok + Yu Oh-seong + + Drama + + + + Spy + Former North Korean informant is suddenly assigned a mission to recruit her son, a genius NIS agent. + + Kim Jae-joong + Bae Jong-ok + Yu Oh-seong + + Drama + + + + Docu ON + Documentary + + + + GET - Global Entertainment Today + Performing Arts + News + + + + 2 Days and 1 Night 4 + Celebrities explore places of interest in South Korea. + Reality TV + + + + The Return of Superman + Superman fathers are left alone with their children and start taking care of them alone without their wives. + Reality TV + Performing Arts + + + + The Seasons + Performing Arts + Music + + + + Live Your Own Life + Lee Hyosim, a breadwinner of her family, has spent her whole life sacrificing for her family, who leeches off of her. She finally decides to seek her own happiness and sets out to lead an independent life. + Drama + + + + Perfume + + Shin Sung-rok + Ko Won-hee + Ha Jaesook + + Drama + + + + Perfume + + Shin Sung-rok + Ko Won-hee + Ha Jaesook + + Drama + + + + Perfume + + Shin Sung-rok + Ko Won-hee + Ha Jaesook + + Drama + + + + Perfume + + Shin Sung-rok + Ko Won-hee + Ha Jaesook + + Drama + + + + Music Bank K Chart + Introduce K-pop songs, along with the most popular music rankings and the latest music information every week. + Music + Performing Arts + + + + Immortal Songs + The true classic of the century is born again. The legendary classic which is reinterpreted by the best idol groups in Korea and their incredible singing skills, which were yet to be spotted. + Music + + + + 2 Days and 1 Night 4 + Celebrities explore places of interest in South Korea. + Reality TV + + + + The Return of Superman + Superman fathers are left alone with their children and start taking care of them alone without their wives. + Reality TV + Performing Arts + + + + The Seasons + Performing Arts + Music + + + + Live Your Own Life + Lee Hyosim, a breadwinner of her family, has spent her whole life sacrificing for her family, who leeches off of her. She finally decides to seek her own happiness and sets out to lead an independent life. + Drama + + + + Beat Coin + Performing Arts + + + + It's Beautiful Now + A tired grandfather is fed up with his three grandsons' bachelor lives and wants them to get married already. He offers up a challenge, whoever gets married first will win a highly coveted million-dollar apartment. + + Yoon Shi-yoon + Bae Da-bin + Oh Min-seok + + Drama + + + + It's Beautiful Now + A tired grandfather is fed up with his three grandsons' bachelor lives and wants them to get married already. He offers up a challenge, whoever gets married first will win a highly coveted million-dollar apartment. + + Yoon Shi-yoon + Bae Da-bin + Oh Min-seok + + Drama + + + + 2 Days and 1 Night 4 + Celebrities explore places of interest in South Korea. + Reality TV + + + + The Return of Superman + Superman fathers are left alone with their children and start taking care of them alone without their wives. + Reality TV + Performing Arts + + + + Live Your Own Life + Lee Hyosim, a breadwinner of her family, has spent her whole life sacrificing for her family, who leeches off of her. She finally decides to seek her own happiness and sets out to lead an independent life. + Drama + + + + Live Your Own Life + Lee Hyosim, a breadwinner of her family, has spent her whole life sacrificing for her family, who leeches off of her. She finally decides to seek her own happiness and sets out to lead an independent life. + Drama + + + + KBS World News Today + Delivering international news, Korea's domestic news, and news to the world in English. Also delivering news that can be introduced about Korea by reporting places or interviews with people related to Korean traditions, trends and show business. + News + + + + My Neighbor Charles + The real stories of foreigners who challenge themselves to survive in Korean society. + Variety + + + + Black Knight: The Man Who Guards Me + A pure-hearted businessman faces danger for the woman he loves. + + Kim Rae-won + Shin Se-kyung + Seo Ji-hye + + Drama + + + + The Return of Superman Encore + The star's 48 hour childcare challenge begins. It's not perfect yet, but the stars grow gradually as a parent with their children and memories like treasures are being made. + Reality TV + Performing Arts + + + + Unpredictable Family + Jungae and Donggu acrimoniously divorced decades ago over a misunderstanding; after forming new lives apart, they find themselves reunited as in-laws through their children. + + Nam Sang-ji + Lee Do-gyeom + Gang Dabin + + Drama + + + + Elegant Empire + + Kim Jin-woo + Han Ji-wan + Kang Yul + + Drama + + + + Beat Coin + Performing Arts + + + + 2021 Drama Special + A program introduces a short drama produced with various well-plotted stories. + Drama + + + + Love in the Moonlight + A crown prince falls in love with his political eunuch, who is really a woman posing as a man. + + Park Bo-gum + Kim Yoo-jung + Jinyeong + + Regular + + + + Love in the Moonlight + A crown prince falls in love with his political eunuch, who is really a woman posing as a man. + + Park Bo-gum + Kim Yoo-jung + Jinyeong + + Regular + + + + 2 Days and 1 Night 4 + Celebrities explore places of interest in South Korea. + Reality TV + + + + Unpredictable Family + Jungae and Donggu acrimoniously divorced decades ago over a misunderstanding; after forming new lives apart, they find themselves reunited as in-laws through their children. + + Nam Sang-ji + Lee Do-gyeom + Gang Dabin + + Drama + + + + Elegant Empire + + Kim Jin-woo + Han Ji-wan + Kang Yul + + Drama + + + + My Neighbor Charles + The real stories of foreigners who challenge themselves to survive in Korean society. + Variety + + + + 2021 Drama Special + A program introduces a short drama produced with various well-plotted stories. + Drama + + + + Vengeance of the Bride + + Park Ha-na + Son Chang-min + Kang Ji-seop + + Drama + + + + Love in the Moonlight + A crown prince falls in love with his political eunuch, who is really a woman posing as a man. + + Park Bo-gum + Kim Yoo-jung + Jinyeong + + Regular + + + + Unpredictable Family + Jungae and Donggu acrimoniously divorced decades ago over a misunderstanding; after forming new lives apart, they find themselves reunited as in-laws through their children. + + Nam Sang-ji + Lee Do-gyeom + Gang Dabin + + Drama + + + + Elegant Empire + + Kim Jin-woo + Han Ji-wan + Kang Yul + + Drama + + + + Vengeance of the Bride + + Park Ha-na + Son Chang-min + Kang Ji-seop + + Drama + + + + Drama Special + KBS presents single episode dramas. + Drama + + + + 2021 Drama Special + A program introduces a short drama produced with various well-plotted stories. + Drama + + + + Beat Coin + Performing Arts + + + + Love in the Moonlight + A crown prince falls in love with his political eunuch, who is really a woman posing as a man. + + Park Bo-gum + Kim Yoo-jung + Jinyeong + + Regular + + + + KBS World News Today + Delivering international news, Korea's domestic news, and news to the world in English. Also delivering news that can be introduced about Korea by reporting places or interviews with people related to Korean traditions, trends and show business. + News + + + + GET - Global Entertainment Today + Performing Arts + News + + + + GET - Global Entertainment Today + Performing Arts + News + + + + Black Knight: The Man Who Guards Me + A pure-hearted businessman faces danger for the woman he loves. + + Kim Rae-won + Shin Se-kyung + Seo Ji-hye + + Drama + + + + The Return of Superman Encore + The star's 48 hour childcare challenge begins. It's not perfect yet, but the stars grow gradually as a parent with their children and memories like treasures are being made. + Reality TV + Performing Arts + + + + Unpredictable Family + Jungae and Donggu acrimoniously divorced decades ago over a misunderstanding; after forming new lives apart, they find themselves reunited as in-laws through their children. + + Nam Sang-ji + Lee Do-gyeom + Gang Dabin + + Drama + + + + Elegant Empire + + Kim Jin-woo + Han Ji-wan + Kang Yul + + Drama + + + + Doctor Prisoner + An ace doctor in a university hospital is wrongfully accused of a medical malpractice incident and gets ousted from the hospital. He then applies to work at a prison. + + Namgoong Min + Kwon Na-ra + Kim Byung-chul + + Drama + + + + Doctor Prisoner + An ace doctor in a university hospital is wrongfully accused of a medical malpractice incident and gets ousted from the hospital. He then applies to work at a prison. + + Namgoong Min + Kwon Na-ra + Kim Byung-chul + + Drama + + + + Dogs are Incredible + Korea's Comedy King, Lee Gyenggyu, who's also known for his love for dogs and the country's most famous dog expert, Kang Hyungwook, team up to study how the humans and the pets live in peace and harmony. + Reality TV + Performing Arts + + + + The Seasons + Performing Arts + Music + + + + Love in the Moonlight + A crown prince falls in love with his political eunuch, who is really a woman posing as a man. + + Park Bo-gum + Kim Yoo-jung + Jinyeong + + Regular + + + + Love in the Moonlight + A crown prince falls in love with his political eunuch, who is really a woman posing as a man. + + Park Bo-gum + Kim Yoo-jung + Jinyeong + + Regular + + + + Drama Special + KBS presents single episode dramas. + Drama + + + + Taste of Seoul + Regular + + + + Unpredictable Family + Jungae and Donggu acrimoniously divorced decades ago over a misunderstanding; after forming new lives apart, they find themselves reunited as in-laws through their children. + + Nam Sang-ji + Lee Do-gyeom + Gang Dabin + + Drama + + + + Elegant Empire + + Kim Jin-woo + Han Ji-wan + Kang Yul + + Drama + + + + Doctor Prisoner + An ace doctor in a university hospital is wrongfully accused of a medical malpractice incident and gets ousted from the hospital. He then applies to work at a prison. + + Namgoong Min + Kwon Na-ra + Kim Byung-chul + + Drama + + + + Doctor Prisoner + An ace doctor in a university hospital is wrongfully accused of a medical malpractice incident and gets ousted from the hospital. He then applies to work at a prison. + + Namgoong Min + Kwon Na-ra + Kim Byung-chul + + Drama + + + + Dogs are Incredible + Korea's Comedy King, Lee Gyenggyu, who's also known for his love for dogs and the country's most famous dog expert, Kang Hyungwook, team up to study how the humans and the pets live in peace and harmony. + Reality TV + Performing Arts + + + + The Seasons + Performing Arts + Music + + + + Vengeance of the Bride + + Park Ha-na + Son Chang-min + Kang Ji-seop + + Drama + + + + Love in the Moonlight + A crown prince falls in love with his political eunuch, who is really a woman posing as a man. + + Park Bo-gum + Kim Yoo-jung + Jinyeong + + Regular + + + + Unpredictable Family + Jungae and Donggu acrimoniously divorced decades ago over a misunderstanding; after forming new lives apart, they find themselves reunited as in-laws through their children. + + Nam Sang-ji + Lee Do-gyeom + Gang Dabin + + Drama + + + + Elegant Empire + + Kim Jin-woo + Han Ji-wan + Kang Yul + + Drama + + + + Vengeance of the Bride + + Park Ha-na + Son Chang-min + Kang Ji-seop + + Drama + + + + Live Your Own Life + Lee Hyosim, a breadwinner of her family, has spent her whole life sacrificing for her family, who leeches off of her. She finally decides to seek her own happiness and sets out to lead an independent life. + Drama + + + + Dogs are Incredible + Korea's Comedy King, Lee Gyenggyu, who's also known for his love for dogs and the country's most famous dog expert, Kang Hyungwook, team up to study how the humans and the pets live in peace and harmony. + Reality TV + Performing Arts + + + + Cast Eleven + Drama + + + + Doctor Prisoner + An ace doctor in a university hospital is wrongfully accused of a medical malpractice incident and gets ousted from the hospital. He then applies to work at a prison. + + Namgoong Min + Kwon Na-ra + Kim Byung-chul + + Drama + + + + Doctor Prisoner + An ace doctor in a university hospital is wrongfully accused of a medical malpractice incident and gets ousted from the hospital. He then applies to work at a prison. + + Namgoong Min + Kwon Na-ra + Kim Byung-chul + + Drama + + + + Love in the Moonlight + A crown prince falls in love with his political eunuch, who is really a woman posing as a man. + + Park Bo-gum + Kim Yoo-jung + Jinyeong + + Regular + + + + KBS World News Today + Delivering international news, Korea's domestic news, and news to the world in English. Also delivering news that can be introduced about Korea by reporting places or interviews with people related to Korean traditions, trends and show business. + News + + + + It's Beautiful Now + A tired grandfather is fed up with his three grandsons' bachelor lives and wants them to get married already. He offers up a challenge, whoever gets married first will win a highly coveted million-dollar apartment. + + Yoon Shi-yoon + Bae Da-bin + Oh Min-seok + + Drama + + + + It's Beautiful Now + A tired grandfather is fed up with his three grandsons' bachelor lives and wants them to get married already. He offers up a challenge, whoever gets married first will win a highly coveted million-dollar apartment. + + Yoon Shi-yoon + Bae Da-bin + Oh Min-seok + + Drama + + + + On Story + On Writing Dark Winds With Graham Roland + Creator and showrunner Graham Roland talks about the development ofGuests: Graham Roland.. + Performing Arts + + + TVPG + + + + The New Divas: Live in Vienna + Five singers from around the world perform classical, jazz, pop, opera and musical theater selections in Vienna. + Specials + Performing Arts + + + + Rick Steves' Festive Europe + Festive European culture includes the Bastille Day celebration in France, royal pageantry in London and running with the bulls in Pamplona, Spain. + Specials + Travel + + + TVG + + + + American Experience + The War on Disco + Exploring the cultural movement that aided disco's rise and the backlash that tried to destroy it. + Documentary + + + TV14 + + + + Frontline + McConnell, the GOP & the Court + Republican Sen. Mitch McConnell's rise and role in transforming the Supreme Court and U.S. politics. + News Magazine + Documentary + + + + POV + Fire Through Dry Grass + Nursing home residents use poetry and art to describe the danger and imprisonment they feel during COVID-19's lockdown. + Documentary + Biography + + + TV14 + + + + Independent Lens + Duty Free + After a 75-year-old is fired from her job, her son takes her on a series of bucket list adventures. + Documentary + Performing Arts + + + TVPG + + + + Classic Arts Showcase + Music + + + + Trails to Oishii Tokyo + Japanese food available at Tokyo's iconic market, from seafood to produce. + Travel + + + TVG + + + + Journeys in Japan + English-speaking visitors travel the length of Japan, exploring the local culture, meeting the people and offering travel hints rarely found in guidebooks. + Travel + + + TVG + + + + Cycle Around Japan Highlights + Discovering Japan by bicycle, exploring a side of Japan not found in guidebooks. + Travel + + + TVG + + + + Family Travel With Colleen Kelly + Cannery Row in Monterey, California + Exploring historic Cannery Row in Monterey, Calif., including its seafood scene; kayaking and surrey rides; a tour of a sardine factory. + Travel + + + TVG + + + + Darwin's Amazing Animals + From Leader to Outcast: Cheetah, Kenya + Explore the amazing stories of animals in Africa, the Americas and Asia, including Japan. + + Jeff Manning + + Animals + Documentary + + + + The Cat in the Hat Knows a Lot About That! + Wrapper's Delight; Dive Swim Scoop + Sally and Nick try to wrap a present for their moms; Nick and Sally try to get a frog out of their shallow pool. + + Martin Short + Alexa Torrington + Jacob Ewaniuk + + Animated + Children + + + TVY + + + + SciGirls + River Rescuers + In Minnesota, Jenny, Hope, Dani and Amelia collect data to track plastic pollution in the Mississippi River. + Children + Instructional + + + TVG + + + + Work It Out Wombats! + Snout and About; Zadie's Shell Shuffle + Zadie and Malik retrace their steps to locate Zeke's beloved stuffy Snout; JunJun's song helps Zadie fix Mr. E's shell garden. + + Ian Ho + Rain Janjua + Mia SwamiNathan + + Animated + Children + + + TVY + + + + Cyberchase + Ecohaven Ooze + The CyberSquad needs to build a. + Animated + Children + + + TVY + + + + Biz Kid$ + Budgeting Basics + Controlling spending and expenses. + Children + Instructional + + + TVG + + + + Moments to Remember (My Music Presents) + Frankie Laine, Julius LaRosa, the Four Lads, the Four Freshmen and Herb Reed's Platters are a few of the musicians who perform their hits of the late 1950s and early '60s. + Specials + Music + + + TVG + + + + The New Divas: Live in Vienna + Five singers from around the world perform classical, jazz, pop, opera and musical theater selections in Vienna. + Specials + Performing Arts + + + + Rick Steves' Festive Europe + Festive European culture includes the Bastille Day celebration in France, royal pageantry in London and running with the bulls in Pamplona, Spain. + Specials + Travel + + + TVG + + + + Mannheim Steamroller 30/40 Live + Songs from the Mannheim Steamroller Christmas annual tour include. + Specials + Music + + + TVG + + + + Artbound + Angel City Press: L.A. Through The Pages + Angel City Press has influenced the public's understanding and appreciation of Los Angeles. + Arts & Entertainment + + + TVPG + + + + UNSEEN: How We're Failing Parent Caregivers & Why It Matters + Parent caregivers of children or adults with disabilities or complex medical needs deal with barriers and challenges, including isolation and adverse health and financial outcomes. + Specials + Documentary + + + TVG + + + + Wild Rivers With Tillie + Grand Canyon Connections + A trip on the Colorado River through the Grand Canyon, exploring wild rapids, pristine waterfalls and ancient ruins. + Documentary + Travel + + + TVG + + + + Wild Rivers With Tillie + Snake River Dams -- Coming Down? + Efforts to save the Snake River's sockeye salmon and the movement to remove the river's four dams. + Documentary + Travel + + + TVG + + + + The Good Road + San Juan, Puerto Rico: The Art of Community + Puerto Rico's Old City, (Viejo San Juan); sculptor Ana Rosa Rivera; touring Contrafuertes; artist Freddy Mercado; filmmaker Carla Cavina. + Documentary + + + TVPG + + + + The Good Road + Cocoa Beach, Florida -- The Overview Effect + Educators, entrepreneurs and rocket scientists bring a new generation of people into the cosmos. + Documentary + + + TVPG + + + + Martin Clunes: Islands of the Pacific + Galapagos + Martin explores the legendary Galapagos Islands, getting up close to sea lions, iguanas, tortoises, penguins, finches and baby sharks; he also joins conservation expeditions, and visits a nun, an organic farm and the site of a murder mystery. + Travel + + + TVPG + + + + Secrets of the Dead + Death in Britannia + A skeleton dating back to the Roman occupation of Britain provokes further study after scientists see an iron nail driven through its heel bone, possibly indicating the person was crucified. + History + Documentary + + + TV14 + + + + NOVA + Ancient Earth: Humans + How Earth gave rise to humans, starting with the asteroid strike that wiped out the dinosaurs, the spread of primates across the planet and geologic events that made the human species possible. + Science + + + TVPG + + + + Martin Clunes: Islands of the Pacific + Galapagos + Martin explores the legendary Galapagos Islands, getting up close to sea lions, iguanas, tortoises, penguins, finches and baby sharks; he also joins conservation expeditions, and visits a nun, an organic farm and the site of a murder mystery. + Travel + + + TVPG + + + + Secrets of the Dead + Death in Britannia + A skeleton dating back to the Roman occupation of Britain provokes further study after scientists see an iron nail driven through its heel bone, possibly indicating the person was crucified. + History + Documentary + + + TV14 + + + + NOVA + Ancient Earth: Humans + How Earth gave rise to humans, starting with the asteroid strike that wiped out the dinosaurs, the spread of primates across the planet and geologic events that made the human species possible. + Science + + + TVPG + + + + Classic Arts Showcase + Music + + + + Energy Switch + What's New in Geothermal? + Geothermal energy's ability to heat homes, generate electricity and possibly provide industrial heat. + Talk Shows + + + TVG + + + + GZERO World With Ian Bremmer + What's Iran's Next Move? + Karim Sadjadpour, Carnegie Endowment for International Peace, discusses Iran's next moves regarding Israel's war in Gaza.Guests: Karim Sadjadpour.. + Regular + + + TVPG + + + + Newsroom Tokyo + NHK World's newest program provides comprehensive coverage of events in Japan and Asia. + News + + + + Democracy Now! + An independent news program features international journalists, grassroots leaders, independent analysts, as well as ordinary people directly affected by world events and U.S. policy. + Political + News + + + + Amanpour and Company + Christiane Amanpour leads discussions about world issues and interviews with global leaders. + Regular + + + + Rick Steves' Europe + Rick Steves' Europe: Art of the High Middle Ages + Gothic cathedrals with colorful altarpieces, lacy stonework and radiant stained glass; art celebrating worldly pleasure; artists like Giotto mastered realism in Italy. + Travel + + + TVPG + + + + Curious Traveler + Curious Ghent + Who stole the Ghent Altarpiece; Prinsenhof; Ghent dragon; why Ghent is famous for its lace; the importance of St. Peter's Abbey. + Travel + + + TVG + + + + Maria's Portuguese Table + Provincetown, Massachusetts + Exploring Provincetown, Mass., the first landing place for the Pilgrims; cooking a traditional fish dish at the Mayflower Cafe; a painting lesson wtih a Portuguese American artist; the weekend Portuguese Festival celebration. + Travel + Food + + + TVG + + + + New Scandinavian Cooking + Southern Ways + A visit to Cardamom in Kristiansand includes making ice cream using liquid nitrogen; picking the first potatoes of summer; wild garlic from the Norwegian forest; using trees to flavor a long-cooked pork neck. + Food + + + TVG + + + + Pati's Mexican Table + Maya Today + A visit to Cenote Xocempich; horchata; sikil pak; fresh herbs masa corn tortillas. + Food + + + TVG + + + + Wine First + Millahue Valley, Chile + Vik Winery's terroir and wine production in the Chilean countryside. + Travel + Food + + + TVPG + + + + Finding Your Roots With Henry Louis Gates, Jr. + Anchormen + Journalists Jim Acosta and Van Jones learn about their ancestors.Guests: Jim Acosta, Van Jones.. + Documentary + + + TVPG + + + + Native America + Warrior Spirit + Warrior traditions support athletes and connect people to combat, games and glory across Native America. + Documentary + + + TV14 + + + + Native America + Nature to Nations + The rise of great American nations, from monarchies to democracies; lost cities in Mexico; a temple in Peru; a potlatch ceremony in the Pacific Northwest; shell beads in upstate New York. + Documentary + + + TVPG + + + + PBS NewsHour + Co-anchors Amna Nawaz and Geoff Bennett and correspondents offer in-depth analysis of current events. + News + + + + NHK Newsline + World events, business news and weather forecasts; broadcast in English. + News + + + + DW News + Presenting a round-up of the most recent news and developments from across the world. + News + + + + BBC News America + Live news program produced out of BBC's Washington, D.C. bureau; host Sumi Somaskanda. + News + + + + France 24 + Live feed from leading 24/7 international news and current affairs channel based in Paris, providing key information to understand ever-more complex global events through in-depth analysis and an international lens. + News + Political + + + TVPG + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + Rick Steves' Europe + Rick Steves' Europe: Art of the High Middle Ages + Gothic cathedrals with colorful altarpieces, lacy stonework and radiant stained glass; art celebrating worldly pleasure; artists like Giotto mastered realism in Italy. + Travel + + + TVPG + + + + California's Gold + Golden Knights + Visiting places and events of interest in California. + Travel + + + TVG + + + + California's Gold + World War II + German floating crane; 1942 attack on Ellwood's oil fields. + Travel + + + TVG + + + + Death in Paradise + The team investigates the murder of a renowned calypso singer's husband. + + Ralf Little + Don Warrington + Shantol Jackson + + Drama + + + TVPG + + + + Father Brown + The Serpent Within + Sullivan's dream of leaving Kembleford is ruined when he is arrested for receiving stolen goods. + + Mark Williams + Emer Kenny + Jack Deam + + Drama + + + TVPG + + + + The Misadventures of Romesh Ranganathan + Bosnia and Herzegovina + Rom meets the Bosnian who claims to have discovered the world's largest pyramid. + Travel + Documentary + + + TVPG + + + + Amanpour and Company + Christiane Amanpour leads discussions about world issues and interviews with global leaders. + Regular + + + + Death in Paradise + The team investigates the murder of a renowned calypso singer's husband. + + Ralf Little + Don Warrington + Shantol Jackson + + Drama + + + TVPG + + + + Father Brown + The Serpent Within + Sullivan's dream of leaving Kembleford is ruined when he is arrested for receiving stolen goods. + + Mark Williams + Emer Kenny + Jack Deam + + Drama + + + TVPG + + + + The Misadventures of Romesh Ranganathan + Bosnia and Herzegovina + Rom meets the Bosnian who claims to have discovered the world's largest pyramid. + Travel + Documentary + + + TVPG + + + + Classic Arts Showcase + Music + + + + The School of Greatness With Lewis Howes + Evy Poumpouras + Former Secret Service agent and author Evy Poumpouras offers insights into how to master relationships and how to become an effective communicator.Guests: Evy Poumpouras.. + Instructional + Lifestyle + + + TVPG + + + + Your Fantastic Mind + Glioblastoma; Proteomics; Brain Science In Cows + Research in the fight against glioblastoma includes a clinical trial teaching the brain's immune system to fight the disease; researchers delve into the world of proteomics; neuroscientist Greg Berns. + Science + Health + + + TVG + + + + Newsroom Tokyo + NHK World's newest program provides comprehensive coverage of events in Japan and Asia. + News + + + + Democracy Now! + An independent news program features international journalists, grassroots leaders, independent analysts, as well as ordinary people directly affected by world events and U.S. policy. + Political + News + + + + Amanpour and Company + Christiane Amanpour leads discussions about world issues and interviews with global leaders. + Regular + + + + Rick Steves' Europe + Austrian and Italian Alps + Zugspitze; touring Innsbruck, Austria; a Tyrolean village festival; crossing the Alps into Italy to tour a medieval castle and explore the rugged Dolomite Mountains. + Travel + + + TVG + + + + Samantha Brown's Places to Love + The Southern Finger Lakes, NY + The Corning Museum of Glass in Corning, N.Y.; Corning's Gaffer District; master engraver Max Erlacher's Steuben glass collection shop; Betty-Kay Bake Shop in Bath, N.Y.; cemetery tour; Glenn H. Curtiss Museum; Dr. Konstantin Frank Winery. + Travel + + + TVG + + + + Steven Raichlen's Planet Barbecue + Global Melting Pot + East-West shrimp cocktail with Thai spices and smoked jalapenos; chipotle ribs with chocolate and drunken salsa;. + Food + Instructional + + + TVG + + + + The Dooky Chase Kitchen: Leah's Legacy + Madisonville + Okra gumbo; farm-raised catfish and grits; a bloody mary featuring garden fresh ingredients. + Food + Instructional + + + TVG + + + + Cook's Country + Biscuits and Chicken + Butter and lard biscuits; the debate between lard and shortening; the benefits of full-sized and mini food processors; mimosa fried chicken. + Food + + + TVG + + + + Home Diagnosis + Keeping the Cold at Bay: Heating Methods at Home + Home heating methods including forced air ducted and ductless systems, boilers and radiant heat; the basics of thermodynamics; the installation of a high performance HVAC system and the beginnings of airflow and pressure testing. + Home + Instructional + + + TVG + + + + Celebrity Antiques Road Trip + David Gower & Nick Hancock + Cricket legend David Gower and TV presenter Nick Hancock tour Hampshire to find curios and collectibles to take to auction in Sidcup; Charlie Ross and Phil Serrell ably assist.Guests: Nick Hancock, David Gower.. + Hobbies & Crafts + Arts & Entertainment + + + TVPG + + + + Antiques Roadshow + Vintage Chattanooga Hour 2 + A New York Celtics Barnstorming poster circa 1935; a 1940 Disney Fantasia animation cell; a Newcomb College vase circa 1908. + Hobbies & Crafts + Arts & Entertainment + + + TVG + + + + The Warrior Tradition + The untold story of Native American service in the U.S. military. + Specials + Documentary + + + TV14 + + + + PBS NewsHour + Co-anchors Amna Nawaz and Geoff Bennett and correspondents offer in-depth analysis of current events. + News + + + + NHK Newsline + World events, business news and weather forecasts; broadcast in English. + News + + + + DW News + Presenting a round-up of the most recent news and developments from across the world. + News + + + + BBC News America + Live news program produced out of BBC's Washington, D.C. bureau; host Sumi Somaskanda. + News + + + + France 24 + Live feed from leading 24/7 international news and current affairs channel based in Paris, providing key information to understand ever-more complex global events through in-depth analysis and an international lens. + News + Political + + + TVPG + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + Rick Steves' Europe + Austrian and Italian Alps + Zugspitze; touring Innsbruck, Austria; a Tyrolean village festival; crossing the Alps into Italy to tour a medieval castle and explore the rugged Dolomite Mountains. + Travel + + + TVG + + + + California's Gold + Aircraft Carriers + Two aircraft carriers that now serve as museums are the USS Midway in San Diego and the USS Hornet in Alameda, Calif. + Travel + + + TVG + + + + Waterfront Cities of the World + Seoul + A look at the city of Seoul, Korea. + Documentary + + + + Traces + Another deadly explosion occurs; Sarah and McKinven's growing attachment has consequences, as Kathy suspects Jean the Dean of having a secret to hide. + + Molly Windsor + Morayo Akandé + Carly Anderson + + Drama + + + TV14 + + + + Astrid + Golem + When an entrepreneur dies, the crime scene suggests a creature from Jewish mysticism is the cause. + + Sara Mortensen + Lola Dewaere + Benoit Michel + + Regular + + + TV14 + + + + Amanpour and Company + Christiane Amanpour leads discussions about world issues and interviews with global leaders. + Regular + + + + Waterfront Cities of the World + Seoul + A look at the city of Seoul, Korea. + Documentary + + + + Traces + Another deadly explosion occurs; Sarah and McKinven's growing attachment has consequences, as Kathy suspects Jean the Dean of having a secret to hide. + + Molly Windsor + Morayo Akandé + Carly Anderson + + Drama + + + TV14 + + + + Astrid + Golem + When an entrepreneur dies, the crime scene suggests a creature from Jewish mysticism is the cause. + + Sara Mortensen + Lola Dewaere + Benoit Michel + + Regular + + + TV14 + + + + Classic Arts Showcase + Music + + + + Common Ground With Jane Whitney + Can This Planet (Still) Be Saved? + A panel discussion about climate change includes Jane Fonda, Varshini Prakash, Al Roker, Bill Nye and David Wallace-Wells.Guests: Jane Fonda, Varshini Prakash, Al Roker, Bill Nye, David Wallace-Wells.. + News + + + TVG + + + + Newsroom Tokyo + NHK World's newest program provides comprehensive coverage of events in Japan and Asia. + News + + + + Democracy Now! + An independent news program features international journalists, grassroots leaders, independent analysts, as well as ordinary people directly affected by world events and U.S. policy. + Political + News + + + + Amanpour and Company + Christiane Amanpour leads discussions about world issues and interviews with global leaders. + Regular + + + + Rick Steves' Europe + Swiss Alps + Switzerland's mountains and culture; scenic train rides; exploring glaciers; making cheese the old fashioned way. + Travel + + + TVG + + + + Bare Feet With Mickela Mallozzi + Latinx Communities + Celebrating diverse LatinX cultures with Brazilian samba reggae and Argentinian tango. + Travel + Performing Arts + + + TVG + + + + Sara's Weeknight Meals + Essential Pastas of Rome + A street food tour in Rome; pastries and Roman deep fried rice balls; baked penne with prosciutto and fontina. + Food + + + TVG + + + + Baseball + The Capital of Baseball + Interviews and film document memorable moments of New York City baseball, including the Brooklyn Dodgers' first World Series win. + Sports + Baseball + + + TVPG + + + + Baseball + A Whole New Ball Game + The popularity of football and the union organization transform baseball in the end of the 1960s. + Sports + Baseball + + + TVPG + + + + PBS NewsHour + Co-anchors Amna Nawaz and Geoff Bennett and correspondents offer in-depth analysis of current events. + News + + + + Life Outreach International + James and Betty Robison. + Religious + + + + Sue Thomas F.B.Eye + Into Thin Air + The FBI searches for a young deaf girl who has been kidnapped. + + Deanne Bray + Yannick Bisson + Jack Jessop + + Drama + + + TVPG + + + + First Century Foundations + The biblical roots of Christianity. + Religious + + + + Pacific Garden Mission + Guests of Pacific Garden Mission share their unscripted testimonies and experiences at the Mission. + Religious + + + TVG + + + + CURE America + Promoting the message of faith, freedom and personal responsibility. + Talk Shows + Local + + + + BillyGraham.TV + Religious services emphasizing the urgency of the gospel message. + Religious + + + TVG + + + + The Listening Road + The story of a man's cycling journey across the US meeting people and sharing God's love. + Documentary + Travel + + + TVG + + + + Israel: The Prophetic Connection + Join Rev. Dr. John Tweedie through images, on-site teaching and interviews. + Religious + + + + The Way of the Master + With the aim of sharing the word of God in an effective and inoffensive way, the Gospel is shared with teenagers, intellectuals, non-believers, those from other religions, and the self-righteous. + Religious + + + TVPG + + + + Daily Faith With Philip Cameron + Philip Cameron discusses the unclaimed promise of God and God's covenant for household salvation. + Religious + + + + Believers Among Us + A Light Shines Through It + A young homeless mother is forced to make a desperate decision. + Drama + Religious + + + + Divine Renovations + Religious + + + + Pamela's Prayer + Young Pamela Bucklin feels cheated when her Christian father insists on a very high standard of purity until the day she marries. + + Serena Orrego + Rick Scheideman + Ted Kuenz + + Specials + Drama + + + + Love Worth Finding + Dr. Adrian Rogers teaches from Memphis, Tennessee. + Religious + + + TVG + + + + In Touch With Dr. Charles Stanley + In Touch Ministries is the broadcast teaching ministry of Dr. Charles Stanley. + Religious + + + TVG + + + + Elevation with Steven Furtick + Focusing on the strength of God in our everyday struggles. + Religious + + + + D. James Kennedy Ministries Presents: Truths That Transform + Topical discussions, feature stories, incisive commentary, and timely excerpts from the powerful messages of D. James Kennedy. + Religious + + + + Pastor Robert Morris Ministries + Passing the Prophetic Test + Dream to Destiny episode 6: It is explained that when God gives us a prophetic word, it is submitted, tested, and held by the Word of God. + Religious + + + TVG + + + + Michael Youssef + Leading The Way ministries and Dr. Michael Youssef share the Gospel across the globe, equipping believers to grow into a deeper walk with Christ. + Religious + + + TVG + + + + Turning Point With Dr. David Jeremiah + Dr. David Jeremiah's goal is to deliver the unchanging Word of God to an ever-changing world. + Religious + + + TVG + + + + Dr. Robert Jeffress: Pathway to Victory + The teaching ministry of Dr. Robert Jeffress. + Religious + + + TVG + + + + Higher Aim With Dr. Curt Dodd + Dr. Curt Dodd seeks to proclaim the gospel globally to encourage transforming encounters. + Religious + + + TVG + + + + In Touch With Dr. Charles Stanley + In Touch Ministries is the broadcast teaching ministry of Dr. Charles Stanley. + Religious + + + TVG + + + + The Christian Worship Hour + Proclaiming the Gospel to the world, ministering to the lonely, the elderly and the shut-ins and nurturing the saved in their daily walk with the Lord. + Religious + + + + Worship Anew + Scripture readings, inspiring messages, and hymns of the church. + Religious + + + + The Pastor's Study + Setting people free by preaching the truth of Christ for the salvation of the lost and for the correction and edification of the Church. + Religious + Local + + + TVG + + + + Israel: The Prophetic Connection + Join Rev. Dr. John Tweedie through images, on-site teaching and interviews. + Religious + + + + Fred Price + A look at seeking and saving the lost. + Religious + + + TVG + + + + Dorinda + Dorinda Clark. + Religious + + + + Elevation with Steven Furtick + Focusing on the strength of God in our everyday struggles. + Religious + + + + Gaither Gospel Hour + Gospel artists perform with the Gaither Vocal Band. + Music + Performing Arts + + + TVG + + + + Life Outreach International + James and Betty Robison. + Religious + + + + Touched by the Truth + Bishop Brandon B. Porter of Greater Community Temple COGIC. + Religious + + + + The Kingdom of Heaven + Religious + + + + Dr. Robert Jeffress: Pathway to Victory + The teaching ministry of Dr. Robert Jeffress. + Religious + + + TVG + + + + D. James Kennedy Ministries Presents: Truths That Transform + Topical discussions, feature stories, incisive commentary, and timely excerpts from the powerful messages of D. James Kennedy. + Religious + + + + Manna-Fest With Perry Stone + In-depth study of the word of God. + Religious + + + TVG + + + + RHEMA Praise + Bringing hope, help and healing to the world! Pastor Kenneth W. Hagin and Lynette Hagin. + Religious + + + + The King Is Coming + Bible prophecy. + Religious + + + + Prophecy USA + Minister Rick Pearson discusses the hidden mysteries of America's role in Bible prophecy. + Religious + + + TVG + + + + Christ in Prophecy + A focus on the prophetic significance of national and international events. Hosted by Tim Moore and Nathan Jones. + Religious + + + + Israel: The Prophetic Connection + Join Rev. Dr. John Tweedie through images, on-site teaching and interviews. + Religious + + + + The Endtime Show + Host Dave Robbins demonstrates how the latest breaking news stories fit into Bible prophecy. + Religious + + + + D. James Kennedy Ministries Presents: Truths That Transform + Topical discussions, feature stories, incisive commentary, and timely excerpts from the powerful messages of D. James Kennedy. + Religious + + + + A Journey Through the Bible + Bible teacher and gospel music artist Dr. Jimmie Snow studies the Book of Revelation. + Religious + + + + Word Alive + Pastors Dr. Bob and Margaret Rodgers from Evangel World Prayer Center. + Religious + + + TVG + + + + Patterns of Evidence + An investigation through the Bible, presenting evidence of its historical credibility and the accuracy of its transmission down through the centuries. + Religious + + + + Real Stories with Christ + A young pastor encounters various situations in his church and shows that God is always in control. + + Josiah Warren + + Drama + Religious + + + + God First + Upper Room Church of God in Christ is a church compelling mankind to have a biblical world view by putting God first. + Talk Shows + Religious + + + + Divine Renovations + Religious + + + + Stem Cell Activators with Joseph Christiano ND + A naturopathic doctor and certified nutritional counselor, author, motivational speaker, and wellness coach. + Religious + + + TVG + + + + CBN Newswatch + News with a Christian perspective. + Religious + News Magazine + + + + Joseph Prince + Joseph Prince is a leading voice in proclaiming the gospel around the world through his ministry. + Religious + + + + Ask the Pastor + Pastors offer biblical answers to viewer submitted questions. + Religious + + + + The Global Lane + Looking beyond the headlines of world events for truth and insights. + Local + + + + Through the Bible With Les Feldick + Religious programming. + Religious + + + TVG + + + + Damon Davis + Damon Davis spotlights socially responsible leaders, authors and entertainers. + Religious + + + TVG + + + + TCT Today + Garth and Tina Coonce interview speakers, singers and ministry leaders from around the world. + Talk Shows + Religious + + + + Joyce Meyer Enjoying Everyday Life + Author and Bible teacher Joyce Meyer shares encouragement to help people enjoy daily life. + Religious + + + TVG + + + + Creflo Dollar + Dr. Creflo Dollar ministers to people from all backgrounds with hopes for change; Creflo helps viewers find ways to renew their faith, mind, and spirit; Creflo and his wife Taffi share their vision for everyone to understand God's love and promises. + Religious + + + TVG + + + + Through the Bible With Les Feldick + Religious programming. + Religious + + + TVG + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + TVG + + + + Dr. Robert Jeffress: Pathway to Victory + The teaching ministry of Dr. Robert Jeffress. + Religious + + + TVG + + + + The 700 Club + News and commentary, interviews, feature stories and Christian ministry. + Talk Shows + Religious + + + + Andrew Wommack: Gospel Truth + Living in the Balance of Grace and Faith + Wommack covers the truth of grace through faith and the rest of God, and how believers move into that, leaving the stress and the struggle to perform behind. + Religious + + + TVG + + + + Turning Point With Dr. David Jeremiah + Dr. David Jeremiah's goal is to deliver the unchanging Word of God to an ever-changing world. + Religious + + + TVG + + + + Life Today With James Robison + James and Betty Robison host guests who speak on a variety of topics, offering hope and help. + Talk Shows + Religious + + + TVG + + + + Life Outreach International + James and Betty Robison. + Religious + + + + The Global Lane + Looking beyond the headlines of world events for truth and insights. + Local + + + + CBN Newswatch + News with a Christian perspective. + Religious + News Magazine + + + + TCT Today + Garth and Tina Coonce interview speakers, singers and ministry leaders from around the world. + Talk Shows + Religious + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + TVG + + + + Rick Renner + Rick Renner's in-depth Bible teachings, using the Greek text, help listeners gain new insight from God's Word. + Religious + + + + Ask the Pastor + Pastors offer biblical answers to viewer submitted questions. + Religious + + + + Through the Bible With Les Feldick + Religious programming. + Religious + + + TVG + + + + Today with Marilyn & Sarah + Inspirational messages and anointed Bible teachings from Marilyn Hickey and Sarah Bowling of Marilyn Hickey Ministries. + Religious + + + + Babbie's House + Host Babbie Mason discusses issues that hit home. + Religious + Talk Shows + + + TVG + + + + Sue Thomas F.B.Eye + To Grandmother's House We Go + The FBI devises a plan to expose a crooked construction company. + + Deanne Bray + Yannick Bisson + Jack Jessop + + Drama + + + TVPG + + + + Unapologetic With Julia Jeffress Sadler + New author and reality TV show star Julia Jeffress Sadler uses her counseling, training, biblical foundation, pastor's daughter upbringing and sense of humor to provide a fresh perspective on cultural topics. + Talk Shows + Performing Arts + + + + Creflo Dollar + Dr. Creflo Dollar ministers to people from all backgrounds with hopes for change; Creflo helps viewers find ways to renew their faith, mind, and spirit; Creflo and his wife Taffi share their vision for everyone to understand God's love and promises. + Religious + + + TVG + + + + Divine Renovations + Religious + + + + Pastor Robert Morris Ministries + Pastor Robert Morris from Gateway Church in Dallas-Fort Worth shares insights from God's word to help one in everyday life. + Religious + + + TVG + + + + TCT Today + Garth and Tina Coonce interview speakers, singers and ministry leaders from around the world. + Talk Shows + Religious + + + + Joyce Meyer Enjoying Everyday Life + Author and Bible teacher Joyce Meyer shares encouragement to help people enjoy daily life. + Religious + + + TVG + + + + Israel: The Prophetic Connection + Join Rev. Dr. John Tweedie through images, on-site teaching and interviews. + Religious + + + + Life Today With James Robison + James and Betty Robison host guests who speak on a variety of topics, offering hope and help. + Talk Shows + Religious + + + TVG + + + + Dr. Robert Jeffress: Pathway to Victory + The teaching ministry of Dr. Robert Jeffress. + Religious + + + TVG + + + + The Jewish Jesus With Rabbi Schneider + Messianic Rabbi Kirt Schneider, a Jewish believer in Jesus, shares his insights into the Old and New Testaments, provides guidance on prayer and delivers the Word of God. + Religious + + + TVG + + + + Andrew Wommack: Gospel Truth + Living in the Balance of Grace and Faith + Wommack covers the truth of grace through faith and the rest of God, and how believers move into that, leaving the stress and the struggle to perform behind. + Religious + + + TVG + + + + Ask the Pastor + Pastors offer biblical answers to viewer submitted questions. + Religious + + + + CrossTalk + Dr. Randy Weiss communicates messages about the Jewish origins of the Christian faith and modern issues in Israel. + Religious + + + + TCT Today + Garth and Tina Coonce interview speakers, singers and ministry leaders from around the world. + Talk Shows + Religious + + + + Solomon's Porch + Mary Hendricks runs a small-town Christian bookstore that grants customers God-given solutions for their problems. + Miniseries + + + + Stem Cell Activators with Joseph Christiano ND + A naturopathic doctor and certified nutritional counselor, author, motivational speaker, and wellness coach. + Religious + + + TVG + + + + CBN Newswatch + News with a Christian perspective. + Religious + News Magazine + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + TVG + + + + Ask the Pastor + Pastors offer biblical answers to viewer submitted questions. + Religious + + + + Christian World News + Up-to-date news from a Christian perspective. + News + Religious + + + TVPG + + + + Through the Bible With Les Feldick + Religious programming. + Religious + + + TVG + + + + Damon Davis + Damon Davis spotlights socially responsible leaders, authors and entertainers. + Religious + + + TVG + + + + TCT Today + Garth and Tina Coonce interview speakers, singers and ministry leaders from around the world. + Talk Shows + Religious + + + + Joyce Meyer Enjoying Everyday Life + Author and Bible teacher Joyce Meyer shares encouragement to help people enjoy daily life. + Religious + + + TVG + + + + Creflo Dollar + Dr. Creflo Dollar ministers to people from all backgrounds with hopes for change; Creflo helps viewers find ways to renew their faith, mind, and spirit; Creflo and his wife Taffi share their vision for everyone to understand God's love and promises. + Religious + + + TVG + + + + Through the Bible With Les Feldick + Religious programming. + Religious + + + TVG + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + + Dr. Robert Jeffress: Pathway to Victory + The teaching ministry of Dr. Robert Jeffress. + Religious + + + TVG + + + + The 700 Club + News and commentary, interviews, feature stories and Christian ministry. + Talk Shows + Religious + + + + Andrew Wommack: Gospel Truth + Living in the Balance of Grace and Faith + Wommack covers the truth of grace through faith and the rest of God, and how believers move into that, leaving the stress and the struggle to perform behind. + Religious + + + TVG + + + + Turning Point With Dr. David Jeremiah + Dr. David Jeremiah's goal is to deliver the unchanging Word of God to an ever-changing world. + Religious + + + TVG + + + + Life Today With James Robison + James and Betty Robison host guests who speak on a variety of topics, offering hope and help. + Talk Shows + Religious + + + TVG + + + + Capps Ministries + Teaching how to put the word of God to work in the everyday circumstances of life. + Religious + + + + Christian World News + Up-to-date news from a Christian perspective. + News + Religious + + + TVPG + + + + CBN Newswatch + News with a Christian perspective. + Religious + News Magazine + + + + TCT Today + Garth and Tina Coonce interview speakers, singers and ministry leaders from around the world. + Talk Shows + Religious + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + + Rick Renner + Rick Renner's in-depth Bible teachings, using the Greek text, help listeners gain new insight from God's Word. + Religious + + + + Ask the Pastor + Pastors offer biblical answers to viewer submitted questions. + Religious + + + + Through the Bible With Les Feldick + Religious programming. + Religious + + + TVG + + + + Today with Marilyn & Sarah + Inspirational messages and anointed Bible teachings from Marilyn Hickey and Sarah Bowling of Marilyn Hickey Ministries. + Religious + + + + 1PL8 With Chef Rich + Chef Rich, a former U.S. Marine, teaches how to use food as medicine and be resourceful when cooking. + Food + + + + Camp Manna + A Christian camp gets turned upside down. + + Luke Klein + Gary Busey + Jimmy Tatro + + 2018 + Movies + Comedy + + + + Creflo Dollar + Dr. Creflo Dollar ministers to people from all backgrounds with hopes for change; Creflo helps viewers find ways to renew their faith, mind, and spirit; Creflo and his wife Taffi share their vision for everyone to understand God's love and promises. + Religious + + + TVG + + + + Solomon's Porch + Mary Hendricks runs a small-town Christian bookstore that grants customers God-given solutions for their problems. + Miniseries + + + + Pastor Robert Morris Ministries + Pastor Robert Morris from Gateway Church in Dallas-Fort Worth shares insights from God's word to help one in everyday life. + Religious + + + TVG + + + + TCT Today + Garth and Tina Coonce interview speakers, singers and ministry leaders from around the world. + Talk Shows + Religious + + + + Joyce Meyer Enjoying Everyday Life + Author and Bible teacher Joyce Meyer shares encouragement to help people enjoy daily life. + Religious + + + TVG + + + + The Place for Miracles + Richard and Lindsay Roberts. + Religious + + + TVG + + + + Life Today With James Robison + James and Betty Robison host guests who speak on a variety of topics, offering hope and help. + Talk Shows + Religious + + + TVG + + + + Dr. Robert Jeffress: Pathway to Victory + The teaching ministry of Dr. Robert Jeffress. + Religious + + + TVG + + + + The Jewish Jesus With Rabbi Schneider + Messianic Rabbi Kirt Schneider, a Jewish believer in Jesus, shares his insights into the Old and New Testaments, provides guidance on prayer and delivers the Word of God. + Religious + + + TVG + + + + Andrew Wommack: Gospel Truth + Living in the Balance of Grace and Faith + Wommack covers the truth of grace through faith and the rest of God, and how believers move into that, leaving the stress and the struggle to perform behind. + Religious + + + TVG + + + + Ask the Pastor + Pastors offer biblical answers to viewer submitted questions. + Religious + + + + Billy Graham Classics + Religious services emphasizing the gospel message. + Religious + + + + TCT Today + Garth and Tina Coonce interview speakers, singers and ministry leaders from around the world. + Talk Shows + Religious + + + + Living the Dream + Jason and Tori helps students with issues of depression and bullying by performing their country charting songs and the kids love it. + Religious + + + + Stem Cell Activators with Joseph Christiano ND + A naturopathic doctor and certified nutritional counselor, author, motivational speaker, and wellness coach. + Religious + + + TVG + + + + CBN Newswatch + News with a Christian perspective. + Religious + News Magazine + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + + Ask the Pastor + Pastors offer biblical answers to viewer submitted questions. + Religious + + + + Our Jewish Roots + Bible teaching with an emphasis on prophecy, Israel and the Jewish roots of Christianity. + Religious + + + TVG + + + + Through the Bible With Les Feldick + Religious programming. + Religious + + + TVG + + + + Damon Davis + Damon Davis spotlights socially responsible leaders, authors and entertainers. + Religious + + + TVG + + + + TCT Today + Garth and Tina Coonce interview speakers, singers and ministry leaders from around the world. + Talk Shows + Religious + + + + Joyce Meyer Enjoying Everyday Life + Author and Bible teacher Joyce Meyer shares encouragement to help people enjoy daily life. + Religious + + + TVG + + + + Creflo Dollar + Dr. Creflo Dollar ministers to people from all backgrounds with hopes for change; Creflo helps viewers find ways to renew their faith, mind, and spirit; Creflo and his wife Taffi share their vision for everyone to understand God's love and promises. + Religious + + + TVG + + + + Through the Bible With Les Feldick + Religious programming. + Religious + + + TVG + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + TVG + + + + Dr. Robert Jeffress: Pathway to Victory + The teaching ministry of Dr. Robert Jeffress. + Religious + + + TVG + + + + The 700 Club + News and commentary, interviews, feature stories and Christian ministry. + Talk Shows + Religious + + + + Andrew Wommack: Gospel Truth + Living in the Balance of Grace and Faith + Wommack covers the truth of grace through faith and the rest of God, and how believers move into that, leaving the stress and the struggle to perform behind. + Religious + + + TVG + + + + Turning Point With Dr. David Jeremiah + Dr. David Jeremiah's goal is to deliver the unchanging Word of God to an ever-changing world. + Religious + + + TVG + + + + Life Today With James Robison + James and Betty Robison host guests who speak on a variety of topics, offering hope and help. + Talk Shows + Religious + + + TVG + + + + Larry and Tiz Huch + Join Pastors Larry and Tiz Huch from Dallas, Texas as they share the Word of God on breaking curses and releasing blessings. + Religious + + + TVG + + + + Our Jewish Roots + Bible teaching with an emphasis on prophecy, Israel and the Jewish roots of Christianity. + Religious + + + TVG + + + + CBN Newswatch + News with a Christian perspective. + Religious + News Magazine + + + + TCT Today + Garth and Tina Coonce interview speakers, singers and ministry leaders from around the world. + Talk Shows + Religious + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + TVG + + + + Rick Renner + Rick Renner's in-depth Bible teachings, using the Greek text, help listeners gain new insight from God's Word. + Religious + + + + Ask the Pastor + Pastors offer biblical answers to viewer submitted questions. + Religious + + + + Through the Bible With Les Feldick + Religious programming. + Religious + + + TVG + + + + Today with Marilyn & Sarah + Inspirational messages and anointed Bible teachings from Marilyn Hickey and Sarah Bowling of Marilyn Hickey Ministries. + Religious + + + + 3D Woman + A wife, mother, and single converse about biblical solutions to life's hurdles. + Religious + + + + Christian World News + Up-to-date news from a Christian perspective. + News + Religious + + + TVPG + + + + Washington Watch With Tony Perkins + Presenting Washington news from a conservative Christian perspective. + Regular + + + + Creflo Dollar + Dr. Creflo Dollar ministers to people from all backgrounds with hopes for change; Creflo helps viewers find ways to renew their faith, mind, and spirit; Creflo and his wife Taffi share their vision for everyone to understand God's love and promises. + Religious + + + TVG + + + + Kids On Demand + Performing Arts + + + + Kids On Demand + Performing Arts + + + + Kids On Demand + Performing Arts + + + + Kids On Demand + Performing Arts + + + + Kids On Demand + Performing Arts + + + + Kids On Demand + Performing Arts + + + + Kids On Demand + Performing Arts + + + + Kids On Demand + Performing Arts + + + + Kids On Demand + Performing Arts + + + + Kids On Demand + Performing Arts + + + + Kids On Demand + Performing Arts + + + + Kids On Demand + Performing Arts + + + + Kids On Demand + Performing Arts + + + + Kids On Demand + Performing Arts + + + + Kids On Demand + Performing Arts + + + + Kids On Demand + Performing Arts + + + + Kids On Demand + Performing Arts + + + + Kids On Demand + Performing Arts + + + + Kids On Demand + Performing Arts + + + + Kids On Demand + Performing Arts + + + + Kids On Demand + Performing Arts + + + + Kids On Demand + Performing Arts + + + + Kids On Demand + Performing Arts + + + + Kids On Demand + Performing Arts + + + + Married ... With Children + The Good-bye Girl + Kelly gets a job at her favorite theme park; Al sees the world from his couch. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + The Gas Station Show + Al plans a day of family fun, highlighted by a visit to the local gas station. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + England Show + The unknowing Bundys become part of an ancient plot when they win a trip to England. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + England Show: Wastin' the Company's Money + Kelly must save Al and Bud when Lower Uncton citizens plot to kill them. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Magnificent Seven + Peg's 6-year-old nephew joins the household after his parents (Bobcat Goldthwait, Linda Blair) abandon him. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + T-R-A-Something-Something Spells Tramp + Kelly's date (Corey Feldman) dumps her on a deserted highway; Peg tries to revitalize her marriage. + + Ed O'Neill + Christina Applegate + Katey Sagal + + Sitcom + + + TVPG + + + + Married ... With Children + Every Bundy Has a Birthday + When Seven can't remember his birthday, Peg assigns him Al's day. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Al on the Rocks + Al moonlights as a topless bartender to pay the medical bills when Seven sneezes and Peg assumes the worst. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + What I Did for Love + Peg tries everything she can think of to renew Al's interest in romance. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Frat Chance + In an attempt to get a date, Bud founds his own community college fraternity. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Kelly Doesn't Live Here Anymore + When Al can't pay the bills, he convinces Kelly to get a job in a diner. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + The Chicago Wine Party + Faced with having to pay a tax increase on his beer, Al registers to vote. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Rock of Ages + Al poses as a former rock star to gain entrance to a first-class airport lounge. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Death of a Shoe Salesman + Al and Peg discover they are short of money when shopping for a family burial plot. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Old College Try + Bud's plans to move to college are dashed when his parents spend his scholarship money. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Christmas + To earn extra money for Christmas presents, Al becomes a department-store Santa. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + Christmas + + + TVPG + + + + Married ... With Children + The Wedding Show + Everything goes wrong when the Bundys prepare to attend a cousin's wedding. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + It Doesn't Get Any Better Than This + Al goes on a solo fishing trip, but Peg and Marcy show up to spoil it. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Mr. Empty Pants + Al is asked to pose as a centerfold when Peggy draws a cartoon of him that becomes a big hit in a women's magazine. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + You Can't Miss + Bud participates in a television dating game for nerds, with unexpected results. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Peggy and the Pirates + Peggy imagines herself a lady in distress and Al her pirate savior. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Go for the Old + After a theater cashier gives Al a senior citizen's discount, he becomes obsessed with age. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Un-Alful Entry + Al becomes a hero when he stands up to a burglar who breaks into the Bundys' house. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Movie Show + Al takes the family to the movies to celebrate Kelly's birthday. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Till Death Do Us Part + Peg's public complaints about Al's lovemaking make him a laughingstock. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + 'Tis Time to Smell the Roses + Al is forced to return to work when Peg spends his retirement money. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Old Insurance Dodge + After learning his stolen car is worth a measly $100, Al falsifies an insurance claim. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Wedding Repercussions + The Bundy's newly married relative (Abraham Benrubi) learns his bride slept with Bud the day before their wedding. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + The Proposition + Al's ex-girlfriend (Vanna White), a cosmetics millionaire, offers Peggy $500,000 for one night with Al. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + A Tisket, a Tasket, Can Peggy Make a Basket? + Al's ego is damaged after Peg gets a chance to compete in a free-throw contest. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Hood in the Boyz + Al helps an ex-girlfriend having gang trouble in the old neighborhood. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Proud to Be Your Bud + Bud faces his cool alter ego when his latest attempt to impress women fails miserably. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Luck of the Bundys + Al becomes too paranoid to enjoy his incredible lucky streak. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Banking on Marcy + Marcy finds a way to overcome her fear of public speaking, but the cure turns out to be worse than the illness. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + No Chicken, No Check + Kelly and Bud are forced to double-date after they purchase a new car. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Take My Wife, Please + Al must prove his family really needs him or Death will banish him. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + Christmas + + + TVPG + + + + Married ... With Children + Scared Single + Al tries to convince Aaron (Hill Harper), his newly hired shoe salesman, that he should not get married. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + The Nanny + Stock Tip + Fran dresses in drag to crash a men's club in order to stop Mr. Sheffield from using her boyfriend's stock tip. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + The Whine Cellar + Fran and C.C. (Fran Drescher, Lauren Lane) become trapped in the wine cellar during Fran's mother's (Renee Taylor) 50th birthday bash. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + When You Pish Upon a Star + Child star Jack Walker decides to give up show business when Fran tells him he should be doing the things normal children do. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + Take Back Your Mink + Sylvia (Renee Taylor) is offended when Fran (Fran Drescher) refuses to wear a mink coat she inherited from her Aunt Mimma. With Charles Shaughnessy. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + The Strike + Maxwell (Charles Shaughnessy) is hung out to dry on. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + I've Got a Secret + Maxwell (Charles Shaughnessy) has a secret someone hiding upstairs, and Fran (Fran Drescher) is just dying to find out who. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + Kindervelt Days + Fran (Fran Drescher) panics while trying to find a date for her camp reunion, but the kids have a surprise for her. Guest star: Erik Estrada. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + Canasta Masta + Brighton (Benjamin Salisbury) finds his niche on Fran's mother's (Renee Taylor) canasta team. Stars: Fran Drescher. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + The Will + Mr. Sheffield (Charles Shaughnessy) asks Fran (Fran Drescher) to be guardian of his children in the event of his death. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + The Nanny Behind the Man + To help Maxwell's (Charles Shaughnessy) efforts to woo a playwright (Ray Stricklyn), Fran (Fran Drescher) offers to set the man up with a feisty woman. Guest star: Roger Clinton. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + Will & Grace + Key Party + Despite the fact that Will has never had a happy birthday, his new relationship with Vince (Bobby Cannavale) gives him hope that this one will be. + + Eric McCormack + Debra Messing + Sean Hayes + + Sitcom + + + TV14 + + + + Will & Grace + The Newlydreads + Will convinces Jack to aid a local gay-bookstore owner to save his store from closing. + + Eric McCormack + Debra Messing + Sean Hayes + + Sitcom + + + TV14 + + + + Will & Grace + Will & Grace & Vince & Nadine + Will and Grace decide to invite Vince and Nadine (Kristin Davis) over, but they quickly learn that, despite similarities in friendship, they are polar opposites. + + Eric McCormack + Debra Messing + Sean Hayes + + Sitcom + + + TV14 + + + + Will & Grace + Saving Grace Again + After a great date with someone else, Grace comes home to a garbled message from Leo; Karen and Jack try to set each other up, but things go awry. + + Eric McCormack + Debra Messing + Sean Hayes + + Sitcom + + + TV14 + + + + Will & Grace + Saving Grace Again + Will, Grace, Jack and Karen go on a road trip for Grace's getaway weekend, but Jack and Karen hate the car ride and bail on the plan. + + Eric McCormack + Debra Messing + Sean Hayes + + Sitcom + + + TV14 + + + + Will & Grace + Queens for a Day + Vince's mother cannot make her traditional holiday feast, so Will volunteers to make a special meal, but Vince's mother refuses to give him any credit; Jack gives Vince's sister (Jamie-Lynn DiScala) pointers on keeping secrets. + + Eric McCormack + Debra Messing + Sean Hayes + + Sitcom + + + TV14 + + + + Will & Grace + Queens for a Day + Vince's mother is unable to make her traditional holiday feast, so Will volunteers to make a special meal, but Vince's mother refuses to give Will any of the credit; Jack gives Vince's sister (Jamie-Lynn DiScala) pointers on keeping secrets. + + Eric McCormack + Debra Messing + Sean Hayes + + Sitcom + + + TV14 + + + + Will & Grace + Christmas Break + Grace accidentally breaks a treasured figurine at Will's mother's (Blythe Danner) holiday party and blames it on another guest. + + Eric McCormack + Debra Messing + Sean Hayes + + Sitcom + Christmas + + + TV14 + + + + Will & Grace + Board Games + An old classmate (Jeff Goldblum) tries to get revenge on Karen by becoming the president of Walker Inc.; Will and Grace run into Vince and a co-worker while playing hooky from work. + + Eric McCormack + Debra Messing + Sean Hayes + + Sitcom + + + TV14 + + + + Will & Grace + Partners + Will is reluctant to bring Vince to a dinner party at his boss's (Lily Tomlin) home, fearing it will scratch his chances of making partner at the firm. + + Eric McCormack + Debra Messing + Sean Hayes + + Sitcom + + + TV14 + + + + Three's Company + Will the Real Jack Tripper .. + A pregnant woman claims Jack is the father of her unborn child. + + John Ritter + Joyce DeWitt + Suzanne Somers + + Sitcom + + + TVPG + + + + Three's Company + Days of Beer and Weeds + Jack discovers what appears to be marijuana plants in Roper's garden. + + John Ritter + Joyce DeWitt + Suzanne Somers + + Sitcom + + + TVPG + + + + Three's Company + Chrissy Come Home + Chrissy's minister father pays an early visit. + + John Ritter + Joyce DeWitt + Suzanne Somers + + Sitcom + + + TVPG + + + + Three's Company + Bird Song + The roommates take the Ropers' parakeet overnight. + + John Ritter + Joyce DeWitt + Suzanne Somers + + Sitcom + + + TVPG + + + + Three's Company + Coffee, Tea or Jack? + An old girlfriend shows up at Jack's surprise birthday party. + + John Ritter + Joyce DeWitt + Suzanne Somers + + Sitcom + + + TVPG + + + + Three's Company + Double Date + Jack breaks a date with his girlfriend to keep one with a new romantic interest. + + John Ritter + Joyce DeWitt + Suzanne Somers + + Sitcom + + + TVPG + + + + Three's Company + Good Old Reliable Janet + Janet convinces Mrs. Roper to join her in a nude beach protest. + + John Ritter + Joyce DeWitt + Suzanne Somers + + Sitcom + + + TVPG + + + + Three's Company + Love Diary + Roper thinks the candid diary Chrissy is transcribing is her own. + + John Ritter + Joyce DeWitt + Suzanne Somers + + Sitcom + + + TVPG + + + + Three's Company + The Fast + Jack and Chrissy compete in a test of willpower. + + John Ritter + Joyce DeWitt + Suzanne Somers + + Sitcom + + + TVPG + + + + Three's Company + Helen's Rendezvous + Jack, Janet and Chrissy think that Helen is having an affair. + + John Ritter + Joyce DeWitt + Suzanne Somers + + Sitcom + + + TVPG + + + + Bewitched + Cousin Serena Strikes Again + Darrin's sexy Italian client tries seduce him; Serena turns her into a monkey. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Cousin Serena Strikes Again + Darrin is frantic when one of his clients is turned into a monkey. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + One Touch of Midas + Worrying that her daughter is deprived, Endora ensures that Darrin becomes very generous. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Samantha, the Bard + A temporary illness causes Samantha to speak in rhymes; Dr. Bombay's cure doesn't work. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Samantha, the Sculptress + Endora causes trouble when she zaps two living busts of Larry and Darrin in the Stephens home. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Mrs. Stephens, Where Are You? + Phyllis makes a catty remark about Samantha's family; Serena turns Darrin's mother into a cat. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Marriage, Witches' Style + Envious Serena decides she wants to be like Samantha and wed a mortal. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Going Ape + A chimp follows Samantha home and is launched on an advertising career. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Tabitha's Weekend + Upset by the rivalry between her grandmothers, Tabitha turns into a cookie. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + The Battle of Burning Oak + When Darrin joins an exclusive club, Endora turns him into a snob. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Samantha's Power Failure + Refusing to obey the Witches Council and give up Darren, Samantha loses her magical powers. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Samantha Twitches for UNICEF + Magic comes in handy when Samantha collects for a charity organization. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + Christmas + + + TVG + + + + Bewitched + Daddy Does His Thing + Darrin stubbornly refuses a birthday gift; Maurice turns him into a mule. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Samantha's Good News + Samantha's good news stops her parents' quarrel -- for a moment. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Samantha's Shopping Spree + Cousin Henry turns on all his pranks when he goes shopping with Samantha. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Samantha and Darrin in Mexico City + After offending Endora, Darrin disappears whenever he speaks Spanish. + + Elizabeth Montgomery + Dick York + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Samantha and the Beanstalk + Tabitha brings the story of. + + Elizabeth Montgomery + Dick Sargent + Agnes Moorehead + + Sitcom + + + TVG + + + + The Facts of Life + Love at First Byte + Natalie takes a risk when she chooses computer dating as the subject of her term paper. + + Charlotte Rae + Lisa Whelchel + Kim Fields + + Sitcom + + + TVG + + + + The Facts of Life + My Boyfriend's Back + Tootie faces an important decision as she tries to gain her boyfriend's acceptance. + + Charlotte Rae + Lisa Whelchel + Kim Fields + + Sitcom + + + TVG + + + + The Facts of Life + Cruisin' + The girls cruise the streets of downtown Peekskill with hopes of spotting. + + Charlotte Rae + Lisa Whelchel + Kim Fields + + Sitcom + + + TVG + + + + The Facts of Life + Taking a Chance on Love + Rumors spread across the campus when Jo is seen with her photography professor. + + Charlotte Rae + Lisa Whelchel + Kim Fields + + Sitcom + + + TVG + + + + The Facts of Life + Taking a Chance on Love + Jo's relationship with her professor grows more serious. + + Charlotte Rae + Lisa Whelchel + Kim Fields + + Sitcom + + + TVG + + + + The Facts of Life + E.G.O.C (Edna Garrett on Campus) + Mrs. Garrett hits the books again when she takes a Shakespeare class with Jo and Blair. + + Charlotte Rae + Lisa Whelchel + Kim Fields + + Sitcom + + + TVG + + + + The Facts of Life + Dear Apple + The school computer spurts out advice when Blair and Jo become embroiled in a fight. + + Charlotte Rae + Lisa Whelchel + Kim Fields + + Sitcom + + + TVG + + + + The Facts of Life + Talk, Talk, Talk + Jo is handed the tough assignment of hosting a five-hour radio program. + + Charlotte Rae + Lisa Whelchel + Kim Fields + + Sitcom + + + TVG + + + + The Facts of Life + Smile + Natalie has the opportunity to break into journalism, but she may lose her boyfriend in the process. + + Charlotte Rae + Lisa Whelchel + Kim Fields + + Sitcom + + + TVG + + + + The Nanny + Educating Fran + Fran's love affair with her dream man is put in jeopardy by a little white lie and his obsession with astrology. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + From Flushing With Love + Fran (Fran Drescher) invites Maxwell (Charles Shaughnessy) to her family reunion at Niagara Falls hoping he'll feel romantic. Guest star: Spalding Gray. + + Fran Drescher + Charles Shaughnessy + Daniel Davis + + Sitcom + + + TVPG + + + + The Nanny + Rash to Judgment + Fran's romantic evening with Maxwell at a Michael Bolton concert is ruined by a rash her doctor can't cure. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + One False Mole and You're Dead + Fran (Fran Drescher) makes the mistake of telling a gossip columnist (Cindy Adams) that a famous actress (Joan Van Ark) has a fake mole. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + Call Me Fran + On the advice of her therapist (Spalding Gray), Fran (Fran Drescher) forces Maxwell (Charles Shaughnessy) to overcome his fear of intimacy. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + The Engagement + When Fran learns that Maxwell has bought a diamond ring, she suspects a marriage proposal is in the air. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + The Dinner Party + Fran (Fran Drescher) learns that some of Maxwell's (Charles Shaughnessy) high-society chums are making fun of her behind her back. Guest stars: Dick Martin and Mort Drescher. + + Fran Drescher + Charles Shaughnessy + Daniel Davis + + Sitcom + + + TVPG + + + + The Nanny + Homie-Work + Fran transforms a nerdy singer into a cool rapper so that he can audition for a part in Maxwell's new show. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + The Reunion Show + With many of her friends divorced and disagreement brewing with Maxwell, Fran worries about her pending nuptials. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + Immaculate Concepcion + Maxwell's father (Robert Vaughn) leaves his entire fortune to his secret love child, Concepcion (Maria Conchita Alonso). With Fran Drescher and Charles Shaughnessy.. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + The Pre-nup + Maxwell (Charles Shaughnessy) tells Fran (Fran Drescher) that she must sign a prenuptial agreement or the wedding will be canceled. Whoopi Goldberg and Ray Charles guest star. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + The Best Man + Maxwell learns his brother once proposed to Fran; Fran finds out about Maxwell's fling with Marla Maples. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + The Wedding + As their nuptials approach, both Fran and Maxwell (Fran Drescher, Charles Shaughnessy) suffer from pre-wedding calamities and jitters. Guest star: Bess Armstrong. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + The Wedding + As their nuptials approach, both Fran and Maxwell (Fran Drescher, Charles Shaughnessy) suffer from pre-wedding calamities and jitters. Guest star: Bess Armstrong. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + The Honeymoon's Overboard + Fran and Maxwell (Fran Drescher, Charles Shaughnessy) fall off a yacht and spend a frustrating honeymoon on a deserted island. With Lauren Lane. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + Fran Gets Shushed + Fran (Fran Drescher) is indignant when Maxwell (Charles Shaughnessy) scolds her for extreme loudness in the bedroom. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + Once a Secretary, Always a Secretary + Fran is hurt when Maxwell accidentally calls her his nanny while being interviewed on. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + The Nanny + Sara's Parents + Fran hopes to adopt the children and begins by trying to win the approval of their late mother's parents. + + Fran Drescher + Charles Shaughnessy + Lauren Lane + + Sitcom + + + TVPG + + + + Will & Grace + Bully Woolley + When Scott Woolley (Jeff Goldblum) tries to get Grace to fire Karen by impersonating a restaurant owner, the women plan a trap for him. + + Eric McCormack + Debra Messing + Sean Hayes + + Sitcom + + + TV14 + + + + Will & Grace + Dance Cards and Greeting Cards + Although Grace tries to ignore St. Valentine's Day, she winds up with a hunky greeting-card writer (Ed Burns); Karen's former nemesis (Jeff Goldblum) tries to win her heart by showering her with gifts. + + Eric McCormack + Debra Messing + Sean Hayes + + Sitcom + + + TV14 + + + + Will & Grace + The Birds and the Bees + Grace drags Will along on her first date with Nick (Edward Burns); Karen tries to set Jack up on a date with the neighborhood bird enthusiast (Luke Perry), but things don't quite go as she has planned. + + Eric McCormack + Debra Messing + Sean Hayes + + Sitcom + + + TV14 + + + + Will & Grace + The Fabulous Baker Boy + When Will agrees to fire Karen's pastry chef, he becomes involved in a love triangle that the baker created. + + Eric McCormack + Debra Messing + Sean Hayes + + Sitcom + + + TV14 + + + + Will & Grace + Sour Balls + When Jack convinces Will that they need a change of scenery, they buy an apartment in an up-and-coming gay community. + + Eric McCormack + Debra Messing + Sean Hayes + + Sitcom + + + TV14 + + + + Will & Grace + The Blonde Leading the Blind + Will is jealous when his no-nonsense therapist (guest star Sharon Stone) becomes fast friends with Grace. + + Eric McCormack + Debra Messing + Sean Hayes + + Sitcom + + + TV14 + + + + Will & Grace + It's a Dad, Dad, Dad, Dad World + Grace convinces Karen to attend her father's (Alan Arkin) birthday party; Karen entertains herself by spending time with Martin's friend Burt (Lee Majors). + + Eric McCormack + Debra Messing + Sean Hayes + + Sitcom + + + TV14 + + + + Bewitched + Samantha's Yoo-Hoo Maid + Endora brings a witch with fading powers to be Samantha's maid. + + Elizabeth Montgomery + Dick Sargent + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Samantha's Caesar Salad + Samantha wants Caesar Salad; Esmeralda conjures up Julius Caesar. + + Elizabeth Montgomery + Dick Sargent + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Samantha's Curious Cravings + Samantha's food cravings cause magic problems; Dr. Bombay tries to help. + + Elizabeth Montgomery + Dick Sargent + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + And Something Makes Four + Samantha's new baby raises eyebrows in the heavens and on earth. + + Elizabeth Montgomery + Dick Sargent + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Naming Samantha's New Baby + Samantha's father is upset when his grandson isn't named after him. + + Elizabeth Montgomery + Dick Sargent + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + To Trick-or-Treat or Not to Trick-or-Treat + Endora objects to Samantha's Halloween work for UNICEF; Darrin is turned into a hag witch by Endora. + + Elizabeth Montgomery + Dick Sargent + Agnes Moorehead + + Sitcom + Christmas + + + TVG + + + + Bewitched + A Bunny for Tabitha + Uncle Arthur does a classic rabbit in a hat trick, but instead of pulling out a rabbit, he pulls out a Playboy bunny. + + Elizabeth Montgomery + Dick Sargent + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Samantha's Secret Spell + Samantha must prevent Darrin from turning into a mouse at midnight. + + Elizabeth Montgomery + Dick Sargent + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Daddy Comes to Visit + Sam's father, Maurice, gives magic powers to Darrin, who proceeds to use them to land a difficult account. + + Elizabeth Montgomery + Dick Sargent + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Darrin the Warlock + Darrin gives up his powers and lands the Bliss account anyway. + + Elizabeth Montgomery + Dick Sargent + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Sam's Double Mother Trouble + Esmeralda is reading Mother Goose to Tabitha, and ends up sneezing up the real Mother Goose. + + Elizabeth Montgomery + Dick Sargent + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + You're So Agreeable + Darrin is freed from his agreeable spell and gets his old job back. + + Elizabeth Montgomery + Dick Sargent + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Santa Comes to Visit and Stays and Stays + Esmeralda conjures up Santa Claus and his elves; Tabitha convinces Sidney that Santa is real. + + Elizabeth Montgomery + Dick Sargent + Agnes Moorehead + + Sitcom + Christmas + + + TVG + + + + Bewitched + Samantha's Better Halves + Endora steps in when Darrin is torn between Samantha and a business deal. + + Elizabeth Montgomery + Dick Sargent + Agnes Moorehead + + Sitcom + + + TVG + + + + The Facts of Life + The Rich Aren't Different + Blair seeks payment after Jo breaks her watch. + + Charlotte Rae + Lisa Whelchel + Kim Fields + + Sitcom + + + TVG + + + + The Facts of Life + Christmas in the Bighouse + Mrs. Garrett and the girls stage a Christmas show at an orphanage. + + Charlotte Rae + Lisa Whelchel + Kim Fields + + Sitcom + Christmas + + + TVG + + + + The Facts of Life + Me and Eleanor + Tootie wants Natalie's opinion on her writing. + + Charlotte Rae + Lisa Whelchel + Kim Fields + + Sitcom + + + TVG + + + + The Facts of Life + Working It Out + Mrs. Garrett and the girls express concern over Blair's obsessive dating and irrational behavior. + + Charlotte Rae + Lisa Whelchel + Kim Fields + + Sitcom + + + TVG + + + + The Facts of Life + Jazzbeau + Tootie and Natalie recall the summer they met a memorable jazz singer. + + Charlotte Rae + Lisa Whelchel + Kim Fields + + Sitcom + + + TVG + + + + The Facts of Life + Two Guys From Appleton + Mrs. Garrett's high-school beau reappears. + + Charlotte Rae + Lisa Whelchel + Kim Fields + + Sitcom + + + TVG + + + + The Facts of Life + With a Little Help From My Friends + Jo fears Blair's boyfriend is using drugs. + + Charlotte Rae + Lisa Whelchel + Kim Fields + + Sitcom + + + TVG + + + + The Facts of Life + Gone With the Wind + The girls head to Florida for spring break. + + Charlotte Rae + Lisa Whelchel + Kim Fields + + Sitcom + + + TVG + + + + The Facts of Life + Gone With the Wind + Jo falls for a singer; Blair's new love is unusual. + + Charlotte Rae + Lisa Whelchel + Kim Fields + + Sitcom + + + TVG + + + + Married ... With Children + Poppy's by the Tree + Peggy becomes the target of a tourist-hating ax killer (Vic Polizos) while on vacation in Florida. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Poppy's by the Tree + Peggy becomes the target of a tourist-hating ax killer (Vic Polizos) while on vacation in Florida. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + If I Were a Rich Man + Al's accused of pilfering $1 million after he and Steve play poker in a bank vault. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Buck Can Do It + Neighbors put Al under pressure to end canine Buck's amorous escapades. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Girls Just Wanna Have Fun + Miffed Marcy goes out on the town to an exotic dance club with Peggy. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Girls Just Wanna Have Fun + Marcy's wedding ring slips off as she stuffs money into the pants of a male exotic dancer (Bill Hufsey). + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + For Whom the Bell Tolls + The Bundy gang is without phone service after Al refuses to pay the bill. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Born to Walk + Al faces a series of misfortunes after he fails his driving test. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Alley of the Dolls + Peggy's high-school rival challenges the Bundy family to a bowling contest. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + The Razor's Edge + Steve moves in with the Bundy family when Marcy kicks him out. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + How Do You Spell Revenge? + Al gets upset when he discovers that Kelly's beau (John Dennis Johnston) is the son of Peggy's old high-school boyfriend (Kris Kamm). + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Earth Angel + Al is upset when Bud brings home a destitute woman, until he discovers she's a blond beauty. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + You Better Watch Out + Al (Ed O'Neill) is forced to step in when a hapless Santa accidentally parachutes into the Bundys' backyard. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Guys and Dolls + Steve and Al (David Garrison, Ed O'Neill) sell Marcy's (Amanda Bearse) treasured Barbie doll to buy a rare baseball card. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Build a Better Mousetrap + Al wrecks the house while attempting to catch an elusive mouse. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Master the Possibilities + Assuming they aren't liable, Al and Peggy overextend on Buck the dog's new credit card. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Peggy Loves Al, Yeah, Yeah, Yeah + For her Valentine's Day gift, Peggy wants Al to say. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + The Great Escape + A grounded Kelly wants Bud to help her escape to a rock concert. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Impo-Dent + Steve becomes suddenly impotent after Marcy dents his car while he is away. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Married ... With Children + Just Married ... With Children + Al and Peggy appear on a game show pretending to be Steve and Marcy Rhoades. + + Ed O'Neill + Katey Sagal + Christina Applegate + + Sitcom + + + TVPG + + + + Will & Grace + From Queer to Eternity + Grace's near-death experience prompts her to write her will and jolts Will into making a life-altering career choice. + + Eric McCormack + Debra Messing + Sean Hayes + + Sitcom + + + TV14 + + + + Will & Grace + Friends With Benefits + When Will's writing career fizzles, Malcolm (Alec Baldwin) makes him another job offer; Grace's old college flame (Eric Stoltz) gives her a job decorating his new hotel. + + Eric McCormack + Debra Messing + Sean Hayes + + Sitcom + + + TV14 + + + + Will & Grace + Kiss and Tell + Will becomes suspicious of his new job when he finds himself in an empty office with a German shepherd and a Russian-speaking thug. + + Eric McCormack + Debra Messing + Sean Hayes + + Sitcom + + + TV14 + + + + Will & Grace + Alive and Schticking + Grace contemplates an affair with a married man (Eric Stoltz); Jack begins his new career as a talk-show host; Will continues to hide from Karen the fact that Stan is alive. + + Eric McCormack + Debra Messing + Sean Hayes + + Sitcom + + + TV14 + + + + Will & Grace + I Second That Emotion + When Will suspects that Karen is more upset about Stan being alive than she is letting on, he makes it his mission to help her heal emotionally. + + Eric McCormack + Debra Messing + Sean Hayes + + Sitcom + + + TV14 + + + + Will & Grace + The Old Man and the Sea + Jack learns that Will has never learned how to swim, so he makes it his mission to teach him. + + Eric McCormack + Debra Messing + Sean Hayes + + Sitcom + + + TV14 + + + + Will & Grace + Steams Like Old Times + Jack tells Karen he believes she belongs with Stan, not Malcolm (Alec Baldwin). + + Eric McCormack + Debra Messing + Sean Hayes + + Sitcom + + + TV14 + + + + Bewitched + Samantha's Lost Weekend + Samantha develops an appetite and wreaks havoc in a supermarket. + + Elizabeth Montgomery + Dick Sargent + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + The Phrase Is Familiar + Because of Endora's spell, Darrin almost talks himself out of a job. + + Elizabeth Montgomery + Dick Sargent + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Samantha's Secret is Discovered + Samantha saves her secret and Mrs. Stephens' sanity with some well-placed witchcraft. + + Elizabeth Montgomery + Dick Sargent + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Tabitha's Very Own Samantha + When Samantha teaches Tabitha an important lesson, Tabitha realizes one mother is enough. + + Elizabeth Montgomery + Dick Sargent + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Super Arthur + Samantha gives her sick Uncle Arthur a pill and the whole neighborhood suffers as a result. + + Elizabeth Montgomery + Dick Sargent + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + What Makes Darrin Run? + Endora casts an. + + Elizabeth Montgomery + Dick Sargent + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Serena Stops the Show + Serena wreaks havoc on the Stephens' lives with her witchcraft. + + Elizabeth Montgomery + Dick Sargent + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Just a Kid Again + Sam and her daughter Tabitha go shopping; Tabitha grants a man's wish to be 9 years old again. + + Elizabeth Montgomery + Dick Sargent + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + The Generation Zap + Serena turns a coed into a siren, Darrin is almost forced to change his job. + + Elizabeth Montgomery + Dick Sargent + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + Okay, Who's the Wise Witch? + Darrin and Samantha are trapped in their home because she has not been using witchcraft. + + Elizabeth Montgomery + Dick Sargent + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + A Chance on Love + A case of mistaken identity results in a wolf being changed into a bird. + + Elizabeth Montgomery + Dick Sargent + Agnes Moorehead + + Sitcom + + + TVG + + + + Bewitched + If the Shoe Pinches + The shoes fit, so Darrin wears them -- and needs Samantha's help to get them off. + + Elizabeth Montgomery + Dick Sargent + Agnes Moorehead + + Sitcom + + + TVG + + + + The Facts of Life + A Man in the Attic + Mrs. Garrett offers Kevin a room in the attic. + + Charlotte Rae + Lisa Whelchel + Kim Fields + + Sitcom + + + TVG + + + + The Facts of Life + The Last Drive-In + The girls plan to spend a quiet night at the movies before the drive-in closes for good. + + Charlotte Rae + Lisa Whelchel + Kim Fields + + Sitcom + + + TVG + + + + The Facts of Life + Sisters + A budding romance develops between Blair's mother and Jo's father. + + Charlotte Rae + Lisa Whelchel + Kim Fields + + Sitcom + + + TVG + + + + The Facts of Life + It's Lonely at the Top + Blair manages the shop in Mrs. Garrett's absence. + + Charlotte Rae + Lisa Whelchel + Kim Fields + + Sitcom + + + TVG + + + + The Facts of Life + Bus Stop + Natalie makes a shocking announcement about college. + + Charlotte Rae + Lisa Whelchel + Kim Fields + + Sitcom + + + TVG + + + + The Facts of Life + The Interview Show + A former Eastland student interviews Mrs. Garrett and the girls for her latest novel. + + Charlotte Rae + Lisa Whelchel + Kim Fields + + Sitcom + + + TVG + + + + The Facts of Life + Out of the Fire .. + The girls and Mrs. Garrett return from their summer vacations to find that Edna's Edibles has been destroyed by fire. + + Charlotte Rae + Lisa Whelchel + Kim Fields + + Sitcom + + + TVG + + + + The Facts of Life + Into the Frying Pan + Mrs. Garrett and the girls hire a contractor to build a new business on the former site of Edna's Edibles. + + Charlotte Rae + Lisa Whelchel + Kim Fields + + Sitcom + + + TVG + + + + The Facts of Life + Grand Opening + The girls and Mrs. Garrett encounter some difficulties on opening day at their new boutique. + + Charlotte Rae + Lisa Whelchel + Kim Fields + + Sitcom + + + TVG + + + + Three's Company + Oh, Nun + Jack assumes that Terri's friend wants to leave the convent to be with him. + + John Ritter + Joyce DeWitt + Priscilla Barnes + + Sitcom + + + TVPG + + + + Three's Company + Maid to Order + The roommates reluctantly hire Cindy as a maid. + + John Ritter + Joyce DeWitt + Priscilla Barnes + + Sitcom + + + TVPG + + + + Prime Crime + (repeat). + 2021 + + + Cops Reloaded + Newly edited episodes showcase the show's most memorable criminals, car chases and moments. (repeat). + + Dale Dimmick + + Reality + + TV-PG + + + + Cops Reloaded + Newly edited episodes showcase the show's most memorable criminals, car chases and moments. (repeat). + + Dale Dimmick + + Reality + + TV-PG + + + + Justice Rules + A documentary programme on peace and justice. (repeat). + 2020 + Educational + + + Prime Crime + (repeat). + 2021 + + + Prime Crime + (repeat). + 2021 + + + Jail + (repeat). + + TV-14 + + + + Jail + (repeat). + + TV-14 + + + + Trial File + (repeat). + 2020 + + + Justice Rules + A documentary programme on peace and justice. (repeat). + 2020 + Educational + + + Cops Reloaded + Newly edited episodes showcase the show's most memorable criminals, car chases and moments. (repeat). + + Dale Dimmick + + Reality + + TV-PG + + + + Cops Reloaded + Newly edited episodes showcase the show's most memorable criminals, car chases and moments. (repeat). + + Dale Dimmick + + Reality + + TV-PG + + + + Prime Crime + (repeat). + 2021 + + + Jail + (repeat). + + TV-14 + + + + Jail + (repeat). + + TV-14 + + + + Cops Reloaded + Newly edited episodes showcase the show's most memorable criminals, car chases and moments. (repeat). + + Dale Dimmick + + Reality + + TV-PG + + + + Cops Reloaded + Newly edited episodes showcase the show's most memorable criminals, car chases and moments. (repeat). + + Dale Dimmick + + Reality + + TV-PG + + + + Trial File + (repeat). + 2020 + + + Justice Rules + A documentary programme on peace and justice. (repeat). + 2020 + Educational + + + Hitman Conspiracy Trial + (repeat). + + + Jail + (repeat). + + TV-14 + + + + Jail + (repeat). + + TV-14 + + + + Cops Reloaded + Newly edited episodes showcase the show's most memorable criminals, car chases and moments. (repeat). + + Dale Dimmick + + Reality + + TV-PG + + + + Cops Reloaded + Newly edited episodes showcase the show's most memorable criminals, car chases and moments. (repeat). + + Dale Dimmick + + Reality + + TV-PG + + + + Trial File + (repeat). + 2020 + + + Justice Rules + A documentary programme on peace and justice. (repeat). + 2020 + Educational + + + Prime Crime + (repeat). + 2021 + + + Hitman Conspiracy Trial + (repeat). + + + Hitman Conspiracy Trial + (repeat). + + + Hitman Conspiracy Trial + (repeat). + + + Hitman Conspiracy Trial + (repeat). + + + Hitman Conspiracy Trial + (repeat). + + + Hitman Conspiracy Trial + (repeat). + + + Hitman Conspiracy Trial + (repeat). + + + Prime Crime + (repeat). + 2021 + + + Sidebar + (repeat). + + + Jail + (repeat). + + TV-14 + + + + Jail + (repeat). + + TV-14 + + + + Buried With Love + An investigative look at the unsettling murder case surrounding Ohio teen Brooke Richardson, in which authorities uncovered her infant daughter buried in her back garden less than forty-eight hours after her senior prom. (repeat). + 2020 + Documentary + + + Cops Reloaded + Newly edited episodes showcase the show's most memorable criminals, car chases and moments. (repeat). + + Dale Dimmick + + Reality + + TV-PG + + + + Cops Reloaded + Newly edited episodes showcase the show's most memorable criminals, car chases and moments. (repeat). + + Dale Dimmick + + Reality + + TV-PG + + + + Justice Rules + A documentary programme on peace and justice. (repeat). + 2020 + Educational + + + Prime Crime + (repeat). + 2021 + + + Jail + (repeat). + + TV-14 + + + + Jail + (repeat). + + TV-14 + + + + Trial File + (repeat). + 2020 + + + Justice Rules + A documentary programme on peace and justice. (repeat). + 2020 + Educational + + + Prime Crime + (repeat). + 2021 + + + Prime Crime + (repeat). + 2021 + + + Cop Tales + (repeat). + 2021 + + + Cops Reloaded + Newly edited episodes showcase the show's most memorable criminals, car chases and moments. (repeat). + + Dale Dimmick + + Reality + + TV-PG + + + + Cops Reloaded + Newly edited episodes showcase the show's most memorable criminals, car chases and moments. (repeat). + + Dale Dimmick + + Reality + + TV-PG + + + + Trial File + (repeat). + 2020 + + + Justice Rules + A documentary programme on peace and justice. (repeat). + 2020 + Educational + + + Hitman Conspiracy Trial + (repeat). + + + Hitman Conspiracy Trial + (repeat). + + + Hitman Conspiracy Trial + (repeat). + + + Hitman Conspiracy Trial + (repeat). + + + Hitman Conspiracy Trial + (repeat). + + + Live: Hitman Conspiracy Trial + (new). + + + Live: Hitman Conspiracy Trial + (new). + + + Live: Hitman Conspiracy Trial + (new). + + + Live: Hitman Conspiracy Trial + (new). + + + Live: Hitman Conspiracy Trial + (new). + + + Live: Hitman Conspiracy Trial + (new). + + + Live: Hitman Conspiracy Trial + (new). + + + Cops Reloaded + Newly edited episodes showcase the show's most memorable criminals, car chases and moments. (repeat). + + Dale Dimmick + + Reality + + TV-PG + + + + Sidebar + (new). + + + Jail + (repeat). + + TV-14 + + + + Jail + (repeat). + + TV-14 + + + + Cops Reloaded + Newly edited episodes showcase the show's most memorable criminals, car chases and moments. (repeat). + + Dale Dimmick + + Reality + + TV-PG + + + + Cops Reloaded + Newly edited episodes showcase the show's most memorable criminals, car chases and moments. (repeat). + + Dale Dimmick + + Reality + + TV-PG + + + + Prime Crime + (repeat). + 2021 + + + Prime Crime + (repeat). + 2021 + + + Jail + (repeat). + + TV-14 + + + + Jail + (repeat). + + TV-14 + + + + Cops Reloaded + Newly edited episodes showcase the show's most memorable criminals, car chases and moments. (repeat). + + Dale Dimmick + + Reality + + TV-PG + + + + Prime Crime + (repeat). + 2021 + + + Jail + (repeat). + + TV-14 + + + + Jail + (repeat). + + TV-14 + + + + Trial File + (repeat). + 2020 + + + Justice Rules + A documentary programme on peace and justice. (repeat). + 2020 + Educational + + + Cops Reloaded + Newly edited episodes showcase the show's most memorable criminals, car chases and moments. (repeat). + + Dale Dimmick + + Reality + + TV-PG + + + + Prime Crime + (repeat). + 2021 + + + Cop Tales + (repeat). + 2021 + + + Cops Reloaded + Newly edited episodes showcase the show's most memorable criminals, car chases and moments. (repeat). + + Dale Dimmick + + Reality + + TV-PG + + + + Cops Reloaded + Newly edited episodes showcase the show's most memorable criminals, car chases and moments. (repeat). + + Dale Dimmick + + Reality + + TV-PG + + + + Trial File + (repeat). + 2020 + + + Justice Rules + A documentary programme on peace and justice. (repeat). + 2020 + Educational + + + Hitman Conspiracy Trial + (repeat). + + + Hitman Conspiracy Trial + (repeat). + + + Hitman Conspiracy Trial + (repeat). + + + Hitman Conspiracy Trial + (repeat). + + + Hitman Conspiracy Trial + (repeat). + + + Live: Hitman Conspiracy Trial + (new). + + + Live: Hitman Conspiracy Trial + (new). + + + Live: Hitman Conspiracy Trial + (new). + + + Live: Hitman Conspiracy Trial + (new). + + + Live: Hitman Conspiracy Trial + (new). + + + Live: Hitman Conspiracy Trial + (new). + + + Live: Hitman Conspiracy Trial + (new). + + + Cops Reloaded + Newly edited episodes showcase the show's most memorable criminals, car chases and moments. (repeat). + + Dale Dimmick + + Reality + + TV-PG + + + + Sidebar + (new). + + + Jail + (repeat). + + TV-14 + + + + Jail + (repeat). + + TV-14 + + + + Cops Reloaded + Newly edited episodes showcase the show's most memorable criminals, car chases and moments. (repeat). + + Dale Dimmick + + Reality + + TV-PG + + + + Cops Reloaded + Newly edited episodes showcase the show's most memorable criminals, car chases and moments. (repeat). + + Dale Dimmick + + Reality + + TV-PG + + + + Jail + (repeat). + + TV-14 + + + + Jail + (repeat). + + TV-14 + + + + Trial File + (repeat). + 2020 + + + Justice Rules + A documentary programme on peace and justice. (repeat). + 2020 + Educational + + + Cops Reloaded + Newly edited episodes showcase the show's most memorable criminals, car chases and moments. (repeat). + + Dale Dimmick + + Reality + + TV-PG + + + + Prime Crime + (repeat). + 2021 + + + Prime Crime + (repeat). + 2021 + + + Prime Crime + (repeat). + 2021 + + + Trial File + (repeat). + 2020 + + + Justice Rules + A documentary programme on peace and justice. (repeat). + 2020 + Educational + + + Cops Reloaded + Newly edited episodes showcase the show's most memorable criminals, car chases and moments. (repeat). + + Dale Dimmick + + Reality + + TV-PG + + + + Prime Crime + (repeat). + 2021 + + + Jail + (repeat). + + TV-14 + + + + Jail + (repeat). + + TV-14 + + + + Cops Reloaded + Newly edited episodes showcase the show's most memorable criminals, car chases and moments. (repeat). + + Dale Dimmick + + Reality + + TV-PG + + + + Cops Reloaded + Newly edited episodes showcase the show's most memorable criminals, car chases and moments. (repeat). + + Dale Dimmick + + Reality + + TV-PG + + + + Trial File + (repeat). + 2020 + + + Justice Rules + A documentary programme on peace and justice. (repeat). + 2020 + Educational + + + Hitman Conspiracy Trial + (repeat). + + + Hitman Conspiracy Trial + (repeat). + + + Hitman Conspiracy Trial + (repeat). + + + Hitman Conspiracy Trial + (repeat). + + + Hitman Conspiracy Trial + (repeat). + + + Live: Hitman Conspiracy Trial + (new). + + + Live: Hitman Conspiracy Trial + (new). + + + Live: Hitman Conspiracy Trial + (new). + + + Live: Hitman Conspiracy Trial + (new). + + + Live: Hitman Conspiracy Trial + (new). + + + Live: Hitman Conspiracy Trial + (new). + + + Live: Hitman Conspiracy Trial + (new). + + + Cops Reloaded + Newly edited episodes showcase the show's most memorable criminals, car chases and moments. (repeat). + + Dale Dimmick + + Reality + + TV-PG + + + + Sidebar + (new). + + + Jail + (repeat). + + TV-14 + + + + Jail + (repeat). + + TV-14 + + + + Guiding You Home + Local + + + + Metabeats + Fitness trainers Toni and Jim Saret demonstrate numerous physical exercises to help fitness enthusiasts learn more about the different varieties of workout routines. + Local + + + + Search Hawaii + Local + Performing Arts + + + + Close Up + Performing Arts + + + + Bazaar + Performing Arts + + + + Just Go + Variety + + + + Places We Go + Jennifer Adams explores places and meets people while traveling around the world. + Travel + + + TVPG + + + + Homes of Brazil + Documentary + + + + Top Million Dollar Agent + A reality series about the real estate market in the GTA. + Reality TV + + + TVG + + + + Metabeats + Fitness trainers Toni and Jim Saret demonstrate numerous physical exercises to help fitness enthusiasts learn more about the different varieties of workout routines. + Local + + + + The Posh Pescatarian + Food + + + + Search Hawaii + Local + Performing Arts + + + + Bazaar + Performing Arts + + + + Bare Feet + Local + + + + Places We Go + Jennifer Adams explores places and meets people while traveling around the world. + Travel + + + TVPG + + + + Travel Thru History + Destinations around the United States. + Travel + History + + + + Top Million Dollar Agent + A reality series about the real estate market in the GTA. + Reality TV + + + TVG + + + + Metabeats + Fitness trainers Toni and Jim Saret demonstrate numerous physical exercises to help fitness enthusiasts learn more about the different varieties of workout routines. + Local + + + + The Posh Pescatarian + Food + + + + Search Hawaii + Local + Performing Arts + + + + Close Up + Performing Arts + + + + Bazaar + Performing Arts + + + + Bare Feet + Local + + + + Places We Go + Jennifer Adams explores places and meets people while traveling around the world. + Travel + + + TVPG + + + + Travel Thru History + Destinations around the United States. + Travel + History + + + + Top Million Dollar Agent + A reality series about the real estate market in the GTA. + Reality TV + + + TVG + + + + Metabeats + Fitness trainers Toni and Jim Saret demonstrate numerous physical exercises to help fitness enthusiasts learn more about the different varieties of workout routines. + Local + + + + The Posh Pescatarian + Food + + + + Search Hawaii + Local + Performing Arts + + + + Close Up + Performing Arts + + + + Bazaar + Performing Arts + + + + Just Go + Variety + + + + Places We Go + Jennifer Adams explores places and meets people while traveling around the world. + Travel + + + TVPG + + + + Travel Thru History + Destinations around the United States. + Travel + History + + + + Top Million Dollar Agent + A reality series about the real estate market in the GTA. + Reality TV + + + TVG + + + + Belo 101 + Performing Arts + + + + Green Mind + Local + + + + Korean Food Made Simple + Executive chef and food writer Judy Joo embarks on a culinary journey through South Korea. + Food + + + TVG + + + + NZ On a Plate + Local + + + + Trending Now + Local + + + + It Takes Gutz to be a Gutierrez + Local + + + + Spa Seekers + From Bali to the Maldives and from Thailand to Taiwan, actress and supermodel Jaymee Ong and her sister Lindsay spare no effort on finding the best spas on the continent. + Travel + + + TVPG + + + + Bare Feet + Local + + + + Lifestyle Network Specials + Specials + + + + Feng Shui Living + Feng shui intervention. + Health + + + TVPG + + + + Belo 101 + Performing Arts + + + + Green Mind + Local + + + + Korean Food Made Simple + Executive chef and food writer Judy Joo embarks on a culinary journey through South Korea. + Food + + + TVG + + + + NZ On a Plate + Local + + + + Bare Feet + Local + + + + Travel Thru History + Destinations around the United States. + Travel + History + + + + Spa Seekers + From Bali to the Maldives and from Thailand to Taiwan, actress and supermodel Jaymee Ong and her sister Lindsay spare no effort on finding the best spas on the continent. + Travel + + + TVPG + + + + Bare Feet + Local + + + + Lifestyle Network Specials + Specials + + + + Fresh Cut + Short film competition. + Specials + Awards + + + + Belo 101 + Performing Arts + + + + Green Mind + Local + + + + Korean Food Made Simple + Executive chef and food writer Judy Joo embarks on a culinary journey through South Korea. + Food + + + TVG + + + + NZ On a Plate + Local + + + + Modern Girls + Local + + + + Wise Up + Regular + + + + Spa Seekers + From Bali to the Maldives and from Thailand to Taiwan, actress and supermodel Jaymee Ong and her sister Lindsay spare no effort on finding the best spas on the continent. + Travel + + + TVPG + + + + Bare Feet + Local + + + + Lifestyle Network Specials + Specials + + + + Green Living + Environmental + + + TVPG + + + + Belo 101 + Performing Arts + + + + Green Mind + Local + + + + Korean Food Made Simple + Executive chef and food writer Judy Joo embarks on a culinary journey through South Korea. + Food + + + TVG + + + + NZ On a Plate + Local + + + + Places We Go + Jennifer Adams explores places and meets people while traveling around the world. + Travel + + + TVPG + + + + Spa Seekers + From Bali to the Maldives and from Thailand to Taiwan, actress and supermodel Jaymee Ong and her sister Lindsay spare no effort on finding the best spas on the continent. + Travel + + + TVPG + + + + Bare Feet + Local + + + + Lifestyle Network Specials + Specials + + + + Fresh Cut + Short film competition. + Specials + Awards + + + + Trending Now + Local + + + + Wise Up + Regular + + + + Cooking Hawaiian Style + Host Lanai Tabura and local chefs and celebrities create culinary delights using local ingredients while supporting Hawaii's local products and produce. + Food + + + + A Taste of Travel + Explorers journey to idyllic places to try local cuisine, find out what destinations have to offer and share travel trips along the way. + Travel + + + + Hollywood Newsfeed + Performing Arts + + + + On Your Marc + Performing Arts + + + + Explore Asia + Travel + + + + Elite Access + Local + + + + The World Tonight + The hosts present a round-up of the latest political, social, and business news of the day and deliver key updates from around the world. + News + News Magazine + + + TVPG + + + + Interior Motives + Local + + + + Homes of Brazil + Documentary + + + + Trending Now + Local + + + + Wise Up + Regular + + + + Cooking Hawaiian Style + Host Lanai Tabura and local chefs and celebrities create culinary delights using local ingredients while supporting Hawaii's local products and produce. + Food + + + + A Taste of Travel + Explorers journey to idyllic places to try local cuisine, find out what destinations have to offer and share travel trips along the way. + Travel + + + + Hollywood Newsfeed + Performing Arts + + + + On Your Marc + Performing Arts + + + + Explore Asia + Travel + + + + Elite Access + Local + + + + Trending Now + Local + + + + Wise Up + Regular + + + + Interior Motives + Local + + + + Homes of Brazil + Documentary + + + + The World Tonight + The hosts present a round-up of the latest political, social, and business news of the day and deliver key updates from around the world. + News + News Magazine + + + TVPG + + + + Cooking Hawaiian Style + Host Lanai Tabura and local chefs and celebrities create culinary delights using local ingredients while supporting Hawaii's local products and produce. + Food + + + + A Taste of Travel + Explorers journey to idyllic places to try local cuisine, find out what destinations have to offer and share travel trips along the way. + Travel + + + + Hollywood Newsfeed + Performing Arts + + + + On Your Marc + Performing Arts + + + + Explore Asia + Travel + + + + Elite Access + Local + + + + It Takes Gutz to be a Gutierrez + Local + + + + Wise Up + Regular + + + + Interior Motives + Local + + + + Homes of Brazil + Documentary + + + + Trending Now + Local + + + + Wise Up + Regular + + + + Cooking Hawaiian Style + Host Lanai Tabura and local chefs and celebrities create culinary delights using local ingredients while supporting Hawaii's local products and produce. + Food + + + + A Taste of Travel + Explorers journey to idyllic places to try local cuisine, find out what destinations have to offer and share travel trips along the way. + Travel + + + + Hollywood Newsfeed + Performing Arts + + + + On Your Marc + Performing Arts + + + + Explore Asia + Travel + + + + Elite Access + Local + + + + Trending Now + Local + + + + Green Mind + Local + + + + Interior Motives + Local + + + + Homes of Brazil + Documentary + + + + Rock Your Yoga + Everyday yoga poses and alignment tips; tips for common ailments and nutrition ideas. + Health + + + TVPG + + + + Food Prints + Host Sandy Daza travels around the world to discover authentic cuisines and experiments with a variety of ingredients and flavors. + Food + + + + Close Up + Performing Arts + + + + Places We Go + Jennifer Adams explores places and meets people while traveling around the world. + Travel + + + TVPG + + + + The World Tonight + The hosts present a round-up of the latest political, social, and business news of the day and deliver key updates from around the world. + News + News Magazine + + + TVPG + + + + Gardening 101 + Local + + + + Modern Living + Regular + + + TVPG + + + + Rock Your Yoga + Everyday yoga poses and alignment tips; tips for common ailments and nutrition ideas. + Health + + + TVPG + + + + Food Prints + Host Sandy Daza travels around the world to discover authentic cuisines and experiments with a variety of ingredients and flavors. + Food + + + + Close Up + Performing Arts + + + + Places We Go + Jennifer Adams explores places and meets people while traveling around the world. + Travel + + + TVPG + + + + Rock Your Yoga + Everyday yoga poses and alignment tips; tips for common ailments and nutrition ideas. + Health + + + TVPG + + + + Gardening 101 + Local + + + + Trending Now + A selection of the hits making waves on social media. + Performing Arts + + + TVPG + + + + The World Tonight + The hosts present a round-up of the latest political, social, and business news of the day and deliver key updates from around the world. + News + News Magazine + + + TVPG + + + + Food Prints + Host Sandy Daza travels around the world to discover authentic cuisines and experiments with a variety of ingredients and flavors. + Food + + + + Close Up + Performing Arts + + + + Places We Go + Jennifer Adams explores places and meets people while traveling around the world. + Travel + + + TVPG + + + + Guiding You Home + Local + + + + Top Billion Dollar Agent + Local + + + + Gardening 101 + Local + + + + Modern Living + Regular + + + TVPG + + + + Rock Your Yoga + Everyday yoga poses and alignment tips; tips for common ailments and nutrition ideas. + Health + + + TVPG + + + + Food Prints + Host Sandy Daza travels around the world to discover authentic cuisines and experiments with a variety of ingredients and flavors. + Food + + + + Close Up + Performing Arts + + + + Places We Go + Jennifer Adams explores places and meets people while traveling around the world. + Travel + + + TVPG + + + + Killer Cheer Mom + After moving to a new town, Riley hopes to make some friends by trying out for the high-school cheer squad. However, when other students get expelled or injured under mysterious circumstances, Riley starts to suspect her stepmother is involved. + + Denise Richards + Thomas Calabro + Courtney Fulk + + 2021 + Movies + Thriller + + + TV14 + + + + Young, Stalked and Pregnant + High school senior Audrey is accepted at a top university when she finds herself pregnant by her boyfriend, who insists on marriage and a family. When Audrey makes plans for the future without him, he decides to take matters into his own hands. + + Lindsay Hartley + Taylor Blackwell + Tanya Clarke + + 2020 + Movies + Thriller + + + TV14 + + + + Cheerleader Abduction + A gubernatorial candidate links her missing, pregnant daughter to an underground adoption ring. + + Jerni Stewart + Kristen Harris + Sarah Constible + + 2020 + Movies + Thriller + + + + Cheerleader Abduction + A gubernatorial candidate links her missing, pregnant daughter to an underground adoption ring. + + Jerni Stewart + Kristen Harris + Sarah Constible + + 2020 + Movies + Thriller + + + + Young, Stalked and Pregnant + High school senior Audrey is accepted at a top university when she finds herself pregnant by her boyfriend, who insists on marriage and a family. When Audrey makes plans for the future without him, he decides to take matters into his own hands. + + Lindsay Hartley + Taylor Blackwell + Tanya Clarke + + 2020 + Movies + Thriller + + + TV14 + + + + Cheerleader Abduction + A gubernatorial candidate links her missing, pregnant daughter to an underground adoption ring. + + Jerni Stewart + Kristen Harris + Sarah Constible + + 2020 + Movies + Thriller + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Cindy Crawford and Ellen Pompeo share secrets + Join Cindy Crawford and Ellen Pompeo as they discuss their busy lives and the breakthrough skin care discovery that keeps them looking their best. Take a trip to the stunning French countryside to see a rare French melon that defies aging. + Paid Program + + + + CHRISTINA HALL and Jacuzzi® amazing bathroom makeovers + SPECIAL OFFER + Trusted brand Jacuzzi® and renowned interior designer, Christina Hall can help you transform your old bathroom into a gorgeous custom, safe and stylish space. Jacuzzi® has limited time special offers to make your dream bathroom happen today CALL NOW. + Paid Program + Home + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + Psycho Brother-in-Law + Kate's brother-in-law David has been a blessing around the house while her husband is working. But when his behavior starts getting out of line, Kate realizes that David will do anything it takes to be the new head of the family. + + Brittany Falardeau + Zach Gold + Mike Duff + + 2018 + Movies + Thriller + + + TV14 + + + + Psycho In-Law + Tina's only obstacle to a happy marriage with Brock is Joyce, Brock's former mother-in-law, who is determined to stop their marriage at any cost. + + Katie Leclerc + Catherine Dyer + Mike Faiola + + 2017 + Movies + Drama + + + TV14 + + + + Deceived by My Mother-in-Law + A woman's life takes a turn for the worse when her mother-in-law moves in and she discovers her ulterior motives. + + Allison McAtee + Dey Young + Jackée Harry + + 2021 + Movies + Thriller + + + TV14 + + + + Psycho Mother-in-Law + A woman is looking forward to her upcoming marriage until her mother shows up for a visit and enters into an increasingly psychotic battle with her future mother-in-law for her daughter's affection. + + Victoria Diamond + Romy Rosemont + Kari Matchett + + 2019 + Movies + Thriller + + + TVPG + + + + Murder In-Law + A woman is pushed to the breaking point when her daughter-in-law announces her intention to relocate with her family. Now, she will do whatever it takes to prevent her son and her granddaughter from moving away with the woman. + + Kristen Dalton + Tony Denison + Barbara Williams + + 2019 + Movies + Thriller + + + TV14 + + + + Psycho Sister-in-Law + A woman hatches a devious scheme to claim a family inheritance. + + Andrea Bowen + Lydia Hearst + Brando Eaton + + 2020 + Movies + Thriller + + + TV14 + + + + Who Killed Our Father? + After the death of her foster sister, Leila takes a DNA test and discovers the identity of her biological father and sister. However, when her father is tragically murdered, she soon finds herself in more danger than she ever could have imagined. + + Kirsten Comerford + Devin Cecchetto + Joanne Boland + + 2023 + Movies + Thriller + + + + Sins in the Family + Zara lives an idyllic life with husband Max and their adopted daughter, Rose, in their beautiful home. When school counselor Hayley gets strangely close to her daughter and puts Zara on edge, she confesses she is Rose's birth mom. + + Natalie Sharp + Moniqua Plante + Meghan Heffern + + 2023 + Movies + Drama + + + + She Is Not Your Daughter + The past comes back to haunt and threaten a family when a woman learns her teenage daughter is not her flesh and blood. + + Alicia Leigh Willis + Emily Topper + Jon Bridell + + 2022 + Movies + Thriller + + + TV14 + + + + Sins in the Family + Zara lives an idyllic life with husband Max and their adopted daughter, Rose, in their beautiful home. When school counselor Hayley gets strangely close to her daughter and puts Zara on edge, she confesses she is Rose's birth mom. + + Natalie Sharp + Moniqua Plante + Meghan Heffern + + 2023 + Movies + Drama + + + + She Is Not Your Daughter + The past comes back to haunt and threaten a family when a woman learns her teenage daughter is not her flesh and blood. + + Alicia Leigh Willis + Emily Topper + Jon Bridell + + 2022 + Movies + Thriller + + + TV14 + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Stalker's Prey + Laura's (Saxon Sharbino) life is changed forever after she is saved from a shark attack. Bruce (Mason Dye), the man who rescued her, begins to believe that she is not showing him the proper gratitude that a. + + Cynthia Gibb + Saxon Sharbino + Mason Dye + + 2017 + Movies + Thriller + + + TV14 + + + + A Predator's Obsession + A young man named Daniel saves Alison and her younger brother from a vicious shark attack at the beach. Welcomed into their home, Alison soon discovers that her mysterious savior and protector has a dark and disturbing past. + + Houston Stevenson + Julia Blanchard + Felicity Mason + + 2020 + Movies + Thriller + + + TV14 + + + + A Predator Returns + A teen takes matters into her own hands when a man who's posing as a shark researcher becomes obsessed with her. + + Houston Stevenson + Leigha Sinnott + Hannah Jane McMurray + + 2021 + Movies + Thriller + + + + Deadly Excursion: Kidnapped From the Beach + Foiled kidnappers return to finish the job as an unsuspecting woman and her daughter vacation in Florida. + + Samaire Armstrong + Corin Nemec + Alexandria Deberry + + 2021 + Movies + Thriller + + + + Killer Vacation + Jake takes his pregnant girlfriend, Lindsey, to an upscale resort. When they arrive, Lindsey discovers that Jake's soon-to-be-ex is there. Soon, it becomes apparent that someone is determined to make sure that Lindsey never uses her return ticket. + + Alexa Havins + Jacob Young + + 2018 + Movies + Thriller + + + TV14 + + + + Spring Break Nightmare + A woman travels to an island paradise when her daughter, Kayla, goes missing during a spring break trip with friends. As she tries to deal with the kidnappers' demands, she soon learns that Kayla may have been betrayed by those closest to her. + + Kristi McKamie + Kalen Bull + Grace Patterson + + 2023 + Movies + Horror + + + + Temptation Under the Sun + While vacationing on an exotic island, Detective Cassady Cruz begins a torrid affair with an expat named Travis. However, when he becomes the main suspect in the death of his ex-girlfriend, Cassady tries to clear his name by finding the real killer. + + Annika Foster + Mike Markoff + Scott Christopher + + 2022 + Movies + Thriller + + + TV14 + + + + Danger Below Deck + Two influencers find themselves on a luxury cruise through the Caribbean and South Pacific, but a battle of wills threatens to tear them apart as the mirage of their online personas begins to clash with their real-life ambitions. + + Katherine McNamara + Jasmine Sky Sarin + Éric Bruneau + + 2022 + Movies + Thriller + + + + Road Trip Hostage + A deranged criminal forces a young woman to drive him across the country. + + Veronica Ramirez + Lukas Stafford + Chala Savino + + 2023 + Movies + Thriller + + + TVPG + + + + Danger Below Deck + Two influencers find themselves on a luxury cruise through the Caribbean and South Pacific, but a battle of wills threatens to tear them apart as the mirage of their online personas begins to clash with their real-life ambitions. + + Katherine McNamara + Jasmine Sky Sarin + Éric Bruneau + + 2022 + Movies + Thriller + + + + Road Trip Hostage + A deranged criminal forces a young woman to drive him across the country. + + Veronica Ramirez + Lukas Stafford + Chala Savino + + 2023 + Movies + Thriller + + + TVPG + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Cindy Crawford and Ellen Pompeo share secrets + Join Cindy Crawford and Ellen Pompeo as they discuss their busy lives and the breakthrough skin care discovery that keeps them looking their best. Take a trip to the stunning French countryside to see a rare French melon that defies aging. + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Stalked by My Doctor + A doctor's (Eric Roberts) obsession with a teenage patient (Brianna Chomer) turns violent and dangerous. + + Eric Roberts + Brianna Chomer + Deborah Zoe + + 2015 + Movies + Thriller + + + TV14 + + + + Stalked by My Doctor: The Return + After saving a girl's (Claire Blackwelder) life in Mexico, a doctor (Eric Roberts) shows back up at her home town school, ready to pursue his obsession with her. + + Eric Roberts + Claire Blackwelder + Hilary Greer + + 2016 + Movies + Thriller + + + TV14 + + + + Stalked by My Doctor: A Sleepwalker's Nightmare + After assuming the identity of a doctor at a sleep clinic, the devious Dr. Albert Beck falls for a patient and her beautiful niece -- two women who suffer from a similar condition. + + Eric Roberts + Emilie Ullerup + Angeline Appel + + 2019 + Movies + Thriller + + + + The Doctor Will Kill You Now + After a skiing accident, Sarah's life is saved thanks to a brilliant surgeon, Dr. Vincent. But when Dr. Vincent mistakes Sarah's gratitude for love, he becomes obsessed with her, determined to have her at any cost. + + Gina Vitori + Anthony Jensen + Matthew Pohlkamp + + 2019 + Movies + Thriller + + + TVPG + + + + Just What the Doctor Ordered + A recently widowed mother and her 18-year-old daughter unwittingly move into a house where an escaped psychiatric prisoner is hiding out. + + Eric Roberts + Grace Patterson + Carrie Schroeder + + 2021 + Movies + Thriller + + + + Killer Advice + When Beth suffers a traumatic attack, her family and friends suggest she see a therapist to help her cope. However, her new therapist gives her more than she bargained for. + + Kate Watson + Meredith Thomas + Steve Richard Harris + + 2021 + Movies + Thriller + + + TV14 + + + + Stalked by My Patient + A troubled patient mistakes a doctor's compassion for adoration and becomes obsessed, willing to do whatever it takes to keep her in his life. + + Bree Williamson + Eddie Matos + Laura Wright + + 2018 + Movies + Thriller + + + TV14 + + + + My Doctor's Secret Life + A successful psychologist remains traumatized over her passionate relationship with a former patient who sank into a deep depression and died in a car accident. + + Jessica Morris + Taylor Castro + Jason Tobias + + 2023 + Movies + Thriller + + + + Revenge for My Mother + Audrey teaches postnatal fitness to a group of moms who bring their baby strollers to the park, but when her recently hired assistant secretly starts exacting revenge, Audrey's perfect world erupts into madness. + + Sami Nye + Taylor Joree Scorse + Jason Tobias + + 2022 + Movies + Thriller + + + + My Doctor's Secret Life + A successful psychologist remains traumatized over her passionate relationship with a former patient who sank into a deep depression and died in a car accident. + + Jessica Morris + Taylor Castro + Jason Tobias + + 2023 + Movies + Thriller + + + + Revenge for My Mother + Audrey teaches postnatal fitness to a group of moms who bring their baby strollers to the park, but when her recently hired assistant secretly starts exacting revenge, Audrey's perfect world erupts into madness. + + Sami Nye + Taylor Joree Scorse + Jason Tobias + + 2022 + Movies + Thriller + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + My Daughter Must Live + Desperate to find a liver donor for her child, a woman tries to track down the girl's biological father. + + Joelle Carter + Madeleine Martin + Paul Popowich + + 2014 + Movies + Thriller + + + TVG + + + + Secrets of My Stepdaughter + Although Cindy tries to protect her stepdaughter Rachel after the teen witnesses the murder of her best friend, she must soon come to grips with the terrifying possibility that Rachel is the killer. + + Josie Davis + Tiera Skovbye + Cameron Bancroft + + 2017 + Movies + Thriller + + + TVPG + + + + The Babysitter's Revenge + When a teenager discovers that the neighborhood gossip may be to blame for a humiliating scandal, she is determined to exact revenge, even if it means ruining other lives. + + Bree Turner + Aviva Mongillo + Steve Byers + + 2020 + Movies + Thriller + + + + A Daughter's Revenge + Elle devises a terrifying plan to use her friend Anna, who will be released from jail soon, as the instrument of revenge on her stepfather. + + Jessica Sipos + Linden Ashby + Sierra Wooldridge + + 2018 + Movies + Thriller + + + TV14 + + + + My Daughter's Psycho Friend + A devious and psychotic student tries to frame a new girl at school for a teen's accidental death at a party. + + Taylor Blackwell + Avery Pohl + Cerina Vincent + + 2020 + Movies + Thriller + + + TVPG + + + + You're Not Supposed to Be Here + A woman and her pregnant partner retreat to a beautiful cabin in a remote mountain town. However, their peaceful getaway soon turns into a living nightmare when they realize the local townspeople have something they want. + + Chrishell Stause + Diora Baird + Curtis Hamilton + + 2023 + Movies + Thriller + + + + Abducted by My Teacher: The Elizabeth Thomas Story + The story of Elizabeth Thomas, a 15-year-old high school student who was groomed and abducted by teacher Tad Cummins. + + Michael Fishman + Summer Howell + + 2023 + Movies + Docu-Drama + + + + You're Not Supposed to Be Here + A woman and her pregnant partner retreat to a beautiful cabin in a remote mountain town. However, their peaceful getaway soon turns into a living nightmare when they realize the local townspeople have something they want. + + Chrishell Stause + Diora Baird + Curtis Hamilton + + 2023 + Movies + Thriller + + + + Abducted by My Teacher: The Elizabeth Thomas Story + The story of Elizabeth Thomas, a 15-year-old high school student who was groomed and abducted by teacher Tad Cummins. + + Michael Fishman + Summer Howell + + 2023 + Movies + Docu-Drama + + + + Abducted by My Teacher: The Elizabeth Thomas Story + The story of Elizabeth Thomas, a 15-year-old high school student who was groomed and abducted by teacher Tad Cummins. + + Michael Fishman + Summer Howell + + 2023 + Movies + Docu-Drama + + + + Bye Bye Neck Pain + Manage and relieve head, neck and shoulder pain on your terms with DR-HO'S Neck Pain Pro! + Paid Program + Science + + + + H2O X5 - Super Powerful 5-In-1 Multi-Use Steam Cleaner + Kills 990f Bacteria, Viruses, and Germs with Steam! The 5-in-1 Lightweight, Fast, Powerful, And Completely Chemical Free Steam Cleaner! Lift and remove dirt and stains all around the home! + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Creflo Dollar + Dr. Creflo Dollar ministers to people from all backgrounds with hopes for change; Creflo helps viewers find ways to renew their faith, mind, and spirit; Creflo and his wife Taffi share their vision for everyone to understand God's love and promises. + Religious + + + TVG + + + + Stories of Love to the Rescue by Shriners Hospitals for Children® + Alec and Kaleb interview patients and their families, and how their lives have been changed because of the life-changing pediatric specialty care they received at Shriners Hospitals for Children®. + Paid Program + + + + Harvest With Pastor Greg Laurie + Pastor and evangelist Greg Laurie teaches the simple and life-changing message of the Gospel. + Religious + + + TVG + + + + Amazing Facts With Doug Batchelor + The King Returns Pt. 2 + The great climax of the world's history is going to be when Christ comes and He sets everything right. Part 2 of 2. + Religious + + + TVG + + + + David Jeremiah + Salvation in the Tribulation + David Jeremiah looks at the Tribulation. + Religious + + + TVG + + + + Joel Osteen + Joel and Victoria Osteen's message of unconditional love and unending hope reaches everyone across the world. + Religious + + + TVPG + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + The Neighbors Are Watching + A woman must confront her dark past after she witnesses her handsome new neighbor commit a grisly murder. + + Kabby Borders + Will Holland + Elena Kent + + 2023 + Movies + Thriller + + + + Babysitter's Black Book + Desperate for money, a teen and her girlfriends turn their baby-sitting business into an escort service. + + Spencer Locke + Perrey Reeves + Ryan McPartlin + + 2015 + Movies + Drama + + + TV14 + + + + You're Not Supposed to Be Here + A woman and her pregnant partner retreat to a beautiful cabin in a remote mountain town. However, their peaceful getaway soon turns into a living nightmare when they realize the local townspeople have something they want. + + Chrishell Stause + Diora Baird + Curtis Hamilton + + 2023 + Movies + Thriller + + + + A Lifeguard's Obsession + When a lonely, awkward lifeguard saves a well-known woman from drowning, he believes he's earned a place in her life and in her heart. + + Amanda Jones + Christian Howard + + 2023 + Movies + Thriller + + + + Maid for Revenge + When a struggling young maid wakes up next to her client's pool covered in blood, she discovers the owner dead in the water and her 8-year-old son's life in jeopardy. With no memory of what happened, she races to uncover the truth. + + Kathryn Kohut + Matt Wells + Barbara Gordon + + 2023 + Movies + Thriller + + + + Obsessed to Death + Cassie becomes obsessed with the woman who stole her man away from her. + + Holland Roden + Colton Royce + Kathryn Kohut + + 2022 + Movies + Thriller + + + + Obsessed With the Babysitter + Elaine, an injured dancer, catches the eye of a psychologist who believes she's the perfect woman. Realizing he's manipulating her mind, Elaine must escape from his clutches before she becomes another casualty in his psychotic study. + + Hannah Aniela + Lyla Emersen Booker + Simon Haycock + + 2021 + Movies + Thriller + + + TV14 + + + + Obsessed to Death + Cassie becomes obsessed with the woman who stole her man away from her. + + Holland Roden + Colton Royce + Kathryn Kohut + + 2022 + Movies + Thriller + + + + Obsessed to Death + Cassie becomes obsessed with the woman who stole her man away from her. + + Holland Roden + Colton Royce + Kathryn Kohut + + 2022 + Movies + Thriller + + + + Obsessed With the Babysitter + Elaine, an injured dancer, catches the eye of a psychologist who believes she's the perfect woman. Realizing he's manipulating her mind, Elaine must escape from his clutches before she becomes another casualty in his psychotic study. + + Hannah Aniela + Lyla Emersen Booker + Simon Haycock + + 2021 + Movies + Thriller + + + TV14 + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Creflo Dollar + Dr. Creflo Dollar ministers to people from all backgrounds with hopes for change; Creflo helps viewers find ways to renew their faith, mind, and spirit; Creflo and his wife Taffi share their vision for everyone to understand God's love and promises. + Religious + + + TVG + + + + Life Today With James Robison + James and Betty Robison host guests who speak on a variety of topics, offering hope and help. + Talk Shows + Religious + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + Author and Bible teacher Joyce Meyer shares encouragement to help people enjoy daily life. + Religious + + + TVG + + + + The Balancing Act + Taking Care of Your Health + Discovering the X factor of chronic wound care with BLASTX; choosing supplemental health insurance; Life Cereal, a healthy breakfast option. + Talk Shows + News Magazine + + + TVPG + + + + Grey's Anatomy + Where the Wild Things Are + Six weeks after Derek and Meredith ended their relationship, Meredith, Alex, Izzie and Cristina compete in a surgical contest, with Bailey serving as judge; George and Lexie adjust to their new, squalid apartment; Callie finds a friend in Erica. + + Ellen Pompeo + Patrick Dempsey + Sandra Oh + + Drama + + + TV14 + + + + Grey's Anatomy + Piece of My Heart + Addison returns to Seattle Grace to perform an operation and is surprised by all the changes in the lives of her former co-workers; Derek and Meredith's clinical trial has its first patient; Rebecca returns with shocking news for Alex. + + Ellen Pompeo + Patrick Dempsey + Sandra Oh + + Drama + + + TV14 + + + + Grey's Anatomy + The Becoming + The nurses' complaints about Mark Sloan's trysts result in a date-and-tell policy; Cristina is forced to face her feelings for Burke; Meredith and Derek admit a veteran into their clinical trial. + + Ellen Pompeo + Patrick Dempsey + Sandra Oh + + Drama + + + TV14 + + + + Major Crimes + Rules of Engagement + A case deals with gang violence and social profiling; Sharon offers Jack the opportunity to be a court-appointed attorney in a case; Rusty is worried about meeting Kris' parents. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Major Crimes + The Deep End + A media frenzy begins when the body of a Latino man is found at the home of a swimming coach; Flynn struggles with an emotional dilemma; Kris' mother visits Raydor to discuss some concerns. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Major Crimes + There's No Place Like Home + Provenza faces possible permanent desk duty; the squad investigates the death of an ICE agent which leads them to the residents of an old apartment complex. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Rizzoli & Isles + The Beast in Me + An investigation leads Jane into Boston's checkered past when an identity thief is murdered; Maura goes on a personal quest. + + Angie Harmon + Sasha Alexander + Lorraine Bracco + + Drama + + + TV14 + + + + Rizzoli & Isles + When the Gun Goes Bang, Bang, Bang + Killers target the Boston homicide headquarters, trapping Jane, Maura and Frankie Jr. in a fight for their survival. + + Angie Harmon + Sasha Alexander + Lorraine Bracco + + Drama + + + TV14 + + + + Rizzoli & Isles + Living Proof + While trying to have a relaxing day at an outdoor spa, Jane and Maura discover the murder of a pregnant woman. + + Angie Harmon + Sasha Alexander + Lorraine Bracco + + Drama + + + TV14 + + + + Castle + After the Storm + Castle and Beckett set aside questions about their relationship in order to take on the forces responsible for the murder of Beckett's mother. + + Nathan Fillion + Stana Katic + Susan Sullivan + + Comedy + Drama + + + TVPG + + + + Castle + Cloudy With a Chance of Murder + On Beckett's first day back from suspension, she and Castle investigate a weathercaster's death, and try to hide their relationship from their co-workers. + + Nathan Fillion + Stana Katic + Susan Sullivan + + Comedy + Drama + + + TVPG + + + + Castle + Secret's Safe With Me + When a woman is murdered, Castle and Beckett think a repossessed storage unit may have a connection to her death. + + Nathan Fillion + Stana Katic + Susan Sullivan + + Comedy + Drama + + + TVPG + + + + Castle + Murder, He Wrote + Castle's plans with Beckett are disrupted when a dying man stumbles into his backyard and collapses in his pool. + + Nathan Fillion + Stana Katic + Susan Sullivan + + Comedy + Drama + + + TVPG + + + + Castle + Probable Cause + The investigation into a ritualistic murder turns up evidence linking Castle to the crime, leading Beckett to wonder how well she really knows him. + + Nathan Fillion + Stana Katic + Susan Sullivan + + Comedy + Drama + + + TVPG + + + + Castle + The Final Frontier + As Beckett and Castle investigate a murder at a sci-fi convention, they encounter avid fans in costume, egotistical celebrities and a lot of drama. + + Nathan Fillion + Stana Katic + Susan Sullivan + + Comedy + Drama + + + TVPG + + + + Castle + Swan Song + A documentary crew follows Castle, Beckett and the team as they investigate the murder of a rock band's lead guitarist. + + Nathan Fillion + Stana Katic + Susan Sullivan + + Comedy + Drama + + + TVPG + + + + Castle + Murder, He Wrote + Castle's plans with Beckett are disrupted when a dying man stumbles into his backyard and collapses in his pool. + + Nathan Fillion + Stana Katic + Susan Sullivan + + Comedy + Drama + + + TVPG + + + + Castle + Murder, He Wrote + Castle's plans with Beckett are disrupted when a dying man stumbles into his backyard and collapses in his pool. + + Nathan Fillion + Stana Katic + Susan Sullivan + + Comedy + Drama + + + TVPG + + + + Castle + Probable Cause + The investigation into a ritualistic murder turns up evidence linking Castle to the crime, leading Beckett to wonder how well she really knows him. + + Nathan Fillion + Stana Katic + Susan Sullivan + + Comedy + Drama + + + TVPG + + + + Castle + The Final Frontier + As Beckett and Castle investigate a murder at a sci-fi convention, they encounter avid fans in costume, egotistical celebrities and a lot of drama. + + Nathan Fillion + Stana Katic + Susan Sullivan + + Comedy + Drama + + + TVPG + + + + Castle + Swan Song + A documentary crew follows Castle, Beckett and the team as they investigate the murder of a rock band's lead guitarist. + + Nathan Fillion + Stana Katic + Susan Sullivan + + Comedy + Drama + + + TVPG + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Creflo Dollar + Dr. Creflo Dollar ministers to people from all backgrounds with hopes for change; Creflo helps viewers find ways to renew their faith, mind, and spirit; Creflo and his wife Taffi share their vision for everyone to understand God's love and promises. + Religious + + + TVG + + + + Life Today With James Robison + James and Betty Robison host guests who speak on a variety of topics, offering hope and help. + Talk Shows + Religious + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + Author and Bible teacher Joyce Meyer shares encouragement to help people enjoy daily life. + Religious + + + TVG + + + + The Balancing Act + Style Meets Better Health + How to pick the safest beauty products; solutions on managing diabetes with confidence; stylish ways to dress comfortably. + Talk Shows + News Magazine + + + TVPG + + + + Grey's Anatomy + Losing My Mind + Dr. Wyatt refuses to let Meredith give up on therapy; Alex learns the truth about Rebecca's medical condition; the chief insists Erica perform a risky surgery on his mentor. + + Ellen Pompeo + Patrick Dempsey + Sandra Oh + + Drama + + + TV14 + + + + Grey's Anatomy + Freedom + Meredith and Derek get one last shot at success in their clinical trial; the surgeons work together to free a boy from a block of cement; Izzie helps Alex care for Rebecca; Lexie uncovers critical information about George's status as an intern. + + Ellen Pompeo + Patrick Dempsey + Sandra Oh + + Drama + + + TV14 + + + + Grey's Anatomy + Freedom + Meredith and Derek get one last shot at success in their clinical trial; the surgeons work together to free a boy from a block of cement; Izzie helps Alex care for Rebecca; Lexie uncovers critical information about George's status as an intern. + + Ellen Pompeo + Patrick Dempsey + Sandra Oh + + Drama + + + TV14 + + + + Major Crimes + Backfire + A 19-year-old prostitute is brutally murdered; the squad rushes to deal with the killer whom they believe is part of a larger criminal enterprise. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Major Crimes + Poster Boy + The team works to capture a spree killer; Raydor is torn between two decisions; Rusty is given more freedom. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Major Crimes + Pick Your Poison + The squad races to find the dealer of a bad batch of drugs that claimed the lives of two brothers; Rusty faces a big decision. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Rizzoli & Isles + Living Proof + While trying to have a relaxing day at an outdoor spa, Jane and Maura discover the murder of a pregnant woman. + + Angie Harmon + Sasha Alexander + Lorraine Bracco + + Drama + + + TV14 + + + + Rizzoli & Isles + Sailor Man + A girl is found dead shortly after sailors invade Boston for Fleet Week; Frost's father comes to town; Maura goes on a date with Angela's mechanic. + + Angie Harmon + Sasha Alexander + Lorraine Bracco + + Drama + + + TV14 + + + + Rizzoli & Isles + Brown Eyed Girl + When a police officer's daughter is kidnapped, Jane and the team must race to find the girl. + + Angie Harmon + Sasha Alexander + Lorraine Bracco + + Drama + + + TV14 + + + + Castle + After Hours + While retrieving a murder witness, Castle and Beckett are ambushed, forcing them to take the witness on the run. + + Nathan Fillion + Stana Katic + Susan Sullivan + + Comedy + Drama + + + TVPG + + + + Castle + Secret Santa + Castle and Beckett investigate when a bearded man named Kriss Kringle falls from the sky in Central Park; Beckett and Castle work on a Christmas list together. + + Nathan Fillion + Stana Katic + Susan Sullivan + + Comedy + Christmas + + + TVPG + + + + Castle + Significant Others + Several angry ex-husbands come under suspicion when a divorce attorney who only represented women is murdered; when Alexis gets sick, Castle's ex-wife moves into the loft to take care of her. + + Nathan Fillion + Stana Katic + Susan Sullivan + + Comedy + Drama + + + TVPG + + + + Castle + Under the Influence + Castle and Beckett are thrust into New York's raucous music industry as they investigate the murder of an up-and-coming DJ; Esposito takes a troubled teen under his wing. + + Nathan Fillion + Stana Katic + Susan Sullivan + + Comedy + Drama + + + TVPG + + + + Castle + Death Gone Crazy + When the founder of an adult video franchise is murdered, Beckett and Castle are faced with a lengthy list of suspects; Castle is upset when Alexis starts a revealing video blog. + + Nathan Fillion + Stana Katic + Susan Sullivan + + Comedy + Drama + + + TVPG + + + + Castle + Recoil + Castle and Beckett discover evidence that links a young woman's murder to Sen. William H. Bracken (Jack Coleman) -- the man responsible for the murder of Beckett's mother; Beckett faces complications as she tries to finally bring Bracken to justice. + + Nathan Fillion + Stana Katic + Susan Sullivan + + Comedy + Drama + + + TVPG + + + + Castle + Reality Star Struck + The young rising star of. + + Nathan Fillion + Stana Katic + Susan Sullivan + + Comedy + Drama + + + TVPG + + + + Castle + Under the Influence + Castle and Beckett are thrust into New York's raucous music industry as they investigate the murder of an up-and-coming DJ; Esposito takes a troubled teen under his wing. + + Nathan Fillion + Stana Katic + Susan Sullivan + + Comedy + Drama + + + TVPG + + + + Castle + Under the Influence + Castle and Beckett are thrust into New York's raucous music industry as they investigate the murder of an up-and-coming DJ; Esposito takes a troubled teen under his wing. + + Nathan Fillion + Stana Katic + Susan Sullivan + + Comedy + Drama + + + TVPG + + + + Castle + Death Gone Crazy + When the founder of an adult video franchise is murdered, Beckett and Castle are faced with a lengthy list of suspects; Castle is upset when Alexis starts a revealing video blog. + + Nathan Fillion + Stana Katic + Susan Sullivan + + Comedy + Drama + + + TVPG + + + + Castle + Recoil + Castle and Beckett discover evidence that links a young woman's murder to Sen. William H. Bracken (Jack Coleman) -- the man responsible for the murder of Beckett's mother; Beckett faces complications as she tries to finally bring Bracken to justice. + + Nathan Fillion + Stana Katic + Susan Sullivan + + Comedy + Drama + + + TVPG + + + + Castle + Reality Star Struck + The young rising star of. + + Nathan Fillion + Stana Katic + Susan Sullivan + + Comedy + Drama + + + TVPG + + + + Inogen Portable Oxygen - Oxygen Therapy that Moves with You + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Creflo Dollar + Dr. Creflo Dollar ministers to people from all backgrounds with hopes for change; Creflo helps viewers find ways to renew their faith, mind, and spirit; Creflo and his wife Taffi share their vision for everyone to understand God's love and promises. + Religious + + + TVG + + + + Life Today With James Robison + James and Betty Robison host guests who speak on a variety of topics, offering hope and help. + Talk Shows + Religious + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + Author and Bible teacher Joyce Meyer shares encouragement to help people enjoy daily life. + Religious + + + TVG + + + + Military Makeover + Transitioning Veterans to New Careers + Verisign, Daemen University and Champaign-Urbana Mass Transit District are empowering veterans to thrive in new careers, whether in cybersecurity, transportation or higher education. + Home + Instructional + + + TVPG + + + + Grey's Anatomy + Dream a Little Dream of Me + A freak ice storm brings trauma patients to Seattle Grace; Meredith and Derek discover that. + + Ellen Pompeo + Patrick Dempsey + Sandra Oh + + Drama + + + TV14 + + + + Grey's Anatomy + Dream a Little Dream of Me + A freak ice storm brings trauma patients to Seattle Grace; Meredith and Derek discover that. + + Ellen Pompeo + Patrick Dempsey + Sandra Oh + + Drama + + + TV14 + + + + Grey's Anatomy + Here Comes the Flood + A plumbing leak becomes a flood, causing chaos at Seattle Grace; the chief tries to implement new teaching policies; George tries to take his residency exam again; Derek hopes to move Meredith's roommates out of her house. + + Ellen Pompeo + Patrick Dempsey + Sandra Oh + + Drama + + + TV14 + + + + Major Crimes + Jailbait + The squad is called in to track down a newly-released prisoner who has missed two parole meetings; Sharon invites a therapist to evaluate Rusty. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Major Crimes + All In + When a body is found at a country club, the squad's investigation leads them down a money trail; Flynn is distracted on the job; Rusty questions Emma's intentions. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Major Crimes + Curve Ball + When a baseball scout is found dead in his RV, the squad's Christmas vacation is interrupted; the squad discovers a kidnapping scheme; Rusty opens up to Dr. Joe about his mom. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Rizzoli & Isles + Don't Hate the Player + Jane and Maura investigate when a baseball coach is found dead in a locker room; Tommy returns home after being released from jail. + + Angie Harmon + Sasha Alexander + Lorraine Bracco + + Drama + + + TV14 + + + + Rizzoli & Isles + Rebel Without a Pause + A Revolutionary War re-enactment becomes a murder scene; Maura's knowledge of American history helps with an investigation; Maura's mother comes to Boston for an art exhibit. + + Angie Harmon + Sasha Alexander + Lorraine Bracco + + Drama + + + TV14 + + + + Rizzoli & Isles + Bloodlines + Jane and Maura investigate a modern witch hunt; Frankie's old girlfriend returns with a surprise. + + Angie Harmon + Sasha Alexander + Lorraine Bracco + + Drama + + + TV14 + + + + Castle + Target + A murder investigation reveals a plot to kidnap a wealthy businessman's daughter; FBI Agent Harris (Dylan Walsh) helps Castle and Beckett investigate.Guests: Dylan Walsh.. + + Nathan Fillion + Stana Katic + Susan Sullivan + + Comedy + Drama + + + TVPG + + + + Castle + Hunt + After the FBI fails to get Alexis back, Castle takes matters into his own hands; Castle learns that his daughter's kidnapping may be a part of a larger and more sinister agenda. + + Nathan Fillion + Stana Katic + Susan Sullivan + + Comedy + Drama + + + TVPG + + + + Little Women: NY + Into the Wild + As the rift between Jazmin and Dawn widens, Jason tries to plan a weekend getaway for the group; a secret is revealed. + Reality TV + + + TV14 + + + + Little Women: NY + A Rough Patch + The group finally meets Katie's boyfriend and shares their concerns about the health of Katie and her baby; drama erupts during a visit to a pumpkin patch. + Reality TV + + + TV14 + + + + Little Women: NY + Jason Gets His Groove Back + Things get explosive when Dawn and David dig up the past; Jason must make a confession to DJ; an unwelcome guest crashes Katie's baby shower. + Reality TV + + + TV14 + + + + Little Women: NY + It's Go Time + DJ asks Jason to move in with him; Dawn learns more about Lila's scandalous love life; Lila and Dawn confront Katie about PJ. + Reality TV + + + TV14 + + + + Little Women: NY + Into the Wild + As the rift between Jazmin and Dawn widens, Jason tries to plan a weekend getaway for the group; a secret is revealed. + Reality TV + + + TV14 + + + + Little Women: NY + A Rough Patch + The group finally meets Katie's boyfriend and shares their concerns about the health of Katie and her baby; drama erupts during a visit to a pumpkin patch. + Reality TV + + + TV14 + + + + Little Women: NY + Jason Gets His Groove Back + Things get explosive when Dawn and David dig up the past; Jason must make a confession to DJ; an unwelcome guest crashes Katie's baby shower. + Reality TV + + + TV14 + + + + Little Women: NY + Jason Gets His Groove Back + Things get explosive when Dawn and David dig up the past; Jason must make a confession to DJ; an unwelcome guest crashes Katie's baby shower. + Reality TV + + + TV14 + + + + I Killed My BFF + Two Cowboys + A ruthless competition between a retired rodeo champion and a young, aspiring cowboy. + Documentary + + + TV14 + + + + I Killed My BFF + Two Cowboys + A ruthless competition between a retired rodeo champion and a young, aspiring cowboy. + Documentary + + + TV14 + + + + I Killed My BFF + Housemate From Hell + After two friends buy a house together and sign an insurance policy, one of them decides that two is a crowd. + + Tyler Hollinger + Derek Brantley + Cassandre Fiering + + Documentary + + + TV14 + + + + Child Genius + We All Want to Win, Right? + The four finalists face off in an Academic Olympiad, a daunting compilation of all previous round topics; the winner receives a $100,000 college fund. + Reality TV + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Stories of Love to the Rescue by Shriners Hospitals for Children® + Alec and Kaleb interview patients and their families, and how their lives have been changed because of the life-changing pediatric specialty care they received at Shriners Hospitals for Children®. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Dance Moms + May I Have This Dance? + Abby makes an announcement; Mackenzie and Asia compete for a featured part in a televised performance; the mothers are furious that Maddie has been promoted to assistant choreographer; Nia struggles to keep up with Asia in a duet. + Reality TV + Performing Arts + + + TVPG + + + + Dance Moms + The View From the Top + Abby is invited to co-host. + Reality TV + Performing Arts + + + TVPG + + + + Married at First Sight + Back to Reality + Two and a half weeks after getting married, honeymooning and moving in together, the couples deal with growing pains in their relationships as the reality of day-to-day life sets in. + Reality TV + + + TV14 + + + + Married at First Sight + Fantasies and Firsts + Three weeks after meeting for the first time at the altar and exchanging vows, the couples become intimate and explore their fantasies in an effort to grow closer. + Reality TV + + + TV14 + + + + Married at First Sight + From Stranger to Sweetheart + With the experiment at the halfway point, the couples celebrate their first major milestone and look back on their time together so far; some contemplate whether they made the right decision. + Reality TV + + + TV14 + + + + Married at First Sight + State of the Union + Checking in with the newlyweds, Dr. Pepper learns that one couple has made a life-changing decision, while another is on rocky ground because of constant judgment; one couple may finally reach a breaking point over dog duty. + Reality TV + + + TV14 + + + + Married at First Sight + The Art of Communication + With just three weeks until decision day, the couples are forced to take a hard look at their own behavior; relationships are tested in ways that could either bring each couple closer together, or push them over the edge. + Reality TV + + + TV14 + + + + Little Women: NY + The Newest Little Person + Baby Kinzley arrives; Dawn reveals one of Lila's deepest secrets to the others; Jazmin makes a difficult decision. + Reality TV + + + TV14 + + + + Little Women: Dallas + Everything's Bigger in Texas + The ladies celebrate Caylea's 21st birthday; Emily and Bri must decide if. + Reality TV + + + TV14 + + + + Little Women: Dallas + Dallas, Not Austin + Tiffani hosts a barbecue so everyone can get to know her boyfriend better; Bri invites the group out for a day of fun at a lake; Tiffani gives Caylea some life-disrupting news. + Reality TV + + + TV14 + + + + Little Women: Dallas + Trading Spaces + Caylea moves out and Austin moves in; Wooda leaves Bri; after months of mourning, Emily tries to say goodbye to the son she lost. + Reality TV + + + TV14 + + + + Little Women: Dallas + Right to Refuse + Tiffani drops an expensive bomb on Caylea; Amanda prepares for a bodybuilding competition, but a surprise drug test throws her off; a football party ends in disaster. + Reality TV + + + TV14 + + + + Little Women: Dallas + Friday Night Fights + Southern manners go out the window when Caylea's football party turns into a brawl; Amanda goes on a blind date with one of the tallest men in Texas. + Reality TV + + + TV14 + + + + Little Women: Dallas + Party Crasher + Brichelle tries to apologize to the group; Asta's party is cut short when Caylea gets a surprise visit. + Reality TV + + + TV14 + + + + Little Women: Dallas + Trading Spaces + Caylea moves out and Austin moves in; Wooda leaves Bri; after months of mourning, Emily tries to say goodbye to the son she lost. + Reality TV + + + TV14 + + + + Little Women: Dallas + Right to Refuse + Tiffani drops an expensive bomb on Caylea; Amanda prepares for a bodybuilding competition, but a surprise drug test throws her off; a football party ends in disaster. + Reality TV + + + TV14 + + + + Little Women: Dallas + Friday Night Fights + Southern manners go out the window when Caylea's football party turns into a brawl; Amanda goes on a blind date with one of the tallest men in Texas. + Reality TV + + + TV14 + + + + Little Women: Dallas + Party Crasher + Brichelle tries to apologize to the group; Asta's party is cut short when Caylea gets a surprise visit. + Reality TV + + + TV14 + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Help Israel & Ukraine + There is an urgent need to help Jews suffering in Israel, Ukraine, and around the world. Act now and support the International Fellowship of Christians and Jews in their lifesaving work. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Stories of Love to the Rescue by Shriners Hospitals for Children® + Alec and Kaleb interview patients and their families, and how their lives have been changed because of the life-changing pediatric specialty care they received at Shriners Hospitals for Children®. + Paid Program + + + + Transforming Lives by Shriners Hospitals for Children® + Join Alec as he journeys into heartwarming stories of patients, their families and the amazing impact the specialized pediatric care at Shriners Hospitals for Children® has had in transforming their lives. + Paid Program + + + + Little Women: LA + The + Terra and Tonya enroll the ladies in a sexy dance class; the ladies celebrate the end of Briana's marriage; Christy hints that she wants to marry her boyfriend. + Reality TV + + + TV14 + + + + Little Women: LA + Little Women, Big Drama + Christy shops for an engagement ring; the women prepare for a photo shoot; Traci reveals that she has set her wedding date; Terra and Elena temporarily mend their tense relationship. + Reality TV + + + TV14 + + + + Little Women: LA + Who Do You Think You Are? + Christy steals Traci's spotlight at her wine-tasting party; Elena visits the doctor to find out what type of dwarfism she has; the women help Traci pick the perfect wedding gown. + Reality TV + + + TV14 + + + + Little Women: LA + The Ex-Factor + Christy discovers that she might be pregnant; Briana confronts her ex-husband about his new girlfriend; Tonya and Briana go speed dating; Terra and Tonya prepare for a big performance. + Reality TV + + + TV14 + + + + Little Women: LA + Movin' on Up + Terra and the ladies attend a cooking class; Christy and Todd go on a diet and enroll in dance lessons; Terra plans a sexy evening for her boyfriend, Joe. + Reality TV + + + TV14 + + + + Little Women: LA + She's Booty-ful + Elena considers breast implants; Terra asks the ladies to star in her music video; Christy tries to convince the other women to back out of the video shoot. + Reality TV + + + TV14 + + + + Little Women: LA + Miss-Conception + Traci and Christy argue while at a wedding convention; Elena discusses the possibility that her baby might be a little person; Terra tells Tonya that the man she is dating might not be a good guy. + Reality TV + + + TV14 + + + + Little Women: LA + Sinner Takes All + The ladies celebrate Traci and Christy's bachelorette parties in Las Vegas; Traci reveals her hidden wild side; Christy decides that she wants to elope. + Reality TV + + + TV14 + + + + Little Women: LA + Here Comes the Bride + Christy finalizes last minute wedding details; Terra and Joe discuss their relationship; the ladies speculate about Elena. + Reality TV + + + TV14 + + + + Little Women: LA + Baby on Board + The ladies embark on a booze cruise; Traci accuses Briana of lying about why she did not attend Traci's wedding; Terra gets an offer that could change her career; one of the women is pregnant. + Reality TV + + + TV14 + + + + Little Women: LA + Mama Drama + Tonya learns that Briana and Trevore have been talking behind her back; Trevore has an explosive lunch with his mother; Briana considers telling her daughter that she is a little person. + Reality TV + + + TV14 + + + + Little Women: LA + Baby Bump + Christy and Briana begin to question Terra's motivations and friendships with the other women; Traci struggles with feelings of envy; Elena's burlesque performance exposes her trust issues. + Reality TV + + + TV14 + + + + Little Women: LA + A Little Fired Up + Traci and Tonya begin to question Terra's loyalty; Briana takes a chance with a man she met online; Christy throws a barbecue. + Reality TV + + + TV14 + + + + Little Women: LA + Stage Fight + Terra's brother comes for a visit; Bourn forces Terra to tell their mother that she is pregnant; Briana confronts her family about why they refuse to meet her new boyfriend; Briana sings for the first time at an open mic night. + Reality TV + + + TV14 + + + + Little Women: LA + The Ex-Files + Christy and Todd receive some unfortunate news; Elena decides to have an uncommon cosmetic enhancement; Terra tries to set up Tonya with a new man by throwing a. + Reality TV + + + TV14 + + + + Little Women: LA + Pain in the Butt + The women try to pick up the pieces of their friendship after a nasty brawl; Christy, Briana and Lila bring the girls together for a race, and wind up insulting Terra and Tonya; Lila throws a cocktail party to make peace. + Reality TV + + + TV14 + + + + Little Women: LA + Into the Woods + Terra treats the gang to a weekend on Catalina Island; the ladies go zip lining and later reward themselves with a fancy dinner in town; Lila lashes out at each of the girls. + Reality TV + + + TV14 + + + + Little Women: LA + Stage Fight + Terra's brother comes for a visit; Bourn forces Terra to tell their mother that she is pregnant; Briana confronts her family about why they refuse to meet her new boyfriend; Briana sings for the first time at an open mic night. + Reality TV + + + TV14 + + + + Little Women: LA + The Ex-Files + Christy and Todd receive some unfortunate news; Elena decides to have an uncommon cosmetic enhancement; Terra tries to set up Tonya with a new man by throwing a. + Reality TV + + + TV14 + + + + Little Women: LA + Pain in the Butt + The women try to pick up the pieces of their friendship after a nasty brawl; Christy, Briana and Lila bring the girls together for a race, and wind up insulting Terra and Tonya; Lila throws a cocktail party to make peace. + Reality TV + + + TV14 + + + + Little Women: LA + Into the Woods + Terra treats the gang to a weekend on Catalina Island; the ladies go zip lining and later reward themselves with a fancy dinner in town; Lila lashes out at each of the girls. + Reality TV + + + TV14 + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Cindy Crawford and Ellen Pompeo share secrets + Join Cindy Crawford and Ellen Pompeo as they discuss their busy lives and the breakthrough skin care discovery that keeps them looking their best. Take a trip to the stunning French countryside to see a rare French melon that defies aging. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Bring It! + You Better Bring It! + The Dancing Dolls team prepares to compete in Chattanooga, Tenn.; Dianna forbids dancers from participating at an event after imperfect rehearsal performances; Kayla struggles with the pressure of a solo; a dancer's mother clashes with Dianna. + Reality TV + Performing Arts + + + TVPG + + + + Bring It! + Battle in Memphis + The Dancing Dolls head to Memphis, Tenn. to compete; Rittany pulls Crystianna out of rehearsal; a judging controversy leads to a riot. + Reality TV + Performing Arts + + + TVPG + + + + Bring It! + The Wig Is Off + The Dancing Dolls return to Memphis hoping to beat one of their biggest rivals; Sunjai learns a hard lesson; Selena tries to bully Dianna; Camryn gets the opportunity to perform a solo. + Reality TV + Performing Arts + + + TVPG + + + + Bring It! + After losing two weeks in a row, the Dolls enlist the Baby Dancing Dolls to compete in their place so they can focus on developing a secret weapon; Selena's behavior threatens her daughter's future; Kayla feels the pressure of being team captain. + Reality TV + Performing Arts + + + TVPG + + + + Bring It! + Sunjai in Stilettos + The Dancing Dolls travel to Memphis to compete against two fierce rivals; Sunjai earns a spot in the front for the team's Michael Jackson-inspired performance; Kayla asks her father to attend one of her performances. + Reality TV + Performing Arts + + + TVPG + + + + Bring It! + Street Battle + The Dancing Dolls challenge their rivals to a street battle; tension on the dance floor sparks a clash between dancers and spectators; Camryn gets the opportunity to lead the Dancing Dolls in a parade. + Reality TV + Performing Arts + + + TVPG + + + + Bring It! + Shut Up and Dance + The Dancing Dolls prepare to defend their title against local rivals; Mimi tries to convince Dianna to let the mothers back into the dance studio during rehearsal; Sunjai gets the chance to compete in Stand Battle for the first time. + Reality TV + Performing Arts + + + TVPG + + + + Bring It! + The Lock-In + The Dancing Dolls struggle to master difficult stands and they prepare for a competition in Memphis; Dianna calls for an all-night rehearsal; Sunjai shines in the burlesque routine. + Reality TV + Performing Arts + + + TVPG + + + + Bring It! + The Finale: Battle Royale + The Dancing Dolls prepare for the Stand Battle Royale; the dancers feel pressure to perform in front of professional dancers and choreographers; Camryn and Crystianna audition for a performing arts school; Sunjai makes the stand battle squad. + Reality TV + Performing Arts + + + TVPG + + + + Bring It! + So You Wanna Be a Doll? + Miss D begins building a new team with annual team tryouts; veteran dancers must compete for a spot on the team; Tamia challenges Camryn for the head co-captain position; Crystianna battles her nerves. + Reality TV + Performing Arts + + + TVPG + + + + Bring It! + Prom or Competition? + The Dancing Dolls compete against their rivals at the Bay Area Battle in Memphis, Tenn.; many dancers and their mothers fear that a risky strategy might cost them the win; Sunjai must choose between performing with her squad or attending her prom. + Reality TV + Performing Arts + + + TVPG + + + + Bring It! + Kayla's Big Surprise + The Dancing Dolls compete in Jackson, Miss.; Miss D decides the team will attempt a lyrical routine for the first time; Kayla gets a surprise at her prom. + Reality TV + Performing Arts + + + TVPG + + + + Bring It! + Nashville Smackdown + The Dancing Dolls travel to Nashville, Tenn. to take on squads from the South; the mothers plan to spy on Miss D; Miss D and the team question Kayla's leadership. + Reality TV + Performing Arts + + + TVPG + + + + Bring It! + A New Rival Emerges + The Dancing Dolls are forced to defend their home turf; Miss D enlists the parents to help spice up the team's creative dance; Sunjai's mother is at risk of getting cut from the routine. + Reality TV + Performing Arts + + + TVPG + + + + Bring It! + Baby Dolls vs. Baby Tigerettes + Miss D shows the Baby Dancing Dolls some tough love as they prepare to battle their rival, the Baby Prancing Tigerettes; the Dancing Doll Parents get the chance to perform a full routine at a competition. + Reality TV + Performing Arts + + + TVPG + + + + Bring It! + Pray for Sunjai + Kayla comes to Sunjai's aid as she struggles to make the stand battle squad; the Dancing Dolls must defend their home turf. + Reality TV + Performing Arts + + + TVPG + + + + Bring It! + Dolls vs. Dollz: The Rematch + The Dancing Dolls head to Memphis, Tenn.; Camryn has trouble learning a new routine; the Dolls compete against an all-male dance team. + Reality TV + Performing Arts + + + TVPG + + + + Bring It! + A New Rival Emerges + The Dancing Dolls are forced to defend their home turf; Miss D enlists the parents to help spice up the team's creative dance; Sunjai's mother is at risk of getting cut from the routine. + Reality TV + Performing Arts + + + TVPG + + + + Bring It! + Baby Dolls vs. Baby Tigerettes + Miss D shows the Baby Dancing Dolls some tough love as they prepare to battle their rival, the Baby Prancing Tigerettes; the Dancing Doll Parents get the chance to perform a full routine at a competition. + Reality TV + Performing Arts + + + TVPG + + + + Bring It! + Pray for Sunjai + Kayla comes to Sunjai's aid as she struggles to make the stand battle squad; the Dancing Dolls must defend their home turf. + Reality TV + Performing Arts + + + TVPG + + + + Bring It! + Dolls vs. Dollz: The Rematch + The Dancing Dolls head to Memphis, Tenn.; Camryn has trouble learning a new routine; the Dolls compete against an all-male dance team. + Reality TV + Performing Arts + + + TVPG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Dance Moms + The Apple of Her Eye + The girls prepare for a group number that is a tribute to Rosa Parks; the team competes against Cathy's Apple Core; Mackenzie becomes an Internet sensation with makeup tutorials. + Reality TV + Performing Arts + + + TVPG + + + + Dance Moms + She's a Maniac + Kelly is upset when Abby pulls Brooke from this week's competition; Abby invites Broadway star Rachelle Rak to choreograph a group number. + Reality TV + Performing Arts + + + TVPG + + + + Dance Moms + Watch Your Back, Mack + The arrival of a new dancer puts Melissa and Mackenzie on guard; Abby visits a taxidermist; Cathy hires Abby's friend to choreograph the dance for this week's competition. + Reality TV + Performing Arts + + + TVPG + + + + Dance Moms + The Politics of Dancing + Abby assigns the girls dances inspired by America; Maddie and Chloe compete against each other with the rest of the dance company voting on who gave the best performance; an injured Mackenzie watches her spot being taken over by Asia. + Reality TV + Performing Arts + + + TVPG + + + + Dance Moms + May I Have This Dance? + Abby makes an announcement; Mackenzie and Asia compete for a featured part in a televised performance; the mothers are furious that Maddie has been promoted to assistant choreographer; Nia struggles to keep up with Asia in a duet. + Reality TV + Performing Arts + + + TVPG + + + + Dance Moms + The View From the Top + Abby is invited to co-host. + Reality TV + Performing Arts + + + TVPG + + + + Dance Moms + Candy Apple Showdown + Abby's dancers compete with the Candy Apples in New York; Abby plans to wow the judges; Cathy plans to rely on Anthony's choreography to keep her on top; Abby makes an announcement. + Reality TV + Performing Arts + + + TVPG + + + + Dance Moms + Two Girls, One Solo + Abby decides to have Maddie and Chloe dance the exact same solo; Christi and Kelly realize that their friendship will never be the same; the theme for the group number brings up painful memories. + Reality TV + Performing Arts + + + TVPG + + + + Dance Moms + An Apple a Day Keeps Abby Away + Cathy is determined to rebuild her team; Cathy recruits new dancers, including her friend Patsy. + Reality TV + Performing Arts + + + TVPG + + + + Dance Moms + No Room for Rotten Apples + Cathy's team feels pressure; Jalen is assigned his first contemporary solo; Cathy battles with Anthony as she struggles to regain control of her studio. + Reality TV + Performing Arts + + + TVPG + + + + Dance Moms + Tap Versus Hip Hop + Abby returns from Hollywood to find that many of her dancers have been slacking; the mothers make a pact to turn down Abby's invitation for their daughters to perform on national television; Abby pits Maddie against Chloe. + Reality TV + Performing Arts + + + TVPG + + + + Dance Moms + Recital Rebellion + Abby is nervous about the annual Abby Lee Dance Company recital; Kelly is upset when Abby assigns Paige the only new solo for the recital; the girls compete to appear on the cover of a dance magazine. + Reality TV + Performing Arts + + + TVPG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Local Programming + Local programming. + Regular + + + TVG + + + + Bite Size + Family, food and love are the recipe for success at the Taste of Texas, with Baja flavors and a family farm makes unique impact on half-acre of land. + Food + Performing Arts + + + TVG + + + + My Go-To + Flying at Walt Disney World's. + Performing Arts + + + TVG + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + All Good + This fun-sized fire truck connects SF to Japan; Pug joins her family at the dinner table; a young pilot soaring to new heights. + Performing Arts + + + TVG + + + + Localish Bay Area + A restaurant for dogs; meeting a 90-year-old SF black icon; outdoor art; how Oakland earned the nickname. + Local + Performing Arts + + + TVG + + + + Pet Project + Photographer helping pets get adopted; goats clear vegetation for a power company; a dog checks off his bucket list; a sea turtle rescue mission. + Animals + + + TVG + + + + Bite Size + A burger with a pizza bun and the greatest Indian food in a gas station. + Food + + + TVG + + + + Secretly Awesome + Black-owned businesses are breaking down barriers. + Performing Arts + + + TVG + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + More in Common + Local + + + TVG + + + + Pumped + A dance program teaches cultural diversity; getting in shape watching the NYC skyline; a digital axe throwing range. + Health + + + TVG + + + + Localish Los Angeles + Drive-in entertainment; an art exhibit takes the cake; cooling down with Happy Ice; how to get homemade cookies delivered. + Local + + + TVG + + + + Best of Localish + A tour of a turkey farm outside of Chicago; the Anthony Quinn branch library in LA; a world-renowned recording studio on Sunset Strip. + Local + Performing Arts + + + TVG + + + + Bite Size + Family, food and love are the recipe for success at the Taste of Texas, with Baja flavors and a family farm makes unique impact on half-acre of land. + Food + Performing Arts + + + TVG + + + + My Go-To + Flying at Walt Disney World's. + Performing Arts + + + TVG + + + + Bite Size + These are the guilty pleasure any food enthusiast will enjoy; the most delicious and unique foods on the menu stand out. + Food + + + TVG + + + + Bite Size + These are the guilty pleasure any food enthusiast will enjoy; the most delicious and unique foods on the menu stand out. + Food + + + TVG + + + + Glam Lab + Using blood as a face cream; if posture devices really work; everything to know before getting lashes done. + Performing Arts + + + TVG + + + + Worth the Wait + A steak spot where the line is so long people tailgate while they wait; Texas BBQ and chocolate mash-up; a spot selling soft serve ice cream for a century. + Performing Arts + + + TVG + + + + Localish Los Angeles + Chefs help feed unemployed restaurant workers; artists that bring people together; behind the scenes at the Aquarium of the Pacific. + Local + + + TVG + + + + Localish Bay Area + A gem around the corner; tour hidden San Francisco; trading-up; a bobby pin for a house; virtual reality fitness; sidewalk chalk art; veggies for all. + Local + + + TVG + + + + Bite Size + Big BBQ ribs; an entire smoked alligator; a food court in Texas serves very popular BBQ. + Food + + + TVG + + + + Bite Size + The hottest candy; a 7lb burrito; two giant burgers. + Food + + + TVG + + + + More in Common + The migration occurring in pandemic-era America and exploring why people are making the move to greener pastures. + Local + + + TVG + + + + Glam Lab + Using blood as a face cream; if posture devices really work; everything to know before getting lashes done. + Performing Arts + + + TVG + + + + Localish Legends + Philly's favorite trash man and the queen of commercials; Michael Koenigs hosts. + Local + + + + FYI Philly + Visiting scoop shops, a place for shakes and steaks and a spot that sells ice cream and vinyl records for National Ice Cream month; a park where the rocks ring. + Local + Performing Arts + + + TVG + + + + More in Common + An unlikely friendship between a former KKK member and a Syrian refugee; a vegan activist and a cattle farmer; a girl scout joining the boy scouts. + Local + + + TVG + + + + Glam Lab + Scraping skin with a scalpel; a doctors office disguised as a man cave; and the best ways to clean make-up brushes. + Performing Arts + + + TVG + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + Bite Size + Luxurious desserts, a $500 brownie, bubble waffles, dragon candy and a bar devoted to unicorns. + Food + + + TVG + + + + All Good + A stranger returns a lost photo album; students compete for their recipe to be served in space; dads participate in their daughters' ballet classes. + Performing Arts + + + TVG + + + + Sunday Mass: Live from the Cathedral of Our Lady of the Angels + Religious + Local + + + + More in Common + The migration occurring in pandemic-era America and exploring why people are making the move to greener pastures. + Local + + + TVG + + + + Glam Lab + Using blood as a face cream; if posture devices really work; everything to know before getting lashes done. + Performing Arts + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + +Life + Limp Bizkit's John Otto talks music school, hip-hop dancing with Jesse Harris, and comfort food with Michael Roberts; a chat with LaBrea's Veronica St. Clair. + Performing Arts + + + TVG + + + + Localish Chicago + Crust Fund Pizza delivers for Chicago charities; Pull Up the City creates neighborhood fitness gardens; an outdoor cafe serves great food to the homeless. + Local + Performing Arts + + + TVG + + + + More in Common + An unlikely friendship between a former KKK member and a Syrian refugee; a vegan activist and a cattle farmer; a girl scout joining the boy scouts. + Local + + + TVG + + + + Glam Lab + Scraping skin with a scalpel; a doctors office disguised as a man cave; and the best ways to clean make-up brushes. + Performing Arts + + + TVG + + + + Localish Legends + Running legend Dean Karnazes ran 50 marathons in all 50 states in 50 days. + Local + + + + FYI Philly + Visiting scoop shops, a place for shakes and steaks and a spot that sells ice cream and vinyl records for National Ice Cream month; a park where the rocks ring. + Local + Performing Arts + + + TVG + + + + Bite Size + Luxurious desserts, a $500 brownie, bubble waffles, dragon candy and a bar devoted to unicorns. + Food + + + TVG + + + + All Good + A stranger returns a lost photo album; students compete for their recipe to be served in space; dads participate in their daughters' ballet classes. + Performing Arts + + + TVG + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + More in Common + The migration occurring in pandemic-era America and exploring why people are making the move to greener pastures. + Local + + + TVG + + + + Glam Lab + Using blood as a face cream; if posture devices really work; everything to know before getting lashes done. + Performing Arts + + + TVG + + + + Localish Legends + Philly's favorite trash man and the queen of commercials; Michael Koenigs hosts. + Local + + + + FYI Philly + Visiting scoop shops, a place for shakes and steaks and a spot that sells ice cream and vinyl records for National Ice Cream month; a park where the rocks ring. + Local + Performing Arts + + + TVG + + + + Bite Size + Big BBQ ribs; an entire smoked alligator; a food court in Texas serves very popular BBQ. + Food + + + TVG + + + + All Good + The Queen of Commercials, free portraits uplift communities, a young man overcomes being a gunshot victim to graduating college debt free. + Performing Arts + + + TVG + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + More in Common + An unlikely friendship between a former KKK member and a Syrian refugee; a vegan activist and a cattle farmer; a girl scout joining the boy scouts. + Local + + + TVG + + + + Glam Lab + Scraping skin with a scalpel; a doctors office disguised as a man cave; and the best ways to clean make-up brushes. + Performing Arts + + + TVG + + + + Localish Legends + Running legend Dean Karnazes ran 50 marathons in all 50 states in 50 days. + Local + + + + FYI Philly + Visiting scoop shops, a place for shakes and steaks and a spot that sells ice cream and vinyl records for National Ice Cream month; a park where the rocks ring. + Local + Performing Arts + + + TVG + + + + Bite Size + Luxurious desserts, a $500 brownie, bubble waffles, dragon candy and a bar devoted to unicorns. + Food + + + TVG + + + + All Good + A stranger returns a lost photo album; students compete for their recipe to be served in space; dads participate in their daughters' ballet classes. + Performing Arts + + + TVG + + + + +Life + Inspiration from DeMarco Majors; beauty tips with Adamme Sosa; Corey Burgan makes the perfect salad; a chat with Pose creator Steven Canals. + Performing Arts + + + TVG + + + + Localish Chicago + Crust Fund Pizza delivers for Chicago charities; Pull Up the City creates neighborhood fitness gardens; an outdoor cafe serves great food to the homeless. + Local + Performing Arts + + + TVG + + + + Localish Los Angeles + DYI dinner and drink options; visit a pop-up that's adding some bang to the LA food scene; the Recess Ice Cream Truck. + Local + + + TVG + + + + Localish Bay Area + Girls Leading Girls through soccer; 10-layer melt in your mouth lasagna; feline frenzy; coffee artist and. + Local + + + TVG + + + + Bite Size + Secret menu's in L.A.: a pickle paradise in NYC and a hot dog covered in mac-n-cheese. + Food + + + TVG + + + + Bite Size + Hot Cheeto croissants; tasty beef; one of the most instagrammed restaurants in the world; from N.Y. + Food + + + TVG + + + + More in Common + Highlighting some of the best neighbors across America. + Local + + + TVG + + + + Pumped + A Texas-sized bike park; the center of the new skating world; a swim with a view. + Health + + + TVG + + + + Localish Los Angeles + Localish LA teams up with Susan G Komen Orange County for this year's virtual. + Local + + + TVG + + + + Best of Localish + Meeting the. + Local + + + TVG + + + + Stroke of Genius + Meeting an Autisarian artist in LA; creatives staging real-life masterworks; a carillon master in Chicago; a San Francisco cartoonist turned playwright. + Performing Arts + + + TVG + + + + All Good + A crocheting mom wins Halloween; break dancing down boundaries; a woman climbing Mt. Kilimanjaro raises money for Special Olympics; wounded vets return home. + Performing Arts + + + TVG + + + + Best Cooling Topper for Back & Hip Pain! + Dormeo Mattress Topper Transforms Your Bed To Get A Great Night's Sleep. Soothing & Cooling. + Paid Program + + + + Bite Size + A Black-owned brewery honors their African roots with every brew; a fine dining chef takes on a cheeseburger and fries; a teen girl becomes a sous chef. + Food + + + TVG + + + + Secretly Awesome + Small businesses have adapted to the pandemic and have overcome difficulties with some help from their communities. + Performing Arts + + + TVG + + + + +Life + Taylor King captures magic; Micah Cook teaches a full-body workout; Liz Solomon Dwyer dreams of tacos; a chat with actor Josh Banday. + Performing Arts + + + TVPG + + + + Localish: Houston + Meatless barbecue; a not-your-average florist; a hot rod handicap bus; an inspiring high school principal. + Performing Arts + + + TVG + + + + More in Common + Highlighting some of the best neighbors across America. + Local + + + TVG + + + + Pumped + A Texas-sized bike park; the center of the new skating world; a swim with a view. + Health + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Best Cooling Topper for Back & Hip Pain! + Dormeo Mattress Topper Transforms Your Bed To Get A Great Night's Sleep. Soothing & Cooling. + Paid Program + + + + Glam Lab + The hype behind charcoal beauty products; a facial with one's own blood; if face rollers work. + Performing Arts + + + TVG + + + + Worth the Wait + Olivia Rodrigo drives her fans crazy;. + Performing Arts + + + TVG + + + + Stroke of Genius + Meeting an Autisarian artist in LA; creatives staging real-life masterworks; a carillon master in Chicago; a San Francisco cartoonist turned playwright. + Performing Arts + + + TVG + + + + All Good + A crocheting mom wins Halloween; break dancing down boundaries; a woman climbing Mt. Kilimanjaro raises money for Special Olympics; wounded vets return home. + Performing Arts + + + TVG + + + + Localish Bay Area + A world full of color and creativity; the legacy of family ranchers; tech resources for teens; the popular spot behind the spiral croissant. + Local + Performing Arts + + + TVG + + + + Pet Project + Kids read to dogs; a. + Animals + + + TVG + + + + Bite Size + A Black-owned brewery honors their African roots with every brew; a fine dining chef takes on a cheeseburger and fries; a teen girl becomes a sous chef. + Food + + + TVG + + + + Secretly Awesome + Small businesses have adapted to the pandemic and have overcome difficulties with some help from their communities. + Performing Arts + + + TVG + + + + Best Cooling Topper for Back & Hip Pain! + Dormeo Mattress Topper Transforms Your Bed To Get A Great Night's Sleep. Soothing & Cooling. + Paid Program + + + + More in Common + Highlighting some of the best neighbors across America. + Local + + + TVG + + + + Pumped + A Texas-sized bike park; the center of the new skating world; a swim with a view. + Health + + + TVG + + + + On the Red Carpet + CMA Awards Preview + A look at the year's CMA award nominees, presenters and performers. + Performing Arts + + + + Best of Localish + Meeting the. + Local + + + TVG + + + + Bite Size + A $150 cocktail made with vintage spirits; crab cheesecake; maternity salad. + Food + Performing Arts + + + TVG + + + + My Go-To + Craft brew in Fresno; great steak with a side of family history in San Francisco; picking strawberries near Houston. + Performing Arts + + + TVG + + + + Best Cooling Topper for Back & Hip Pain! + Dormeo Mattress Topper Transforms Your Bed To Get A Great Night's Sleep. Soothing & Cooling. + Paid Program + + + + Stroke of Genius + Meeting an Autisarian artist in LA; creatives staging real-life masterworks; a carillon master in Chicago; a San Francisco cartoonist turned playwright. + Performing Arts + + + TVG + + + + All Good + A crocheting mom wins Halloween; break dancing down boundaries; a woman climbing Mt. Kilimanjaro raises money for Special Olympics; wounded vets return home. + Performing Arts + + + TVG + + + + Localish Bay Area + A world full of color and creativity; the legacy of family ranchers; tech resources for teens; the popular spot behind the spiral croissant. + Local + Performing Arts + + + TVG + + + + Pet Project + Kids read to dogs; a. + Animals + + + TVG + + + + Bite Size + A Black-owned brewery honors their African roots with every brew; a fine dining chef takes on a cheeseburger and fries; a teen girl becomes a sous chef. + Food + + + TVG + + + + Secretly Awesome + Small businesses have adapted to the pandemic and have overcome difficulties with some help from their communities. + Performing Arts + + + TVG + + + + +Life + Taylor King captures magic; Micah Cook teaches a full-body workout; Liz Solomon Dwyer dreams of tacos; a chat with actor Josh Banday. + Performing Arts + + + TVPG + + + + Localish: Houston + Meatless barbecue; a not-your-average florist; a hot rod handicap bus; an inspiring high school principal. + Performing Arts + + + TVG + + + + Localish Los Angeles + Celebrating Black owned businesses; a pro-Black pop culture store; businesses giving back to the community. + Local + + + TVG + + + + Localish Bay Area + Cupcakes look too good to eat, lobster fried rice, a twist on an old classic, yummy Irish baked goods and a chocolatier spreading love one truffle at a time. + Local + + + TVG + + + + Bite Size + Pasta smothered in 24K magic, hot cheeto tacos, grilled cheese filled with chicken tenders & the ultimate bacon fest. + Food + + + TVG + + + + Bite Size + Knockout chicken wings cooked with Hennessy; virtual reality dining and pizza served out of the back of a truck in an LA parking lot. + Food + + + TVG + + + + Stroke of Genius + Meeting an Autisarian artist in LA; creatives staging real-life masterworks; a carillon master in Chicago; a San Francisco cartoonist turned playwright. + Performing Arts + + + TVG + + + + All Good + A crocheting mom wins Halloween; break dancing down boundaries; a woman climbing Mt. Kilimanjaro raises money for Special Olympics; wounded vets return home. + Performing Arts + + + TVG + + + + Localish Bay Area + A world full of color and creativity; the legacy of family ranchers; tech resources for teens; the popular spot behind the spiral croissant. + Local + Performing Arts + + + TVG + + + + Pet Project + Kids read to dogs; a. + Animals + + + TVG + + + + More in Common + Highlighting some of the best neighbors across America. + Local + + + TVG + + + + Pumped + A Texas-sized bike park; the center of the new skating world; a swim with a view. + Health + + + TVG + + + + Cindy Crawford and Ellen Pompeo share secrets + Cindy Crawford and Ellen Pompeo discuss breakthrough skin care advances! + Paid Program + + + + Bite Size + A $150 cocktail made with vintage spirits; crab cheesecake; maternity salad. + Food + Performing Arts + + + TVG + + + + My Go-To + Craft brew in Fresno; great steak with a side of family history in San Francisco; picking strawberries near Houston. + Performing Arts + + + TVG + + + + Glam Lab + The hype behind charcoal beauty products; a facial with one's own blood; if face rollers work. + Performing Arts + + + TVG + + + + Worth the Wait + Olivia Rodrigo drives her fans crazy;. + Performing Arts + + + TVG + + + + Stroke of Genius + Meeting an Autisarian artist in LA; creatives staging real-life masterworks; a carillon master in Chicago; a San Francisco cartoonist turned playwright. + Performing Arts + + + TVG + + + + All Good + A crocheting mom wins Halloween; break dancing down boundaries; a woman climbing Mt. Kilimanjaro raises money for Special Olympics; wounded vets return home. + Performing Arts + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Cindy Crawford and Ellen Pompeo share secrets + Cindy Crawford and Ellen Pompeo discuss breakthrough skin care advances! + Paid Program + + + + +Life + Taylor King captures magic; Micah Cook teaches a full-body workout; Liz Solomon Dwyer dreams of tacos; a chat with actor Josh Banday. + Performing Arts + + + TVPG + + + + Localish: Houston + Meatless barbecue; a not-your-average florist; a hot rod handicap bus; an inspiring high school principal. + Performing Arts + + + TVG + + + + More in Common + Highlighting some of the best neighbors across America. + Local + + + TVG + + + + Pumped + A Texas-sized bike park; the center of the new skating world; a swim with a view. + Health + + + TVG + + + + Localish Los Angeles + Localish LA teams up with Susan G Komen Orange County for this year's virtual. + Local + + + TVG + + + + Best of Localish + Meeting the. + Local + + + TVG + + + + Bite Size + A $150 cocktail made with vintage spirits; crab cheesecake; maternity salad. + Food + Performing Arts + + + TVG + + + + My Go-To + Craft brew in Fresno; great steak with a side of family history in San Francisco; picking strawberries near Houston. + Performing Arts + + + TVG + + + + Cindy Crawford and Ellen Pompeo share secrets + Cindy Crawford and Ellen Pompeo discuss breakthrough skin care advances! + Paid Program + + + + Stroke of Genius + Meeting an Autisarian artist in LA; creatives staging real-life masterworks; a carillon master in Chicago; a San Francisco cartoonist turned playwright. + Performing Arts + + + TVG + + + + All Good + A crocheting mom wins Halloween; break dancing down boundaries; a woman climbing Mt. Kilimanjaro raises money for Special Olympics; wounded vets return home. + Performing Arts + + + TVG + + + + Localish Bay Area + A world full of color and creativity; the legacy of family ranchers; tech resources for teens; the popular spot behind the spiral croissant. + Local + Performing Arts + + + TVG + + + + Pet Project + Kids read to dogs; a. + Animals + + + TVG + + + + Bite Size + A Black-owned brewery honors their African roots with every brew; a fine dining chef takes on a cheeseburger and fries; a teen girl becomes a sous chef. + Food + + + TVG + + + + Secretly Awesome + Small businesses have adapted to the pandemic and have overcome difficulties with some help from their communities. + Performing Arts + + + TVG + + + + Cindy Crawford and Ellen Pompeo share secrets + Cindy Crawford and Ellen Pompeo discuss breakthrough skin care advances! + Paid Program + + + + More in Common + Highlighting some of the best neighbors across America. + Local + + + TVG + + + + Pumped + A Texas-sized bike park; the center of the new skating world; a swim with a view. + Health + + + TVG + + + + Localish Los Angeles + Localish LA teams up with Susan G Komen Orange County for this year's virtual. + Local + + + TVG + + + + Best of Localish + Meeting the. + Local + + + TVG + + + + Bite Size + A $150 cocktail made with vintage spirits; crab cheesecake; maternity salad. + Food + Performing Arts + + + TVG + + + + My Go-To + Craft brew in Fresno; great steak with a side of family history in San Francisco; picking strawberries near Houston. + Performing Arts + + + TVG + + + + Glam Lab + The hype behind charcoal beauty products; a facial with one's own blood; if face rollers work. + Performing Arts + + + TVG + + + + Worth the Wait + Olivia Rodrigo drives her fans crazy;. + Performing Arts + + + TVG + + + + Localish Los Angeles + Local + + + TVG + + + + Localish Bay Area + Hotel service robots to the rescue, amazing10 layer - paper thin - lasagna, canine companions save the day and music for the soul. + Local + + + TVG + + + + Bite Size + Three pies baked in a 25 pound cake, a cake covered in Nutella and a donut larger than a human head. + Food + + + TVG + + + + Bite Size + Hot Cheeto and crawfish ice cream; a duck feast for less than $50; a BYOP (bring your own pot) spot in Philadelphia. + Food + + + TVG + + + + More in Common + Teaming up with the First Responders Children's Foundation to tell the stories of first responders and to surprise their families with gifts. + Local + + + TVG + + + + Pumped + Pole dancing is the unexpected new workout; a pro tennis player makes an inspirational recovery from a tragic event. + Health + + + TVG + + + + Localish Los Angeles + DYI dinner and drink options; visit a pop-up that's adding some bang to the LA food scene; the Recess Ice Cream Truck. + Local + + + TVG + + + + Best of Localish + A group of Central Valley (CA) students create for the future good; a college mariachi band keeps Mexican tradition alive; worms assist with winemaking. + Local + + + TVG + + + + Stroke of Genius + New murals gracing downtown Houston; a Pennsylvania artist creates beautiful pet portraits; a New York high school stages. + Performing Arts + + + TVG + + + + All Good + Mini picnic tables for squirrels raise money for a good cause; fighting ocean pollution with reusable straws; a family achieves the American Dream. + Performing Arts + + + TVG + + + + Best Cooling Topper for Back & Hip Pain! + Dormeo Mattress Topper Transforms Your Bed To Get A Great Night's Sleep. Soothing & Cooling. + Paid Program + + + + Bite Size + A Michelin-starred ham sandwich; getting buzzed with Long Island's Sail Away's famous canned cold brew; a cinnamon bun cannoli hybrid. + Food + Performing Arts + + + TVG + + + + Secretly Awesome + Celebrating Asian Pacific American Heritage Month by highlighting Asian-American-owned small businesses. + Performing Arts + + + TVG + + + + +Life + Gianni and Adam want to help with DNA; Presley is a firefighter with fitness moves; Terry Daniels has a Vybe for cooking; a chat with three remarkable change makers. + Performing Arts + + + TVG + + + + Localish: Houston + Houston's best empanadas; five siblings adopted together; a tour of Houston's murals; a mortuary's unique art collection; a 60-year-old soul-food institution. + Performing Arts + + + TVG + + + + More in Common + Teaming up with the First Responders Children's Foundation to tell the stories of first responders and to surprise their families with gifts. + Local + + + TVG + + + + Pumped + Pole dancing is the unexpected new workout; a pro tennis player makes an inspirational recovery from a tragic event. + Health + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Best Cooling Topper for Back & Hip Pain! + Dormeo Mattress Topper Transforms Your Bed To Get A Great Night's Sleep. Soothing & Cooling. + Paid Program + + + + Glam Lab + Using blood as a face cream; if posture devices really work; everything to know before getting lashes done. + Performing Arts + + + TVG + + + + Worth the Wait + BBQ in a California gas station; Hello Kitty Cafe; brunch in a glass treehouse. + Performing Arts + + + TVG + + + + Stroke of Genius + New murals gracing downtown Houston; a Pennsylvania artist creates beautiful pet portraits; a New York high school stages. + Performing Arts + + + TVG + + + + All Good + Mini picnic tables for squirrels raise money for a good cause; fighting ocean pollution with reusable straws; a family achieves the American Dream. + Performing Arts + + + TVG + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '70s + Get down and shake your groove thang with the best Pop, Rock and Soul mixed exclusively for your inner disco lover in you! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Celebrating the best of the '80s with. + Specials + Music + + + TV14 + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Celebrating the best of the '80s with. + Specials + Music + + + TV14 + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '80s + Whether you're an '80s baby or not, get your fix of this totally awesome decade we know you love! + Specials + Music + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice '90s + Pop, rock and urban hits from the '90s. + Specials + Music + + + TVPG + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Adult Alternative + Discover the cutting edge bands as well as the singers & songwriters who span both the electric and the acoustic worlds of rock and beyond. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Alternative + Break away from the mainstream and discover the bands that continue to redefine sonic landscapes while also hearing familiar names that built the alternative scene into a lifestyle. + Specials + Music + + + TVMA + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Blues + Get your mojo working with all things blues, with everything from the electrifying Chicago sound to the Mississippi Delta! + Specials + Music + + + TV14 + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Country + Reminisce with the songs you've always loved from the pioneers and legends of Country music. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classic Rock + The music that inspires every generation with hits and deep album cuts from the rock stars who defined the genre. + Specials + Music + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Classical Masterpieces + Celebrate the very best in Classical music performed by the world's greatest composers spanning over 500 years. + Specials + Music + + + TVG + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Contemporary Christian + Find a wide variety of the inspirational and uplifting Christian music of today and yesterday. + Specials + Music + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Country Hits + Reminisce with non-stop ballads and upbeat hits from your favorite pioneers and current stars of country music. + Specials + Music + + + TVPG + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance/EDM: MC Workout: Dance + Go all out and maximize your calorie burn with these heavy EDM bangers that'll fuel your workouts. + Specials + Music + + + TVMA + + + + Music Choice Dance/EDM: MC Workout: Dance + Go all out and maximize your calorie burn with these heavy EDM bangers that'll fuel your workouts. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance/EDM: MC Workout: Dance + Go all out and maximize your calorie burn with these heavy EDM bangers that'll fuel your workouts. + Specials + Music + + + TVMA + + + + Music Choice Dance/EDM: MC Workout: Dance + Go all out and maximize your calorie burn with these heavy EDM bangers that'll fuel your workouts. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance/EDM: MC Workout: Dance + Go all out and maximize your calorie burn with these heavy EDM bangers that'll fuel your workouts. + Specials + Music + + + TVMA + + + + Music Choice Dance/EDM: MC Workout: Dance + Go all out and maximize your calorie burn with these heavy EDM bangers that'll fuel your workouts. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance/EDM: MC Workout: Dance + Go all out and maximize your calorie burn with these heavy EDM bangers that'll fuel your workouts. + Specials + Music + + + TVMA + + + + Music Choice Dance/EDM: MC Workout: Dance + Go all out and maximize your calorie burn with these heavy EDM bangers that'll fuel your workouts. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Dance / EDM + Get the hottest tracks and remixes in the Dance and EDM world. + Specials + Music + + + TVMA + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Easy Listening + Relax with the easy sounds of great instrumental hits performed by string orchestras and soloists from around the world. + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Gospel + The best spirit-lifting traditional and contemporary gospel music. + Specials + Music + + + TVG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics: MC Workout: Bounce + Get your exercise on with the perfect collection of hip-hop classics and throwback jams. + Specials + Music + + + TVMA + + + + Music Choice Hip-Hop Classics: MC Workout: Bounce + Get your exercise on with the perfect collection of hip-hop classics and throwback jams. + Specials + Music + + + TVMA + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics: MC Workout: Bounce + Get your exercise on with the perfect collection of hip-hop classics and throwback jams. + Specials + Music + + + TVMA + + + + Music Choice Hip-Hop Classics: MC Workout: Bounce + Get your exercise on with the perfect collection of hip-hop classics and throwback jams. + Specials + Music + + + TVMA + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics: MC Workout: Bounce + Get your exercise on with the perfect collection of hip-hop classics and throwback jams. + Specials + Music + + + TVMA + + + + Music Choice Hip-Hop Classics: MC Workout: Bounce + Get your exercise on with the perfect collection of hip-hop classics and throwback jams. + Specials + Music + + + TVMA + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics: MC Workout: Bounce + Get your exercise on with the perfect collection of hip-hop classics and throwback jams. + Specials + Music + + + TVMA + + + + Music Choice Hip-Hop Classics: MC Workout: Bounce + Get your exercise on with the perfect collection of hip-hop classics and throwback jams. + Specials + Music + + + TVMA + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip-Hop Classics + School is in session, taking you back with your favorite hip-hop classics and old school rap music. + Specials + Music + + + TVPG + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hip Hop and R&B + Whether it be 16 bars or smooth R&B, Music Choice has a blend of both. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Hit List + Only the most popular, radio-friendly artists, without any of the commercials that go with it. + Specials + Music + + + TV14 + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Indie + Whether they're unsigned or just starting to make it big, discovering new independent artists. + Specials + Music + + + TVMA + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Jazz + Take a musical journey and experience the true essence of jazz with tracks that highlight its rich history and culture. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only!: Kids Party + We mixed your favorite fun and friendly jams to get the party started! + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only!: Kids Party + We mixed your favorite fun and friendly jams to get the party started! + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only!: Kids Party + We mixed your favorite fun and friendly jams to get the party started! + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only!: Kids Party + We mixed your favorite fun and friendly jams to get the party started! + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Kids Only + Mixing things up for your little ones and tweens with a wide variety of popular hits. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Light Classical + From the Baroque era to the present, this is your tasteful mix of the best all-time classical songs you know and love. + Specials + Music + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max: MC Fresh + Only the best songs from the last seven days released in the dance, pop, and hip-hop worlds. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max: MC Fresh + Only the best songs from the last seven days released in the dance, pop, and hip-hop worlds. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max: MC Fresh + Only the best songs from the last seven days released in the dance, pop, and hip-hop worlds. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max: MC Fresh + Only the best songs from the last seven days released in the dance, pop, and hip-hop worlds. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Max + The newest hits and the biggest Hip-Hop artists, with a mix of dance/EDM and alternative. + Specials + Music + + + TV14 + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Metal + Prepare yourself for an uncensored audio assault! + Specials + Music + + + TVMA + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Mexicana + Capture the essence of Regional Mexican music with a rich variety of Mexicana music styles. + Specials + Music + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana: Latin Trap Hits + The Latin Trap movement has bubbled up from the underground and is here to stay. Check out the latest and greatest artists right here. + Specials + Music + + + + Music Choice Musica Urbana: Latin Trap Hits + The Latin Trap movement has bubbled up from the underground and is here to stay. Check out the latest and greatest artists right here. + Specials + Music + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana: Latin Trap Hits + The Latin Trap movement has bubbled up from the underground and is here to stay. Check out the latest and greatest artists right here. + Specials + Music + + + + Music Choice Musica Urbana: Latin Trap Hits + The Latin Trap movement has bubbled up from the underground and is here to stay. Check out the latest and greatest artists right here. + Specials + Music + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice Musica Urbana + Feel the rhythm with the latest reggaetón, dembow and Spanish rap. + Specials + Music + + + TVPG + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice: Party Favorites + Party Favorites just got better! You'll now hear more of the classic and modern songs you love, with all your favorite pop and dance anthems. + Specials + Music + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop & Country + Favorite country and pop stars for an audience that is a little bit country and a little bit pop includes Florida Georgia Line, Selena Gomez, Bruno Mars, and Hunter Hayes. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Hits + Your favorite non-stop pop hits, plus a mix of today and yesterday's hits minus the rap. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice Pop Latino + Move with the non-stop chart topping hits from today's hottest Latin artists. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Classics + From R&B, funk and soul to the best of Motown, rewind the clock and play all your favorite R&B classics from the late '60s through the early '80s. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice R&B Soul + Your favorite sultry slow jams and R&B rhythms to fill your soul. + Specials + Music + + + TVPG + + + + Music Choice Rap: Rap Pioneers + Drake, Slim Shady, 50, Biggie-your favorite rappers that changed the game, right here in one place. + Specials + Music + + + + Music Choice Rap: Rap Pioneers + Drake, Slim Shady, 50, Biggie-your favorite rappers that changed the game, right here in one place. + Specials + Music + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap: Emo Trap + Get a taste of the hottest underground Trap rappers that have no problem showing off a little heart. + Specials + Music + + + + Music Choice Rap: Rap Pioneers + Drake, Slim Shady, 50, Biggie-your favorite rappers that changed the game, right here in one place. + Specials + Music + + + + Music Choice Rap: Rap Pioneers + Drake, Slim Shady, 50, Biggie-your favorite rappers that changed the game, right here in one place. + Specials + Music + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap: Emo Trap + Get a taste of the hottest underground Trap rappers that have no problem showing off a little heart. + Specials + Music + + + + Music Choice Rap: Rap Pioneers + Drake, Slim Shady, 50, Biggie-your favorite rappers that changed the game, right here in one place. + Specials + Music + + + + Music Choice Rap: Rap Pioneers + Drake, Slim Shady, 50, Biggie-your favorite rappers that changed the game, right here in one place. + Specials + Music + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap: Emo Trap + Get a taste of the hottest underground Trap rappers that have no problem showing off a little heart. + Specials + Music + + + + Music Choice Rap: Rap Pioneers + Drake, Slim Shady, 50, Biggie-your favorite rappers that changed the game, right here in one place. + Specials + Music + + + + Music Choice Rap: Rap Pioneers + Drake, Slim Shady, 50, Biggie-your favorite rappers that changed the game, right here in one place. + Specials + Music + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Rap + Serving up raw, uncensored Hip-Hop; from new music exclusives to the hottest uncensored rap of today. + Specials + Music + + + TVMA + + + + Music Choice Reggae Block Party + Exclusive mixes with DJ Rob Dinero and Bunji Garland. + Music + + + + Music Choice Reggae Block Party + Exclusive mixes with DJ Rob Dinero and Bunji Garland. + Music + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae Block Party + Exclusive mixes with DJ Rob Dinero and Bunji Garland. + Music + + + + Music Choice Reggae Block Party + Exclusive mixes with DJ Rob Dinero and Bunji Garland. + Music + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Reggae + Whether it's ska, soca or dancehall, these feel good reggae rhythms will put you in a Caribbean state of mind. + Specials + Music + + + TV14 + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock + Straight up rock with no filler. + Specials + Music + + + TVPG + + + + Music Choice Rock Hits + These are the songs and artists helping shape modern rock. + Specials + Music + + + TVMA + + + + Music Choice Rock Hits + These are the songs and artists helping shape modern rock. + Specials + Music + + + TVMA + + + + Music Choice Rock Hits + These are the songs and artists helping shape modern rock. + Specials + Music + + + TVMA + + + + Music Choice Rock Hits + These are the songs and artists helping shape modern rock. + Specials + Music + + + TVMA + + + + Music Choice Rock Hits + These are the songs and artists helping shape modern rock. + Specials + Music + + + TVMA + + + + Music Choice Rock Hits + These are the songs and artists helping shape modern rock. + Specials + Music + + + TVMA + + + + Music Choice Rock Hits + These are the songs and artists helping shape modern rock. + Specials + Music + + + TVMA + + + + Music Choice Rock Hits + These are the songs and artists helping shape modern rock. + Specials + Music + + + TVMA + + + + Music Choice Rock Hits + These are the songs and artists helping shape modern rock. + Specials + Music + + + TVMA + + + + Music Choice Rock Hits + These are the songs and artists helping shape modern rock. + Specials + Music + + + TVMA + + + + Music Choice Rock Hits + These are the songs and artists helping shape modern rock. + Specials + Music + + + TVMA + + + + Music Choice Rock Hits + These are the songs and artists helping shape modern rock. + Specials + Music + + + TVMA + + + + Music Choice Rock Hits + These are the songs and artists helping shape modern rock. + Specials + Music + + + TVMA + + + + Music Choice Rock Hits + These are the songs and artists helping shape modern rock. + Specials + Music + + + TVMA + + + + Music Choice Rock Hits + These are the songs and artists helping shape modern rock. + Specials + Music + + + TVMA + + + + Music Choice Rock Hits + These are the songs and artists helping shape modern rock. + Specials + Music + + + TVMA + + + + Music Choice Rock Hits + These are the songs and artists helping shape modern rock. + Specials + Music + + + TVMA + + + + Music Choice Rock Hits + These are the songs and artists helping shape modern rock. + Specials + Music + + + TVMA + + + + Music Choice Rock Hits + These are the songs and artists helping shape modern rock. + Specials + Music + + + TVMA + + + + Music Choice Rock Hits + These are the songs and artists helping shape modern rock. + Specials + Music + + + TVMA + + + + Music Choice Rock Hits + These are the songs and artists helping shape modern rock. + Specials + Music + + + TVMA + + + + Music Choice Rock Hits + These are the songs and artists helping shape modern rock. + Specials + Music + + + TVMA + + + + Music Choice Rock Hits + These are the songs and artists helping shape modern rock. + Specials + Music + + + TVMA + + + + Music Choice Rock Hits + These are the songs and artists helping shape modern rock. + Specials + Music + + + TVMA + + + + Music Choice Rock Hits + These are the songs and artists helping shape modern rock. + Specials + Music + + + TVMA + + + + Music Choice Rock Hits + These are the songs and artists helping shape modern rock. + Specials + Music + + + TVMA + + + + Music Choice Rock Hits + These are the songs and artists helping shape modern rock. + Specials + Music + + + TVMA + + + + Music Choice Romances + This is where amor lives. Listen to the Spanish-language love songs that have inspired generation after generation. + Specials + Music + + + TVPG + + + + Music Choice Romances + This is where amor lives. Listen to the Spanish-language love songs that have inspired generation after generation. + Specials + Music + + + TVPG + + + + Music Choice Romances + This is where amor lives. Listen to the Spanish-language love songs that have inspired generation after generation. + Specials + Music + + + TVPG + + + + Music Choice Romances + This is where amor lives. Listen to the Spanish-language love songs that have inspired generation after generation. + Specials + Music + + + TVPG + + + + Music Choice Romances + This is where amor lives. Listen to the Spanish-language love songs that have inspired generation after generation. + Specials + Music + + + TVPG + + + + Music Choice Romances + This is where amor lives. Listen to the Spanish-language love songs that have inspired generation after generation. + Specials + Music + + + TVPG + + + + Music Choice Romances + This is where amor lives. Listen to the Spanish-language love songs that have inspired generation after generation. + Specials + Music + + + TVPG + + + + Music Choice Romances + This is where amor lives. Listen to the Spanish-language love songs that have inspired generation after generation. + Specials + Music + + + TVPG + + + + Music Choice Romances + This is where amor lives. Listen to the Spanish-language love songs that have inspired generation after generation. + Specials + Music + + + TVPG + + + + Music Choice Romances + This is where amor lives. Listen to the Spanish-language love songs that have inspired generation after generation. + Specials + Music + + + TVPG + + + + Music Choice Romances + This is where amor lives. Listen to the Spanish-language love songs that have inspired generation after generation. + Specials + Music + + + TVPG + + + + Music Choice Romances + This is where amor lives. Listen to the Spanish-language love songs that have inspired generation after generation. + Specials + Music + + + TVPG + + + + Music Choice Romances + This is where amor lives. Listen to the Spanish-language love songs that have inspired generation after generation. + Specials + Music + + + TVPG + + + + Music Choice Romances + This is where amor lives. Listen to the Spanish-language love songs that have inspired generation after generation. + Specials + Music + + + TVPG + + + + Music Choice Romances + This is where amor lives. Listen to the Spanish-language love songs that have inspired generation after generation. + Specials + Music + + + TVPG + + + + Music Choice Romances + This is where amor lives. Listen to the Spanish-language love songs that have inspired generation after generation. + Specials + Music + + + TVPG + + + + Music Choice Romances + This is where amor lives. Listen to the Spanish-language love songs that have inspired generation after generation. + Specials + Music + + + TVPG + + + + Music Choice Romances + This is where amor lives. Listen to the Spanish-language love songs that have inspired generation after generation. + Specials + Music + + + TVPG + + + + Music Choice Romances + This is where amor lives. Listen to the Spanish-language love songs that have inspired generation after generation. + Specials + Music + + + TVPG + + + + Music Choice Romances + This is where amor lives. Listen to the Spanish-language love songs that have inspired generation after generation. + Specials + Music + + + TVPG + + + + Music Choice Romances + This is where amor lives. Listen to the Spanish-language love songs that have inspired generation after generation. + Specials + Music + + + TVPG + + + + Music Choice Romances + This is where amor lives. Listen to the Spanish-language love songs that have inspired generation after generation. + Specials + Music + + + TVPG + + + + Music Choice Romances + This is where amor lives. Listen to the Spanish-language love songs that have inspired generation after generation. + Specials + Music + + + TVPG + + + + Music Choice Romances + This is where amor lives. Listen to the Spanish-language love songs that have inspired generation after generation. + Specials + Music + + + TVPG + + + + Music Choice Romances + This is where amor lives. Listen to the Spanish-language love songs that have inspired generation after generation. + Specials + Music + + + TVPG + + + + Music Choice Romances + This is where amor lives. Listen to the Spanish-language love songs that have inspired generation after generation. + Specials + Music + + + TVPG + + + + Music Choice Romances + This is where amor lives. Listen to the Spanish-language love songs that have inspired generation after generation. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Singers & Swing + Discover the best recordings from the biggest singers and bands, as well as the current artists that keep the music alive. + Specials + Music + + + TVPG + + + + Music Choice Smooth Jazz + It's time to get your smooth groove on. These bright and tuneful melodies are your key to creating a light and joyous atmosphere. + Specials + Music + + + TVPG + + + + Music Choice Smooth Jazz + It's time to get your smooth groove on. These bright and tuneful melodies are your key to creating a light and joyous atmosphere. + Specials + Music + + + TVPG + + + + Music Choice Smooth Jazz + It's time to get your smooth groove on. These bright and tuneful melodies are your key to creating a light and joyous atmosphere. + Specials + Music + + + TVPG + + + + Music Choice Smooth Jazz + It's time to get your smooth groove on. These bright and tuneful melodies are your key to creating a light and joyous atmosphere. + Specials + Music + + + TVPG + + + + Music Choice Smooth Jazz + It's time to get your smooth groove on. These bright and tuneful melodies are your key to creating a light and joyous atmosphere. + Specials + Music + + + TVPG + + + + Music Choice Smooth Jazz + It's time to get your smooth groove on. These bright and tuneful melodies are your key to creating a light and joyous atmosphere. + Specials + Music + + + TVPG + + + + Music Choice Smooth Jazz + It's time to get your smooth groove on. These bright and tuneful melodies are your key to creating a light and joyous atmosphere. + Specials + Music + + + TVPG + + + + Music Choice Smooth Jazz + It's time to get your smooth groove on. These bright and tuneful melodies are your key to creating a light and joyous atmosphere. + Specials + Music + + + TVPG + + + + Music Choice Smooth Jazz + It's time to get your smooth groove on. These bright and tuneful melodies are your key to creating a light and joyous atmosphere. + Specials + Music + + + TVPG + + + + Music Choice Smooth Jazz + It's time to get your smooth groove on. These bright and tuneful melodies are your key to creating a light and joyous atmosphere. + Specials + Music + + + TVPG + + + + Music Choice Smooth Jazz + It's time to get your smooth groove on. These bright and tuneful melodies are your key to creating a light and joyous atmosphere. + Specials + Music + + + TVPG + + + + Music Choice Smooth Jazz + It's time to get your smooth groove on. These bright and tuneful melodies are your key to creating a light and joyous atmosphere. + Specials + Music + + + TVPG + + + + Music Choice Smooth Jazz + It's time to get your smooth groove on. These bright and tuneful melodies are your key to creating a light and joyous atmosphere. + Specials + Music + + + TVPG + + + + Music Choice Smooth Jazz + It's time to get your smooth groove on. These bright and tuneful melodies are your key to creating a light and joyous atmosphere. + Specials + Music + + + TVPG + + + + Music Choice Smooth Jazz + It's time to get your smooth groove on. These bright and tuneful melodies are your key to creating a light and joyous atmosphere. + Specials + Music + + + TVPG + + + + Music Choice Smooth Jazz + It's time to get your smooth groove on. These bright and tuneful melodies are your key to creating a light and joyous atmosphere. + Specials + Music + + + TVPG + + + + Music Choice Smooth Jazz + It's time to get your smooth groove on. These bright and tuneful melodies are your key to creating a light and joyous atmosphere. + Specials + Music + + + TVPG + + + + Music Choice Smooth Jazz + It's time to get your smooth groove on. These bright and tuneful melodies are your key to creating a light and joyous atmosphere. + Specials + Music + + + TVPG + + + + Music Choice Smooth Jazz + It's time to get your smooth groove on. These bright and tuneful melodies are your key to creating a light and joyous atmosphere. + Specials + Music + + + TVPG + + + + Music Choice Smooth Jazz + It's time to get your smooth groove on. These bright and tuneful melodies are your key to creating a light and joyous atmosphere. + Specials + Music + + + TVPG + + + + Music Choice Smooth Jazz + It's time to get your smooth groove on. These bright and tuneful melodies are your key to creating a light and joyous atmosphere. + Specials + Music + + + TVPG + + + + Music Choice Smooth Jazz + It's time to get your smooth groove on. These bright and tuneful melodies are your key to creating a light and joyous atmosphere. + Specials + Music + + + TVPG + + + + Music Choice Smooth Jazz + It's time to get your smooth groove on. These bright and tuneful melodies are your key to creating a light and joyous atmosphere. + Specials + Music + + + TVPG + + + + Music Choice Smooth Jazz + It's time to get your smooth groove on. These bright and tuneful melodies are your key to creating a light and joyous atmosphere. + Specials + Music + + + TVPG + + + + Music Choice Smooth Jazz + It's time to get your smooth groove on. These bright and tuneful melodies are your key to creating a light and joyous atmosphere. + Specials + Music + + + TVPG + + + + Music Choice Smooth Jazz + It's time to get your smooth groove on. These bright and tuneful melodies are your key to creating a light and joyous atmosphere. + Specials + Music + + + TVPG + + + + Music Choice Smooth Jazz + It's time to get your smooth groove on. These bright and tuneful melodies are your key to creating a light and joyous atmosphere. + Specials + Music + + + TVPG + + + + Music Choice: Soft Rock + Check out our updates to Soft Rock! We've freshened things up to bring you newer songs along with your go-to classics. + Specials + + + + Music Choice: Soft Rock + Check out our updates to Soft Rock! We've freshened things up to bring you newer songs along with your go-to classics. + Specials + + + + Music Choice: Soft Rock + Check out our updates to Soft Rock! We've freshened things up to bring you newer songs along with your go-to classics. + Specials + + + + Music Choice: Soft Rock + Check out our updates to Soft Rock! We've freshened things up to bring you newer songs along with your go-to classics. + Specials + + + + Music Choice: Soft Rock + Check out our updates to Soft Rock! We've freshened things up to bring you newer songs along with your go-to classics. + Specials + + + + Music Choice: Soft Rock + Check out our updates to Soft Rock! We've freshened things up to bring you newer songs along with your go-to classics. + Specials + + + + Music Choice: Soft Rock + Check out our updates to Soft Rock! We've freshened things up to bring you newer songs along with your go-to classics. + Specials + + + + Music Choice: Soft Rock + Check out our updates to Soft Rock! We've freshened things up to bring you newer songs along with your go-to classics. + Specials + + + + Music Choice: Soft Rock + Check out our updates to Soft Rock! We've freshened things up to bring you newer songs along with your go-to classics. + Specials + + + + Music Choice: Soft Rock + Check out our updates to Soft Rock! We've freshened things up to bring you newer songs along with your go-to classics. + Specials + + + + Music Choice: Soft Rock + Check out our updates to Soft Rock! We've freshened things up to bring you newer songs along with your go-to classics. + Specials + + + + Music Choice: Soft Rock + Check out our updates to Soft Rock! We've freshened things up to bring you newer songs along with your go-to classics. + Specials + + + + Music Choice: Soft Rock + Check out our updates to Soft Rock! We've freshened things up to bring you newer songs along with your go-to classics. + Specials + + + + Music Choice: Soft Rock + Check out our updates to Soft Rock! We've freshened things up to bring you newer songs along with your go-to classics. + Specials + + + + Music Choice: Soft Rock + Check out our updates to Soft Rock! We've freshened things up to bring you newer songs along with your go-to classics. + Specials + + + + Music Choice: Soft Rock + Check out our updates to Soft Rock! We've freshened things up to bring you newer songs along with your go-to classics. + Specials + + + + Music Choice: Soft Rock + Check out our updates to Soft Rock! We've freshened things up to bring you newer songs along with your go-to classics. + Specials + + + + Music Choice: Soft Rock + Check out our updates to Soft Rock! We've freshened things up to bring you newer songs along with your go-to classics. + Specials + + + + Music Choice: Soft Rock + Check out our updates to Soft Rock! We've freshened things up to bring you newer songs along with your go-to classics. + Specials + + + + Music Choice: Soft Rock + Check out our updates to Soft Rock! We've freshened things up to bring you newer songs along with your go-to classics. + Specials + + + + Music Choice: Soft Rock + Check out our updates to Soft Rock! We've freshened things up to bring you newer songs along with your go-to classics. + Specials + + + + Music Choice: Soft Rock + Check out our updates to Soft Rock! We've freshened things up to bring you newer songs along with your go-to classics. + Specials + + + + Music Choice: Soft Rock + Check out our updates to Soft Rock! We've freshened things up to bring you newer songs along with your go-to classics. + Specials + + + + Music Choice: Soft Rock + Check out our updates to Soft Rock! We've freshened things up to bring you newer songs along with your go-to classics. + Specials + + + + Music Choice: Soft Rock + Check out our updates to Soft Rock! We've freshened things up to bring you newer songs along with your go-to classics. + Specials + + + + Music Choice: Soft Rock + Check out our updates to Soft Rock! We've freshened things up to bring you newer songs along with your go-to classics. + Specials + + + + Music Choice: Soft Rock + Check out our updates to Soft Rock! We've freshened things up to bring you newer songs along with your go-to classics. + Specials + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies: Doo-Wop + Take it back to the 50's and 60's with only the best of mid-century R&B solo artists and groups. Harmonies will be heard! + Specials + Music + + + TVPG + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Solid Gold Oldies + The hits of the '50s and '60s, from the sock-hops to the changing times. + Specials + Music + + + + Music Choice Sounds of the Seasons + From Christmas to Mardi Gras, there's always a reason to enjoy the season with Music Choice. Celebrate the holidays with songs that capture the spirit of each and every season. + Specials + Christmas + + + + Music Choice Sounds of the Seasons + From Christmas to Mardi Gras, there's always a reason to enjoy the season with Music Choice. Celebrate the holidays with songs that capture the spirit of each and every season. + Specials + Christmas + + + + Music Choice Sounds of the Seasons + From Christmas to Mardi Gras, there's always a reason to enjoy the season with Music Choice. Celebrate the holidays with songs that capture the spirit of each and every season. + Specials + Christmas + + + + Music Choice Sounds of the Seasons + From Christmas to Mardi Gras, there's always a reason to enjoy the season with Music Choice. Celebrate the holidays with songs that capture the spirit of each and every season. + Specials + Christmas + + + + Music Choice Sounds of the Seasons + From Christmas to Mardi Gras, there's always a reason to enjoy the season with Music Choice. Celebrate the holidays with songs that capture the spirit of each and every season. + Specials + Christmas + + + + Music Choice Sounds of the Seasons + From Christmas to Mardi Gras, there's always a reason to enjoy the season with Music Choice. Celebrate the holidays with songs that capture the spirit of each and every season. + Specials + Christmas + + + + Music Choice Sounds of the Seasons + From Christmas to Mardi Gras, there's always a reason to enjoy the season with Music Choice. Celebrate the holidays with songs that capture the spirit of each and every season. + Specials + Christmas + + + + Music Choice Sounds of the Seasons + From Christmas to Mardi Gras, there's always a reason to enjoy the season with Music Choice. Celebrate the holidays with songs that capture the spirit of each and every season. + Specials + Christmas + + + + Music Choice Sounds of the Seasons + From Christmas to Mardi Gras, there's always a reason to enjoy the season with Music Choice. Celebrate the holidays with songs that capture the spirit of each and every season. + Specials + Christmas + + + + Music Choice Sounds of the Seasons + From Christmas to Mardi Gras, there's always a reason to enjoy the season with Music Choice. Celebrate the holidays with songs that capture the spirit of each and every season. + Specials + Christmas + + + + Music Choice Sounds of the Seasons + From Christmas to Mardi Gras, there's always a reason to enjoy the season with Music Choice. Celebrate the holidays with songs that capture the spirit of each and every season. + Specials + Christmas + + + + Music Choice Sounds of the Seasons + From Christmas to Mardi Gras, there's always a reason to enjoy the season with Music Choice. Celebrate the holidays with songs that capture the spirit of each and every season. + Specials + Christmas + + + + Music Choice Sounds of the Seasons + From Christmas to Mardi Gras, there's always a reason to enjoy the season with Music Choice. Celebrate the holidays with songs that capture the spirit of each and every season. + Specials + Christmas + + + + Music Choice Sounds of the Seasons + From Christmas to Mardi Gras, there's always a reason to enjoy the season with Music Choice. Celebrate the holidays with songs that capture the spirit of each and every season. + Specials + Christmas + + + + Music Choice Sounds of the Seasons + From Christmas to Mardi Gras, there's always a reason to enjoy the season with Music Choice. Celebrate the holidays with songs that capture the spirit of each and every season. + Specials + Christmas + + + + Music Choice Sounds of the Seasons + From Christmas to Mardi Gras, there's always a reason to enjoy the season with Music Choice. Celebrate the holidays with songs that capture the spirit of each and every season. + Specials + Christmas + + + + Music Choice Sounds of the Seasons + From Christmas to Mardi Gras, there's always a reason to enjoy the season with Music Choice. Celebrate the holidays with songs that capture the spirit of each and every season. + Specials + Christmas + + + + Music Choice Sounds of the Seasons + From Christmas to Mardi Gras, there's always a reason to enjoy the season with Music Choice. Celebrate the holidays with songs that capture the spirit of each and every season. + Specials + Christmas + + + + Music Choice Sounds of the Seasons + From Christmas to Mardi Gras, there's always a reason to enjoy the season with Music Choice. Celebrate the holidays with songs that capture the spirit of each and every season. + Specials + Christmas + + + + Music Choice Sounds of the Seasons + From Christmas to Mardi Gras, there's always a reason to enjoy the season with Music Choice. Celebrate the holidays with songs that capture the spirit of each and every season. + Specials + Christmas + + + + Music Choice Sounds of the Seasons + From Christmas to Mardi Gras, there's always a reason to enjoy the season with Music Choice. Celebrate the holidays with songs that capture the spirit of each and every season. + Specials + Christmas + + + + Music Choice Sounds of the Seasons + From Christmas to Mardi Gras, there's always a reason to enjoy the season with Music Choice. Celebrate the holidays with songs that capture the spirit of each and every season. + Specials + Christmas + + + + Music Choice Sounds of the Seasons + From Christmas to Mardi Gras, there's always a reason to enjoy the season with Music Choice. Celebrate the holidays with songs that capture the spirit of each and every season. + Specials + Christmas + + + + Music Choice Sounds of the Seasons + From Christmas to Mardi Gras, there's always a reason to enjoy the season with Music Choice. Celebrate the holidays with songs that capture the spirit of each and every season. + Specials + Christmas + + + + Music Choice Sounds of the Seasons + From Christmas to Mardi Gras, there's always a reason to enjoy the season with Music Choice. Celebrate the holidays with songs that capture the spirit of each and every season. + Specials + Christmas + + + + Music Choice Sounds of the Seasons + From Christmas to Mardi Gras, there's always a reason to enjoy the season with Music Choice. Celebrate the holidays with songs that capture the spirit of each and every season. + Specials + Christmas + + + + Music Choice Sounds of the Seasons + From Christmas to Mardi Gras, there's always a reason to enjoy the season with Music Choice. Celebrate the holidays with songs that capture the spirit of each and every season. + Specials + Christmas + + + + Music Choice Soundscapes + Take a moment for yourself and enjoy the best new age, atmospheric, and positive music to soothe any mood. + Specials + Music + + + TVG + + + + Music Choice Soundscapes: Sleep Noise + Close your eyes and let these soft, peaceful sounds relax your mind for the perfect sleep. + Specials + Music + + + TVG + + + + Music Choice Soundscapes + Take a moment for yourself and enjoy the best new age, atmospheric, and positive music to soothe any mood. + Specials + Music + + + TVG + + + + Music Choice Soundscapes + Take a moment for yourself and enjoy the best new age, atmospheric, and positive music to soothe any mood. + Specials + Music + + + TVG + + + + Music Choice Soundscapes + Take a moment for yourself and enjoy the best new age, atmospheric, and positive music to soothe any mood. + Specials + Music + + + TVG + + + + Music Choice Soundscapes + Take a moment for yourself and enjoy the best new age, atmospheric, and positive music to soothe any mood. + Specials + Music + + + TVG + + + + Music Choice Soundscapes + Take a moment for yourself and enjoy the best new age, atmospheric, and positive music to soothe any mood. + Specials + Music + + + TVG + + + + Music Choice Soundscapes + Take a moment for yourself and enjoy the best new age, atmospheric, and positive music to soothe any mood. + Specials + Music + + + TVG + + + + Music Choice Soundscapes + Take a moment for yourself and enjoy the best new age, atmospheric, and positive music to soothe any mood. + Specials + Music + + + TVG + + + + Music Choice Soundscapes: Sleep Noise + Close your eyes and let these soft, peaceful sounds relax your mind for the perfect sleep. + Specials + Music + + + TVG + + + + Music Choice Soundscapes + Take a moment for yourself and enjoy the best new age, atmospheric, and positive music to soothe any mood. + Specials + Music + + + TVG + + + + Music Choice Soundscapes + Take a moment for yourself and enjoy the best new age, atmospheric, and positive music to soothe any mood. + Specials + Music + + + TVG + + + + Music Choice Soundscapes + Take a moment for yourself and enjoy the best new age, atmospheric, and positive music to soothe any mood. + Specials + Music + + + TVG + + + + Music Choice Soundscapes + Take a moment for yourself and enjoy the best new age, atmospheric, and positive music to soothe any mood. + Specials + Music + + + TVG + + + + Music Choice Soundscapes + Take a moment for yourself and enjoy the best new age, atmospheric, and positive music to soothe any mood. + Specials + Music + + + TVG + + + + Music Choice Soundscapes + Take a moment for yourself and enjoy the best new age, atmospheric, and positive music to soothe any mood. + Specials + Music + + + TVG + + + + Music Choice Soundscapes + Take a moment for yourself and enjoy the best new age, atmospheric, and positive music to soothe any mood. + Specials + Music + + + TVG + + + + Music Choice Soundscapes: Sleep Noise + Close your eyes and let these soft, peaceful sounds relax your mind for the perfect sleep. + Specials + Music + + + TVG + + + + Music Choice Soundscapes + Take a moment for yourself and enjoy the best new age, atmospheric, and positive music to soothe any mood. + Specials + Music + + + TVG + + + + Music Choice Soundscapes + Take a moment for yourself and enjoy the best new age, atmospheric, and positive music to soothe any mood. + Specials + Music + + + TVG + + + + Music Choice Soundscapes + Take a moment for yourself and enjoy the best new age, atmospheric, and positive music to soothe any mood. + Specials + Music + + + TVG + + + + Music Choice Soundscapes + Take a moment for yourself and enjoy the best new age, atmospheric, and positive music to soothe any mood. + Specials + Music + + + TVG + + + + Music Choice Soundscapes + Take a moment for yourself and enjoy the best new age, atmospheric, and positive music to soothe any mood. + Specials + Music + + + TVG + + + + Music Choice Soundscapes + Take a moment for yourself and enjoy the best new age, atmospheric, and positive music to soothe any mood. + Specials + Music + + + TVG + + + + Music Choice Soundscapes + Take a moment for yourself and enjoy the best new age, atmospheric, and positive music to soothe any mood. + Specials + Music + + + TVG + + + + Music Choice Soundscapes: Sleep Noise + Close your eyes and let these soft, peaceful sounds relax your mind for the perfect sleep. + Specials + Music + + + TVG + + + + Music Choice Soundscapes + Take a moment for yourself and enjoy the best new age, atmospheric, and positive music to soothe any mood. + Specials + Music + + + TVG + + + + Music Choice Soundscapes + Take a moment for yourself and enjoy the best new age, atmospheric, and positive music to soothe any mood. + Specials + Music + + + TVG + + + + Music Choice Soundscapes + Take a moment for yourself and enjoy the best new age, atmospheric, and positive music to soothe any mood. + Specials + Music + + + TVG + + + + Music Choice Soundscapes + Take a moment for yourself and enjoy the best new age, atmospheric, and positive music to soothe any mood. + Specials + Music + + + TVG + + + + Music Choice Soundscapes + Take a moment for yourself and enjoy the best new age, atmospheric, and positive music to soothe any mood. + Specials + Music + + + TVG + + + + Music Choice Stage & Screen + Your adventure begins with an original mix of the music made famous in epic blockbuster film scores, television and the Broadway stage. + Specials + Music + + + TVPG + + + + Music Choice Stage & Screen + Your adventure begins with an original mix of the music made famous in epic blockbuster film scores, television and the Broadway stage. + Specials + Music + + + TVPG + + + + Music Choice Stage & Screen + Your adventure begins with an original mix of the music made famous in epic blockbuster film scores, television and the Broadway stage. + Specials + Music + + + TVPG + + + + Music Choice Stage & Screen + Your adventure begins with an original mix of the music made famous in epic blockbuster film scores, television and the Broadway stage. + Specials + Music + + + TVPG + + + + Music Choice Stage & Screen + Your adventure begins with an original mix of the music made famous in epic blockbuster film scores, television and the Broadway stage. + Specials + Music + + + TVPG + + + + Music Choice Stage & Screen + Your adventure begins with an original mix of the music made famous in epic blockbuster film scores, television and the Broadway stage. + Specials + Music + + + TVPG + + + + Music Choice Stage & Screen + Your adventure begins with an original mix of the music made famous in epic blockbuster film scores, television and the Broadway stage. + Specials + Music + + + TVPG + + + + Music Choice Stage & Screen + Your adventure begins with an original mix of the music made famous in epic blockbuster film scores, television and the Broadway stage. + Specials + Music + + + TVPG + + + + Music Choice Stage & Screen + Your adventure begins with an original mix of the music made famous in epic blockbuster film scores, television and the Broadway stage. + Specials + Music + + + TVPG + + + + Music Choice Stage & Screen + Your adventure begins with an original mix of the music made famous in epic blockbuster film scores, television and the Broadway stage. + Specials + Music + + + TVPG + + + + Music Choice Stage & Screen + Your adventure begins with an original mix of the music made famous in epic blockbuster film scores, television and the Broadway stage. + Specials + Music + + + TVPG + + + + Music Choice Stage & Screen + Your adventure begins with an original mix of the music made famous in epic blockbuster film scores, television and the Broadway stage. + Specials + Music + + + TVPG + + + + Music Choice Stage & Screen + Your adventure begins with an original mix of the music made famous in epic blockbuster film scores, television and the Broadway stage. + Specials + Music + + + TVPG + + + + Music Choice Stage & Screen + Your adventure begins with an original mix of the music made famous in epic blockbuster film scores, television and the Broadway stage. + Specials + Music + + + TVPG + + + + Music Choice Stage & Screen + Your adventure begins with an original mix of the music made famous in epic blockbuster film scores, television and the Broadway stage. + Specials + Music + + + TVPG + + + + Music Choice Stage & Screen + Your adventure begins with an original mix of the music made famous in epic blockbuster film scores, television and the Broadway stage. + Specials + Music + + + TVPG + + + + Music Choice Stage & Screen + Your adventure begins with an original mix of the music made famous in epic blockbuster film scores, television and the Broadway stage. + Specials + Music + + + TVPG + + + + Music Choice Stage & Screen + Your adventure begins with an original mix of the music made famous in epic blockbuster film scores, television and the Broadway stage. + Specials + Music + + + TVPG + + + + Music Choice Stage & Screen + Your adventure begins with an original mix of the music made famous in epic blockbuster film scores, television and the Broadway stage. + Specials + Music + + + TVPG + + + + Music Choice Stage & Screen + Your adventure begins with an original mix of the music made famous in epic blockbuster film scores, television and the Broadway stage. + Specials + Music + + + TVPG + + + + Music Choice Stage & Screen + Your adventure begins with an original mix of the music made famous in epic blockbuster film scores, television and the Broadway stage. + Specials + Music + + + TVPG + + + + Music Choice Stage & Screen + Your adventure begins with an original mix of the music made famous in epic blockbuster film scores, television and the Broadway stage. + Specials + Music + + + TVPG + + + + Music Choice Stage & Screen + Your adventure begins with an original mix of the music made famous in epic blockbuster film scores, television and the Broadway stage. + Specials + Music + + + TVPG + + + + Music Choice Stage & Screen + Your adventure begins with an original mix of the music made famous in epic blockbuster film scores, television and the Broadway stage. + Specials + Music + + + TVPG + + + + Music Choice Stage & Screen + Your adventure begins with an original mix of the music made famous in epic blockbuster film scores, television and the Broadway stage. + Specials + Music + + + TVPG + + + + Music Choice Stage & Screen + Your adventure begins with an original mix of the music made famous in epic blockbuster film scores, television and the Broadway stage. + Specials + Music + + + TVPG + + + + Music Choice Stage & Screen + Your adventure begins with an original mix of the music made famous in epic blockbuster film scores, television and the Broadway stage. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Teen Beats + The spot for music from the hottest artists who are actually your age. These are not your mom and dad's oldies. + Specials + Music + + + TVPG + + + + Music Choice Throwback Jamz + Rediscovering favorite R&B and hip-Hop jams from back-in-the-day through the '90s. + Specials + Music + + + TVPG + + + + Music Choice Throwback Jamz + Rediscovering favorite R&B and hip-Hop jams from back-in-the-day through the '90s. + Specials + Music + + + TVPG + + + + Music Choice Throwback Jamz + Rediscovering favorite R&B and hip-Hop jams from back-in-the-day through the '90s. + Specials + Music + + + TVPG + + + + Music Choice Throwback Jamz + Rediscovering favorite R&B and hip-Hop jams from back-in-the-day through the '90s. + Specials + Music + + + TVPG + + + + Music Choice Throwback Jamz: R&B 2K + Turn back the time and relive those glorious days of 2000s R&B. These are the hits from the decade that'll hit home. + Specials + Music + + + + Music Choice Throwback Jamz + Rediscovering favorite R&B and hip-Hop jams from back-in-the-day through the '90s. + Specials + Music + + + TVPG + + + + Music Choice Throwback Jamz + Rediscovering favorite R&B and hip-Hop jams from back-in-the-day through the '90s. + Specials + Music + + + TVPG + + + + Music Choice Throwback Jamz + Rediscovering favorite R&B and hip-Hop jams from back-in-the-day through the '90s. + Specials + Music + + + TVPG + + + + Music Choice Throwback Jamz + Rediscovering favorite R&B and hip-Hop jams from back-in-the-day through the '90s. + Specials + Music + + + TVPG + + + + Music Choice Throwback Jamz + Rediscovering favorite R&B and hip-Hop jams from back-in-the-day through the '90s. + Specials + Music + + + TVPG + + + + Music Choice Throwback Jamz + Rediscovering favorite R&B and hip-Hop jams from back-in-the-day through the '90s. + Specials + Music + + + TVPG + + + + Music Choice Throwback Jamz + Rediscovering favorite R&B and hip-Hop jams from back-in-the-day through the '90s. + Specials + Music + + + TVPG + + + + Music Choice Throwback Jamz: R&B 2K + Turn back the time and relive those glorious days of 2000s R&B. These are the hits from the decade that'll hit home. + Specials + Music + + + + Music Choice Throwback Jamz + Rediscovering favorite R&B and hip-Hop jams from back-in-the-day through the '90s. + Specials + Music + + + TVPG + + + + Music Choice Throwback Jamz + Rediscovering favorite R&B and hip-Hop jams from back-in-the-day through the '90s. + Specials + Music + + + TVPG + + + + Music Choice Throwback Jamz + Rediscovering favorite R&B and hip-Hop jams from back-in-the-day through the '90s. + Specials + Music + + + TVPG + + + + Music Choice Throwback Jamz + Rediscovering favorite R&B and hip-Hop jams from back-in-the-day through the '90s. + Specials + Music + + + TVPG + + + + Music Choice Throwback Jamz + Rediscovering favorite R&B and hip-Hop jams from back-in-the-day through the '90s. + Specials + Music + + + TVPG + + + + Music Choice Throwback Jamz + Rediscovering favorite R&B and hip-Hop jams from back-in-the-day through the '90s. + Specials + Music + + + TVPG + + + + Music Choice Throwback Jamz + Rediscovering favorite R&B and hip-Hop jams from back-in-the-day through the '90s. + Specials + Music + + + TVPG + + + + Music Choice Throwback Jamz: R&B 2K + Turn back the time and relive those glorious days of 2000s R&B. These are the hits from the decade that'll hit home. + Specials + Music + + + + Music Choice Throwback Jamz + Rediscovering favorite R&B and hip-Hop jams from back-in-the-day through the '90s. + Specials + Music + + + TVPG + + + + Music Choice Throwback Jamz + Rediscovering favorite R&B and hip-Hop jams from back-in-the-day through the '90s. + Specials + Music + + + TVPG + + + + Music Choice Throwback Jamz + Rediscovering favorite R&B and hip-Hop jams from back-in-the-day through the '90s. + Specials + Music + + + TVPG + + + + Music Choice Throwback Jamz + Rediscovering favorite R&B and hip-Hop jams from back-in-the-day through the '90s. + Specials + Music + + + TVPG + + + + Music Choice Throwback Jamz + Rediscovering favorite R&B and hip-Hop jams from back-in-the-day through the '90s. + Specials + Music + + + TVPG + + + + Music Choice Throwback Jamz + Rediscovering favorite R&B and hip-Hop jams from back-in-the-day through the '90s. + Specials + Music + + + TVPG + + + + Music Choice Throwback Jamz + Rediscovering favorite R&B and hip-Hop jams from back-in-the-day through the '90s. + Specials + Music + + + TVPG + + + + Music Choice Throwback Jamz: R&B 2K + Turn back the time and relive those glorious days of 2000s R&B. These are the hits from the decade that'll hit home. + Specials + Music + + + + Music Choice Throwback Jamz + Rediscovering favorite R&B and hip-Hop jams from back-in-the-day through the '90s. + Specials + Music + + + TVPG + + + + Music Choice Throwback Jamz + Rediscovering favorite R&B and hip-Hop jams from back-in-the-day through the '90s. + Specials + Music + + + TVPG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Today's Country + Enjoy your favorite Country hits by today's hottest Country stars. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Toddler Tunes + This channel is all about the babies, filled with your little one's favorite lullabies and sing-along songs. + Specials + Music + + + TVG + + + + Music Choice Tropicales + Quieres bailar? These are the best salsa, merengue, and bachata tracks to get everyone on the dance floor. + Specials + Music + + + TVPG + + + + Music Choice Tropicales + Quieres bailar? These are the best salsa, merengue, and bachata tracks to get everyone on the dance floor. + Specials + Music + + + TVPG + + + + Music Choice Tropicales + Quieres bailar? These are the best salsa, merengue, and bachata tracks to get everyone on the dance floor. + Specials + Music + + + TVPG + + + + Music Choice Tropicales + Quieres bailar? These are the best salsa, merengue, and bachata tracks to get everyone on the dance floor. + Specials + Music + + + TVPG + + + + Music Choice Tropicales: Workout: Tropical Rhythms + Get lost in these upbeat tropical sounds that'll take you to an island far away for your workout. + Specials + Music + + + TVPG + + + + Music Choice Tropicales + Quieres bailar? These are the best salsa, merengue, and bachata tracks to get everyone on the dance floor. + Specials + Music + + + TVPG + + + + Music Choice Tropicales + Quieres bailar? These are the best salsa, merengue, and bachata tracks to get everyone on the dance floor. + Specials + Music + + + TVPG + + + + Music Choice Tropicales + Quieres bailar? These are the best salsa, merengue, and bachata tracks to get everyone on the dance floor. + Specials + Music + + + TVPG + + + + Music Choice Tropicales + Quieres bailar? These are the best salsa, merengue, and bachata tracks to get everyone on the dance floor. + Specials + Music + + + TVPG + + + + Music Choice Tropicales + Quieres bailar? These are the best salsa, merengue, and bachata tracks to get everyone on the dance floor. + Specials + Music + + + TVPG + + + + Music Choice Tropicales + Quieres bailar? These are the best salsa, merengue, and bachata tracks to get everyone on the dance floor. + Specials + Music + + + TVPG + + + + Music Choice Tropicales: Workout: Tropical Rhythms + Get lost in these upbeat tropical sounds that'll take you to an island far away for your workout. + Specials + Music + + + TVPG + + + + Music Choice Tropicales + Quieres bailar? These are the best salsa, merengue, and bachata tracks to get everyone on the dance floor. + Specials + Music + + + TVPG + + + + Music Choice Tropicales + Quieres bailar? These are the best salsa, merengue, and bachata tracks to get everyone on the dance floor. + Specials + Music + + + TVPG + + + + Music Choice Tropicales + Quieres bailar? These are the best salsa, merengue, and bachata tracks to get everyone on the dance floor. + Specials + Music + + + TVPG + + + + Music Choice Tropicales + Quieres bailar? These are the best salsa, merengue, and bachata tracks to get everyone on the dance floor. + Specials + Music + + + TVPG + + + + Music Choice Tropicales + Quieres bailar? These are the best salsa, merengue, and bachata tracks to get everyone on the dance floor. + Specials + Music + + + TVPG + + + + Music Choice Tropicales + Quieres bailar? These are the best salsa, merengue, and bachata tracks to get everyone on the dance floor. + Specials + Music + + + TVPG + + + + Music Choice Tropicales: Workout: Tropical Rhythms + Get lost in these upbeat tropical sounds that'll take you to an island far away for your workout. + Specials + Music + + + TVPG + + + + Music Choice Tropicales + Quieres bailar? These are the best salsa, merengue, and bachata tracks to get everyone on the dance floor. + Specials + Music + + + TVPG + + + + Music Choice Tropicales + Quieres bailar? These are the best salsa, merengue, and bachata tracks to get everyone on the dance floor. + Specials + Music + + + TVPG + + + + Music Choice Tropicales + Quieres bailar? These are the best salsa, merengue, and bachata tracks to get everyone on the dance floor. + Specials + Music + + + TVPG + + + + Music Choice Tropicales + Quieres bailar? These are the best salsa, merengue, and bachata tracks to get everyone on the dance floor. + Specials + Music + + + TVPG + + + + Music Choice Tropicales + Quieres bailar? These are the best salsa, merengue, and bachata tracks to get everyone on the dance floor. + Specials + Music + + + TVPG + + + + Music Choice Tropicales + Quieres bailar? These are the best salsa, merengue, and bachata tracks to get everyone on the dance floor. + Specials + Music + + + TVPG + + + + Music Choice Tropicales: Workout: Tropical Rhythms + Get lost in these upbeat tropical sounds that'll take you to an island far away for your workout. + Specials + Music + + + TVPG + + + + Music Choice Tropicales + Quieres bailar? These are the best salsa, merengue, and bachata tracks to get everyone on the dance floor. + Specials + Music + + + TVPG + + + + Music Choice Tropicales + Quieres bailar? These are the best salsa, merengue, and bachata tracks to get everyone on the dance floor. + Specials + Music + + + TVPG + + + + Music Choice Tropicales + Quieres bailar? These are the best salsa, merengue, and bachata tracks to get everyone on the dance floor. + Specials + Music + + + TVPG + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K: MC Workout: Cardio Classics + Don't hit the gym without flipping on this channel that's full of energy-boosting pop hits from the 2000's. + Specials + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K: MC Workout: Cardio Classics + Don't hit the gym without flipping on this channel that's full of energy-boosting pop hits from the 2000's. + Specials + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K: MC Workout: Cardio Classics + Don't hit the gym without flipping on this channel that's full of energy-boosting pop hits from the 2000's. + Specials + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K: MC Workout: Cardio Classics + Don't hit the gym without flipping on this channel that's full of energy-boosting pop hits from the 2000's. + Specials + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Music Choice Y2K + Listen to the upbeat pop, hip-hop, and rock that made the early 2000s unforgettable. + Specials + Music + + + TV14 + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + A Quiet Place Part II + Following the deadly events at home, the Abbott family must now face the terrors of the outside world as they continue their fight for survival in silence. Forced to venture into the unknown, they quickly realize that the creatures that hunt by sound are not the only threats that lurk beyond the sand path. + + Emily Blunt + John Krasinski + Millicent Simmonds + Noah Jupe + Cillian Murphy + Djimon Hounsou + Marco Beltrami + John Krasinski + Cillian Murphy + JoAnn Perritano + John Krasinski + + 2020 + Drama + Horror + Suspense + Science Fiction + + + 7.1/10 + + + + The Ring + Naomi Watts shines in this thriller about a reporter who investigates her niece's mysterious death, which seems to be linked to a videotape. Apparently, anyone who watches the tape dies horribly seven days later. Martin Henderson, David Dorfman, Brian Cox, Jane Alexander, Lindsay Frost, Amber Tamblyn. + + Naomi Watts + Martin Henderson + David Dorfman + Brian Cox + Jane Alexander + Lindsay Frost + Hans Zimmer + Gore Verbinski + Armand Mastroianni + Michele Weisler + Ehren Kruger + + 2002 + Horror + Suspense + + + TV-14 + + + 5.7/10 + + + + There's Something Wrong with the Children + When Margaret and Ben plan a weekend with friends Ellie and Thomas, the latter bring their children Spencer and Lucy. But a hike in the woods leads to an ancient ruin. That night, the children disappear but are eventually found at the ruins. After this, there's something different about Spencer and Lucy, and the two couples are plunged into a horror they may not escape from. + + Amanda Crew + Zach Gilford + Briella Guiza + David Mattle + Carlos Santos + Ramona Tyler + The Gifted + Roxanne Benjamin + Paul B. Uddo + David White + + 2023 + Horror + Suspense + + + TV-MA + + + 5.3/10 + + + + American Refugee + After the US economy collapses, the country quickly spirals into violent chaos, forcing a family to seek shelter in the safety of their neighbor's bunker. But, soon, the family start to discover that life inside the bunker may be more dangerous than the chaotic world outside. + + Ali LeRoi + + 2021 + Drama + Horror + + + TV-MA + + + + The Uninvited + Two teen girls clash with their new stepmother after the ghost of their mother warns them of the woman's evil intentions in this fright-filled remake of the 2003 Korean horror film. + + Emily Browning + Arielle Kebbel + David Strathairn + Elizabeth Banks + Maya Massar + Kevin McNulty + Christopher Young + Thomas Guard + Charles Guard + Laurie MacDonald + Craig Rosenberg + + 2009 + Drama + Horror + Suspense + + + 4.3/10 + + + + Freedom Writers + Two-time Academy Award winner Hilary Swank stars in this powerful true story of an idealistic teacher at a tough high school in California who tries to inspire her troubled students through journal writing. Patrick Dempsey, Scott Glenn, Imelda Staunton, April Lee Hernandez. Directed by Richard LaGravenese. + + Hilary Swank + Patrick Dempsey + Scott Glenn + Imelda Staunton + Mario + Kristin Herrera + Mark Isham + Richard LaGravenese + Danny DeVito + Richard LaGravenese + + 2007 + Drama + + + TV-PG + + + 6.4/10 + + + + The Gift + Cate Blanchett demonstrates her remarkable range as a widowed Southerner whose psychic powers get her involved in a murder mystery. All the ingredients for a classic spooky thriller are here---gothic atmosphere, juicy plot twists, multiple suspects---and expert horror director Sam Raimi delivers the goods. Keanu Reeves and Katie Holmes stand out in the first-rate cast. Giovanni Ribisi. + + Cate Blanchett + Keanu Reeves + Katie Holmes + Giovanni Ribisi + Greg Kinnear + Hilary Swank + Christopher Young + Sam Raimi + Gary Lucchesi + Billy Bob Thornton + + 2000 + Drama + Suspense + + + TV-14 + + + 6.2/10 + + + + There's Something Wrong with the Children + When Margaret and Ben plan a weekend with friends Ellie and Thomas, the latter bring their children Spencer and Lucy. But a hike in the woods leads to an ancient ruin. That night, the children disappear but are eventually found at the ruins. After this, there's something different about Spencer and Lucy, and the two couples are plunged into a horror they may not escape from. + + Amanda Crew + Zach Gilford + Briella Guiza + David Mattle + Carlos Santos + Ramona Tyler + The Gifted + Roxanne Benjamin + Paul B. Uddo + David White + + 2023 + Horror + Suspense + + + TV-MA + + + 5.3/10 + + + + The Ring + Naomi Watts shines in this thriller about a reporter who investigates her niece's mysterious death, which seems to be linked to a videotape. Apparently, anyone who watches the tape dies horribly seven days later. Martin Henderson, David Dorfman, Brian Cox, Jane Alexander, Lindsay Frost, Amber Tamblyn. + + Naomi Watts + Martin Henderson + David Dorfman + Brian Cox + Jane Alexander + Lindsay Frost + Hans Zimmer + Gore Verbinski + Armand Mastroianni + Michele Weisler + Ehren Kruger + + 2002 + Horror + Suspense + + + TV-14 + + + 5.7/10 + + + + A Quiet Place Part II + Following the deadly events at home, the Abbott family must now face the terrors of the outside world as they continue their fight for survival in silence. Forced to venture into the unknown, they quickly realize that the creatures that hunt by sound are not the only threats that lurk beyond the sand path. + + Emily Blunt + John Krasinski + Millicent Simmonds + Noah Jupe + Cillian Murphy + Djimon Hounsou + Marco Beltrami + John Krasinski + Cillian Murphy + JoAnn Perritano + John Krasinski + + 2020 + Drama + Horror + Suspense + Science Fiction + + + 7.1/10 + + + + Super 8 + Kyle Chandler stars in this riveting sci-fi adventure set in a small Ohio town during the summer of 1979. A group of kids witness a train being derailed while filming an amateur movie, and soon an otherworldly force begins to stalk their town as people mysteriously disappear. Directed by J.J. Abrams and produced by Steven Spielberg. + + Kyle Chandler + Elle Fanning + Joel Courtney + Gabriel Basso + Noah Emmerich + Ron Eldard + Michael Giacchino + J.J. Abrams + J.J. Abrams + + 2011 + Drama + Suspense + Science Fiction + + + TV-14 + + + 7.2/10 + + + + Deep Impact + Thrilling special effects highlight Mimi Leder's tale of a massive comet headed for Earth. An ambitious journalist (Tea Leoni), investigating what she believes is a Washington sex scandal, discovers that a comet is going to hit Earth. While a team of scientists struggles to alter its course, families prepare for the end. Robert Duvall, Vanessa Redgrave, Morgan Freeman, Leelee Sobieski. + + Robert Duvall + Elijah Wood + Vanessa Redgrave + Maximilian Schell + Leelee Sobieski + Morgan Freeman + James Horner + Mimi Leder + Richard D. Zanuck + Joan Bradshaw + Bruce Joel Rubin + + 1998 + Drama + Suspense + Action & Adventure + Science Fiction + + + TV-PG + + + + The Adventures of Priscilla, Queen of the Desert + Three transgender performers well known for their lavish costumes and lip-synching in Sydney travel across the Australian Outback in their ramshackle bus, "Priscilla," on their way to a gig at a casino. + + Terence Stamp + Hugo Weaving + Guy Pearce + Bill Hunter + Sarah Chadwick + Mark Holmes + Guy Gross + Stephan Elliott + Michael Hamlyn + Stephen Elliott + + 1994 + Comedy + + + TV-14 + + + + Valley Girl + Deborah Foreman as a teenager who's popular (totally), spoiled (to the max) and on the prowl (fer shure). Randy: Nicolas Cage. Loryn: Elizabeth Daily. Martha Coolidge directed. + + Deborah Foreman + Nicolas Cage + Elizabeth Daily + Michael Bowen + Cameron Dye + Heidi Holicker + Scott Wilk + Martha Coolidge + Thomas Coleman + Andrew Lane + + 1983 + Comedy + + + TV-PG + + + 6.6/10 + + + + Respect + The life story of legendary R&B singer Aretha Franklin, from her simple childhood to her rise to fame, is depicted. Hailed as the Queen of Soul at the peak of her career, Aretha started singing solo and playing the piano as a little girl at a Baptist church in Detroit Michigan where her father is the pastor. + + Jennifer Hudson + Forest Whitaker + Audra McDonald + Saycon Sengbloh + Hailey Kilgore + Brenda Nicole Moorer + Kristopher Bowers + Liesl Tommy + Sue Baden-Powell + Tracey Scott Wilson + + 2021 + Drama + Music + + + 6.1/10 + + + + The Preacher's Wife + Denzel Washington and Whitney Houston star in Penny Marshall's delightful update of the 1947 classic "The Bishop's Wife." When a pastor prays for guidance to find balance in his family life, his answer comes in the form of a kindly angel-in-disguise (Washington). Courtney B. Vance, Gregory Hines, Justin Pierre Edmund, Jenifer Lewis, Loretta Devine, Lionel Richie. + + Denzel Washington + Whitney Houston + Courtney B. Vance + Gregory Hines + Justin Pierre Edmund + Jenifer Lewis + Penny Marshall + Elliot Abbott + Leonardo Bercovici + + 1996 + Drama + Music + Fantasy + Comedy + + + TV-PG + + + + If I Stay + A comatose teen has an out-of-body experience following a car accident that kills her entire family, and must decide whether to fight for her life in this heart-wrenching drama. Over the course of 24 hours, she will be faced with a crucial choice that will determine her destiny. + + Chloë Grace Moretz + Mireille Enos + Joshua Leonard + Jamie Blackley + Lauren Lee Smith + Stacy Keach + Heitor Pereira + R.J. Cutler + Alison Greenspan + Alison Greenspan + Shauna Cross + + 2014 + Drama + Music + + + TV-14 + + + 4.6/10 + + + + Valley Girl + Deborah Foreman as a teenager who's popular (totally), spoiled (to the max) and on the prowl (fer shure). Randy: Nicolas Cage. Loryn: Elizabeth Daily. Martha Coolidge directed. + + Deborah Foreman + Nicolas Cage + Elizabeth Daily + Michael Bowen + Cameron Dye + Heidi Holicker + Scott Wilk + Martha Coolidge + Thomas Coleman + Andrew Lane + + 1983 + Comedy + + + TV-PG + + + 6.6/10 + + + + The Brady Bunch Movie + A send-up of the TV series, it's the story of a lovely lady, a man named Brady, and their kids, whose wholesome '70s natures clashes with the grungy '90s. + + Shelley Long + Gary Cole + Christine Taylor + Christopher Daniel Barnes + Jennifer Elise Cox + Paul Sutera + Guy Moon + Betty Thomas + David Kirkpatrick + Terry Turner + + 1995 + Comedy + + + TV-PG + + + 5.4/10 + + + + Anita + This riveting documentary examines the 1991 testimony given by Anita Hill against her former employer and then-Supreme Court justice nominee Clarence Thomas, whom she accused of sexual harassment. + + Lili Haydn + Freida Mock + Frieda Lee Mock + Freida Mock + Freida Mock + + 2013 + Documentary + + + TV-14 + + + 6.8/10 + + + + Flag Day + This drama thriller follows a journalist as she reminisces over her life as the daughter of an infamous con man and criminal. A man with a criminal double life who eventually ended up in jail for counterfeiting in excess of $20 million, she recalls how he was also a loving father behind closed doors. + + Katheryn Winnick + Josh Brolin + Sean Penn + Regina King + Eddie Marsan + Hopper Penn + Joseph Vitarelli + Sean Penn + Lawrence Kopeikin + Jez Butterworth + + 2021 + Drama + Suspense + + + 5.3/10 + + + + Summer Days, Summer Nights + It's the summer of 1982 on Long Island and life is good. JJ is working at the Beach Club, when he falls for Debbie. Frankie reconnects with a long lost love. But as temperatures cool, so do their relationships, leaving them to accept summer is ending. + + Edward Burns + Zoe Levin + Susan Misner + Amadeus Serafini + Jon Rudnitsky + Rita Volk + Edward Burns + Zak Tucker + Edward Burns + + 2018 + Drama + + + TV-14 + + + + Respect + The life story of legendary R&B singer Aretha Franklin, from her simple childhood to her rise to fame, is depicted. Hailed as the Queen of Soul at the peak of her career, Aretha started singing solo and playing the piano as a little girl at a Baptist church in Detroit Michigan where her father is the pastor. + + Jennifer Hudson + Forest Whitaker + Audra McDonald + Saycon Sengbloh + Hailey Kilgore + Brenda Nicole Moorer + Kristopher Bowers + Liesl Tommy + Sue Baden-Powell + Tracey Scott Wilson + + 2021 + Drama + Music + + + 6.1/10 + + + + The Preacher's Wife + Denzel Washington and Whitney Houston star in Penny Marshall's delightful update of the 1947 classic "The Bishop's Wife." When a pastor prays for guidance to find balance in his family life, his answer comes in the form of a kindly angel-in-disguise (Washington). Courtney B. Vance, Gregory Hines, Justin Pierre Edmund, Jenifer Lewis, Loretta Devine, Lionel Richie. + + Denzel Washington + Whitney Houston + Courtney B. Vance + Gregory Hines + Justin Pierre Edmund + Jenifer Lewis + Penny Marshall + Elliot Abbott + Leonardo Bercovici + + 1996 + Drama + Music + Fantasy + Comedy + + + TV-PG + + + + If I Stay + A comatose teen has an out-of-body experience following a car accident that kills her entire family, and must decide whether to fight for her life in this heart-wrenching drama. Over the course of 24 hours, she will be faced with a crucial choice that will determine her destiny. + + Chloë Grace Moretz + Mireille Enos + Joshua Leonard + Jamie Blackley + Lauren Lee Smith + Stacy Keach + Heitor Pereira + R.J. Cutler + Alison Greenspan + Alison Greenspan + Shauna Cross + + 2014 + Drama + Music + + + TV-14 + + + 4.6/10 + + + + Tank Girl + A punker and her mutant friends do battle against an evil institution led by a man who wants to control the world's water supply in a post-apocalyptic future. + + Lori Petty + Malcolm McDowell + Ice-T + Naomi Watts + Don Harvey + Jeff Kober + Graeme Revell + Rachel Talalay + Pen Densham + Tedi Sarafian + + 1995 + Fantasy + Comedy + Action & Adventure + Science Fiction + + + TV-14 + + + 4.6/10 + + + + Bill and Ted's Excellent Adventure + Two dim best friends who dream of being famous rock stars time-travel in order to bring ancient figures to modern times so that they can pass a history class and graduate. If they fail, one of them will be forced to join the military. + + Keanu Reeves + George Carlin + Rod Loomis + Terry Camilleri + Dan Shor + Tony Steedman + David Newman + Stephen Herek + Robert W. Cort + Christian Matheson + + 1989 + Music + Comedy + Action & Adventure + Science Fiction + + + TV-PG + + + + A Fish Called Wanda + A sexy con artist seeks to obtain her mobster lover's stolen jewels by first romancing his deadly henchman, then seducing his starched-shirt attorney. Meanwhile, a stuttering mob flunky bungles a series of hits. + + John Cleese + Jamie Lee Curtis + Kevin Kline + Michael Palin + Maria Aitken + Tom Georgeson + John Du Prez + Charles Crichton + Lee Rich + Charles Crichton + + 1988 + Drama + Comedy + + + TV-14 + + + + Clue + The whodunit board game comes to life as guests are invited to a swanky mansion to learn who is blackmailing them. + + Eileen Brennan + Tim Curry + Madeline Kahn + Christopher Lloyd + Michael McKean + Martin Mull + John Morris + Jonathan Lynn + George Folsey Jr. + Jonathan Landis + + 1985 + Comedy + Suspense + + + TV-PG + + + 4.1/10 + + + + Once Bitten + Every year by Halloween, a female vampire must have drunk the blood of three male virgins to remain alive and youthful looking. She trolls L.A. hunting her prey. + + Lauren Hutton + Jim Carrey + Karen Kopins + Cleavon Little + Thomas Ballatore + Skip Lackey + John Du Prez + Howard Storm + Frank E. Hildebrand + Jonathan Roberts + + 1985 + Horror + Comedy + + + TV-PG + + + 6.4/10 + + + + Ghost Town + Ricky Gervais is a gas as an insensitive jerk of a dentist who dies for seven minutes on the operating table and, upon being revived, develops the ability to talk to dead people, one of whom wants him to keep his widow (Tea Leoni) from remarrying. Apparently, "the dead have a lot of unfinished business," and all of them want the dentist's help in this screamingly funny romantic comedy, which finds Gervais falling for the ghost's wife. Greg Kinnear plays the late husband. + + Greg Kinnear + Ricky Gervais + Dana Ivey + Jordan Carlos + Dequina Moore + Bridget Moloney + Geoff Zanelli + David Koepp + Gavin Polone + David Koepp + + 2008 + Drama + Fantasy + Comedy + + + TV-14 + + + 7.2/10 + + + + Bill and Ted's Excellent Adventure + Two dim best friends who dream of being famous rock stars time-travel in order to bring ancient figures to modern times so that they can pass a history class and graduate. If they fail, one of them will be forced to join the military. + + Keanu Reeves + George Carlin + Rod Loomis + Terry Camilleri + Dan Shor + Tony Steedman + David Newman + Stephen Herek + Robert W. Cort + Christian Matheson + + 1989 + Music + Comedy + Action & Adventure + Science Fiction + + + TV-PG + + + + She's Out of My League + A sweet but socially awkward airport security agent shocks his friends and family by winning the affections of a gorgeous party planner in this lighthearted comedy. + + Jay Baruchel + Alice Eve + T.J. Miller + Mike Vogel + Nate Torrence + Krysten Ritter + Michael Anderson + Jim Field Smith + David Householter + Sean Anders + + 2010 + Comedy + + + TV-14 + + + 4.6/10 + + + + It's a Mad, Mad, Mad, Mad World + Comic mayhem ensues when a large number of people scramble to find $350,000 supposedly hidden by a man who passes away after causing a major traffic jam in this all-star comedy. + + Spencer Tracy + Milton Berle + Sid Caesar + Buddy Hackett + Ethel Merman + Mickey Rooney + Ernest Gold + Stanley Kramer + Stanley Kramer + William Rose + + 1963 + Drama + Comedy + Action & Adventure + + + TV-G + + + 5.9/10 + + + + Charlotte's Web + Live-action footage and computer-generated imagery are seamlessly woven together in this charming adaptation of E.B. White's beloved tale, in which a bond forms between a barnyard spider and a misfit piglet. + + Dakota Fanning + Louis Corbett + Julian O'Donnell + Essie Davis + Kevin Anderson + Robyn Arthur + Danny Elfman + Gary Winick + Jordan Kerner + Susannah Grant + + 2006 + Fantasy + Family + Comedy + Kids + + + TV-G + + + 6.8/10 + + + + The Addams Family 2 + Mother Morticia suddenly feels that her growing children, Wednesday and Pugsley, are getting emotionally detached from the family unit. Thus, their father Gomez devises a way to make the whole family bond again – through a cross-country road trip via a haunted camper. + + Robert Lopez + Nathan Greno + Meg LeFauve + Aaron L. Gilbert + Dan Hernandez + + 2021 + Horror + Fantasy + Comedy + Action & Adventure + + + 3.7/10 + + + + A Fish Called Wanda + A sexy con artist seeks to obtain her mobster lover's stolen jewels by first romancing his deadly henchman, then seducing his starched-shirt attorney. Meanwhile, a stuttering mob flunky bungles a series of hits. + + John Cleese + Jamie Lee Curtis + Kevin Kline + Michael Palin + Maria Aitken + Tom Georgeson + John Du Prez + Charles Crichton + Lee Rich + Charles Crichton + + 1988 + Drama + Comedy + + + TV-14 + + + + Clue + The whodunit board game comes to life as guests are invited to a swanky mansion to learn who is blackmailing them. + + Eileen Brennan + Tim Curry + Madeline Kahn + Christopher Lloyd + Michael McKean + Martin Mull + John Morris + Jonathan Lynn + George Folsey Jr. + Jonathan Landis + + 1985 + Comedy + Suspense + + + TV-PG + + + 4.1/10 + + + + Once Bitten + Every year by Halloween, a female vampire must have drunk the blood of three male virgins to remain alive and youthful looking. She trolls L.A. hunting her prey. + + Lauren Hutton + Jim Carrey + Karen Kopins + Cleavon Little + Thomas Ballatore + Skip Lackey + John Du Prez + Howard Storm + Frank E. Hildebrand + Jonathan Roberts + + 1985 + Horror + Comedy + + + TV-PG + + + 6.4/10 + + + + The Visitor + After a series of tragedies including the death of his father-in-law, Robert and his wife Maia leave their home in London to move back to her childhood home. But when Robert discovers an old portrait in the attic of a man who is his spitting image, he goes down a rabbit hole to discover the identity of this mysterious doppelganger known only as the visitor. It isn't long until he realizes – where the visitor goes, death follows. + + Finn Jones + Jessica McNamee + Victoria Harris + Donna Biscoe + Thomas Francis Murphy + Gavin Brivik + Justin P. Lange + Simon Boyes + Simon Boyes + + 2023 + Drama + Horror + Suspense + + + TV-MA + + + 3.9/10 + + + + Red Eye + On a night flight to Miami, a hotel manager (Rachel McAdams) becomes a pawn in a plot to assassinate the Deputy Secretary of Homeland Security. Horror master Wes Craven (the "Scream" movies) directed this nail-biting suspense thriller. Cillian Murphy, Brian Cox, Jayma Mays. + + Rachel McAdams + Cillian Murphy + Jayma Mays + Angela Paton + Laura Johnson + Suzie Plakson + Marco Beltrami + Wes Craven + J.C. Spink + Carl Ellsworth + + 2005 + Suspense + + + TV-14 + + + 7.1/10 + + + + Candyman + Anthony McCoy and his girlfriend move into a luxury loft in the now-gentrified housing projects of Cabrini Green, where an encounter with a resident exposes Anthony to the story behind Candyman. + + Yahya Abdul-Mateen II + Teyonah Parris + Nathan Stewart-Jarrett + Colman Domingo + Kyle Kaminsky + Rebecca Spence + FreqCo + Nia DaCosta + Jason Cloth + Jordan Peele + + 2021 + Drama + Horror + Suspense + + + 7.2/10 + + + + Smile + Psychiatrist Dr. Rose Cotter feels her grip on reality slipping after bearing witness to an unsettling, traumatic incident with a patient. Determined to regain agency over her situation, Rose must face her disturbing past head-on if she is to live to see another day. + + Sosie Bacon + Kyle Gallner + Caitlin Stasey + Robin Weigert + Jessie T. Usher + Kal Penn + Cristobal Tapia deVeer + Parker Finn + Robert Salerno + Parker Finn + + 2022 + Horror + Suspense + + + 6.8/10 + + + + A Quiet Place Part II + Following the deadly events at home, the Abbott family must now face the terrors of the outside world as they continue their fight for survival in silence. Forced to venture into the unknown, they quickly realize that the creatures that hunt by sound are not the only threats that lurk beyond the sand path. + + Emily Blunt + John Krasinski + Millicent Simmonds + Noah Jupe + Cillian Murphy + Djimon Hounsou + Marco Beltrami + John Krasinski + Cillian Murphy + JoAnn Perritano + John Krasinski + + 2020 + Drama + Horror + Suspense + Science Fiction + + + 7.1/10 + + + + Red Eye + On a night flight to Miami, a hotel manager (Rachel McAdams) becomes a pawn in a plot to assassinate the Deputy Secretary of Homeland Security. Horror master Wes Craven (the "Scream" movies) directed this nail-biting suspense thriller. Cillian Murphy, Brian Cox, Jayma Mays. + + Rachel McAdams + Cillian Murphy + Jayma Mays + Angela Paton + Laura Johnson + Suzie Plakson + Marco Beltrami + Wes Craven + J.C. Spink + Carl Ellsworth + + 2005 + Suspense + + + TV-14 + + + 7.1/10 + + + + The Return of the Living Dead + Workers accidentally release a chemical that brings the dead back to life at a local cemetery. The ghouls proceed to attack teens who had gathered at the spooky location to party. The men responsible ask the operator of a local crematorium for help in dispatching the monsters. + + Clu Gulager + James Karen + Don Calfa + Thom Mathews + Beverly Randolph + John Philbin + Matt Clifford + Dan O'Bannon + John Daly + John A. Russo + + 1985 + Comedy + + + TV-14 + + + 6.6/10 + + + + The Babysitter + Thriller about a teen (Alicia Silverstone) who inspires fantasy and obsession in a trio of men. Harry: J.T. Walsh. Dolly: Lee Garlington. Mark: Nicky Katt. Jack: Jeremy London. Bill: George Segal. Bernice: Lois Chiles. Written and directed by Guy Ferland. + + J.T. Walsh + Lee Garlington + Nicky Katt + Jeremy London + George Segal + Lois Chiles + Loek Dikker + Guy Ferland + Kevin J. Messick + Guy Ferland + + 1995 + Drama + Suspense + + + TV-14 + + + + Unseen + Sam receives a call from Emily, a nearly blind woman who is running from her murderous ex in the woods. The latter must survive the ordeal with Sam being her eyes using video call. + + Yoko Okumura + + 2023 + Horror + Suspense + + + TV-MA + + + + Bringing Out the Dead + Martin Scorsese directed this edgy and powerful film, which recalls the spirit of his 1976 masterpiece "Taxi Driver." Nicolas Cage stars as a paramedic on the brink of madness working amid the dead and dying in New York City's Hell's Kitchen in the early 1990s. Patricia Arquette, John Goodman, Ving Rhames, Marc Anthony, Tom Sizemore. + + Nicolas Cage + Patricia Arquette + John Goodman + Ving Rhames + Marc Anthony + Tom Sizemore + Elmer Bernstein + Martin Scorsese + Barbara De Fina + Paul Schrader + + 1999 + Drama + Suspense + + + 7.2/10 + + + + The Deep House + While exploring a remote French lake, a pair of YouTubers find a house submerged far below the surface. But when they enter, their fun adventure turns into a waking nightmare as they discover the building hides some truly horrific crimes. As their oxygen runs out, the divers discover that their presence has awakened a terrifying spirit. + + Alexandre Bustillo + Julien Maury + + 2021 + Horror + Suspense + + + TV-MA + + + + Candyman + Anthony McCoy and his girlfriend move into a luxury loft in the now-gentrified housing projects of Cabrini Green, where an encounter with a resident exposes Anthony to the story behind Candyman. + + Yahya Abdul-Mateen II + Teyonah Parris + Nathan Stewart-Jarrett + Colman Domingo + Kyle Kaminsky + Rebecca Spence + FreqCo + Nia DaCosta + Jason Cloth + Jordan Peele + + 2021 + Drama + Horror + Suspense + + + 7.2/10 + + + + Smile + Psychiatrist Dr. Rose Cotter feels her grip on reality slipping after bearing witness to an unsettling, traumatic incident with a patient. Determined to regain agency over her situation, Rose must face her disturbing past head-on if she is to live to see another day. + + Sosie Bacon + Kyle Gallner + Caitlin Stasey + Robin Weigert + Jessie T. Usher + Kal Penn + Cristobal Tapia deVeer + Parker Finn + Robert Salerno + Parker Finn + + 2022 + Horror + Suspense + + + 6.8/10 + + + + A Quiet Place Part II + Following the deadly events at home, the Abbott family must now face the terrors of the outside world as they continue their fight for survival in silence. Forced to venture into the unknown, they quickly realize that the creatures that hunt by sound are not the only threats that lurk beyond the sand path. + + Emily Blunt + John Krasinski + Millicent Simmonds + Noah Jupe + Cillian Murphy + Djimon Hounsou + Marco Beltrami + John Krasinski + Cillian Murphy + JoAnn Perritano + John Krasinski + + 2020 + Drama + Horror + Suspense + Science Fiction + + + 7.1/10 + + + + Masters of the Universe + A former prince is now a warrior who must travel to Earth to find a magic key to help him fight against an evil lord for cosmic control. + + Dolph Lundgren + Frank Langella + Meg Foster + Billy Barty + Courteney Cox + Gwynne Gilford + Bill Conti + Gary Goddard + Yoram Globus + David Odell + + 1987 + Fantasy + Action & Adventure + Science Fiction + + + TV-PG + + + 3.5/10 + + + + Dungeons & Dragons: Honor Among Thieves + Based on the popular roleplaying game, the film follows a band of thieves on the hunt for a valuable relic. Under the leadership of a talented thief named Edgin, the band goes on adventures to collect bounties across the land. When they target a lost artifact, the band messes with the wrong people and must play the game right to win it all. + + Chris Pine + Michelle Rodriguez + Regé-Jean Page + Justice Smith + Sophia Lillis + Hugh Grant + John Francis Daley + John Francis Daley + Michael Gilio + + 2023 + Fantasy + Comedy + Action & Adventure + + + 7.2/10 + + + + Dallas Stars vs. Vancouver Canucks + Dallas Stars at Vancouver Canucks + The Stars reach the end of a three-game Western Canadian trip by playing the Canucks. Vancouver swept the three-game season series with Dallas in 2022-23, just as it did in 2021-22. J.T. Miller (VAN) has nine points in four home games this season. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Dallas Stars vs. Vancouver Canucks + Dallas Stars at Vancouver Canucks + The Stars reach the end of a three-game Western Canadian trip by playing the Canucks. Vancouver swept the three-game season series with Dallas in 2022-23, just as it did in 2021-22. J.T. Miller (VAN) has nine points in four home games this season. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Nashville Predators vs. Calgary Flames + Nashville Predators at Calgary Flames + From Scotiabank Saddledome in Calgary, Alberta. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Nashville Predators vs. Calgary Flames + Nashville Predators at Calgary Flames + From Scotiabank Saddledome in Calgary, Alberta. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Nashville Predators vs. Calgary Flames + Nashville Predators at Calgary Flames + From Scotiabank Saddledome in Calgary, Alberta. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Nashville Predators vs. Calgary Flames + Nashville Predators at Calgary Flames + From Scotiabank Saddledome in Calgary, Alberta. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Nashville Predators vs. Calgary Flames + Nashville Predators at Calgary Flames + From Scotiabank Saddledome in Calgary, Alberta. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Florida Panthers vs. Chicago Blackhawks + Florida Panthers at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + TVY + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Pittsburgh Penguins vs. Anaheim Ducks + Pittsburgh Penguins at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Pittsburgh Penguins vs. Anaheim Ducks + Pittsburgh Penguins at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Pittsburgh Penguins vs. Anaheim Ducks + Pittsburgh Penguins at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Pittsburgh Penguins vs. Anaheim Ducks + Pittsburgh Penguins at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Pittsburgh Penguins vs. Anaheim Ducks + Pittsburgh Penguins at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New York Rangers vs. Minnesota Wild + New York Rangers at Minnesota Wild + From the Xcel Energy Center in St. Paul, Minn. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Pittsburgh Penguins vs. Anaheim Ducks + Pittsburgh Penguins at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Pittsburgh Penguins vs. Anaheim Ducks + Pittsburgh Penguins at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Pittsburgh Penguins vs. Anaheim Ducks + Pittsburgh Penguins at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Pittsburgh Penguins vs. Anaheim Ducks + Pittsburgh Penguins at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Pittsburgh Penguins vs. Anaheim Ducks + Pittsburgh Penguins at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Calgary Flames vs. Seattle Kraken + Calgary Flames at Seattle Kraken + The faltering Flames try to find a spark when they head south to battle the Kraken. Calgary is 1-4-1 away from home this season after a 5-2 Heritage Classic loss to Edmonton, but is 6-1-0 against Seattle with Noah Hanifin registering 10 points. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Philadelphia Flyers vs. San Jose Sharks + Philadelphia Flyers at San Jose Sharks + From the SAP Center at San Jose in San Jose, Calif. + Sports + Hockey + + + + Philadelphia Flyers vs. San Jose Sharks + Philadelphia Flyers at San Jose Sharks + From the SAP Center at San Jose in San Jose, Calif. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Philadelphia Flyers vs. San Jose Sharks + Philadelphia Flyers at San Jose Sharks + From the SAP Center at San Jose in San Jose, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Philadelphia Flyers vs. San Jose Sharks + Philadelphia Flyers at San Jose Sharks + From the SAP Center at San Jose in San Jose, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Philadelphia Flyers vs. San Jose Sharks + Philadelphia Flyers at San Jose Sharks + From the SAP Center at San Jose in San Jose, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Philadelphia Flyers vs. San Jose Sharks + Philadelphia Flyers at San Jose Sharks + From the SAP Center at San Jose in San Jose, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Pittsburgh Penguins vs. San Jose Sharks + Pittsburgh Penguins at San Jose Sharks + From the SAP Center at San Jose in San Jose, Calif. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Philadelphia Flyers vs. San Jose Sharks + Philadelphia Flyers at San Jose Sharks + From the SAP Center at San Jose in San Jose, Calif. + Sports + Hockey + + + + Philadelphia Flyers vs. San Jose Sharks + Philadelphia Flyers at San Jose Sharks + From the SAP Center at San Jose in San Jose, Calif. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Philadelphia Flyers vs. San Jose Sharks + Philadelphia Flyers at San Jose Sharks + From the SAP Center at San Jose in San Jose, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Philadelphia Flyers vs. San Jose Sharks + Philadelphia Flyers at San Jose Sharks + From the SAP Center at San Jose in San Jose, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Philadelphia Flyers vs. San Jose Sharks + Philadelphia Flyers at San Jose Sharks + From the SAP Center at San Jose in San Jose, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Philadelphia Flyers vs. San Jose Sharks + Philadelphia Flyers at San Jose Sharks + From the SAP Center at San Jose in San Jose, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Colorado Avalanche vs. Vegas Golden Knights + Colorado Avalanche at Vegas Golden Knights + From T-Mobile Arena in Las Vegas. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Colorado Avalanche vs. Vegas Golden Knights + Colorado Avalanche at Vegas Golden Knights + From T-Mobile Arena in Las Vegas. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Colorado Avalanche vs. Vegas Golden Knights + Colorado Avalanche at Vegas Golden Knights + From T-Mobile Arena in Las Vegas. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Vegas Golden Knights vs. Anaheim Ducks + Vegas Golden Knights at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Vegas Golden Knights vs. Anaheim Ducks + Vegas Golden Knights at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + Vegas Golden Knights vs. Anaheim Ducks + Vegas Golden Knights at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Vegas Golden Knights vs. Anaheim Ducks + Vegas Golden Knights at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Vegas Golden Knights vs. Anaheim Ducks + Vegas Golden Knights at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Vegas Golden Knights vs. Anaheim Ducks + Vegas Golden Knights at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Tampa Bay Lightning vs. Toronto Maple Leafs + Tampa Bay Lightning at Toronto Maple Leafs + The Lightning begin a back-to-back in this game against the Maple Leafs. On Oct. 21, Toronto erased a late two-goal deficit as it won 4-3 in overtime in Tampa Bay, the first match between the two since the Leafs ousted the Lightning in the playoffs. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Tampa Bay Lightning vs. Toronto Maple Leafs + Tampa Bay Lightning at Toronto Maple Leafs + The Lightning begin a back-to-back in this game against the Maple Leafs. On Oct. 21, Toronto erased a late two-goal deficit as it won 4-3 in overtime in Tampa Bay, the first match between the two since the Leafs ousted the Lightning in the playoffs. + Sports + Hockey + + + + Tampa Bay Lightning vs. Toronto Maple Leafs + Tampa Bay Lightning at Toronto Maple Leafs + The Lightning begin a back-to-back in this game against the Maple Leafs. On Oct. 21, Toronto erased a late two-goal deficit as it won 4-3 in overtime in Tampa Bay, the first match between the two since the Leafs ousted the Lightning in the playoffs. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Tampa Bay Lightning vs. Toronto Maple Leafs + Tampa Bay Lightning at Toronto Maple Leafs + The Lightning begin a back-to-back in this game against the Maple Leafs. On Oct. 21, Toronto erased a late two-goal deficit as it won 4-3 in overtime in Tampa Bay, the first match between the two since the Leafs ousted the Lightning in the playoffs. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Tampa Bay Lightning vs. Toronto Maple Leafs + Tampa Bay Lightning at Toronto Maple Leafs + The Lightning begin a back-to-back in this game against the Maple Leafs. On Oct. 21, Toronto erased a late two-goal deficit as it won 4-3 in overtime in Tampa Bay, the first match between the two since the Leafs ousted the Lightning in the playoffs. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Tampa Bay Lightning vs. Toronto Maple Leafs + Tampa Bay Lightning at Toronto Maple Leafs + The Lightning begin a back-to-back in this game against the Maple Leafs. On Oct. 21, Toronto erased a late two-goal deficit as it won 4-3 in overtime in Tampa Bay, the first match between the two since the Leafs ousted the Lightning in the playoffs. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Tampa Bay Lightning vs. Montréal Canadiens + Tampa Bay Lightning at Montreal Canadiens + From the Bell Centre in Montreal. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Tampa Bay Lightning vs. Montréal Canadiens + Tampa Bay Lightning at Montreal Canadiens + From the Bell Centre in Montreal. + Sports + Hockey + + + + Tampa Bay Lightning vs. Montréal Canadiens + Tampa Bay Lightning at Montreal Canadiens + From the Bell Centre in Montreal. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Tampa Bay Lightning vs. Montréal Canadiens + Tampa Bay Lightning at Montreal Canadiens + From the Bell Centre in Montreal. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Tampa Bay Lightning vs. Montréal Canadiens + Tampa Bay Lightning at Montreal Canadiens + From the Bell Centre in Montreal. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Tampa Bay Lightning vs. Montréal Canadiens + Tampa Bay Lightning at Montreal Canadiens + From the Bell Centre in Montreal. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Vegas Golden Knights vs. Anaheim Ducks + Vegas Golden Knights at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Vegas Golden Knights vs. Anaheim Ducks + Vegas Golden Knights at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + Vegas Golden Knights vs. Anaheim Ducks + Vegas Golden Knights at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Vegas Golden Knights vs. Anaheim Ducks + Vegas Golden Knights at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Vegas Golden Knights vs. Anaheim Ducks + Vegas Golden Knights at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Vegas Golden Knights vs. Anaheim Ducks + Vegas Golden Knights at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Boston Bruins vs. Dallas Stars + Boston Bruins at Dallas Stars + From American Airlines Center in Dallas. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Boston Bruins vs. Dallas Stars + Boston Bruins at Dallas Stars + From American Airlines Center in Dallas. + Sports + Hockey + + + + Boston Bruins vs. Dallas Stars + Boston Bruins at Dallas Stars + From American Airlines Center in Dallas. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Boston Bruins vs. Dallas Stars + Boston Bruins at Dallas Stars + From American Airlines Center in Dallas. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Boston Bruins vs. Dallas Stars + Boston Bruins at Dallas Stars + From American Airlines Center in Dallas. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Tampa Bay Lightning vs. Montréal Canadiens + Tampa Bay Lightning at Montreal Canadiens + From the Bell Centre in Montreal. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Tampa Bay Lightning vs. Montréal Canadiens + Tampa Bay Lightning at Montreal Canadiens + From the Bell Centre in Montreal. + Sports + Hockey + + + + Tampa Bay Lightning vs. Montréal Canadiens + Tampa Bay Lightning at Montreal Canadiens + From the Bell Centre in Montreal. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Tampa Bay Lightning vs. Montréal Canadiens + Tampa Bay Lightning at Montreal Canadiens + From the Bell Centre in Montreal. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Tampa Bay Lightning vs. Montréal Canadiens + Tampa Bay Lightning at Montreal Canadiens + From the Bell Centre in Montreal. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Tampa Bay Lightning vs. Montréal Canadiens + Tampa Bay Lightning at Montreal Canadiens + From the Bell Centre in Montreal. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Boston Bruins vs. Dallas Stars + Boston Bruins at Dallas Stars + From American Airlines Center in Dallas. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Boston Bruins vs. Dallas Stars + Boston Bruins at Dallas Stars + From American Airlines Center in Dallas. + Sports + Hockey + + + + Boston Bruins vs. Dallas Stars + Boston Bruins at Dallas Stars + From American Airlines Center in Dallas. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Boston Bruins vs. Dallas Stars + Boston Bruins at Dallas Stars + From American Airlines Center in Dallas. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Boston Bruins vs. Dallas Stars + Boston Bruins at Dallas Stars + From American Airlines Center in Dallas. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Minnesota Wild vs. New York Islanders + Minnesota Wild at New York Islanders + From UBS Arena in Elmont, N.Y. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Minnesota Wild vs. New York Islanders + Minnesota Wild at New York Islanders + From UBS Arena in Elmont, N.Y. + Sports + Hockey + + + + Minnesota Wild vs. New York Islanders + Minnesota Wild at New York Islanders + From UBS Arena in Elmont, N.Y. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Minnesota Wild vs. New York Islanders + Minnesota Wild at New York Islanders + From UBS Arena in Elmont, N.Y. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Minnesota Wild vs. New York Islanders + Minnesota Wild at New York Islanders + From UBS Arena in Elmont, N.Y. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Minnesota Wild vs. New York Islanders + Minnesota Wild at New York Islanders + From UBS Arena in Elmont, N.Y. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Edmonton Oilers vs. Vancouver Canucks + Edmonton Oilers at Vancouver Canucks + The Canucks aim to pile on the Oilers when the clubs clash. Vancouver swept both ends of a season-opening home-and-home set with Edmonton, outscoring the Oilers 12-4. Elias Pettersson (VAN) factored in on half of those goals with five assists. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Edmonton Oilers vs. Vancouver Canucks + Edmonton Oilers at Vancouver Canucks + The Canucks aim to pile on the Oilers when the clubs clash. Vancouver swept both ends of a season-opening home-and-home set with Edmonton, outscoring the Oilers 12-4. Elias Pettersson (VAN) factored in on half of those goals with five assists. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Edmonton Oilers vs. Vancouver Canucks + Edmonton Oilers at Vancouver Canucks + The Canucks aim to pile on the Oilers when the clubs clash. Vancouver swept both ends of a season-opening home-and-home set with Edmonton, outscoring the Oilers 12-4. Elias Pettersson (VAN) factored in on half of those goals with five assists. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Edmonton Oilers vs. Vancouver Canucks + Edmonton Oilers at Vancouver Canucks + The Canucks aim to pile on the Oilers when the clubs clash. Vancouver swept both ends of a season-opening home-and-home set with Edmonton, outscoring the Oilers 12-4. Elias Pettersson (VAN) factored in on half of those goals with five assists. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Minnesota Wild vs. New York Islanders + Minnesota Wild at New York Islanders + From UBS Arena in Elmont, N.Y. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Minnesota Wild vs. New York Islanders + Minnesota Wild at New York Islanders + From UBS Arena in Elmont, N.Y. + Sports + Hockey + + + + Minnesota Wild vs. New York Islanders + Minnesota Wild at New York Islanders + From UBS Arena in Elmont, N.Y. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Minnesota Wild vs. New York Islanders + Minnesota Wild at New York Islanders + From UBS Arena in Elmont, N.Y. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Minnesota Wild vs. New York Islanders + Minnesota Wild at New York Islanders + From UBS Arena in Elmont, N.Y. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Minnesota Wild vs. New York Islanders + Minnesota Wild at New York Islanders + From UBS Arena in Elmont, N.Y. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Winnipeg Jets vs. St. Louis Blues + Winnipeg Jets at St. Louis Blues + From Enterprise Center in Saint Louis, Mo. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Winnipeg Jets vs. St. Louis Blues + Winnipeg Jets at St. Louis Blues + From Enterprise Center in Saint Louis, Mo. + Sports + Hockey + + + + Winnipeg Jets vs. St. Louis Blues + Winnipeg Jets at St. Louis Blues + From Enterprise Center in Saint Louis, Mo. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Winnipeg Jets vs. St. Louis Blues + Winnipeg Jets at St. Louis Blues + From Enterprise Center in Saint Louis, Mo. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Winnipeg Jets vs. St. Louis Blues + Winnipeg Jets at St. Louis Blues + From Enterprise Center in Saint Louis, Mo. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Winnipeg Jets vs. St. Louis Blues + Winnipeg Jets at St. Louis Blues + From Enterprise Center in Saint Louis, Mo. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Winnipeg Jets vs. St. Louis Blues + Winnipeg Jets at St. Louis Blues + From Enterprise Center in Saint Louis, Mo. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Winnipeg Jets vs. St. Louis Blues + Winnipeg Jets at St. Louis Blues + From Enterprise Center in Saint Louis, Mo. + Sports + Hockey + + + + Winnipeg Jets vs. St. Louis Blues + Winnipeg Jets at St. Louis Blues + From Enterprise Center in Saint Louis, Mo. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Winnipeg Jets vs. St. Louis Blues + Winnipeg Jets at St. Louis Blues + From Enterprise Center in Saint Louis, Mo. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Winnipeg Jets vs. St. Louis Blues + Winnipeg Jets at St. Louis Blues + From Enterprise Center in Saint Louis, Mo. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Winnipeg Jets vs. St. Louis Blues + Winnipeg Jets at St. Louis Blues + From Enterprise Center in Saint Louis, Mo. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Seattle Kraken vs. Arizona Coyotes + Seattle Kraken at Arizona Coyotes + From Mullett Arena in Tempe, Ariz. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Seattle Kraken vs. Arizona Coyotes + Seattle Kraken at Arizona Coyotes + From Mullett Arena in Tempe, Ariz. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Seattle Kraken vs. Arizona Coyotes + Seattle Kraken at Arizona Coyotes + From Mullett Arena in Tempe, Ariz. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Seattle Kraken vs. Arizona Coyotes + Seattle Kraken at Arizona Coyotes + From Mullett Arena in Tempe, Ariz. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Seattle Kraken vs. Arizona Coyotes + Seattle Kraken at Arizona Coyotes + From Mullett Arena in Tempe, Ariz. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + MLB Network Presents + Only in Hollywood + Emmy-winning actor Bryan Cranston narrates the story of the 1988 World Series champion Los Angeles Dodgers; the season featured Kirk Gibson's iconic and heroic walk-off home run off future Hall of Famer Dennis Eckersley. + Sports + Baseball + + + TVPG + + + + MLB Network Presents + Eck: A Story of Saving + First-ballot Hall of Famer and former MVP Dennis Eckersley reveals in an in-depth interview how he faced the ups and downs during his pitching career, including family strife and a battle with alcoholism and his path to sobriety. + Sports + Baseball + + + TVPG + + + + MLB Network Presents + Bench + An in-depth and intimate look at Johnny Bench's Hall of Fame playing career and his life now as a father to two young sons. Narrated by Emmy-winning actor Martin Sheen. + Sports + Baseball + + + TVPG + + + + MLB Tonight + Featuring live look-ins, updates, highlights, reporting, interviews and analysis by MLB Network's experts. + Sports + Baseball + + + + MLB Tonight + Featuring live look-ins, updates, highlights, reporting, interviews and analysis by MLB Network's experts. + Sports + Baseball + + + + Path to the Pennant + 2023: Games 1-5 + Major League Baseball teams fight for league supremacy. + Sports + Baseball + + + + Texas Rangers vs. Houston Astros + Texas Rangers at Houston Astros + Houston hosts Texas in Game 6 of the American League Championship Series. José Altuve's three-run blast in Game 5 changed the complexion of the series, propelling his Astros to a 5-4 triumph and a 3-2 series lead. Houston seeks a fifth AL pennant. + Sports + Baseball + + + + Texas Rangers vs. Houston Astros + Texas Rangers at Houston Astros + The Astros and Rangers put their seasons on the line in Game 7 of the American League Championship Series. Texas won 9-2 in Game 6. Houston is 2-3 in Game 7s, while Texas is 0-1. Texas star Adolis García has three homers and 10 RBIs during this ALCS. + Sports + Baseball + + + + Path to the Pennant + 2023: Games 1-5 + Major League Baseball teams fight for league supremacy. + Sports + Baseball + + + + Arizona Diamondbacks vs. Texas Rangers + Arizona Diamondbacks at Texas Rangers + The Diamondbacks play the Rangers in Game 1 of the World Series. Both clubs swept their first two playoff series. Adolís Garcia hit five home runs in the final four games of Texas' seven-game triumph over Houston en route to being named ALCS MVP. + Sports + Baseball + + + TVG + + + + Texas Rangers vs. Arizona Diamondbacks + Texas Rangers at Arizona Diamondbacks + Ketel Marte and the Diamondbacks host the Rangers for Game 3 of the World Series. Marte set an MLB record by recording a hit in his 18th straight postseason game, contributing a two-run single in Game 2 as Arizona tied the series with a 9-1 victory. + Sports + Baseball + + + TVY + + + + Texas Rangers vs. Arizona Diamondbacks + Texas Rangers at Arizona Diamondbacks + The Rangers try to take command against the Diamondbacks in Game 4 of the World Series. Texas took a 2-1 series lead with a 3-1 victory in Game 3. Rangers starting pitcher Max Scherzer and slugger Adolis García left that contest with injuries. + Sports + Baseball + + + TVY + + + + Texas Rangers vs. Arizona Diamondbacks + Texas Rangers at Arizona Diamondbacks + The Rangers try to close out the Diamondbacks in Game 5 of the World Series. Texas can clinch the first title in its 63-year history following an 11-7 Game 4 triumph. Texas' Marcus Semien had five RBIs, while Corey Seager hit his third Series homer. + Sports + Baseball + + + + Path to the Pennant + 2023: Games 1-5 + Major League Baseball teams fight for league supremacy. + Sports + Baseball + + + + Texas Rangers vs. Tampa Bay Rays + Texas Rangers at Tampa Bay Rays + The Rangers look to eliminate the Rays in Game 2 of their AL wild-card series. Jordan Montgomery, Aroldis Chapman and José Leclerc held Tampa Bay to just six hits in Texas' Game 1 4-0 victory. Rookie Ranger Evan Carter was 2-for-2 with two walks. + Sports + Baseball + + + + Baltimore Orioles vs. Texas Rangers + Baltimore Orioles at Texas Rangers + The Rangers vie for a sweep of the Orioles in Game 3 of their American League division series. Texas rolled to an 11-8 victory in Game 2. The Rangers totaled nine runs in the second and third innings, highlighted by Mitch Garver's grand slam. + Sports + Baseball + + + + Baseball + Arizona Fall League: Fall Stars Game + Coverage of baseball action. + Sports + Baseball + + + + Texas Rangers vs. Houston Astros + Texas Rangers at Houston Astros + The Astros and Rangers put their seasons on the line in Game 7 of the American League Championship Series. Texas won 9-2 in Game 6. Houston is 2-3 in Game 7s, while Texas is 0-1. Texas star Adolis García has three homers and 10 RBIs during this ALCS. + Sports + Baseball + + + + Texas Rangers vs. Arizona Diamondbacks + Texas Rangers at Arizona Diamondbacks + The Rangers try to close out the Diamondbacks in Game 5 of the World Series. Texas can clinch the first title in its 63-year history following an 11-7 Game 4 triumph. Texas' Marcus Semien had five RBIs, while Corey Seager hit his third Series homer. + Sports + Baseball + + + + Baseball + Coverage of baseball action. + Sports + Baseball + + + + Path to the Pennant + 2023: Games 1-5 + Major League Baseball teams fight for league supremacy. + Sports + Baseball + + + + Texas Rangers vs. Arizona Diamondbacks + Texas Rangers at Arizona Diamondbacks + The Rangers try to close out the Diamondbacks in Game 5 of the World Series. Texas can clinch the first title in its 63-year history following an 11-7 Game 4 triumph. Texas' Marcus Semien had five RBIs, while Corey Seager hit his third Series homer. + Sports + Baseball + + + + Hot Stove + Offseason news, live analysis, debates and interviews. With Matt Vasgersian and Harold Reynolds. + Sports + Baseball + + + + Hot Stove + Offseason news, live analysis, debates and interviews. With Matt Vasgersian and Harold Reynolds. + Sports + Baseball + + + + High Heat + Christopher. + Sports + Baseball + + + + MLB Now + Veteran broadcaster Brian Kenny discusses baseball's hot topics. + Sports + Baseball + + + + Intentional Talk + An open forum discussion on all the hot topics of the day from entertainment, pop culture -- and of course, baseball. + Sports + Baseball + + + + Hot Stove + Offseason news, live analysis, debates and interviews. With Matt Vasgersian and Harold Reynolds. + Sports + Baseball + + + + MLB Now + Veteran broadcaster Brian Kenny discusses baseball's hot topics. + Sports + Baseball + + + + Intentional Talk + An open forum discussion on all the hot topics of the day from entertainment, pop culture -- and of course, baseball. + Sports + Baseball + + + + High Heat + Christopher. + Sports + Baseball + + + + MLB Awards 2023 + Sports + Baseball + + + + MLB Tonight + Featuring live look-ins, updates, highlights, reporting, interviews and analysis by MLB Network's experts. + Sports + Baseball + + + + Little Big League + The 12-year-old heir and manager of the Minnesota Twins coaches the baseball team to a winning streak by teaching the players to love the game once more. + + Luke Edwards + Timothy Busfield + John Ashton + + 1994 + Movies + Children + + + TVG + + + 2 + + + + MLB Awards 2023 + 2023 BBWAA Awards Finalists + The finalists for the big four Baseball Writers' Association of America Awards -- MVP, Cy Young, Rookie of the Year and Manager of the Year -- are revealed. + Sports + Baseball + + + + MLB Awards 2023 + 2023 BBWAA Awards Finalists + The finalists for the big four Baseball Writers' Association of America Awards -- MVP, Cy Young, Rookie of the Year and Manager of the Year -- are revealed. + Sports + Baseball + + + + MLB Tonight + Featuring live look-ins, updates, highlights, reporting, interviews and analysis by MLB Network's experts. + Sports + Baseball + + + + MLB Tonight + Featuring live look-ins, updates, highlights, reporting, interviews and analysis by MLB Network's experts. + Sports + Baseball + + + + MLB Tonight + Featuring live look-ins, updates, highlights, reporting, interviews and analysis by MLB Network's experts. + Sports + Baseball + + + + MLB Tonight + Featuring live look-ins, updates, highlights, reporting, interviews and analysis by MLB Network's experts. + Sports + Baseball + + + + Inside Stitch + Inside Stitch is a half-hour magazine program highlighting baseball uniforms and uniform culture. Hosted by A.J. Andrews and featuring some of the game's most stylish personalities. + Sports + Baseball + + + + MLB Tonight + Featuring live look-ins, updates, highlights, reporting, interviews and analysis by MLB Network's experts. + Sports + Baseball + + + + MLB Tonight + Featuring live look-ins, updates, highlights, reporting, interviews and analysis by MLB Network's experts. + Sports + Baseball + + + + MLB Tonight + Featuring live look-ins, updates, highlights, reporting, interviews and analysis by MLB Network's experts. + Sports + Baseball + + + + Hot Stove + Offseason news, live analysis, debates and interviews. With Matt Vasgersian and Harold Reynolds. + Sports + Baseball + + + + Hot Stove + Offseason news, live analysis, debates and interviews. With Matt Vasgersian and Harold Reynolds. + Sports + Baseball + + + + High Heat + Christopher. + Sports + Baseball + + + + MLB Now + Veteran broadcaster Brian Kenny discusses baseball's hot topics. + Sports + Baseball + + + + Intentional Talk + An open forum discussion on all the hot topics of the day from entertainment, pop culture -- and of course, baseball. + Sports + Baseball + + + + Hot Stove + Offseason news, live analysis, debates and interviews. With Matt Vasgersian and Harold Reynolds. + Sports + Baseball + + + + MLB Now + Veteran broadcaster Brian Kenny discusses baseball's hot topics. + Sports + Baseball + + + + Intentional Talk + An open forum discussion on all the hot topics of the day from entertainment, pop culture -- and of course, baseball. + Sports + Baseball + + + + MLB Tonight + Featuring live look-ins, updates, highlights, reporting, interviews and analysis by MLB Network's experts. + Sports + Baseball + + + + MLB Now + Veteran broadcaster Brian Kenny discusses baseball's hot topics. + Sports + Baseball + + + + Eight Men Out + Disgruntled Chicago White Sox stand trial for allegedly throwing the 1919 World Series for mobster Arnold Rothstein (Michael Lerner). + + John Cusack + Clifton James + Michael Lerner + + 1988 + Movies + History + + + TVG + + + 3 + + + + MLB Tonight + Featuring live look-ins, updates, highlights, reporting, interviews and analysis by MLB Network's experts. + Sports + Baseball + + + + MLB Now + Veteran broadcaster Brian Kenny discusses baseball's hot topics. + Sports + Baseball + + + + MLB Tonight + Featuring live look-ins, updates, highlights, reporting, interviews and analysis by MLB Network's experts. + Sports + Baseball + + + + MLB Tonight + Featuring live look-ins, updates, highlights, reporting, interviews and analysis by MLB Network's experts. + Sports + Baseball + + + + MLB Now + Veteran broadcaster Brian Kenny discusses baseball's hot topics. + Sports + Baseball + + + + MLB Tonight + Featuring live look-ins, updates, highlights, reporting, interviews and analysis by MLB Network's experts. + Sports + Baseball + + + + MLB Now + Veteran broadcaster Brian Kenny discusses baseball's hot topics. + Sports + Baseball + + + + Intentional Talk + An open forum discussion on all the hot topics of the day from entertainment, pop culture -- and of course, baseball. + Sports + Baseball + + + + MLB Tonight + Featuring live look-ins, updates, highlights, reporting, interviews and analysis by MLB Network's experts. + Sports + Baseball + + + + MLB Tonight + Featuring live look-ins, updates, highlights, reporting, interviews and analysis by MLB Network's experts. + Sports + Baseball + + + + MLB Tonight + Featuring live look-ins, updates, highlights, reporting, interviews and analysis by MLB Network's experts. + Sports + Baseball + + + + MLB Tonight + Featuring live look-ins, updates, highlights, reporting, interviews and analysis by MLB Network's experts. + Sports + Baseball + + + + Hot Stove + Offseason news, live analysis, debates and interviews. With Matt Vasgersian and Harold Reynolds. + Sports + Baseball + + + + Hot Stove + Offseason news, live analysis, debates and interviews. With Matt Vasgersian and Harold Reynolds. + Sports + Baseball + + + + High Heat + Christopher. + Sports + Baseball + + + + MLB Now + Veteran broadcaster Brian Kenny discusses baseball's hot topics. + Sports + Baseball + + + + Intentional Talk + An open forum discussion on all the hot topics of the day from entertainment, pop culture -- and of course, baseball. + Sports + Baseball + + + + Hot Stove + Offseason news, live analysis, debates and interviews. With Matt Vasgersian and Harold Reynolds. + Sports + Baseball + + + + MLB Now + Veteran broadcaster Brian Kenny discusses baseball's hot topics. + Sports + Baseball + + + + Intentional Talk + An open forum discussion on all the hot topics of the day from entertainment, pop culture -- and of course, baseball. + Sports + Baseball + + + + High Heat + Christopher. + Sports + Baseball + + + + MLB Awards 2023 + 2023 All-MLB Team Nominees + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Upcoming - MLB Network Strike Zone + A high-speed trip around MLB, showing up-to-the-minute highlights, live look-ins & updates on Tuesday & Friday nights. + Sports + Baseball + + + + Boston Celtics vs. Brooklyn Nets + Boston Celtics at Brooklyn Nets + From Barclays Center in Brooklyn, N.Y. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Golden State Warriors vs. Cleveland Cavaliers + Golden State Warriors at Cleveland Cavaliers + From Rocket Mortgage FieldHouse in Cleveland. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Milwaukee Bucks vs. Brooklyn Nets + Milwaukee Bucks at Brooklyn Nets + From Barclays Center in Brooklyn, N.Y. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Sacramento Kings vs. Houston Rockets + Sacramento Kings at Houston Rockets + From the Toyota Center in Houston. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Golden State Warriors vs. Cleveland Cavaliers + Golden State Warriors at Cleveland Cavaliers + From Rocket Mortgage FieldHouse in Cleveland. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Los Angeles Clippers vs. New York Knicks + Los Angeles Clippers at New York Knicks + LA gets back to work with a game in New York. Since a loss to the Lakers on Nov. 1 that dropped them to 3-2, the Clippers acquired 10-time All-Star and three-time scoring champion James Harden and P.J. Tucker from the 76ers for players and picks. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Sacramento Kings vs. Houston Rockets + Sacramento Kings at Houston Rockets + From the Toyota Center in Houston. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Charlotte Hornets vs. Dallas Mavericks + Charlotte Hornets at Dallas Mavericks + From American Airlines Center in Dallas. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Utah Jazz vs. Chicago Bulls + Utah Jazz at Chicago Bulls + From the United Center in Chicago. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Utah Jazz vs. Minnesota Timberwolves + Utah Jazz at Minnesota Timberwolves + From the Target Center in Minneapolis. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Charlotte Hornets vs. Dallas Mavericks + Charlotte Hornets at Dallas Mavericks + From American Airlines Center in Dallas. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Sacramento Kings vs. Houston Rockets + Sacramento Kings at Houston Rockets + From the Toyota Center in Houston. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Year of the Dog + After her beloved beagle dies, an office worker (Molly Shannon) unsuccessfully searches for ways to fill the void in her life. + + Molly Shannon + Laura Dern + Regina King + + 2007 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Chicago Fire + As the courageous firefighters, rescue squad and paramedics of Chicago Firehouse 51 head first into danger, bravely fighting to save the people of their city from peril, they also forge deep, unbreakable bonds with each other. + + Taylor Kinney + Eamonn Walker + David Eigenberg + + Drama + + + TV14 + + + + Chicago Fire + As the courageous firefighters, rescue squad and paramedics of Chicago Firehouse 51 head first into danger, bravely fighting to save the people of their city from peril, they also forge deep, unbreakable bonds with each other. + + Taylor Kinney + Eamonn Walker + David Eigenberg + + Drama + + + TV14 + + + + S.W.A.T. + Wild Ones + The team pursues a couple reminiscent of Bonnie and Clyde when the duo goes on the run to hunt for a set of rare chess pieces that is worth millions; Darryl's ex-girlfriend visits with his young son. + + Shemar Moore + Alex Russell + Jay Harrington + + Drama + + + TV14 + + + + iCRIME With Elizabeth Vargas + Crimes from across the country that have been captured by ordinary people on their smartphones; stories of victims, witnesses, law enforcement and the videographers themselves. + Reality TV + + + TV14 + + + + iCRIME With Elizabeth Vargas + Crimes from across the country that have been captured by ordinary people on their smartphones; stories of victims, witnesses, law enforcement and the videographers themselves. + Reality TV + + + TV14 + + + + Chicago P.D. + Chicago P.D.'s Intelligence Unit, led by Sgt. Hank Voight, investigates the city's most formidable offenses, but as they seek truth, Voight must adapt to a transforming criminal justice system in the midst of change. + + Jason Beghe + Patrick John Flueger + LaRoyce Hawkins + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Led by courageous and compassionate veteran Capt. Olivia Benson, the NYPD's elite Special Victims Unit, including Sgt. Odafin Tutuola, Detective Amanda Rollins and Officer Katriona Tamin, investigates crimes that are ripped from the headlines. + + Mariska Hargitay + Ice-T + Kelli Giddish + + Drama + + + TV14 + + + + iCRIME With Elizabeth Vargas + Crimes from across the country that have been captured by ordinary people on their smartphones; stories of victims, witnesses, law enforcement and the videographers themselves. + Reality TV + + + TV14 + + + + iCRIME With Elizabeth Vargas + Crimes from across the country that have been captured by ordinary people on their smartphones; stories of victims, witnesses, law enforcement and the videographers themselves. + Reality TV + + + TV14 + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + Protect Your Memory + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Protect Your Memory + Paid Program + + + + Rare Silver Coin Set + Add the First Day of Issue 2023 Morgan and Peace Dollars graded in perfect Mint State and Proof 70 condition to your collection. With Mint State mintages of only 275,000 examples and 400,00 for Proof, these coins are incredible absolute rarities! + Paid Program + + + + Xploration DIY Sci + Inertia + How to pull a tablecloth out from under dishes on a set table; experiments proving the laws of inertia; how to build a hovercraft. + Science + Instructional + + + TVPG + + + + Xploration Nature Knows Best + Muscles of Mimicry + Some of the world's strongest materials are naturally made, like the silk spiders use to make their webs. + Science + Instructional + + + TVPG + + + + Bel Air Presbyterian Church + Religious + + + + Robert Jeffress + The Seventh Commandment - Keep Marriage Holy + The teaching ministry of Dr. Robert Jeffress. + Religious + + + TVG + + + + Fred Jordan Missions + Ministry and updates from LA's Skid Row at the Fred Jordan Mission. + Religious + + + + Freethought Matters + Daniel Dennett + Hosted by FFRF co-presidents Annie Laurie Gaylor and Dan Barker interview leading freethought authors, thinkers and activists from around the world. + Regular + + + + In Touch With Dr. Charles Stanley + The Stages of Faith; Overcoming Discouragement + In Touch Ministries is the broadcast teaching ministry of Dr. Charles Stanley. + Religious + + + TVG + + + + Real Life with Jack Hibbs + Desire that through Jesus Christ, you will know real life. + Religious + + + + The Key of David + Covering today's most important events with a unique perspective based on Bible prophecy. + Religious + + + TVPG + + + + The Catholic Mass + The Heart of the nation Sunday mass brings the beauty and traditions of the Catholic faith. + Religious + + + + Lift Up Jesus With Dudley Rutherford + Senior Pastor Dudley Rutherford shares biblical truths and practical knowledge to live the life God intended for you, from Shepherd Church in Porter Ranch, California. + Religious + + + TVG + + + + Fox 11 News: In Depth + Hal Eisner hosts. + Talk Shows + News + + + + Fox 11 News: The Issue Is + Exploring interesting and controversial issues from a California perspective. + Talk Shows + Local + + + + Matter of Fact With Soledad O'Brien + Soledad O'Brien and guests offer analysis and perspective on current political issues. + Talk Shows + News + + + TVPG + + + + Let's Make Medicare Easier + Aetna licensed agents can simplify Medicare and help you choose coverage that's right for you! + Paid Program + + + + Rare Silver Coin Set + Add the First Day of Issue 2023 Morgan and Peace Dollars graded in perfect Mint State and Proof 70 condition to your collection. With Mint State mintages of only 275,000 examples and 400,00 for Proof, these coins are incredible absolute rarities! + Paid Program + + + + AAA Benefits and Savings + Learn how you could save everyday with AAA, from 24-hour Roadside Assistance and Travel to Insurance and Member Discounts. + Paid Program + + + + Willy's Wonderland + When his car breaks down, a quiet loner agrees to clean an abandoned family fun center in exchange for repairs. He soon finds himself waging war against possessed animatronic mascots while trapped inside Willy's Wonderland. + + Nicolas Cage + Emily Tosta + Beth Grant + + 2021 + Movies + Horror + + + TV14 + + + + Vacancy + While stranded at a remote motel, a couple (Luke Wilson, Kate Beckinsale) discover hidden cameras in their room and learn they are to be the stars of a snuff film. + + Luke Wilson + Kate Beckinsale + Frank Whaley + + 2007 + Movies + Thriller + + + TVPG + + + 2 + + + + Pure Outdoor + Outdoor sports from all over the world, from freestyle ski jumping to airplane aerobatics. + Sports + Outdoors + + + + Raw Travel + Incredible Cape Town + Locals, artists and world travelers rave about Cape Town, South Africa. + Travel + + + TVPG + + + + Modern Family + The Verdict + Claire wants to give Haley and Alex a great experience on Take your Daughter to Work Day but employees make things difficult; Jay has to help out at Joe's preschool when Gloria has jury duty; Mitch and Cam cannot agree on who to invite to a party. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + The More You Ignore Me + Luke is arrested for driving without a license; Alex is caught sneaking out of a liquor store; Cam thinks Gloria should re-create and sell her family's hot sauce; Haley and Dylan have an awkward encounter with Beth and Andy. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + The King of Queens + Inn Escapable + Doug and Carrie's romantic getaway is a nightmare when the owners of the bed-and-breakfast become too much to take. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Fresh Brood + When Doug is not allowed to hold Danny's girlfriend's baby, Doug tries to persuade Carrie to have a child so he can get back at Danny. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + Seinfeld + The Shower Head + Jerry pays a price for mocking his uncle (Len Lesser) on. + + Jerry Seinfeld + Julia Louis-Dreyfus + Jason Alexander + + Sitcom + + + TVPG + + + + Seinfeld + The Doll + George is dismayed because one of the dolls in Susan's collection bears an uncanny resemblance to his mother. + + Jerry Seinfeld + Julia Louis-Dreyfus + Jason Alexander + + Sitcom + + + TVPG + + + + Last Man Standing + Private Coach + When Mike hires a private soccer coach in hope of helping Eve land a scholarship, the ladies of the Baxter household are charmed by the young man. + + Tim Allen + Nancy Travis + Molly Ephraim + + Sitcom + + + TVPG + + + + Last Man Standing + The Fight + Ryan winds up impressing Mike; after Mandy fails history and her laptop and cell phone are taken away, she starts using Mike's old ham radio. + + Tim Allen + Nancy Travis + Molly Ephraim + + Sitcom + + + TVPG + + + + TMZ + The very latest celebrity news. + News Magazine + Performing Arts + + + TVPG + + + + Extra + Inside the entertainment newsgathering process, as reporters coast to coast break headlines, advance the stories of the day, and sit down with celebrities. + News Magazine + Performing Arts + + + TVPG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Mini Dental Implants + Randy Alvarez interviews Dr. Lin Le- Smilemaker Dental about mini dental implants. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Extra + Inside the entertainment newsgathering process, as reporters coast to coast break headlines, advance the stories of the day, and sit down with celebrities. + News Magazine + Performing Arts + + + TVPG + + + + TMZ + The very latest celebrity news. + News Magazine + Performing Arts + + + TVPG + + + + The 700 Club + The doctors told Mark's family that he would never be the same even if he came out of the coma. But as they began to pray, they soon began believing for a miracle instead. + Talk Shows + Religious + + + + Judge Mathis + The plaintiff is the defendant's wife, but she petitions the court for a paternity test because she does not know if he is the biological father of her son. + Reality TV + Legal + + + TVPG + + + + The People's Court + Reality TV + Legal + + + TVPG + + + + Divorce Court + Robert Bell vs. Daiosha Bell + Judge Star Jones uses her wisdom and experience as she presides over the courtroom, hearing disputes involving the highs and lows of relationships. + Reality TV + Legal + + + TV14 + + + + Divorce Court + Love Don't Live Here, and Neither Do You: Zon-Tavious Johnson vs. Nikita Johnson + Zon-Tavious says he's living a nightmare with a lying, deceiving and disrespectful husband. + Reality TV + Legal + + + TV14 + + + + Law & Order: Special Victims Unit + Loss + Detectives face off against a Colombian cartel and the Drug Enforcement Administration while investigating the brutal rape and murder of an undercover agent. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Closet + A troubled teen (David Del Rio) is the first suspect when a money manager is found murdered in his loft, but a hidden video camera leads detectives to a star football player whose agent is willing to do almost anything to protect his client. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Signature + A woman's body is found in a park alongside a man with a bullet in his head. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Maury + Who Fathered Your Twins ... Me or My Dad? + After moving in with her fiance and his family, Breanna started sleeping with his father and wound up pregnant; Nera and Amanda have opposing views of their relationship; Antwaneice finds out which of her ex-boyfriends is her babies' daddy. + Talk Shows + + + TV14 + + + + Sherri + Actress, comic and Emmy Award-winning longtime co-host of. + Talk Shows + + + TVPG + + + + The Jennifer Hudson Show + The EGOT winner's daytime talk show features celebrity interviews, topical stories, community heroes, viral sensations, and music, bringing fun, uplifting, and empowering conversations to the forefront. + Talk Shows + + + TVPG + + + + Modern Family + Clean out Your Junk Drawer + When Gloria wins a family seminar at the school auction, Jay is resistant, Mitch and Cam try to come across as super stable, and Phil and Claire turn it into a competition; Haley and Alex get together to talk about boys. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Phil's Sexy, Sexy House + A conversation about a house Phil is helping to sell gives everyone the idea to sneak in to enjoy it themselves; Jay and Gloria's plan to pay for a surprise family trip to Miami turns into a surprise for Gloria and then a bigger surprise for Jay. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Last Man Standing + College Girl + After Mandy is accepted by two colleges, Kristin decides to re-evaluate her life; during a date with Ryan, Kristin runs into Jon (Jonathan Taylor Thomas), a former co-worker from the diner, who now owns a hip restaurant. + + Tim Allen + Nancy Travis + Molly Ephraim + + Sitcom + + + TVPG + + + + Last Man Standing + Back to School + Mike learns that Kyle's new-found interest in philosophy is distracting him from his work; Mike worries about Boyd attending a bilingual school. + + Tim Allen + Nancy Travis + Molly Ephraim + + Sitcom + + + TVPG + + + + The King of Queens + G'Night, Stalker + Doug lets the attention go to his head when he gets anonymous e-mail from someone who saw him perform at a karaoke club. + + Kevin James + Leah Remini + Victor Williams + + Sitcom + + + TVPG + + + + The King of Queens + Wedding Presence + After learning that a wedding reception is five hours away, Doug and Carrie scramble for an excuse to not go. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + Seinfeld + The Cadillac + Jerry buys his parents (Barney Martin, Liz Sheridan) a Cadillac, which only complicates their lives; George rethinks his engagement. + + Jerry Seinfeld + Julia Louis-Dreyfus + Jason Alexander + + Sitcom + + + TVPG + + + + Seinfeld + The Soup + Jerry is forced to treat an obnoxious comic (Stephen Hytner) to dinner after accepting a designer suit. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + West Coast Wrap + News + + + + TMZ Live + Harvey Levin invites viewers inside TMZ's newsroom to see how news is made. + News Magazine + Performing Arts + + + TVPG + + + + Pictionary + Skelebration + Celebrity captains Brian Austin Green (. + Game Shows + + + TVPG + + + + People Puzzler + Famous All Day + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + Game Shows + + + TVPG + + + + People Puzzler + Culture Club + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + Game Shows + + + TVPG + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Protect Your Memory + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Mini Dental Implants + Randy Alvarez interviews Dr. Lin Le- Smilemaker Dental about mini dental implants. + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + AAA Benefits and Savings + Learn how you could save everyday with AAA, from 24-hour Roadside Assistance and Travel to Insurance and Member Discounts. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Extra + Inside the entertainment newsgathering process, as reporters coast to coast break headlines, advance the stories of the day, and sit down with celebrities. + News Magazine + Performing Arts + + + TVPG + + + + TMZ + The very latest celebrity news. + News Magazine + Performing Arts + + + TVPG + + + + The 700 Club + Nico attempts suicide several times and no one understands it's a cry for help to get away from his abuser. When he meets a friend who finally sees him and believes him, his life changes forever. + Talk Shows + Religious + + + + Judge Mathis + The plaintiff says he and the defendant dated for years, but she insists they were nothing more than friends and claims he is suing her for unpaid rent and a security deposit because she refused to date him. + Reality TV + Legal + + + TVPG + + + + The People's Court + Reality TV + Legal + + + TVPG + + + + Divorce Court + Entangled With Emotions: Robert Bell vs. Daiosha Bell + Robert says his wife is taking his love for granted with her inconsiderate and deceitful behavior, and it's hard to ignore all of the red flags that now point toward divorce. + Reality TV + Legal + + + TV14 + + + + Divorce Court + Stop! You're an Undercover Addict: Nikeia Wyche vs. Antwain Wyche + Nikeia says Antwain is the love of her life, but she can't compete with his pill addiction; she says this is his last chance to get clean and save their marriage. + Reality TV + Legal + + + TV14 + + + + Law & Order: Special Victims Unit + Coerced + A boy, 5, is abducted from his bed in the middle of the night, prompting detectives to take a hard look at the boy's estranged father. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Chicago Fire + A Nuisance Call + Severide wants to implicate the serial arsonist; Dawson and Shay face the unexpected on a routine call; suspicions indicate Clarke is the mole; Mouch campaigns for union president. + + Jesse Spencer + Taylor Kinney + Charlie Barnett + + Drama + + + TV14 + + + + Chicago Fire + A Power Move + McLeod pushes Boden toward an early retirement and chooses a potential replacement; all make known their disdain for the mole; Shay enjoys a full social life. + + Jesse Spencer + Taylor Kinney + Charlie Barnett + + Drama + + + TV14 + + + + Maury + Did My Fiance Cheat to Have a Baby? + Chell's fiance, Drama, and his friend, Concrete, tell her that when they are out all night, they are at Drama's grandmother's house; Diane's boyfriend tells her that the woman she saw get into his car was a ghost; Amber saw Josh on a dating website. + Talk Shows + + + TV14 + + + + Sherri + Actress, comic and Emmy Award-winning longtime co-host of. + Talk Shows + + + TVPG + + + + The Jennifer Hudson Show + The EGOT winner's daytime talk show features celebrity interviews, topical stories, community heroes, viral sensations, and music, bringing fun, uplifting, and empowering conversations to the forefront. + Talk Shows + + + TVPG + + + + Modern Family + Playdates + When Claire and Phil go out with a couple they met on vacation, the Dunphys end up having to pay the bill; Haley, Alex and Luke scramble to come through when Mitchell cashes in a birthday coupon they gave him. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Spread Your Wings + Claire hopes to help the ducklings move out of the house while Phil is visiting Alex at college; Jay helps Mitch with Lily's sleepover; Cam, Gloria and Manny must meet a big hot sauce delivery deadline. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Last Man Standing + Driving Lessons + Despite having a good time teaching Eve how to drive, Mike thinks Vanessa should take over so she and Eve can bond; Mandy is annoyed by Mike's endless requests for Kyle to do work around the house. + + Tim Allen + Nancy Travis + Molly Ephraim + + Sitcom + + + TVPG + + + + Last Man Standing + Pledging + Vanessa encourages Mandy to enjoy college life and join a sorority; Ed goes under cover to investigate productivity on The Outdoor Man loading dock. + + Tim Allen + Nancy Travis + Molly Ephraim + + Sitcom + + + TVPG + + + + The King of Queens + Move Doubt + Doug and Carrie are confused when Deacon and Kelly are not interested in buying the house next door to theirs. + + Kevin James + Leah Remini + Victor Williams + + Sitcom + + + TVPG + + + + The King of Queens + Papa Pill + When Doug can't understand the difficulties Carrie faces when caring for Arthur, he takes over and learns the hard way. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + Seinfeld + The Cadillac + Jerry buys his parents (Barney Martin, Liz Sheridan) a Cadillac, which only complicates their lives; George rethinks his engagement. + + Jerry Seinfeld + Julia Louis-Dreyfus + Jason Alexander + + Sitcom + + + TVPG + + + + Seinfeld + The Secretary + George hires a dowdy assistant (Vicki Lewis) whose competence and productivity prove to be a turn-on. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + West Coast Wrap + News + + + + TMZ Live + Harvey Levin invites viewers inside TMZ's newsroom to see how news is made. + News Magazine + Performing Arts + + + TVPG + + + + Pictionary + O Is for Orko + Celebrity captains Brian Austin Green (. + Game Shows + + + TVPG + + + + People Puzzler + I Get So Emotional + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + Game Shows + + + TVPG + + + + People Puzzler + Teachers Know It All + Three contestants put their pop culture knowledge to the test to complete crosswords based on the iconic puzzles in People magazine. + Game Shows + + + TVPG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Men's Health - All-Natural Secret for Prostate Health + Prosvent is a doctor formulated blend of rejuvenating herbs and nutrients that help protect overall prostate health. + Paid Program + + + + Protect Your Memory + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Protect Your Memory + Paid Program + + + + Let's Make Medicare Easier + Aetna licensed agents can simplify Medicare and help you choose coverage that's right for you! + Paid Program + + + + AAA Benefits and Savings + Learn how you could save everyday with AAA, from 24-hour Roadside Assistance and Travel to Insurance and Member Discounts. + Paid Program + + + + Extra + Inside the entertainment newsgathering process, as reporters coast to coast break headlines, advance the stories of the day, and sit down with celebrities. + News Magazine + Performing Arts + + + TVPG + + + + TMZ + The very latest celebrity news. + News Magazine + Performing Arts + + + TVPG + + + + The 700 Club + News from a Christian perspective and inspirational guests who share stories of God at work in their lives. + Talk Shows + Religious + + + + Judge Mathis + A man sues his ex-girlfriend for unreturned items; she says she filed a restraining order against him after he slapped her and spit in her face. + Reality TV + Legal + + + TVPG + + + + The People's Court + Reality TV + Legal + + + TVPG + + + + Divorce Court + Clean Up or Get Out: Samantha Shaner vs. Jeffrey Shaner + Samantha says her husband is a. + Reality TV + Legal + + + TVPG + + + + Divorce Court + Should I Marry My Husband, Again?: Michele Perkins vs. Jason Gusman + She's already divorced him once, now she's taken him back, but Michele says Jason is up to his old ways, and she's not sure marrying him again is the right choice. + Reality TV + Legal + + + TV14 + + + + Law & Order: Special Victims Unit + Choice + Detectives interrogate a man who accuses his wife (Josie Bissett) of endangering the life of their unborn child through excessive drinking. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Dateline + A Texas Twist + Against all odds, a young woman is found alive after an attack on her and a friend near Corpus Christi, Texas. + News Magazine + + + TVPG + + + + Dateline + Something Sweet + The five-year investigation into the death of a retired corrections officer, who was killed by antifreeze poisoning, reveals multiple suspects. + News Magazine + + + TV14 + + + + Return to Lonesome Dove + The Passing + Call (Jon Voight) makes Agostina (Nia Peeples) a partner in the Hat Creek Ranch. + + Jon Voight + Barbara Hershey + Ricky Schroder + + Miniseries + + + TVPG + + + + Jericho + A charismatic preacher rescues a mysterious gunman who tries to find the answers to his lost identity. + + Mark Valley + Leon Coffee + R. Lee Ermey + + 2000 + Movies + Western + + + TVG + + + 2 + + + + Pure Luck + A klutzy accountant (Martin Short) is sent to Mexico with a private eye (Danny Glover) to find his boss's klutzy daughter (Sheila Kelley). + + Martin Short + Danny Glover + Sheila Kelley + + 1991 + Movies + Comedy + + + TVG + + + 2 + + + + The Secret of Roan Inish + An Irish girl convinces her grandparents (Mick Lally, Eileen Colgan) to look into the mysterious fate of her infant brother. + + Mick Lally + Eileen Colgan + John Lynch + + 1994 + Movies + Children + + + TVG + + + 3 + + + + The Secret of Roan Inish + An Irish girl convinces her grandparents (Mick Lally, Eileen Colgan) to look into the mysterious fate of her infant brother. + + Mick Lally + Eileen Colgan + John Lynch + + 1994 + Movies + Children + + + TVG + + + 3 + + + + Polish Wedding + A Detroit matriarch (Lena Olin) cheats on her husband (Gabriel Byrne) and oversees her pregnant daughter's (Claire Danes) marriage to a neighbor. + + Lena Olin + Gabriel Byrne + Claire Danes + + 1998 + Movies + Comedy + Drama + + + 2 + + + + By Dawn's Early Light + An aging Colorado cowboy (Richard Crenna) forces his rebellious grandson (Chris Olivero) to travel back home to California by horseback. + + Richard Crenna + David Carradine + Chris Olivero + + 2001 + Movies + Drama + + + TVPG + + + + Pure Luck + A klutzy accountant (Martin Short) is sent to Mexico with a private eye (Danny Glover) to find his boss's klutzy daughter (Sheila Kelley). + + Martin Short + Danny Glover + Sheila Kelley + + 1991 + Movies + Comedy + + + TVG + + + 2 + + + + Tortilla Soup + A veteran chef (Héctor Elizondo) and his three daughters (Jacqueline Obradors, Elizabeth Peña) discuss their career paths and love interests at the dinner table. + + Héctor Elizondo + Jacqueline Obradors + Elizabeth Peña + + 2001 + Movies + Romance + + + TVG + + + 2 + + + + Jane Eyre + After fleeing Thornfield House, governess Jane Eyre (Mia Wasikowska) realizes she must return and come to terms with Edward Rochester's (Michael Fassbender) terrible secret. + + Mia Wasikowska + Michael Fassbender + Jamie Bell + + 2011 + Movies + Drama + + + 3 + + + + The Secret of Roan Inish + An Irish girl convinces her grandparents (Mick Lally, Eileen Colgan) to look into the mysterious fate of her infant brother. + + Mick Lally + Eileen Colgan + John Lynch + + 1994 + Movies + Children + + + TVG + + + 3 + + + + Pure Luck + A klutzy accountant (Martin Short) is sent to Mexico with a private eye (Danny Glover) to find his boss's klutzy daughter (Sheila Kelley). + + Martin Short + Danny Glover + Sheila Kelley + + 1991 + Movies + Comedy + + + TVG + + + 2 + + + + According to Greta + A rebellious and suicidal teen (Hilary Duff) gets sent for the summer to her grandparents, where her life takes an unexpected turn. + + Hilary Duff + Melissa Leo + Ellen Burstyn + + 2009 + Movies + Drama + + + TVG + + + + After the Ball + With help from a princely shoe salesman, her godmother's vintage garb and an identity switch, a young woman (Portia Doubleday) exposes her evil stepfamily and saves her father's fashion company. + + Portia Doubleday + Chris Noth + Lauren Holly + + 2015 + Movies + Romance + + + TVG + + + + Off the Menu + A talented and feisty female chef in a small New Mexico town falls for the unlikely heir to a Mexican fast-food franchise. + + Dania Ramirez + Santino Fontana + Makenzie Moss + + 2018 + Movies + Romance + + + TVG + + + + Tortilla Soup + A veteran chef (Héctor Elizondo) and his three daughters (Jacqueline Obradors, Elizabeth Peña) discuss their career paths and love interests at the dinner table. + + Héctor Elizondo + Jacqueline Obradors + Elizabeth Peña + + 2001 + Movies + Romance + + + TVG + + + 2 + + + + Rams + Two estranged brothers must set aside their differences when a rare and lethal illness threatens their respective flocks of sheep in Western Australia. + + Sam Neill + Michael Caton + Miranda Richardson + + 2020 + Movies + Comedy + Drama + + + + Yellow Rose + A Filipina teen must decide whether to stay with her family or leave her small Texas town to become a country music singer. + + Eva Noblezada + Princess Punzalan + Lea Salonga + + 2019 + Movies + Drama + + + TVG + + + 3 + + + + Jane Eyre + After fleeing Thornfield House, governess Jane Eyre (Mia Wasikowska) realizes she must return and come to terms with Edward Rochester's (Michael Fassbender) terrible secret. + + Mia Wasikowska + Michael Fassbender + Jamie Bell + + 2011 + Movies + Drama + + + 3 + + + + Jane Eyre + After fleeing Thornfield House, governess Jane Eyre (Mia Wasikowska) realizes she must return and come to terms with Edward Rochester's (Michael Fassbender) terrible secret. + + Mia Wasikowska + Michael Fassbender + Jamie Bell + + 2011 + Movies + Drama + + + 3 + + + + Tortilla Soup + A veteran chef (Héctor Elizondo) and his three daughters (Jacqueline Obradors, Elizabeth Peña) discuss their career paths and love interests at the dinner table. + + Héctor Elizondo + Jacqueline Obradors + Elizabeth Peña + + 2001 + Movies + Romance + + + TVG + + + 2 + + + + Off the Menu + A talented and feisty female chef in a small New Mexico town falls for the unlikely heir to a Mexican fast-food franchise. + + Dania Ramirez + Santino Fontana + Makenzie Moss + + 2018 + Movies + Romance + + + TVG + + + + Yellow Rose + A Filipina teen must decide whether to stay with her family or leave her small Texas town to become a country music singer. + + Eva Noblezada + Princess Punzalan + Lea Salonga + + 2019 + Movies + Drama + + + TVG + + + 3 + + + + Rams + Two estranged brothers must set aside their differences when a rare and lethal illness threatens their respective flocks of sheep in Western Australia. + + Sam Neill + Michael Caton + Miranda Richardson + + 2020 + Movies + Comedy + Drama + + + + After the Ball + With help from a princely shoe salesman, her godmother's vintage garb and an identity switch, a young woman (Portia Doubleday) exposes her evil stepfamily and saves her father's fashion company. + + Portia Doubleday + Chris Noth + Lauren Holly + + 2015 + Movies + Romance + + + TVG + + + + Heart of Champions + During their last year at an Ivy League college in 1999, some friends' lives are changed forever when an Army vet takes over as coach of their dysfunctional rowing team. + + Michael Shannon + Alexander Ludwig + Charles Melton + + 2021 + Movies + Drama + + + + Maiden + In 1989 Tracy Edwards leads the first all-female crew in the Whitbread Round the World Race, a grueling yachting competition that covers 33,000 miles and lasts nine months. + 2018 + Movies + Documentary + + + TVG + + + + Aquarela + From massive waves to melting ice, filmmaker Victor Kossakovsky travels around the world to capture stunning images of the beauty and raw power of water. + 2018 + Movies + Documentary + + + TVG + + + + Yellow Rose + A Filipina teen must decide whether to stay with her family or leave her small Texas town to become a country music singer. + + Eva Noblezada + Princess Punzalan + Lea Salonga + + 2019 + Movies + Drama + + + TVG + + + 3 + + + + About a Boy + An irresponsible playboy becomes emotionally attached to a woman's12-year-old son. The man and child help each other in an unlikely friendship. + + Hugh Grant + Rachel Weisz + Toni Collette + + 2002 + Movies + Romance + + + TVG + + + 3 + + + + Maiden + In 1989 Tracy Edwards leads the first all-female crew in the Whitbread Round the World Race, a grueling yachting competition that covers 33,000 miles and lasts nine months. + 2018 + Movies + Documentary + + + TVG + + + + Heart of Champions + During their last year at an Ivy League college in 1999, some friends' lives are changed forever when an Army vet takes over as coach of their dysfunctional rowing team. + + Michael Shannon + Alexander Ludwig + Charles Melton + + 2021 + Movies + Drama + + + + Aquarela + From massive waves to melting ice, filmmaker Victor Kossakovsky travels around the world to capture stunning images of the beauty and raw power of water. + 2018 + Movies + Documentary + + + TVG + + + + Aquarela + From massive waves to melting ice, filmmaker Victor Kossakovsky travels around the world to capture stunning images of the beauty and raw power of water. + 2018 + Movies + Documentary + + + TVG + + + + Sommersby + A farmer's wife (Jodie Foster) suspects the man (Richard Gere) in her bed, back from the Civil War, is not the husband who left years before. + + Richard Gere + Jodie Foster + Bill Pullman + + 1993 + Movies + Drama + + + TVG + + + 3 + + + + Maiden + In 1989 Tracy Edwards leads the first all-female crew in the Whitbread Round the World Race, a grueling yachting competition that covers 33,000 miles and lasts nine months. + 2018 + Movies + Documentary + + + TVG + + + + About a Boy + An irresponsible playboy becomes emotionally attached to a woman's12-year-old son. The man and child help each other in an unlikely friendship. + + Hugh Grant + Rachel Weisz + Toni Collette + + 2002 + Movies + Romance + + + TVG + + + 3 + + + + Heart of Champions + During their last year at an Ivy League college in 1999, some friends' lives are changed forever when an Army vet takes over as coach of their dysfunctional rowing team. + + Michael Shannon + Alexander Ludwig + Charles Melton + + 2021 + Movies + Drama + + + + Sommersby + A farmer's wife (Jodie Foster) suspects the man (Richard Gere) in her bed, back from the Civil War, is not the husband who left years before. + + Richard Gere + Jodie Foster + Bill Pullman + + 1993 + Movies + Drama + + + TVG + + + 3 + + + + Cop and a Half: New Recruit + Veteran detective Mark Simmons is assigned a new partner, a spunky 12-year-old girl who has serious detective skills and tech-savvy smarts. Together, they have to track down and stop the Badge Bandit, a serial prankster causing mischief. + + Lou Diamond Phillips + Wallace Shawn + Gina Holden + + 2017 + Movies + Comedy + + + TVG + + + + A Belle for Christmas + A boy and his little sister discover their new dog has been nabbed by their father's gold-digging girlfriend, and they recruit their friends to help them save their beloved pup. + + Dean Cain + Kristy Swanson + Jacob Guenther + + 2014 + Movies + Christmas + Children + + + TVG + + + + Mighty Mighty Monsters: Pranks for the Memories + As the school year nears an end, the monsters must be on their best behavior if they want to return to Monster Academy next year. + + Vincent Tong + Travis Turner + Donavon Stinson + + Specials + Animated + + + TVY7 + + + + Mighty Mighty Monsters: Halloween Havoc + Vlad , Frankie and Gunnar, expelled from Monster Academy for a prank gone wrong, attend a human immersion program at a normal middle school in hopes of returning to their monster school. + + Reece Thompson + Vincent Tong + Travis Turner + + Specials + Animated + + + + Against the Wild + Two siblings and their dogs become lost in the wilderness and combine their skills to survive. + + Natasha Henstridge + CJ Adams + Sarah Deakins + + 2013 + Movies + Children + + + TVG + + + + Leave No Trace + A man and his 13-year-old daughter are living in a park when a small mistake tips them off to authorities and changes their lives forever. + + Ben Foster + Thomasin McKenzie + Jeff Kober + + 2018 + Movies + Drama + + + 3 + + + + Frankie + A family confronts a life-altering crisis while vacationing in Portugal. + + Isabelle Huppert + Brendan Gleeson + Marisa Tomei + + 2019 + Movies + Drama + + + TVG + + + + Oddball + A chicken farmer and his granddaughter train a dog to protect a penguin sanctuary from foxes. + + Alan Tudyk + Sarah Snook + Coco Jack Gillies + + 2015 + Movies + Children + + + TVG + + + + Red Dog + A dog unites a fractured community while searching for its master. + + Josh Lucas + Rachael Taylor + Keisha Castle-Hughes + + 2011 + Movies + Children + + + TVG + + + + Out of Liberty + In the winter of 1839, a jailer is tasked with overseeing Missouri's most wanted men as they await trial. + + Jasen Wade + Brandon Ray Olive + Casey Elliott + + 2019 + Movies + Western + + + + Out of Liberty + In the winter of 1839, a jailer is tasked with overseeing Missouri's most wanted men as they await trial. + + Jasen Wade + Brandon Ray Olive + Casey Elliott + + 2019 + Movies + Western + + + + Leave No Trace + A man and his 13-year-old daughter are living in a park when a small mistake tips them off to authorities and changes their lives forever. + + Ben Foster + Thomasin McKenzie + Jeff Kober + + 2018 + Movies + Drama + + + 3 + + + + Frankie + A family confronts a life-altering crisis while vacationing in Portugal. + + Isabelle Huppert + Brendan Gleeson + Marisa Tomei + + 2019 + Movies + Drama + + + TVG + + + + Mighty Mighty Monsters: Pranks for the Memories + As the school year nears an end, the monsters must be on their best behavior if they want to return to Monster Academy next year. + + Vincent Tong + Travis Turner + Donavon Stinson + + Specials + Animated + + + TVY7 + + + + Red Dog + A dog unites a fractured community while searching for its master. + + Josh Lucas + Rachael Taylor + Keisha Castle-Hughes + + 2011 + Movies + Children + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Out of Liberty + In the winter of 1839, a jailer is tasked with overseeing Missouri's most wanted men as they await trial. + + Jasen Wade + Brandon Ray Olive + Casey Elliott + + 2019 + Movies + Western + + + + Frankie + A family confronts a life-altering crisis while vacationing in Portugal. + + Isabelle Huppert + Brendan Gleeson + Marisa Tomei + + 2019 + Movies + Drama + + + TVG + + + + Leave No Trace + A man and his 13-year-old daughter are living in a park when a small mistake tips them off to authorities and changes their lives forever. + + Ben Foster + Thomasin McKenzie + Jeff Kober + + 2018 + Movies + Drama + + + 3 + + + + Red Dog + A dog unites a fractured community while searching for its master. + + Josh Lucas + Rachael Taylor + Keisha Castle-Hughes + + 2011 + Movies + Children + + + TVG + + + + Oddball + A chicken farmer and his granddaughter train a dog to protect a penguin sanctuary from foxes. + + Alan Tudyk + Sarah Snook + Coco Jack Gillies + + 2015 + Movies + Children + + + TVG + + + + Megan Leavey + Young Marine Cpl. Megan Leavey starts to identify with Rex, a particularly aggressive combat dog that she trains. Together, they complete more than 100 missions until an improvised explosive device injures both, putting their fates in jeopardy. + + Kate Mara + Edie Falco + Ramón Rodríguez + + 2017 + Movies + War + + + TVG + + + 3 + + + + StreetDance + A dance crew is forced to work with ballet dancers in exchange for rehearsal space so they can prepare for a street dance championship. + + Nichola Burley + Richard Winsor + Charlotte Rampling + + 2010 + Movies + Drama + + + TVG + + + 2 + + + + The Jamie Foxx Show + I Believe I Can Fly + When Jamie's first big commercial jingle pitch for a bug spray is shot down, he e-mails a manifesto to the entire company. + + Jamie Foxx + Garrett Morris + Ellia English + + Sitcom + + + TVPG + + + + The Jamie Foxx Show + Why Don't We Just Roll ... Reversal + Inspired by friends' success, Jamie and Fancy engage in a relationship-building role-playing exercise which goes awry. + + Jamie Foxx + Garrett Morris + Ellia English + + Sitcom + + + TVPG + + + + The Fresh Prince of Bel-Air + The Client + Will (Will Smith) becomes Ashley's (Tatyana M. Ali) manager after discovering her talent for singing. With James Avery. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVG + + + + The Fresh Prince of Bel-Air + What's Will Got to Do With It? + Will (Will Smith) begins to realize how expendable he is when Ashley (Tatyana M. Ali) develops a big ego. With James Avery. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVG + + + + The Fresh Prince of Bel-Air + Grumpy Young Men + Will's date falls for Carlton; Philip and Hilary teach Ashley to drive. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVG + + + + The Fresh Prince of Bel-Air + Fresh Prince, The Movie + Will (Will Smith) is sent to the backwoods of Alabama by the FBI's Witness Protection Program. With James Avery. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVG + + + + The Fresh Prince of Bel-Air + Will's Misery + Will (Will Smith) courts pain when he dates the new sorority pledge (Alexia Robinson); Geoffrey (Joseph Marcell) has a job-related injury. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVG + + + + The Fresh Prince of Bel-Air + Father Knows Best + Ashley (Tatyana M. Ali) turns to Will (Will Smith) for help after she drops out of Bel-Air Academy to attend public school. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVG + + + + The Fresh Prince of Bel-Air + Soooooooul Train + Carlton and Will (Alfonso Ribeiro, Will Smith) compete against each other in a dance contest. With Don Cornelius. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVPG + + + + The Fresh Prince of Bel-Air + Love Hurts + While on their date, Will (Will Smith) discovers Lisa (Nia Long) can hold her own when another man hits on her. Guest stars: Ken Griffey Jr. and Pat Morita. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVPG + + + + The Fresh Prince of Bel-Air + Will's Up the Dirt Road + Will submits a candid photo of Jay Leno to the National Inquisitor and ends up in a heated legal battle. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVPG + + + + The Fresh Prince of Bel-Air + Will Steps Out + The Banks family buys the services of Susan Powter (guest starring as herself) for Uncle Philip (James Avery). + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + Thanksgiving + + + TVPG + + + + The Fresh Prince of Bel-Air + Same Game, Next Season + Will (Will Smith) gets more than he bargained for when Lisa's dad (John Amos) makes him his new best friend. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVG + + + + The Fresh Prince of Bel-Air + Three's a Crowd + Lisa (Nia Long) comes between Will and Carlton (Will Smith, Alfonso Ribeiro) when they take their annual male-bonding ski trip. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVG + + + + The Fresh Prince of Bel-Air + It's a Wonderful Lie + After lying about their plans, Will and Lisa wind up at the same party. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVG + + + + Sister, Sister + The Birthday + Ray and Lisa (Tim Reid, Jackee Harry) accompany Tia and Tamera (Tia and Tamera Mowry) on a birthday trip to Chicago. + + Tim Reid + Jackée Harry + Tamera Mowry + + Sitcom + + + TVG + + + + Sister, Sister + Love Strikes + Fearing separation if either of their parents remarry, the twins scheme to break up Ray's relationship. + + Tim Reid + Jackée Harry + Tamera Mowry + + Sitcom + + + TVG + + + + Sister, Sister + Wedding Bells & Box Boys + Danielle's (Leilani Jones) wedding is suddenly called off; Tia (Tia Mowry) is pleased when asked out by a supermarket box boy. + + Tamera Mowry + Tia Mowry + Jackée Harry + + Sitcom + + + TVG + + + + Sister, Sister + Mothers and Other Strangers + Lisa's mother comes to visit, and she thinks that Lisa and Ray are married. + + Tamera Mowry + Tia Mowry + Jackée Harry + + Sitcom + + + TVPG + + + + Sister, Sister + The Concert + Tia and Tamera (Tia and Tamera Mowry) are disappointed after meeting their idol; Lisa and Ray (Jackee Harry, Tim Reid) get friendly. + + Tia Mowry + Tamera Mowry + Jackée Harry + + Sitcom + + + TVPG + + + + Sister, Sister + Hair Today .. + Against Ray's (Tim Reid) protests, Lisa (Jackee Harry) takes the twins (Tia and Tamera Mowry) for make-overs. + + Tim Reid + Jackée Harry + Tamera Mowry + + Sitcom + + + TVPG + + + + Sister, Sister + Get a Job + The twins (Tia and Tamera Mowry) try to get part-time jobs; Lisa (Jackee Harry) helps Roger (Marques Houston) get earrings back from a girl at school. + + Tim Reid + Jackée Harry + Tamera Mowry + + Sitcom + + + TVPG + + + + Sister, Sister + Joey's Choice + Tia and Tamera (Tia and Tamera Mowry) are asked out by the same person (Merlin Santana); Ray (Tim Reid) loses Lisa's (Jackee Harry) cat. + + Tim Reid + Jackée Harry + Tamera Mowry + + Sitcom + + + TVG + + + + Jersey Shore + One Man Down + Vinny considers leaving the Shore; Snooki fights with Jionni. + Reality TV + Performing Arts + + + TV14 + + + + Jersey Shore + Dropping Like Flies + The roommates try to adjust to life without Vinny; Mike confronts his demons; Pauly celebrates his birthday. + Reality TV + Performing Arts + + + TV14 + + + + Jersey Shore + Free Vinny + Mike learns that Danny has threatened to get new roommates; the ladies hire strippers for Pauly and Mike's birthday party; the roommates try to kidnap Vinny. + Reality TV + Performing Arts + + + TV14 + + + + Jersey Shore + Nothing but Nice + Everyone celebrates Vinny's return; Mike tries to be nice; Snooki faces an uncomfortable condition. + Reality TV + Performing Arts + + + TV14 + + + + Jersey Shore + The Follow Game + Mike gathers information on a roommate; Roger will not return Jenni's calls. + Reality TV + Performing Arts + + + TV14 + + + + Jersey Shore + Love at the Jersey Shore + The roommates focus on their relationships; Roger takes issue with Jenni's outfit. + Reality TV + Performing Arts + + + TV14 + + + + Ink Master + Baby Got Back + 16 new artists find themselves giving tattoos in prison; the human canvases vote to eliminate one artist. + Arts & Entertainment + Game Shows + + + TV14 + + + + Ink Master + Thrills for Grills + The artists create gruesome tattoos of blood and guts; a betrayal leads to an explosive fight; guest judge Chris Johnson of the Tennessee Titans. + Arts & Entertainment + Game Shows + + + TV14 + + + + Ink Master + Fire and Lace + Skimpy lingerie heats up the flash challenge; a difficult human canvas leads to the most shocking elimination in show history. + Arts & Entertainment + Game Shows + + + TV14 + + + + Ink Master + Elysium Challenge + The canvases get crooked bar code tattoos when the artists assemble tattoo machines from scratch; the house turns on Joshua. + Arts & Entertainment + Game Shows + + + TV14 + + + + Ink Master + Baby Beat-Down + The artists ink over scars as they create. + Arts & Entertainment + Game Shows + + + TV14 + + + + Ink Master + Animal Instinct + Models and jungle animals get mixed together for a new challenge; Asian tattoos send the judges reeling. + Arts & Entertainment + Game Shows + + + TV14 + + + + Ink Master + Monumental Mistakes + Artists clash over the chance to work on Dave Navarro; allies become enemies and the destruction is permanent. + Arts & Entertainment + Game Shows + + + TV14 + + + + Ink Master + Baby Don't Go + The artists must tattoo each other; last season's artists return to get inked; Tatu Baby faces elimination. + Arts & Entertainment + Game Shows + + + TV14 + + + + Ink Master + Skulls and Villains + The artists engrave human skulls using their tattoo skills; the artists must make tattoos of DC Comics characters. + Arts & Entertainment + Game Shows + + + TV14 + + + + Ink Master + Eyes of the Beholder + The artists have a difficult time with eyelid tattoos; the Human Canvas Jury ends in tears; Joshua and Tatu Baby exchange words. + Arts & Entertainment + Game Shows + + + TV14 + + + + Ink Master + Heroes & Heads + The Artists honor military heroes; complex head tattoos; Oliver has a meltdown; the Judges are deadlocked. + Arts & Entertainment + Game Shows + + + TV14 + + + + Ink Master + Enduring the Pain + All four finalists tattoo the same canvas simultaneously in a marathon session to win a place in the final. + Arts & Entertainment + Game Shows + + + TV14 + + + + Ink Master + The Epic Finale + The final three artists battle it out on their toughest canvas yet; the second chance vote winner is revealed; the Ink Master is crowned. + Arts & Entertainment + Game Shows + + + TV14 + + + + The Challenge + Battle for a New Champion: Teamwork Makes The Perfect Work + After a wet and wild night in the arena, the contenders learn that they will have to play together as a team; relationships form as they move into the house. + Game Shows + Performing Arts + + + TV14 + + + + The Challenge + Battle for a New Champion: Two Lungs, One Heart, Can't Lose + The contenders go out on a limb, and some are left hanging as they continue to work together; with a house divided by nations, lines are beginning to be drawn; one contender hopes their allegiances will keep them safe. + Game Shows + Performing Arts + + + TV14 + + + + Fear Factor + Sister Act + Four teams of sisters confront their fears; mystery creatures in the dark; dumpster dive. + Game Shows + + + TVPG + + + + Fear Factor + Hell and High Water + Ludacris challenges four teams to compete in fear-filled challenges to win $50,000. + Game Shows + + + TVPG + + + + Fear Factor + Party From Hell + Ludacris is inviting four teams of party lovers to a party from Hell. + Game Shows + + + TVPG + + + + Fear Factor + Ice Is Thicker Than Water + Teams of siblings must conquer their fears of cockroaches, travel to the morgue, and survive being trapped under ice. + Game Shows + + + TVPG + + + + Ink Master + Crossing the Line + A massive twist shakes up the competition and a painstaking Flash Challenge puts relationships to the test. + Arts & Entertainment + Game Shows + + + TV14 + + + + Ink Master + Unnatural Disasters + A fiery veteran artist returns, taking the competition by storm; a difficult Flash Challenge exposes weaknesses in the shops. + Arts & Entertainment + Game Shows + + + TV14 + + + + Ink Master + Lend Me Your Ear + The competition gets even tougher when the artists are tested on technical application with individual tattoos; two veteran artists return. + Arts & Entertainment + Game Shows + + + TV14 + + + + Ink Master + War and Ink + Some shops lose their composure as they butt heads during a grueling elimination tattoo. + Arts & Entertainment + Game Shows + + + TV14 + + + + Ink Master + Get the Flock Outta Here + Shops crumble as the tension between teammates intensifies. + Arts & Entertainment + Game Shows + + + TV14 + + + + Ink Master + On the Bubble + One of the competition's most infamous veterans returns to shake up the game. + Arts & Entertainment + Game Shows + + + TV14 + + + + Ink Master + Masterpiece Mayhem + An emotional flash challenge brings the artists to tears; the Alliance becomes a target when a bulletproof pair of veterans return to battle it out for the title. + Arts & Entertainment + Game Shows + + + TV14 + + + + Ink Master + Pin-Up Panic Attack + The artists can't find any relief in a sculptural flash challenge; things get hairier during the elimination tattoo when the artists face the infamous Pin-Up challenge. + Arts & Entertainment + Game Shows + + + TV14 + + + + Ink Master + Drill Baby, Drill + The final veteran shop returns to fight for the first title of Master Shop; skull picks are key to the precision strike leveled at the opposing alliance. + Arts & Entertainment + Game Shows + + + TV14 + + + + Ink Master + Drill Baby, Drill + The final veteran shop returns to fight for the first title of Master Shop; skull picks are key to the precision strike leveled at the opposing alliance. + Arts & Entertainment + Game Shows + + + TV14 + + + + Ink Master + Grim Inker + With no flash challenge, the artists think they've got it all figured out until a massive twist sends them reeling; Four Horsemen tattoos bring on the end of days for one pair of artists. + Arts & Entertainment + Game Shows + + + TV14 + + + + Ink Master + Pit Fall + A painful elimination tattoo has the artists in the pits, and a massive twist sends them reeling. + Arts & Entertainment + Game Shows + + + TV14 + + + + Ink Master + Sell Out + The artists put the saying,. + Arts & Entertainment + Game Shows + + + TV14 + + + + Ink Master + Casting the First Stone + With the field down to only five shops, the fight for the first title of Master Shop intensifies; in a deity elimination, some shops aim for a high bar while one shop gets sent packing. + Arts & Entertainment + Game Shows + + + TV14 + + + + Ink Master + Marathon to the Finale + The top four shops battle it out in a tattoo marathon for the three spots in the live finale. + Arts & Entertainment + Game Shows + + + TV14 + + + + Ink Master + Shop Wars Finale + The final three shops battle it out for the first Master Shop title. + Arts & Entertainment + Game Shows + + + TV14 + + + + The Fresh Prince of Bel-Air + Bullets Over Bel-Air + Carlton (Alfonso Ribeiro) buys a gun when he and Will (Will Smith) are robbed at gunpoint. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVPG + + + + The Fresh Prince of Bel-Air + A Decent Proposal + After Lisa (Nia Long) expresses some reservations, Will (Will Smith) must work hard to persuade her to marry him. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVG + + + + The Fresh Prince of Bel-Air + Will Is From Mars .. + Will and Lisa (Will Smith, Nia Long) meet the bickering George and Louise Jefferson (Sherman Helmsley, Isabel Sanford) when they attend couples' counseling. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVPG + + + + The Fresh Prince of Bel-Air + The Wedding Show (Psyche!) + Will and Lisa (Will Smith, Nia Long) decide to elope in Las Vegas when Uncle Phil and Lisa's father (James Avery, John Amos) bicker. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVG + + + + The Jamie Foxx Show + The Ugly Truth + Jamie is incredulous when he loses some of his luster as a jingle writer to a good-looking new employee. + + Jamie Foxx + Garrett Morris + Ellia English + + Sitcom + + + TVPG + + + + The Jamie Foxx Show + Homie, Lover, Friend + Jamie (Jamie Foxx) is alarmed when Fancy's (Garcelle Beauvais) old boyfriend (guest star Thomas Mikal Ford) puts the moves on her. + + Jamie Foxx + Garrett Morris + Ellia English + + Sitcom + + + TVPG + + + + The Jamie Foxx Show + Give Me Some Credit + Jamie (Jamie Foxx) must prove his love for Fancy (Garcelle Beauvais) when her well-to-do parents (guest stars Billy Davis Jr. and Marilyn McCoo) come to town. + + Jamie Foxx + Garrett Morris + Ellia English + + Sitcom + + + TVPG + + + + The Jamie Foxx Show + Liar, Liar, Pants on Fire + Jamie is afraid of Fancy's reaction when he secretly woos the company's top client, a beautiful young woman. + + Jamie Foxx + Garrett Morris + Ellia English + + Sitcom + + + TVPG + + + + Sister, Sister + A Tall Tale + Tia and Tamera contemplate how to handle their immature dates, while Roger struggles with a tall dance partner. + + Tim Reid + Jackée Harry + Tamera Mowry-Housley + + Sitcom + + + TVPG + + + + Sister, Sister + It's a Love Thang + Tamera (Tamera Mowry) seeks Tia's (Tia Mowry) help when she meets a stranger on the bus. With Tim Reid and Jackee Harry. + + Tia Mowry + Tamera Mowry-Housley + Jackée Harry + + Sitcom + + + TVPG + + + + Sister, Sister + Free Billy + The twins take pity on a mistreated pig; Lisa vows to make peace with the people to whom she has been mean. + + Tim Reid + Jackée Harry + Tamera Mowry-Housley + + Sitcom + + + TVG + + + + Sister, Sister + Operation: Deja View + While being treated in the hospital where they were born, Tia and Tamera search for their birth records. + + Tia Mowry + Tamera Mowry-Housley + Jackée Harry + + Sitcom + + + TVG + + + + Jersey Shore + Sharp Objects + The cast members avoid a shark attack; Jenni confronts Pauly's stalker; Snooki sets her sights on Vinny. + Reality TV + Performing Arts + + + TV14 + + + + Jersey Shore + The Truth Will Set You Free + Mike decides to reveal the truth; Pauly, Vinny and Deena struggle to be single roommates. + Reality TV + Performing Arts + + + TV14 + + + + Jersey Shore + One Meatball Stands Alone + Mike tells Jionni that he hooked up with Snooki; Deena faces a hard truth; Vinny and Pauly pull a prank while the roommates are camping. + Reality TV + Performing Arts + + + TV14 + + + + Jersey Shore + We Are Family + Mike starts a rumor about Deena's sister; Pauly and Vinny prank the house; a storm hits the Shore. + Reality TV + Performing Arts + + + TV14 + + + + Jersey Shore + Once More Unto the Beach + The gang returns to the shore for the last time; Mike shares about his recovery; Snooki deals with being pregnant in a party house. + Reality TV + Performing Arts + + + TV14 + + + + Jersey Shore + No Shame, Good Integrity + The roommates settle in; Deena struggles with her long-distance relationship; Snooki makes an announcement. + Reality TV + Performing Arts + + + TV14 + + + + Jersey Shore + Toxic Shots Syndrome + Snooki moves out; Deena struggles with her friend gone; Mike deals with the downside of recovery. + Reality TV + Performing Arts + + + TV14 + + + + Jersey Shore + Blues, Balls & Brawls + Jenni plans a surprise party for Roger; Deena auditions Danny to be a meatball; the roommates are involved in a brawl at the club. + Reality TV + Performing Arts + + + TV14 + + + + Jersey Shore + Merp Walk + Jenni learns the full extent of her injury; Mike considers taking things to the next level; Deena holds Meatball auditions. + Reality TV + Performing Arts + + + TV14 + + + + Jersey Shore + Let's Make It Official + Jenni wonders where she stands with Roger; Mike is ready to take his relationship to the next level until he gets a dose of reality. + Reality TV + Performing Arts + + + TV14 + + + + The Expendables + A mercenary (Sylvester Stallone) and his men learn that their assignment to overthrow a South American dictator is a suicide mission. + + Sylvester Stallone + Jason Statham + Jet Li + + 2010 + Movies + Action + + + TVPG + + + 2 + + + + The Expendables 2 + Mercenary Barney Ross (Sylvester Stallone) and his team cut a swath of destruction through opposing forces as they take revenge for the vicious murder of a comrade. + + Sylvester Stallone + Jason Statham + Jet Li + + 2012 + Movies + Action + + + TVPG + + + 2 + + + + The Expendables 3 + After a former associate makes it his mission to end the Expendables, Barney Ross (Sylvester Stallone) assembles a team of younger, tech-savvy recruits to help take down their enemy. + + Sylvester Stallone + Jason Statham + Antonio Banderas + + 2014 + Movies + Action + + + TVPG + + + 2 + + + + The Expendables 3 + After a former associate makes it his mission to end the Expendables, Barney Ross (Sylvester Stallone) assembles a team of younger, tech-savvy recruits to help take down their enemy. + + Sylvester Stallone + Jason Statham + Antonio Banderas + + 2014 + Movies + Action + + + TVPG + + + 2 + + + + The Fresh Prince of Bel-Air + Slum Like It ... Not! + Uncle Phil (James Avery) takes a tip from Will (Will Smith) and buys an apartment building without seeing it. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVG + + + + The Fresh Prince of Bel-Air + As the Will Turns + The lead actress (guest star Leann Hunley) in a soap opera demands that Will (Will Smith) be hired for the leading male role. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVPG + + + + The Fresh Prince of Bel-Air + Save the Last Trance for Me + Nicky's chance of acceptance into a private school is jeopardized when Will escorts him to the interview. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVPG + + + + The Fresh Prince of Bel-Air + To Thine Own Self Be Blue ... And Gold + Will (Will Smith) is placed in an ethical dilemma by Uncle Phil's friend (guest star Charlie Robinson). With James Avery. + + Will Smith + James Avery + Karyn Parsons + + Sitcom + + + TVPG + + + + The Jamie Foxx Show + Joy Ride + Jamie (Jamie Foxx) accepts delivery of Fancy's (Garcelle Beauvais) new BMW convertible and takes it out for a spin with his friends (guest stars Alex Thomas, Chris Spencer, Vibe and Suli McCullough). Traci Bingham also guest stars. + + Jamie Foxx + Garrett Morris + Ellia English + + Sitcom + + + TVPG + + + + The Jamie Foxx Show + Get Up, Stand Up + Jamie (Jamie Foxx) encourages Fancy (Garcelle Beauvais) to stand up for herself when she is pressured into throwing a bridal shower. + + Jamie Foxx + Garrett Morris + Ellia English + + Sitcom + + + TVPG + + + + The Jamie Foxx Show + Super Ego + Jamie challenges NFL players Lawrence Taylor, Charles Woodson and other pros to a game of flag football. + + Jamie Foxx + Garrett Morris + Ellia English + + Sitcom + + + TVPG + + + + The Jamie Foxx Show + Family Business + Jamie bills Junior and Helen for services rendered after writing a jingle for a King's Tower TV commercial. + + Jamie Foxx + Garrett Morris + Ellia English + + Sitcom + + + TVPG + + + + Sister, Sister + Tattoo + Tia and her boyfriend get tattoos, much to Lisa's dismay; Tamera goes out with her dad. Starring Tia and Tamera Mowry, Tim Reid and Jackee Harry. + Sitcom + + + TVPG + + + + Sister, Sister + Two for the Road + When Tia and Tamera get driving permits, Ray and Lisa decide to teach each other's daughters to drive. + + Tim Reid + Jackée Harry + Tamera Mowry-Housley + + Sitcom + + + TVPG + + + + Sister, Sister + It's a Party Thang + When guests for Tia and Tamera's (Tia and Tamera Mowry) party are late, Lisa, Ray and Roger (Jackee Harry, Tim Reid, Marques Houston) round up some replacements. + Sitcom + + + TVPG + + + + Sister, Sister + Field Trip + Tia and Tamera (Tia and Tamera Mowry) disappoint their favorite teacher (Phill Lewis), and Roger (Marques Houston) becomes irresistible to women. + + Tia Mowry + Tamera Mowry-Housley + Jackée Harry + + Sitcom + + + TVG + + + + Teen Mom 2 + Just Say Yes + Ashley gives Bar an answer, but past family drama may dampen their dream; a stressful move threatens to sour Jade's fresh start; Luis asks to see Stella for the first time in months. + Reality TV + + + TV14 + + + + Teen Mom 2 + Level Up + After a covid exposure at the girls' school, Leah has to make some difficult decisions; Devoin lets Nova down and Briana must pick up the pieces; Jade wants to take things slow with Sean; Ashley hopes Bar can finish his GED. + Reality TV + + + TV14 + + + + Teen Mom 2 + Not Quite + Sean proposes, but Jade's not sure how to respond; Leah is forced into quarantine when Jeremy tests positive for COVID; Ashley plans a surprise party for Bar; Briana introduces her man to the cameras; Kail helps Isaac find his passion. + Reality TV + + + TV14 + + + + Teen Mom 2 + Full Circle + Kail invites Devoin on her podcast; Jade decides to get plastic surgery in Miami, so Briana visits to coach her through her anxiety; Bar goes to court for his outstanding DUI charges; Leah's twins turn 11. + Reality TV + + + TV14 + + + + Teen Mom 2 + MIA + Jade gets plastic surgery but her recovery turns dangerous, and Briana tries to help her as the situation escalates; Ashley juggles even more when she finds out she has to suddenly move; Leah gets news that will help Ali. + Reality TV + + + TV14 + + + + Teen Mom 2 + Mutual Combat + Jade's recovery gets even rockier when tensions rise between Sean and her parents; Ashley and Bar make a tough wedding decision as he faces another court date; Leah plans a birthday party for Addie, hoping Jeremy can make it. + Reality TV + + + TV14 + + + + Teen Mom 2 + Bonded for Life + Jade plans to fly home, but Briana attempts to convince her to return to Orlando with her instead; Kail reveals heartbreaking challenges around a recent medical diagnosis. + Reality TV + + + TV14 + + + + The Expendables + A mercenary (Sylvester Stallone) and his men learn that their assignment to overthrow a South American dictator is a suicide mission. + + Sylvester Stallone + Jason Statham + Jet Li + + 2010 + Movies + Action + + + TVPG + + + 2 + + + + The Expendables 2 + Mercenary Barney Ross (Sylvester Stallone) and his team cut a swath of destruction through opposing forces as they take revenge for the vicious murder of a comrade. + + Sylvester Stallone + Jason Statham + Jet Li + + 2012 + Movies + Action + + + TVPG + + + 2 + + + + Yo! Hip Hop Mix + Old school rap videos. + Music + + + TVPG + + + + 90s Nation + Music from the '90s spans genres including grunge and hip hop. + Music + + + TVPG + + + + 90s Nation + Music from the '90s spans genres including grunge and hip hop. + Music + + + TVPG + + + + 90s Nation + Music from the '90s spans genres including grunge and hip hop. + Music + + + TVPG + + + + 90s Nation + Music from the '90s spans genres including grunge and hip hop. + Music + + + TVPG + + + + 90s Nation + Music from the '90s spans genres including grunge and hip hop. + Music + + + TVPG + + + + 90s Nation + Music from the '90s spans genres including grunge and hip hop. + Music + + + TVPG + + + + I Want My 80s + Music videos from the decade. + Music + + + TVPG + + + + I Want My 80s + Music videos from the decade. + Music + + + TVPG + + + + I Want My 80s + Music videos from the decade. + Music + + + TVPG + + + + I Want My 80s + Music videos from the decade. + Music + + + TVPG + + + + I Want My 80s + Music videos from the decade. + Music + + + TVPG + + + + I Want My 80s + Music videos from the decade. + Music + + + TVPG + + + + I Want My 80s + Music videos from the decade. + Music + + + TVPG + + + + Classic Videos + Music videos. + Music + + + TVPG + + + + Classic Videos + Music videos. + Music + + + TVPG + + + + I Want My 80s + Music videos from the decade. + Music + + + TVPG + + + + I Want My 80s + Music videos from the decade. + Music + + + TVPG + + + + I Want My 80s + Music videos from the decade. + Music + + + TVPG + + + + I Want My 80s + Music videos from the decade. + Music + + + TVPG + + + + I Want My 80s + Music videos from the decade. + Music + + + TVPG + + + + House of Pop + Pop music videos from the '80s through the early '00s. + Music + + + TVPG + + + + House of Pop + Pop music videos from the '80s through the early '00s. + Music + + + TVPG + + + + House of Pop + Pop music videos from the '80s through the early '00s. + Music + + + TVPG + + + + House of Pop + Pop music videos from the '80s through the early '00s. + Music + + + TVPG + + + + House of Pop + Pop music videos from the '80s through the early '00s. + Music + + + TVPG + + + + Rock Block + A mix of rock videos. + Music + + + TVPG + + + + Rock Block + A mix of rock videos. + Music + + + TVPG + + + + Rock Block + A mix of rock videos. + Music + + + TVPG + + + + Rock Block + A mix of rock videos. + Music + + + TVPG + + + + Rock Block + A mix of rock videos. + Music + + + TVPG + + + + Rock Block + A mix of rock videos. + Music + + + TVPG + + + + 120 Minutes + Showcasing the newest, most innovative acts in alternative rock, leftfield and electronic music. + Music + + + TVPG + + + + 120 Minutes + Showcasing the newest, most innovative acts in alternative rock, leftfield and electronic music. + Music + + + TVPG + + + + 90s Nation + Music from the '90s spans genres including grunge and hip hop. + Music + + + TVPG + + + + 90s Nation + Music from the '90s spans genres including grunge and hip hop. + Music + + + TVPG + + + + 90s Nation + Music from the '90s spans genres including grunge and hip hop. + Music + + + TVPG + + + + 90s Nation + Music from the '90s spans genres including grunge and hip hop. + Music + + + TVPG + + + + Classic Videos + Music videos. + Music + + + TVPG + + + + Classic Videos + Music videos. + Music + + + TVPG + + + + House of Pop + Pop music videos from the '80s through the early '00s. + Music + + + TVPG + + + + House of Pop + Pop music videos from the '80s through the early '00s. + Music + + + TVPG + + + + House of Pop + Pop music videos from the '80s through the early '00s. + Music + + + TVPG + + + + House of Pop + Pop music videos from the '80s through the early '00s. + Music + + + TVPG + + + + House of Pop + Pop music videos from the '80s through the early '00s. + Music + + + TVPG + + + + I Want My 80s + Music videos from the decade. + Music + + + TVPG + + + + I Want My 80s + Music videos from the decade. + Music + + + TVPG + + + + I Want My 80s + Music videos from the decade. + Music + + + TVPG + + + + I Want My 80s + Music videos from the decade. + Music + + + TVPG + + + + 90s Nation + Music from the '90s spans genres including grunge and hip hop. + Music + + + TVPG + + + + 90s Nation + Music from the '90s spans genres including grunge and hip hop. + Music + + + TVPG + + + + 90s Nation + Music from the '90s spans genres including grunge and hip hop. + Music + + + TVPG + + + + 90s Nation + Music from the '90s spans genres including grunge and hip hop. + Music + + + TVPG + + + + House of Pop + Pop music videos from the '80s through the early '00s. + Music + + + TVPG + + + + House of Pop + Pop music videos from the '80s through the early '00s. + Music + + + TVPG + + + + House of Pop + Pop music videos from the '80s through the early '00s. + Music + + + TVPG + + + + House of Pop + Pop music videos from the '80s through the early '00s. + Music + + + TVPG + + + + Classic Videos + Music videos. + Music + + + TVPG + + + + Classic Videos + Music videos. + Music + + + TVPG + + + + Classic Videos + Music videos. + Music + + + TVPG + + + + Classic Videos + Music videos. + Music + + + TVPG + + + + Classic Videos + Music videos. + Music + + + TVPG + + + + Classic Videos + Music videos. + Music + + + TVPG + + + + Classic Videos + Music videos. + Music + + + TVPG + + + + I Want My 80s + Music videos from the decade. + Music + + + TVPG + + + + I Want My 80s + Music videos from the decade. + Music + + + TVPG + + + + I Want My 80s + Music videos from the decade. + Music + + + TVPG + + + + I Want My 80s + Music videos from the decade. + Music + + + TVPG + + + + I Want My 80s + Music videos from the decade. + Music + + + TVPG + + + + Rock Block + A mix of rock videos. + Music + + + TVPG + + + + Rock Block + A mix of rock videos. + Music + + + TVPG + + + + Rock Block + A mix of rock videos. + Music + + + TVPG + + + + Rock Block + A mix of rock videos. + Music + + + TVPG + + + + Total Request Playlist + The most requested videos from the new Millennium. + Music + + + TVPG + + + + Total Request Playlist + The most requested videos from the new Millennium. + Music + + + TVPG + + + + Total Request Playlist + The most requested videos from the new Millennium. + Music + + + TVPG + + + + Total Request Playlist + The most requested videos from the new Millennium. + Music + + + TVPG + + + + Yo! Hip Hop Mix + Old school rap videos. + Music + + + TVPG + + + + Yo! Hip Hop Mix + Old school rap videos. + Music + + + TVPG + + + + Yo! Hip Hop Mix + Old school rap videos. + Music + + + TVPG + + + + Yo! Hip Hop Mix + Old school rap videos. + Music + + + TVPG + + + + Classic Videos + Music videos. + Music + + + TVPG + + + + Classic Videos + Music videos. + Music + + + TVPG + + + + Classic Videos + Music videos. + Music + + + TVPG + + + + Classic Videos + Music videos. + Music + + + TVPG + + + + Classic Videos + Music videos. + Music + + + TVPG + + + + Classic Videos + Music videos. + Music + + + TVPG + + + + Classic Videos + Music videos. + Music + + + TVPG + + + + 90s Nation + Music from the '90s spans genres including grunge and hip hop. + Music + + + TVPG + + + + 90s Nation + Music from the '90s spans genres including grunge and hip hop. + Music + + + TVPG + + + + 90s Nation + Music from the '90s spans genres including grunge and hip hop. + Music + + + TVPG + + + + 90s Nation + Music from the '90s spans genres including grunge and hip hop. + Music + + + TVPG + + + + 90s Nation + Music from the '90s spans genres including grunge and hip hop. + Music + + + TVPG + + + + Yo! Hip Hop Mix + Old school rap videos. + Music + + + TVPG + + + + Yo! Hip Hop Mix + Old school rap videos. + Music + + + TVPG + + + + Yo! Hip Hop Mix + Old school rap videos. + Music + + + TVPG + + + + Hot Right Now! + The very hottest music videos in the world right now, alongside some scorching live performances. + Music + Performing Arts + + + + Rock.Alt.Indie + Specials + Performing Arts + + + TV14 + + + + Jason Derulo: I Want My MTV + Specials + Music + + + + Craig David: I Want My MTV + Craig David comes in to MTV HQ to talk about what made him into a success. + Specials + Music + + + + HD Hits + Big hits that are bigger in high def. + Specials + Performing Arts + + + + Eat, Sleep, Dance, Repeat! + Specials + Music + + + TVMA + + + + MTV Rewind + 2015 + The tracks that were stealing hearts and ruling charts in 2015. + Music + + + + Taylor Swift x Ariana Grande x Lady Gaga + Back to back hits from three artists. + Specials + Music + + + + Hot Right Now! + The very hottest music videos in the world right now, alongside some scorching live performances. + Music + Performing Arts + + + + Global Beats + Highlights of The Festival of World Cultures 2004. + Specials + Performing Arts + + + + Gonzo with Jack Saunders + Performing Arts + Music + + + + Rock.Alt.Indie + Specials + Performing Arts + + + TV14 + + + + MTV Unplugged: Bastille + Showcasing the work of today's top artist and introduces the stars of tomorrow. + Specials + Performing Arts + + + + MTV Unplugged: Twenty One Pilots + Twenty One Pilots take the stage to perform stripped-back versions of some of their biggest and most beloved songs. + Specials + Music + + + + The Show: All About K-Pop + K-Pop music videos. + Music + + + + MTV Rewind + 2015 + The tracks that were stealing hearts and ruling charts in 2015. + Music + + + + MTV's Top 50 Collaborations + Specials + Music + + + + Mabel: I Want My MTV + Mabel is in MTV HQ to talk about the music videos that have made her into the successful artist she is today. + Specials + Music + + + + I Want My MTV: Tate McRae + Tate McRae talks about the music videos that have made her into a successful artist; a look at what the first video she ever saw on MTV was and her biggest inspiration. + Specials + Performing Arts + + + + Tom Grennan: I Want My MTV + Tom Grennan goes to MTV HQ to talk about the music videos that have made him into the successful artist he is today. + Specials + Music + + + + Anne-Marie: I Want My MTV + Anne-Marie comes in to talk about the music videos that have made her into the successful artist she is today, about the first video she ever saw on MTV and who her biggest inspiration is. + Specials + Music + + + + HD Hits + Big hits that are bigger in high def. + Specials + Performing Arts + + + + MTV Rewind + 2015 + The tracks that were stealing hearts and ruling charts in 2015. + Music + + + + Taylor Swift x Ariana Grande x Lady Gaga + Back to back hits from three artists. + Specials + Music + + + + Hot Right Now! + The very hottest music videos in the world right now, alongside some scorching live performances. + Music + Performing Arts + + + + Rock.Alt.Indie + Specials + Performing Arts + + + TV14 + + + + MTV Unplugged: Bastille + Showcasing the work of today's top artist and introduces the stars of tomorrow. + Specials + Performing Arts + + + + MTV Unplugged: Twenty One Pilots + Twenty One Pilots take the stage to perform stripped-back versions of some of their biggest and most beloved songs. + Specials + Music + + + + HD Hits + Big hits that are bigger in high def. + Specials + Performing Arts + + + + Global Beats + Highlights of The Festival of World Cultures 2004. + Specials + Performing Arts + + + + MTV Rewind + 2016 + Tracks that stole hearts and ruled charts in 2016. + Music + + + + This Is The 10s: Top 20 Boys + Featuring hot hits of the 2010s from the boys. + Specials + Music + + + + Hot Right Now! + The very hottest music videos in the world right now, alongside some scorching live performances. + Music + Performing Arts + + + + Global Beats + Highlights of The Festival of World Cultures 2004. + Specials + Performing Arts + + + + Rock.Alt.Indie + Specials + Performing Arts + + + TV14 + + + + The Show: All About K-Pop + K-Pop music videos. + Music + + + + HD Hits + Big hits that are bigger in high def. + Specials + Performing Arts + + + + MTV Rewind + 2016 + Tracks that stole hearts and ruled charts in 2016. + Music + + + + This Is The 10s: Top 20 Boys + Featuring hot hits of the 2010s from the boys. + Specials + Music + + + + Hot Right Now! + The very hottest music videos in the world right now, alongside some scorching live performances. + Music + Performing Arts + + + + Global Beats + Highlights of The Festival of World Cultures 2004. + Specials + Performing Arts + + + + Rock.Alt.Indie + Specials + Performing Arts + + + TV14 + + + + MTV Push Presents: Olivia Rodrigo + In between scoring number one hits and smashing global streaming records, this year's biggest breakthrough artist, Olivia Rodrigo, chats to MTV about her rise to pop superstardom. + Specials + Music + + + + MTV Push Presents: Renee Rap + Specials + Music + + + TVG + + + + I Want My MTV: Tate McRae + Tate McRae talks about the music videos that have made her into a successful artist; a look at what the first video she ever saw on MTV was and her biggest inspiration. + Specials + Performing Arts + + + + Anne-Marie: I Want My MTV + Anne-Marie comes in to talk about the music videos that have made her into the successful artist she is today, about the first video she ever saw on MTV and who her biggest inspiration is. + Specials + Music + + + + HD Hits + Big hits that are bigger in high def. + Specials + Performing Arts + + + + MTV Rewind + 2016 + Tracks that stole hearts and ruled charts in 2016. + Music + + + + This Is The 10s: Top 20 Boys + Featuring hot hits of the 2010s from the boys. + Specials + Music + + + + Hot Right Now! + The very hottest music videos in the world right now, alongside some scorching live performances. + Music + Performing Arts + + + + Rock.Alt.Indie + Specials + Performing Arts + + + TV14 + + + + MTV World Stage + Mtv Evolutions 2016 Highlights + Catch all the highlights from this year's World Stage: Manila. + + Apl.de.Ap + Stacy Ferguson + Taboo + + Music + Performing Arts + + + TVPG + + + + MTV World Stage: EMA 2022.. + Specials + + + + HD Hits + Big hits that are bigger in high def. + Specials + Performing Arts + + + + Global Beats + Highlights of The Festival of World Cultures 2004. + Specials + Performing Arts + + + + MTV Rewind + 2017 + Tracks that were stealing hearts and ruling the charts in 2017. + Music + + + + Eminem x Katy Perry x Beyonce + Back to back hits from three hot artists. + Specials + Music + + + + Hot Right Now! + The very hottest music videos in the world right now, alongside some scorching live performances. + Music + Performing Arts + + + + Eat, Sleep, Dance, Repeat! + Specials + Music + + + TVMA + + + + Rock.Alt.Indie + Specials + Performing Arts + + + TV14 + + + + World Stage + Bebe Rexha + A trip around the world that showcases exclusive gigs by the best artists on stage at unique concert locations. + + Bebe Rexha + + Music + Performing Arts + + + TVPG + + + + World Stage + Isle Of Mtv 2017 Highlights + Highlights from Isle of MTV 2017, recorded live at Il Fosos Square, Malta, featuring performances from Raye, Jonas Blue, DNCE and a DJ set from Chainsmokers. + + Apl.de.Ap + Stacy Ferguson + Taboo + + Music + Performing Arts + + + TVPG + + + + HD Hits + Big hits that are bigger in high def. + Specials + Performing Arts + + + + MTV Rewind + 2017 + Tracks that were stealing hearts and ruling the charts in 2017. + Music + + + + Eminem x Katy Perry x Beyonce + Back to back hits from three hot artists. + Specials + Music + + + + Hot Right Now! + The very hottest music videos in the world right now, alongside some scorching live performances. + Music + Performing Arts + + + + Eat, Sleep, Dance, Repeat! + Specials + Music + + + TVMA + + + + Gonzo with Jack Saunders + Performing Arts + Music + + + + Rock.Alt.Indie + Specials + Performing Arts + + + TV14 + + + + The Show: All About K-Pop + K-Pop music videos. + Music + + + + HD Hits + Big hits that are bigger in high def. + Specials + Performing Arts + + + + MTV's Top 50 Festival Headliners + Specials + Music + + + + World Stage + Bebe Rexha + A trip around the world that showcases exclusive gigs by the best artists on stage at unique concert locations. + + Bebe Rexha + + Music + Performing Arts + + + TVPG + + + + World Stage + Isle Of Mtv 2017 Highlights + Highlights from Isle of MTV 2017, recorded live at Il Fosos Square, Malta, featuring performances from Raye, Jonas Blue, DNCE and a DJ set from Chainsmokers. + + Apl.de.Ap + Stacy Ferguson + Taboo + + Music + Performing Arts + + + TVPG + + + + HD Hits + Big hits that are bigger in high def. + Specials + Performing Arts + + + + Eat, Sleep, Dance, Repeat! + Specials + Music + + + TVMA + + + + MTV Rewind: 2018 + Stepping into the MTV Time Machine and traveling back to 2018 to check out what tracks were stealing hearts and ruling the charts. + Specials + Music + + + + MTV Top 20 + In this hosted thematic countdown MTV counts down the best music of all times. + Specials + Music + + + + Hot Right Now! + The very hottest music videos in the world right now, alongside some scorching live performances. + Music + Performing Arts + + + + Global Beats + Highlights of The Festival of World Cultures 2004. + Specials + Performing Arts + + + + Rock.Alt.Indie + Specials + Performing Arts + + + TV14 + + + + MTV Push Presents: Olivia Rodrigo + In between scoring number one hits and smashing global streaming records, this year's biggest breakthrough artist, Olivia Rodrigo, chats to MTV about her rise to pop superstardom. + Specials + Music + + + + MTV Push Presents: Renee Rap + Specials + Music + + + TVG + + + + I Want My MTV: Tate McRae + Tate McRae talks about the music videos that have made her into a successful artist; a look at what the first video she ever saw on MTV was and her biggest inspiration. + Specials + Performing Arts + + + + Anne-Marie: I Want My MTV + Anne-Marie comes in to talk about the music videos that have made her into the successful artist she is today, about the first video she ever saw on MTV and who her biggest inspiration is. + Specials + Music + + + + HD Hits + Big hits that are bigger in high def. + Specials + Performing Arts + + + + MTV Rewind: 2018 + Stepping into the MTV Time Machine and traveling back to 2018 to check out what tracks were stealing hearts and ruling the charts. + Specials + Music + + + + MTV Top 20 + In this hosted thematic countdown MTV counts down the best music of all times. + Specials + Music + + + + Hot Right Now! + The very hottest music videos in the world right now, alongside some scorching live performances. + Music + Performing Arts + + + + Global Beats + Highlights of The Festival of World Cultures 2004. + Specials + Performing Arts + + + + Rock.Alt.Indie + Specials + Performing Arts + + + TV14 + + + + MTV World Stage + Mtv Evolutions 2016 Highlights + Catch all the highlights from this year's World Stage: Manila. + + Apl.de.Ap + Stacy Ferguson + Taboo + + Music + Performing Arts + + + TVPG + + + + MTV World Stage: EMA 2022.. + Specials + + + + HD Hits + Big hits that are bigger in high def. + Specials + Performing Arts + + + + MTV Rewind: 2018 + Stepping into the MTV Time Machine and traveling back to 2018 to check out what tracks were stealing hearts and ruling the charts. + Specials + Music + + + + MTV Top 20 + In this hosted thematic countdown MTV counts down the best music of all times. + Specials + Music + + + + Tropicalisimo + Videos de música latinoamericana en los géneros de merengue, bachata y salsa. + Music + + + + Fresh + Música fresca sin parar. Wisin y Yandel, Romeo, Kanye, Jennifer Lopez, Drake y mucho más. + Music + + + + 2 x 1 + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + La hora nacional + Un espacio dedicado a los amantes de la música alternativa latinoamericana, con videos musicales de nuevos talentos, sin dejar de lado a los veteranos de este género. + Music + + + + Fresh + Música fresca sin parar. Wisin y Yandel, Romeo, Kanye, Jennifer Lopez, Drake y mucho más. + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + 2 x 1 + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + Tropicalisimo + Videos de música latinoamericana en los géneros de merengue, bachata y salsa. + Music + + + + Fresh + Música fresca sin parar. Wisin y Yandel, Romeo, Kanye, Jennifer Lopez, Drake y mucho más. + Music + + + + 2 x 1 + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + ReMexa + La música regional mexicana. + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + 2 x 1 + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + Tropicalisimo + Videos de música latinoamericana en los géneros de merengue, bachata y salsa. + Music + + + + Fresh + Música fresca sin parar. Wisin y Yandel, Romeo, Kanye, Jennifer Lopez, Drake y mucho más. + Music + + + + 2 x 1 + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + Fresh + Música fresca sin parar. Wisin y Yandel, Romeo, Kanye, Jennifer Lopez, Drake y mucho más. + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + 2 x 1 + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + Tropicalisimo + Videos de música latinoamericana en los géneros de merengue, bachata y salsa. + Music + + + + Fresh + Música fresca sin parar. Wisin y Yandel, Romeo, Kanye, Jennifer Lopez, Drake y mucho más. + Music + + + + 2 x 1 + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + ReMexa + La música regional mexicana. + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + 2 x 1 + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + Tropicalisimo + Videos de música latinoamericana en los géneros de merengue, bachata y salsa. + Music + + + + Fresh + Música fresca sin parar. Wisin y Yandel, Romeo, Kanye, Jennifer Lopez, Drake y mucho más. + Music + + + + 2 x 1 + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + ReMexa + La música regional mexicana. + Music + + + + Fresh + Música fresca sin parar. Wisin y Yandel, Romeo, Kanye, Jennifer Lopez, Drake y mucho más. + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + 2 x 1 + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + Tropicalisimo + Videos de música latinoamericana en los géneros de merengue, bachata y salsa. + Music + + + + Fresh + Música fresca sin parar. Wisin y Yandel, Romeo, Kanye, Jennifer Lopez, Drake y mucho más. + Music + + + + 2 x 1 + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + ReMexa + La música regional mexicana. + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + 2 x 1 + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + Tropicalisimo + Videos de música latinoamericana en los géneros de merengue, bachata y salsa. + Music + + + + Fresh + Música fresca sin parar. Wisin y Yandel, Romeo, Kanye, Jennifer Lopez, Drake y mucho más. + Music + + + + 2 x 1 + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + ReMexa + La música regional mexicana. + Music + + + + Fresh + Música fresca sin parar. Wisin y Yandel, Romeo, Kanye, Jennifer Lopez, Drake y mucho más. + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + 2 x 1 + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + Tropicalisimo + Videos de música latinoamericana en los géneros de merengue, bachata y salsa. + Music + + + + Fresh + Música fresca sin parar. Wisin y Yandel, Romeo, Kanye, Jennifer Lopez, Drake y mucho más. + Music + + + + 2 x 1 + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + ReMexa + La música regional mexicana. + Music + + + + Éxitos + Conteo regresivo que presenta los 13 momentos estelares en la carrera de los artistas más famosos. + Music + + + + Beautiful Homes & Great Estates + The Rivas Canyon Estate provides the ideal blend of serenity and luxury with its organic earthtones and high-quality finishes situated on almost two acres of lush landscaping in the Pacific Palisades. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + Travelling to Rotterdam in the Netherlands. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + Beautiful Homes & Great Estates + Located in the affluent neighborhood of Bel Air, the six-bedroom, 11-bath mansion is composed of three levels and an upper sundeck. + + + + Beautiful Homes & Great Estates + A 10,000 square foot contemporary home in Los Angeles is adorned with mesmerizing vistas. + + + + Beautiful Homes & Great Estates + An Andalusian-style mansion with jetliner views and impressive amenities. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + Venice, Italy. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + Beautiful Homes & Great Estates + The mansion showcases three levels for upscale family living; amenities include a wrap-around infinity pool, a wellness area, jade bar, and wine room. + + + + Beautiful Homes & Great Estates + A 30,000-square-foot estate originally designed in 1939 by renowned architect Paul R. Williams; the house is fitted with 17 bedrooms, 25 baths, a theater, a tennis court and a bath house. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + Great Getaways: Paris! + + + + Beautiful Homes & Great Estates + The Rivas Canyon Estate provides the ideal blend of serenity and luxury with its organic earthtones and high-quality finishes situated on almost two acres of lush landscaping in the Pacific Palisades. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + THE AMAZING TELIKIN ONE TOUCH, THE WORLD'S EASIEST COMPUTER! + A single touch takes you to Email, Web, Video Chat, Contracts, Photos, Games, and more in this sleek, simple and sophisticated computer. Say hello to TELIKIN! TELIKIN is an ALL IN ONE computer that is easy to set up and navigate. SPECIAL OFFER! + + + + Paid Programming + Paid programming. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + Beautiful Homes & Great Estates + The mansion features six bedrooms, 10 baths, an infinity pool, home theater, full-size bar, wine room and spa-like features. + + + + Beautiful Homes & Great Estates + The mansion showcases three levels for upscale family living; amenities include a wrap-around infinity pool, a wellness area, jade bar, and wine room. + + + + Beautiful Homes & Great Estates + A three-level modern design is anchored by a courtyard and a striking staircase; features seven bedrooms, a wellness center, a theater and an infinity pool. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + Great Getaways: Paris! + + + + Beautiful Homes & Great Estates + Malibu's Villa Esmeralda estate features coastal scenic views and meticulously curated architecture. + + + + Beautiful Homes & Great Estates + The contemporary residence showcases seven spacious bedrooms, 13 baths, a guest house, swimming pool and scenic skyline views. + + + + Beautiful Homes & Great Estates + The Rivas Canyon Estate provides the ideal blend of serenity and luxury with its organic earthtones and high-quality finishes situated on almost two acres of lush landscaping in the Pacific Palisades. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + Beautiful Homes & Great Estates + The mansion features six bedrooms, 10 baths, an infinity pool, home theater, full-size bar, wine room and spa-like features. + + + + Beautiful Homes & Great Estates + The mansion showcases three levels for upscale family living; amenities include a wrap-around infinity pool, a wellness area, jade bar, and wine room. + + + + Beautiful Homes & Great Estates + A three-level modern design is anchored by a courtyard and a striking staircase; features seven bedrooms, a wellness center, a theater and an infinity pool. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + Great Getaways: Paris! + + + + Beautiful Homes & Great Estates + Malibu's Villa Esmeralda estate features coastal scenic views and meticulously curated architecture. + + + + Beautiful Homes & Great Estates + The contemporary residence showcases seven spacious bedrooms, 13 baths, a guest house, swimming pool and scenic skyline views. + + + + Beautiful Homes & Great Estates + The Rivas Canyon Estate provides the ideal blend of serenity and luxury with its organic earthtones and high-quality finishes situated on almost two acres of lush landscaping in the Pacific Palisades. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + Beautiful Homes & Great Estates + The mansion features six bedrooms, 10 baths, an infinity pool, home theater, full-size bar, wine room and spa-like features. + + + + Beautiful Homes & Great Estates + The mansion showcases three levels for upscale family living; amenities include a wrap-around infinity pool, a wellness area, jade bar, and wine room. + + + + Beautiful Homes & Great Estates + A three-level modern design is anchored by a courtyard and a striking staircase; features seven bedrooms, a wellness center, a theater and an infinity pool. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + Great Getaways: Paris! + + + + Beautiful Homes & Great Estates + Malibu's Villa Esmeralda estate features coastal scenic views and meticulously curated architecture. + + + + Beautiful Homes & Great Estates + The contemporary residence showcases seven spacious bedrooms, 13 baths, a guest house, swimming pool and scenic skyline views. + + + + Beautiful Homes & Great Estates + The Rivas Canyon Estate provides the ideal blend of serenity and luxury with its organic earthtones and high-quality finishes situated on almost two acres of lush landscaping in the Pacific Palisades. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + CHRISTINA HALL and Jacuzzi® amazing bathroom makeovers + SPECIAL OFFER + Trusted brand Jacuzzi® and renowned interior designer, Christina Hall can help you transform your old bathroom into a gorgeous custom, safe and stylish space. Jacuzzi® has limited time special offers to make your dream bathroom happen today CALL NOW. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + Beautiful Homes & Great Estates + Owners, architects and decorators share their attractive homes. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + My Destination + The best in travel featuring fun, exciting and exotic must-see destinations around the world. + + + + Lakefront Bargain Hunt: Renovation + From LA to Lake Tuscaloosa + A couple hopes to escape their busy LA lives with a quiet vacation home along Lake Tuscaloosa; they find a property with great potential and are ready to take on the renovations, but it may prove to be more work than expected. + Home + + + TVG + + + + Lakefront Bargain Hunt: Renovation + A Homecoming on Blue Ridge Lake + When an expat returns to her Georgia hometown to find a lakeside retreat for her and her three young sons, a longtime friend joins her to help find the right property and spearhead the renovations needed to transform it into her perfect cabin. + Home + + + TVG + + + + Maine Cabin Masters + Mow the House Down + David and Bishop, owners of an uninhabitable cabin, ask Chase and the crew to get fun and funky with a new build with a roofline that faces the water, lots of windows to enjoy the view, and enough space to host their beloved gatherings. + Reality TV + Home + + + TVG + + + + Maine Cabin Masters + The Manchester Post Office + Converting the first post office ever built in Manchester, Maine, into an off-the-grid cabin. + Reality TV + Home + + + TVG + + + + Maine Cabin Masters + The Manchester Post Office + Converting the first post office ever built in Manchester, Maine, into an off-the-grid cabin. + Reality TV + Home + + + TVG + + + + Maine Cabin Masters + A Container Conversion + A family purchases land on Sebec Lake and acquires an old shipping container they hope the team can transform into a dream cabin; the crew is challenged by the metal walls as they tackle the build offsite before transporting it to its forever home. + Reality TV + Home + + + TVG + + + + Maine Cabin Masters + The Foster's Re-renovation + The team takes on a family's 1800s cabin that has a personal connection to Chase and Ashley; it was previously renovated by their dad, Eric; they follow his lead by refurbishing the landscape, adding a bathroom and making better use of the space. + Reality TV + Home + + + TVG + + + + Maine Cabin Masters + Updating at Lincolnville Lakeview + A family enlists Chase and the team to update their 30-year-old cabin, bunkhouse and boat house in Lincolnville, Maine; the team faces surprises around every corner as they race to finish the renovations in time for the family to enjoy the summer. + Reality TV + Home + + + TVG + + + + Maine Cabin Masters + A Container Conversion + A family purchases land on Sebec Lake and acquires an old shipping container they hope the team can transform into a dream cabin; the crew is challenged by the metal walls as they tackle the build offsite before transporting it to its forever home. + Reality TV + Home + + + TVG + + + + Maine Cabin Masters + The Foster's Re-renovation + The team takes on a family's 1800s cabin that has a personal connection to Chase and Ashley; it was previously renovated by their dad, Eric; they follow his lead by refurbishing the landscape, adding a bathroom and making better use of the space. + Reality TV + Home + + + TVG + + + + Lakefront Bargain Hunt: Renovation + Jackson Lake Remake + An Atlanta couple fight budget restraints as they seek the perfect vacation home for their blended family in Jackson Lake, Ga. + Home + + + TVG + + + + Maine Cabin Masters + Updating at Lincolnville Lakeview + A family enlists Chase and the team to update their 30-year-old cabin, bunkhouse and boat house in Lincolnville, Maine; the team faces surprises around every corner as they race to finish the renovations in time for the family to enjoy the summer. + Reality TV + Home + + + TVG + + + + Maine Cabin Masters + The Manchester Post Office + Converting the first post office ever built in Manchester, Maine, into an off-the-grid cabin. + Reality TV + Home + + + TVG + + + + Salvage Dawgs + Salvaging Items in Roanoke, Va, Into Repurposed Goods + Mike, Robert and Ted salvage a stock teletrade from a brokerage firm; the crew takes on a two-story barn in Granville, Ohio. + Reality TV + Home + + + TVG + + + + Salvage Dawgs + Ghent Row + The Black Dog Salvage crew tackles an entire city block of Victorian houses in Norfolk, VA. + Reality TV + Home + + + TVG + + + + Salvage Dawgs + Lakeside Marina + The crew travels to Smith Mountain Lake to salvage parts off a sinking boat; Mike builds a bar from wine barrels. + Reality TV + Home + + + TVG + + + + Salvage Dawgs + Bowman House + An early 1800s farmhouse in Mt. Jackson, Va. includes pocket doors, a primitive armoire, and heart pine flooring; making a bench from three chairs. + Reality TV + Home + + + TVG + + + + This Old House + Seaside Victorian Cottage: Back to Narragansett + The crew returns to the 1887 seaside Victorian cottage in Rhode Island as the interior walls are about to be closed. + Home + Instructional + + + TVG + + + + This Old House + Seaside Victorian Cottage: Upgrading Old School + Yankee gutters and corbels are installed; a lesson with the electrician's apprentice; tankless hot water system. + Home + Instructional + + + TVG + + + + First Time Fixer + Second Time's a Charm + Best friends seek help from Chip and Jo as they flip a rental in Utah. + Home + Instructional + + + TVG + + + + First Time Fixer + Hitched and Ready to Fix + Newlyweds transform a Southern California fixer into their dream home. + Home + Instructional + + + TVG + + + + First Time Fixer + Keep Calm and Do It Yourself + A couple has six months to transform a historic home in Columbus, Ga. + Home + Instructional + + + TVG + + + + First Time Fixer + Fixer Family Legacy + Chip and Joanna help a mom and her son tag team a fixer upper in Waco Texas. + Home + Instructional + + + TVG + + + + Fixer Upper + Fixer in Older Neighborhood + A couple tours the Western Hills neighborhood of Waco, Texas, in the search for a four-bedroom home with an open floor plan. + Reality TV + Home + + + TVG + + + + Fixer Upper + New Chapter for Family of Four + After looking at houses for months with no luck, Gayle and Tim Jackson need help to find a new place for their family of four that has four bedrooms and three bathrooms that, ideally, can be renovated within their budget. + Reality TV + Home + + + TVG + + + + Fixer Upper + A Home for Country Living + A couple wants to find a unique house with several acres of land, a big kitchen and space for entertaining. + Reality TV + Home + + + TVG + + + + Fixer Upper: Welcome Home + Minty Green Flipper Upper + Chip purchases a minty green house on a whim with plans to flip it, but the daunting look of the interior and unexpected damage inside the home turns out to be more work than he and Jo expected. + Reality TV + Home + + + TVG + + + + Ranch to Table + Seafood Paella + As Elizabeth's family is originally from Spain, she has a long felt connection to Spanish culture and food; one of her best friends is visiting the ranch, and to celebrate, Elizabeth cooks a Spanish-inspired dinner with paella and churros. + Food + + + TVG + + + + The Mountain Kitchen + Snack in a Sack + Annie Starke is bringing a delicious snack in a sack to the team building a chicken coop on her ranch. There's an incredible salad in a jar, mega loaded Italian sandwich, her grandma's shortbread cookies and sangria punch. + Food + + + TVG + + + + In the Kitchen With Abner and Amanda + Sunday Supper + Abner and Amanda show that feeding family on special occasions doesn't mean one has to stress; a chicken Marbella recipe with roasted feta fries and peach galette is a great way to impress loved ones without spending all day in the kitchen. + + Abner Ramirez + Amanda Sudano Ramirez + + Food + + + TVG + + + + In the Kitchen With Abner and Amanda + Egg Noddles With Carbonara + Abner and Amanda prepare fresh and elevated dishes featuring eggs. + + Abner Ramirez + Amanda Sudano Ramirez + + Food + + + TVG + + + + Fixer Upper + A Veteran Home Makeover + NFL players reach out to Chip and Joanna to help renovate the home for a veteran to make it more accessible for him. + Reality TV + Home + + + TVG + + + + Fixer Upper + The Floating Fixer Upper + Chip and Joanna's longtime friend Brett has a dream of living on a houseboat on Lake Waco, but his tight budget and space create plenty of design challenges. + Reality TV + Home + + + TVG + + + + Fixer Upper + Coastal Calm In The Country + After living in five homes in six years, a couple is ready to settle down in the Hewitt area of Texas. + Reality TV + Home + + + TVG + + + + Fixer Upper + Small Town Search for Space + A couple wants to find a home in the area of McGregor, Texas, and would like to find a house with four bedrooms and an open kitchen. + Reality TV + Home + + + TVG + + + + Fixer Upper + Family Seeks Spacious Upgrade + Bryce and Emily Sandvall want a new home for their family of five in the Woodway area that's not only right for their family but also has a traditional design style that they love. + Reality TV + Home + + + TVG + + + + Fixer Upper + Second Chance at a Country Home + Jordan and Rachel dream of moving to the country with their three children, and enlist the help of Chip and Joanna after their contract falls through on another property in hopes of a second chance at country living. + Reality TV + Home + + + TVG + + + + Fixer Upper + A Classic, Traditional Beauty + A couple move from Oregon to Waco, Texas, and enlist Chip and Jo to transform their bland, outdated home. + Reality TV + Home + + + TVG + + + + Fixer Upper + Big Budget for a Big House + A couple narrow down their search to three homes that would work for their family of five, and task Chip and Jo with determining which house has the most renovation potential for their budget. + Reality TV + Home + + + TVG + + + + Fixer Upper + The Dog-Loving Dream House + Andrew and Brittany are first-time buyers; they're looking for a home with plenty of space for their beloved pooches. + Reality TV + Home + + + TVG + + + + Fixer Upper + A Classic, Traditional Beauty + A couple move from Oregon to Waco, Texas, and enlist Chip and Jo to transform their bland, outdated home. + Reality TV + Home + + + TVG + + + + Fixer Upper + Big Budget for a Big House + A couple narrow down their search to three homes that would work for their family of five, and task Chip and Jo with determining which house has the most renovation potential for their budget. + Reality TV + Home + + + TVG + + + + Fixer Upper + A Dog-Loving Couple Searches for Their First Home + Andrew and Brittany are first-time buyers; they're looking for a home with plenty of space for their beloved pooches. + Reality TV + Home + + + TVG + + + + Fixer Upper + Second Chance at a Country Home + Jordan and Rachel dream of moving to the country with their three children, and enlist the help of Chip and Joanna after their contract falls through on another property in hopes of a second chance at country living. + Reality TV + Home + + + TVG + + + + Salvage Dawgs + USS Zuni/USCG Tamaroa + The crew salvage parts off a former navy ship, the USS Zuni/USCG Tamaroa; Mike builds a table from an airplane wing. + Reality TV + Home + + + TVG + + + + Salvage Dawgs + Smith Mountain Lake + Mike builds a four-post bed from wood salvaged from a cabin at Smith Mountain Lake; Mike and Ted install fire doors previously salvaged from the Washington Mill. + Reality TV + Home + + + TVG + + + + Salvage Dawgs + Salvaging Items From a High School Into Purposed Goods + The crew save parts from a 1917 high school up in Youngwood, Pa.; Mike builds a coffee table from horse tack. + Reality TV + Home + + + TVG + + + + Salvage Dawgs + Hill Crest Bed and Breakfast + The Black Dog Salvage crew extract a fireclay tub and window frame from a bed and breakfast; the crew picks through a large auto graveyard. + Reality TV + Home + + + TVG + + + + This Old House + Seaside Victorian Cottage: Outside Details + Cobblestone apron at the driveway; reinforcing old floor joists; hanging a drop finial on the exterior; installing a swinging window; choosing exterior colors. + Home + Instructional + + + TVG + + + + This Old House + Seaside Victorian Cottage: Design Elements + Ceiling-mounted speakers; starting up a new HVAC system; garage door side mounts; lowering the pool into place; design choices. + Home + Instructional + + + TVG + + + + Fixer Upper + Craving Country Climate + A biochemistry professor and his family want a home with many bedrooms and a lot of acreage that can accommodate a growing brood. + Reality TV + Home + + + TVG + + + + Fixer Upper + Newlyweds Seek First Home + A couple tours three houses in Waco, Texas, and although their wishlist is small, so is their budget. + Reality TV + Home + + + TVG + + + + Fixer Upper + Old World Charm for Newlyweds + Newlyweds want to find a first house with three bedrooms, a big kitchen, and a big backyard in the Mountainview area of Waco, Texas. + Reality TV + Home + + + TVG + + + + Fixer Upper + A Home for Hospitality + The grand opening of the silos arrives; Chip and Jo look for someone to run the new Magnolia Bed & Breakfast, and find a retirement-age couple who may be the perfect candidates for the job. + Reality TV + Home + + + TVG + + + + Fixer Upper + Old World Charm for Newlyweds + Newlyweds want to find a first house with three bedrooms, a big kitchen, and a big backyard in the Mountainview area of Waco, Texas. + Reality TV + Home + + + TVG + + + + Fixer Upper + Space to Thrive + Chip and Jo work their magic for a family with two recently adopted girls. + Reality TV + Home + + + TVG + + + + Fixer Upper + Historic Home for a New Family + Chip and Joanna take on a historical project for Courtney and Joey Scrivano, who are ready to upgrade from their modest loft to a house where they can raise their new baby; the 1927 Tudor home is outdated and lacks a true master suite. + Reality TV + Home + + + TVG + + + + Lakefront Bargain Hunt: Renovation + A Home Base in North Carolina + A military family known for frequently relocating is looking for a lakefront property to act as a constant to keep them grounded; their waterfront getaway will be a spot where the kids can grow up making memories out on the water. + Home + + + TVG + + + + Lakefront Bargain Hunt: Renovation + Next Up: Niagara + Jodi and Dave are used to spending their vacations traveling in their RV with their three children, but are now looking for a getaway close to their home in Buffalo, N.Y.; they find a property along Lake Ontario in Niagara County, but it needs work. + Home + + + TVG + + + + Lakefront Bargain Hunt: Renovation + Lakeside Lounging on Lake Gaston + Amber and Jon are looking for a getaway near their home in Raleigh, N.C., and Lake Gaston fits the bill. + Home + + + TVG + + + + Lakefront Bargain Hunt: Renovation + Wolf Lake Escape + New parents look to escape their busy New York City lives with a move to Wolf Lake, a small, rustic lake community in upstate New York; the properties they consider require significant renovations and may break the bank. + Home + + + TVG + + + + Maine Cabin Masters + Heirloom Home on the Shore + Builder Chase Morrill and his team tackle a family camp on the coast of the New Meadows River in West Bath, Maine; the third-generation owners have decided to add more appropriate living quarters for the large family reunions they host each year. + + Ashley Morrill + Ryan Eldridge + Matthew Dix + + Reality TV + Home + + + TVG + + + + Maine Cabin Masters + Rivalry at the Chadwick Cabin + The Chadwick family has purchased a cabin built in 1906 and need the Cabin Masters help for a remodel; with an eight-week deadline, the team must fix a rotting ceiling, update the interior and create a custom outdoor bar and fire pit. + Reality TV + Home + + + TVG + + + + Maine Cabin Masters + A Penobscot Nation Preservation + A Penobscot tribe member summons the team for needed upgrades to her cabin; they have to work fast to beat the start of moose hunting season and to honor the land and Penobscot culture. + Reality TV + Home + + + TVG + + + + Maine Cabin Masters + Family Ski Cabin + Grab your snowsuit and your favorite set of skis! The Maine Cabin Masters are heading to the hills to help a family that loves winter sports fulfill their dream of owning a slope-side abode at a ski resort. + Reality TV + Home + + + TVG + + + + Maine Cabin Masters + A Cabin With a Stream Running Through It + The Cabin Masters step in to rescue a family's camp that's sinking due to the stream running underneath it; with $60,000 and a tight timeline, the team must work quickly to winterize and lift the structure. + Reality TV + Home + + + TVG + + + + Maine Cabin Masters + A New Cabin Legacy + A family with a legacy of enjoying the lakes of Maine buys a 30-year-old gambrel garage with an efficiency apartment on the second floor. + Reality TV + Home + + + TVG + + + + Maine Cabin Masters + Family Ski Cabin + Grab your snowsuit and your favorite set of skis! The Maine Cabin Masters are heading to the hills to help a family that loves winter sports fulfill their dream of owning a slope-side abode at a ski resort. + Reality TV + Home + + + TVG + + + + Maine Cabin Masters + A Cabin With a Stream Running Through It + The Cabin Masters step in to rescue a family's camp that's sinking due to the stream running underneath it; with $60,000 and a tight timeline, the team must work quickly to winterize and lift the structure. + Reality TV + Home + + + TVG + + + + Maine Cabin Masters + A New Cabin Legacy + A family with a legacy of enjoying the lakes of Maine buys a 30-year-old gambrel garage with an efficiency apartment on the second floor. + Reality TV + Home + + + TVG + + + + Maine Cabin Masters + A Penobscot Nation Preservation + A Penobscot tribe member summons the team for needed upgrades to her cabin; they have to work fast to beat the start of moose hunting season and to honor the land and Penobscot culture. + Reality TV + Home + + + TVG + + + + Salvage Dawgs + Byrd Log Cabin + The team returns to a previously salvaged house to save its original log structure; learning how wood is milled for a custom building project. + Reality TV + Home + + + TVG + + + + Salvage Dawgs + Former First National Bank + The crew takes on the former First National Bank in Gastonia, N.C., salvaging elevator parts and chicken wire windows; Robert builds a bar out of a boat salvaged from Smith Mountain Lake. + Reality TV + Home + + + TVG + + + + Salvage Dawgs + P.A. Denny Riverboat + In Parkersburg, W. Va., the crew saves a calliope from a riverboat, then picks through a large warehouse. + Reality TV + Home + + + TVG + + + + Salvage Dawgs + Geyser Gulch + The Dawgs salvage the amusement park attraction, Geyser Gulch, at Silver Dollar City in Branson, Mo. + Reality TV + Home + + + TVG + + + + This Old House + Seaside Victorian Cottage: Pizza Time + Flooring and finish carpentry; master bathroom plan; a custom pizza oven and fireplace are installed in sections. + Home + Instructional + + + TVG + + + + This Old House + Seaside Victorian Cottage: Narragansett Windows + Elaborate interior window trim and custom storm windows; an updated electric meter and panels; working on the limestone hardscape in the backyard; assembling a Victorian style shed. + Home + Instructional + + + TVG + + + + Restoring Galveston + Stump House + Ashley and Michael take on a half-finished Victorian mansion in the Historic District that was too good to pass up. + Home + Instructional + + + TVG + + + + Restoring Galveston + The Kettle House + Michael and Ashley get the opportunity to renovate the Kettle House in Galveston, Texas; the spaceship-shaped landmark harbors a few surprises inside; it is soon brimming with life as the Cordrays bring their unique charm to this one-of-a-kind house. + Reality TV + Home + + + TVG + + + + Restoring Galveston + Craftsman Camelback + Camelbacks are not common in Galveston, Texas, but the challenge is to make this one a historic head-turner; the Cordrays transform the attic into a cozy family space and build an outdoor sofa that a Gulf storm can't destroy. + Home + Instructional + + + TVG + + + + Restoring Galveston + Destined for Demo + When Michael announces he has purchased a new house, Ashley feels she is not ready to start a new project; then she hears the house is on the city's demolition list and realizes this unique 1930s bungalow needs to be saved. + Home + Instructional + + + TVG + + + + Restoring Galveston + Half-Lot Problems + Michael convinces the owner of an enormous 1850s house he's had his eye on for years to sell; Ashley isn't on board with his passion project knowing it will be difficult to turn the massive property into a livable home on a tight budget. + Home + Instructional + + + TVG + + + + Restoring Galveston + Galveston Ranch House + Buying a newer home isn't the Cordray's norm, but adding their iconic character, style and functionality never gets old; they build a privacy fence for the deck, a herringbone design focal wall, and raise and make over the original kitchen cabinets. + Home + Instructional + + + TVG + + + + Building Off the Grid + Big Sur Modern Retreat + A nature-loving architect builds a modern California cabin that rivals the views of nearby Big Sur. + Home + Instructional + + + TVG + + + + Building Off the Grid + Georgia Appalachian A-Frame + Deep in the foothills of the Appalachian Mountains, a Georgia family is building a remote A-frame cabin retreat. + Home + Instructional + + + TVG + + + + Building Off the Grid + Container Dreamhouse + First-time builders Shay and Shae set out to build a home using five shipping containers on a wooded lot in Oklahoma. + Home + Instructional + + + TVG + + + + Building Off the Grid + Arkansas Mountain Treehouse + A college student and musician wants an off-the-grid treehouse compound with three structures, with each serving living and sustainability, in the Arkansas woods. + Home + Instructional + + + TVG + + + + Building Off the Grid + Vermont Stone House + Novice builder Danny Clark attempts to construct a 600-square-foot stone cabin in Vermont's White River Valley; the home is sure to be a true work of art, but his inexperience, the harsh winter and the unusual architecture push him to his limits. + Home + Instructional + + + TVG + + + + Building Off the Grid + Indiana Grain Bin + An Indiana farming family combines old with new to create a grain bin retreat on their busy working farm. + Home + Instructional + + + TVG + + + + Building Off the Grid + Tropical Paradise + A couple plans to build an oceanfront oasis for their family in Maui, Hawaii and, to keep the budget low, they design a Quonset hut which can be built cheaply and quickly, but unexpected setbacks test their limits at every turn. + Home + Instructional + + + TVG + + + + Restoration Road With Clint Harp + Montana Silos + Three abandoned grain silos from the windswept plains of South Dakota are disassembled and rebuilt as rustic and charming guest cottages on a 200-acre ranch in the picturesque landscape of Greycliff, Montana. + Home + Instructional + + + TVG + + + + Building Off the Grid + Montana Mountain Modern + A father-son duo builds a 720-square foot stick-frame home completely off the grid in Mont.'s Flathead Valley. + Home + Instructional + + + TVG + + + + Building Off the Grid + Streamside Cottage + Professional tree-house builder Michael. + Home + Instructional + + + TVG + + + + Building Off the Grid + Floating Castle + Marine scientists in Florida hire engineers Nicolas Derouin and Arnaud Luguet to create a first-of-its-kind floating home; they have nine months to complete it, but unpredictable weather and building hiccups may sink this project before it can swim. + Home + Instructional + + + TVG + + + + Building Off the Grid + Montana Mountain Modern + A father-son duo builds a 720-square foot stick-frame home completely off the grid in Mont.'s Flathead Valley. + Home + Instructional + + + TVG + + + + Building Off the Grid + Streamside Cottage + Professional tree-house builder Michael. + Home + Instructional + + + TVG + + + + Building Off the Grid + Floating Castle + Marine scientists in Florida hire engineers Nicolas Derouin and Arnaud Luguet to create a first-of-its-kind floating home; they have nine months to complete it, but unpredictable weather and building hiccups may sink this project before it can swim. + Home + Instructional + + + TVG + + + + Restoration Road With Clint Harp + Montana Silos + Three abandoned grain silos from the windswept plains of South Dakota are disassembled and rebuilt as rustic and charming guest cottages on a 200-acre ranch in the picturesque landscape of Greycliff, Montana. + Home + Instructional + + + TVG + + + + Salvage Dawgs + Bemis Cotton Mill + Mike, Robert, and the rest of the team salvage the Bemis Cotton Mill in Jackson, Tenn. + Reality TV + Home + + + TVG + + + + Salvage Dawgs + Meek Farmhouse + Mike & Robert remove a two-piece staircase from a farmhouse in Virginia; picking through a train yard; building a bar from panel doors. + Reality TV + Home + + + TVG + + + + Salvage Dawgs + American Viscose Plant + The crew saves a kiln from the American Viscose Plant in Roanoke, Va.; Mike and Tay build custom tables for an optometrist's office; Will Farmer appraises a map from 1853. + Reality TV + Home + + + TVG + + + + Salvage Dawgs + Rising Sun Ranch + The crew tackles a ranch house in Alderson, W. Va., salvaging stained glass and corbels; Mike reuses timber to build a beam table. + Reality TV + Home + + + TVG + + + + Lakefront Bargain Hunt: Renovation + By the Sea in Port Orchard + A Washington couple searches the region's lakes for a waterfront retreat close to the Pacific Ocean in Port Orchard; They hope to renovate a cozy cabin into a dreamy escape for their young family. + Home + + + TVG + + + + Lakefront Bargain Hunt: Renovation + Rework in Wisconsin + A couple finds a fixer-upper in Wisconsin that overlooks Lake Michigan, and they're doing all the renovation work themselves; he's a contractor with experience renovating properties, and she's ready to join him and get her hands dirty. + Home + + + TVG + + + + Lakefront Bargain Hunt: Renovation + Second Generation Renovation on Georgia's Lake Arrowhead + Lisa and Angela are co-workers and friends that are searching for a house with the help of their daughters Daniele and Allie, and are hoping to find the perfect vacation home to share between their two growing families. + Home + + + TVG + + + + Lakefront Bargain Hunt: Renovation + Exciting Expansion on Oneida Lake + An Upstate New York couple dreams of purchasing a home along the shores of Oneida Lake; however, finding an affordable property that overlooks the water and has plenty of space for their family may require some sweat equity and an ambitious plan. + Home + + + TVG + + + + Lakefront Bargain Hunt: Renovation + Otter Tail Transformation + A family with three young kids finds its forever lake home in Otter Tail County, Minn.; however, it is far from turnkey and the massive and complex renovation may derail the lakeside living dreams. + Home + + + TVG + + + + Lakefront Bargain Hunt: Renovation + Enjoying the Seasons in Adirondack Park + A married Brooklyn couple searches for a vacation home in the Adirondack Park region of upstate New York; they love the multi-seasonal appeal of the area, but many of the properties within their budget need significant renovations. + Home + + + TVG + + + + Fixer Upper + Sports Chaplain Tackles Fixer + A couple tours houses near Baylor University, in search of one large enough to entertain a football team. + Reality TV + Home + + + TVG + + + + Fixer Upper + Close to Water in Waco + A family is on the lookout for a spacious home for some lakeside fun. + Reality TV + Home + + + TVG + + + + Fixer Upper + Rustic Italian Dream Home + Jenny and Ramil are moving to Waco, Texas, from California to be closer to Ramil's mother; they are looking for something that needs work despite initial concerns. + Reality TV + Home + + + TVG + + + + Fixer Upper + Creating Home Close to Campus + Soon-to-be empty nesters want to find a home close to Baylor University, where their children will be attending college. + Reality TV + Home + + + TVG + + + + Fixer Upper + New Nest for a Growing Family + A young couple wants to settle into a family-sized house that has space for a playroom and home office. + Reality TV + Home + + + TVG + + + + Fixer Upper + Retiring to the Country + With their children grown, a couple agrees it's time to downsize their home as they enter retirement; priorities include a large kitchen, a nice living space and the right location. + Reality TV + Home + + + TVG + + + + Fixer Upper + School Spirit Spurs Home Search + After touring three houses in Waco, Texas, a couple want to buy one that is close to Baylor University. + Reality TV + Home + + + TVG + + + + Monster Jam + Minneapolis - Rd 14 + Vendetta's Mike Christensen looks to win back to back Overall Event Championship while Grave Digger's Adam Anderson attempts to finally regain the series points lead over Bakugan Dragonoid's Camden Murphy. + Sports + Auto Racing + + + TVPG + + + + 2023 Inside Monster Jam + 2023 Inside Monster Jam. + Sports + Automotive + + + + Icelandic Formula Off-Road + Egilsstadir, Part 2 + Automotive + Sports + + + TVMA + + + + 2023 Night of Speed + 2023 Night of Speed: Late Models, USRA Stock Cars, Show-Me Vintage + 2023 Night of Speed: Late Models, USRA Stock Cars, Show-Me Vintage. Event Date: 7/29/23. + Sports + Auto Racing + + + + Monster Jam + Minneapolis - Rd 14 + Vendetta's Mike Christensen looks to win back to back Overall Event Championship while Grave Digger's Adam Anderson attempts to finally regain the series points lead over Bakugan Dragonoid's Camden Murphy. + Sports + Auto Racing + + + TVPG + + + + 2023 Inside Monster Jam + 2023 Inside Monster Jam. + Sports + Automotive + + + + Icelandic Formula Off-Road + Egilsstadir, Part 2 + Automotive + Sports + + + TVMA + + + + 2023 Night of Speed + 2023 Night of Speed: Late Models, USRA Stock Cars, Show-Me Vintage + 2023 Night of Speed: Late Models, USRA Stock Cars, Show-Me Vintage. Event Date: 7/29/23. + Sports + Auto Racing + + + + 2023 Night of Speed + 2023 Night of Speed: Late Models, USRA Stock Cars, Show-Me Vintage + 2023 Night of Speed: Late Models, USRA Stock Cars, Show-Me Vintage. Event Date: 7/29/23. + Sports + Auto Racing + + + + 2023 GT2 Europe + 2023 GT2 Europe: Part 2 - Valencia + 2023 GT2 Europe: Part 2 - Valencia. + Sports + Auto Racing + + + + 2023 Tour European Rally World + The Tour European Rally, also known as TER Series, is a rally competition that has been held across Europe since 2016, and has spawned multiple divisions as its success has grown new opportunity. + Sports + Auto Racing + + + + 2023 Supercars Championship + 2023 Supercars Championship. + Sports + Auto Racing + + + TVPG + + + + On the Edge + Swamp Buggy - Pro Mod and Features + From April 2, 2023. + Sports + Auto Racing + + + + On the Edge + Swamp Buggy - Pro Mod and Features + From April 2, 2023. + Sports + Auto Racing + + + + 24H Series Highlights + Dubai + 2023 - 24H Series Highlights: Dubai. + Sports + Auto Racing + + + TVPG + + + + Monster Jam + Jacksonville- Rd 15 + There is a new series points leader on Stadium Championship Series Red as Adam Anderson continues his incredible 18th season behind the wheel of Grave Digger. + Sports + Auto Racing + + + TVPG + + + + 2023 Inside Monster Jam + 2023 Inside Monster Jam. + Sports + Automotive + + + + 2023 Monster Jam - Arena in 30 + Salt Lake City + Arena in 30 returns to The Vivint Arena in Salt Lake City, Utah; Reigning Series Champion, Krysten Anderson, tries to lead Grave Digger to the Arena Championship Series West Overall Event Championship. + Sports + Auto Racing + + + + MotorWeek + 2023 Chevrolet Silverado Bison; GMC Canyon AT4X + The full-size Chevrolet Silverado Bison and the mid-size GMC Canyon AT4X; the Alfa Romeo Tonale, compact crossover. + Automotive + Instructional + + + TVG + + + + My Classic Car + My Classic Car is a weekly television program that captures America's Love affair with the automobile! Dennis Gage, the handlebar mustachioed host, takes you along for the ride and keeps it entertaining. + Sports + Automotive + + + + Monster Jam + Jacksonville- Rd 15 + There is a new series points leader on Stadium Championship Series Red as Adam Anderson continues his incredible 18th season behind the wheel of Grave Digger. + Sports + Auto Racing + + + TVPG + + + + 2023 Trans Am - TA2 LIVE + 2023 Trans Am - TA2 LIVE: Circuit of the Americas - TA2 + 2023 Trans Am - TA2 LIVE: Circuit of the Americas - TA2. + Sports + Auto Racing + + + + 2023 Grand Prix Insights + 2023 Grand Prix Insights. + Automotive + + + + MotorWeek + 2023 Chevrolet Silverado Bison; GMC Canyon AT4X + The full-size Chevrolet Silverado Bison and the mid-size GMC Canyon AT4X; the Alfa Romeo Tonale, compact crossover. + Automotive + Instructional + + + TVG + + + + 2023 Trans Am - TA2 LIVE + 2023 Trans Am - TA2 LIVE: Circuit of the Americas - Trans Am + 2023 Trans Am - TA2 LIVE: Circuit of the Americas - Trans Am. + Sports + Auto Racing + + + + 2023 Tour European Rally World + The Tour European Rally, also known as TER Series, is a rally competition that has been held across Europe since 2016, and has spawned multiple divisions as its success has grown new opportunity. + Sports + Auto Racing + + + + 2023 Offshore Powerboats + Class 1 Offshore - Cocoa Beach + Class 1 Offshore - Cocoa Beach; event date: 5/21/23. + Sports + Boating + + + TVG + + + + 2023 TC America + 2023 TC America. + Sports + Auto Racing + + + + 2023 Grand Prix Insights + 2023 Grand Prix Insights. + Automotive + + + + Mobil 1 The Grid + Mobil 1 The Grid is a one half hour monthly global motorsports review program, leveraging the extensive presence of Mobil 1 in the sport to gain access, insight and coverage where others cant go, including Formula 1, NASCAR, IndyCar. + Automotive + + + + Crandon World Cup Off-Road Race + 2023 Crandon Off-Road Racing: Pro Stock and Pro Mod SxS Championships + 2023 Crandon Off-Road Racing: Pro Stock and Pro Mod SxS Championships. + Sports + Auto Racing + + + + King of the Hammers + 2023 King of the Hammers: Everyman Challenge - Ultra 4 Limited + 2023 King of the Hammers: Everyman Challenge - Ultra 4 Limited. + Sports + Auto Racing + + + TVPG + + + + The Skinny + The Skinny: Jeff Hammond Part 2 + NASCAR Championship winning Crew Chief Jeff Hammond has worked with Cale Yarborough, Darrell Waltrip and Kenny Wallace to name a few on teams including Junior Johnson Motorsports, Hendricks Motorsports and Roush Racing and his stories are pure gold! + Specials + Sports + + + + SpeedFreaks + Speed Freaks + Speed Freaks. + Sports + Auto Racing + + + + The Skinny + The Skinny: Jeff Hammond Part 2 + NASCAR Championship winning Crew Chief Jeff Hammond has worked with Cale Yarborough, Darrell Waltrip and Kenny Wallace to name a few on teams including Junior Johnson Motorsports, Hendricks Motorsports and Roush Racing and his stories are pure gold! + Specials + Sports + + + + SpeedFreaks + Speed Freaks + Speed Freaks. + Sports + Auto Racing + + + + King of the Roads + 2023 King of the Roads: Northwest 200 - Part 1 + 2023 King of the Roads: Northwest 200 - Part 1. + Sports + Auto Racing + + + TVPG + + + + 2023 Supercars Championship + 2023 Supercars Championship. + Sports + Auto Racing + + + TVPG + + + + 2023 On the Edge + 2023 On the Edge: Watercross - Pro Open, Semi Pro Stock and Sport Open + Go deep inside to the true grassroots struggles for racing superiority. It's all about the passion for the sport and the glory of taking your automobile past its limits. + Automotive + + + + On the Edge + Swamp Buggy - Pro Mod and Features + From April 2, 2023. + Sports + Auto Racing + + + + 2023 GT2 Europe + 2023 GT2 Europe: Part 2 - Valencia + 2023 GT2 Europe: Part 2 - Valencia. + Sports + Auto Racing + + + + 2023 Indikarts + 2023 Indikarts: Round 2 + 2023 Indikarts: Round 2. + Automotive + + + TVPG + + + + My Classic Car + My Classic Car is a weekly television program that captures America's Love affair with the automobile! Dennis Gage, the handlebar mustachioed host, takes you along for the ride and keeps it entertaining. + Sports + Automotive + + + + Wrench Wars + Killer Coupes + Mynor. + Sports + Automotive + + + TVPG + + + + Stacey David's GearZ + The Meyers Manx + Stacey rolls in what could be the ultimate open-air fun machine, an original Meyers Manx dune buggy; these crazy, colorful, fiberglass-bodied buggies were not only beyond cool, they also started a revolution of affordable do-it-yourself projects. + Sports + Automotive + + + TVG + + + + Sam's Garage + Season 11 Premiere + Lokar brings a 14 LS Classic intake for a restored 1978 C10. + Automotive + Instructional + + + TVG + + + + The Skinny + The Skinny: Jeff Hammond Part 2 + NASCAR Championship winning Crew Chief Jeff Hammond has worked with Cale Yarborough, Darrell Waltrip and Kenny Wallace to name a few on teams including Junior Johnson Motorsports, Hendricks Motorsports and Roush Racing and his stories are pure gold! + Specials + Sports + + + + SpeedFreaks + Speed Freaks + Speed Freaks. + Sports + Auto Racing + + + + The Skinny + The Skinny: Jeff Hammond Part 2 + NASCAR Championship winning Crew Chief Jeff Hammond has worked with Cale Yarborough, Darrell Waltrip and Kenny Wallace to name a few on teams including Junior Johnson Motorsports, Hendricks Motorsports and Roush Racing and his stories are pure gold! + Specials + Sports + + + + SpeedFreaks + Speed Freaks + Speed Freaks. + Sports + Auto Racing + + + + Moto 8: The Movie + Motocross riders perform daring feats on some of the biggest tracks in the world and in the Australian outback. + + Kris Foster + Tom Parsons + Haiden Deegan + + 2016 + Movies + Documentary + + + + 2023 On the Edge + 2023 On the Edge: Watercross - Pro Open, Semi Pro Stock and Sport Open + Go deep inside to the true grassroots struggles for racing superiority. It's all about the passion for the sport and the glory of taking your automobile past its limits. + Automotive + + + + Short Track America + 2023 Short Track America: Blizzard 4 + 2023 Short Track America: Blizzard 4. + Sports + Auto Racing + + + TVPG + + + + Lucas Oil Late Model Dirt Series + 2023 Lucas Oil Late Model Dirt Series: 2023: Dirt Track World Championship + The Lucas Oil Late Model Dirt Series acts as a national touring sanctioning body for dirt super late models; the Lucas Oil Late Model Dirt racecars push the envelope of automotive technology with their 800 horsepower V-8 engines. + Sports + Auto Racing + + + + 2023 SPEARS Pro Late Model Series + 2023 SPEARS Southwest Tour Series. + Sports + Auto Racing + + + + 500 Sprint Car Tour + 2023 - 500 Sprint Car Tour: Indianapolis Raceway Park + Pavement Sprint Car racing has risen to prominence in America once again and the 500 Sprint Car Tour is leading the charge.The 500 Sprint Car Tour features 10 races at four different tracks, including the historic Lucas Oil Little 500. + Specials + Sports + + + + Lucas Oil Late Model Dirt Series + 2023 Lucas Oil Late Model Dirt Series: 2023: Dirt Track World Championship + The Lucas Oil Late Model Dirt Series acts as a national touring sanctioning body for dirt super late models; the Lucas Oil Late Model Dirt racecars push the envelope of automotive technology with their 800 horsepower V-8 engines. + Sports + Auto Racing + + + + 2023 SPEARS Pro Late Model Series + 2023 SPEARS Southwest Tour Series. + Sports + Auto Racing + + + + 500 Sprint Car Tour + 2023 - 500 Sprint Car Tour: Indianapolis Raceway Park + Pavement Sprint Car racing has risen to prominence in America once again and the 500 Sprint Car Tour is leading the charge.The 500 Sprint Car Tour features 10 races at four different tracks, including the historic Lucas Oil Little 500. + Specials + Sports + + + + Short Track America + 2023 Short Track America: Blizzard 4 + 2023 Short Track America: Blizzard 4. + Sports + Auto Racing + + + TVPG + + + + 2023 GT America + 2023 GT America: Music City Grand Prix + 2023 GT America: Music City Grand Prix. + Sports + Auto Racing + + + + 2023 Hi - Tech Drift + 2023 Hi - Tech Drift: Symmons Plains, Tasmania + 2023 Hi - Tech Drift: Symmons Plains, Tasmania. + Sports + Auto Racing + + + + 2023 Ferrari Challenge Europe + 2023 Ferrari Challenge Europe: Valencia + 2023 Ferrari Challenge Europe: Valencia. + Sports + Auto Racing + + + TVPG + + + + 2023 GT4 European Series + Part 1 - Monza + Sports + Auto Racing + + + + 2023 GT2 Europe + 2023 GT2 Europe: Part 2 - Valencia + 2023 GT2 Europe: Part 2 - Valencia. + Sports + Auto Racing + + + + My Classic Car + My Classic Car is a weekly television program that captures America's Love affair with the automobile! Dennis Gage, the handlebar mustachioed host, takes you along for the ride and keeps it entertaining. + Sports + Automotive + + + + Wrench Wars + Custom Trucks + Monte Rubarts with his '38 Chevy and George Tantardini with his '53 GMC battle it out for bragging rights in the custom truck game; with trick paint, Jaguar suspension, and a chopped top, these contenders bring serious skills to the cage. + + Brother JD + + Sports + Automotive + + + TVPG + + + + Stacey David's GearZ + The New/Old Van Craze + There was a time when vans ruled the custom scene; like lightning from a wizard's wand, they disappeared; vans are back, and Stacey has a few tricks up his sleeve to turn that dumpy old phone service or laundry van into a sweet street machine. + Sports + Automotive + + + TVG + + + + Sam's Garage + Hybrid Recharge + Sam helps his daughter change her Kia Optima Hybrid battery. + Automotive + Instructional + + + TVG + + + + Crandon World Cup Off-Road Race + 2023 Crandon Off-Road Racing: Class 11 & Ultra4 World Championships + 2023 Crandon Off-Road Racing: Class 11 & Ultra4 World Championships. + Sports + Auto Racing + + + + King of the Hammers + 2023 King of the Hammers: UTV - UTV Rock/Desert + 2023 King of the Hammers: UTV - UTV Rock/Desert. + Sports + Auto Racing + + + TVPG + + + + 2023 Night of Speed + 2023 Night of Speed: Late Models, USRA Stock Cars, Show-Me Vintage + 2023 Night of Speed: Late Models, USRA Stock Cars, Show-Me Vintage. Event Date: 7/29/23. + Sports + Auto Racing + + + + Crandon World Cup Off-Road Race + 2023 Crandon Off-Road Racing: Class 11 & Ultra4 World Championships + 2023 Crandon Off-Road Racing: Class 11 & Ultra4 World Championships. + Sports + Auto Racing + + + + King of the Hammers + 2023 King of the Hammers: UTV - UTV Rock/Desert + 2023 King of the Hammers: UTV - UTV Rock/Desert. + Sports + Auto Racing + + + TVPG + + + + 2023 Night of Speed + 2023 Night of Speed: Late Models, USRA Stock Cars, Show-Me Vintage + 2023 Night of Speed: Late Models, USRA Stock Cars, Show-Me Vintage. Event Date: 7/29/23. + Sports + Auto Racing + + + + MotoAmerica Jr. Cup + 2023 MotoAmerica Jr. Cup: Road America - Race 1 + 2023 MotoAmerica Jr. Cup: Road America - Race 1. + Sports + Motorcycle Racing + + + TVPG + + + + MotoAmerica Jr. Cup + 2023 MotoAmerica Jr. Cup: Road America - Race 2 + 2023 MotoAmerica Jr. Cup: Road America - Race 2. + Sports + Motorcycle Racing + + + TVPG + + + + FIM X - Trial World Championship + Bordeaux, France + Highlights coverage of the X-Trial World Championship. + Sports + Motorcycle Racing + + + TVPG + + + + RacerTV + GNCC Pro ATV Off-Road Racing -- Rd 10 -- Beckley. WV + Coverage of motocross, off-road, ATV racing and more. + Sports + Motorcycle Racing + + + TVPG + + + + RacerTV + 2023 Racer TV: Pro ATV Motocross Racing - Rd 5 - Ironman + Coverage of motocross, off-road, ATV racing and more. + Sports + Motorcycle Racing + + + TVG + + + + Endurocross + 2023 Endurocross: Rd 4 - Idaho Falls, ID + Endurocross combines motocross and obstacles of an enduro, in the confines of an indoor arena. + Sports + Auto Racing + + + TVPG + + + + FIM X - Trial World Championship + Pais Arena - Jerusalem + Highlights coverage of the X-Trial World Championship. + Sports + Motorcycle Racing + + + TVPG + + + + Endurocross + 2023 Endurocross: Rd 4 - Idaho Falls, ID + Endurocross combines motocross and obstacles of an enduro, in the confines of an indoor arena. + Sports + Auto Racing + + + TVPG + + + + Endurocross + 2023 Endurocross: Rd 4 - Idaho Falls, ID + Endurocross combines motocross and obstacles of an enduro, in the confines of an indoor arena. + Sports + Auto Racing + + + TVPG + + + + FIM X - Trial World Championship + Pais Arena - Jerusalem + Highlights coverage of the X-Trial World Championship. + Sports + Motorcycle Racing + + + TVPG + + + + MotoAmerica Jr. Cup + 2023 MotoAmerica Jr. Cup: Road America - Race 1 + 2023 MotoAmerica Jr. Cup: Road America - Race 1. + Sports + Motorcycle Racing + + + TVPG + + + + MotoAmerica Jr. Cup + 2023 MotoAmerica Jr. Cup: Road America - Race 2 + 2023 MotoAmerica Jr. Cup: Road America - Race 2. + Sports + Motorcycle Racing + + + TVPG + + + + FIM X - Trial World Championship + Bordeaux, France + Highlights coverage of the X-Trial World Championship. + Sports + Motorcycle Racing + + + TVPG + + + + RacerTV + GNCC Pro ATV Off-Road Racing -- Rd 10 -- Beckley. WV + Coverage of motocross, off-road, ATV racing and more. + Sports + Motorcycle Racing + + + TVPG + + + + RacerTV + 2023 Racer TV: Pro ATV Motocross Racing - Rd 5 - Ironman + Coverage of motocross, off-road, ATV racing and more. + Sports + Motorcycle Racing + + + TVG + + + + Australian Superbike Championship + Sports + Motorcycle Racing + + + TVPG + + + + 2023 Hi - Tech Drift + 2023 Hi - Tech Drift: International Drifting Cup + 2023 Hi - Tech Drift: International Drifting Cup. + Sports + Auto Racing + + + + On the Edge + Swamp Buggy - Pro Mod and Features + From April 2, 2023. + Sports + Auto Racing + + + + 2023 On the Edge + 2023 On the Edge: Watercross - Pro Open, Semi Pro Stock and Sport Open + Go deep inside to the true grassroots struggles for racing superiority. It's all about the passion for the sport and the glory of taking your automobile past its limits. + Automotive + + + + 24H Series Highlights + 2023 - 24H Series Highlights: Mugello 12 Hour + 2023 - 24H Series Highlights: Mugello 12 Hour. Event Date: 3/25/23-3/26/23. + Sports + Auto Racing + + + TVPG + + + + My Classic Car + My Classic Car is a weekly television program that captures America's Love affair with the automobile! Dennis Gage, the handlebar mustachioed host, takes you along for the ride and keeps it entertaining. + Sports + Automotive + + + + Wrench Wars + Racing Beetles + Andy Fabbro with his '61 VW Beetle and Chris Hancock with his '59 duke it out in the world of extremely quick, turbo charged Volkswagen Beetles; seldom seen, well-engineered, radical, quarter mile killers are brought to the cage. + + Brother JD + + Sports + Automotive + + + TVPG + + + + Stacey David's GearZ + Grilling the Van + The crazy yellow van is getting a facelift; good riddance to that clunky plastic face, and hello to some real steel; Stacey shows how to build brackets to relocate the headlights, keeping them fully adjustable and serviceable. + Sports + Automotive + + + TVG + + + + Sam's Garage + Nova Gets a New Camshaft + Sam installs a new camshaft from Summit Racing in a 1976 Nova. + Automotive + Instructional + + + TVG + + + + Crandon World Cup Off-Road Race + 2023 Crandon Off-Road Racing: Pro Buggy & Pro Spec World Championships + 2023 Crandon Off-Road Racing: Pro Buggy & Pro Spec World Championships. + Sports + Auto Racing + + + + King of the Hammers + 2023 King of the Hammers: Desert Race Unlimited - Desert Trucks T1s/Spec Trucks + 2023 King of the Hammers: Desert Race Unlimited - Desert Trucks T1s/Spec Trucks. + Sports + Auto Racing + + + TVPG + + + + Monster Jam + The Monster Jam Championship Series at Ford Field in Detroit, Mich. + Sports + Auto Racing + + + TVPG + + + + Crandon World Cup Off-Road Race + 2023 Crandon Off-Road Racing: Pro Buggy & Pro Spec World Championships + 2023 Crandon Off-Road Racing: Pro Buggy & Pro Spec World Championships. + Sports + Auto Racing + + + + King of the Hammers + 2023 King of the Hammers: Desert Race Unlimited - Desert Trucks T1s/Spec Trucks + 2023 King of the Hammers: Desert Race Unlimited - Desert Trucks T1s/Spec Trucks. + Sports + Auto Racing + + + TVPG + + + + Monster Jam + The Monster Jam Championship Series at Ford Field in Detroit, Mich. + Sports + Auto Racing + + + TVPG + + + + Moto 8: The Movie + Motocross riders perform daring feats on some of the biggest tracks in the world and in the Australian outback. + + Kris Foster + Tom Parsons + Haiden Deegan + + 2016 + Movies + Documentary + + + + 2023 Inside Monster Jam + 2023 Inside Monster Jam. + Sports + Automotive + + + + The Rifleman + Which Way Did They Go? + A group of hill folk is installed as peace officers in a town near North Fork. + + Chuck Connors + Johnny Crawford + Paul Fix + + Drama + + + TVG + + + + The Rifleman + Old Tony + An elderly recluse with a mean reputation helps Lucas rescue Mark. + + Chuck Connors + Johnny Crawford + Paul Fix + + Drama + + + TVG + + + + The Three Stooges + A-Plumbing We Will Go + Plumber Stooges flood a garden party. + + Moe Howard + Larry Fine + Curly Howard + + Comedy + + + TVG + + + + The Three Stooges + What's the Matador? + Matador Stooges tangle with a jealous husband. + + Moe Howard + Larry Fine + Curly Howard + + Comedy + + + TVPG + + + + The Three Stooges + Stone Age Romeos + The boys are wife-hunting cavemen. + + Moe Howard + Larry Fine + Shemp Howard + + Comedy + + + TVPG + + + + The Three Stooges + Fifi Blows Her Top + Joe frets about his long-lost love Fifi, and the Stooges reminisce about long-lost loves. + + Moe Howard + Larry Fine + Joe Besser + + Comedy + + + TVPG + + + + Svengoolie + Kingdom of the Spiders + In rural Arizona, countless killer tarantulas are migrating through a farm town, killing every living thing in their path. The town's veterinarian will do everything in his power to survive the onslaught. + + Rich Koz + + Comedy + + + TVPG + + + + Batman + Hot Off the Griddle + Things get hot for Batman when he pursues Catwoman. + + Adam West + Burt Ward + Neil Hamilton + + Regular + + + TVPG + + + + Star Trek + Mudd's Women + The Enterprise interferes with Harry Mudd's (Roger C. Carmel) new business, supplying wives to rich but lonely miners. + + William Shatner + Leonard Nimoy + DeForest Kelley + + Sci-Fi + + + TVPG + + + + Kolchak: The Night Stalker + They Have Been, They Are, They Will Be .. + Kolchak suspects extraterrestrial involvement when a series of electronic-equipment thefts is linked to several bizarre murders. + + Darren McGavin + Simon Oakland + Jack Grinnage + + Drama + + + TVPG + + + + Lost in Space + The Hungry Sea + The family barely survives the planet's scorching sun, then must guide the Chariot across a turbulent sea. + + Guy Williams + June Lockhart + Mark Goddard + + Sci-Fi + + + TVG + + + + Voyage to the Bottom of the Sea + The Mermaid + A mermaid leads the sub to an undersea nuclear bomb that's about to explode. + + Richard Basehart + David Hedison + Robert Dowdell + + Drama + + + TVG + + + + Voyage to the Bottom of the Sea + The Mummy + The Seaview transports a mummy, which awakes and attacks Crane. + + Richard Basehart + David Hedison + Robert Dowdell + + Drama + + + TVG + + + + Land of the Giants + The Secret City of Limbo + War looms between the surface-dwelling giants and others who live underground; guest Malachi Throne. + + Gary Conway + Don Marshall + Deanna Lund + + Sci-Fi + + + TVG + + + + Time Tunnel + Death Trap + Tony and Doug are mistaken for conspirators in a plot to assassinate President Lincoln; guests R.G. Pinkerton, Scott Marlowe. + + James Darren + Robert Colbert + Lee Meriwether + + Sci-Fi + + + TVPG + + + + The Invaders + The Condemned + Aliens frame Vincent for the death of a communications plant owner (Ralph Bellamy) who stole an important alien file. + + Roy Thinnes + + Sci-Fi + + + TVG + + + + Thunderbirds + Give or Take a Million + A store plans to surprise a children's hospital by having a rocket drop a large canister of toys, but two burglars bungle the plan. + + Peter Dyneley + David Graham + + Sci-Fi + + + TVPG + + + + TrendTalk + Lorena, Jorge y Ramón + Talk Shows + + + + Best of California + Hidden Gems of the Central Coast + Local + + + + Saved by the Bell + Snow White and the Seven Dorks + Kelly and Jessie compete for the lead in the school play -- a rap version of. + + Mark-Paul Gosselaar + Tiffani Thiessen + Mario Lopez + + Sitcom + Children + + + TVG + + + + Saved by the Bell + The Last Dance + A costume ball sets the stage for Zack and Kelly (Mark-Paul Gosselaar, Tiffani-Amber Thiessen) to examine their relationship. + + Mark-Paul Gosselaar + Tiffani Thiessen + Mario Lopez + + Sitcom + Children + + + TVG + + + + Saved by the Bell + The Aftermath + Zack (Mark-Paul Gosselaar) has a hard time dealing with the fact that Kelly (Tiffani-Amber Thiessen) has a new boyfriend. + + Mark-Paul Gosselaar + Tiffani Thiessen + Mario Lopez + + Sitcom + Children + + + TVG + + + + Saved by the Bell + Fake IDs + Zack (Mark-Paul Gosselaar) tries to impress a college girl by lying about his age. + + Mark-Paul Gosselaar + Tiffani Thiessen + Mario Lopez + + Sitcom + Children + + + TVG + + + + The Flintstones + Fred Goes Ape + The wrong prescription turns Fred into an ape. + + Alan Reed + Jean Vander Pyl + Mel Blanc + + Animated + Children + + + TVG + + + + The Flintstones + The Long, Long, Long Weekend + Gazoo takes the Flintstones and Rubbles into the 21st century. + + Alan Reed + Jean Vander Pyl + Mel Blanc + + Animated + Children + + + TVG + + + + The Flintstones + Two Men on a Dinosaur + Gazoo's gambling tips get Fred and Barney into trouble. + + Alan Reed + Jean Vander Pyl + Mel Blanc + + Animated + Children + + + TVG + + + + The Jetsons + Private Property + Cogswell builds a new plant next door to Spacely Sprockets. + + George O'Hanlon + Penny Singleton + Janet Waldo + + Animated + Children + + + TVG + + + + The Brady Bunch + Jan, the Only Child + Jan complains about her lack of privacy and gradually finds herself excluded from the other children's activities. + + Robert Reed + Florence Henderson + Ann B. Davis + + Sitcom + + + TVG + + + + The Brady Bunch + Career Fever + Mike mistakenly believes that Greg wants to follow in his footsteps because of a paper he prepares for school. + + Robert Reed + Florence Henderson + Ann B. Davis + + Sitcom + + + TVG + + + + Leave It to Beaver + Wally's Election + Ward urges Wally to run for school office. + + Hugh Beaumont + Barbara Billingsley + Tony Dow + + Sitcom + + + TVG + + + + Leave It to Beaver + Beaver and Andy + An alcoholic gets Beaver to give him brandy. + + Hugh Beaumont + Barbara Billingsley + Tony Dow + + Sitcom + + + TVG + + + + The Beverly Hillbillies + The Clampetts Are Overdrawn + Jed receives news that his multimillion-dollar account is overdrawn by $34.70. + + Buddy Ebsen + Irene Ryan + Donna Douglas + + Sitcom + + + TVG + + + + The Beverly Hillbillies + The Clampetts Go Hollywood + The Clampetts, under the noxious influence of J.D. Clampett, impostor and unemployed actor, go to Hollywood. + + Buddy Ebsen + Irene Ryan + Donna Douglas + + Sitcom + + + TVG + + + + Gilligan's Island + Take a Dare + A man takes a dare in a radio contest and allows himself to be marooned on the island for a week in order to win $10,000. + + Bob Denver + Alan Hale Jr. + Jim Backus + + Sitcom + + + TVG + + + + Gilligan's Island + Court-Martial + Skipper becomes depressed when a radio bulletin announces that he has been declared at fault for the loss of his charter boat. + + Bob Denver + Alan Hale Jr. + Jim Backus + + Sitcom + + + TVG + + + + Mama's Family + Mama's Girls + Mama leads a senior-citizens' tap-dancing troupe. + + Vicki Lawrence + Ken Berry + Dorothy Lyman + + Sitcom + + + TVPG + + + + Mama's Family + Mama on `Jeopardy!' + Mama appears on the. + + Vicki Lawrence + Ken Berry + Dorothy Lyman + + Sitcom + + + TVPG + + + + The Love Boat + Gopher's Opportunity; Home Sweet Home; Switch + Gopher is asked to manage a resort hotel; a rich widow plans to live on board; a magician substitutes for his magician brother. + + Gavin MacLeod + Bernie Kopell + Fred Grandy + + Drama + + + TVG + + + + The Andy Griffith Show + Andy Saves Gomer + Gomer believes that Andy has saved his life after Andy wakes him to put out a small fire at the filling station. Indebted, Gomer dedicates himself to repaying Andy in return. + + Andy Griffith + Ron Howard + Don Knotts + + Sitcom + + + TVG + + + + Collector's Call + Winnie the Pooh + Deb Hoffman's record-setting collection of Winnie the Pooh items contains nearly 18,000 pieces and includes a Winnie the Pooh costume from Walt Disney World and a set of Agnes Brush Winnie the Pooh character stuffed animals from the 1940s. + Reality TV + Hobbies & Crafts + + + TVG + + + + M*A*S*H + A Full Rich Day + Hawkeye records a letter to his father detailing his day in the OR with a mad Turk, a missing corpse and a gun-happy officer. + + Alan Alda + McLean Stevenson + Wayne Rogers + + Sitcom + History + + + TVPG + + + + M*A*S*H + Mad Dogs and Servicemen + While a search goes on for a dog that bit Radar, Hawkeye defies Frank to take care of a case of hysterical paralysis. + + Alan Alda + McLean Stevenson + Wayne Rogers + + Sitcom + History + + + TVPG + + + + All in the Family + Archie Gets the Business + Archie's got more to lose than his collateral when he secretly puts everything on the line to buy Kelsey's bar. + + Carroll O'Connor + Jean Stapleton + Rob Reiner + + Sitcom + + + TVPG + + + + All in the Family + Archie Gets the Business + Archie's got more to lose than his collateral when he secretly puts everything on the line to buy Kelsey's bar. + + Carroll O'Connor + Jean Stapleton + Rob Reiner + + Sitcom + + + TVPG + + + + All in the Family + Cousin Liz + Archie is obsessed with possibility of Edith inheriting her cousin's money and silverware, Edith has to convince him why she won't be taking any of it after she has a revealing conversation with Liz's longtime roommate, Veronica. + + Carroll O'Connor + Jean Stapleton + + Sitcom + + + TVPG + + + + All in the Family + Unequal Partners + Edith adds a senior citizen wedding and a pair of honeymooners to Archie's precious fishing trip plans. + + Carroll O'Connor + Jean Stapleton + + Sitcom + + + TVPG + + + + Ed Sullivan's Rock 'n' Roll Classics + Gone Too Soon + Performances by Janis Joplin, Elvis Presley, Buddy Holly, Bobby Darin, the Carpenters and the Mamas & the Papas. + Music + History + + + TVPG + + + + The Carol Burnett Show + Guests include Nanette Fabray and Nancy Wilson.Guests: Nanette Fabray, Nancy Wilson.. + + Carol Burnett + Harvey Korman + Lyle Waggoner + + Comedy + Variety + + + TVG + + + + The Dick Van Dyke Show + The Great Petrie Fortune + Rob's dreams of inheriting a fortune seem dashed when he gets an old desk. + + Dick Van Dyke + Mary Tyler Moore + Rose Marie + + Sitcom + + + TVG + + + + The Dick Van Dyke Show + Odd But True + Rob almost earns $500 because the freckles on his back are in the shape of the Liberty Bell. + + Dick Van Dyke + Mary Tyler Moore + Rose Marie + + Sitcom + + + TVG + + + + The Honeymooners + Better Living Through TV + Ralph and Norton do a live TV commercial. + + Jackie Gleason + Audrey Meadows + Art Carney + + Sitcom + + + TVG + + + + The Twilight Zone + The Last Night of a Jockey + A jockey's wish to become a giant in his profession has repercussions he may regret. With Mickey Rooney. + + Mickey Rooney + + Sci-Fi + + + TVPG + + + + Alfred Hitchcock Hour + Day of Reckoning + Plagued by a guilty conscience, a man (Barry Sullivan) confesses to his wife's murder, but his words fall on deaf ears. + + Barry Sullivan + Katharine Bard + Hugh Marlowe + + Drama + + + TVPG + + + + The Fugitive + Shadow of the Swan + A woman (Joanna Pettet) gets Kimble a position in an animal hospital, then is furious when he rejects her advances. + + David Janssen + Barry Morse + + Drama + + + TVPG + + + + Mission: Impossible + The Psychic + Cinnamon poses as a psychic to lure an industrialist into a poker game to retrieve top-secret NATO information he possesses. + + Steven Hill + Peter Graves + Martin Landau + + Drama + + + TVPG + + + + Peter Gunn + The Death Watch + A schoolteacher is harassed by the mob for the death of a student. + + Craig Stevens + Herschel Bernardi + Lola Albright + + Drama + + + TVPG + + + + Peter Gunn + Witness in the Window + The police and Peter Gunn are both searching for a missing girl who is suspected of blackmail. + + Craig Stevens + Herschel Bernardi + Lola Albright + + Drama + + + TVPG + + + + Highway Patrol + Desert Copter + Realizing that a car chase would be futile, Dan uses a helicopter to pursue a ruthless killer who is on the run with a hostage. + + Broderick Crawford + + Drama + + + + Dragnet + Robbery (DR-15) + Friday and Gannon meet a wide variety of clients when they work the robbery detail desk. + + Jack Webb + Harry Morgan + + Drama + + + TVPG + + + + Dragnet + Public Affairs (DR-12) + Friday and Gannon work with the Secret Service in making precautionary arrangements for the arrival of the president. + + Jack Webb + Harry Morgan + + Drama + + + TVPG + + + + My Three Sons + Steve and the Huntress + Steve (Fred MacMurray) is tempted when a female explorer invites him to go along on an African safari. + + Fred MacMurray + Don Grady + Stanley Livingston + + Sitcom + + + TVG + + + + Toon in With Me + Will It Gel? + Bill reminisces with Toony about gelatin desserts. + Comedy + + + TVPG + + + + Leave It to Beaver + Beaver's Prep School + Beaver becomes homesick when he contemplates his upcoming transfer to a prep school. + + Hugh Beaumont + Barbara Billingsley + Tony Dow + + Sitcom + + + TVG + + + + Leave It to Beaver + Wally and the Fraternity + Ward writes to his fraternity, recommending Wally and Eddie for membership. + + Hugh Beaumont + Barbara Billingsley + Tony Dow + + Sitcom + + + TVG + + + + Perry Mason + The Case of the Madcap Modiste + A fashion magnate is poisoned on the eve of her spring showing; guests Leslie Parrish, David White, Marie Windsor. + + Raymond Burr + Barbara Hale + William Hopper + + Drama + + + TVG + + + + Matlock + The Scam + Matlock sidelines plans to attend a class reunion when Cliff is accused of murder. + + Andy Griffith + Daniel Roebuck + Carol Huston + + Drama + + + TVPG + + + + In the Heat of the Night + Brother's Keeper + Officer Corbin is forced to pursue her ex-con brother when he returns to Sparta and becomes a suspect in a robbery. + + Carroll O'Connor + Howard E. Rollins + Anne-Marie Johnson + + Drama + + + TVPG + + + + The Waltons + The Ferris Wheel + An unconscious early memory of Elizabeth's returns as a dream to haunt the entire household and endanger her life. + + Richard Thomas + Ralph Waite + Michael Learned + + Drama + + + TVG + + + + Gunsmoke + Old Flame + Matt's old flame seeks protection from him after claiming to have been robbed, but Kitty is suspicious of the woman's intentions. + + James Arness + Amanda Blake + Milburn Stone + + Drama + + + TVPG + + + + Gunsmoke + The Deserter + A thieving deserter's parents defend him at gunpoint against Matt. + + James Arness + Amanda Blake + Milburn Stone + + Drama + + + TVPG + + + + Bonanza + Horse of a Different Hue + A poor Southern colonel and his granddaughter (Julie Parrish) unknowingly involve the Cartwrights in a horse-racing scheme. + + Lorne Greene + Dan Blocker + Michael Landon + + Drama + + + TVG + + + + The Rifleman + The Sharpshooter + Lucas and Mark McCain settle near North Fork. + + Chuck Connors + Johnny Crawford + Paul Fix + + Drama + + + TVG + + + + The Rifleman + Home Ranch + Two tough hired hands beat up Lucas and burn his ranch to get him to move off his land. + + Chuck Connors + Johnny Crawford + Paul Fix + + Drama + + + TVG + + + + Wagon Train + The Jasper Cato Story + A vengeful lawman claims that a town's hero is really a thief and needs to be taken back to Boston to stand trial. + + Ward Bond + Robert Horton + Frank McGrath + + Regular + + + TVG + + + + Adam-12 + Harry Nobody + An unlikely witness helps catch a killer. + + Martin Milner + Kent McCord + William Boyett + + Drama + + + TVPG + + + + Adam-12 + The Surprise + It's Malloy's birthday -- and a case provides the perfect present. + + Martin Milner + Kent McCord + William Boyett + + Drama + + + TVPG + + + + M*A*S*H + Private Charles Lamb + Radar helps out a lamb meant for a Greek festival; Frank is cheated out of an opportunity to persecute a young soldier. + + Alan Alda + McLean Stevenson + Wayne Rogers + + Sitcom + History + + + TVPG + + + + M*A*S*H + Bombed + Frank is driven by his jealousy of Trapper into proposing to Hot Lips. + + Alan Alda + McLean Stevenson + Wayne Rogers + + Sitcom + History + + + TVPG + + + + M*A*S*H + Bulletin Board + A lecture, a Shirley Temple movie and a picnic are among the activities scheduled for the 4077th. + + Alan Alda + McLean Stevenson + Wayne Rogers + + Sitcom + History + + + TVPG + + + + M*A*S*H + The Consultant + Hawkeye discovers a visiting doctor who must operate on a wounded soldier is a lush. + + Alan Alda + McLean Stevenson + Wayne Rogers + + Sitcom + History + + + TVPG + + + + The Andy Griffith Show + Bargain Day + Aunt Bee buys a side of beef from a discount butcher shop to save money. When she gets home, she discovers that her bargain freezer does not work. + + Andy Griffith + Ronny Howard + Frances Bavier + + Sitcom + + + TVG + + + + The Andy Griffith Show + Divorce, Mountain Style + Charlene Darling-Wash wants to perform a mountain ritual to divorce Dud Wash and marry Andy. When Barney discovers a way to counteract the ritual with another ritual, Andy decides to fight fire with fire. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVG + + + + The Beverly Hillbillies + The Happy Bank + A beautiful secretary at Drysdale's bank breaks the heel of her shoe and hobbles to. + + Buddy Ebsen + Irene Ryan + Donna Douglas + + Sitcom + + + TVG + + + + Green Acres + The Picnic + Oliver's plans for a quiet picnic with Lisa take an unexpected turn. + + Eddie Albert + Eva Gabor + Pat Buttram + + Sitcom + + + TVG + + + + Hogan's Heroes + Everyone Has a Brother-In-Law + A tough new officer assigned to Stalag 13 upsets Hogan's plan. + + Bob Crane + Werner Klemperer + John Banner + + Sitcom + + + TVG + + + + Hogan's Heroes + Killer Klink + Hogan gets Klink to believe that Schultz hasn't long to live. + + Bob Crane + Werner Klemperer + John Banner + + Sitcom + + + TVG + + + + The Carol Burnett Show + Guests include Flip Wilson and Vikki Carr.Guests: Flip Wilson, Vikki Carr.. + + Carol Burnett + Harvey Korman + Lyle Waggoner + + Comedy + Variety + + + TVG + + + + Perry Mason + The Case of the Positive Negative + A retired general heading a local commission is charged with the murder of the community crime boss; guest Brian Donlevy. + + Raymond Burr + Barbara Hale + William Hopper + + Drama + + + TVPG + + + + The Twilight Zone + The Old Man in the Cave + An old man in a cave offers guidance to survivors of a nuclear-war apocalypse, but their orderly world is shattered by the arrival of four soldiers. + + James Coburn + Josie Lloyd + Natalie Masters + + Sci-Fi + + + TVPG + + + + Alfred Hitchcock Presents + The Right Price + A burglar bargains with his victims when he discovers robbery will not be as profitable as collecting on a life insurance policy. + + Allyn Joslyn + Eddie Foy Jr. + Jane Dulo + + Drama + + + TVPG + + + + Alfred Hitchcock Presents + I'll Take Care of You + A used car salesman (Ralph Meeker) is driven to murder by his big-spending wife. With Russell Collins and Ida Moore. + + Russell Collins + Ralph Meeker + Ida Moore + + Drama + + + TVPG + + + + Mannix + A Pittance of Faith + A group of 21 people hires Mannix to prove a model's death wasn't suicide; guest Larry Linville. + + Mike Connors + Gail Fisher + + Drama + + + TVPG + + + + Cannon + Nightmare + Cannon hears the confession of a hit man who admits to killing the detective's wife and baby son 14 years before. + + William Conrad + + Drama + + + TVPG + + + + Barnaby Jones + Venus as in Fly Trap + The stormy relationship between a feminist and a writer ends with the death of the author's wife. + + Buddy Ebsen + Lee Meriwether + John Carter + + Drama + + + TVG + + + + Highway Patrol + Plant Robbery + When a duplicate armored truck is employed to pull off a daring heist, Dan and his team pull out all the stops to search for the criminals. + + Broderick Crawford + + Drama + + + + Dragnet + Training (DR-18) + Friday sets an anti-police magazine writer straight on the functions of policewomen and how they are trained. + + Jack Webb + Harry Morgan + + Drama + + + TVPG + + + + Dragnet + Public Affairs (DR-14) + Friday and Gannon organize a citizens' action committee in a high-crime neighborhood. + + Jack Webb + Harry Morgan + + Drama + + + TVPG + + + + My Three Sons + Robbie, the College Man + Robbie takes on a heavy workload so that he can rent a room away from home. + + Fred MacMurray + Don Grady + Stanley Livingston + + Sitcom + + + TVG + + + + Toon in With Me + Supertoony and Bill Man + As Toony dreams of having his own comic book, Bill welcomes the owners of Challengers Comic and their tiny doppelgangers. + Comedy + + + TVPG + + + + Leave It to Beaver + Eddie's Sweater + The Cleavers become concerned when they learn that Wally has been spending each weekend with Eddie's girlfriend. + + Hugh Beaumont + Barbara Billingsley + Tony Dow + + Sitcom + + + TVG + + + + Leave It to Beaver + The Book Report + Beaver writes his. + + Hugh Beaumont + Barbara Billingsley + Tony Dow + + Sitcom + + + TVG + + + + Perry Mason + The Case of the Slandered Submarine + Perry turns down an electronics manufacturer suing the Navy and instead defends a sailor accused of killing his captain. + + Raymond Burr + Barbara Hale + William Hopper + + Drama + + + TVG + + + + Matlock + The Scam + Matlock sidelines plans to attend a class reunion when Cliff is accused of murder. + + Andy Griffith + Daniel Roebuck + Carol Huston + + Drama + + + TVPG + + + + In the Heat of the Night + A Frenzied Affair + Gillespie and Virgil search for the killer of a married man who was having an affair with a high-school student. + + Carroll O'Connor + Howard E. Rollins Jr. + Anne-Marie Johnson + + Drama + + + TVPG + + + + The Waltons + The Elopement + Erin decides to elope after her parents refuse her permission to marry; Jason runs into problems managing Ike's store. + + Richard Thomas + Ralph Waite + Michael Learned + + Drama + + + TVG + + + + Gunsmoke + Cherry Red + A robber's widow is sought out by a man who was involved in her husband's death. + + James Arness + Amanda Blake + Milburn Stone + + Drama + + + TVPG + + + + Gunsmoke + Friend's Payoff + Matt helps a close friend who has been shot, but he is being deceived. + + James Arness + Amanda Blake + Milburn Stone + + Drama + + + TVPG + + + + Bonanza + A Time to Step Down + An aging trail hand, bitter after Little Joe asks Ben to give him an easier job, falls prey to a kidnapping scheme; guest Ed Begley. + + Lorne Greene + Michael Landon + Dan Blocker + + Drama + + + TVPG + + + + The Rifleman + End of a Young Gun + Lucas is forced to give refuge to a young bank robber. + + Chuck Connors + Johnny Crawford + Paul Fix + + Drama + + + TVG + + + + The Rifleman + The Marshal + Lucas gives a once-famous marshal a chance for rehabilitation. + + Chuck Connors + Johnny Crawford + Paul Fix + + Drama + + + TVG + + + + Wagon Train + The Vivian Carter Story + Vivian decides to leave the train to marry her true love. + + Ward Bond + Robert Horton + Frank McGrath + + Regular + + + TVG + + + + Adam-12 + Vendetta + Malloy and Reed cope with a tailor who wants vengeance, and a bar girl who tries to bilk a tourist. + + Martin Milner + Kent McCord + William Boyett + + Drama + + + TVPG + + + + Adam-12 + The Chaser + A private investigator follows a bail-jumper. + + Martin Milner + Kent McCord + William Boyett + + Drama + + + TVPG + + + + M*A*S*H + House Arrest + Frank demands that Hawkeye be court-martialed for hitting him in the O.R. + + Alan Alda + McLean Stevenson + Wayne Rogers + + Sitcom + History + + + TVPG + + + + M*A*S*H + Aid Station + Hawkeye and Hot Lips gain a new respect for each other after working at an aid station under heavy fire. + + Alan Alda + McLean Stevenson + Wayne Rogers + + Sitcom + History + + + TVPG + + + + M*A*S*H + Love and Marriage + Hawkeye and Trapper help one soldier join his pregnant wife and try to stop another from marrying a business girl. + + Alan Alda + McLean Stevenson + Wayne Rogers + + Sitcom + History + + + TVPG + + + + M*A*S*H + Big Mac + The camp prepares for a visit from Gen. Douglas MacArthur. + + Alan Alda + McLean Stevenson + Wayne Rogers + + Sitcom + History + + + TVPG + + + + The Andy Griffith Show + A Deal Is a Deal + Opie and his friends become involved in a scheme selling worthless salve. Barney and Gomer disguise themselves and head to Mount Pilot to fool two salve cons into buying all their salve back. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVG + + + + The Andy Griffith Show + Fun Girls + Two fun-loving girls from Mount Pilot interrupt Andy and Barney, who are working late doing inventory. They end up in hot water when Helen and Thelma Lou see them with the other girls. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVPG + + + + The Beverly Hillbillies + Sam Drucker's Visit + Sam Drucker, of. + + Buddy Ebsen + Irene Ryan + Donna Douglas + + Sitcom + + + TVG + + + + Green Acres + The Beeping Rock + A juvenile scientist claims to be in possession of a moon rock. + + Eddie Albert + Eva Gabor + Pat Buttram + + Sitcom + + + TVG + + + + Hogan's Heroes + Reverend Kommandant Klink + Hogan arranges a wedding for a French pilot and gets Klink to marry them. + + Bob Crane + Werner Klemperer + John Banner + + Sitcom + + + TVG + + + + Hogan's Heroes + The Most Escape-Proof Prison Camp I've Ever Escaped From + A British POW and escape artist ignores Hogan and plans to escape. + + Bob Crane + Werner Klemperer + John Banner + + Sitcom + + + TVG + + + + The Carol Burnett Show + Soupy Sales, Mel Torme, Ronald Reagan + Guests include Soupy Sales, Mel Torme and Ronald Reagan.Guests: Soupy Sales, Mel Torme, Ronald Reagan.. + + Carol Burnett + Harvey Korman + Lyle Waggoner + + Comedy + Variety + + + TVG + + + + Perry Mason + The Case of the Crafty Kidnapper + A witness of a columnist's murder refuses to testify; guests Cloris Leachman, Gary Collins. + + Raymond Burr + Barbara Hale + William Hopper + + Drama + + + TVPG + + + + The Twilight Zone + Uncle Simon + A wealthy old man makes life difficult for his greedy niece even after he dies. + + Cedric Hardwicke + Constance Ford + John McLiam + + Sci-Fi + + + TVPG + + + + Alfred Hitchcock Presents + The Avon Emeralds + A detective (Roger Moore) trails an elegant woman (Hazel Court) suspected of smuggling an emerald necklace. + + Roger Moore + Hazel Court + Gertrude Flynn + + Drama + + + TVPG + + + + Alfred Hitchcock Presents + The Kind Waitress + A waitress (Olive Deering) plots murder after learning she has been included in a wealthy patron's will. + + Rick Jason + Olive Deering + Celia Lovsky + + Drama + + + TVPG + + + + Mannix + Only Giants Can Play + A petty criminal's bizarre death may be connected to the gubernatorial campaign of Mannix's old rival; guest Slim Pickens. + + Mike Connors + Gail Fisher + + Drama + + + TVPG + + + + Cannon + The Deadly Conspiracy + Despite heavy evidence against him, Cannon takes on the case of a deliveryman charged with murder. + + William Conrad + + Drama + + + TVPG + + + + Barnaby Jones + The Deadly Jinx + The trail of a killer stalking a rich girl's suitors leads to a wheelchair-bound ex-boyfriend; guests Ida Lupino, Meredith Baxter. + + Buddy Ebsen + Lee Meriwether + John Carter + + Drama + + + TVG + + + + Highway Patrol + Released Convict + When he's released from prison, a parolee decides to retrieve his loot from the robbery that got him locked up. + + Broderick Crawford + + Drama + + + + Dragnet + Narcotics (DR-16) + A businessman assists Friday and Gannon in organizing the. + + Jack Webb + Harry Morgan + + Drama + + + TVPG + + + + Dragnet + Internal Affairs (DR-20) + A police officer recommended for the LAPD's Medal of Valor is accused of assaulting a civilian. + + Jack Webb + Harry Morgan + + Drama + + + TVPG + + + + My Three Sons + Whatever Happened to Baby Chip? + When Chip (Stanley Livingston) adopts a shoulder-length hairstyle, Steve (Fred MacMurray) decides he needs more attention. + + Fred MacMurray + Don Grady + Stanley Livingston + + Sitcom + + + TVG + + + + Toon in With Me + An Idol Mind + Bill tries to transform himself into a teen idol of yesteryear. + Comedy + + + TVPG + + + + Leave It to Beaver + The Poor Loser + Beaver feels personally slighted when circumstances prevent him from accompanying Ward and Wally to a baseball game. + + Hugh Beaumont + Barbara Billingsley + Tony Dow + + Sitcom + + + TVG + + + + Leave It to Beaver + Don Juan Beaver + Beaver accepts two invitations to the eighth-grade graduation dance. + + Hugh Beaumont + Barbara Billingsley + Tony Dow + + Sitcom + + + TVG + + + + Perry Mason + The Case of the Ominous Outcast + An orphan goes to a California town to search for relatives and winds up accused of murder; guest Denver Pyle. + + Raymond Burr + Barbara Hale + William Hopper + + Drama + + + TVG + + + + Matlock + Diary of a Perfect Murder + An Atlanta attorney and his daughter Charlene (Lori Lethin) defend a TV journalist charged with murder. + + Andy Griffith + Kene Holliday + + Drama + + + TVPG + + + + In the Heat of the Night + Discovery + Althea goes into a deep depression sparked by the suicide of a troubled student while his former girlfriend falls for a biker. + + Carroll O'Connor + Howard E. Rollins Jr. + Anne-Marie Johnson + + Drama + + + TVPG + + + + The Waltons + John's Crossroad + Grandma's medical bills and the mill's deterioration force John to work in Charlottesville. Directed by Richard Thomas. + + Richard Thomas + Ralph Waite + Michael Learned + + Drama + + + TVG + + + + Gunsmoke + The Blacksmith + A rancher and a bully disrupt a blacksmith's wedding by burning down his house. + + James Arness + Amanda Blake + Milburn Stone + + Drama + + + TVPG + + + + Gunsmoke + Small Water + Matt and Chester are threatened by a prisoner's family who swears he is innocent. + + James Arness + Amanda Blake + Milburn Stone + + Drama + + + TVPG + + + + Bonanza + The Pursued + A Mormon rancher (Eric Fleming) and his wives (Dina Merrill, Lois Nettleton) are persecuted by their small-town neighbors. + + Lorne Greene + Dan Blocker + Michael Landon + + Drama + + + TVG + + + + The Rifleman + The Brother-in-Law + Lucas has in-law trouble when his late wife's brother arrives in town. + + Chuck Connors + Johnny Crawford + Paul Fix + + Drama + + + TVG + + + + The Rifleman + Eight Hours to Die + Mark is kidnapped by a man who blames Lucas for his own son's death. + + Chuck Connors + Johnny Crawford + Paul Fix + + Drama + + + TVG + + + + Tales of the Gun + Japanese Guns of WWII + Japanese armaments were badly outdated as World War II began. + History + Documentary + + + TVG + + + + Tales of the Gun + The AK-47 + The simple and deadly Avtomat Kalashnikova 1947 assault rifle became one of the most widely used such weapons in the world soon after its introduction. + History + Documentary + + + TVG + + + + Declassified + Secrets of WWI + The story behind. + History + Documentary + + + TVPG + + + + Dogfights + Supersonic + The pursuit of greater speed defines the development of warplanes ranging from propeller-driven aircraft to high-performance jets. + History + Documentary + + + TVPG + + + + Tales of the Gun + Japanese Guns of WWII + Japanese armaments were badly outdated as World War II began. + History + Documentary + + + TVG + + + + Tales of the Gun + The AK-47 + The simple and deadly Avtomat Kalashnikova 1947 assault rifle became one of the most widely used such weapons in the world soon after its introduction. + History + Documentary + + + TVG + + + + To Be Announced + Programming to be announced. + Performing Arts + Music + + + TVPG + + + + Declassified + Secrets of WWI + The story behind. + History + Documentary + + + TVPG + + + + Dogfights + Supersonic + The pursuit of greater speed defines the development of warplanes ranging from propeller-driven aircraft to high-performance jets. + History + Documentary + + + TVPG + + + + Lock N' Load With R. Lee Ermey + Helicopters + The history of the helicopter, from its early days in Vietnam to its modern status. + History + Documentary + + + TVPG + + + + Tales of the Gun + Guns of Israel + Israel's fierce weapons include the Uzi, a submachine gun which set the standard for nearly 50 years. + History + Documentary + + + TVG + + + + Transform your home today, fast & easy! + Rotorazer is the world's greatest jigsaw, circular saw, band saw, tile saw and hacksaw all-in-one amazing easy to use tool! + Paid Program + + + + Help Israel & Ukraine + There is an urgent need to help Jews suffering in Israel, Ukraine, and around the world. Act now and support the International Fellowship of Christians and Jews in their lifesaving work. + Paid Program + + + + Home Title Theft is Real! Home Title Lock Protects Your Title 24/7 + When a criminal fraudulently transfers your home title to a fake identity and steals your title, no one will notify you. Not your county, not the police, not even your bank. Home Title Lock protects your title 24/7 from this this fast-growing crime. + Paid Program + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + Declassified + Secrets of WWI + The story behind. + History + Documentary + + + TVPG + + + + Dogfights + Supersonic + The pursuit of greater speed defines the development of warplanes ranging from propeller-driven aircraft to high-performance jets. + History + Documentary + + + TVPG + + + + Lock N' Load With R. Lee Ermey + Helicopters + The history of the helicopter, from its early days in Vietnam to its modern status. + History + Documentary + + + TVPG + + + + Tales of the Gun + Guns of Israel + Israel's fierce weapons include the Uzi, a submachine gun which set the standard for nearly 50 years. + History + Documentary + + + TVG + + + + Tales of the Gun + Japanese Guns of WWII + Japanese armaments were badly outdated as World War II began. + History + Documentary + + + TVG + + + + Tales of the Gun + The AK-47 + The simple and deadly Avtomat Kalashnikova 1947 assault rifle became one of the most widely used such weapons in the world soon after its introduction. + History + Documentary + + + TVG + + + + Declassified + Secrets of WWI + The story behind. + History + Documentary + + + TVPG + + + + Dogfights + Supersonic + The pursuit of greater speed defines the development of warplanes ranging from propeller-driven aircraft to high-performance jets. + History + Documentary + + + TVPG + + + + Lock N' Load With R. Lee Ermey + Helicopters + The history of the helicopter, from its early days in Vietnam to its modern status. + History + Documentary + + + TVPG + + + + Tales of the Gun + Guns of Israel + Israel's fierce weapons include the Uzi, a submachine gun which set the standard for nearly 50 years. + History + Documentary + + + TVG + + + + Lock N' Load With R. Lee Ermey + Pistols + Handgun history, from flintlock dueling pistols to modern-day machine pistols. + History + Documentary + + + TVPG + + + + The Lost Evidence + Battle of the Bulge + The elite troops of the 101st Airborne Division stand firm against a German assault force in Bastogne. + History + Documentary + + + TVPG + + + + MysteryQuest + Hitler's Escape + Testing a skull fragment that might provide evidence proving Adolf Hitler died in his Berlin bunker at the end of World War II rather than escaped as some believe. + History + Documentary + + + TVPG + + + + Patton 360 + Crushing the Third Reich + After Patton's troops invade Germany, a secret mission to rescue U.S. POWs goes horribly wrong; the Third Army liberates the Buchenwald death camp; Nazi Germany surrenders; Patton dies of injuries from a postwar car accident. + History + Documentary + + + TVPG + + + + Declassified + Tiananmen Square + The Chinese army massacres hundreds of student protesters in June 1989. + History + Documentary + + + TVPG + + + + Dogfights + Tuskegee Airmen + The Tuskegee Airmen of World War II. + History + Documentary + + + TVPG + + + + MysteryQuest + Hitler's Escape + Testing a skull fragment that might provide evidence proving Adolf Hitler died in his Berlin bunker at the end of World War II rather than escaped as some believe. + History + Documentary + + + TVPG + + + + Patton 360 + Crushing the Third Reich + After Patton's troops invade Germany, a secret mission to rescue U.S. POWs goes horribly wrong; the Third Army liberates the Buchenwald death camp; Nazi Germany surrenders; Patton dies of injuries from a postwar car accident. + History + Documentary + + + TVPG + + + + Declassified + Tiananmen Square + The Chinese army massacres hundreds of student protesters in June 1989. + History + Documentary + + + TVPG + + + + Dogfights + Tuskegee Airmen + The Tuskegee Airmen of World War II. + History + Documentary + + + TVPG + + + + Lock N' Load With R. Lee Ermey + Pistols + Handgun history, from flintlock dueling pistols to modern-day machine pistols. + History + Documentary + + + TVPG + + + + The Lost Evidence + Battle of the Bulge + The elite troops of the 101st Airborne Division stand firm against a German assault force in Bastogne. + History + Documentary + + + TVPG + + + + Larry King's Prostate Report - Secrets To Prostate Health Revealed + Larry King Investigates Prostate Supplements to determine which products work and which ones don't work and why. A must watch for all men over 45. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Help Israel & Ukraine + There is an urgent need to help Jews suffering in Israel, Ukraine, and around the world. Act now and support the International Fellowship of Christians and Jews in their lifesaving work. + Paid Program + + + + Stories of Love to the Rescue by Shriners Hospitals for Children® + Alec and Kaleb interview patients and their families, and how their lives have been changed because of the life-changing pediatric specialty care they received at Shriners Hospitals for Children®. + Paid Program + + + + Declassified + Tiananmen Square + The Chinese army massacres hundreds of student protesters in June 1989. + History + Documentary + + + TVPG + + + + Dogfights + Tuskegee Airmen + The Tuskegee Airmen of World War II. + History + Documentary + + + TVPG + + + + Lock N' Load With R. Lee Ermey + Pistols + Handgun history, from flintlock dueling pistols to modern-day machine pistols. + History + Documentary + + + TVPG + + + + The Lost Evidence + Battle of the Bulge + The elite troops of the 101st Airborne Division stand firm against a German assault force in Bastogne. + History + Documentary + + + TVPG + + + + MysteryQuest + Hitler's Escape + Testing a skull fragment that might provide evidence proving Adolf Hitler died in his Berlin bunker at the end of World War II rather than escaped as some believe. + History + Documentary + + + TVPG + + + + Patton 360 + Crushing the Third Reich + After Patton's troops invade Germany, a secret mission to rescue U.S. POWs goes horribly wrong; the Third Army liberates the Buchenwald death camp; Nazi Germany surrenders; Patton dies of injuries from a postwar car accident. + History + Documentary + + + TVPG + + + + Declassified + Tiananmen Square + The Chinese army massacres hundreds of student protesters in June 1989. + History + Documentary + + + TVPG + + + + Dogfights + Tuskegee Airmen + The Tuskegee Airmen of World War II. + History + Documentary + + + TVPG + + + + Lock N' Load With R. Lee Ermey + Pistols + Handgun history, from flintlock dueling pistols to modern-day machine pistols. + History + Documentary + + + TVPG + + + + The Lost Evidence + Battle of the Bulge + The elite troops of the 101st Airborne Division stand firm against a German assault force in Bastogne. + History + Documentary + + + TVPG + + + + Lock N' Load With R. Lee Ermey + Armored Vehicles + Gunny targets the history of armored vehicles ranging from tanks to personnel carriers; M8 Greyhound; German 251 halftrack; Bradley Fighting Vehicle; high-tech MRAPS. + History + Documentary + + + TVPG + + + + Inside the Soviet Military Machine + The True Story of the K-19 + A reactor accident threatens to destroy a Soviet submarine and kill all on board. + History + Documentary + + + TVPG + + + + Inside the Soviet Military Machine + The Anthrax Connection + The Soviets build a germ empire of over 40 facilities to churn out weapons as destructive as atom bombs. + History + Documentary + + + TVPG + + + + Inside the Soviet Military Machine + Dolphin Soldiers + The Soviet Union tries to create a squad of robo-dolphins remotely controlled by land-based commanders. + History + Documentary + + + TVPG + + + + Declassified + Viet Cong + The jungle warfare of the North Vietnamese Viet Cong. + History + Documentary + + + TVPG + + + + That's Impossible + Weather Warfare + An investigation into reports that technology is being developed to turn tornados, hurricanes, earthquakes, and tsunamis into weapons of mass destruction. + History + Documentary + + + TVPG + + + + Inside the Soviet Military Machine + The Anthrax Connection + The Soviets build a germ empire of over 40 facilities to churn out weapons as destructive as atom bombs. + History + Documentary + + + TVPG + + + + Inside the Soviet Military Machine + Dolphin Soldiers + The Soviet Union tries to create a squad of robo-dolphins remotely controlled by land-based commanders. + History + Documentary + + + TVPG + + + + Declassified + Viet Cong + The jungle warfare of the North Vietnamese Viet Cong. + History + Documentary + + + TVPG + + + + That's Impossible + Weather Warfare + An investigation into reports that technology is being developed to turn tornados, hurricanes, earthquakes, and tsunamis into weapons of mass destruction. + History + Documentary + + + TVPG + + + + Lock N' Load With R. Lee Ermey + Armored Vehicles + Gunny targets the history of armored vehicles ranging from tanks to personnel carriers; M8 Greyhound; German 251 halftrack; Bradley Fighting Vehicle; high-tech MRAPS. + History + Documentary + + + TVPG + + + + Inside the Soviet Military Machine + The True Story of the K-19 + A reactor accident threatens to destroy a Soviet submarine and kill all on board. + History + Documentary + + + TVPG + + + + Men's Health - All-Natural Secret for Prostate Health + Prosvent is a doctor formulated blend of rejuvenating herbs and nutrients that help protect overall prostate health. + Paid Program + + + + Larry King's Prostate Report - Secrets To Prostate Health Revealed + Larry King Investigates Prostate Supplements to determine which products work and which ones don't work and why. A must watch for all men over 45. + Paid Program + + + + Help Israel & Ukraine + There is an urgent need to help Jews suffering in Israel, Ukraine, and around the world. Act now and support the International Fellowship of Christians and Jews in their lifesaving work. + Paid Program + + + + The Coin Vault - your trusted source for coins and currency. + With a history that spans over 140 years, the popularity and impact of the Morgan Dollar has NOT waivered! Collect a piece of history with these stunning coins struck by the United States Mint! + Paid Program + + + + Declassified + Viet Cong + The jungle warfare of the North Vietnamese Viet Cong. + History + Documentary + + + TVPG + + + + That's Impossible + Weather Warfare + An investigation into reports that technology is being developed to turn tornados, hurricanes, earthquakes, and tsunamis into weapons of mass destruction. + History + Documentary + + + TVPG + + + + Lock N' Load With R. Lee Ermey + Armored Vehicles + Gunny targets the history of armored vehicles ranging from tanks to personnel carriers; M8 Greyhound; German 251 halftrack; Bradley Fighting Vehicle; high-tech MRAPS. + History + Documentary + + + TVPG + + + + Inside the Soviet Military Machine + The True Story of the K-19 + A reactor accident threatens to destroy a Soviet submarine and kill all on board. + History + Documentary + + + TVPG + + + + Inside the Soviet Military Machine + The Anthrax Connection + The Soviets build a germ empire of over 40 facilities to churn out weapons as destructive as atom bombs. + History + Documentary + + + TVPG + + + + Inside the Soviet Military Machine + Dolphin Soldiers + The Soviet Union tries to create a squad of robo-dolphins remotely controlled by land-based commanders. + History + Documentary + + + TVPG + + + + Declassified + Viet Cong + The jungle warfare of the North Vietnamese Viet Cong. + History + Documentary + + + TVPG + + + + That's Impossible + Weather Warfare + An investigation into reports that technology is being developed to turn tornados, hurricanes, earthquakes, and tsunamis into weapons of mass destruction. + History + Documentary + + + TVPG + + + + Lock N' Load With R. Lee Ermey + Armored Vehicles + Gunny targets the history of armored vehicles ranging from tanks to personnel carriers; M8 Greyhound; German 251 halftrack; Bradley Fighting Vehicle; high-tech MRAPS. + History + Documentary + + + TVPG + + + + Inside the Soviet Military Machine + The True Story of the K-19 + A reactor accident threatens to destroy a Soviet submarine and kill all on board. + History + Documentary + + + TVPG + + + + Winter Warriors + The U.S. Army's 10th Mountain Division was sent to Italy's Apennines during World War II to fight the well-entrenched Germans. + History + Documentary + + + TVG + + + + The Korean War: Fire & Ice + Making of a Blood Bath + An unexpected North Korean attack drives United Nations forces to the sea. + History + Documentary + + + TVPG + + + + The Korean War: Fire & Ice + Triumph to Tragedy + MacArthur launches a successful counteroffensive until Chinese troops intervene. + History + Documentary + + + TVPG + + + + The Korean War: Fire & Ice + Retreat From Hell + United Nations forces retreat from Chinese troops in freezing weather. + History + Documentary + + + TVPG + + + + The Korean War: Fire & Ice + Bitter Standoff + President Truman relieves Gen. MacArthur of duty; negotiations break a two-year stalemate. + History + Documentary + + + TVPG + + + + The Korean War: Fire & Ice + Making of a Blood Bath + An unexpected North Korean attack drives United Nations forces to the sea. + History + Documentary + + + TVPG + + + + The Korean War: Fire & Ice + Triumph to Tragedy + MacArthur launches a successful counteroffensive until Chinese troops intervene. + History + Documentary + + + TVPG + + + + The Korean War: Fire & Ice + Retreat From Hell + United Nations forces retreat from Chinese troops in freezing weather. + History + Documentary + + + TVPG + + + + The Korean War: Fire & Ice + Bitter Standoff + President Truman relieves Gen. MacArthur of duty; negotiations break a two-year stalemate. + History + Documentary + + + TVPG + + + + Winter Warriors + The U.S. Army's 10th Mountain Division was sent to Italy's Apennines during World War II to fight the well-entrenched Germans. + History + Documentary + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Larry King's Prostate Report - Secrets To Prostate Health Revealed + Larry King Investigates Prostate Supplements to determine which products work and which ones don't work and why. A must watch for all men over 45. + Paid Program + + + + Men's Health - All-Natural Secret for Prostate Health + Prosvent is a doctor formulated blend of rejuvenating herbs and nutrients that help protect overall prostate health. + Paid Program + + + + Pain Relief TV + Matt's pain from his 20 year old lost limb is solved. + Paid Program + + + + The Korean War: Fire & Ice + Retreat From Hell + United Nations forces retreat from Chinese troops in freezing weather. + History + Documentary + + + TVPG + + + + The Korean War: Fire & Ice + Bitter Standoff + President Truman relieves Gen. MacArthur of duty; negotiations break a two-year stalemate. + History + Documentary + + + TVPG + + + + Winter Warriors + The U.S. Army's 10th Mountain Division was sent to Italy's Apennines during World War II to fight the well-entrenched Germans. + History + Documentary + + + TVG + + + + The Korean War: Fire & Ice + Making of a Blood Bath + An unexpected North Korean attack drives United Nations forces to the sea. + History + Documentary + + + TVPG + + + + The Korean War: Fire & Ice + Triumph to Tragedy + MacArthur launches a successful counteroffensive until Chinese troops intervene. + History + Documentary + + + TVPG + + + + The Korean War: Fire & Ice + Retreat From Hell + United Nations forces retreat from Chinese troops in freezing weather. + History + Documentary + + + TVPG + + + + The Korean War: Fire & Ice + Bitter Standoff + President Truman relieves Gen. MacArthur of duty; negotiations break a two-year stalemate. + History + Documentary + + + TVPG + + + + Winter Warriors + The U.S. Army's 10th Mountain Division was sent to Italy's Apennines during World War II to fight the well-entrenched Germans. + History + Documentary + + + TVG + + + + Stealing the Superfortress + The Soviet Union copies the U.S. B-29 Superfortress, World War II's most advanced aircraft. + Specials + Documentary + + + TVPG + + + + Into the Blue + Four divers (Paul Walker, Jessica Alba, Scott Caan) cross paths with drug smugglers whose cargo plane has crashed near the site of underwater treasure. + + Paul Walker + Jessica Alba + Scott Caan + + 2005 + Movies + Adventure + + + TVPG + + + 2 + + + + Into the Blue 2: The Reef + Two professional divers (Chris Carmack, Laura Vandervoort) fight for their lives when they encounter criminals in Hawaiian waters. + + Chris Carmack + Laura Vandervoort + Marsha Thomason + + 2009 + Movies + Thriller + + + TVPG + + + + Frank Miller's Sin City + Lawmen, prostitutes (Devon Aoki, Alexis Bledel), a hulking thug and other sordid characters run amok in a crime-ridden metropolis. + + Jessica Alba + Devon Aoki + Alexis Bledel + + 2005 + Movies + Action + + + TV14 + + + 3 + + + + Frank Miller's Sin City + Lawmen, prostitutes (Devon Aoki, Alexis Bledel), a hulking thug and other sordid characters run amok in a crime-ridden metropolis. + + Jessica Alba + Devon Aoki + Alexis Bledel + + 2005 + Movies + Action + + + TV14 + + + 3 + + + + Knowing + A professor (Nicolas Cage) and his son obtain an encoded time-capsule document that lists every major disaster over the past 50 years and predicts a future global calamity. + + Nicolas Cage + Rose Byrne + Chandler Canterbury + + 2009 + Movies + Sci-Fi + + + TVG + + + 2 + + + + Gone Girl + A man (Ben Affleck) reports that his wife (Rosamund Pike) has gone missing on their fifth wedding anniversary, but his public portrait of their blissful union begins to crumble under police pressure and a growing media frenzy. + + Ben Affleck + Rosamund Pike + Neil Patrick Harris + + 2014 + Movies + Mystery + + + TVPG + + + 3 + + + + Rememory + An amateur sleuth steals a machine that can extract, record and play the memories of another person. He uses the device to try and solve the mysterious death of the man who invented it. + + Peter Dinklage + Julia Ormond + Martin Donovan + + 2017 + Movies + Sci-Fi + + + + Under the Same Moon + After his grandmother dies, a Mexican boy (Adrian Alonso) sets out to join his mother (Kate del Castillo) in the United States. + + Adrian Alonso + Kate del Castillo + Eugenio Derbez + + 2007 + Movies + Drama + + + TVG + + + 3 + + + + Humpday + Two longtime buddies (Mark Duplass, Joshua Leonard) decide to sleep together and record the encounter for a homemade sex-film festival. + + Mark Duplass + Joshua Leonard + Alycia Delmore + + 2009 + Movies + Comedy + + + TVPG + + + 3 + + + + Dumb and Dumber To + Witless wonders Lloyd Christmas (Jim Carrey) and Harry Dunne (Jeff Daniels) go on a road trip to find the daughter that Harry never knew he had. + + Jim Carrey + Jeff Daniels + Kathleen Turner + + 2014 + Movies + Comedy + + + TVG + + + 2 + + + + Mermaids + A teen (Winona Ryder) is caught in an emotional tug-of-war as she tries to deal with both her first love and an unconventional mother. + + Cher + Winona Ryder + Bob Hoskins + + 1990 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + The Importance of Being Earnest + Complications arise after two bachelors (Rupert Everett, Colin Firth) make use of the same pseudonym in 19th-century England. + + Rupert Everett + Colin Firth + Frances O'Connor + + 2002 + Movies + Comedy + Drama + + + TVG + + + 2 + + + + The Animal + When an inept policeman (Rob Schneider) receives animal organs as transplants, he begins to exhibit traits of the donors. + + Rob Schneider + Colleen Haskell + John C. McGinley + + 2001 + Movies + Comedy + + + TVG + + + 1 + + + + My Boss's Daughter + To impress a young woman (Tara Reid), a man (Ashton Kutcher) agrees to housesit at his employer's mansion for one night. + + Ashton Kutcher + Tara Reid + Jeffrey Tambor + + 2003 + Movies + Romance + + + TVG + + + 1 + + + + Evan Almighty + A newly elected congressman (Steve Carell) faces a crisis of biblical proportions when God (Morgan Freeman) commands him to build an ark. + + Steve Carell + Morgan Freeman + Lauren Graham + + 2007 + Movies + Children + + + TVG + + + 2 + + + + Don Jon + A New Jersey bartender (Joseph Gordon-Levitt) embarks on his first genuine relationship with a woman (Scarlett Johansson), but his constant craving for Internet porn threatens to bring things crashing down. + + Joseph Gordon-Levitt + Scarlett Johansson + Julianne Moore + + 2013 + Movies + Romance + + + TV14 + + + 3 + + + + The Company Men + A young executive (Ben Affleck) and two older employees struggle to find work and redefine their priorities after losing their jobs in a wave of corporate downsizing. + + Ben Affleck + Chris Cooper + Kevin Costner + + 2010 + Movies + Drama + + + TVG + + + 3 + + + + The Maze Runner + A teen awakes within a massive maze with other teens, with no memory of his past other than dreams about an organization known as WCKD. He hopes to escape by piecing together fragments of his past and clues he discovers in the labyrinth. + + Dylan O'Brien + Kaya Scodelario + Aml Ameen + + 2014 + Movies + Sci-Fi + + + TVPG + + + 2 + + + + The Maze Runner + A teen awakes within a massive maze with other teens, with no memory of his past other than dreams about an organization known as WCKD. He hopes to escape by piecing together fragments of his past and clues he discovers in the labyrinth. + + Dylan O'Brien + Kaya Scodelario + Aml Ameen + + 2014 + Movies + Sci-Fi + + + TVPG + + + 2 + + + + Eastern Promises + A chain of murder and retribution uncoils when a man (Viggo Mortensen) who is tied to a crime family in London crosses paths with a resolute midwife (Naomi Watts). + + Viggo Mortensen + Naomi Watts + Vincent Cassel + + 2007 + Movies + Crime Story + + + TV14 + + + 3 + + + + Revenge of the Green Dragons + A Chinese emigrant (Justin Chon) and his best friend (Kevin Wu) rise through the ranks of one of New York's most-powerful street gangs. + + Justin Chon + Kevin Wu + Harry Shum Jr. + + 2014 + Movies + Action + + + TVPG + + + 2 + + + + Appaloosa + The arrival of an attractive widow complicates the attempts of two lawmen (Ed Harris, Viggo Mortensen) to bring a malevolent rancher to justice. + + Ed Harris + Viggo Mortensen + Renée Zellweger + + 2008 + Movies + Western + + + TVG + + + 3 + + + + Never Say Never Again + Aging agent 007 (Sean Connery) seeks hijacked warheads and finds SPECTRE's Largo (Klaus Maria Brandauer) and Fatima Blush (Barbara Carrera). + + Sean Connery + Klaus Maria Brandauer + Barbara Carrera + + 1983 + Movies + Action + + + TVG + + + 3 + + + + Killer Elite + A formidable special-ops agent (Jason Statham) must cut his way through a team of assassins to rescue his kidnapped mentor (Robert De Niro). + + Jason Statham + Robert De Niro + Clive Owen + + 2011 + Movies + Action + + + TVPG + + + 2 + + + + Pride and Glory + Duty and family loyalties come into conflict when a detective (Edward Norton) and his brother-in-law (Colin Farrell) probe a failed drug bust in which a fellow cop and family member lost four men. + + Edward Norton + Colin Farrell + Jon Voight + + 2008 + Movies + Crime Story + + + TVPG + + + 2 + + + + Taken 3 + After he's framed for the murder of his beloved ex-wife, ex-covert operative Bryan Mills (Liam Neeson) channels his rage and particular set of skills into taking revenge on the real killers and protecting his daughter. + + Liam Neeson + Forest Whitaker + Maggie Grace + + 2014 + Movies + Action + + + TVPG + + + 2 + + + + Push + A 13-year-old clairvoyant (Dakota Fanning) and the son (Chris Evans) of a murdered assassin join forces against a covert government agency that dabbles in psychic drugs and warfare. + + Chris Evans + Dakota Fanning + Camilla Belle + + 2009 + Movies + Thriller + + + TVG + + + 1 + + + + Greta + Frances strikes up a seemingly harmless friendship with Greta, a lonely and kindly widow who enjoys her company. But when Greta's behavior becomes increasingly erratic and obsessive, Frances does whatever it takes to end the toxic relationship. + + Isabelle Huppert + Chloë Grace Moretz + Maika Monroe + + 2018 + Movies + Thriller + + + TVPG + + + 2 + + + + Timeline + Adventurers (Paul Walker, Frances O'Connor, Gerard Butler) travel back to 14th-century France to save a professor caught in the middle of a war. + + Paul Walker + Frances O'Connor + Gerard Butler + + 2003 + Movies + Adventure + + + TVG + + + 2 + + + + Limitless + An unemployed writer (Bradley Cooper) rises to the top of the financial world after an experimental drug gives him extraordinary mental acuity. + + Bradley Cooper + Robert De Niro + Abbie Cornish + + 2011 + Movies + Thriller + + + TVPG + + + 2 + + + + Signs + With the help of his brother (Joaquin Phoenix), a Pennsylvanian (Mel Gibson) investigates the appearance of 500-foot-diameter circles in his crop fields. + + Mel Gibson + Joaquin Phoenix + Cherry Jones + + 2002 + Movies + Thriller + + + TVG + + + 3 + + + + The Witch + In 1630 New England, members of a farming family suspect the oldest daughter of witchcraft when the youngest son suddenly vanishes. + + Anya Taylor-Joy + Ralph Ineson + Kate Dickie + + 2015 + Movies + Horror + + + TVPG + + + 3 + + + + The Witch + In 1630 New England, members of a farming family suspect the oldest daughter of witchcraft when the youngest son suddenly vanishes. + + Anya Taylor-Joy + Ralph Ineson + Kate Dickie + + 2015 + Movies + Horror + + + TVPG + + + 3 + + + + The Longest Ride + As conflicting paths test their bond, a couple (Scott Eastwood, Britt Robertson) find inspiration in the romantic tales of an elderly man (Alan Alda) whose great love for his wife stood the test of time. + + Scott Eastwood + Britt Robertson + Alan Alda + + 2015 + Movies + Drama + + + TVG + + + 2 + + + + Ghost + A slain Manhattan yuppie (Patrick Swayze) reaches out to his lover (Demi Moore), with a medium (Whoopi Goldberg) as his middlewoman. + + Patrick Swayze + Demi Moore + Whoopi Goldberg + + 1990 + Movies + Fantasy + + + TVG + + + 3 + + + + Walk the Line + Johnny Cash (Joaquin Phoenix) forms an enduring bond with June Carter (Reese Witherspoon) and struggles with drug addiction on the way to music stardom. + + Joaquin Phoenix + Reese Witherspoon + Ginnifer Goodwin + + 2005 + Movies + History + + + TVG + + + 3 + + + + Across the Universe + Songs by the Beatles illustrate a tale of two star-crossed lovers (Evan Rachel Wood, Jim Sturgess) swept up by the 1960s counterculture and the anti-war movement. + + Evan Rachel Wood + Jim Sturgess + Joe Anderson + + 2007 + Movies + Musical + + + TVG + + + 2 + + + + Dying of the Light + Forced into retirement and terminally ill, a CIA agent gets word that his longtime nemesis has resurfaced, so he sets out on a personal mission to kill him. + + Nicolas Cage + Anton Yelchin + Alexander Karim + + 2014 + Movies + Action + + + TVPG + + + 1 + + + + Wonderland + In debt and addicted to drugs, porn star John Holmes (Val Kilmer) becomes implicated in a quadruple homicide in Los Angeles. + + Val Kilmer + Kate Bosworth + Lisa Kudrow + + 2003 + Movies + Crime Story + + + 2 + + + + The Captive + Eight years after a child disappeared without a trace, detectives find disturbing clues that indicate that the girl is still alive. + + Ryan Reynolds + Rosario Dawson + Mireille Enos + + 2014 + Movies + Thriller + + + TVPG + + + 2 + + + + Vendetta + After the murder of his wife, a tough-as-nails detective (Dean Cain) infiltrates a prison and uncovers a criminal enterprise. + + Dean Cain + Paul + + 2015 + Movies + Action + + + TVPG + + + + Ingrid Goes West + Desperate for human contact, an obsessive young woman moves to Venice Beach, Calif., to strike up a friendship with a social media celebrity. + + Aubrey Plaza + Elizabeth Olsen + O'Shea Jackson Jr. + + 2017 + Movies + Comedy + Drama + + + TVPG + + + 3 + + + + Little Woods + In North Dakota, two estranged sisters are driven to extremes when their mother dies, leaving them with one week to pay back her mortgage. + + Tessa Thompson + Lily James + Luke Kirby + + 2018 + Movies + Drama + + + TVPG + + + + Knowing + A professor (Nicolas Cage) and his son obtain an encoded time-capsule document that lists every major disaster over the past 50 years and predicts a future global calamity. + + Nicolas Cage + Rose Byrne + Chandler Canterbury + + 2009 + Movies + Sci-Fi + + + TVG + + + 2 + + + + Man on Fire + In Mexico City, a former assassin swears vengeance on those who committed an unspeakable act against the family he was hired to protect. + + Denzel Washington + Dakota Fanning + Christopher Walken + + 2004 + Movies + Crime Story + + + TVPG + + + 2 + + + + Man on Fire + In Mexico City, a former assassin swears vengeance on those who committed an unspeakable act against the family he was hired to protect. + + Denzel Washington + Dakota Fanning + Christopher Walken + + 2004 + Movies + Crime Story + + + TVPG + + + 2 + + + + Barely Lethal + Seeking a normal adolescence, a special-operations agent (Hailee Steinfeld) fakes her own death and enrolls in high school as an exchange student. + + Hailee Steinfeld + Jessica Alba + Samuel L. Jackson + + 2015 + Movies + Action + + + TVG + + + + Hit & Run + A former getaway driver (Dax Shepard) finds feds and his former gang members on his tail when he breaks out of the Witness Protection Program to help his girlfriend (Kristen Bell) get to Los Angeles. + + Dax Shepard + Kristen Bell + Bradley Cooper + + 2012 + Movies + Comedy + + + TVPG + + + 2 + + + + A Night at the Roxbury + Desperate to meet women and open their own dance club, brainless brothers Steve (Will Ferrell) and Doug Butabi (Chris Kattan) cruise Beverly Hills. + + Will Ferrell + Chris Kattan + Molly Shannon + + 1998 + Movies + Comedy + + + TVG + + + 1 + + + + Dickie Roberts: Former Child Star + Hoping to make a comeback, a man (David Spade) stays with a suburban family to prepare for the lead role in a Rob Reiner film. + + David Spade + Mary McCormack + Jon Lovitz + + 2003 + Movies + Comedy + + + TVG + + + 2 + + + + Cheech & Chong's The Corsican Brothers + Twin sons (Cheech Marin, Thomas Chong) of a noblewoman and a commoner have funny feelings during the French Revolution. + + Cheech Marin + Tommy Chong + Roy Dotrice + + 1984 + Movies + Comedy + + + TVG + + + 2 + + + + Skin Can Breathe + A gay teen tries to adjust to a new life after moving from Cambodia to America with his mother. + Specials + Drama + + + TV14 + + + + The Goods: Live Hard. Sell Hard. + In town to save a struggling car dealership from bankruptcy, a high-powered salesman (Jeremy Piven) unexpectedly falls in love and finds his soul. + + Jeremy Piven + Ving Rhames + James Brolin + + 2009 + Movies + Comedy + + + TVPG + + + 2 + + + + Ingrid Goes West + Desperate for human contact, an obsessive young woman moves to Venice Beach, Calif., to strike up a friendship with a social media celebrity. + + Aubrey Plaza + Elizabeth Olsen + O'Shea Jackson Jr. + + 2017 + Movies + Comedy + Drama + + + TVPG + + + 3 + + + + Hot Summer Nights + An awkward teenager gets in over his head dealing drugs while falling for his business partner's enigmatic sister during one scorching summer in Cape Cod, Mass. + + Timothée Chalamet + Alex Roe + Maika Monroe + + 2017 + Movies + Thriller + + + 2 + + + + The Answer Man + The grouchy, reclusive author (Jeff Daniels) of an enormously popular book on spirituality falls in love with his sunny chiropractor (Lauren Graham). + + Jeff Daniels + Lauren Graham + Lou Taylor Pucci + + 2009 + Movies + Romance + + + TVG + + + 2 + + + + Dumb and Dumber To + Witless wonders Lloyd Christmas (Jim Carrey) and Harry Dunne (Jeff Daniels) go on a road trip to find the daughter that Harry never knew he had. + + Jim Carrey + Jeff Daniels + Kathleen Turner + + 2014 + Movies + Comedy + + + TVG + + + 2 + + + + Balls of Fury + A disgraced pingpong player (Dan Fogler) bounces back to go under cover for the government and bring a notorious crime lord (Christopher Walken) to justice. + + Dan Fogler + Christopher Walken + George Lopez + + 2007 + Movies + Comedy + + + TVG + + + 2 + + + + FantomWorks + Night Prowler + A modified 1965 Chevrolet Impala looks cool but is impossible to drive; a 1967 Corvette arrives with a massive list of repairs that needs to be done. + Reality TV + Automotive + + + TV14 + + + + FantomWorks + One Tough Customer + Robby wants to convert Dan's 1926 Ford Model T into a far more rare 1914 C-cab; a man's 1969 Chevrolet Camaro convertible is an accident waiting to happen. + Reality TV + Automotive + + + TV14 + + + + FantomWorks + One Salty Shelby + Severe salt corrosion nearly destroys a bright orange 1970 Shelby GT500; getting a rare 1970 Chrysler 300 Hurst into shape proves to be a challenge. + Reality TV + Automotive + + + TV14 + + + + Garage Squad + A Charger Tribute + This father-son project took a tragic turn to become a father-only project; the Garage Squad tackles this '70 Charger as a tribute car to the entire family. + Reality TV + Instructional + + + TVPG + + + + FantomWorks + One Tough Customer + Robby wants to convert Dan's 1926 Ford Model T into a far more rare 1914 C-cab; a man's 1969 Chevrolet Camaro convertible is an accident waiting to happen. + Reality TV + Automotive + + + TV14 + + + + FantomWorks + One Salty Shelby + Severe salt corrosion nearly destroys a bright orange 1970 Shelby GT500; getting a rare 1970 Chrysler 300 Hurst into shape proves to be a challenge. + Reality TV + Automotive + + + TV14 + + + + FantomWorks + One Salty Shelby + Severe salt corrosion nearly destroys a bright orange 1970 Shelby GT500; getting a rare 1970 Chrysler 300 Hurst into shape proves to be a challenge. + Reality TV + Automotive + + + TV14 + + + + Garage Squad + A Charger Tribute + This father-son project took a tragic turn to become a father-only project; the Garage Squad tackles this '70 Charger as a tribute car to the entire family. + Reality TV + Instructional + + + TVPG + + + + FantomWorks + Night Prowler + A modified 1965 Chevrolet Impala looks cool but is impossible to drive; a 1967 Corvette arrives with a massive list of repairs that needs to be done. + Reality TV + Automotive + + + TV14 + + + + Junkyard Empire + A New Day, a New Dollar + Andy stumbles across a Mercedes-Benz SL55 AMG that he hopes to flip, but soon realizes that he may have bitten off more than he can chew; Andy's father manages to turn a marketing idea into a mess. + Reality TV + Automotive + + + TVPG + + + + Junkyard Empire + Upgrade and Upsell + Andy hopes to secure future business for years to come by completing a promised build, and has the opportunity to boost his own collection with some help from his father. + Reality TV + Automotive + + + TVPG + + + + Roadkill + Barnfind Firebird vs. Crusher Camaro! + Editors from Hot Rod Magazine put junky hot rods and trashed muscle cars to the test. + Reality TV + Automotive + + + TVPG + + + + Iron Resurrection + Good to Go GTO + Known for its sizzling performance and smooth body style, the 1969 Pontiac GTO is one of the fastest cars of its time; now, Joe gives it his signature twist with body modifications and a new power train that will have its wide tires smoking hot. + Reality TV + Automotive + + + TVPG + + + + LOKAR Car Show + Grand National F-100 + The largest F-100 Show in the country is back in Pigeon Forge, Tennessee. + Sports + Automotive + + + + Motorhead Garage + A Parade of Aftermarket Accessories and Parts for Your Vehicle + Chipola College instructor and master mechanic John Gardner and automotive journalist Dave Dobson modify cars, trucks, ATV's, and motorcycles, explaining how to install the latest in custom aftermarket equipment. + Automotive + Instructional + + + TVG + + + + Caffeine & Octane + A Bandolero Racer's Progression to the Legends Race Series and Beyond + Build it and they will come with street-legal, hand-built stock cars; a Bandolero Racer progresses to the Legends Race Series and beyond. + Automotive + + + TV14 + + + + Engine Masters + Iron vs. Aluminum Heads: A Study of Heat + The guys try to shed light on whether iron or aluminum heads will deliver more power; they'll look at weight savings and heat retention's effect on cylinder pressure. + Automotive + + + TVPG + + + + Two Guys Garage + Chevy OBS + Old body style trucks are becoming more and more popular, and today the guys are fortunate to have one in the shop; they swap in an LS engine, pick a system to control timing and fuel, and fix up a few accessories to make it look and run great again. + Automotive + Reality TV + + + TVPG + + + + Truck U + Bronco Options + Today the focus is on the Ford Bronco; Matt and Bruno show some of the great options available to make a Bronco unique; they take a stock Outer Banks and make it stand out in a crowd with just a few common upgrades. + Automotive + Instructional + + + TVPG + + + + Car Fix + SS Ten + Fuller and Bumpus bring in a very clean S-10 and build a custom roll pan for it; they finish the AC system that Fuller had already started, and then they show how to lock up the rear end and do smoky burnouts. + Automotive + Instructional + + + TVPG + + + + All Girls Garage + Monte Mice Motel + This Monte Carlo was on its way to being one awesome street machine until disaster struck; mice made a home of it and destroyed the interior; Bogi and Faye replace the interior and try to fire it up for the first time in a few years. + Reality TV + Automotive + + + TVPG + + + + Shorty's Dream Shop + Spicy Stock '67 Nova + Transforming an abandoned 1967 Nova; stocking a new motor, transmission, interior and paint. + Automotive + + + TVG + + + + Garage Squad + Funny Business + The crew attempts to take a 1967 Chevrolet Nova nostalgia funny car down the track as a memorial to the owner's late father. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + Chevy Four-by-Fix + After a terrible tragedy, getting a 1967 4x4 outside and into the mud means a lot to a family. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + GT-Oh No + Once a quarter-mile drag racer, a 1968 Pontiac GTO that has been sitting in a garage for over two decades is prepared for a second act as a family cruiser. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + Freeing a Ford F3 + A farm family tries to save its grandfather's cherished 1950 Ford F3 that has been sitting in a barn for 47 years. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + Camaro Comeback + A vandalized 1969 Chevrolet Camaro attempts to make a comeback after 27 years on blocks. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + Foul Fairlane + After a devastating engine fire and the onset of some serious health issues, the owner of a 1966 Ford Fairlane dreams of having his beauty rumble back to life. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + A Tri-Five Comes Alive + Two brothers bring in a Chevrolet Tri-Five that has been in their family for decades but has not moved in 17 years; the Squad attempts to get the vehicle back on the road. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + Double Trouble + The Squad tries to resurrect a Mustang for the owner's wife while also struggling to get a GTO street legal. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + Malibu Mayhem + After an American hero loses his battle with PTSD, the Squad teams up with his father to restore the 1968 Chevrolet Malibu his son bought on eBay while deployed in Iraq. + Reality TV + Instructional + + + TVPG + + + + Hot Rod Garage + From Dust to Dust + The MythDuster's early Gen III Hemi has been resting in pieces ever since Engine Masters gave it a lackluster report card; Alex and Lucky upgrade the engine with much-improved heads to get the MythDuster making some actual power and passes. + Automotive + + + TVPG + + + + Hot Rod Garage + Hot Tater!! + Roadkill Garage's old project Tater Truck has been loafing around the offices for years, begging for some love; Alex and Lucky decide what to do with this sluggish, tired and granny-geared F-250. + Automotive + + + TVPG + + + + Garage Squad + Malibu Mayhem + After an American hero loses his battle with PTSD, the Squad teams up with his father to restore the 1968 Chevrolet Malibu his son bought on eBay while deployed in Iraq. + Reality TV + Instructional + + + TVPG + + + + Hot Rod Garage + From Dust to Dust + The MythDuster's early Gen III Hemi has been resting in pieces ever since Engine Masters gave it a lackluster report card; Alex and Lucky upgrade the engine with much-improved heads to get the MythDuster making some actual power and passes. + Automotive + + + TVPG + + + + Hot Rod Garage + Hot Tater!! + Roadkill Garage's old project Tater Truck has been loafing around the offices for years, begging for some love; Alex and Lucky decide what to do with this sluggish, tired and granny-geared F-250. + Automotive + + + TVPG + + + + Garage Squad + Double Trouble + The Squad tries to resurrect a Mustang for the owner's wife while also struggling to get a GTO street legal. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + Busted Duster + A race against time to take a shell of a 1970 Duster and get it ready to be the VIP at the owners upcoming wedding. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + Funny Business + The crew attempts to take a 1967 Chevrolet Nova nostalgia funny car down the track as a memorial to the owner's late father. + Reality TV + Instructional + + + TVPG + + + + Iron Resurrection + Hardcore Softail + The team tackles a custom Softail from the ground up; Shag and Amanda discover a 1947 International milk truck in need of repair; a customer brings in a 1955 Chevy race car. + Reality TV + Automotive + + + TVPG + + + + Junkyard Empire + A Pack Rat, a Rat Rod, and a Bug + Andy finds a 1931 Ford Model A that looks like it just drove out of a mobster film and a 1963 Volkswagen Bug that needs some love. + Reality TV + Automotive + + + TVPG + + + + Garage Squad + 93 Typhoon + A battered 1993 GMC Typhoon is saved from some crooked mechanics and its turbocharged bite is restored. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + 56 Ford Truck + A 1956 Ford pickup is removed from a corn crib and returned to the road. + Reality TV + Instructional + + + TVPG + + + + Overhaulin' + Sarah's Skylark + The team transforms a 1965 Buick Skylark convertible belonging to a Sunday-school teacher. + Reality TV + Instructional + + + TVG + + + + Overhaulin' + Bill's 1965 Mustang Fastback + A man's dream of restoring his 1965 Mustang Fastback is shattered when thieves steal his tools and auto parts; Chip and the team transform the vehicle into a Shelby-style stunner. + Reality TV + Instructional + + + TVG + + + + Overhaulin' + Scott's 1967 Chevy Pickup Truck + Chip and the team overhaul a 1967 Chevrolet C10 for a man who does not have the time or resources to restore his truck. + Reality TV + Instructional + + + TVG + + + + Overhaulin' + Victor's 1967 Ford Bronco + A fireman hopes to share his 1967 Ford Bronco and love of the outdoors with his three young children. + Reality TV + Instructional + + + TVG + + + + Overhaulin' + Ricky's New Impala + An active duty U.S. Navy Explosives Ordinance Disposal Technician who works with underwater bombs admits to being a big fan of the show. + Reality TV + Instructional + + + TVPG + + + + Overhaulin' + Efrain's Olds 442 + Chip and the A-Team join the three sons of a hardworking businessman to transform his 1970 Oldsmobile 442. + Reality TV + Instructional + + + TVPG + + + + Overhaulin' + Lanny's '67 Ford Fairlane GTA + A water district sanitation technician dreams of fixing up the 1967 Ford Fairlane GTA that he purchased from the vehicle's original owner 16 years earlier. + Reality TV + Instructional + + + TVPG + + + + Junkyard Empire + A Pack Rat, a Rat Rod, and a Bug + Andy finds a 1931 Ford Model A that looks like it just drove out of a mobster film and a 1963 Volkswagen Bug that needs some love. + Reality TV + Automotive + + + TVPG + + + + Garage Squad + 93 Typhoon + A battered 1993 GMC Typhoon is saved from some crooked mechanics and its turbocharged bite is restored. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + 56 Ford Truck + A 1956 Ford pickup is removed from a corn crib and returned to the road. + Reality TV + Instructional + + + TVPG + + + + FantomWorks + Buyer Beware + The crew faces a puzzle of rust and rotted wood as it attempts to restore a 1917 Overland; Dan purchases a 1968 Camaro on the Internet. + Reality TV + Automotive + + + TV14 + + + + Bitchin' Rides + A Caldera-What? + An old build is back for new customizations, an interior revamp and a new name; with Kevin headed out of town, Dave tries to sneak a new and personal project through the doors. + Reality TV + Automotive + + + TVPG + + + + Bitchin' Rides + It Sounds Bitchin'. Let's Make It Look Bitchin' + A 1968 Chevrolet Camaro has a new owner who wants to finish off the build with a new front valance, rear spoiler and fresh paint; a 1965 Ford Mustang with mechanical issues gets an upgrade. + Reality TV + Automotive + + + TVPG + + + + Bitchin' Rides + A Bitchin' Off-Road Warrior + The Bronco's owner is lukewarm on Dave's radical idea for the interior; Dave must resist going too far with this build so they can actually enjoy it on dirt roads without feeling like they're beating up a museum piece. + Reality TV + Automotive + + + TVPG + + + + Bitchin' Rides + A Whole New Game + Dave has been interested in dipping his feet in the electric car world, and with his CF1s providing the perfect canvas. Turning this into reality will take a new level of engineering and learning a new automotive language. + Reality TV + Automotive + + + TVPG + + + + Bitchin' Rides + Who Gets Number One? + Dave and the guys at Kindig-It proved they could execute Dave's vision of his production Corvette, but now that a few have sold, they have to get them completely finished. + Reality TV + Automotive + + + TVPG + + + + Bitchin' Rides + A Bitchin' Off-Road Warrior + The Bronco's owner is lukewarm on Dave's radical idea for the interior; Dave must resist going too far with this build so they can actually enjoy it on dirt roads without feeling like they're beating up a museum piece. + Reality TV + Automotive + + + TVPG + + + + Bitchin' Rides + A Whole New Game + Dave has been interested in dipping his feet in the electric car world, and with his CF1s providing the perfect canvas. Turning this into reality will take a new level of engineering and learning a new automotive language. + Reality TV + Automotive + + + TVPG + + + + Bitchin' Rides + Who Gets Number One? + Dave and the guys at Kindig-It proved they could execute Dave's vision of his production Corvette, but now that a few have sold, they have to get them completely finished. + Reality TV + Automotive + + + TVPG + + + + Bitchin' Rides + It Sounds Bitchin'. Let's Make It Look Bitchin' + A 1968 Chevrolet Camaro has a new owner who wants to finish off the build with a new front valance, rear spoiler and fresh paint; a 1965 Ford Mustang with mechanical issues gets an upgrade. + Reality TV + Automotive + + + TVPG + + + + Bitchin' Rides + A Caldera-What? + An old build is back for new customizations, an interior revamp and a new name; with Kevin headed out of town, Dave tries to sneak a new and personal project through the doors. + Reality TV + Automotive + + + TVPG + + + + FantomWorks + Buyer Beware + The crew faces a puzzle of rust and rotted wood as it attempts to restore a 1917 Overland; Dan purchases a 1968 Camaro on the Internet. + Reality TV + Automotive + + + TV14 + + + + Iron Resurrection + Barbecued Bird + Joe and the team work on a 1973 Pontiac Firebird that was damaged by fire; a waterlogged engine puts the brakes on the build. + Reality TV + Automotive + + + TVPG + + + + Junkyard Empire + Crushing Cars & Taking Names + An iconic piece of military history rolls into the yard, along with a dinosaur-sized bulldozer that no one quite knows what to do with. + Reality TV + Automotive + + + TVPG + + + + Garage Squad + 69 Super Bee + Recent tinkering has an adverse effect on a 1969 Dodge Super Bee that was in storage for a couple of decades. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + 63 Porsche + Good old American ingenuity is needed to repair a 1963 Porsche 356 that has been parked for years and lost its edge. + Reality TV + Instructional + + + TVPG + + + + Wheeler Dealers: Dream Car + Tony's Dream Land Rover 2A + Ex-Paratrooper Tony, 42, has spent his life around Land Rovers, but he's never managed to put a fighting fund together to buy his dream car, a 1960s short wheelbase series 2A; Mike and Elvis begin their trading journey with Tony's Mini Cooper. + Reality TV + Automotive + + + + Wheeler Dealers: Dream Car + Chris's Dream Ford Escort Mk2 + Chris works at a classic Ford workshop, surrounded by all the models he loves; his dream car is a Ford Escort Mk2, but these are now way out of his price range. + Reality TV + Automotive + + + + Wheeler Dealers: Dream Car + Harlen's Dream Nissan Skyline + Harlen wants to get behind the wheel of the iconic Nissan Skyline, his favorite video gaming car, but the mature student has put all his cash into paying his way through college. + Reality TV + Automotive + + + + Wheeler Dealers: Dream Car + Adam's Dream TVR Cerbera + Mike attempts to secure a TVR Cerbera for electrical engineer Adam. + Reality TV + Automotive + + + + Wheeler Dealers: Dream Car + Jess's Dream VW Golf GTi + Support teacher Jess, 37, has always loved the VW Golf GTI, but it's out of her price range; with a Ford Fiesta and £1000 in cash, Mike needs to do some serious trading to get the modern GTI Jess craves. + Reality TV + Automotive + + + + Wheeler Dealers: Dream Car + Tom's Dream DeLorean + Cattle farmer Tom has always dreamed of driving a DeLorean. + Reality TV + Automotive + + + + Wheeler Dealers: Dream Car + Deepak's Dream Porsche Cayenne + Mike sets out to acquire a police officer's dream car: a Porsche Cayenne. + Reality TV + Automotive + + + + Junkyard Empire + Crushing Cars & Taking Names + An iconic piece of military history rolls into the yard, along with a dinosaur-sized bulldozer that no one quite knows what to do with. + Reality TV + Automotive + + + TVPG + + + + Garage Squad + 69 Super Bee + Recent tinkering has an adverse effect on a 1969 Dodge Super Bee that was in storage for a couple of decades. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + 63 Porsche + Good old American ingenuity is needed to repair a 1963 Porsche 356 that has been parked for years and lost its edge. + Reality TV + Instructional + + + TVPG + + + + FantomWorks + Size Does Matter + The restoration of a C10 gets ugly when the pickup's paint is removed; a Heinkel arrives with mismatched scooter parts. + Reality TV + Automotive + + + TV14 + + + + Bitchin' Rides + The Hummer of the Future + A new client arrives and asks Dave to envision a future where the Hummer H2 continued to be produced and to build what he thinks that car might look like 20 years into the future; it's out with the old and in with the new, as Kevin leads the charge. + Reality TV + Automotive + + + TVPG + + + + Bitchin' Rides + Benefit for the Basin + Dave has a soft spot for all kids in need; so when a car show in Oregon that benefits the local children's charity called, Dave eagerly said yes; the guys take the rig to the show; there's a rumor that Kev may actually get a spot in the drag races. + Reality TV + Automotive + + + TVPG + + + + Bitchin' Rides + Truck Heaven + It's no secret that while Kev can appreciate cars of all shapes and sizes; deep down, he's a truck guy; when a truck show comes through town, KevDogg shows Dave what is what with all the great builds that have descended on Salt Lake. + Reality TV + Automotive + + + TVPG + + + + Bitchin' Rides + The Outlaw Porsche + Dave's latest client wants him to outlaw a Porsche 356 A, which means a ton of modifications, including smoothed-out bumpers, louvered deck lid, through-the-hood fuel filler and more; but this will be a Bitchin' Outlaw and have the Kindig touch. + Reality TV + Automotive + + + TVPG + + + + FantomWorks + Beauty and the Bee + A 1957 Chevrolet Bel Air purchased sight unseen turns out to be a rusted piece of junk; a disabled driver who loves to go fast is saddled with an unimpressive 1969 Dodge Super Bee. + Reality TV + Automotive + + + TV14 + + + + Bitchin' Rides + Truck Heaven + It's no secret that while Kev can appreciate cars of all shapes and sizes; deep down, he's a truck guy; when a truck show comes through town, KevDogg shows Dave what is what with all the great builds that have descended on Salt Lake. + Reality TV + Automotive + + + TVPG + + + + Bitchin' Rides + The Outlaw Porsche + Dave's latest client wants him to outlaw a Porsche 356 A, which means a ton of modifications, including smoothed-out bumpers, louvered deck lid, through-the-hood fuel filler and more; but this will be a Bitchin' Outlaw and have the Kindig touch. + Reality TV + Automotive + + + TVPG + + + + FantomWorks + Beauty and the Bee + A 1957 Chevrolet Bel Air purchased sight unseen turns out to be a rusted piece of junk; a disabled driver who loves to go fast is saddled with an unimpressive 1969 Dodge Super Bee. + Reality TV + Automotive + + + TV14 + + + + Bitchin' Rides + Benefit for the Basin + Dave has a soft spot for all kids in need; so when a car show in Oregon that benefits the local children's charity called, Dave eagerly said yes; the guys take the rig to the show; there's a rumor that Kev may actually get a spot in the drag races. + Reality TV + Automotive + + + TVPG + + + + Bitchin' Rides + The Hummer of the Future + A new client arrives and asks Dave to envision a future where the Hummer H2 continued to be produced and to build what he thinks that car might look like 20 years into the future; it's out with the old and in with the new, as Kevin leads the charge. + Reality TV + Automotive + + + TVPG + + + + FantomWorks + Size Does Matter + The restoration of a C10 gets ugly when the pickup's paint is removed; a Heinkel arrives with mismatched scooter parts. + Reality TV + Automotive + + + TV14 + + + + Iron Resurrection + Triple Black Cadillac + Joe believes that wide wheels and a killer paint job will attract customers to a 1964 Cadillac Coupe Deville convertible, but hidden rust on the vehicle threatens to spoil his planned improvements. + Reality TV + Automotive + + + TVPG + + + + Junkyard Empire + Two for the Road + A fuel-injection specialist attempts to get a 1932 Roadster up and running; a project to combine parts from two Chevy trucks into a new single FrankenTruck threatens to go off the rails. + Reality TV + Automotive + + + TVPG + + + + Garage Squad + 69 Charger + Time and storage take a toll on a 1969 Dodge Charger that has remained in its original owner's family since it rolled off the lot. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + 68 El Camino + A 1968 Chevrolet El Camino requires new brakes, a vital engine refresh and exhaust work. + Reality TV + Instructional + + + TVPG + + + + Restoration Garage + Hapy Hipi Choolbus + After Tim Hapy Hipi Schmidt stops by to show off a crazy school bus renovation, David visits his garage to help take a 2019 McLaren Senna for its first drive; Ron replaces the distributor in a Volkswagen, then discovers that the brakes barely work. + Reality TV + Automotive + + + TVPG + + + + Restoration Garage + Giving Up or Gearing Up? + Brad is eager to get an antique fire truck driving down the road again, but he has hit a wall trying to find replacement gears; Greg and David go through the steps of restoring a 1930 Dodge pickup. + Reality TV + Automotive + + + TVPG + + + + Restoration Garage + Feelin' Sporty + David and Larry go car shopping to find Larry a new sporty toy; Talon, the Guild's new metal fabricator builds headers for the complete build of a Ferrari 250 GT California Spyder; David compares an iconic 1950 MG TD with a 1973 MGB. + Reality TV + Automotive + + + TVPG + + + + Restoration Garage + Delahaye Finale + After eight years, the 1948 Delahaye 135M Cabriolet is finally down on its wheels and heading for its first test drive, if they can figure out how to get it started; chrome plating is explored at one of the best shops in North America. + Reality TV + Automotive + + + TVPG + + + + Restoration Garage + Propellers to Transmissions + David's interest in planes takes him to a local airport that houses a replica of the Avro Arrow, a 1950s delta-winged interceptor aircraft; Ron and Greg work on a new transmission for a 1967 Chevelle after the owner blew the original. + Reality TV + Automotive + + + TVPG + + + + Restoration Garage + A Classic Challenge + Brad picks up where someone else left off restoring a 1940 Ford Deluxe; owners of a 1928 Plymouth Model Q hope the crew can get it running. + Reality TV + Automotive + + + TVPG + + + + Restoration Garage + Muscle Car City + The shop overflows with muscle cars while David focuses on his new antique watch repair business; Ron starts the brakes on a 1967 Ford Mustang convertible; Johnney does final touches on a 1980 Pontiac Trans Am pace car in time for a test drive. + Reality TV + Automotive + + + TVPG + + + + Restoration Garage + More Than a Defender + The Guild is approached to restore a 1997 Land Rover Defender 90 as a tribute to filmmaker and environmentalist Rob Stewart; Ron struggles to install a new 427 engine into a 1969 Corvette. + Reality TV + Automotive + + + TVPG + + + + Restoration Garage + McLaren Twins + David and Janice visit their friend and car collector Tim, who has two new McLarens with the same serial number and matching carbon fiber bodies; a 2019 McLaren Senna and a 2014 McLaren P1. + Reality TV + Automotive + + + TVPG + + + + Restoration Garage + Fire Fighting Heritage + The crew learns about the oil history of a town when the fire department brings a 1925 International fire truck in for restoration; Brad, a volunteer firefighter, is eager to take on the project even though he knows finding parts will be difficult. + Reality TV + Automotive + + + TVPG + + + + Restoration Garage + Couped Up + A 1977 Ford F-250 pickup truck evolves from barn find to beauty, and the owners arrive for the unveiling; Brad has a challenging time figuring out the starter and starter clutch in the unusual engine of an obscure 1966 Honda S600. + Reality TV + Automotive + + + TVPG + + + + Restoration Garage + Miracle Mercury Coupe + Larry visits and is excited by the advancement of his two projects, a 1948 Delahaye 135MS Cabriolet, and a custom Mercury being designed in California by renowned car builder Keith Dean. + Reality TV + Automotive + + + TVPG + + + + Restoration Garage + Hapy Hipi Choolbus + After Tim Hapy Hipi Schmidt stops by to show off a crazy school bus renovation, David visits his garage to help take a 2019 McLaren Senna for its first drive; Ron replaces the distributor in a Volkswagen, then discovers that the brakes barely work. + Reality TV + Automotive + + + TVPG + + + + Restoration Garage + Giving Up or Gearing Up? + Brad is eager to get an antique fire truck driving down the road again, but he has hit a wall trying to find replacement gears; Greg and David go through the steps of restoring a 1930 Dodge pickup. + Reality TV + Automotive + + + TVPG + + + + Junkyard Empire + Two for the Road + A fuel-injection specialist attempts to get a 1932 Roadster up and running; a project to combine parts from two Chevy trucks into a new single FrankenTruck threatens to go off the rails. + Reality TV + Automotive + + + TVPG + + + + Garage Squad + 69 Charger + Time and storage take a toll on a 1969 Dodge Charger that has remained in its original owner's family since it rolled off the lot. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + 68 El Camino + A 1968 Chevrolet El Camino requires new brakes, a vital engine refresh and exhaust work. + Reality TV + Instructional + + + TVPG + + + + FantomWorks + Ticket to Ride + A demanding owner brings in a 1941 Buick Coupe; Janelle wants her Kawasaki KZ-750 motorcycle transformed into a cool and stripped down machine. + Reality TV + Automotive + + + TV14 + + + + FantomWorks + Night Prowler + A modified 1965 Chevrolet Impala looks cool but is impossible to drive; a 1967 Corvette arrives with a massive list of repairs that needs to be done. + Reality TV + Automotive + + + TV14 + + + + FantomWorks + One Tough Customer + Robby wants to convert Dan's 1926 Ford Model T into a far more rare 1914 C-cab; a man's 1969 Chevrolet Camaro convertible is an accident waiting to happen. + Reality TV + Automotive + + + TV14 + + + + FantomWorks + One Salty Shelby + Severe salt corrosion nearly destroys a bright orange 1970 Shelby GT500; getting a rare 1970 Chrysler 300 Hurst into shape proves to be a challenge. + Reality TV + Automotive + + + TV14 + + + + Garage Squad + A Charger Tribute + This father-son project took a tragic turn to become a father-only project; the Garage Squad tackles this '70 Charger as a tribute car to the entire family. + Reality TV + Instructional + + + TVPG + + + + FantomWorks + One Tough Customer + Robby wants to convert Dan's 1926 Ford Model T into a far more rare 1914 C-cab; a man's 1969 Chevrolet Camaro convertible is an accident waiting to happen. + Reality TV + Automotive + + + TV14 + + + + FantomWorks + One Salty Shelby + Severe salt corrosion nearly destroys a bright orange 1970 Shelby GT500; getting a rare 1970 Chrysler 300 Hurst into shape proves to be a challenge. + Reality TV + Automotive + + + TV14 + + + + FantomWorks + One Salty Shelby + Severe salt corrosion nearly destroys a bright orange 1970 Shelby GT500; getting a rare 1970 Chrysler 300 Hurst into shape proves to be a challenge. + Reality TV + Automotive + + + TV14 + + + + Garage Squad + A Charger Tribute + This father-son project took a tragic turn to become a father-only project; the Garage Squad tackles this '70 Charger as a tribute car to the entire family. + Reality TV + Instructional + + + TVPG + + + + FantomWorks + Night Prowler + A modified 1965 Chevrolet Impala looks cool but is impossible to drive; a 1967 Corvette arrives with a massive list of repairs that needs to be done. + Reality TV + Automotive + + + TV14 + + + + Junkyard Empire + A New Day, a New Dollar + Andy stumbles across a Mercedes-Benz SL55 AMG that he hopes to flip, but soon realizes that he may have bitten off more than he can chew; Andy's father manages to turn a marketing idea into a mess. + Reality TV + Automotive + + + TVPG + + + + Junkyard Empire + Upgrade and Upsell + Andy hopes to secure future business for years to come by completing a promised build, and has the opportunity to boost his own collection with some help from his father. + Reality TV + Automotive + + + TVPG + + + + Roadkill + Barnfind Firebird vs. Crusher Camaro! + Editors from Hot Rod Magazine put junky hot rods and trashed muscle cars to the test. + Reality TV + Automotive + + + TVPG + + + + Iron Resurrection + Good to Go GTO + Known for its sizzling performance and smooth body style, the 1969 Pontiac GTO is one of the fastest cars of its time; now, Joe gives it his signature twist with body modifications and a new power train that will have its wide tires smoking hot. + Reality TV + Automotive + + + TVPG + + + + LOKAR Car Show + Grand National F-100 + The largest F-100 Show in the country is back in Pigeon Forge, Tennessee. + Sports + Automotive + + + + Motorhead Garage + A Parade of Aftermarket Accessories and Parts for Your Vehicle + Chipola College instructor and master mechanic John Gardner and automotive journalist Dave Dobson modify cars, trucks, ATV's, and motorcycles, explaining how to install the latest in custom aftermarket equipment. + Automotive + Instructional + + + TVG + + + + Caffeine & Octane + A Bandolero Racer's Progression to the Legends Race Series and Beyond + Build it and they will come with street-legal, hand-built stock cars; a Bandolero Racer progresses to the Legends Race Series and beyond. + Automotive + + + TV14 + + + + Engine Masters + Iron vs. Aluminum Heads: A Study of Heat + The guys try to shed light on whether iron or aluminum heads will deliver more power; they'll look at weight savings and heat retention's effect on cylinder pressure. + Automotive + + + TVPG + + + + Two Guys Garage + Chevy OBS + Old body style trucks are becoming more and more popular, and today the guys are fortunate to have one in the shop; they swap in an LS engine, pick a system to control timing and fuel, and fix up a few accessories to make it look and run great again. + Automotive + Reality TV + + + TVPG + + + + Truck U + Bronco Options + Today the focus is on the Ford Bronco; Matt and Bruno show some of the great options available to make a Bronco unique; they take a stock Outer Banks and make it stand out in a crowd with just a few common upgrades. + Automotive + Instructional + + + TVPG + + + + Car Fix + SS Ten + Fuller and Bumpus bring in a very clean S-10 and build a custom roll pan for it; they finish the AC system that Fuller had already started, and then they show how to lock up the rear end and do smoky burnouts. + Automotive + Instructional + + + TVPG + + + + All Girls Garage + Monte Mice Motel + This Monte Carlo was on its way to being one awesome street machine until disaster struck; mice made a home of it and destroyed the interior; Bogi and Faye replace the interior and try to fire it up for the first time in a few years. + Reality TV + Automotive + + + TVPG + + + + Shorty's Dream Shop + Spicy Stock '67 Nova + Transforming an abandoned 1967 Nova; stocking a new motor, transmission, interior and paint. + Automotive + + + TVG + + + + Garage Squad + Funny Business + The crew attempts to take a 1967 Chevrolet Nova nostalgia funny car down the track as a memorial to the owner's late father. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + Chevy Four-by-Fix + After a terrible tragedy, getting a 1967 4x4 outside and into the mud means a lot to a family. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + GT-Oh No + Once a quarter-mile drag racer, a 1968 Pontiac GTO that has been sitting in a garage for over two decades is prepared for a second act as a family cruiser. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + Freeing a Ford F3 + A farm family tries to save its grandfather's cherished 1950 Ford F3 that has been sitting in a barn for 47 years. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + Camaro Comeback + A vandalized 1969 Chevrolet Camaro attempts to make a comeback after 27 years on blocks. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + Foul Fairlane + After a devastating engine fire and the onset of some serious health issues, the owner of a 1966 Ford Fairlane dreams of having his beauty rumble back to life. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + A Tri-Five Comes Alive + Two brothers bring in a Chevrolet Tri-Five that has been in their family for decades but has not moved in 17 years; the Squad attempts to get the vehicle back on the road. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + Double Trouble + The Squad tries to resurrect a Mustang for the owner's wife while also struggling to get a GTO street legal. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + Malibu Mayhem + After an American hero loses his battle with PTSD, the Squad teams up with his father to restore the 1968 Chevrolet Malibu his son bought on eBay while deployed in Iraq. + Reality TV + Instructional + + + TVPG + + + + Hot Rod Garage + From Dust to Dust + The MythDuster's early Gen III Hemi has been resting in pieces ever since Engine Masters gave it a lackluster report card; Alex and Lucky upgrade the engine with much-improved heads to get the MythDuster making some actual power and passes. + Automotive + + + TVPG + + + + Hot Rod Garage + Hot Tater!! + Roadkill Garage's old project Tater Truck has been loafing around the offices for years, begging for some love; Alex and Lucky decide what to do with this sluggish, tired and granny-geared F-250. + Automotive + + + TVPG + + + + Garage Squad + Malibu Mayhem + After an American hero loses his battle with PTSD, the Squad teams up with his father to restore the 1968 Chevrolet Malibu his son bought on eBay while deployed in Iraq. + Reality TV + Instructional + + + TVPG + + + + Hot Rod Garage + From Dust to Dust + The MythDuster's early Gen III Hemi has been resting in pieces ever since Engine Masters gave it a lackluster report card; Alex and Lucky upgrade the engine with much-improved heads to get the MythDuster making some actual power and passes. + Automotive + + + TVPG + + + + Hot Rod Garage + Hot Tater!! + Roadkill Garage's old project Tater Truck has been loafing around the offices for years, begging for some love; Alex and Lucky decide what to do with this sluggish, tired and granny-geared F-250. + Automotive + + + TVPG + + + + Garage Squad + Double Trouble + The Squad tries to resurrect a Mustang for the owner's wife while also struggling to get a GTO street legal. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + Busted Duster + A race against time to take a shell of a 1970 Duster and get it ready to be the VIP at the owners upcoming wedding. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + Funny Business + The crew attempts to take a 1967 Chevrolet Nova nostalgia funny car down the track as a memorial to the owner's late father. + Reality TV + Instructional + + + TVPG + + + + Iron Resurrection + Hardcore Softail + The team tackles a custom Softail from the ground up; Shag and Amanda discover a 1947 International milk truck in need of repair; a customer brings in a 1955 Chevy race car. + Reality TV + Automotive + + + TVPG + + + + Junkyard Empire + A Pack Rat, a Rat Rod, and a Bug + Andy finds a 1931 Ford Model A that looks like it just drove out of a mobster film and a 1963 Volkswagen Bug that needs some love. + Reality TV + Automotive + + + TVPG + + + + Garage Squad + 93 Typhoon + A battered 1993 GMC Typhoon is saved from some crooked mechanics and its turbocharged bite is restored. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + 56 Ford Truck + A 1956 Ford pickup is removed from a corn crib and returned to the road. + Reality TV + Instructional + + + TVPG + + + + Overhaulin' + Sarah's Skylark + The team transforms a 1965 Buick Skylark convertible belonging to a Sunday-school teacher. + Reality TV + Instructional + + + TVG + + + + Overhaulin' + Bill's 1965 Mustang Fastback + A man's dream of restoring his 1965 Mustang Fastback is shattered when thieves steal his tools and auto parts; Chip and the team transform the vehicle into a Shelby-style stunner. + Reality TV + Instructional + + + TVG + + + + Overhaulin' + Scott's 1967 Chevy Pickup Truck + Chip and the team overhaul a 1967 Chevrolet C10 for a man who does not have the time or resources to restore his truck. + Reality TV + Instructional + + + TVG + + + + Overhaulin' + Victor's 1967 Ford Bronco + A fireman hopes to share his 1967 Ford Bronco and love of the outdoors with his three young children. + Reality TV + Instructional + + + TVG + + + + Overhaulin' + Ricky's New Impala + An active duty U.S. Navy Explosives Ordinance Disposal Technician who works with underwater bombs admits to being a big fan of the show. + Reality TV + Instructional + + + TVPG + + + + Overhaulin' + Efrain's Olds 442 + Chip and the A-Team join the three sons of a hardworking businessman to transform his 1970 Oldsmobile 442. + Reality TV + Instructional + + + TVPG + + + + Overhaulin' + Lanny's '67 Ford Fairlane GTA + A water district sanitation technician dreams of fixing up the 1967 Ford Fairlane GTA that he purchased from the vehicle's original owner 16 years earlier. + Reality TV + Instructional + + + TVPG + + + + Junkyard Empire + A Pack Rat, a Rat Rod, and a Bug + Andy finds a 1931 Ford Model A that looks like it just drove out of a mobster film and a 1963 Volkswagen Bug that needs some love. + Reality TV + Automotive + + + TVPG + + + + Garage Squad + 93 Typhoon + A battered 1993 GMC Typhoon is saved from some crooked mechanics and its turbocharged bite is restored. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + 56 Ford Truck + A 1956 Ford pickup is removed from a corn crib and returned to the road. + Reality TV + Instructional + + + TVPG + + + + FantomWorks + Buyer Beware + The crew faces a puzzle of rust and rotted wood as it attempts to restore a 1917 Overland; Dan purchases a 1968 Camaro on the Internet. + Reality TV + Automotive + + + TV14 + + + + Bitchin' Rides + A Caldera-What? + An old build is back for new customizations, an interior revamp and a new name; with Kevin headed out of town, Dave tries to sneak a new and personal project through the doors. + Reality TV + Automotive + + + TVPG + + + + Bitchin' Rides + It Sounds Bitchin'. Let's Make It Look Bitchin' + A 1968 Chevrolet Camaro has a new owner who wants to finish off the build with a new front valance, rear spoiler and fresh paint; a 1965 Ford Mustang with mechanical issues gets an upgrade. + Reality TV + Automotive + + + TVPG + + + + Bitchin' Rides + A Bitchin' Off-Road Warrior + The Bronco's owner is lukewarm on Dave's radical idea for the interior; Dave must resist going too far with this build so they can actually enjoy it on dirt roads without feeling like they're beating up a museum piece. + Reality TV + Automotive + + + TVPG + + + + Bitchin' Rides + A Whole New Game + Dave has been interested in dipping his feet in the electric car world, and with his CF1s providing the perfect canvas. Turning this into reality will take a new level of engineering and learning a new automotive language. + Reality TV + Automotive + + + TVPG + + + + Bitchin' Rides + Who Gets Number One? + Dave and the guys at Kindig-It proved they could execute Dave's vision of his production Corvette, but now that a few have sold, they have to get them completely finished. + Reality TV + Automotive + + + TVPG + + + + Bitchin' Rides + A Bitchin' Off-Road Warrior + The Bronco's owner is lukewarm on Dave's radical idea for the interior; Dave must resist going too far with this build so they can actually enjoy it on dirt roads without feeling like they're beating up a museum piece. + Reality TV + Automotive + + + TVPG + + + + Bitchin' Rides + A Whole New Game + Dave has been interested in dipping his feet in the electric car world, and with his CF1s providing the perfect canvas. Turning this into reality will take a new level of engineering and learning a new automotive language. + Reality TV + Automotive + + + TVPG + + + + Bitchin' Rides + Who Gets Number One? + Dave and the guys at Kindig-It proved they could execute Dave's vision of his production Corvette, but now that a few have sold, they have to get them completely finished. + Reality TV + Automotive + + + TVPG + + + + Bitchin' Rides + It Sounds Bitchin'. Let's Make It Look Bitchin' + A 1968 Chevrolet Camaro has a new owner who wants to finish off the build with a new front valance, rear spoiler and fresh paint; a 1965 Ford Mustang with mechanical issues gets an upgrade. + Reality TV + Automotive + + + TVPG + + + + Bitchin' Rides + A Caldera-What? + An old build is back for new customizations, an interior revamp and a new name; with Kevin headed out of town, Dave tries to sneak a new and personal project through the doors. + Reality TV + Automotive + + + TVPG + + + + FantomWorks + Buyer Beware + The crew faces a puzzle of rust and rotted wood as it attempts to restore a 1917 Overland; Dan purchases a 1968 Camaro on the Internet. + Reality TV + Automotive + + + TV14 + + + + Iron Resurrection + Barbecued Bird + Joe and the team work on a 1973 Pontiac Firebird that was damaged by fire; a waterlogged engine puts the brakes on the build. + Reality TV + Automotive + + + TVPG + + + + Junkyard Empire + Crushing Cars & Taking Names + An iconic piece of military history rolls into the yard, along with a dinosaur-sized bulldozer that no one quite knows what to do with. + Reality TV + Automotive + + + TVPG + + + + Garage Squad + 69 Super Bee + Recent tinkering has an adverse effect on a 1969 Dodge Super Bee that was in storage for a couple of decades. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + 63 Porsche + Good old American ingenuity is needed to repair a 1963 Porsche 356 that has been parked for years and lost its edge. + Reality TV + Instructional + + + TVPG + + + + Wheeler Dealers: Dream Car + Tony's Dream Land Rover 2A + Ex-Paratrooper Tony, 42, has spent his life around Land Rovers, but he's never managed to put a fighting fund together to buy his dream car, a 1960s short wheelbase series 2A; Mike and Elvis begin their trading journey with Tony's Mini Cooper. + Reality TV + Automotive + + + + Wheeler Dealers: Dream Car + Chris's Dream Ford Escort Mk2 + Chris works at a classic Ford workshop, surrounded by all the models he loves; his dream car is a Ford Escort Mk2, but these are now way out of his price range. + Reality TV + Automotive + + + + Wheeler Dealers: Dream Car + Harlen's Dream Nissan Skyline + Harlen wants to get behind the wheel of the iconic Nissan Skyline, his favorite video gaming car, but the mature student has put all his cash into paying his way through college. + Reality TV + Automotive + + + + Wheeler Dealers: Dream Car + Adam's Dream TVR Cerbera + Mike attempts to secure a TVR Cerbera for electrical engineer Adam. + Reality TV + Automotive + + + + Wheeler Dealers: Dream Car + Jess's Dream VW Golf GTi + Support teacher Jess, 37, has always loved the VW Golf GTI, but it's out of her price range; with a Ford Fiesta and £1000 in cash, Mike needs to do some serious trading to get the modern GTI Jess craves. + Reality TV + Automotive + + + + Wheeler Dealers: Dream Car + Tom's Dream DeLorean + Cattle farmer Tom has always dreamed of driving a DeLorean. + Reality TV + Automotive + + + + Wheeler Dealers: Dream Car + Deepak's Dream Porsche Cayenne + Mike sets out to acquire a police officer's dream car: a Porsche Cayenne. + Reality TV + Automotive + + + + Junkyard Empire + Crushing Cars & Taking Names + An iconic piece of military history rolls into the yard, along with a dinosaur-sized bulldozer that no one quite knows what to do with. + Reality TV + Automotive + + + TVPG + + + + Garage Squad + 69 Super Bee + Recent tinkering has an adverse effect on a 1969 Dodge Super Bee that was in storage for a couple of decades. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + 63 Porsche + Good old American ingenuity is needed to repair a 1963 Porsche 356 that has been parked for years and lost its edge. + Reality TV + Instructional + + + TVPG + + + + FantomWorks + Size Does Matter + The restoration of a C10 gets ugly when the pickup's paint is removed; a Heinkel arrives with mismatched scooter parts. + Reality TV + Automotive + + + TV14 + + + + Bitchin' Rides + The Hummer of the Future + A new client arrives and asks Dave to envision a future where the Hummer H2 continued to be produced and to build what he thinks that car might look like 20 years into the future; it's out with the old and in with the new, as Kevin leads the charge. + Reality TV + Automotive + + + TVPG + + + + Bitchin' Rides + Benefit for the Basin + Dave has a soft spot for all kids in need; so when a car show in Oregon that benefits the local children's charity called, Dave eagerly said yes; the guys take the rig to the show; there's a rumor that Kev may actually get a spot in the drag races. + Reality TV + Automotive + + + TVPG + + + + Bitchin' Rides + Truck Heaven + It's no secret that while Kev can appreciate cars of all shapes and sizes; deep down, he's a truck guy; when a truck show comes through town, KevDogg shows Dave what is what with all the great builds that have descended on Salt Lake. + Reality TV + Automotive + + + TVPG + + + + Bitchin' Rides + The Outlaw Porsche + Dave's latest client wants him to outlaw a Porsche 356 A, which means a ton of modifications, including smoothed-out bumpers, louvered deck lid, through-the-hood fuel filler and more; but this will be a Bitchin' Outlaw and have the Kindig touch. + Reality TV + Automotive + + + TVPG + + + + FantomWorks + Beauty and the Bee + A 1957 Chevrolet Bel Air purchased sight unseen turns out to be a rusted piece of junk; a disabled driver who loves to go fast is saddled with an unimpressive 1969 Dodge Super Bee. + Reality TV + Automotive + + + TV14 + + + + Bitchin' Rides + Truck Heaven + It's no secret that while Kev can appreciate cars of all shapes and sizes; deep down, he's a truck guy; when a truck show comes through town, KevDogg shows Dave what is what with all the great builds that have descended on Salt Lake. + Reality TV + Automotive + + + TVPG + + + + Bitchin' Rides + The Outlaw Porsche + Dave's latest client wants him to outlaw a Porsche 356 A, which means a ton of modifications, including smoothed-out bumpers, louvered deck lid, through-the-hood fuel filler and more; but this will be a Bitchin' Outlaw and have the Kindig touch. + Reality TV + Automotive + + + TVPG + + + + FantomWorks + Beauty and the Bee + A 1957 Chevrolet Bel Air purchased sight unseen turns out to be a rusted piece of junk; a disabled driver who loves to go fast is saddled with an unimpressive 1969 Dodge Super Bee. + Reality TV + Automotive + + + TV14 + + + + Bitchin' Rides + Benefit for the Basin + Dave has a soft spot for all kids in need; so when a car show in Oregon that benefits the local children's charity called, Dave eagerly said yes; the guys take the rig to the show; there's a rumor that Kev may actually get a spot in the drag races. + Reality TV + Automotive + + + TVPG + + + + Bitchin' Rides + The Hummer of the Future + A new client arrives and asks Dave to envision a future where the Hummer H2 continued to be produced and to build what he thinks that car might look like 20 years into the future; it's out with the old and in with the new, as Kevin leads the charge. + Reality TV + Automotive + + + TVPG + + + + FantomWorks + Size Does Matter + The restoration of a C10 gets ugly when the pickup's paint is removed; a Heinkel arrives with mismatched scooter parts. + Reality TV + Automotive + + + TV14 + + + + Iron Resurrection + Triple Black Cadillac + Joe believes that wide wheels and a killer paint job will attract customers to a 1964 Cadillac Coupe Deville convertible, but hidden rust on the vehicle threatens to spoil his planned improvements. + Reality TV + Automotive + + + TVPG + + + + Junkyard Empire + Two for the Road + A fuel-injection specialist attempts to get a 1932 Roadster up and running; a project to combine parts from two Chevy trucks into a new single FrankenTruck threatens to go off the rails. + Reality TV + Automotive + + + TVPG + + + + Garage Squad + 69 Charger + Time and storage take a toll on a 1969 Dodge Charger that has remained in its original owner's family since it rolled off the lot. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + 68 El Camino + A 1968 Chevrolet El Camino requires new brakes, a vital engine refresh and exhaust work. + Reality TV + Instructional + + + TVPG + + + + Restoration Garage + Hapy Hipi Choolbus + After Tim Hapy Hipi Schmidt stops by to show off a crazy school bus renovation, David visits his garage to help take a 2019 McLaren Senna for its first drive; Ron replaces the distributor in a Volkswagen, then discovers that the brakes barely work. + Reality TV + Automotive + + + TVPG + + + + Restoration Garage + Giving Up or Gearing Up? + Brad is eager to get an antique fire truck driving down the road again, but he has hit a wall trying to find replacement gears; Greg and David go through the steps of restoring a 1930 Dodge pickup. + Reality TV + Automotive + + + TVPG + + + + Restoration Garage + Feelin' Sporty + David and Larry go car shopping to find Larry a new sporty toy; Talon, the Guild's new metal fabricator builds headers for the complete build of a Ferrari 250 GT California Spyder; David compares an iconic 1950 MG TD with a 1973 MGB. + Reality TV + Automotive + + + TVPG + + + + Restoration Garage + Delahaye Finale + After eight years, the 1948 Delahaye 135M Cabriolet is finally down on its wheels and heading for its first test drive, if they can figure out how to get it started; chrome plating is explored at one of the best shops in North America. + Reality TV + Automotive + + + TVPG + + + + Restoration Garage + Propellers to Transmissions + David's interest in planes takes him to a local airport that houses a replica of the Avro Arrow, a 1950s delta-winged interceptor aircraft; Ron and Greg work on a new transmission for a 1967 Chevelle after the owner blew the original. + Reality TV + Automotive + + + TVPG + + + + Restoration Garage + A Classic Challenge + Brad picks up where someone else left off restoring a 1940 Ford Deluxe; owners of a 1928 Plymouth Model Q hope the crew can get it running. + Reality TV + Automotive + + + TVPG + + + + Restoration Garage + Muscle Car City + The shop overflows with muscle cars while David focuses on his new antique watch repair business; Ron starts the brakes on a 1967 Ford Mustang convertible; Johnney does final touches on a 1980 Pontiac Trans Am pace car in time for a test drive. + Reality TV + Automotive + + + TVPG + + + + Restoration Garage + More Than a Defender + The Guild is approached to restore a 1997 Land Rover Defender 90 as a tribute to filmmaker and environmentalist Rob Stewart; Ron struggles to install a new 427 engine into a 1969 Corvette. + Reality TV + Automotive + + + TVPG + + + + Restoration Garage + McLaren Twins + David and Janice visit their friend and car collector Tim, who has two new McLarens with the same serial number and matching carbon fiber bodies; a 2019 McLaren Senna and a 2014 McLaren P1. + Reality TV + Automotive + + + TVPG + + + + Restoration Garage + Fire Fighting Heritage + The crew learns about the oil history of a town when the fire department brings a 1925 International fire truck in for restoration; Brad, a volunteer firefighter, is eager to take on the project even though he knows finding parts will be difficult. + Reality TV + Automotive + + + TVPG + + + + Restoration Garage + Couped Up + A 1977 Ford F-250 pickup truck evolves from barn find to beauty, and the owners arrive for the unveiling; Brad has a challenging time figuring out the starter and starter clutch in the unusual engine of an obscure 1966 Honda S600. + Reality TV + Automotive + + + TVPG + + + + Restoration Garage + Miracle Mercury Coupe + Larry visits and is excited by the advancement of his two projects, a 1948 Delahaye 135MS Cabriolet, and a custom Mercury being designed in California by renowned car builder Keith Dean. + Reality TV + Automotive + + + TVPG + + + + Restoration Garage + Hapy Hipi Choolbus + After Tim Hapy Hipi Schmidt stops by to show off a crazy school bus renovation, David visits his garage to help take a 2019 McLaren Senna for its first drive; Ron replaces the distributor in a Volkswagen, then discovers that the brakes barely work. + Reality TV + Automotive + + + TVPG + + + + Restoration Garage + Giving Up or Gearing Up? + Brad is eager to get an antique fire truck driving down the road again, but he has hit a wall trying to find replacement gears; Greg and David go through the steps of restoring a 1930 Dodge pickup. + Reality TV + Automotive + + + TVPG + + + + Junkyard Empire + Two for the Road + A fuel-injection specialist attempts to get a 1932 Roadster up and running; a project to combine parts from two Chevy trucks into a new single FrankenTruck threatens to go off the rails. + Reality TV + Automotive + + + TVPG + + + + Garage Squad + 69 Charger + Time and storage take a toll on a 1969 Dodge Charger that has remained in its original owner's family since it rolled off the lot. + Reality TV + Instructional + + + TVPG + + + + Garage Squad + 68 El Camino + A 1968 Chevrolet El Camino requires new brakes, a vital engine refresh and exhaust work. + Reality TV + Instructional + + + TVPG + + + + FantomWorks + Ticket to Ride + A demanding owner brings in a 1941 Buick Coupe; Janelle wants her Kawasaki KZ-750 motorcycle transformed into a cool and stripped down machine. + Reality TV + Automotive + + + TV14 + + + + Paper Towns + Following a night of adventure with his mysterious neighbor (Cara Delevingne), a teen (Nat Wolff) and his friends use cryptic clues to find her after she suddenly disappears. + + Nat Wolff + Cara Delevingne + Halston Sage + + 2015 + Movies + Adventure + + + TVG + + + 2 + + + + Beatriz at Dinner + Holistic healer Beatriz receives a friendly invitation to stay for a business dinner after her car breaks down. She soon finds herself in an escalating war of words with a ruthless real estate mogul who cares more about money than people. + + Salma Hayek Pinault + John Lithgow + Connie Britton + + 2017 + Movies + Comedy + + + TVG + + + 3 + + + + The Company Men + A young executive (Ben Affleck) and two older employees struggle to find work and redefine their priorities after losing their jobs in a wave of corporate downsizing. + + Ben Affleck + Chris Cooper + Kevin Costner + + 2010 + Movies + Drama + + + TVG + + + 3 + + + + Beach Rats + An aimless teen (Harris Dickinson) in Brooklyn, N.Y., spends the summer with his delinquent buddies, a potential new girlfriend and older men that he meets online. + + Harris Dickinson + Madeline Weinstein + Kate Hodge + + 2017 + Movies + Drama + + + TVPG + + + 3 + + + + The Fury + A psychic girl (Amy Irving) helps a spy (Kirk Douglas) find his psychic son, kidnapped by a renegade scientist (John Cassavetes). + + Kirk Douglas + John Cassavetes + Amy Irving + + 1978 + Movies + Thriller + + + TVPG + + + 2 + + + + Butch Cassidy and the Sundance Kid + When a persistent posse threatens two outlaws' (Paul Newman, Robert Redford) romp through Wyoming, they decide to take their act to Bolivia. + + Paul Newman + Robert Redford + Katharine Ross + + 1969 + Movies + Western + + + TVG + + + 4 + + + + Walk the Line + Johnny Cash (Joaquin Phoenix) forms an enduring bond with June Carter (Reese Witherspoon) and struggles with drug addiction on the way to music stardom. + + Joaquin Phoenix + Reese Witherspoon + Ginnifer Goodwin + + 2005 + Movies + History + + + TVG + + + 3 + + + + Shiva Baby + While at a Jewish funeral service with her parents, a college student has an awkward encounter with her sugar daddy and her ex-girlfriend. + + Rachel Sennott + Molly Gordon + Polly Draper + + 2021 + Movies + Comedy + + + + Necessary Roughness + An over-30 ex-quarterback (Scott Bakula) gets to play as a freshman on a wild-card team at a Texas college. + + Scott Bakula + Héctor Elizondo + Robert Loggia + + 1991 + Movies + Comedy + + + TVG + + + 2 + + + + The Hunted + Aided by the FBI, a retired combat-trainer (Tommy Lee Jones) searches for a former student (Benicio del Toro) who is killing civilians in Oregon. + + Tommy Lee Jones + Benicio del Toro + Connie Nielsen + + 2003 + Movies + Action + + + TVPG + + + 2 + + + + The Last Word + A once-successful businesswoman (Shirley MacLaine) develops a strong bond with the young local writer (Amanda Seyfried) who's penning her life story. + + Shirley MacLaine + Amanda Seyfried + AnnJewel Lee Majestic Dixon + + 2017 + Movies + Comedy + Drama + + + TVG + + + 2 + + + + Jennifer's Body + A beautiful cheerleader (Megan Fox) gains an insatiable appetite for human flesh after a hungry demon takes control of her body. + + Megan Fox + Amanda Seyfried + Johnny Simmons + + 2009 + Movies + Horror + + + TVPG + + + 2 + + + + Lean on Pete + Charley, a teen living with his single father, finds work caring for an aging racehorse named Lean on Pete. When he learns Pete is bound for slaughter, the two embark on an odyssey across the new American frontier in search of a place to call home. + + Charlie Plummer + Chloë Sevigny + Steve Zahn + + 2017 + Movies + Drama + + + TVPG + + + 3 + + + + The Soloist + A reporter (Robert Downey Jr.) befriends a mentally ill and homeless man (Jamie Foxx), once a student at Juilliard but now playing music on the streets of Los Angeles. + + Jamie Foxx + Robert Downey Jr. + Catherine Keener + + 2009 + Movies + Drama + + + TVG + + + 2 + + + + Antitrust + The billionaire founder of a software corporation offers a lucrative position to an idealistic computer genius (Ryan Phillippe). + + Ryan Phillippe + Rachael Leigh Cook + Claire Forlani + + 2001 + Movies + Thriller + + + 2 + + + + White Chicks + Two male FBI agents (Shawn Wayans, Marlon Wayans) pose as female socialites to foil a kidnapping plot and save their jobs. + + Shawn Wayans + Marlon Wayans + Jaime King + + 2004 + Movies + Comedy + + + TVG + + + 2 + + + + Ex Machina + A young programmer (Domhnall Gleeson) at an Internet company is chosen to evaluate the capabilities and consciousness of a beautiful and sophisticated robot (Alicia Vikander). + + Domhnall Gleeson + Oscar Isaac + Alicia Vikander + + 2014 + Movies + Sci-Fi + + + TVPG + + + 3 + + + + Tusk + A U.S. podcaster (Justin Long) ventures into the Canadian wilderness to interview an old man (Michael Parks) who has an extraordinary past, and the American learns the man has a dark secret involving a walrus. + + Michael Parks + Justin Long + Haley Joel Osment + + 2014 + Movies + Horror + + + TVPG + + + 2 + + + + Tusk + A U.S. podcaster (Justin Long) ventures into the Canadian wilderness to interview an old man (Michael Parks) who has an extraordinary past, and the American learns the man has a dark secret involving a walrus. + + Michael Parks + Justin Long + Haley Joel Osment + + 2014 + Movies + Horror + + + TVPG + + + 2 + + + + Empire State + A security guard (Liam Hemsworth) and his childhood pal (Michael Angarano) make plans to rob an armored car. + + Dwayne Johnson + Liam Hemsworth + Emma Roberts + + 2013 + Movies + Action + + + TVPG + + + + The Texas Chainsaw Massacre Part 2 + A retired Texas Ranger (Dennis Hopper) pursues a killer named Leatherface (Bill Johnson) and his family of chainsaw-wielding cannibals. + + Dennis Hopper + Caroline Williams + Bill Johnson + + 1986 + Movies + Horror + + + TV14 + + + 2 + + + + Locke + A man's (Tom Hardy) life unravels after he leaves a construction site at a critical time and drives to London to be present for the birth of a child conceived during a one-night stand. + + Tom Hardy + Ruth Wilson + Andrew Scott + + 2013 + Movies + Drama + + + TVG + + + 3 + + + + The Saint + Master-of-disguises Simon Templar (Val Kilmer) falls for a U.S. scientist (Elisabeth Shue) whose cold-fusion formula he must steal. + + Val Kilmer + Elisabeth Shue + Rade Sherbedgia + + 1997 + Movies + Action + + + TVG + + + 2 + + + + FX2: The Deadly Art of Illusion + A former movie special-effects man uses tricks of the trade to expose a plot involving stolen gold and corrupt cops with a private eye, while they evade a mysterious assassin. + + Bryan Brown + Brian Dennehy + Rachel Ticotin + + 1991 + Movies + Action + + + 3 + + + + Mojave + A down-and-out artist (Garrett Hedlund) has a dangerous and shocking encounter with an evil drifter (Oscar Isaac) in the desert, leading to terrifying consequences when the deadly stranger follows his unsuspecting victim home. + + Oscar Isaac + Garrett Hedlund + Louise Bourgoin + + 2015 + Movies + Thriller + + + TV14 + + + 2 + + + + Internal Affairs + A Los Angeles policeman (Richard Gere) toys with the mind of a division investigator (Andy Garcia) on his case. + + Richard Gere + Andy Garcia + Nancy Travis + + 1990 + Movies + Crime Story + + + TVPG + + + 3 + + + + Anna and the King + The King of Siam (Chow Yun-Fat) hires an English widow (Jodie Foster) to teach the ways of the Western world to his many children. + + Jodie Foster + Chow Yun Fat + Bai Ling + + 1999 + Movies + History + + + TVG + + + 1 + + + + My Boss's Daughter + To impress a young woman (Tara Reid), a man (Ashton Kutcher) agrees to housesit at his employer's mansion for one night. + + Ashton Kutcher + Tara Reid + Jeffrey Tambor + + 2003 + Movies + Romance + + + TVG + + + 1 + + + + Piranha 3DD + No one is safe from a school of prehistoric flesh-eating fish as they sink their razor-sharp teeth into patrons at the summer's most popular attraction, the Big Wet Water Park. + + Danielle Panabaker + Matt Bush + David Koechner + + 2012 + Movies + Horror + + + TV14 + + + 1 + + + + Piranha 3D + Spring break turns gory at a popular waterside resort, where hundreds of prehistoric man-eating fish have come to dine on hapless humans. + + Elisabeth Shue + Adam Scott + Jerry O'Connell + + 2010 + Movies + Horror + + + TV14 + + + 2 + + + + Ingrid Goes West + Desperate for human contact, an obsessive young woman moves to Venice Beach, Calif., to strike up a friendship with a social media celebrity. + + Aubrey Plaza + Elizabeth Olsen + O'Shea Jackson Jr. + + 2017 + Movies + Comedy + Drama + + + TVPG + + + 3 + + + + The Last Movie Star + An aging screen icon gets lured into accepting an award at a rinky-dink film festival in Nashville, Tenn., sending him on a hilarious fish-out-of-water adventure and an unexpectedly poignant journey into his past. + + Burt Reynolds + Ariel Winter + Chevy Chase + + 2017 + Movies + Comedy + Drama + + + + Frank Miller's Sin City + Lawmen, prostitutes (Devon Aoki, Alexis Bledel), a hulking thug and other sordid characters run amok in a crime-ridden metropolis. + + Jessica Alba + Devon Aoki + Alexis Bledel + + 2005 + Movies + Action + + + TV14 + + + 3 + + + + Frank Miller's Sin City + Lawmen, prostitutes (Devon Aoki, Alexis Bledel), a hulking thug and other sordid characters run amok in a crime-ridden metropolis. + + Jessica Alba + Devon Aoki + Alexis Bledel + + 2005 + Movies + Action + + + TV14 + + + 3 + + + + Black Butterfly + A down-on-his luck screenwriter picks up a drifter and offers him a place to stay, not knowing that soon he'll become a prisoner, forced to write for a deranged stranger. + + Antonio Banderas + Jonathan Rhys Meyers + Piper Perabo + + 2017 + Movies + Thriller + + + TVPG + + + + Vendetta + After the murder of his wife, a tough-as-nails detective (Dean Cain) infiltrates a prison and uncovers a criminal enterprise. + + Dean Cain + Paul + + 2015 + Movies + Action + + + TVPG + + + + The Goods: Live Hard. Sell Hard. + In town to save a struggling car dealership from bankruptcy, a high-powered salesman (Jeremy Piven) unexpectedly falls in love and finds his soul. + + Jeremy Piven + Ving Rhames + James Brolin + + 2009 + Movies + Comedy + + + TVPG + + + 2 + + + + Blown Away + An Irish explosives expert (Tommy Lee Jones) targets an old foe (Jeff Bridges) and his family living in Boston. + + Jeff Bridges + Tommy Lee Jones + Lloyd Bridges + + 1994 + Movies + Thriller + + + TVPG + + + 2 + + + + Chain Reaction + Industrial mercenaries sabotage a project that converts water into safe energy, then frame two scientists (Keanu Reeves, Rachel Weisz) for it. + + Keanu Reeves + Morgan Freeman + Rachel Weisz + + 1996 + Movies + Action + + + TVG + + + 2 + + + + Mermaids + A teen (Winona Ryder) is caught in an emotional tug-of-war as she tries to deal with both her first love and an unconventional mother. + + Cher + Winona Ryder + Bob Hoskins + + 1990 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Evan Almighty + A newly elected congressman (Steve Carell) faces a crisis of biblical proportions when God (Morgan Freeman) commands him to build an ark. + + Steve Carell + Morgan Freeman + Lauren Graham + + 2007 + Movies + Children + + + TVG + + + 2 + + + + The Animal + When an inept policeman (Rob Schneider) receives animal organs as transplants, he begins to exhibit traits of the donors. + + Rob Schneider + Colleen Haskell + John C. McGinley + + 2001 + Movies + Comedy + + + TVG + + + 1 + + + + Cheech & Chong's The Corsican Brothers + Twin sons (Cheech Marin, Thomas Chong) of a noblewoman and a commoner have funny feelings during the French Revolution. + + Cheech Marin + Tommy Chong + Roy Dotrice + + 1984 + Movies + Comedy + + + TVG + + + 2 + + + + Appaloosa + The arrival of an attractive widow complicates the attempts of two lawmen (Ed Harris, Viggo Mortensen) to bring a malevolent rancher to justice. + + Ed Harris + Viggo Mortensen + Renée Zellweger + + 2008 + Movies + Western + + + TVG + + + 3 + + + + The Maze Runner + A teen awakes within a massive maze with other teens, with no memory of his past other than dreams about an organization known as WCKD. He hopes to escape by piecing together fragments of his past and clues he discovers in the labyrinth. + + Dylan O'Brien + Kaya Scodelario + Aml Ameen + + 2014 + Movies + Sci-Fi + + + TVPG + + + 2 + + + + Gone Girl + A man (Ben Affleck) reports that his wife (Rosamund Pike) has gone missing on their fifth wedding anniversary, but his public portrait of their blissful union begins to crumble under police pressure and a growing media frenzy. + + Ben Affleck + Rosamund Pike + Neil Patrick Harris + + 2014 + Movies + Mystery + + + TVPG + + + 3 + + + + The Soloist + A reporter (Robert Downey Jr.) befriends a mentally ill and homeless man (Jamie Foxx), once a student at Juilliard but now playing music on the streets of Los Angeles. + + Jamie Foxx + Robert Downey Jr. + Catherine Keener + + 2009 + Movies + Drama + + + TVG + + + 2 + + + + My Bodyguard + A shrimpy Chicago teen (Chris Makepeace) hires a big, brooding classmate (Adam Baldwin) to protect him from bullies. + + Chris Makepeace + Adam Baldwin + Martin Mull + + 1980 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + My Bodyguard + A shrimpy Chicago teen (Chris Makepeace) hires a big, brooding classmate (Adam Baldwin) to protect him from bullies. + + Chris Makepeace + Adam Baldwin + Martin Mull + + 1980 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Never Say Never Again + Aging agent 007 (Sean Connery) seeks hijacked warheads and finds SPECTRE's Largo (Klaus Maria Brandauer) and Fatima Blush (Barbara Carrera). + + Sean Connery + Klaus Maria Brandauer + Barbara Carrera + + 1983 + Movies + Action + + + TVG + + + 3 + + + + The Kid + On the run in the American Southwest, a boy encounters the infamous outlaw Billy the Kid and the legendary lawman Pat Garrett. He soon finds himself caught in the crossfire as Billy and Garrett square off in a deadly game of cat and mouse. + + Ethan Hawke + Dane DeHaan + Jake Schur + + 2019 + Movies + Western + + + TV14 + + + 2 + + + + The Fury + A psychic girl (Amy Irving) helps a spy (Kirk Douglas) find his psychic son, kidnapped by a renegade scientist (John Cassavetes). + + Kirk Douglas + John Cassavetes + Amy Irving + + 1978 + Movies + Thriller + + + TVPG + + + 2 + + + + Only the Strong + A special forces officer (Mark Dacascos) teaches 12 tough youths. + + Mark Dacascos + Stacey Travis + Geoffrey Lewis + + 1993 + Movies + Drama + + + TVG + + + 1 + + + + Signs + With the help of his brother (Joaquin Phoenix), a Pennsylvanian (Mel Gibson) investigates the appearance of 500-foot-diameter circles in his crop fields. + + Mel Gibson + Joaquin Phoenix + Cherry Jones + + 2002 + Movies + Thriller + + + TVG + + + 3 + + + + Borg vs. McEnroe + In 1980 top tennis player Björn Borg is in pursuit of a record-breaking fifth Wimbledon championship. The only obstacle in his way is the highly talented and ferociously abrasive young American John McEnroe. + + Sverrir Gudnason + Shia LaBeouf + Stellan Skarsgard + + 2017 + Movies + Drama + + + TVG + + + 3 + + + + A Night at the Roxbury + Desperate to meet women and open their own dance club, brainless brothers Steve (Will Ferrell) and Doug Butabi (Chris Kattan) cruise Beverly Hills. + + Will Ferrell + Chris Kattan + Molly Shannon + + 1998 + Movies + Comedy + + + TVG + + + 1 + + + + Ghost + A slain Manhattan yuppie (Patrick Swayze) reaches out to his lover (Demi Moore), with a medium (Whoopi Goldberg) as his middlewoman. + + Patrick Swayze + Demi Moore + Whoopi Goldberg + + 1990 + Movies + Fantasy + + + TVG + + + 3 + + + + A Most Violent Year + In 1981 New York, a fuel supplier (Oscar Isaac) tries to adhere to his own moral compass amid the rampant violence, corruption and decay that threaten his family and his business. + + Oscar Isaac + Jessica Chastain + David Oyelowo + + 2014 + Movies + Thriller + + + TVPG + + + 3 + + + + Shiva Baby + While at a Jewish funeral service with her parents, a college student has an awkward encounter with her sugar daddy and her ex-girlfriend. + + Rachel Sennott + Molly Gordon + Polly Draper + + 2021 + Movies + Comedy + + + + Movies On Demand + Movies On Demand. + Performing Arts + + + + Movies On Demand + Movies On Demand. + Performing Arts + + + + Movies On Demand + Movies On Demand. + Performing Arts + + + + Movies On Demand + Movies On Demand. + Performing Arts + + + + Movies On Demand + Movies On Demand. + Performing Arts + + + + Movies On Demand + Movies On Demand. + Performing Arts + + + + Movies On Demand + Movies On Demand. + Performing Arts + + + + Movies On Demand + Movies On Demand. + Performing Arts + + + + Movies On Demand + Movies On Demand. + Performing Arts + + + + Movies On Demand + Movies On Demand. + Performing Arts + + + + Movies On Demand + Movies On Demand. + Performing Arts + + + + Movies On Demand + Movies On Demand. + Performing Arts + + + + Movies On Demand + Movies On Demand. + Performing Arts + + + + Movies On Demand + Movies On Demand. + Performing Arts + + + + Movies On Demand + Movies On Demand. + Performing Arts + + + + Movies On Demand + Movies On Demand. + Performing Arts + + + + Movies On Demand + Movies On Demand. + Performing Arts + + + + Movies On Demand + Movies On Demand. + Performing Arts + + + + Movies On Demand + Movies On Demand. + Performing Arts + + + + Movies On Demand + Movies On Demand. + Performing Arts + + + + Movies On Demand + Movies On Demand. + Performing Arts + + + + Movies On Demand + Movies On Demand. + Performing Arts + + + + Movies On Demand + Movies On Demand. + Performing Arts + + + + Movies On Demand + Movies On Demand. + Performing Arts + + + + Movies On Demand + Movies On Demand. + Performing Arts + + + + Movies On Demand + Movies On Demand. + Performing Arts + + + + Movies On Demand + Movies On Demand. + Performing Arts + + + + Movies On Demand Hits (2.99 Or Less) + Movies On Demand Hits (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Hits (2.99 Or Less) + Movies On Demand Hits (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Hits (2.99 Or Less) + Movies On Demand Hits (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Hits (2.99 Or Less) + Movies On Demand Hits (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Hits (2.99 Or Less) + Movies On Demand Hits (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Hits (2.99 Or Less) + Movies On Demand Hits (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Hits (2.99 Or Less) + Movies On Demand Hits (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Hits (2.99 Or Less) + Movies On Demand Hits (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Hits (2.99 Or Less) + Movies On Demand Hits (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Hits (2.99 Or Less) + Movies On Demand Hits (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Hits (2.99 Or Less) + Movies On Demand Hits (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Hits (2.99 Or Less) + Movies On Demand Hits (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Hits (2.99 Or Less) + Movies On Demand Hits (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Hits (2.99 Or Less) + Movies On Demand Hits (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Hits (2.99 Or Less) + Movies On Demand Hits (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Hits (2.99 Or Less) + Movies On Demand Hits (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Hits (2.99 Or Less) + Movies On Demand Hits (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Hits (2.99 Or Less) + Movies On Demand Hits (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Hits (2.99 Or Less) + Movies On Demand Hits (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Hits (2.99 Or Less) + Movies On Demand Hits (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Hits (2.99 Or Less) + Movies On Demand Hits (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Hits (2.99 Or Less) + Movies On Demand Hits (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Hits (2.99 Or Less) + Movies On Demand Hits (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Hits (2.99 Or Less) + Movies On Demand Hits (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Hits (2.99 Or Less) + Movies On Demand Hits (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Hits (2.99 Or Less) + Movies On Demand Hits (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Hits (2.99 Or Less) + Movies On Demand Hits (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Kids & Teens (2.99 Or Less) + Movies On Demand Kids & Teens (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Kids & Teens (2.99 Or Less) + Movies On Demand Kids & Teens (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Kids & Teens (2.99 Or Less) + Movies On Demand Kids & Teens (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Kids & Teens (2.99 Or Less) + Movies On Demand Kids & Teens (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Kids & Teens (2.99 Or Less) + Movies On Demand Kids & Teens (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Kids & Teens (2.99 Or Less) + Movies On Demand Kids & Teens (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Kids & Teens (2.99 Or Less) + Movies On Demand Kids & Teens (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Kids & Teens (2.99 Or Less) + Movies On Demand Kids & Teens (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Kids & Teens (2.99 Or Less) + Movies On Demand Kids & Teens (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Kids & Teens (2.99 Or Less) + Movies On Demand Kids & Teens (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Kids & Teens (2.99 Or Less) + Movies On Demand Kids & Teens (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Kids & Teens (2.99 Or Less) + Movies On Demand Kids & Teens (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Kids & Teens (2.99 Or Less) + Movies On Demand Kids & Teens (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Kids & Teens (2.99 Or Less) + Movies On Demand Kids & Teens (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Kids & Teens (2.99 Or Less) + Movies On Demand Kids & Teens (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Kids & Teens (2.99 Or Less) + Movies On Demand Kids & Teens (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Kids & Teens (2.99 Or Less) + Movies On Demand Kids & Teens (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Kids & Teens (2.99 Or Less) + Movies On Demand Kids & Teens (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Kids & Teens (2.99 Or Less) + Movies On Demand Kids & Teens (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Kids & Teens (2.99 Or Less) + Movies On Demand Kids & Teens (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Kids & Teens (2.99 Or Less) + Movies On Demand Kids & Teens (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Kids & Teens (2.99 Or Less) + Movies On Demand Kids & Teens (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Kids & Teens (2.99 Or Less) + Movies On Demand Kids & Teens (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Kids & Teens (2.99 Or Less) + Movies On Demand Kids & Teens (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Kids & Teens (2.99 Or Less) + Movies On Demand Kids & Teens (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Kids & Teens (2.99 Or Less) + Movies On Demand Kids & Teens (2.99 Or Less). + Specials + Performing Arts + + + + Movies On Demand Kids & Teens (2.99 Or Less) + Movies On Demand Kids & Teens (2.99 Or Less). + Specials + Performing Arts + + + + The Wild Bunch + An outlaw (William Holden) and his gang, on the run from the Mexican Army and bounty hunters, plot to rob a United States Army train. + + William Holden + Ernest Borgnine + Robert Ryan + + 1969 + Movies + Western + + + TVPG + + + 4 + + + + The Lusty Men + An ex-rodeo champ (Robert Mitchum) eyes the wife (Susan Hayward) of a rodeo rider (Arthur Kennedy) he coaches to fame. + + Susan Hayward + Robert Mitchum + Arthur Kennedy + + 1952 + Movies + Western + + + 3 + + + + The Bravados + A Southwestern man (Gregory Peck) hunts to kill the four outlaws he blames for the rape/murder of his wife. + + Gregory Peck + Joan Collins + Stephen Boyd + + 1958 + Movies + Western + + + TVG + + + 3 + + + + The Bravados + A Southwestern man (Gregory Peck) hunts to kill the four outlaws he blames for the rape/murder of his wife. + + Gregory Peck + Joan Collins + Stephen Boyd + + 1958 + Movies + Western + + + TVG + + + 3 + + + + Tora! Tora! Tora! + The history of the Dec. 7, 1941, attack on Pearl Harbor is re-created from U.S. and Japanese viewpoints. + + Martin Balsam + Sô Yamamura + Joseph Cotten + + 1970 + Movies + War + + + TVG + + + 3 + + + + Wild Rovers + An old cowboy (William Holden) and his young partner (Ryan O'Neal) try to finance a dream ranch by robbing a bank. + + William Holden + Ryan O'Neal + Karl Malden + + 1971 + Movies + Western + + + 3 + + + + Dog Tales Classics + Specials + + + + Dog Tales Classics + Specials + + + + Getting Green + Episode 125 + A weekly half-hour series offering practical tips on greening your lifestyle. + Environmental + + + TVG + + + + Getting Green + Episode 126 + A weekly half-hour series offering practical tips on greening your lifestyle. + Environmental + + + TVG + + + + Made in Hollywood: Teen Edition + Spotlights new movies and DVDs. + News Magazine + Performing Arts + + + TVG + + + + Made in Hollywood: Teen Edition + Spotlights new movies and DVDs. + News Magazine + Performing Arts + + + TVG + + + + Short MOVIES! + Short movies. + Performing Arts + + + + The Searchers + A Confederate veteran (John Wayne) and his part-Cherokee partner (Jeffrey Hunter) search five years for a kidnapped girl (Natalie Wood). + + John Wayne + Jeffrey Hunter + Natalie Wood + + 1956 + Movies + Western + + + TVG + + + 4 + + + + The Getaway + A bank robber (Steve McQueen) and his wife (Ali MacGraw) cross a big shot (Ben Johnson) and are chased to the Mexican border. + + Steve McQueen + Ali MacGraw + Ben Johnson + + 1972 + Movies + Action + + + TVPG + + + 3 + + + + Someone to Watch Over Me + A married New York detective (Tom Berenger) works nights guarding a socialite murder witness (Mimi Rogers). + + Tom Berenger + Mimi Rogers + Lorraine Bracco + + 1987 + Movies + Thriller + + + TVG + + + 2 + + + + The Postman Always Rings Twice + A drifter (John Garfield) stops at a Greek diner and helps the owner's (Cecil Kellaway) lusty wife (Lana Turner) become a widow. + + Lana Turner + John Garfield + Cecil Kellaway + + 1946 + Movies + Crime Story + + + TVG + + + 3 + + + + Gun Crazy + A gun fanatic (John Dall) and a sideshow sharpshooter (Peggy Cummins) team up for romance and a crime spree. + + Peggy Cummins + John Dall + Berry Kroeger + + 1950 + Movies + Crime Story + + + TVG + + + 3 + + + + The Dark Corner + A private eye's (Mark Stevens) secretary (Lucille Ball) helps expose an art collector (Clifton Webb) who has framed him for murder. + + Lucille Ball + Mark Stevens + Clifton Webb + + 1946 + Movies + Crime Story + + + TVG + + + 3 + + + + The Dark Corner + A private eye's (Mark Stevens) secretary (Lucille Ball) helps expose an art collector (Clifton Webb) who has framed him for murder. + + Lucille Ball + Mark Stevens + Clifton Webb + + 1946 + Movies + Crime Story + + + TVG + + + 3 + + + + Quicksand + A garage mechanic (Mickey Rooney) robs the till for a date with a gold digger (Jeanne Cagney), then sinks even lower. + + Mickey Rooney + Jeanne Cagney + Peter Lorre + + 1950 + Movies + Crime Story + + + TVG + + + 2 + + + + Please Murder Me + A lovesick attorney (Raymond Burr) tries to trap a murder client (Angela Lansbury) he got acquitted by arranging for her to kill him. + + Angela Lansbury + Raymond Burr + Dick Foran + + 1955 + Movies + Crime Story + + + TVG + + + 2 + + + + The Bat + A mystery writer (Agnes Moorehead) and her friends are stalked by a faceless throat-ripper (Vincent Price) in a haunted house. + + Vincent Price + Agnes Moorehead + Gavin Gordon + + 1959 + Movies + Mystery + + + TVG + + + 1 + + + + Wild Rovers + An old cowboy (William Holden) and his young partner (Ryan O'Neal) try to finance a dream ranch by robbing a bank. + + William Holden + Ryan O'Neal + Karl Malden + + 1971 + Movies + Western + + + 3 + + + + Bullitt + A San Francisco police detective (Steve McQueen) gets hold of a mob-witness/corruption case and won't let go. + + Steve McQueen + Robert Vaughn + Jacqueline Bisset + + 1968 + Movies + Crime Story + + + TVPG + + + 3 + + + + McQ + A police officer unearths departmental corruption when he learns his murdered partner was one of many crooked cops. + + John Wayne + Eddie Albert + Diana Muldaur + + 1974 + Movies + Crime Story + + + TVG + + + 2 + + + + None but the Brave + Crash-landed Marines (Frank Sinatra, Clint Walker, Tommy Sands) form an uneasy truce with forgotten Japanese soldiers on a South Pacific island. + + Frank Sinatra + Clint Walker + Tommy Sands + + 1965 + Movies + War + + + TVG + + + 2 + + + + The Wackiest Ship in the Army + A captain (Jack Lemmon) and his ensign (Ricky Nelson) take a sorry ship and crew on a World War II spy mission. + + Jack Lemmon + Ricky Nelson + John Lund + + 1961 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + The Shop Around the Corner + The more Budapest co-workers (Margaret Sullavan, James Stewart) fight, the more they fall in love as secret pen pals. + + Margaret Sullavan + James Stewart + Frank Morgan + + 1940 + Movies + Romance + + + TVG + + + 3 + + + + You Can't Take It With You + An eccentric patriarch (Lionel Barrymore) meets the stuffy parents of his granddaughter's (Jean Arthur) fiance (James Stewart). + + Jean Arthur + Lionel Barrymore + James Stewart + + 1938 + Movies + Comedy + + + TVG + + + 4 + + + + Holiday + A tomboy New York socialite (Katharine Hepburn) flirts with her stuffy sister's (Doris Nolan) down-to-earth fiance (Cary Grant). + + Katharine Hepburn + Cary Grant + Doris Nolan + + 1938 + Movies + Romance + + + TVG + + + 3 + + + + Holiday + A tomboy New York socialite (Katharine Hepburn) flirts with her stuffy sister's (Doris Nolan) down-to-earth fiance (Cary Grant). + + Katharine Hepburn + Cary Grant + Doris Nolan + + 1938 + Movies + Romance + + + TVG + + + 3 + + + + All About Eve + A Broadway star (Bette Davis) takes a young and seemingly naive aspiring actress (Anne Baxter) under her wing. + + Bette Davis + Anne Baxter + Celeste Holm + + 1950 + Movies + Drama + + + TVG + + + 4 + + + + Desk Set + A TV-network researcher (Katharine Hepburn) with an amazing memory humors an efficiency expert (Spencer Tracy) sent to improve her department. + + Spencer Tracy + Katharine Hepburn + Gig Young + + 1957 + Movies + Romance + + + TVG + + + 3 + + + + The Public Enemy + Two hoodlums, Tom and Matt, rise up from their poverty-stricken slum life to become petty thieves, bootleggers and cold-blooded killers. But with street notoriety and newfound wealth, the duo feels the heat from the cops and rival gangsters both. + + James Cagney + Harlean Carpenter + Mae Clarke + + 1931 + Movies + Crime Story + + + TVG + + + 3 + + + + The Searchers + A Confederate veteran (John Wayne) and his part-Cherokee partner (Jeffrey Hunter) search five years for a kidnapped girl (Natalie Wood). + + John Wayne + Jeffrey Hunter + Natalie Wood + + 1956 + Movies + Western + + + TVG + + + 4 + + + + Chisum + The biggest cattle baron (John Wayne) in New Mexico declares war on a land-grabbing outsider (Geoffrey Deuel) around 1878. + + John Wayne + Geoffrey Deuel + Forrest Tucker + + 1970 + Movies + Western + + + TVG + + + 3 + + + + The Comancheros + A Texas Ranger (John Wayne) and a fugitive gambler (Stuart Whitman) stop white renegades running guns and liquor. + + John Wayne + Stuart Whitman + Lee Marvin + + 1961 + Movies + Western + + + TVG + + + 3 + + + + The Undefeated + A Union colonel (John Wayne) with a herd of cattle crosses paths with an ex-Confederate colonel's (Rock Hudson) gang in Mexico. + + John Wayne + Rock Hudson + Tony Aguilar + + 1969 + Movies + Western + + + TVG + + + 3 + + + + North to Alaska + A prospector (John Wayne) brings a French girl back from Seattle to his partner (Stewart Granger) in gold-rush Alaska. + + John Wayne + Stewart Granger + Ernie Kovacs + + 1960 + Movies + Western + + + TVG + + + 3 + + + + McQ + A police officer unearths departmental corruption when he learns his murdered partner was one of many crooked cops. + + John Wayne + Eddie Albert + Diana Muldaur + + 1974 + Movies + Crime Story + + + TVG + + + 2 + + + + McQ + A police officer unearths departmental corruption when he learns his murdered partner was one of many crooked cops. + + John Wayne + Eddie Albert + Diana Muldaur + + 1974 + Movies + Crime Story + + + TVG + + + 2 + + + + M*A*S*H + Hip Army surgeons Hawkeye (Donald Sutherland) and Trapper John (Elliott Gould) make their own rules in the chaos of Korea. + + Donald Sutherland + Elliott Gould + Sally Kellerman + + 1970 + Movies + Comedy + + + TVG + + + 4 + + + + Tony Rome + A private eye (Frank Sinatra) investigating a wealthy divorced couple's daughter finds blackmail, murder and fake jewels. + + Frank Sinatra + Jill St. John + Richard Conte + + 1967 + Movies + Crime Story + + + TVG + + + 3 + + + + The Bravados + A Southwestern man (Gregory Peck) hunts to kill the four outlaws he blames for the rape/murder of his wife. + + Gregory Peck + Joan Collins + Stephen Boyd + + 1958 + Movies + Western + + + TVG + + + 3 + + + + The Wild Bunch + An outlaw (William Holden) and his gang, on the run from the Mexican Army and bounty hunters, plot to rob a United States Army train. + + William Holden + Ernest Borgnine + Robert Ryan + + 1969 + Movies + Western + + + TVPG + + + 4 + + + + Dirty Harry + A police detective (Clint Eastwood) defies his superiors to capture a sniper terrorizing San Francisco. + + Clint Eastwood + Harry Guardino + Reni Santoni + + 1971 + Movies + Action + + + TVPG + + + 3 + + + + The Enforcer + + Clint Eastwood + Tyne Daly + Harry Guardino + + 1976 + Movies + Action + + + TVPG + + + 2 + + + + Someone to Watch Over Me + A married New York detective (Tom Berenger) works nights guarding a socialite murder witness (Mimi Rogers). + + Tom Berenger + Mimi Rogers + Lorraine Bracco + + 1987 + Movies + Thriller + + + TVG + + + 2 + + + + The Evil That Men Do + A hit man (Charles Bronson) leaves retirement to stop a British torturer (Joseph Maher) serving the regime in Guatemala. + + Charles Bronson + Theresa Saldana + Joseph Maher + + 1984 + Movies + Action + + + 2 + + + + Programación local + Variety + + + + Programación local + Variety + + + + Programación local + Variety + + + + Programación local + Variety + + + + Programación local + Variety + + + + Programación local + Variety + + + + Programación local + Variety + + + + Programación local + Variety + + + + Programación local + Variety + + + + Programación local + Variety + + + + Programación local + Variety + + + + Programación local + Variety + + + + Programación local + Variety + + + + Programación local + Variety + + + + Programación local + Variety + + + + Programación local + Variety + + + + Programación local + Variety + + + + Programación local + Variety + + + + Programación local + Variety + + + + Programación local + Variety + + + + Programación local + Variety + + + + Programación local + Variety + + + + Programación local + Variety + + + + Programación local + Variety + + + + Programación local + Variety + + + + Programación local + Variety + + + + Programación local + Variety + + + + Music Choice + Music + + + + Music Choice + Music + + + + Music Choice + Music + + + + Music Choice + Music + + + + Music Choice + Music + + + + Music Choice + Music + + + + Music Choice + Music + + + + Music Choice + Music + + + + Music Choice + Music + + + + Music Choice + Music + + + + Music Choice + Music + + + + Music Choice + Music + + + + Music Choice + Music + + + + Music Choice + Music + + + + Music Choice + Music + + + + Weather Gone Viral + The southern coast of China is hit by three separate tornados in one day; winds on the high seas bring mayhem to the cruise line industry; residents take cover when a bomb cyclone brings damaging winds and flooding rain to a city in coastal Brazil. + + + + Weather Gone Viral + A frozen overpass leads to a death-defying fall in Wisconsin; below-freezing temperatures cause a catastrophic pile-up in Texas; a thunderstorm with high winds ends a not so excellent ferry approach in Barcelona. + + + + World Poker Tour + Poker players compete in a series of tournaments at casinos around the world. + + + + Comedy.TV + Matt Knudsen; Avi Liberman; Manny Maldonado; Jimmie Walker; Greg Wilson; Mike E. Winfield; Gina Yashere; host Melinda Hill. + + + + Wine Hops and Road Stops + Featuring craft beers, wineries, breweries, pubs and interesting restaurants. + + + + PA Pipeline + + + + Pawn Stars + The Harrisons run the only family-owned pawnshop in Las Vegas, using their sharp-eyed skills and network of experts to assess the value of customers' items and make deals. + + + + Pawn Stars + The Harrisons run the only family-owned pawnshop in Las Vegas, using their sharp-eyed skills and network of experts to assess the value of customers' items and make deals. + + + + Pawn Stars + The Harrisons run the only family-owned pawnshop in Las Vegas, using their sharp-eyed skills and network of experts to assess the value of customers' items and make deals. + + + + Pawn Stars + The Harrisons run the only family-owned pawnshop in Las Vegas, using their sharp-eyed skills and network of experts to assess the value of customers' items and make deals. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Super Animals + Animals that use camouflage and trickery include alligator snapping turtles, leafy seadragons, leopards, cuttlefish, owls and more. + + + + Xploration Outer Space + Plans for survival on Mars; NASA's Swamp Works; the history of space suits; a futuristic space suit in the works at MIT. + + + + Animal Science + Cats throughout the world; the saber-tooth tiger; cat senses; incredible feline facts. + + + + Awesome Adventures + Pittsburgh, Pa.: white-water rapids; Primanti Brothers; the National Aviary; the soaring club. + + + + Tom Bob Outdoors Friends in Wild Places + + + + Career Day + Astronomer Dr. Ed Krupp; ranch owner Debbie Carpenter; soccer specialist Dan Metcalfe; hot air balloon entrepreneur Dawn Chapton. + + + + The World's Funniest Weather + A golden retriever marks his territory in the middle of a live weather cast; a little league player does a comedic dance on first base; a guy tries jumping over a mud pit. + + + + The Young Icons + Gymnasts Aviva and Tovah Zafrin; comic Michael Zhang; boy band Mindless Behavior; brain tumor survivor Maddison Franks. + + + + Nashville Insider + The CMT Artist of the Year red carpet; the GMA Dove Awards red carpet; Steve Wariner; Randy Travis is being honored in a big way. + + + + Real Green + Creating a home green garden; fishermen in India adopt sustainable practices; green cleaning products; recycling milk cartons. + + + + Traveling the World With Denella Ri'chard + Travel expert Denella Ri'Chard explores world cuisine and culture. + + + + MyDestination.TV + An invitation to look at the most exclusive vacation retreats around the world, including luxury hotels, hideaways and the best in spa escapes. + + + + Rollin' on TV + America's top RV and camping lifestyle program which covers all aspects of RVing, from RV destinations and events, to factory tours and product tests. + + + + Pawn Stars + A Civil War drum is brought into the shop; an 1834 book with the original rules of baseball; a customer brings in a 1970s skateboard. + + + + Pawn Stars + A 1961 Fender Stratocaster Guitar; a supposed Edward Hopper charcoal study; some Rocky Marciano memorabilia; Mickey Mouse display items; a Ford Model A hot rod; rare American coin; a Star Wars collection. + + + + Pawn Stars + A huge Richard Nixon head; a shoe likely worn by Secretariat; a Mattel Electronic Football Game; a signed Star Wars script; signed Arthur Ashe memorabilia; vintage Aerosmith tour t-shirts; a flag from Apollo 16. + + + + Celebrity Page + Getting up close to stars through celebrity news, red carpets, and behind-the-scenes access. + + + + Celebrity Page + Getting up close to stars through celebrity news, red carpets, and behind-the-scenes access. + + + + Kickin' It: With Byron Allen + The cast of "Barbie"; Idris Elba ("Hijack"); LaTocha; Matt Damon ("Oppenheimer"); Jamie Lee Curtis and Tiffany Haddish ("Haunted Mansion"); Seth Rogen; Gillian Bellinger; the cast of "Shooting Stars"; Jennifer Lopez; Michael Douglas; Nessa Barrett. + + + + The King of Queens + When Doug is not allowed to hold Danny's girlfriend's baby, Doug tries to persuade Carrie to have a child so he can get back at Danny. + + + + Nashville Insider + The CMT Artist of the Year red carpet; the GMA Dove Awards red carpet; Steve Wariner; Randy Travis is being honored in a big way. + + + + Extra + Inside the entertainment newsgathering process, as reporters coast to coast break headlines, advance the stories of the day, and sit down with celebrities. + + + + SOS: How to Survive + An ATV accident pins an experienced outdoorsman in the Canadian badlands; a young woman is lost and injured in the wilderness of Yosemite National Park. + + + + Major Crimes + While working two seemingly connected murders, the division suddenly uncovers a series of sexual assaults against servers from Tackles; a new theory about the killer gathers steam and an unexpected twist throws Major Crimes off course. + + + + Major Crimes + The team works overtime to solve the murder of a tech entrepreneur; Rusty struggles to feel accepted when Raydor's son comes home to visit; Fritz Howard prepares to assume command of the LAPD's Special Operations Bureau. + + + + Top 10 + Historic hurricanes; life-saving inventions. + + + + The World's Funniest Weather + A call-in viewer's bad singing causes a TV host to lose control; camping mishaps. + + + + Whacked Out Sports + A man up to his elbows in fish. + + + + Pawn Stars + Limited-edition Batman and Joker Bolin guitars; a bronze sculpture by M.L. Snowden; a pair of signed Betty Crocker letters; a WWII-era Adolf Hitler pincushion. + + + + Pawn Stars + A hat worn by musician Prince; an Egyptian scarab ring; a WWII-era head-shaped grass planter. + + + + Our Idiot Brother + Easygoing, dimwitted slacker Ned Rochlin (Paul Rudd) makes the biggest mistake of his so-far uninspired life when he sells some pot to a cop. Homeless and jobless upon his release from jail, Ned must prevail upon his three sisters (Elizabeth Banks, Zooey Deschanel, Emily Mortimer) for help. Though Ned himself is utterly without a shred of ambition or guile, it's a different story with his sisters, who find their carefully ordered lives thrown into chaos whenever he's around. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Recipe.TV + Oysters at Mont St. Michel. + + + + Recipe.TV + Oysters at Mont St. Michel. + + + + Super Animals + Animals that use camouflage and trickery include alligator snapping turtles, leafy seadragons, leopards, cuttlefish, owls and more. + + + + The Great Dr. Scott + Scott is faced with one of the worst cases of animal cruelty in his career; a debilitating virus endangers the eyesight and independent spirit of an adventurous cat. + + + + America's Court With Judge Ross + Damaged furniture, unpaid rent, and too many guests come between feisty ex-roommates in their golden years. + + + + America's Court With Judge Ross + An altercation between karaoke singers leads to a broken jaw; a man is pushed into a lake, damaging a cell phone. + + + + Personal Injury Court + A woman sues a traveling rodeo for $755,000 after a bull rams her during a game of "last man standing.". + + + + Personal Injury Court + A young mother sues a magician for $1 million when she is injured at his show. + + + + Recipe.TV + Oysters at Mont St. Michel. + + + + Recipe.TV + Oysters at Mont St. Michel. + + + + Pawn Stars + Another look at some of the Priciest items the Pawn Stars have ever seen: a mint condition 1967 Ford Shelby G.T. 350, a Hotchkiss revolving Cannon from the 1800's; $85,000 Gibson guitar once owned by Stephen Stills. + + + + Pawn Stars + The best fakes and surprising fortunes are revisited: a two million dollar painting by Claude Monet; a 1715 gold coin; a set of rare autographed Hollywood Postcards. + + + + Couples Court With the Cutlers + Social media is destroying the relationship of an engaged couple; Matt Stopera of BuzzFeed joins the court and offers some insightful details regarding this issue. + + + + Couples Court With the Cutlers + A man suspects his girlfriend is still doing her dirt after she confessed to cheating with another woman. + + + + Mathis Court With Judge Mathis + Mobile tattoo artist seeks payment for his services at a party; woman sues after a specialized yoga class doesn't deliver as advertised. + + + + Mathis Court With Judge Mathis + A woman is injured after her wig is repossessed; on-air talent outsources interviews for a web series to her assistant. + + + + Supreme Justice With Judge Karen + Influencer is sued for bringing a woman with excessive body hair to a beach party; dispute between neighbors over an avocado tree. + + + + Supreme Justice With Judge Karen + A woman sues a problematic massage client; a fight between two dogs causes injuries. + + + + Judge Mathis + The plaintiff is the defendant's wife, but she petitions the court for a paternity test because she does not know if he is the biological father of her son. + + + + Justice With Judge Mablean + Dispute between co-parents over their daughter's winnings from a beauty pageant; woman sues after an expensive blanket is returned damaged. + + + + Justice With Judge Mablean + A restaurant owner sues a chef for bail money and property damage after a fight with a patron on opening night. + + + + Person, Place or Thing + A modern take on the age-old game of 20 Questions intersperses comedy with common knowledge; host People's Choice Award winner Melissa Peterman. + + + + Person, Place or Thing + A modern take on the age-old game of 20 Questions intersperses comedy with common knowledge; host People's Choice Award winner Melissa Peterman. + + + + The King of Queens + Doug lets the attention go to his head when he gets anonymous e-mail from someone who saw him perform at a karaoke club. + + + + The King of Queens + After learning that a wedding reception is five hours away, Doug and Carrie scramble for an excuse to not go. + + + + Extra + Inside the entertainment newsgathering process, as reporters coast to coast break headlines, advance the stories of the day, and sit down with celebrities. + + + + ES.TV + Helen Mirren ("Barbie"); Page Kennedy ("Meg 2: The Trench"); Sophie Thatcher ("The Boogeyman"); Keanu Reeves ("John Wick: Chapter 4"); Jessica Golden; LANY ("XXL"). + + + + Law & Order: Special Victims Unit + A troubled teen (David Del Rio) is the first suspect when a money manager is found murdered in his loft, but a hidden video camera leads detectives to a star football player whose agent is willing to do almost anything to protect his client. + + + + Law & Order: Special Victims Unit + A woman's body is found in a park alongside a man with a bullet in his head. + + + + The First 48 + A man is found shot dead in his car in Miami; a man is found shot dead in his backyard in Memphis, Tenn. + + + + Storage Wars + Kenny treats Perris, Calif., like a European vacation, picking up women along the way; Jarrod's lousy locker doesn't offer him any protection; Rene's tools end up being older than he expects. + + + + Storage Wars + Brandi allows Jarrod to spend freely in El Monte, Calif., but Mary winds up landing the priciest locker of the day; Rene achieves good results on a low budget. + + + + World Poker Tour + Poker players compete in a series of tournaments at casinos around the world. + + + + Comics Unleashed With Byron Allen + Harland Williams; Jon Rineman; Mike Yard; Jackie Kashian. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Recipe.TV + Great chefs and food visionaries put their talents on display for the home cook to emulate. + + + + Recipe.TV + Great chefs and food visionaries put their talents on display for the home cook to emulate. + + + + Xploration Outer Space + Four types of engineers that are on the cutting edge of aerospace technology; building rocket engines using 3-D printing; creating autonomous robots that will explore Mars. + + + + Ocean Mysteries With Jeff Corwin + Looking back on exciting island adventures: sting rays, sea terns, grizzly bears. + + + + America's Court With Judge Ross + A man sues his ex-girlfriend for spending too much of his money on her vacation; a father blames his daughter's ex-boyfriend for property damage. + + + + America's Court With Judge Ross + A former couple fight over their dog; a damaged computer. + + + + Personal Injury Court + Tony Dovolani ("Dancing With the Stars") testifies after a woman suffers irreparable damages from being dropped by her dancing partner and sues for $500,000. + + + + Personal Injury Court + A pig lover sues for $50,000 after her friend's pig bites off her finger. + + + + Recipe.TV + Great chefs and food visionaries put their talents on display for the home cook to emulate. + + + + Recipe.TV + Great chefs and food visionaries put their talents on display for the home cook to emulate. + + + + Pawn Stars + Rick goes to look at 1966 Chevy II; a program from the unveiling of the Statue of Liberty; Corey attempts to convince Rick to buy him a company car. + + + + Pawn Stars + A 1923 Babe Ruth baseball card; a 1930s unrestored children's tricycle comes into the shop; Corey totals his truck and is forced to drive the company car with Rick's face on it. + + + + Couples Court With the Cutlers + A former military interrogator investigates whether or not a 67-year-old man is cheating on his girlfriend. + + + + Couples Court With the Cutlers + Couples needed answers and the court put them to the test; the Cutlers catch up with couples after shocking lie detector test results were revealed in court. + + + + Mathis Court With Judge Mathis + Judge Greg Mathis presides over small-claims court arbitrations. + + + + Mathis Court With Judge Mathis + A son is sued after he has no choice but to send his father packing. + + + + Supreme Justice With Judge Karen + Catty comments come between friends; dispute between co-parents after a child misses his own surprise birthday party. + + + + Supreme Justice With Judge Karen + A man says his mother's social media posts led to a robbery; a babysitter sues a former client over lost wages. + + + + Judge Mathis + The plaintiff says he and the defendant dated for years, but she insists they were nothing more than friends and claims he is suing her for unpaid rent and a security deposit because she refused to date him. + + + + Justice With Judge Mablean + Aunt seeks remaining rent after she kicks out her niece who refuses to stop stripping online; defective tote bags are given away without permission. + + + + Justice With Judge Mablean + A promotional model sues for breach of contract; a man blames the landlord after he is injured using fitness equipment at an apartment complex. + + + + Person, Place or Thing + A modern take on the age-old game of 20 Questions intersperses comedy with common knowledge; host People's Choice Award winner Melissa Peterman. + + + + Person, Place or Thing + A modern take on the age-old game of 20 Questions intersperses comedy with common knowledge; host People's Choice Award winner Melissa Peterman. + + + + The King of Queens + Doug and Carrie are confused when Deacon and Kelly are not interested in buying the house next door to theirs. + + + + The King of Queens + When Doug can't understand the difficulties Carrie faces when caring for Arthur, he takes over and learns the hard way. + + + + Extra + Inside the entertainment newsgathering process, as reporters coast to coast break headlines, advance the stories of the day, and sit down with celebrities. + + + + ES.TV + Michael Cera ("Barbie"); Alice Braga ("Hypnotic"); Isaiah Russell-Bailey ("Crater"); Kathy Bates ("Are You There God? It's Me, Margaret"); Claude Stuart; Gus Dapperton ("Homebody"). + + + + Chicago Fire + Severide wants to implicate the serial arsonist; Dawson and Shay face the unexpected on a routine call; suspicions indicate Clarke is the mole; Mouch campaigns for union president. + + + + Chicago Fire + McLeod pushes Boden toward an early retirement and chooses a potential replacement; all make known their disdain for the mole; Shay enjoys a full social life. + + + + The First 48 + Detectives track down a murder suspect; survivors of a brutal shooting try to identify the perpetrators. + + + + Storage Wars + Ivy brings his son to Moreno Valley, where good things always happen, and leaves with yo-yo's of an unexpected kind; Rene and Casey discover that their shoes are more "air" and less "Jordan.". + + + + Storage Wars + Dave does not intend to lose another great locker when the buyers return to Palm Springs, Calif.; Rene attempts some inside information; Ivy must buy big in order to make the trip worth his time; Mary enlists an unlikely ally. + + + + World Poker Tour + Poker players compete in a series of tournaments at casinos around the world. + + + + Comics Unleashed With Byron Allen + Ryan Hamilton; Joe DeVito; Lowell Sanders; Lisa Landry. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Recipe.TV + Great chefs and food visionaries put their talents on display for the home cook to emulate. + + + + Recipe.TV + Great chefs and food visionaries put their talents on display for the home cook to emulate. + + + + Nature Knows Best + Scientists study animals' swarm behavior to make better robots, collect things on other planets and make better autonomous cars. + + + + Animal Science + Cats throughout the world; the saber-tooth tiger; cat senses; incredible feline facts. + + + + America's Court With Judge Ross + A man seeks compensation from his cousin's neighbor after he was wrongfully arrested because she called the police while he was house-sitting. + + + + America's Court With Judge Ross + A dispute over the appraised value of a guitar; a sorority formal doesn't go as planned. + + + + Personal Injury Court + A single mom claims that the man suing her for $380,000 is a fraud. + + + + Personal Injury Court + A 17-year-old boy suffers life-threatening injuries while riding a watercraft, and his mother sues for $2.2 million. + + + + Recipe.TV + Great chefs and food visionaries put their talents on display for the home cook to emulate. + + + + Recipe.TV + Great chefs and food visionaries put their talents on display for the home cook to emulate. + + + + Pawn Stars + Two original 1 comic books from the Avengers and Giant Size X-Men series come into the shop; a cane belonging William Pinkerton from the infamous Pinkerton detective agency; Chumlee leaves work to track down his own comic book collection. + + + + Pawn Stars + A 1963 Beatles signed guitar comes into the shop; Corey checks out a 1981 Suzuki motorcycle; Rick make an effort to teach the guys some office etiquette. + + + + Couples Court With the Cutlers + After proving to her husband that she's been a faithful wife, a married couple returns to Couples Court because the woman now believes the man is having an ongoing affair with his former mistress. + + + + Couples Court With the Cutlers + A dog trainer is in the dog house after her boyfriend of two years finds condoms in her purse. + + + + Mathis Court With Judge Mathis + Man sues his roommate's girlfriend for intentionally breaking his television, twice; woman seeks compensation after a food festival booth is a success. + + + + Mathis Court With Judge Mathis + A parent seeks compensation after a son is traumatized by a co-worker's road rage; a woman sues after she is scammed by an online love interest. + + + + Supreme Justice With Judge Karen + Man sues for wrongful termination after a hotel guest falsely accuses him of inappropriate behavior during work hours. + + + + Supreme Justice With Judge Karen + A woman sues her child's father for breach of contract; a birthday party on a chartered boat doesn't go as planned. + + + + Judge Mathis + A man sues his ex-girlfriend for unreturned items; she says she filed a restraining order against him after he slapped her and spit in her face. + + + + Justice With Judge Mablean + Woman sues her ex-boyfriend for the return of her security deposit after she moved across the country to live with him, only to discover he was cheating. + + + + Justice With Judge Mablean + Newlyweds sue their officiant after the bride is injured during wedding ceremony; a man blames a nightclub coat check for lost keys. + + + + Person, Place or Thing + A modern take on the age-old game of 20 Questions intersperses comedy with common knowledge; host People's Choice Award winner Melissa Peterman. + + + + Person, Place or Thing + A modern take on the age-old game of 20 Questions intersperses comedy with common knowledge; host People's Choice Award winner Melissa Peterman. + + + + The King of Queens + Doug tries to keep $5,000 in gambling winnings a secret from Carrie, who didn't want him betting to begin with; Carrie is offered a new job. Eddie Money guest stars. + + + + The King of Queens + After Carrie tells Doug that it's okay for him to find other women attractive, he asks her to tell him which men she finds attractive. Unsurprisingly, this doesn't end well. + + + + Education Hour + Instructional + + + + Education Hour + Instructional + + + + Education Hour + Instructional + + + + Education Hour + Instructional + + + + Education Hour + Instructional + + + + Education Hour + Instructional + + + + Education Hour + Instructional + + + + Education Hour + Instructional + + + + Education Hour + Instructional + + + + Education Hour + Instructional + + + + Education Hour + Instructional + + + + Education Hour + Instructional + + + + Education Hour + Instructional + + + + Education Hour + Instructional + + + + Education Hour + Instructional + + + + Education Hour + Instructional + + + + Education Hour + Instructional + + + + Education Hour + Instructional + + + + Education Hour + Instructional + + + + Education Hour + Instructional + + + + Education Hour + Instructional + + + + Education Hour + Instructional + + + + Education Hour + Instructional + + + + Education Hour + Instructional + + + + Education Hour + Instructional + + + + Education Hour + Instructional + + + + Education Hour + Instructional + + + + Education Hour + Instructional + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Phoenix Suns vs. Detroit Pistons + Phoenix Suns at Detroit Pistons + From Little Caesars Arena in Detroit, Mich. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Golden State Warriors vs. Detroit Pistons + Golden State Warriors at Detroit Pistons + Interconference foes both play the second half of back-to-backs when Golden State visits Detroit. In 2022-23, the Pistons swept the season series with the Warriors for the first time since before sharpshooter Stephen Curry was drafted into the NBA. + Sports + Basketball + + + + New Orleans Pelicans vs. Denver Nuggets + New Orleans Pelicans at Denver Nuggets + From Ball Arena in Denver. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Phoenix Suns vs. Detroit Pistons + Phoenix Suns at Detroit Pistons + From Little Caesars Arena in Detroit, Mich. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Golden State Warriors vs. Detroit Pistons + Golden State Warriors at Detroit Pistons + Interconference foes both play the second half of back-to-backs when Golden State visits Detroit. In 2022-23, the Pistons swept the season series with the Warriors for the first time since before sharpshooter Stephen Curry was drafted into the NBA. + Sports + Basketball + + + + New Orleans Pelicans vs. Denver Nuggets + New Orleans Pelicans at Denver Nuggets + From Ball Arena in Denver. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Memphis Grizzlies vs. Portland Trail Blazers + Memphis Grizzlies at Portland Trail Blazers + From Moda Center in Portland, Ore. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Atlanta Hawks vs. Oklahoma City Thunder + Atlanta Hawks at Oklahoma City Thunder + From Paycom Center in Oklahoma City. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Phoenix Suns vs. Detroit Pistons + Phoenix Suns at Detroit Pistons + From Little Caesars Arena in Detroit, Mich. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + San Antonio Spurs vs. Indiana Pacers + San Antonio Spurs at Indiana Pacers + From Gainbridge Fieldhouse in Indianapolis. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Boston Celtics vs. Brooklyn Nets + Boston Celtics at Brooklyn Nets + From Barclays Center in Brooklyn, N.Y. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Toronto Raptors vs. San Antonio Spurs + Toronto Raptors at San Antonio Spurs + From Frost Bank Center in San Antonio. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Washington Wizards vs. Philadelphia 76ers + Washington Wizards at Philadelphia 76ers + From Wells Fargo Center in Philadelphia. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Boston Celtics vs. Brooklyn Nets + Boston Celtics at Brooklyn Nets + From Barclays Center in Brooklyn, N.Y. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Golden State Warriors vs. Cleveland Cavaliers + Golden State Warriors at Cleveland Cavaliers + From Rocket Mortgage FieldHouse in Cleveland. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Milwaukee Bucks vs. Brooklyn Nets + Milwaukee Bucks at Brooklyn Nets + From Barclays Center in Brooklyn, N.Y. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Sacramento Kings vs. Houston Rockets + Sacramento Kings at Houston Rockets + From the Toyota Center in Houston. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Golden State Warriors vs. Cleveland Cavaliers + Golden State Warriors at Cleveland Cavaliers + From Rocket Mortgage FieldHouse in Cleveland. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Los Angeles Clippers vs. New York Knicks + Los Angeles Clippers at New York Knicks + LA gets back to work with a game in New York. Since a loss to the Lakers on Nov. 1 that dropped them to 3-2, the Clippers acquired 10-time All-Star and three-time scoring champion James Harden and P.J. Tucker from the 76ers for players and picks. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Sacramento Kings vs. Houston Rockets + Sacramento Kings at Houston Rockets + From the Toyota Center in Houston. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Charlotte Hornets vs. Dallas Mavericks + Charlotte Hornets at Dallas Mavericks + From American Airlines Center in Dallas. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Utah Jazz vs. Chicago Bulls + Utah Jazz at Chicago Bulls + From the United Center in Chicago. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Utah Jazz vs. Minnesota Timberwolves + Utah Jazz at Minnesota Timberwolves + From the Target Center in Minneapolis. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Charlotte Hornets vs. Dallas Mavericks + Charlotte Hornets at Dallas Mavericks + From American Airlines Center in Dallas. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Sacramento Kings vs. Houston Rockets + Sacramento Kings at Houston Rockets + From the Toyota Center in Houston. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Memphis Grizzlies vs. Portland Trail Blazers + Memphis Grizzlies at Portland Trail Blazers + From Moda Center in Portland, Ore. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + Boston Celtics vs. Minnesota Timberwolves + Boston Celtics at Minnesota Timberwolves + From the Target Center in Minneapolis. + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA League Pass + Catch NBA Basketball action with League Pass. See the teams, the players and the match-ups you want to watch - LIVE! + Sports + Basketball + + + + NBA TV Pregame Show + Preview of tonight's game. + Sports + Talk Show + + + + Chicago Bulls vs. Denver Nuggets + Chicago Bulls at Denver Nuggets + The Nuggets and Bulls meet for the 100th time. Denver leads the series 56-43 after the teams split a pair in 2022-23. Chicago has won two straight in the Mile High City, including 117-96 last season behind Nikola Vucevic's 25 points and 15 rebounds. + Sports + Basketball + + + + NBA TV Postgame Show + Review of the game; highlights; interviews with players and coaches. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/4 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/4 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/4 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/4 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/4 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/4 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/4 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/4 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + Chicago Bulls vs. Denver Nuggets + Chicago Bulls at Denver Nuggets + The Nuggets and Bulls meet for the 100th time. Denver leads the series 56-43 after the teams split a pair in 2022-23. Chicago has won two straight in the Mile High City, including 117-96 last season behind Nikola Vucevic's 25 points and 15 rebounds. + Sports + Basketball + + + + NBA GameTime + NBA GameTime 11/4 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/4 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/4 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/4 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/4 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/4 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/4 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/4 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/4 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/4 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA TV Marquee Matchup + The best match-up of the week from around the Association. + Sports + Basketball + + + + NBA TV Marquee Matchup + The best match-up of the week from around the Association. + Sports + Basketball + + + + NBA TV Marquee Matchup + The best match-up of the week from around the Association. + Sports + Basketball + + + + NBA TV Marquee Matchup + The best match-up of the week from around the Association. + Sports + Basketball + + + + NBA GameTime Live + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA Action + A weekly look back at the top news and highlights in the NBA. + Sports + Basketball + + + TVG + + + + The Dream Team + The story behind the historic Olympic gold medal run of the 1992 USA Men's Basketball team. + Sports + Basketball + + + TVPG + + + + NBA GameTime Live + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/5 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/5 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/5 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/5 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/5 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/5 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/5 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/5 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/5 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/5 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/5 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/5 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/5 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/5 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/5 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/5 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/5 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/5 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/5 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/5 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/5 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/5 + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA TV Marquee Matchup + The best match-up of the week from around the Association. + Sports + Basketball + + + + NBA TV Marquee Matchup + The best match-up of the week from around the Association. + Sports + Basketball + + + + NBA TV Marquee Matchup + The best match-up of the week from around the Association. + Sports + Basketball + + + + NBA TV Marquee Matchup + The best match-up of the week from around the Association. + Sports + Basketball + + + + NBA TV Pregame Show + Preview of tonight's game. + Sports + Talk Show + + + + Los Angeles Lakers vs. Miami Heat + Los Angeles Lakers at Miami Heat + LeBron James' Lakers continue a four-game road trip by facing the Heat. Miami is 4-2 against Los Angeles since James led the Lakers to the 2020 NBA title. Bam Adebayo (MIA) averaged 26.5 points and 13.5 rebounds against Los Angeles last season. + Sports + Basketball + + + + NBA TV Postgame Show + Review of the game; highlights; interviews with players and coaches. + Sports + Talk Show + + + + NBA GameTime + Featuring a deep rotation of top basketball analysts who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/6 + Featuring a deep rotation of top basketball analysts, who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/6 + Featuring a deep rotation of top basketball analysts, who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/6 + Featuring a deep rotation of top basketball analysts, who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/6 + Featuring a deep rotation of top basketball analysts, who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/6 + Featuring a deep rotation of top basketball analysts, who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/6 + Featuring a deep rotation of top basketball analysts, who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/6 + Featuring a deep rotation of top basketball analysts, who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + Los Angeles Lakers vs. Miami Heat + Los Angeles Lakers at Miami Heat + LeBron James' Lakers continue a four-game road trip by facing the Heat. Miami is 4-2 against Los Angeles since James led the Lakers to the 2020 NBA title. Bam Adebayo (MIA) averaged 26.5 points and 13.5 rebounds against Los Angeles last season. + Sports + Basketball + + + + NBA GameTime + NBA GameTime 11/6 + Featuring a deep rotation of top basketball analysts, who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/6 + Featuring a deep rotation of top basketball analysts, who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/6 + Featuring a deep rotation of top basketball analysts, who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/6 + Featuring a deep rotation of top basketball analysts, who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/6 + Featuring a deep rotation of top basketball analysts, who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/6 + Featuring a deep rotation of top basketball analysts, who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/6 + Featuring a deep rotation of top basketball analysts, who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/6 + Featuring a deep rotation of top basketball analysts, who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/6 + Featuring a deep rotation of top basketball analysts, who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/6 + Featuring a deep rotation of top basketball analysts, who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/6 + Featuring a deep rotation of top basketball analysts, who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA GameTime + NBA GameTime 11/6 + Featuring a deep rotation of top basketball analysts, who share the latest news, scores, highlights and analysis surrounding the leading storylines from around the NBA. + Sports + Talk Show + + + + NBA TV Marquee Matchup + The best match-up of the week from around the Association. + Sports + Basketball + + + + NBA TV Marquee Matchup + The best match-up of the week from around the Association. + Sports + Basketball + + + + NBA TV Marquee Matchup + The best match-up of the week from around the Association. + Sports + Basketball + + + + NBA CrunchTime + Best of CrunchTime (11/6) + A fast-paced coverage with live. + + Steve Smith + + Sports + Basketball + + + TVPG + + + + NBA CrunchTime + Best of CrunchTime (11/6) + A fast-paced coverage with live. + + Steve Smith + + Sports + Basketball + + + TVPG + + + + NBA TV Marquee Matchup + The best match-up of the week from around the Association. + Sports + Basketball + + + + NBA CrunchTime + Best of CrunchTime (11/6) + A fast-paced coverage with live. + + Steve Smith + + Sports + Basketball + + + TVPG + + + + NBA CrunchTime + Best of CrunchTime (11/6) + A fast-paced coverage with live. + + Steve Smith + + Sports + Basketball + + + TVPG + + + + NBA TV Marquee Matchup + The best match-up of the week from around the Association. + Sports + Basketball + + + + NBA CrunchTime + Best of CrunchTime (11/6) + A fast-paced coverage with live. + + Steve Smith + + Sports + Basketball + + + TVPG + + + + NBA CrunchTime + Best of CrunchTime (11/6) + A fast-paced coverage with live. + + Steve Smith + + Sports + Basketball + + + TVPG + + + + NBA TV Marquee Matchup + The best match-up of the week from around the Association. + Sports + Basketball + + + + NBA CrunchTime + Best of CrunchTime (11/6) + A fast-paced coverage with live. + + Steve Smith + + Sports + Basketball + + + TVPG + + + + NBA CrunchTime + Best of CrunchTime (11/6) + A fast-paced coverage with live. + + Steve Smith + + Sports + Basketball + + + TVPG + + + + NBA TV Marquee Matchup + The best match-up of the week from around the Association. + Sports + Basketball + + + + NBA CrunchTime + Best of CrunchTime (11/6) + A fast-paced coverage with live. + + Steve Smith + + Sports + Basketball + + + TVPG + + + + NBA TV Marquee Matchup + The best match-up of the week from around the Association. + Sports + Basketball + + + + NBA CrunchTime + Best of CrunchTime (11/6) + A fast-paced coverage with live. + + Steve Smith + + Sports + Basketball + + + TVPG + + + + NBA TV Marquee Matchup + The best match-up of the week from around the Association. + Sports + Basketball + + + + NBA CrunchTime + Best of CrunchTime (11/6) + A fast-paced coverage with live. + + Steve Smith + + Sports + Basketball + + + TVPG + + + + NBA TV Marquee Matchup + The best match-up of the week from around the Association. + Sports + Basketball + + + + NBA CrunchTime + Best of CrunchTime (11/6) + A fast-paced coverage with live. + + Steve Smith + + Sports + Basketball + + + TVPG + + + + NBA TV Marquee Matchup + The best match-up of the week from around the Association. + Sports + Basketball + + + + NBA CrunchTime + Best of CrunchTime (11/6) + A fast-paced coverage with live. + + Steve Smith + + Sports + Basketball + + + TVPG + + + + NBA TV Marquee Matchup + The best match-up of the week from around the Association. + Sports + Basketball + + + + NBA CrunchTime + Best of CrunchTime (11/6) + A fast-paced coverage with live. + + Steve Smith + + Sports + Basketball + + + TVPG + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + NBC Sports + Sports + + + + Desfile Día de Muertos + Las tradicionales carrozas alegóricas de esta colorida celebración toman de nuevo las calles de Ciudad de México para rendir homenaje con ofrendas, calaveras y catrinas a quienes se han ido. + Specials + Parade + + + + Fútbol estelar Chivas + Extra: Previa Guadalajara vs. Cruz Azul + La información de la liga y las noticias sobre los equipos previo al juego Chivas contra Cruz Azul, correspondiente a la Jornada 16 del torneo Apertura. Disputado el 4 de noviembre de 2023 en el estadio Akron. + Sports + Talk Show + + + + Cruz Azul vs. Guadalajara + Guadalajara vs. Cruz Azul + Jornada 16 del Torneo Apertura 2023 de la Liga MX. Guadalajara recibe a Cruz Azul en el estadio Akron. + Sports + Soccer + + + + Fútbol estelar Chivas + Extra: Post Guadalajara vs. Cruz Azul + Lo más emocionante del partido Chivas contra Cruz Azul, correspondiente a la Jornada 16 del torneo Apertura. Disputado el 4 de noviembre de 2023 en el estadio Akron. + Sports + Talk Show + + + + Tercer Milenio 360 Internacional + Un enfoque no convencional de las noticias que, más allá de informar, promueve la toma de conciencia sobre temas determinantes para la humanidad, pero que no siempre se difunden en los medios. + Performing Arts + Paranormal + + + + Tercer Milenio 360 Internacional + Un enfoque no convencional de las noticias que, más allá de informar, promueve la toma de conciencia sobre temas determinantes para la humanidad, pero que no siempre se difunden en los medios. + Performing Arts + Paranormal + + + + El sinvergüenza + Un cantante ranchero, parrandero, tramposo y jugador apuesta en los palenques y paga con cheques sin fondo, por eso debe hasta el traje de charro. + + Vicente Fernández + Blanca Guerra + Guillermo Murray + + 1984 + Movies + Musical + + + + Seguridad de frontera: Australia + Respuestas peligrosas + Los agentes de los departamentos de Inmigración, Aduanas y Cuarentena de Australia muestran su habilidad para bloquear a narcos y contrabandistas cuando intentan cruzar la frontera. + Documentary + + + + 12 corazones + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + 12 corazones + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + 12 corazones + Playero + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + 12 corazones + Luchadores + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + 12 corazones + Luchadores + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + 12 corazones + Luchadores + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + 12 corazones + Playero + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + 12 corazones + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + 12 corazones + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + The War + En el Misisipí del 70, un veterano de Vietnam trata de vivir en armonía mientras sus hijos pelean por la casa del árbol. + + Elijah Wood + Kevin Costner + Mare Winningham + + 1994 + Movies + Drama + + + TVG + + + 2 + + + + Gone + Un año después de escapar de un asesino en serie, una mujer intenta rescatar a su hermana del mismo hombre desquiciado que intentó matarla en el pasado, quien la ha secuestrado. + + Amanda Seyfried + Daniel Sunjata + Jennifer Carpenter + + 2012 + Movies + Thriller + + + TVG + + + 2 + + + + Historias de la Virgen morena + Como caído del cielo + Flora se pone su vestido de novia y espera por Arturo, pero esa experiencia marca su vida. Una milagrosa confusión hace que Gustavo llegue a su vida para hacerla creer de nuevo en el amor. + Religious + Drama + + + TV14 + + + + Caso cerrado + Madrastra; Sangre esclava + Yuliet quiere sacar a sus dos hijastros de su casa porque son unos vagos; el padre de ellos regresó a Cuba. Carlos acusa a su hermana Graciela de tenerlo encerrado porque necesita su sangre. + Reality TV + Legal + + + TVPG + + + + Sunday Night Football en Universo + La acción de la temporada completa de la NFL está en Universo. Cada touchdown, cada victoria y toda la adrenalina del fútbol americano y en español. Sunday Night Football en Universo comienza. + Sports + Football + + + TVPG + + + + Buffalo Bills vs. Cincinnati Bengals + Desde el Paycor Stadium, en Cincinnati, Estados Unidos. + Sports + Football + + + + Tercer Milenio 360 Internacional + Un enfoque no convencional de las noticias que, más allá de informar, promueve la toma de conciencia sobre temas determinantes para la humanidad, pero que no siempre se difunden en los medios. + Performing Arts + Paranormal + + + + Tercer Milenio 360 Internacional + Un enfoque no convencional de las noticias que, más allá de informar, promueve la toma de conciencia sobre temas determinantes para la humanidad, pero que no siempre se difunden en los medios. + Performing Arts + Paranormal + + + + Tercer Milenio 360 Internacional + Un enfoque no convencional de las noticias que, más allá de informar, promueve la toma de conciencia sobre temas determinantes para la humanidad, pero que no siempre se difunden en los medios. + Performing Arts + Paranormal + + + + Sinvergüenza, pero honrado + Un hombre vividor desea rehacer su vida al lado de una joven, pero los padres de ella se oponen debido a su mala fama. + + Vicente Fernández + Blanca Guerra + Cecilia Camacho + + 1985 + Movies + Comedy + + + + Caso cerrado + Por un GPS; Soy artista pa' q lo sepas + Fernando es un padre controlador al extremo: le plantó a su hija un GPS y provocó un enfrentamiento. Emily se opone a que su niña conviva con su padre, un artista urbano con lujos sospechosos. + Reality TV + Legal + + + TVPG + + + + Seguridad de frontera: Australia + Un pasado dudoso + Dos hermanos de Tailandia afirman que son solo turistas, pero probablemente sea mentira. Una joven china no es sincera sobre el contenido de su maleta y podría devastar toda una industria. + Documentary + + + + 12 corazones + Pijamada + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + 12 corazones + Fantasías + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + 12 corazones + Banda Bukanas + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + 12 corazones + Escuelita + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + 12 corazones + Gente pequeña + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + Funniest Pets and People + A disfrutar entre caballos + La visita a un establo resulta muy divertida cuando un caballo brinda su mejor sonrisa, mientras unas yeguas no paran de dar vueltas en círculos. Además, un jinete calma la sed de su potro. + Comedy + Animals + + + TVPG + + + + Life's Funniest Moments + Duras caídas + Un hombre descansa en el jardín hasta que se cae de una silla. A una mujer se le perdona cualquier tropiezo en su boda, aunque el novio quede completamente mojado durante el brindis. + + Rob Paulsen + + Reality TV + Comedy + + + + Caso cerrado + Dos mujeres y un José; Soloterapia + Dayani usa una aplicación para buscar relaciones sexuales, pues una foto la atrae. Además, Julio financió la reconstrucción vaginal de su esposa, pero su terapia incluye la penetración del doctor. + Reality TV + Legal + + + TVPG + + + + La Liga Premier 3er tiempo + Programa resumen con toda la acción, noticias, análisis, debates y actualizaciones de la Liga Premier. + Sports + Soccer + + + + ¿Quién da más? + Luces brillantes y ofertas + Dave amplía su inventario con un dispositivo médico sorpresa. Un almacén de muebles resulta realmente revelador para Rene. Ivy descubre un inesperado verdor. + Reality TV + Hobbies & Crafts + + + TVPG + + + + Historias de la Virgen morena + Cuando la fortuna te visita + Antonio compra un boleto de lotería que resulta ganador, pero un accidente lleva a don Gabriel a quedarse con el dinero del premio para salvar la vida de su esposa. Una historia de fortuna y perdón. + Religious + Drama + + + TV14 + + + + Historias de la Virgen morena + Hijo de mi corazón + Rosario confirma que no puede ser madre y le oculta la verdad a su esposo porque el sueño de Gustavo es tener una familia. Ella le propone adoptar y él acepta, pero oculta sus oscuras intenciones. + Religious + Drama + + + TV14 + + + + New in Town + Una ambiciosa ejecutiva tiene una experiencia que cambia su vida cuando acepta la tarea de reestructurar una planta manufacturera en un pueblo. + + Renée Zellweger + Harry Connick Jr. + Siobhan Fallon Hogan + + 2009 + Movies + Romance + + + TVG + + + 1 + + + + Bajo el mismo cielo + La historia de Carlos Martínez, un padre mexicano indocumentado que vive en Los Ángeles, un hombre trabajador y honrado que lucha para darle una mejor vida a sus dos hijos Luis y Rodrigo, pero su mayor temor es ser deportado y perder a su familia. + + María Elisa Camargo + Gabriel Porras + Erika de la Rosa + + Soaps + Drama + + + + Historias de la Virgen morena + Cuando la fortuna te visita + Antonio compra un boleto de lotería que resulta ganador, pero un accidente lleva a don Gabriel a quedarse con el dinero del premio para salvar la vida de su esposa. Una historia de fortuna y perdón. + Religious + Drama + + + TV14 + + + + Acércate a Rocío + Yo los mantengo y a la otra le dicen mamá + A Eufemia no le parece que el papá de sus hijos le exija dinero y no se los deje ver. Tampoco está de acuerdo con que el mayor tenga un romance con la hija de la amante de su padre. + Talk Shows + Lifestyle + + + TV14 + + + + Lo que callamos las mujeres + Muerta en vida + Esperanza está infectada con VIH, pero como no tiene recursos, no ha sido diagnosticada. Cuando recibe la confirmación de su enfermedad, busca a su marido y la reacción no es la que esperaba. + Drama + + + TVPG + + + + Caso cerrado + Exmarine loca; Rehabilitada + Roxana es una veterana con secuelas psicológicas de la guerra y quiere ir a Afganistán. Daniela necesita desintoxicarse y desea que a su hija la cuide el padre, que también es un adicto. + Reality TV + Legal + + + TVPG + + + + Caso cerrado + Traficante de inocentes; Promesas incumplidas + Pilar tiene una dudosa academia de fútbol: entrena a niños en su casa y les hace exámenes invasivos. Un hombre trajo a su hijastra a EE. UU. y ahora que su esposa murió no quiere tramitarle los papeles. + Reality TV + Legal + + + TV14 + + + + Caso cerrado + Prostitución en Brasil; Síndrome de héroe + Alicia fue abusada sexualmente por su padre, quien la obligó a prostituirse y la vendió a Luis. Felipe cree que es un héroe en su rol de bombero, pero provoca accidentes para quedar como el salvador. + Reality TV + Legal + + + TVPG + + + + Tercer Milenio 360 Internacional + Un enfoque no convencional de las noticias que, más allá de informar, promueve la toma de conciencia sobre temas determinantes para la humanidad, pero que no siempre se difunden en los medios. + Performing Arts + Paranormal + + + + ¿Quién da más? + ¿Quién quiere ser sombrero? + Rene se encuentra con una herramienta de. + Reality TV + Hobbies & Crafts + + + TVPG + + + + ¿Quién da más? + Abuelita, toma tu pistola + Ivy no puede conformarse durante su visita a Montebello, en California. Dave prueba la diversión del carnaval. Brandi y Jarrod se comprometen en un sitio antiguo. + Reality TV + Hobbies & Crafts + + + TVPG + + + + Caso cerrado + Exmarine loca; Rehabilitada + Roxana es una veterana con secuelas psicológicas de la guerra y quiere ir a Afganistán. Daniela necesita desintoxicarse y desea que a su hija la cuide el padre, que también es un adicto. + Reality TV + Legal + + + TVPG + + + + Caso cerrado + Traficante de inocentes; Promesas incumplidas + Pilar tiene una dudosa academia de fútbol: entrena a niños en su casa y les hace exámenes invasivos. Un hombre trajo a su hijastra a EE. UU. y ahora que su esposa murió no quiere tramitarle los papeles. + Reality TV + Legal + + + TV14 + + + + 12 corazones + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + 12 corazones + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + 12 corazones + Gótico sensual + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + 12 corazones + Bikinis + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + 12 corazones + Bikinis + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + Funniest Pets and People + Gatos curiosos + Un gato quiere atrapar todo lo que se mueve en la pantalla del computador, otro desespera al buscar alimento y se pelea con su plato vacío. Además, este minino intenta huir por la ventana. + Comedy + Animals + + + TVPG + + + + Life's Funniest Moments + Carretilla llena de risas + Una pareja participa en una carrera, pero un tropiezo la saca de la competencia. Una joven pierde su elegancia al bajar por unos escalones. Además, un gato da vueltas en el piso. + + Rob Paulsen + + Reality TV + Comedy + + + + Caso cerrado + Una vida de drogas; Amor maternal + Ana se enganchó con la droga y perdió la custodia de su hija, que ahora está con su suegra. En otro caso, Santiago exige disolver su adopción para poder casarse con su madre adoptiva. + Reality TV + Legal + + + TV14 + + + + Caso cerrado + Gemelas ingratas; Secuestro legal + Hace años Pedro salvó la vida de las gemelas Gabriela y Daniela, y ahora las chicas se volvieron ingratas. También, Claribel tiene una orden de deportación y no quiere llevarse a su hija. + Reality TV + Legal + + + TVPG + + + + Historias de la Virgen morena + Lazos de mi corazón + Laura y Manuel son un matrimonio feliz que vive con sus dos hijas. En medio de un momento difícil para la familia, las dos jóvenes descubren un secreto que sus padres les han ocultado. + Religious + Drama + + + TV14 + + + + El precio de la historia + Ciencia extraña + Viajan a Utah para ver un cañón Hotchkiss Rotatorio del siglo XIX. Una máquina de discos Wurlitzer marca su camino a la tienda. Tratan de vender un equipo antiguo de. + Reality TV + History + + + TVPG + + + + The Impossible + En diciembre de 2004, una familia pasa sus vacaciones navideñas en Tailandia. El día después de Navidad, el sueño se transforma en una pesadilla con la llegada de un tsunami. La familia tendrá que luchar para sobrevivir y reencontrarse. + + Naomi Watts + Ewan McGregor + Tom Holland + + 2012 + Movies + Drama + + + TVPG + + + 3 + + + + Bajo el mismo cielo + La historia de Carlos Martínez, un padre mexicano indocumentado que vive en Los Ángeles, un hombre trabajador y honrado que lucha para darle una mejor vida a sus dos hijos Luis y Rodrigo, pero su mayor temor es ser deportado y perder a su familia. + + María Elisa Camargo + Gabriel Porras + Erika de la Rosa + + Soaps + Drama + + + + Historias de la Virgen morena + Barrera de rencor + La madre de Jovita le arrebató a su bebé cuando ella era apenas una adolescente. Pasaron muchos años antes de que pudiera reencontrarse con su hija Adriana, quien llena de rencor, la rechaza con dureza. + Religious + Drama + + + TV14 + + + + Acércate a Rocío + La otra se convirtió en mi pesadilla + Benjamín está arrepentido de ser amante de Areli, pues ella lo acosa constantemente. Según él, ella es celosa y está obsesionada con ser mamá, pero ya le había dicho que no quería más hijos. + Talk Shows + Lifestyle + + + TV14 + + + + Lo que callamos las mujeres + Amarte a ti misma + Rosa vive al lado de su esposo Tomás, quien es un golpeador y manipulador. Su habilidad es tal que a su hija Maya la tiene muy convencida que Rosa inventa todo con tal de separarlos. Maya no tiene el criterio y ve a su padre como una víctima. + Drama + + + TVPG + + + + Caso cerrado + Bailando en la oscuridad; Asesino inocente + Juan alega que Pedro lesionó a una bailarina y eso es causa de anulación de contrato. En un intercambio de parejas uno de los participantes murió, pero no hubo cargos para el culpable. + Reality TV + Legal + + + TVPG + + + + Caso cerrado + Hijo de un narco; Bandera confederada + Carolina dejó a su hijo a cargo de su cuñado porque iba presa, ya salió y él no quiere dárselo. Carolina y John exigen que Francis quite la bandera confederada del negocio familiar. + Reality TV + Legal + + + TVPG + + + + Caso cerrado + Custodia peligrosa; El payaso + Antonio y Sofía se disputan la custodia de su hermano menor, pero el joven quiere emanciparse. Arturo exige que lo reintegren al empleo que perdió por vestirse de payaso en honor a su hija. + Reality TV + Legal + + + TVPG + + + + Tercer Milenio 360 Internacional + Un enfoque no convencional de las noticias que, más allá de informar, promueve la toma de conciencia sobre temas determinantes para la humanidad, pero que no siempre se difunden en los medios. + Performing Arts + Paranormal + + + + ¿Quién da más? + El arte terracota + Kenny halla el alivio en un armario, mientras Brandi une fuerzas con Mary para conseguir lo que necesitan. Dave hace un descubrimiento histórico. + Reality TV + Hobbies & Crafts + + + TVPG + + + + ¿Quién da más? + La felicidad es un arma láser tibia + Mary finalmente localiza un obsequio antiguo en El Monte, California. Ivy ubica una diversión familiar con décadas de antigüedad. Darrell regresa a lo que fue un pasatiempo de la infancia. + Reality TV + Hobbies & Crafts + + + TVPG + + + + Caso cerrado + Bailando en la oscuridad; Asesino inocente + Juan alega que Pedro lesionó a una bailarina y eso es causa de anulación de contrato. En un intercambio de parejas uno de los participantes murió, pero no hubo cargos para el culpable. + Reality TV + Legal + + + TVPG + + + + Caso cerrado + Hijo de un narco; Bandera confederada + Carolina dejó a su hijo a cargo de su cuñado porque iba presa, ya salió y él no quiere dárselo. Carolina y John exigen que Francis quite la bandera confederada del negocio familiar. + Reality TV + Legal + + + TVPG + + + + 12 corazones + Hombres vestidos de mujer + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + 12 corazones + Lo mejor: Hombres rudos + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + 12 corazones + Lo mejor: Playero + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + 12 corazones + Lo mejor: Chicas sexies + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + 12 corazones + Lo mejor: Hombres guapos + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + Funniest Pets and People + ¡Espera! + Para lograr su objetivo, este perro se aferra a la cola de una vaca. Un bebé se divierte cuando su mascota lo ayuda a desvestirse. También, a un hámster se le hace interminable un recorrido. + Comedy + Animals + + + TVPG + + + + Life's Funniest Moments + Pelo en llamas + En la celebración de su cumpleaños, una mujer sufre un accidente al soplar las velas. Por otro lado, los participantes de un juego de peleas intentan mantener el equilibrio sobre un tronco. + Reality TV + Comedy + + + + Caso cerrado + Caras vemos, corazones no sabemos; Muerte por accidente + Desde pequeña, Bárbara está clara de su bisexualidad, pero no encontró apoyo en su familia. Además, Jimmy y Mariela perdieron un hijo pequeño en un accidente de bicicleta. + Reality TV + Legal + + + TVPG + + + + Caso cerrado + Dealer en coma; Princesas de la mafia + Gerber le dio un batazo brutal en la cabeza a su cuñado porque le daba drogas a su mujer. Además, Sergio era un narco que se casó con Jéssica y con Miriam el mismo día. + Reality TV + Legal + + + TVPG + + + + Historias de la Virgen morena + Jardín seco + María no puede darle un hijo a su esposo Pedro y el matrimonio se termina. Ella reniega de la vida y de su fe, pero Diego aparece en su vida y la reconcilia con el amor. Ambos reciben un milagro. + Religious + Drama + + + TV14 + + + + Historias de la Virgen morena + Que no me olvide + La madre de Laura tiene problemas de memoria y su hija la califica de inútil. Entonces, ella se refugia en su otro hijo, Camilo. Cuando la situación se complica, descubren que se trata de un caso de Alzhéimer. + Religious + Drama + + + TV14 + + + + Little Fockers + Los Focker ahora tienen mellizos. Después de superar incontables obstáculos, Greg Focker por fin tiene una relación más normal con su suegro Jack, pero Greg consigue un empleo en una farmacéutica y la desconfianza de Jack hacia él se incrementa. + + Robert De Niro + Ben Stiller + Owen Wilson + + 2010 + Movies + Comedy + + + TVG + + + 1 + + + + Bajo el mismo cielo + La historia de Carlos Martínez, un padre mexicano indocumentado que vive en Los Ángeles, un hombre trabajador y honrado que lucha para darle una mejor vida a sus dos hijos Luis y Rodrigo, pero su mayor temor es ser deportado y perder a su familia. + + María Elisa Camargo + Gabriel Porras + Erika de la Rosa + + Soaps + Drama + + + + NFL Game Re-Airs + 1998 NFC Championship: Falcons vs. Vikings + Relive the 1998 NFC Championship Game matchup between the Atlanta Falcons and the Minnesota Vikings, known as The Kick, Morten Andersen nailed a game-winning 38-yard field goal in overtime against the Vikings. + Sports + Football + + + TVG + + + + NFL GameDay View + Host Patrick Claybon and a panel of experts pick every game on the NFL schedule with insights from reporters around the country and in-depth statistical analysis, plus feedback from fans as they make their vote on who will win each week. + Sports + Football + + + + New England Patriots vs. Miami Dolphins + New England Patriots at Miami Dolphins + The Dolphins try sweep the Patriots. New England quarterback Mac Jones connected with ex-Miami tight end Mike Gesicki with 12 seconds remaining to score a 29-25 win over Buffalo in Week 7. Miami took down New England 24-17 on Sept. 17. + Sports + Football + + + + New England Patriots vs. Miami Dolphins + New England Patriots at Miami Dolphins + The Dolphins try sweep the Patriots. New England quarterback Mac Jones connected with ex-Miami tight end Mike Gesicki with 12 seconds remaining to score a 29-25 win over Buffalo in Week 7. Miami took down New England 24-17 on Sept. 17. + Sports + Football + + + + NFL Football + 2020: Kansas City Chiefs vs. Miami Dolphins + From Dec. 13, 2020. + Sports + Football + + + + NFL Fantasy Live + Fantasy experts share the latest news and analysis to help you dominate your fantasy matchup. + Sports + Football + + + + NFL GameDay View + Host Patrick Claybon and a panel of experts pick every game on the NFL schedule with insights from reporters around the country and in-depth statistical analysis, plus feedback from fans as they make their vote on who will win each week. + Sports + Football + + + + NFL GameDay Kickoff + Preview of tonight's game. + Sports + Football + + + + Miami Dolphins vs. Kansas City Chiefs + The Dolphins' Tyreek Hill faces the Chiefs for the first time as the clubs meet in Germany. Hill played his first six seasons with Kansas City (2016-21). The Cheetah has 1,014 receiving yards in 2023, the most in NFL history through eight games. + Sports + Football + + + + NFL GameDay Final + Chris Rose and crew wrap up the day's NFL action with all the highlights and reactions, plus postgame interviews with the day's best performers. + + Chris Rose + + Sports + Football + + + + NFL GameDay Live + The biggest moments from today's action as they happen; up-to-the-minute highlights from around the league. + + Patrick Claybon + + Sports + Football + + + + NFL GameDay Live + The biggest moments from today's action as they happen; up-to-the-minute highlights from around the league. + + Patrick Claybon + + Sports + Football + + + + NFL GameDay Highlights + Breaking down all the highlights from Sunday's afternoon games. + + Steve Mariucci + Deion Sanders + LaDainian Tomlinson + + Sports + Football + + + + NFL GameDay Highlights + Breaking down all the highlights from Sunday's afternoon games. + + Steve Mariucci + Deion Sanders + LaDainian Tomlinson + + Sports + Football + + + + NFL GameDay Highlights + Breaking down all the highlights from Sunday's afternoon games. + + Steve Mariucci + Deion Sanders + LaDainian Tomlinson + + Sports + Football + + + + NFL GameDay Highlights + Breaking down all the highlights from Sunday's afternoon games. + + Steve Mariucci + Deion Sanders + LaDainian Tomlinson + + Sports + Football + + + + NFL GameDay Final + Chris Rose and crew wrap up the day's NFL action with all the highlights and reactions, plus postgame interviews with the day's best performers. + + Chris Rose + + Sports + Football + + + + NFL GameDay Final + Chris Rose and crew wrap up the day's NFL action with all the highlights and reactions, plus postgame interviews with the day's best performers. + + Chris Rose + + Sports + Football + + + + NFL GameDay Final + Chris Rose and crew wrap up the day's NFL action with all the highlights and reactions, plus postgame interviews with the day's best performers. + + Chris Rose + + Sports + Football + + + + NFL GameDay Final + Chris Rose and crew wrap up the day's NFL action with all the highlights and reactions, plus postgame interviews with the day's best performers. + + Chris Rose + + Sports + Football + + + + NFL GameDay Final + Chris Rose and crew wrap up the day's NFL action with all the highlights and reactions, plus postgame interviews with the day's best performers. + + Chris Rose + + Sports + Football + + + + Buffalo Bills vs. Cincinnati Bengals + Buffalo Bills at Cincinnati Bengals + The Bengals host the Bills. Cincinnati won 27-10 at Buffalo in a 2022 AFC divisional playoff, 20 days after the Bills' Damar Hamlin went into cardiac arrest during a game against the Bengals. Cincinnati has won three straight after a 1-3 start. + Sports + Football + + + + NFL GameDay Final + Chris Rose and crew wrap up the day's NFL action with all the highlights and reactions, plus postgame interviews with the day's best performers. + + Chris Rose + + Sports + Football + + + + Good Morning Football + Catch up on everything NFL with the latest news, highlights, and trending topics from across the football world and beyond. + Sports + Talk Show + + + + Good Morning Football + Catch up on everything NFL with the latest news, highlights, and trending topics from across the football world and beyond. + Sports + Talk Show + + + + The Insiders + Real-time, breaking NFL news about each team as it happens with the most connected sources in the sport. + Sports + Football + + + + The Insiders + Real-time, breaking NFL news about each team as it happens with the most connected sources in the sport. + Sports + Football + + + + Buffalo Bills vs. Cincinnati Bengals + Buffalo Bills at Cincinnati Bengals + The Bengals host the Bills. Cincinnati won 27-10 at Buffalo in a 2022 AFC divisional playoff, 20 days after the Bills' Damar Hamlin went into cardiac arrest during a game against the Bengals. Cincinnati has won three straight after a 1-3 start. + Sports + Football + + + + NFL Fantasy Live + Fantasy experts share the latest news and analysis to help you dominate your fantasy matchup. + + Patrick Claybon + + Sports + Football + + + + NFL GameDay Kickoff + Preview of tonight's game. + Sports + Football + + + + NFL Football + Teams TBA + Football action from around the National Football League. + Sports + Football + + + + Top 10 + Player Highlight Reels + From Calvin Johnson to Randy Moss, check out the 10 greatest player highlight reels in NFL history. + Sports + Football + + + + NFL GameDay Final + Chris Rose and crew wrap up the day's NFL action with all the highlights and reactions, plus postgame interviews with the day's best performers. + Sports + Football + + + + NFL GameDay Final + Chris Rose and crew wrap up the day's NFL action with all the highlights and reactions, plus postgame interviews with the day's best performers. + Sports + Football + + + + NFL GameDay Final + Chris Rose and crew wrap up the day's NFL action with all the highlights and reactions, plus postgame interviews with the day's best performers. + Sports + Football + + + + NFL GameDay Final + Chris Rose and crew wrap up the day's NFL action with all the highlights and reactions, plus postgame interviews with the day's best performers. + Sports + Football + + + + NFL GameDay Final + Chris Rose and crew wrap up the day's NFL action with all the highlights and reactions, plus postgame interviews with the day's best performers. + Sports + Football + + + + Los Angeles Chargers vs. New York Jets + Los Angeles Chargers at New York Jets + The streaking Jets (4-3) welcome the Chargers (3-4) to MetLife Stadium for Monday Night Football. The Jets have won three straight following a 13-10 victory in overtime over the Giants. Los Angeles is back on track after blasting Chicago 30-13. + Sports + Football + + + + NFL GameDay Final + Chris Rose and crew wrap up the day's NFL action with all the highlights and reactions, plus postgame interviews with the day's best performers. + Sports + Football + + + + Good Morning Football + Catch up on everything NFL with the latest news, highlights, and trending topics from across the football world and beyond. + Sports + Talk Show + + + + Good Morning Football + Catch up on everything NFL with the latest news, highlights, and trending topics from across the football world and beyond. + Sports + Talk Show + + + + The Insiders + Real-time, breaking NFL news about each team as it happens with the most connected sources in the sport. + Sports + Football + + + + The Insiders + Real-time, breaking NFL news about each team as it happens with the most connected sources in the sport. + Sports + Football + + + + Los Angeles Chargers vs. New York Jets + Los Angeles Chargers at New York Jets + The streaking Jets (4-3) welcome the Chargers (3-4) to MetLife Stadium for Monday Night Football. The Jets have won three straight following a 13-10 victory in overtime over the Giants. Los Angeles is back on track after blasting Chicago 30-13. + Sports + Football + + + + NFL Fantasy Live + Fantasy experts share the latest news and analysis to help you dominate your fantasy matchup. + + Patrick Claybon + + Sports + Football + + + + NFL Total Access + NFL Network's flagship show with the latest news, opinions, highlights and interviews from around the league. + Sports + Talk Show + + + TVG + + + + A Football Life Origins + George Kittle + Interviews with NFL stars and those close to them, detailing how they developed into pro athletes. + Sports + Football + + + + NFL Football + Teams TBA + Football action from around the National Football League. + Sports + Football + + + + NFL Total Access + NFL Network's flagship show with the latest news, opinions, highlights and interviews from around the league. + Sports + Talk Show + + + TVG + + + + NFL Fantasy Live + Fantasy experts share the latest news and analysis to help you dominate your fantasy matchup. + + Patrick Claybon + + Sports + Football + + + + NFL Football + Teams TBA + Football action from around the National Football League. + Sports + Football + + + + NFL Total Access + NFL Network's flagship show with the latest news, opinions, highlights and interviews from around the league. + Sports + Talk Show + + + TVG + + + + NFL Fantasy Live + Fantasy experts share the latest news and analysis to help you dominate your fantasy matchup. + + Patrick Claybon + + Sports + Football + + + + NFL Total Access + NFL Network's flagship show with the latest news, opinions, highlights and interviews from around the league. + Sports + Talk Show + + + TVG + + + + Good Morning Football + Catch up on everything NFL with the latest news, highlights, and trending topics from across the football world and beyond. + Sports + Talk Show + + + + Good Morning Football + Catch up on everything NFL with the latest news, highlights, and trending topics from across the football world and beyond. + Sports + Talk Show + + + + The Insiders + Real-time, breaking NFL news about each team as it happens with the most connected sources in the sport. + Sports + Football + + + + The Insiders + Real-time, breaking NFL news about each team as it happens with the most connected sources in the sport. + Sports + Football + + + + NFL Football + Teams TBA + Football action from around the National Football League. + Sports + Football + + + + NFL Fantasy Live + Fantasy experts share the latest news and analysis to help you dominate your fantasy matchup. + + Patrick Claybon + + Sports + Football + + + + Every Sunday Afternoon + Sports + Football + + + + Every Sunday Afternoon + Sports + Football + + + + NFL RedZone Countdown + A countdown clock displays the time until the start of the game coverage. + Sports + Football + + + + NFL RedZone + Week 9. + Sports + Football + + + + Every Sunday Afternoon + Sports + Football + + + + Every Sunday Afternoon + Sports + Football + + + + Every Sunday Afternoon + Sports + Football + + + + Every Sunday Afternoon + Sports + Football + + + + Every Sunday Afternoon + Sports + Football + + + + Every Sunday Afternoon + Sports + Football + + + + Every Sunday Afternoon + Sports + Football + + + + Every Sunday Afternoon + Sports + Football + + + + Every Sunday Afternoon + Sports + Football + + + + Every Sunday Afternoon + Sports + Football + + + + Every Sunday Afternoon + Sports + Football + + + + Every Sunday Afternoon + Sports + Football + + + + Every Sunday Afternoon + Sports + Football + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + The Kind-Hearted Cat + + Yuka + Aoi Itô + Omila Shakthi + + Documentary + Drama + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Hometown Stories + Countryside Diaries + An insight into various facets of provincial Japanese lifestyle, culture, industries, cuisine, and way of life. In addition, understand Japanese life outside major metropolitan areas. + Documentary + Local + + + + Nun's Seasonal Calendar + November + NHK WORLD-JAPAN presents a variety of short programs focusing on Japan and Asia. + Documentary + Local + + + + Core Kyoto Mini + Karesansui: A Zen Cosmos for Spiritual Training + The ancient capital, Kyoto, continues to be innovative after 1,200 years. + Documentary + + + + Wild Hokkaido! + Hiking up Mount Mokoto for a Spectacular Sea of Clouds + Documentary + + + + A Cat's-Eye View of Japan + Kamakura: An Ancient Seaside City + History + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Darwin's Amazing Animals + Elusive Giant Column: Arabesque Greenling, Japan + Explore the amazing stories of animals in Africa, the Americas and Asia, including Japan. + + Jeff Manning + + Animals + Documentary + + + + Time-lapse Journey + Seto Inland Sea + Travel + Local + + + + Take Tech + Control the Flow + Computers & Technologies + Children + + + + U & I + Everyone Feels Things Differently + Children + Instructional + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Somewhere Street + A close-up look at cities around the world, from the eyes of a tourist on foot. + Travel + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + NHK Documentary + Reviving Japan's Economy : Breaking Free of 3 Decades of Stagnation + Current affairs documentary program. + Sports + Documentary + + + TVMA + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + The Kind-Hearted Cat + + Yuka + Aoi Itô + Omila Shakthi + + Documentary + Drama + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Hometown Stories + Countryside Diaries + An insight into various facets of provincial Japanese lifestyle, culture, industries, cuisine, and way of life. In addition, understand Japanese life outside major metropolitan areas. + Documentary + Local + + + + Nun's Seasonal Calendar + November + NHK WORLD-JAPAN presents a variety of short programs focusing on Japan and Asia. + Documentary + Local + + + + Core Kyoto Mini + Karesansui: A Zen Cosmos for Spiritual Training + The ancient capital, Kyoto, continues to be innovative after 1,200 years. + Documentary + + + + Wild Hokkaido! + Hiking up Mount Mokoto for a Spectacular Sea of Clouds + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Biz Stream + Silk Roads to Success + Documentary + Business + + + + Little Charo + Little Charo is an animation series about a Japanese dog who got lost in NY. I want to see my owner again! Charo starts his adventure back home. + Animals + Animated + + + + Japanology Plus mini + Cardboard + Documentary + + + + A Cat's-Eye View of Japan + Kamakura: An Ancient Seaside City + History + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + NHK Documentary + Reviving Japan's Economy : Breaking Free of 3 Decades of Stagnation + Current affairs documentary program. + Sports + Documentary + + + TVMA + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Darwin's Amazing Animals + Elusive Giant Column: Arabesque Greenling, Japan + Explore the amazing stories of animals in Africa, the Americas and Asia, including Japan. + + Jeff Manning + + Animals + Documentary + + + + Time-lapse Journey + Seto Inland Sea + Travel + Local + + + + Take Tech + Control the Flow + Computers & Technologies + Children + + + + U & I + Everyone Feels Things Differently + Children + Instructional + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Somewhere Street + A close-up look at cities around the world, from the eyes of a tourist on foot. + Travel + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + The Kind-Hearted Cat + + Yuka + Aoi Itô + Omila Shakthi + + Documentary + Drama + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Hometown Stories + Countryside Diaries + An insight into various facets of provincial Japanese lifestyle, culture, industries, cuisine, and way of life. In addition, understand Japanese life outside major metropolitan areas. + Documentary + Local + + + + Nun's Seasonal Calendar + November + NHK WORLD-JAPAN presents a variety of short programs focusing on Japan and Asia. + Documentary + Local + + + + Core Kyoto Mini + Karesansui: A Zen Cosmos for Spiritual Training + The ancient capital, Kyoto, continues to be innovative after 1,200 years. + Documentary + + + + Wild Hokkaido! + Hiking up Mount Mokoto for a Spectacular Sea of Clouds + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Darwin's Amazing Animals + Elusive Giant Column: Arabesque Greenling, Japan + Explore the amazing stories of animals in Africa, the Americas and Asia, including Japan. + + Jeff Manning + + Animals + Documentary + + + + Time-lapse Journey + Seto Inland Sea + Travel + Local + + + + Take Tech + Control the Flow + Computers & Technologies + Children + + + + U & I + Everyone Feels Things Differently + Children + Instructional + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + J-MELO + Psycho Le Cemu and Miyamoto Karin + Keeping up to date with the latest Japanese music, ranging from pop and rock to jazz and classical. + Music + News Magazine + + + + Pythagora Switch Mini + Understand in 5 Seconds + Teaching children Japanese phrases and expressions though a puppet show and animation. + Children + Instructional + + + + Easy Japanese for Work + Business Japanese Quiz Part 2 + Instructional + Business + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Somewhere Street + A close-up look at cities around the world, from the eyes of a tourist on foot. + Travel + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Japan's Top Inventions + Imitation Crab / Monorail Transporters + Discover how Japanese craftsmanship brought these top inventions into being. + Talk Shows + Documentary + + + + BOSAI: Science That Can Save Your Life + Disaster Response Robots + Science + Documentary + + + + A Cat's-Eye View of Japan + Kamakura: An Ancient Seaside City + History + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + The Kind-Hearted Cat + + Yuka + Aoi Itô + Omila Shakthi + + Documentary + Drama + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Hometown Stories + Countryside Diaries + An insight into various facets of provincial Japanese lifestyle, culture, industries, cuisine, and way of life. In addition, understand Japanese life outside major metropolitan areas. + Documentary + Local + + + + Nun's Seasonal Calendar + November + NHK WORLD-JAPAN presents a variety of short programs focusing on Japan and Asia. + Documentary + Local + + + + Core Kyoto Mini + Karesansui: A Zen Cosmos for Spiritual Training + The ancient capital, Kyoto, continues to be innovative after 1,200 years. + Documentary + + + + Wild Hokkaido! + Hiking up Mount Mokoto for a Spectacular Sea of Clouds + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + J-MELO + Psycho Le Cemu and Miyamoto Karin + Keeping up to date with the latest Japanese music, ranging from pop and rock to jazz and classical. + Music + News Magazine + + + + Easy Japanese for Work + Business Japanese Quiz Part 2 + Instructional + Business + + + + A Cat's-Eye View of Japan + Kamakura: An Ancient Seaside City + History + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Darwin's Amazing Animals + Elusive Giant Column: Arabesque Greenling, Japan + Explore the amazing stories of animals in Africa, the Americas and Asia, including Japan. + + Jeff Manning + + Animals + Documentary + + + + Time-lapse Journey + Seto Inland Sea + Travel + Local + + + + Take Tech + Control the Flow + Computers & Technologies + Children + + + + U & I + Everyone Feels Things Differently + Children + Instructional + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Japan's Top Inventions + Imitation Crab / Monorail Transporters + Discover how Japanese craftsmanship brought these top inventions into being. + Talk Shows + Documentary + + + + BOSAI: Science That Can Save Your Life + Disaster Response Robots + Science + Documentary + + + + Pythagora Switch Mini + Understand in 5 Seconds + Teaching children Japanese phrases and expressions though a puppet show and animation. + Children + Instructional + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Somewhere Street + A close-up look at cities around the world, from the eyes of a tourist on foot. + Travel + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + Japan From Above: Up Close + Shikoku Pilgrimage + An aerial journey across 21st century Japan, a bird's-eye view of unique landscapes as well as intimate portraits of the people who inhabit the archipelago. + Travel + Documentary + + + + Where We Call Home + News + Documentary + + + TVPG + + + + Satoyama Kitchen Diary + Food + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Direct Talk + News, current affairs and documentaries focusing on Japan and Asia. + News + Documentary + + + + Activate Your Japanese + When Changing the Subject + Language students learn to make the most of their Japanese skills by watching dramas featuring useful communication strategies, snappy videos about onomatopoeia, and documentaries on senpai in Japan. + Instructional + + + + Culture Crossroads + Evacuation with Pets + Documentary + + + + Hello! NHK WORLD-JAPAN + My Job in JAPAN + News + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + Seasoning the Seasons + Visiting places across Japan to introduce the charms of their local daily life and festivals. + Travel + Local + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + J-MELO + Keeping up to date with the latest Japanese music, ranging from pop and rock to jazz and classical. + Music + News Magazine + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + Spiritual Explorers + Biwa: Echoes of Ancient Times + Documentary + + + + Framing Everyday's Moments + Plants + Environmental + Arts & Entertainment + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Direct Talk + News, current affairs and documentaries focusing on Japan and Asia. + News + Documentary + + + + Where We Call Home + News + Documentary + + + TVPG + + + + Satoyama Kitchen Diary + Food + + + + Newsline Asia 24 + Daily news program that picks up the key news stories of the past 24 hours from Japan and around Asia. + News + News Magazine + + + + Activate Your Japanese + When Changing the Subject + Language students learn to make the most of their Japanese skills by watching dramas featuring useful communication strategies, snappy videos about onomatopoeia, and documentaries on senpai in Japan. + Instructional + + + + Culture Crossroads + Evacuation with Pets + Documentary + + + + Hello! NHK WORLD-JAPAN + My Job in JAPAN + News + Documentary + + + + Newsline Asia 24 + Daily news program that picks up the key news stories of the past 24 hours from Japan and around Asia. + News + News Magazine + + + + Seasoning the Seasons + Visiting places across Japan to introduce the charms of their local daily life and festivals. + Travel + Local + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + NL Bridge + Presents the latest entertainment news and trends along with special interviews with TV personalities. + Performing Arts + + + + Newsline Biz + Reporting the latest business, finance and economic news, with added analysis from studio guests. + News + Business + + + + Treasure Box Japan: Saitama + Documentary + Local + + + + Time-lapse Journey + Mt. Fuji + Travel + Local + + + + Spiritual Explorers + Biwa: Echoes of Ancient Times + Documentary + + + + Framing Everyday's Moments + Plants + Environmental + Arts & Entertainment + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + NL Bridge + Presents the latest entertainment news and trends along with special interviews with TV personalities. + Performing Arts + + + + Direct Talk + Hoshi Tomohiro Head of School, Stanford Online High School + News, current affairs and documentaries focusing on Japan and Asia. + News + Documentary + + + + J-MELO + Keeping up to date with the latest Japanese music, ranging from pop and rock to jazz and classical. + Music + News Magazine + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + NL Bridge + Presents the latest entertainment news and trends along with special interviews with TV personalities. + Performing Arts + + + + Newsline Biz + Reporting the latest business, finance and economic news, with added analysis from studio guests. + News + Business + + + + Where We Call Home + News + Documentary + + + TVPG + + + + Satoyama Kitchen Diary + Food + + + + Newsroom Tokyo + NHK World's newest program provides comprehensive coverage of events in Japan and Asia. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + Direct Talk + News, current affairs and documentaries focusing on Japan and Asia. + News + Documentary + + + + Ukiyoe Edo-Life + Night View of Saruwaka-machi + The rich and fascinating Edo era of Japan, which was dominated by a deep love for the arts. + Miniseries + Documentary + + + + Newsroom Tokyo + NHK World's newest program provides comprehensive coverage of events in Japan and Asia. + News + + + + Activate Your Japanese + When Changing the Subject + Language students learn to make the most of their Japanese skills by watching dramas featuring useful communication strategies, snappy videos about onomatopoeia, and documentaries on senpai in Japan. + Instructional + + + + Culture Crossroads + Evacuation with Pets + Documentary + + + + Hello! NHK WORLD-JAPAN + My Job in JAPAN + News + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline Biz + Reporting the latest business, finance and economic news, with added analysis from studio guests. + News + Business + + + + Seasoning the Seasons + Visiting places across Japan to introduce the charms of their local daily life and festivals. + Travel + Local + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + Medical Frontiers + Japanese Treatment EAT for Long COVID + Epipharyngeal abrasive therapy from Japan scrapes the upper throat to ease chronic inflammation and may be effective against long COVID-19. + News + + + TVPG + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + Where We Call Home + News + Documentary + + + TVPG + + + + Satoyama Kitchen Diary + Food + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Direct Talk + News, current affairs and documentaries focusing on Japan and Asia. + News + Documentary + + + + Spiritual Explorers + Biwa: Echoes of Ancient Times + Documentary + + + + Framing Everyday's Moments + Plants + Environmental + Arts & Entertainment + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + Activate Your Japanese + When Changing the Subject + Language students learn to make the most of their Japanese skills by watching dramas featuring useful communication strategies, snappy videos about onomatopoeia, and documentaries on senpai in Japan. + Instructional + + + + Culture Crossroads + Evacuation with Pets + Documentary + + + + Hello! NHK WORLD-JAPAN + My Job in JAPAN + News + Documentary + + + + Newsroom Tokyo + NHK World's newest program provides comprehensive coverage of events in Japan and Asia. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + Direct Talk + Hoshi Tomohiro Head of School, Stanford Online High School + News, current affairs and documentaries focusing on Japan and Asia. + News + Documentary + + + + Ukiyoe Edo-Life + Night View of Saruwaka-machi + The rich and fascinating Edo era of Japan, which was dominated by a deep love for the arts. + Miniseries + Documentary + + + + NHK Documentary + Reviving Japan's Economy : Breaking Free of 3 Decades of Stagnation + Current affairs documentary program. + Sports + Documentary + + + TVMA + + + + Time-Lapse Japan + Jomon Lacquer + A variety of short programs focusing on Japan and Asia. + Documentary + History + + + + Japan From Above: Up Close + Free Diver in Yonagunijima + An aerial journey across 21st century Japan, a bird's-eye view of unique landscapes as well as intimate portraits of the people who inhabit the archipelago. + Travel + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline Biz + Reporting the latest business, finance and economic news, with added analysis from studio guests. + News + Business + + + + Medical Frontiers + Japanese Treatment EAT for Long COVID + Epipharyngeal abrasive therapy from Japan scrapes the upper throat to ease chronic inflammation and may be effective against long COVID-19. + News + + + TVPG + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline Biz + Reporting the latest business, finance and economic news, with added analysis from studio guests. + News + Business + + + + Where We Call Home + News + Documentary + + + TVPG + + + + Nun's Cookbook + Karin Jam + Food + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline Biz + Reporting the latest business, finance and economic news, with added analysis from studio guests. + News + Business + + + + Activate Your Japanese + When Changing the Subject + Language students learn to make the most of their Japanese skills by watching dramas featuring useful communication strategies, snappy videos about onomatopoeia, and documentaries on senpai in Japan. + Instructional + + + + Culture Crossroads + Evacuation with Pets + Documentary + + + + Hello! NHK WORLD-JAPAN + My Job in JAPAN + News + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Ukiyoe Edo-Life + Night View of Saruwaka-machi + The rich and fascinating Edo era of Japan, which was dominated by a deep love for the arts. + Miniseries + Documentary + + + + Time-Lapse Japan + A variety of short programs focusing on Japan and Asia. + Documentary + + + TV14 + + + + Treasure Box Japan: Saitama + Documentary + Local + + + + Spiritual Explorers + Biwa: Echoes of Ancient Times + Documentary + + + + Framing Everyday's Moments + Plants + Environmental + Arts & Entertainment + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + Journeys in Japan + English-speaking visitors travel the length of Japan, exploring the local culture, meeting the people and offering travel hints rarely found in guidebooks. + Travel + + + TVG + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Direct Talk + Takeda Sana Illustrator, Comic Artist + News, current affairs and documentaries focusing on Japan and Asia. + News + Documentary + + + + Dining With the Chef + Cook Around Japan: Saitama, From the Farm to the Table + Hosts Yu Hayami and Patrick Harlan, with the help of Japanese chefs Tatsuo Saito and Rika Yukimasa, introduce Americans to the techniques, ingredients and harmony of Japanese cuisine. + Food + + + TVG + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + Document 72 Hours + Korokke Pan Shop: Happiness in a Bun + Exploring human dramas through chance encounters with ordinary people at selected locations. + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + Medical Frontiers + Walking Again with Robotic Rehabilitation + Japan's expanding frontier of medical technology and care is showcased. + News + + + TVPG + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + Deeper Look from New York + News + + + + Dig More Japan! + Variety + Performing Arts + + + + The Seasons of Yamato + Animals + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Direct Talk + Takeda Sana Illustrator, Comic Artist + News, current affairs and documentaries focusing on Japan and Asia. + News + Documentary + + + + Journeys in Japan + English-speaking visitors travel the length of Japan, exploring the local culture, meeting the people and offering travel hints rarely found in guidebooks. + Travel + + + TVG + + + + Newsline Asia 24 + Daily news program that picks up the key news stories of the past 24 hours from Japan and around Asia. + News + News Magazine + + + + Dining With the Chef + Cook Around Japan: Saitama, From the Farm to the Table + Hosts Yu Hayami and Patrick Harlan, with the help of Japanese chefs Tatsuo Saito and Rika Yukimasa, introduce Americans to the techniques, ingredients and harmony of Japanese cuisine. + Food + + + TVG + + + + Newsline Asia 24 + Daily news program that picks up the key news stories of the past 24 hours from Japan and around Asia. + News + News Magazine + + + + Document 72 Hours + Korokke Pan Shop: Happiness in a Bun + Exploring human dramas through chance encounters with ordinary people at selected locations. + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + NL Bridge + Presents the latest entertainment news and trends along with special interviews with TV personalities. + Performing Arts + + + + Newsline Biz + Reporting the latest business, finance and economic news, with added analysis from studio guests. + News + Business + + + + Treasure Box Japan: Saitama + The Last Ogose Fan Crafter + Documentary + Local + + + + Time-lapse Journey + Hirosaki Park + Travel + Local + + + + Deeper Look from New York + News + + + + Dig More Japan! + Variety + Performing Arts + + + + The Seasons of Yamato + Animals + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + NL Bridge + Presents the latest entertainment news and trends along with special interviews with TV personalities. + Performing Arts + + + + Direct Talk + Kurechi Masayuki President, Japanese Association for Wild Geese Protection + News, current affairs and documentaries focusing on Japan and Asia. + News + Documentary + + + + Medical Frontiers + Walking Again with Robotic Rehabilitation + Japan's expanding frontier of medical technology and care is showcased. + News + + + TVPG + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + NL Bridge + Presents the latest entertainment news and trends along with special interviews with TV personalities. + Performing Arts + + + + Newsline Biz + Reporting the latest business, finance and economic news, with added analysis from studio guests. + News + Business + + + + Journeys in Japan + English-speaking visitors travel the length of Japan, exploring the local culture, meeting the people and offering travel hints rarely found in guidebooks. + Travel + + + TVG + + + + Newsroom Tokyo + NHK World's newest program provides comprehensive coverage of events in Japan and Asia. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + Direct Talk + Takeda Sana Illustrator, Comic Artist + News, current affairs and documentaries focusing on Japan and Asia. + News + Documentary + + + + Ukiyoe Edo-Life + The Fan Shop Mieido + The rich and fascinating Edo era of Japan, which was dominated by a deep love for the arts. + Miniseries + Documentary + + + + Newsroom Tokyo + NHK World's newest program provides comprehensive coverage of events in Japan and Asia. + News + + + + Dining With the Chef + Cook Around Japan: Saitama, From the Farm to the Table + Hosts Yu Hayami and Patrick Harlan, with the help of Japanese chefs Tatsuo Saito and Rika Yukimasa, introduce Americans to the techniques, ingredients and harmony of Japanese cuisine. + Food + + + TVG + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline Biz + Reporting the latest business, finance and economic news, with added analysis from studio guests. + News + Business + + + + Document 72 Hours + Korokke Pan Shop: Happiness in a Bun + Exploring human dramas through chance encounters with ordinary people at selected locations. + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + Science View + Laying the Groundwork for Wireless Power Transfer + Top Japanese scientists delve into the worlds of technology and natural science. + Local + Science + + + TVPG + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + Journeys in Japan + English-speaking visitors travel the length of Japan, exploring the local culture, meeting the people and offering travel hints rarely found in guidebooks. + Travel + + + TVG + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Direct Talk + Takeda Sana Illustrator, Comic Artist + News, current affairs and documentaries focusing on Japan and Asia. + News + Documentary + + + + Deeper Look from New York + News + + + + Dig More Japan! + Variety + Performing Arts + + + + The Seasons of Yamato + Animals + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + Dining With the Chef + Cook Around Japan: Saitama, From the Farm to the Table + Hosts Yu Hayami and Patrick Harlan, with the help of Japanese chefs Tatsuo Saito and Rika Yukimasa, introduce Americans to the techniques, ingredients and harmony of Japanese cuisine. + Food + + + TVG + + + + Newsroom Tokyo + NHK World's newest program provides comprehensive coverage of events in Japan and Asia. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + Direct Talk + Kurechi Masayuki President, Japanese Association for Wild Geese Protection + News, current affairs and documentaries focusing on Japan and Asia. + News + Documentary + + + + Ukiyoe Edo-Life + The Fan Shop Mieido + The rich and fascinating Edo era of Japan, which was dominated by a deep love for the arts. + Miniseries + Documentary + + + + Biz Stream + Silk Roads to Success + Documentary + Business + + + + Document 72 Hours + Korokke Pan Shop: Happiness in a Bun + Exploring human dramas through chance encounters with ordinary people at selected locations. + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline Biz + Reporting the latest business, finance and economic news, with added analysis from studio guests. + News + Business + + + + Science View + Laying the Groundwork for Wireless Power Transfer + Top Japanese scientists delve into the worlds of technology and natural science. + Local + Science + + + TVPG + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline Biz + Reporting the latest business, finance and economic news, with added analysis from studio guests. + News + Business + + + + Journeys in Japan + English-speaking visitors travel the length of Japan, exploring the local culture, meeting the people and offering travel hints rarely found in guidebooks. + Travel + + + TVG + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline Biz + Reporting the latest business, finance and economic news, with added analysis from studio guests. + News + Business + + + + Dining with the Chef + Cook Around Japan: Saitama, From the Farm to the Table + Focusing on the area of Saitama Prefecture and exploring the appeal of the food there by meeting people dedicated to producing and cooking with its simple but delicious local ingredients. + Food + + + TVG + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Ukiyoe Edo-Life + The Fan Shop Mieido + The rich and fascinating Edo era of Japan, which was dominated by a deep love for the arts. + Miniseries + Documentary + + + + Time-Lapse Japan + OKINAWA: Homes + A variety of short programs focusing on Japan and Asia. + Documentary + History + + + TVPG + + + + Treasure Box Japan: Saitama + The Last Ogose Fan Crafter + Documentary + Local + + + + Deeper Look from New York + News + + + + Dig More Japan! + Variety + Performing Arts + + + + The Seasons of Yamato + Animals + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + Dive in Tokyo + Denenchofu - An Upscale Garden Suburb + Travel + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Direct Talk + News, current affairs and documentaries focusing on Japan and Asia. + News + Documentary + + + + On the Wings + Shizuoka to Izumo Airport + Computers & Technologies + Local + + + + Magical Japanese + Insect + Instructional + + + + Core Kyoto + Kata-Yuzen + The ancient capital, Kyoto, continues to be innovative after 1,200 years. + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + Sharing the Future + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + Science View + Laying the Groundwork for Wireless Power Transfer + Top Japanese scientists delve into the worlds of technology and natural science. + Local + Science + + + TVPG + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + Kabuki Kool + Kabuki Villains + Exploring the world of Kabuki, featuring modern themes and Kabuki's creative staging. + + Kataoka Ainosuke + Sarah Álainn + Nakamura Kazutaro I + + Drama + Performing Arts + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Direct Talk + News, current affairs and documentaries focusing on Japan and Asia. + News + Documentary + + + + Dive in Tokyo + Denenchofu - An Upscale Garden Suburb + Travel + Documentary + + + + Newsline Asia 24 + Daily news program that picks up the key news stories of the past 24 hours from Japan and around Asia. + News + News Magazine + + + + On the Wings + Shizuoka to Izumo Airport + Computers & Technologies + Local + + + + Magical Japanese + Insect + Instructional + + + + Core Kyoto + Kata-Yuzen + The ancient capital, Kyoto, continues to be innovative after 1,200 years. + Documentary + + + + Newsline Asia 24 + Daily news program that picks up the key news stories of the past 24 hours from Japan and around Asia. + News + News Magazine + + + + Sharing the Future + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + NL Bridge + Presents the latest entertainment news and trends along with special interviews with TV personalities. + Performing Arts + + + + Newsline Biz + Reporting the latest business, finance and economic news, with added analysis from studio guests. + News + Business + + + + Treasure Box Japan: Saitama + The Eternal Star Festival + Documentary + Local + + + + Time-lapse Journey + Oze National Park + Travel + Local + + + + Kabuki Kool + Kabuki Villains + Exploring the world of Kabuki, featuring modern themes and Kabuki's creative staging. + + Kataoka Ainosuke + Sarah Álainn + Nakamura Kazutaro I + + Drama + Performing Arts + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + NL Bridge + Presents the latest entertainment news and trends along with special interviews with TV personalities. + Performing Arts + + + + Direct Talk + Yano Koji, Actor + News, current affairs and documentaries focusing on Japan and Asia. + News + Documentary + + + + Science View + Laying the Groundwork for Wireless Power Transfer + Top Japanese scientists delve into the worlds of technology and natural science. + Local + Science + + + TVPG + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + NL Bridge + Presents the latest entertainment news and trends along with special interviews with TV personalities. + Performing Arts + + + + Newsline Biz + Reporting the latest business, finance and economic news, with added analysis from studio guests. + News + Business + + + + Dive in Tokyo + Denenchofu - An Upscale Garden Suburb + Travel + Documentary + + + + Newsroom Tokyo + NHK World's newest program provides comprehensive coverage of events in Japan and Asia. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + Direct Talk + News, current affairs and documentaries focusing on Japan and Asia. + News + Documentary + + + + Ukiyoe Edo-Life + Minowa, Kanasugi, Mikawashima + The rich and fascinating Edo era of Japan, which was dominated by a deep love for the arts. + Miniseries + Documentary + + + + Newsroom Tokyo + NHK World's newest program provides comprehensive coverage of events in Japan and Asia. + News + + + + On the Wings + Shizuoka to Izumo Airport + Computers & Technologies + Local + + + + Magical Japanese + Insect + Instructional + + + + Core Kyoto + Kata-Yuzen + The ancient capital, Kyoto, continues to be innovative after 1,200 years. + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline Biz + Reporting the latest business, finance and economic news, with added analysis from studio guests. + News + Business + + + + Sharing the Future + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + Trails to Oishii Tokyo + An introduction to Japanese food directly from Tsukiji. + Food + Instructional + + + TVG + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + Dive in Tokyo + Denenchofu - An Upscale Garden Suburb + Travel + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Direct Talk + News, current affairs and documentaries focusing on Japan and Asia. + News + Documentary + + + + Kabuki Kool + Kabuki Villains + Exploring the world of Kabuki, featuring modern themes and Kabuki's creative staging. + + Kataoka Ainosuke + Sarah Álainn + Nakamura Kazutaro I + + Drama + Performing Arts + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + On the Wings + Shizuoka to Izumo Airport + Computers & Technologies + Local + + + + Magical Japanese + Insect + Instructional + + + + Core Kyoto + Kata-Yuzen + The ancient capital, Kyoto, continues to be innovative after 1,200 years. + Documentary + + + + Newsroom Tokyo + NHK World's newest program provides comprehensive coverage of events in Japan and Asia. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + Direct Talk + Yano Koji, Actor + News, current affairs and documentaries focusing on Japan and Asia. + News + Documentary + + + + Ukiyoe Edo-Life + Minowa, Kanasugi, Mikawashima + The rich and fascinating Edo era of Japan, which was dominated by a deep love for the arts. + Miniseries + Documentary + + + + Today's Close-Up + Issues facing Japanese society, domestically and internationally. + News + + + + Sharing the Future + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline Biz + Reporting the latest business, finance and economic news, with added analysis from studio guests. + News + Business + + + + Trails to Oishii Tokyo + An introduction to Japanese food directly from Tsukiji. + Food + Instructional + + + TVG + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline Biz + Reporting the latest business, finance and economic news, with added analysis from studio guests. + News + Business + + + + Dive in Tokyo + Denenchofu - An Upscale Garden Suburb + Travel + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Newsline Biz + Reporting the latest business, finance and economic news, with added analysis from studio guests. + News + Business + + + + On the Wings + Shizuoka to Izumo Airport + Computers & Technologies + Local + + + + Magical Japanese + Insect + Instructional + + + + Core Kyoto + Kata-Yuzen + The ancient capital, Kyoto, continues to be innovative after 1,200 years. + Documentary + + + + NHK Newsline + Hourly news updates featuring current affairs, business news and global weather forecasts. + News + + + + Ukiyoe Edo-Life + Minowa, Kanasugi, Mikawashima + The rich and fascinating Edo era of Japan, which was dominated by a deep love for the arts. + Miniseries + Documentary + + + + Time-Lapse Japan + OKINAWA: The Holiest Place + A variety of short programs focusing on Japan and Asia. + Documentary + History + + + + Treasure Box Japan: Saitama + The Eternal Star Festival + Documentary + Local + + + + Kabuki Kool + Kabuki Villains + Exploring the world of Kabuki, featuring modern themes and Kabuki's creative staging. + + Kataoka Ainosuke + Sarah Álainn + Nakamura Kazutaro I + + Drama + Performing Arts + + + + Dallas Stars vs. Vancouver Canucks + Dallas Stars at Vancouver Canucks + The Stars reach the end of a three-game Western Canadian trip by playing the Canucks. Vancouver swept the three-game season series with Dallas in 2022-23, just as it did in 2021-22. J.T. Miller (VAN) has nine points in four home games this season. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Dallas Stars vs. Vancouver Canucks + Dallas Stars at Vancouver Canucks + The Stars reach the end of a three-game Western Canadian trip by playing the Canucks. Vancouver swept the three-game season series with Dallas in 2022-23, just as it did in 2021-22. J.T. Miller (VAN) has nine points in four home games this season. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Nashville Predators vs. Calgary Flames + Nashville Predators at Calgary Flames + From Scotiabank Saddledome in Calgary, Alberta. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Nashville Predators vs. Calgary Flames + Nashville Predators at Calgary Flames + From Scotiabank Saddledome in Calgary, Alberta. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Nashville Predators vs. Calgary Flames + Nashville Predators at Calgary Flames + From Scotiabank Saddledome in Calgary, Alberta. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Nashville Predators vs. Calgary Flames + Nashville Predators at Calgary Flames + From Scotiabank Saddledome in Calgary, Alberta. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Nashville Predators vs. Calgary Flames + Nashville Predators at Calgary Flames + From Scotiabank Saddledome in Calgary, Alberta. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Florida Panthers vs. Chicago Blackhawks + Florida Panthers at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + TVY + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Pittsburgh Penguins vs. Anaheim Ducks + Pittsburgh Penguins at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Pittsburgh Penguins vs. Anaheim Ducks + Pittsburgh Penguins at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Pittsburgh Penguins vs. Anaheim Ducks + Pittsburgh Penguins at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Pittsburgh Penguins vs. Anaheim Ducks + Pittsburgh Penguins at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Pittsburgh Penguins vs. Anaheim Ducks + Pittsburgh Penguins at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New York Rangers vs. Minnesota Wild + New York Rangers at Minnesota Wild + From the Xcel Energy Center in St. Paul, Minn. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Pittsburgh Penguins vs. Anaheim Ducks + Pittsburgh Penguins at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Pittsburgh Penguins vs. Anaheim Ducks + Pittsburgh Penguins at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Pittsburgh Penguins vs. Anaheim Ducks + Pittsburgh Penguins at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Pittsburgh Penguins vs. Anaheim Ducks + Pittsburgh Penguins at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Pittsburgh Penguins vs. Anaheim Ducks + Pittsburgh Penguins at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Calgary Flames vs. Seattle Kraken + Calgary Flames at Seattle Kraken + The faltering Flames try to find a spark when they head south to battle the Kraken. Calgary is 1-4-1 away from home this season after a 5-2 Heritage Classic loss to Edmonton, but is 6-1-0 against Seattle with Noah Hanifin registering 10 points. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Philadelphia Flyers vs. San Jose Sharks + Philadelphia Flyers at San Jose Sharks + From the SAP Center at San Jose in San Jose, Calif. + Sports + Hockey + + + + Philadelphia Flyers vs. San Jose Sharks + Philadelphia Flyers at San Jose Sharks + From the SAP Center at San Jose in San Jose, Calif. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Philadelphia Flyers vs. San Jose Sharks + Philadelphia Flyers at San Jose Sharks + From the SAP Center at San Jose in San Jose, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Philadelphia Flyers vs. San Jose Sharks + Philadelphia Flyers at San Jose Sharks + From the SAP Center at San Jose in San Jose, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Philadelphia Flyers vs. San Jose Sharks + Philadelphia Flyers at San Jose Sharks + From the SAP Center at San Jose in San Jose, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Philadelphia Flyers vs. San Jose Sharks + Philadelphia Flyers at San Jose Sharks + From the SAP Center at San Jose in San Jose, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Pittsburgh Penguins vs. San Jose Sharks + Pittsburgh Penguins at San Jose Sharks + From the SAP Center at San Jose in San Jose, Calif. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Philadelphia Flyers vs. San Jose Sharks + Philadelphia Flyers at San Jose Sharks + From the SAP Center at San Jose in San Jose, Calif. + Sports + Hockey + + + + Philadelphia Flyers vs. San Jose Sharks + Philadelphia Flyers at San Jose Sharks + From the SAP Center at San Jose in San Jose, Calif. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Philadelphia Flyers vs. San Jose Sharks + Philadelphia Flyers at San Jose Sharks + From the SAP Center at San Jose in San Jose, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Philadelphia Flyers vs. San Jose Sharks + Philadelphia Flyers at San Jose Sharks + From the SAP Center at San Jose in San Jose, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Philadelphia Flyers vs. San Jose Sharks + Philadelphia Flyers at San Jose Sharks + From the SAP Center at San Jose in San Jose, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Philadelphia Flyers vs. San Jose Sharks + Philadelphia Flyers at San Jose Sharks + From the SAP Center at San Jose in San Jose, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Colorado Avalanche vs. Vegas Golden Knights + Colorado Avalanche at Vegas Golden Knights + From T-Mobile Arena in Las Vegas. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Colorado Avalanche vs. Vegas Golden Knights + Colorado Avalanche at Vegas Golden Knights + From T-Mobile Arena in Las Vegas. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Columbus Blue Jackets vs. Florida Panthers + Columbus Blue Jackets at Florida Panthers + From Amerant Bank Arena in Sunrise, Fla. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Colorado Avalanche vs. Vegas Golden Knights + Colorado Avalanche at Vegas Golden Knights + From T-Mobile Arena in Las Vegas. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Vegas Golden Knights vs. Anaheim Ducks + Vegas Golden Knights at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Vegas Golden Knights vs. Anaheim Ducks + Vegas Golden Knights at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + Vegas Golden Knights vs. Anaheim Ducks + Vegas Golden Knights at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Vegas Golden Knights vs. Anaheim Ducks + Vegas Golden Knights at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Vegas Golden Knights vs. Anaheim Ducks + Vegas Golden Knights at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Vegas Golden Knights vs. Anaheim Ducks + Vegas Golden Knights at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Tampa Bay Lightning vs. Toronto Maple Leafs + Tampa Bay Lightning at Toronto Maple Leafs + The Lightning begin a back-to-back in this game against the Maple Leafs. On Oct. 21, Toronto erased a late two-goal deficit as it won 4-3 in overtime in Tampa Bay, the first match between the two since the Leafs ousted the Lightning in the playoffs. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Tampa Bay Lightning vs. Toronto Maple Leafs + Tampa Bay Lightning at Toronto Maple Leafs + The Lightning begin a back-to-back in this game against the Maple Leafs. On Oct. 21, Toronto erased a late two-goal deficit as it won 4-3 in overtime in Tampa Bay, the first match between the two since the Leafs ousted the Lightning in the playoffs. + Sports + Hockey + + + + Tampa Bay Lightning vs. Toronto Maple Leafs + Tampa Bay Lightning at Toronto Maple Leafs + The Lightning begin a back-to-back in this game against the Maple Leafs. On Oct. 21, Toronto erased a late two-goal deficit as it won 4-3 in overtime in Tampa Bay, the first match between the two since the Leafs ousted the Lightning in the playoffs. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Tampa Bay Lightning vs. Toronto Maple Leafs + Tampa Bay Lightning at Toronto Maple Leafs + The Lightning begin a back-to-back in this game against the Maple Leafs. On Oct. 21, Toronto erased a late two-goal deficit as it won 4-3 in overtime in Tampa Bay, the first match between the two since the Leafs ousted the Lightning in the playoffs. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Tampa Bay Lightning vs. Toronto Maple Leafs + Tampa Bay Lightning at Toronto Maple Leafs + The Lightning begin a back-to-back in this game against the Maple Leafs. On Oct. 21, Toronto erased a late two-goal deficit as it won 4-3 in overtime in Tampa Bay, the first match between the two since the Leafs ousted the Lightning in the playoffs. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Tampa Bay Lightning vs. Toronto Maple Leafs + Tampa Bay Lightning at Toronto Maple Leafs + The Lightning begin a back-to-back in this game against the Maple Leafs. On Oct. 21, Toronto erased a late two-goal deficit as it won 4-3 in overtime in Tampa Bay, the first match between the two since the Leafs ousted the Lightning in the playoffs. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Tampa Bay Lightning vs. Montréal Canadiens + Tampa Bay Lightning at Montreal Canadiens + From the Bell Centre in Montreal. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Tampa Bay Lightning vs. Montréal Canadiens + Tampa Bay Lightning at Montreal Canadiens + From the Bell Centre in Montreal. + Sports + Hockey + + + + Tampa Bay Lightning vs. Montréal Canadiens + Tampa Bay Lightning at Montreal Canadiens + From the Bell Centre in Montreal. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Tampa Bay Lightning vs. Montréal Canadiens + Tampa Bay Lightning at Montreal Canadiens + From the Bell Centre in Montreal. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Tampa Bay Lightning vs. Montréal Canadiens + Tampa Bay Lightning at Montreal Canadiens + From the Bell Centre in Montreal. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Tampa Bay Lightning vs. Montréal Canadiens + Tampa Bay Lightning at Montreal Canadiens + From the Bell Centre in Montreal. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Vegas Golden Knights vs. Anaheim Ducks + Vegas Golden Knights at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Vegas Golden Knights vs. Anaheim Ducks + Vegas Golden Knights at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + Vegas Golden Knights vs. Anaheim Ducks + Vegas Golden Knights at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Vegas Golden Knights vs. Anaheim Ducks + Vegas Golden Knights at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Vegas Golden Knights vs. Anaheim Ducks + Vegas Golden Knights at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Vegas Golden Knights vs. Anaheim Ducks + Vegas Golden Knights at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Boston Bruins vs. Dallas Stars + Boston Bruins at Dallas Stars + From American Airlines Center in Dallas. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Boston Bruins vs. Dallas Stars + Boston Bruins at Dallas Stars + From American Airlines Center in Dallas. + Sports + Hockey + + + + Boston Bruins vs. Dallas Stars + Boston Bruins at Dallas Stars + From American Airlines Center in Dallas. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Boston Bruins vs. Dallas Stars + Boston Bruins at Dallas Stars + From American Airlines Center in Dallas. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Boston Bruins vs. Dallas Stars + Boston Bruins at Dallas Stars + From American Airlines Center in Dallas. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Tampa Bay Lightning vs. Montréal Canadiens + Tampa Bay Lightning at Montreal Canadiens + From the Bell Centre in Montreal. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Tampa Bay Lightning vs. Montréal Canadiens + Tampa Bay Lightning at Montreal Canadiens + From the Bell Centre in Montreal. + Sports + Hockey + + + + Tampa Bay Lightning vs. Montréal Canadiens + Tampa Bay Lightning at Montreal Canadiens + From the Bell Centre in Montreal. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Tampa Bay Lightning vs. Montréal Canadiens + Tampa Bay Lightning at Montreal Canadiens + From the Bell Centre in Montreal. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Tampa Bay Lightning vs. Montréal Canadiens + Tampa Bay Lightning at Montreal Canadiens + From the Bell Centre in Montreal. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Tampa Bay Lightning vs. Montréal Canadiens + Tampa Bay Lightning at Montreal Canadiens + From the Bell Centre in Montreal. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Boston Bruins vs. Dallas Stars + Boston Bruins at Dallas Stars + From American Airlines Center in Dallas. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Boston Bruins vs. Dallas Stars + Boston Bruins at Dallas Stars + From American Airlines Center in Dallas. + Sports + Hockey + + + + Boston Bruins vs. Dallas Stars + Boston Bruins at Dallas Stars + From American Airlines Center in Dallas. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Boston Bruins vs. Dallas Stars + Boston Bruins at Dallas Stars + From American Airlines Center in Dallas. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Boston Bruins vs. Dallas Stars + Boston Bruins at Dallas Stars + From American Airlines Center in Dallas. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Minnesota Wild vs. New York Islanders + Minnesota Wild at New York Islanders + From UBS Arena in Elmont, N.Y. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Minnesota Wild vs. New York Islanders + Minnesota Wild at New York Islanders + From UBS Arena in Elmont, N.Y. + Sports + Hockey + + + + Minnesota Wild vs. New York Islanders + Minnesota Wild at New York Islanders + From UBS Arena in Elmont, N.Y. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Minnesota Wild vs. New York Islanders + Minnesota Wild at New York Islanders + From UBS Arena in Elmont, N.Y. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Minnesota Wild vs. New York Islanders + Minnesota Wild at New York Islanders + From UBS Arena in Elmont, N.Y. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Minnesota Wild vs. New York Islanders + Minnesota Wild at New York Islanders + From UBS Arena in Elmont, N.Y. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Edmonton Oilers vs. Vancouver Canucks + Edmonton Oilers at Vancouver Canucks + The Canucks aim to pile on the Oilers when the clubs clash. Vancouver swept both ends of a season-opening home-and-home set with Edmonton, outscoring the Oilers 12-4. Elias Pettersson (VAN) factored in on half of those goals with five assists. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Edmonton Oilers vs. Vancouver Canucks + Edmonton Oilers at Vancouver Canucks + The Canucks aim to pile on the Oilers when the clubs clash. Vancouver swept both ends of a season-opening home-and-home set with Edmonton, outscoring the Oilers 12-4. Elias Pettersson (VAN) factored in on half of those goals with five assists. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Edmonton Oilers vs. Vancouver Canucks + Edmonton Oilers at Vancouver Canucks + The Canucks aim to pile on the Oilers when the clubs clash. Vancouver swept both ends of a season-opening home-and-home set with Edmonton, outscoring the Oilers 12-4. Elias Pettersson (VAN) factored in on half of those goals with five assists. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Edmonton Oilers vs. Vancouver Canucks + Edmonton Oilers at Vancouver Canucks + The Canucks aim to pile on the Oilers when the clubs clash. Vancouver swept both ends of a season-opening home-and-home set with Edmonton, outscoring the Oilers 12-4. Elias Pettersson (VAN) factored in on half of those goals with five assists. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Minnesota Wild vs. New York Islanders + Minnesota Wild at New York Islanders + From UBS Arena in Elmont, N.Y. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Minnesota Wild vs. New York Islanders + Minnesota Wild at New York Islanders + From UBS Arena in Elmont, N.Y. + Sports + Hockey + + + + Minnesota Wild vs. New York Islanders + Minnesota Wild at New York Islanders + From UBS Arena in Elmont, N.Y. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Minnesota Wild vs. New York Islanders + Minnesota Wild at New York Islanders + From UBS Arena in Elmont, N.Y. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Minnesota Wild vs. New York Islanders + Minnesota Wild at New York Islanders + From UBS Arena in Elmont, N.Y. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Minnesota Wild vs. New York Islanders + Minnesota Wild at New York Islanders + From UBS Arena in Elmont, N.Y. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Winnipeg Jets vs. St. Louis Blues + Winnipeg Jets at St. Louis Blues + From Enterprise Center in Saint Louis, Mo. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Winnipeg Jets vs. St. Louis Blues + Winnipeg Jets at St. Louis Blues + From Enterprise Center in Saint Louis, Mo. + Sports + Hockey + + + + Winnipeg Jets vs. St. Louis Blues + Winnipeg Jets at St. Louis Blues + From Enterprise Center in Saint Louis, Mo. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Winnipeg Jets vs. St. Louis Blues + Winnipeg Jets at St. Louis Blues + From Enterprise Center in Saint Louis, Mo. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Winnipeg Jets vs. St. Louis Blues + Winnipeg Jets at St. Louis Blues + From Enterprise Center in Saint Louis, Mo. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Winnipeg Jets vs. St. Louis Blues + Winnipeg Jets at St. Louis Blues + From Enterprise Center in Saint Louis, Mo. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Winnipeg Jets vs. St. Louis Blues + Winnipeg Jets at St. Louis Blues + From Enterprise Center in Saint Louis, Mo. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Winnipeg Jets vs. St. Louis Blues + Winnipeg Jets at St. Louis Blues + From Enterprise Center in Saint Louis, Mo. + Sports + Hockey + + + + Winnipeg Jets vs. St. Louis Blues + Winnipeg Jets at St. Louis Blues + From Enterprise Center in Saint Louis, Mo. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Winnipeg Jets vs. St. Louis Blues + Winnipeg Jets at St. Louis Blues + From Enterprise Center in Saint Louis, Mo. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Winnipeg Jets vs. St. Louis Blues + Winnipeg Jets at St. Louis Blues + From Enterprise Center in Saint Louis, Mo. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Winnipeg Jets vs. St. Louis Blues + Winnipeg Jets at St. Louis Blues + From Enterprise Center in Saint Louis, Mo. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Pregame + Pregame news, notes and analysis. + Sports + Hockey + + + + Seattle Kraken vs. Arizona Coyotes + Seattle Kraken at Arizona Coyotes + From Mullett Arena in Tempe, Ariz. + Sports + Hockey + + + + NHL Postgame + Postgame coverage of the NHL. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Seattle Kraken vs. Arizona Coyotes + Seattle Kraken at Arizona Coyotes + From Mullett Arena in Tempe, Ariz. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Seattle Kraken vs. Arizona Coyotes + Seattle Kraken at Arizona Coyotes + From Mullett Arena in Tempe, Ariz. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Seattle Kraken vs. Arizona Coyotes + Seattle Kraken at Arizona Coyotes + From Mullett Arena in Tempe, Ariz. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + Seattle Kraken vs. Arizona Coyotes + Seattle Kraken at Arizona Coyotes + From Mullett Arena in Tempe, Ariz. + Sports + Hockey + + + + NHL Center Ice + See the teams, players and match-ups you want to watch - LIVE! Call your cable operator now to get in on the action. + Sports + Hockey + + + + On the Fly + With Bonus Coverage + On and off the ice news and highlights with bonus coverage. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + With Bonus Coverage + On and off the ice news and highlights with bonus coverage. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + NHL Network Ice Time + One-on-one hockey demonstrations and conversations with some of the top players in the NHL, showcasing their personalities on and off the ice. + Sports + Hockey + + + + NHL Tonight + Breakdowns & Demos + NHL Network analysts take an in depth look at key plays that made impacts on games. Watch former players take to the rink in Studio 21 to illustrate, educate, and offer their opinions on impactful plays. + Sports + Hockey + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + NHL Network Ice Time + One-on-one hockey demonstrations and conversations with some of the top players in the NHL, showcasing their personalities on and off the ice. + Sports + Hockey + + + + Top Shelf + The latest eye-popping moves, tricks and stops. + Sports + Hockey + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + Behind the B + The Bruins start their 100th year of hockey with legends walking a Gold Carpet on opening night; Brad Marchand is mic'd up for his first game as Captain; the team holds a black tie Centennial Gala; James van Riemsdyk mic'd up versus Nashville. + Sports + Hockey + + + + Boston Bruins vs. Detroit Red Wings + Boston Bruins at Detroit Red Wings + From Little Caesars Arena in Detroit, Mich. + Sports + Hockey + + + + New York Rangers vs. Minnesota Wild + New York Rangers at Minnesota Wild + From the Xcel Energy Center in St. Paul, Minn. + Sports + Hockey + + + + Colorado Avalanche vs. Vegas Golden Knights + Colorado Avalanche at Vegas Golden Knights + From T-Mobile Arena in Las Vegas. + Sports + Hockey + + + + Top Shelf + The latest eye-popping moves, tricks and stops. + Sports + Hockey + + + + NHL Network Ice Time + One-on-one hockey demonstrations and conversations with some of the top players in the NHL, showcasing their personalities on and off the ice. + Sports + Hockey + + + + NHL Tonight + Breakdowns & Demos + NHL Network analysts take an in depth look at key plays that made impacts on games. Watch former players take to the rink in Studio 21 to illustrate, educate, and offer their opinions on impactful plays. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + On the Fly + With Bonus Coverage + On and off the ice news and highlights with bonus coverage. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + Top Shelf + The latest eye-popping moves, tricks and stops. + Sports + Hockey + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + Top Shelf + The latest eye-popping moves, tricks and stops. + Sports + Hockey + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + Top Shelf + The latest eye-popping moves, tricks and stops. + Sports + Hockey + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + Top Shelf + The latest eye-popping moves, tricks and stops. + Sports + Hockey + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + Top Shelf + The latest eye-popping moves, tricks and stops. + Sports + Hockey + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + Vegas Golden Knights vs. Anaheim Ducks + Vegas Golden Knights at Anaheim Ducks + From the Honda Center in Anaheim, Calif. + Sports + Hockey + + + + New Jersey Devils vs. Chicago Blackhawks + New Jersey Devils at Chicago Blackhawks + From the United Center in Chicago. + Sports + Hockey + + + + NHL Network Ice Time + One-on-one hockey demonstrations and conversations with some of the top players in the NHL, showcasing their personalities on and off the ice. + Sports + Hockey + + + + NHL Now + A front row seat to the latest news and happenings from around the league, as hosts E.J. Hradek and Jackie Redmond, along with NHL Insiders, set up for an exciting night of NHL game action. + + Jackie Redmond + E.J. Hradek + + Sports + Talk Show + + + + NHL Tonight + Pre-Game Skate + Preview all the night's contests as game time approaches, as NHL hosts and analysts take you on the ice. As warm-ups are under way, get a look inside the arenas, as we provide starting lineups and interviews with players and coaches. + Sports + Hockey + + + + Tampa Bay Lightning vs. Toronto Maple Leafs + Tampa Bay Lightning at Toronto Maple Leafs + The Lightning begin a back-to-back in this game against the Maple Leafs. On Oct. 21, Toronto erased a late two-goal deficit as it won 4-3 in overtime in Tampa Bay, the first match between the two since the Leafs ousted the Lightning in the playoffs. + Sports + Hockey + + + + On the Fly + With Bonus Coverage + On and off the ice news and highlights with bonus coverage. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + With Bonus Coverage + On and off the ice news and highlights with bonus coverage. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + Edmonton Oilers vs. Vancouver Canucks + Edmonton Oilers at Vancouver Canucks + The Canucks aim to pile on the Oilers when the clubs clash. Vancouver swept both ends of a season-opening home-and-home set with Edmonton, outscoring the Oilers 12-4. Elias Pettersson (VAN) factored in on half of those goals with five assists. + Sports + Hockey + + + + Tampa Bay Lightning vs. Toronto Maple Leafs + Tampa Bay Lightning at Toronto Maple Leafs + The Lightning begin a back-to-back in this game against the Maple Leafs. On Oct. 21, Toronto erased a late two-goal deficit as it won 4-3 in overtime in Tampa Bay, the first match between the two since the Leafs ousted the Lightning in the playoffs. + Sports + Hockey + + + + NHL Now + A front row seat to the latest news and happenings from around the league, as hosts E.J. Hradek and Jackie Redmond, along with NHL Insiders, set up for an exciting night of NHL game action. + + Jackie Redmond + E.J. Hradek + + Sports + Talk Show + + + + NHL Tonight + Pre-Game Skate + Preview all the night's contests as game time approaches, as NHL hosts and analysts take you on the ice. As warm-ups are under way, get a look inside the arenas, as we provide starting lineups and interviews with players and coaches. + Sports + Hockey + + + + NHL Tonight + Catch in-game action, plus news from around the NHL, previews of all the games throughout the league, and real-time score updates. + Sports + Hockey + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + On the Fly + Recapping all the night's exciting action from around the National Hockey League, with highlights, analysis, interviews and more. + Sports + Hockey + + + TVPG + + + + Buffalo Sabres vs. Carolina Hurricanes + Buffalo Sabres at Carolina Hurricanes + From PNC Arena in Raleigh, N.C. + Sports + Hockey + + + + Detroit Red Wings vs. New York Rangers + Detroit Red Wings at New York Rangers + From Madison Square Garden in New York. + Sports + Hockey + + + + New Jersey Devils vs. Colorado Avalanche + New Jersey Devils at Colorado Avalanche + From Ball Arena in Denver. + Sports + Hockey + + + + NHL Now + A front row seat to the latest news and happenings from around the league, as hosts E.J. Hradek and Jackie Redmond, along with NHL Insiders, set up for an exciting night of NHL game action. + + Jackie Redmond + E.J. Hradek + + Sports + Talk Show + + + + NHL Tonight + Pre-Game Skate + Preview all the night's contests as game time approaches, as NHL hosts and analysts take you on the ice. As warm-ups are under way, get a look inside the arenas, as we provide starting lineups and interviews with players and coaches. + Sports + Hockey + + + + To Catch a Smuggler: Peru + Coffee and Cocaine + Police officers handle an unusual incident; officers discover a suspicious element inside a Serb's bag; a man tries to smuggle liquid cocaine. + Reality TV + + + + To Catch a Smuggler: Peru + Friends with Secrets + The agents identify two suspicious travelers going to Mexico; the body scan shows they are carrying capsules inside their bodies; in the hospital, one of them reveals that they are pregnant. + Reality TV + + + + To Catch a Smuggler: Peru + Senior Smuggler + A woman is arrested with her two children while trying to smuggle drugs abroad; a young woman breaks out in tears; a young man is thoroughly searched. + Reality TV + + + + Airport Security Peru + Strange Brew + Police stop a suspected drug smuggler traveling with her child; officers find a new way to hide cocaine. + Reality TV + + + + To Catch a Smuggler + Spot Check: Cocaine Snapper + In this spot check episode, HSI Miami catches a load of cocaine-filled fish. + Documentary + + + TV14 + + + + To Catch a Smuggler + Spot Check: Talibani Treasure Trove + In this spot check episode, CBP finds ancient gold looted from Afghanistan. + Documentary + + + TV14 + + + + To Catch a Smuggler: Colombia + Cocaine Cocktail + At Colombia's biggest airport, officers make cocaine busts and set a man free. + Reality TV + Documentary + + + TV14 + + + + To Catch a Smuggler: Colombia + Cocaine Suitcase + At Colombia's biggest airport, officers make cocaine busts in bags and mail shipments. + Reality TV + Documentary + + + TV14 + + + + To Catch a Smuggler + Spot Check: Cocaine Snapper + In this spot check episode, HSI Miami catches a load of cocaine-filled fish. + Documentary + + + TV14 + + + + To Catch a Smuggler + Spot Check: Talibani Treasure Trove + In this spot check episode, CBP finds ancient gold looted from Afghanistan. + Documentary + + + TV14 + + + + Airport Security Peru + Strange Brew + Police stop a suspected drug smuggler traveling with her child; officers find a new way to hide cocaine. + Reality TV + + + + To Catch a Smuggler: Peru + Senior Smuggler + A woman is arrested with her two children while trying to smuggle drugs abroad; a young woman breaks out in tears; a young man is thoroughly searched. + Reality TV + + + + To Catch a Smuggler: Peru + Friends with Secrets + The agents identify two suspicious travelers going to Mexico; the body scan shows they are carrying capsules inside their bodies; in the hospital, one of them reveals that they are pregnant. + Reality TV + + + + To Catch a Smuggler: Peru + Coffee and Cocaine + Police officers handle an unusual incident; officers discover a suspicious element inside a Serb's bag; a man tries to smuggle liquid cocaine. + Reality TV + + + + To Catch a Smuggler: Peru + Grandma's Goodies + An elderly woman tries to traffic cocaine, one of the largest shipments seized at the airport; an Indonesian passenger claims to be the victim of a hoax; three other young people are arrested trying to smuggle drugs in different ways. + Reality TV + + + + To Catch a Smuggler: Peru + Strange Brew + Police stop a suspected drug smuggler traveling with her child; officers find a new way to hide cocaine. + Reality TV + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + DraftKings Sportsbook Report + DraftKings Sportsbook, a top-rated sportsbook app! + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + 1989: The Year That Made Us + World in Revolution + From the protests of Tiananmen Square to the fall of the Berlin Wall, 1989 transformed global politics in profound ways that still resonate today; former Secretary of State James Baker and journalists provide eyewitness accounts. + History + Documentary + + + + CIA Confidential + Hunt for Bin Laden + Days after 9/11 a group of CIA agents infiltrate Afghanistan in an effort to decimate al Qaeda and hunt down Osama Bin Laden. + Documentary + + + TV14 + + + + CIA Confidential + Pakistan Undercover + The reality of being a CIA agent on the ground recruiting informants, raiding terror cells and capturing targets. + Documentary + + + TV14 + + + + CIA Confidential + Inside the Drone War + Examining how the CIA uses cutting-edge technology to go up against terrorists while redefining the spy game for agents on the ground. + Documentary + + + TV14 + + + + CIA Confidential + 9/11 Mastermind + The large-scale manhunt for the man who bombed the World Trade Center in 1993 and ultimately engineered the attacks of 9/11. + Documentary + + + TV14 + + + + 9/11: One Day in America + Told in Full: First Response + As a plane hits the North Tower, we follow firefighters first on the scene. + History + Documentary + + + TV14 + + + + 9/11: One Day in America + The South Tower + Stories of escape from the South Tower and the paramedics on the ground facing an onslaught of badly injured people. + + Joseph Pfeifer + Jason Thomas + Ron DiFrancesco + + History + Documentary + + + TVMA + + + + 9/11: One Day in America + Collapse + A day of terror and the struggle to survive continues as the Pentagon is hit, Flight 93 is hijacked and the South Tower collapses. + History + Documentary + + + TVMA + + + + 9/11: One Day in America + The Cloud + Survivors search for loved ones after becoming separated when they are enveloped by a toxic dust cloud. + History + Documentary + + + TVMA + + + + 9/11: One Day in America + I'm Coming For You, Brother + It is a race against time to find and rescue a group of firefighters who were inside the North Tower when it collapsed. + History + Documentary + + + TVMA + + + + 9/11: One Day in America + It's All Gone, Kid + At Ground Zero, two ex-marines and an ex-paramedic join forces to search for survivors and pull off one of the most miraculous rescues of the day. + + Joseph Pfeifer + Jason Thomas + Ron DiFrancesco + + History + Documentary + + + TVMA + + + + JFK: One Day in America + Assassination + President Kennedy is shot in broad daylight while visiting Dallas. + Documentary + History + + + TV14 + + + + JFK: One Day in America + Manhunt + A search begins as Dallas police search for the president's assassin. + Documentary + History + + + TV14 + + + + JFK: One Day in America + Revenge + Assassin Lee Harvey Oswald is shot while in police custody. + Documentary + History + + + TV14 + + + + JFK: One Day in America + Assassination + President Kennedy is shot in broad daylight while visiting Dallas. + Documentary + History + + + TV14 + + + + JFK: One Day in America + Manhunt + A search begins as Dallas police search for the president's assassin. + Documentary + History + + + TV14 + + + + JFK: One Day in America + Revenge + Assassin Lee Harvey Oswald is shot while in police custody. + Documentary + History + + + TV14 + + + + CIA Confidential + Hunt for Bin Laden + Days after 9/11 a group of CIA agents infiltrate Afghanistan in an effort to decimate al Qaeda and hunt down Osama Bin Laden. + Documentary + + + TV14 + + + + CIA Confidential + Pakistan Undercover + The reality of being a CIA agent on the ground recruiting informants, raiding terror cells and capturing targets. + Documentary + + + TV14 + + + + CIA Confidential + Inside the Drone War + Examining how the CIA uses cutting-edge technology to go up against terrorists while redefining the spy game for agents on the ground. + Documentary + + + TV14 + + + + CIA Confidential + 9/11 Mastermind + The large-scale manhunt for the man who bombed the World Trade Center in 1993 and ultimately engineered the attacks of 9/11. + Documentary + + + TV14 + + + + Coin Collecting with Mike Mezack + Learn about the wonderful world of numismatics with your host Mike Mezack and get the opportunity to build your own collection with some of the best deals around! + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + H2O X5 - Super Powerful 5-In-1 Multi-Use Steam Cleaner + Kills 990f Bacteria, Viruses, and Germs with Steam! The 5-in-1 Lightweight, Fast, Powerful, And Completely Chemical Free Steam Cleaner! Lift and remove dirt and stains all around the home! + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Last of the Giants: Wild Fish + The Mighty Tarpon + Cyril and his team of adventurous filmmakers search the waters of Nicaragua to help local scientists find the mighty tarpon. + Documentary + Science + + + TVPG + + + + Last of the Giants: Wild Fish + No Sudden Movements + Cyril and his team embark on a dangerous mission to find tarpon. + Documentary + Science + + + TVPG + + + + Last of the Giants: Wild Fish + Into the Jungle + Cyril and his team head into the Nicaraguan jungle to search for tarpon. + Documentary + Science + + + + Last of the Giants: Wild Fish + Fresh Bait + Cyril and his team continue their dangerous mission to find tarpon. + Documentary + Science + + + TVPG + + + + Last of the Giants: Wild Fish + Lost Island Predators + Cyril and his team search for French Polynesia's elusive Giant Trevally. + Documentary + Science + + + TVPG + + + + Last of the Giants: Wild Fish + Close Call + Cyril and his team are rerouted on their quest to find Giant Trevally. + Documentary + Science + + + + Life Below Zero + Alone in the Dark + Dark winter brings new challenges in sub-zero temperatures; Andy maintains snow-covered trails; Sue fixes her generator; the Hailstones build a new teepee; Erik takes his wife hunting. + Reality TV + Documentary + + + TVPG + + + + Life Below Zero + Emergency Cache + The Hailstones hide emergency supplies along their hunting and trapping routes; Sue's connection with the outside world hangs in the balance; Erik falls while gathering firewood. + Reality TV + Documentary + + + TVPG + + + + Life Below Zero + No Easy Out + Chip and Agnes head to Kiwalik River for hunting and fishing; Sue fabricates snowshoes to scout the tundra; Andy fights through frigid temperatures to replenish his resources; Erik and Martha set fur traps. + Reality TV + Documentary + + + TVPG + + + + Life Below Zero + Bent and Broken + Andy makes snares; Erik and Martha cut into their last moose quarter; Chip and Agnus hunt caribou; Sue clears the plane runway for her snow machine delivery. + Reality TV + Documentary + + + TVPG + + + + Life Below Zero + The Crash + As winter begins to fade and signs of spring appear, Alaskans must start to store supplies for the upcoming months. + Reality TV + Documentary + + + TVPG + + + + Life Below Zero + Aftermath + Spring is on the horizon, and the Alaskans prepare for the coming months as winter ends; Sue Aikens' snow machine crash leaves her with an uncertain future; Sue heads into town to get a diagnosis on her injury. + Reality TV + Documentary + + + TVPG + + + + Life Below Zero + Fight the Freeze: The Rising Tides + In this enhanced episode, Alaskans push through the deep cold for survival. + Reality TV + Documentary + + + TV14 + + + + Life Below Zero: Next Generation + Survival Mode: Brain Power + With new content, Alaskans engineer survival solutions in the harsh climate. + Reality TV + Documentary + + + TV14 + + + + Life Below Zero + Aftermath + Spring is on the horizon, and the Alaskans prepare for the coming months as winter ends; Sue Aikens' snow machine crash leaves her with an uncertain future; Sue heads into town to get a diagnosis on her injury. + Reality TV + Documentary + + + TVPG + + + + Life Below Zero + Fight the Freeze: The Rising Tides + In this enhanced episode, Alaskans push through the deep cold for survival. + Reality TV + Documentary + + + TV14 + + + + Life Below Zero: Next Generation + Survival Mode: Brain Power + With new content, Alaskans engineer survival solutions in the harsh climate. + Reality TV + Documentary + + + TV14 + + + + Life Below Zero + The Burden of Possessions + Ricko DeWilde and his son, Skyler, set out on a spring hunt for an Athabaskan ritual; Sue Aikens races the clock to establish a new tundra garden; the Hailstones welcome Carol back to Kiwalik camp; Andy Bassich and Denise Becker track a predator. + Reality TV + Documentary + + + TV14 + + + + Life Below Zero + Trials & Tributaries + As the warm season continues, Alaskans contend with the annual environmental changes that shift the daily struggles and rewards of their environment. + Reality TV + Documentary + + + TVPG + + + + Life Below Zero + Strange New World + The last few weeks of summer are upon Alaskans, bringing the need for hunting, fishing and harvesting bounty in the Arctic. + Reality TV + Documentary + + + TVPG + + + + Life Below Zero + A Game of Chance + Alaskans gather food and make upgrades to their homes as the Arctic Summer wanes. + Reality TV + Documentary + + + TV14 + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + Car Repair Secrets! + Save thousands on car repairs. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Heroes of the Sky: The Mighty Eighth Air Force + The story of the airmen that seismically shifted the Allies fortunes during World War II, known as the Mighty Eighth Airforce; featuring never before seen archival footage. + + Rory Gilbert + Ryon Thomas + + Specials + Documentary + + + TV14 + + + + JFK: One Day in America + Assassination + President Kennedy is shot in broad daylight while visiting Dallas. + Documentary + History + + + TV14 + + + + JFK: One Day in America + Manhunt + A search begins as Dallas police search for the president's assassin. + Documentary + History + + + TV14 + + + + JFK: One Day in America + Revenge + Assassin Lee Harvey Oswald is shot while in police custody. + Documentary + History + + + TV14 + + + + Life Below Zero + Off the Deep End + Alaskans rediscover old practices to get through the heart of winter. + Reality TV + Documentary + + + TV14 + + + + Life Below Zero + Going in Circles + Alaskans take advantage of a brief reprieve from Dark Winter's wrath. + Reality TV + Documentary + + + TV14 + + + + Life Below Zero + From Here to There + Alaskans test their will and luck against Dark Winter's obstacles. + Reality TV + Documentary + + + TV14 + + + + Life Below Zero + The Foundation + Alaskans must rely on solid foundations to persist through Dark Winter. + Reality TV + Documentary + + + TV14 + + + + Life Below Zero + The Rising Tides + Alaskans push through the deep cold to increase their odds of survival. + Reality TV + Documentary + + + TV14 + + + + Life Below Zero + The Silent Hunter + Alaskans stand their ground as winter brings one final barrage. + Reality TV + Documentary + + + TV14 + + + + Life Below Zero + Paving Paths + Alaskans brave the awakening landscape as the end of Winter nears. + Reality TV + Documentary + + + TV14 + + + + Life Below Zero + Waking from Winter + As winter comes to an end, Alaskans journey, hunt, and prepare for spring. + Reality TV + Documentary + + + TV14 + + + + Life Below Zero: Next Generation + Year of the Wolf + Alaskans brave the deadly cold of winter to protect their way of life. + Reality TV + Documentary + + + TV14 + + + + Life Below Zero + Arctic Bounty + Even the Arctic provides a bounty for those who learn to find it. + Reality TV + Documentary + + + TVPG + + + + Life Below Zero + Waking from Winter + As winter comes to an end, Alaskans journey, hunt, and prepare for spring. + Reality TV + Documentary + + + TV14 + + + + Life Below Zero: Next Generation + Year of the Wolf + Alaskans brave the deadly cold of winter to protect their way of life. + Reality TV + Documentary + + + TV14 + + + + Life Below Zero + Ready or Not + Preparation for winter is in full swing as the fall season reaches the Arctic; Sue searches for food; Andy and Kate race to get their fish wheel turning; the Hailstones build a cache for storing meat before their annual caribou hunt. + Reality TV + Documentary + + + TVPG + + + + Life Below Zero + Armed For Winter + Alaskans prepare themselves for winter; hunting caribou; a bear poses a threat; repairing a fish wheel; hauling a felled moose. + Reality TV + Documentary + + + TVPG + + + + Life Below Zero + Out of Control + Alaskans prepare for the winter months; Andy hunts moose; Sue heads to Fairbanks for a foot procedure; the hailstones teach their daughters to ice fish; Glenn repairs his cabin. + Reality TV + Documentary + + + TVPG + + + + Life Below Zero + The Unknown + Sue travels 150 miles to investigate squatters on her property; Andy's sled begins to fall apart while he's collecting firewood; Chip and Agnes brave thin ice to harvest whitefish. + Reality TV + Documentary + + + TVPG + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + Paid Program + + + TV14 + + + + Car Repair Secrets! + Save thousands on car repairs. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Get Fit with Total Gym, Risk Free + Get in the best shape of your life with the Total Gym 30 Day Risk-Free Trial Offer. + Paid Program + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + To Catch a Smuggler: South Pacific + Written in Meth + A regatta full of risks; a dog sniffs out undeclared cash; written in meth. + Specials + Documentary + + + TV14 + + + + To Catch a Smuggler: South Pacific + Genie in a Bottle + Bottles of trouble; endangered butterflies; a toy piano made of meth. + Specials + Documentary + + + TV14 + + + + To Catch a Smuggler: South Pacific + MDMA Party + A traveler vents; a TV crew claims they are on vacation; a man with hidden MDMA. + Specials + Documentary + + + TV14 + + + + To Catch a Smuggler: South Pacific + Cannabis Knickers + A man with drugs in his undies; illegal weapons stopped; a fleet of racecars. + Specials + Documentary + + + TV14 + + + + To Catch a Smuggler: South Pacific + Turtle Trouble + A tour guide seems on edge; turtle stowaways; a mysterious powder. + Specials + Documentary + + + TV14 + + + + To Catch a Smuggler: South Pacific + Bling Rings + A meth smuggler; a man fishes for trouble; a woman with flashy diamonds. + Specials + Documentary + + + TV14 + + + + To Catch a Smuggler: South Pacific + Deadly Gravel + A marijuana farmer; a frightening new narcotic; a Brazilian magician. + Specials + Documentary + + + TV14 + + + + To Catch a Smuggler: South Pacific + Meth Sandwich + A rare culinary delicacy poses a biosecurity risk; a passenger gives customs a piece of her mind; a weed enthusiast's plans go up in smoke. + Specials + Documentary + + + TV14 + + + + To Catch a Smuggler: South Pacific + How Do You Like Them Apples + A soap opera story; a foiled drug smuggling attempt; an expensive gamble. + Specials + Documentary + + + TV14 + + + + To Catch a Smuggler: South Pacific + Varsity Blues + False passports and identities; unique souvenirs; withdrawals and desperation. + Specials + Documentary + + + TV14 + + + + To Catch a Smuggler: South Pacific + Solar Meth + A questionable photo portfolio; a sex offender; solar panels hide meth. + Specials + Documentary + + + TV14 + + + + To Catch a Smuggler: South Pacific + Pulled Out a Plum + A suspicious barista; customs pulls out a plum; vacation vs. immigration. + Specials + Documentary + + + TV14 + + + + To Catch a Smuggler: Colombia + Drunk and Detained + Stories of drug smuggling and drama at El Dorado International Airport in Bogotá, Colombia. + Reality TV + Documentary + + + TV14 + + + + The Incredible Dr. Pol + One Pol Over the Cuckoo's Nest + The vets of Pol Veterinary Services deal with ornery ungulates, cut colts, knobby knees and more. + Reality TV + Animals + + + TVPG + + + + Heartland Docs, DVM + Let Me Clear My Goat + A horse is rushed to the clinic with a devastating facial injury. + Reality TV + Animals + + + TV14 + + + + Dr. Oakley, Yukon Vet + Silly Filly + Dr. Oakley treats a cherished breeding bull and a cat with a worrying lump. + Reality TV + Animals + + + TVPG + + + + Dr. Oakley, Yukon Vet + Adorable Alaska + Dr. Oakley is swimming in cuteness with all her baby patients who need her care. + Reality TV + Animals + + + TVPG + + + + Heartland Docs, DVM + Let Me Clear My Goat + A horse is rushed to the clinic with a devastating facial injury. + Reality TV + Animals + + + TV14 + + + + Dr. Oakley, Yukon Vet + Silly Filly + Dr. Oakley treats a cherished breeding bull and a cat with a worrying lump. + Reality TV + Animals + + + TVPG + + + + Dr. Oakley, Yukon Vet + Sassy, Classy, and…Gassy + Dr. Oakley has many patients with big personalities who aren't afraid to talk back. + Reality TV + Animals + + + TVPG + + + + Dr. Oakley, Yukon Vet + Ice Ice Oakley + Michelle faces off against the unforgiving Alaskan winter to help animals. + Reality TV + Animals + + + TVPG + + + + H2O X5 - Super Powerful 5-In-1 Multi-Use Steam Cleaner + Kills 990f Bacteria, Viruses, and Germs with Steam! The 5-in-1 Lightweight, Fast, Powerful, And Completely Chemical Free Steam Cleaner! Lift and remove dirt and stains all around the home! + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Cook Family Size Meals Faster + Emeril's biggest air fryer oven combines 10 kitchen appliances into one endlessly versatile countertop cooker with 2 cooking zones and a full menu of custom presets. + Paid Program + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + DraftKings Sportsbook Report + DraftKings Sportsbook, a top-rated sportsbook app! + Paid Program + + + + Inogen Portable Oxygen - Oxygen Therapy that Moves with You + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Secrets of the Zoo: Tampa + A Tiger's Tale + A newly arrived female tiger learns the ropes and overcomes her fears. + Animals + + + TVPG + + + + Secrets of the Zoo: Tampa + Panther Crossing + A rescued panther inspires a field expedition to improve wildlife safety. + Animals + + + TVPG + + + + Secrets of the Zoo: Tampa + Wolfpack Miracle + Triumph turns to concern after the historic birth of red wolf pups. + Animals + + + TVPG + + + + Secrets of the Zoo: Tampa + Fangs for the Memories + The Florida team nurses orphan manatees; a young primate learns the ropes. + Animals + + + TVPG + + + + Secrets of the Zoo: Tampa + Monkey Business + A team of doctors searches for answers to save a clouded leopard's life. + Animals + + + TVPG + + + + Secrets of the Zoo: North Carolina + Chimp Off the Old Block + Zoo keepers prepare for a chimp birth, while vets investigate a bear's mystery illness. + Animals + Reality TV + + + TVPG + + + + Secrets of the Zoo: North Carolina + Dr. Zoo-little + A gorilla has emergency surgery, while zoo keepers try to take blood from a lion's tail. + Animals + Reality TV + + + TVPG + + + + Secrets of the Zoo: Tampa + A Tiger's Tale + A newly arrived female tiger learns the ropes and overcomes her fears. + Animals + + + TVPG + + + + Secrets of the Zoo: Tampa + Panther Crossing + A rescued panther inspires a field expedition to improve wildlife safety. + Animals + + + TVPG + + + + Secrets of the Zoo: Tampa + Wolfpack Miracle + Triumph turns to concern after the historic birth of red wolf pups. + Animals + + + TVPG + + + + Secrets of the Zoo: Tampa + Fangs for the Memories + The Florida team nurses orphan manatees; a young primate learns the ropes. + Animals + + + TVPG + + + + Secrets of the Zoo: Tampa + Monkey Business + A team of doctors searches for answers to save a clouded leopard's life. + Animals + + + TVPG + + + + Secrets of the Zoo: North Carolina + Chimp Off the Old Block + Zoo keepers prepare for a chimp birth, while vets investigate a bear's mystery illness. + Animals + Reality TV + + + TVPG + + + + Secrets of the Zoo: North Carolina + Dr. Zoo-little + A gorilla has emergency surgery, while zoo keepers try to take blood from a lion's tail. + Animals + Reality TV + + + TVPG + + + + Wildlife ER + Brought Back from the Brink + RSPCA vets treat a mother and baby koala, while rescuers capture a barn owl. + Animals + + + TVPG + + + + Wildlife ER + A Koala Called Cavendish + A sick koala is up a tree, and RSPCA vets examine a frog's mystery bulge. + Animals + + + TVPG + + + + Animal ER: Code Red + Jaws, Paws & Claws + A rescued dog with a missing paw is a candidate for an artificial limb. + Animals + + + TV14 + + + + Wildlife ER + Brought Back from the Brink + RSPCA vets treat a mother and baby koala, while rescuers capture a barn owl. + Animals + + + TVPG + + + + Wildlife ER + A Koala Called Cavendish + A sick koala is up a tree, and RSPCA vets examine a frog's mystery bulge. + Animals + + + TVPG + + + + Animal ER: Code Red + Eye of the Tiger + Doctors at GCVS operate on a white Bengal tiger in need of a hysterectomy. + Animals + + + TV14 + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + DraftKings Sportsbook Report + DraftKings Sportsbook, a top-rated sportsbook app! + Paid Program + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Cook Family Size Meals Faster + Emeril's biggest air fryer oven combines 10 kitchen appliances into one endlessly versatile countertop cooker with 2 cooking zones and a full menu of custom presets. + Paid Program + + + + Get Fit with Total Gym, Risk Free + Get in the best shape of your life with the Total Gym 30 Day Risk-Free Trial Offer. + Paid Program + + + + H2O X5 - Super Powerful 5-In-1 Multi-Use Steam Cleaner + Kills 990f Bacteria, Viruses, and Germs with Steam! The 5-in-1 Lightweight, Fast, Powerful, And Completely Chemical Free Steam Cleaner! Lift and remove dirt and stains all around the home! + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + Paid Program + + + TV14 + + + + Secrets of the Zoo: North Carolina + Polar Bear Opposites + The zoo hopes for a polar bear pregnancy; two endangered red wolves go on a blind date; a young elephant gets some unusual treatment. + Animals + Reality TV + + + TV14 + + + + Secrets of the Zoo: North Carolina + Hiss and Hers + Zookeepers prepare for the birth of a white rhino; two young lions leave the pride. + Animals + Reality TV + + + TVPG + + + + Secrets of the Zoo: North Carolina + Giraffic Park + The zoo welcomes a new, timid giraffe to the herd; a pregnant bat prepares to give birth; an epileptic chimp gets a better life. + Animals + Reality TV + + + TVPG + + + + Secrets of the Zoo: North Carolina + Much Ado About Puffin + The vets are swamped as a gator needs blood drawn, and a lion requires a tooth extraction. + Animals + Reality TV + + + TVPG + + + + Secrets of the Zoo: North Carolina + Running Otter Time + Zoo vets treat pythons that need urgent medical care, and otters go to fish school. + Animals + Reality TV + + + TVPG + + + + The Incredible Dr. Pol + Doc Got Run Over by a Reindeer + Dr. Pol comes to the rescue when a baby reindeer emergency turns into a three-day dilemma. + Reality TV + Animals + + + TVPG + + + + The Incredible Dr. Pol + New Cats on the Block + Poisoned pups, sassy cats and some new feline neighbors keep the clinic busy. + Reality TV + Animals + + + TVPG + + + + The Incredible Dr. Pol + Bark 'n Stormy + A barking good time is had by all. + Reality TV + Animals + + + TV14 + + + + The Incredible Dr. Pol + A Twitch in Time + Emergencies don't follow regular business hours as the doctors work 24/7 to save lives. + Reality TV + Animals + + + TVPG + + + + The Incredible Dr. Pol + Meow-y Christmas + Santa Paws comes to town. + Reality TV + Animals + + + TVPG + + + + Secrets of the Zoo: North Carolina + Puffin But Trouble + Keepers hope for a long-awaited sand cat kitten, while a nervous puffin learns to swim. + Animals + Reality TV + + + TVPG + + + + Secrets of the Zoo: Down Under + Oh Rhi-No You Don't! + For the first time in 10 years, Taronga vets get up close to a silverback gorilla. + Animals + Reality TV + + + TVPG + + + + Secrets of the Zoo: Down Under + Project Platypus + The Taronga Zoo attempts to create history by successfully exporting two platypuses to America. + Animals + Reality TV + + + TVPG + + + + Secrets of the Zoo: Down Under + Bush Fire Rescue + As the largest bushfires on record devastate the country, Taronga Zoo vets take the battle to save Australian native wildlife to the front line. + Animals + Reality TV + + + TVPG + + + + Secrets of the Zoo: Down Under + Lemur Me Alone! + A pregnant ringtail lemur is badly injured in a fight and Taronga's vets have grave concerns for her unborn baby. + Animals + Reality TV + + + TVPG + + + + Secrets of the Zoo: North Carolina + Polar Bear Opposites + The zoo hopes for a polar bear pregnancy; two endangered red wolves go on a blind date; a young elephant gets some unusual treatment. + Animals + Reality TV + + + TV14 + + + + Secrets of the Zoo: North Carolina + Hiss and Hers + Zookeepers prepare for the birth of a white rhino; two young lions leave the pride. + Animals + Reality TV + + + TVPG + + + + Secrets of the Zoo: North Carolina + Giraffic Park + The zoo welcomes a new, timid giraffe to the herd; a pregnant bat prepares to give birth; an epileptic chimp gets a better life. + Animals + Reality TV + + + TVPG + + + + Secrets of the Zoo: North Carolina + Much Ado About Puffin + The vets are swamped as a gator needs blood drawn, and a lion requires a tooth extraction. + Animals + Reality TV + + + TVPG + + + + Secrets of the Zoo: North Carolina + Running Otter Time + Zoo vets treat pythons that need urgent medical care, and otters go to fish school. + Animals + Reality TV + + + TVPG + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + DraftKings Sportsbook Report + DraftKings Sportsbook, a top-rated sportsbook app! + Paid Program + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Coin Collecting with Mike Mezack + Learn about the wonderful world of numismatics with your host Mike Mezack and get the opportunity to build your own collection with some of the best deals around! + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Inogen Portable Oxygen - Oxygen Therapy that Moves with You + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Cook Family Size Meals Faster + Emeril's biggest air fryer oven combines 10 kitchen appliances into one endlessly versatile countertop cooker with 2 cooking zones and a full menu of custom presets. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + When Nature Calls + Bobcat in the Coop + Two pigeon-eating bobcats get in trouble in Tucson and must be relocated to prevent further destruction. + Reality TV + Animals + + + TV14 + + + + When Nature Calls + Snake, Rattle & Roll + Wild hogs in Florida must be relocated before they wreak havoc on homeowners properties. + Reality TV + Animals + + + TVPG + + + + When Nature Calls + Skunk in the Trunk + Car hopping skunks; a band of bats; an army of armadillos. + Reality TV + Animals + + + TVPG + + + + When Nature Calls + Between a Rock and a Raccoon + Venomous rattlesnakes, unruly raccoons and pack rats go on the loose across America. + Reality TV + Animals + + + TVPG + + + + Wildlife ER + Brought Back from the Brink + RSPCA vets treat a mother and baby koala, while rescuers capture a barn owl. + Animals + + + TVPG + + + + Wildlife ER + A Koala Called Cavendish + Senior vet Tim tutors new recruit Phil through an injured koala checkup; the team's solutions for animals plagued by the summer heat; vet Karina solves a puzzling frog case and releases an old friend who's ready to fly. + Animals + + + TVPG + + + + The Incredible Dr. Pol + Kung Fu Biting + The docs are bombarded with four dogs that have been attacked. + Reality TV + Animals + + + TVPG + + + + The Incredible Dr. Pol + You Can't Handle the Tooth + Dr. Michele shadows the regulars for a crash course in farm calls, Dr. Pol-style. + Reality TV + Animals + + + TV14 + + + + The Incredible Dr. Pol + A Plague on Both Your Horses + A nasty bug hits the clinic, causing multiple staffers to call in sick. + Reality TV + Animals + + + TV14 + + + + The Incredible Dr. Pol + She Works Hard for the Bunny + The vets go over the hills and through the woods of central Michigan from one emergency call to the next, racing to the rescue of some raucous alpacas, Luna the loveable therapy rabbit, and cute baby goat Twinkie. + Reality TV + Animals + + + TVPG + + + + The Incredible Dr. Pol + Swine and Dandy + The vets have their hands full doing what they do best: saving animals in distress. + Reality TV + Animals + + + TV14 + + + + The Incredible Dr. Pol + Something Pol, Something New + Winter makes a slow exit, but the animals come in fast at Pol Veterinary Services. + Reality TV + Animals + + + TV14 + + + + The Incredible Dr. Pol + The Foal Monty + Dr. Pol finds himself giving around-the-clock care with two emergency foalings. + Reality TV + Animals + + + TV14 + + + + The Incredible Dr. Pol + Game of Goats + Spring has sprung in central Michigan, and that means birthing season at Pol Veterinary Services. + Reality TV + Animals + + + TVPG + + + + The Incredible Dr. Pol + Cow I Met Your Mother + There is no shortage of mama drama as the docs handle cases with new moms. + Reality TV + Animals + + + TVPG + + + + The Incredible Dr. Pol + Another One Fights the Doc + Not even a kick to the head keeps Dr. Pol from coming to the rescue of his clients. + Reality TV + Animals + + + TV14 + + + + Critter Fixers: Country Vets + Choc Full of Puppies + The docs help a seizing dog and adjust a dizzy bunny. + Animals + Reality TV + + + TVPG + + + + Critter Fixers: Country Vets + The Lizard of Hodge + The docs pin a goose, unhook a dog and help a tegu. + Animals + Reality TV + + + TVPG + + + + Critter Fixers: Country Vets + Fish Out of Water + The docs at Critter Fixer tackle big horns and help a fish out of water. + Animals + Reality TV + + + TVPG + + + + Critter Fixers: Country Vets + Hogs and Hisses + The doctors rush to save a fox's leg, treat a black lab with a deadly disease and come face-to-face with venomous snakes. + Animals + Reality TV + + + TV14 + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Cook Family Size Meals Faster + Emeril's biggest air fryer oven combines 10 kitchen appliances into one endlessly versatile countertop cooker with 2 cooking zones and a full menu of custom presets. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + H2O X5 - Super Powerful 5-In-1 Multi-Use Steam Cleaner + Kills 990f Bacteria, Viruses, and Germs with Steam! The 5-in-1 Lightweight, Fast, Powerful, And Completely Chemical Free Steam Cleaner! Lift and remove dirt and stains all around the home! + Paid Program + + + + Kill Germs! Steam Clean! + Cleaning your floors just got easier! + Paid Program + Health + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Dr. Oakley, Yukon Vet + You Ain't Nothin' But a Hound Dog + Dr. Oakley treats a Sitka deer with a limp and a feisty alpaca-llama cross. + Reality TV + Animals + + + TV14 + + + + Dr. Oakley, Yukon Vet + Flip the Pig + Dr. Oakley learns to flip a pig and treats a dog at risk of losing a paw. + Reality TV + Animals + + + TV14 + + + + Dr. Oakley, Yukon Vet + This Little Piggy Had An Ouchie + Dr. Oakley treats a limping bull bison and a dog with a mammary mass. + Reality TV + Animals + + + TVPG + + + + Dr. Oakley, Yukon Vet + Even if it Quills Me + Dr. Oakley treats a rescued pig and a dog with a porcupine vendetta. + Reality TV + Animals + + + TVPG + + + + Dr. Oakley, Yukon Vet + Dances with Dachshunds + Dr. Oakley treats an off-the-grid dachshund and an emotional support pig. + Reality TV + Animals + + + TV14 + + + + Dr. Oakley, Yukon Vet + Hold Your Horses + Dr. Oakley escorts a horse on a boat and treats a bull with a limp. + Reality TV + Animals + + + TVPG + + + + Dr. Oakley, Yukon Vet + I'll Tell you Wattle Want + Dr. Oakley treats a horse with a limp and an overweight dog. + Reality TV + Animals + + + TVPG + + + + Dr. Oakley, Yukon Vet + Pups in the Oven + Dr. Oakley treats a dog with a bloated stomach and a cow with a lumpy jaw. + Reality TV + Animals + + + TVPG + + + + Dr. Oakley, Yukon Vet + Boatload of Bull + Dr. Oakley transports a bull by boat and sees chinchillas for a cuteness check. + Reality TV + Animals + + + TVPG + + + + Dr. Oakley, Yukon Vet + Grandma Knows Best + Dr. Oakley treats a limping bison and a litter of puppies struggling to survive. + Reality TV + Animals + + + TVPG + + + + Secrets of the Zoo: Down Under + Baby Bongo + Keepers try and solve the mystery of why Leslie the Andean condor doesn't want to fly; anxious zoo staff wait patiently for the long overdue birth of a rare baby bongo. + Animals + Reality TV + + + TVPG + + + + Secrets of the Zoo: Down Under + 103-Year-Old Tortoise + A behind-the-scenes look at what it takes to run the Taronga Zoo Sydney, Australia's largest zoo. + Animals + Reality TV + + + TVPG + + + + Nature & Knowledge on Demand + Instructional + + + + Nature & Knowledge on Demand + Instructional + + + + Nature & Knowledge on Demand + Instructional + + + + Nature & Knowledge on Demand + Instructional + + + + Nature & Knowledge on Demand + Instructional + + + + Nature & Knowledge on Demand + Instructional + + + + Nature & Knowledge on Demand + Instructional + + + + Nature & Knowledge on Demand + Instructional + + + + Nature & Knowledge on Demand + Instructional + + + + Nature & Knowledge on Demand + Instructional + + + + Nature & Knowledge on Demand + Instructional + + + + Nature & Knowledge on Demand + Instructional + + + + Nature & Knowledge on Demand + Instructional + + + + Nature & Knowledge on Demand + Instructional + + + + Nature & Knowledge on Demand + Instructional + + + + Nature & Knowledge on Demand + Instructional + + + + Nature & Knowledge on Demand + Instructional + + + + Nature & Knowledge on Demand + Instructional + + + + Nature & Knowledge on Demand + Instructional + + + + Nature & Knowledge on Demand + Instructional + + + + Nature & Knowledge on Demand + Instructional + + + + Nature & Knowledge on Demand + Instructional + + + + Nature & Knowledge on Demand + Instructional + + + + Nature & Knowledge on Demand + Instructional + + + + Nature & Knowledge on Demand + Instructional + + + + Nature & Knowledge on Demand + Instructional + + + + Nature & Knowledge on Demand + Instructional + + + + Bruins Overtime + A recap of today's Boston Bruins game, featuring highlights and interviews with players and coaches. Also: viewer calls. (live). + + + Bruins Postgame Final + A recap of the Boston Bruins game, the impact it has on the big picture, and how it shapes the team moving forward. (live). + 2018 + Pro Sports + Sports + + + NHL Hockey + Boston Bruins at Detroit Red Wings + Boston Bruins at Detroit Red Wings. From Little Caesars Arena. + 2023 + Pro Sports + + + Dirty Water TV + Exploring the best of New England's entertainment industry, from nightlife to music and dining. (new). + + + Behind the B + Season 11, Episode 1 + 2023 + Reality + Pro Sports + Sports + + + Behind the B + Season 11, Episode 2 + Reality + Pro Sports + Sports + + + Behind the B + Season 11, Episode 3 + Reality + Pro Sports + Sports + + + Red Sox Report + Joe Cronin: A Family Portrait + Former Red Sox shortstop (1935-45) and American League president Joe Cronin. + 2019 + Pro Sports + Sports + + + Red Sox Report + Fred Lynn + Former Red Sox outfielder (1974-80) Fred Lynn is featured. + 2019 + Pro Sports + Sports + + + World Poker Tour + WPT Seminole Hard Rock Poker Showdown - Part 4 (Week of 11/5) + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2023 + + TV-PG + + + + Hollywood Wrestling + Hollywood Wrestling, also known as Wrestling From Hollywood, was an American professional wrestling television series which originally aired locally in Los Angeles on KTLA in the early 1950s, and by 1952 nationally on the improvised Paramount Television Network. It was produced by Klaus Landsberg. + + + NHL Hockey + Boston Bruins at Detroit Red Wings + Boston Bruins at Detroit Red Wings. From Little Caesars Arena. + 2023 + Pro Sports + + + Bruins Overtime + A recap of today's Boston Bruins game, featuring highlights and interviews with players and coaches. Also: viewer calls. + + + Bruins Postgame Final + A recap of the Boston Bruins game, the impact it has on the big picture, and how it shapes the team moving forward. + 2018 + Pro Sports + Sports + + + The Drift + The best in boating lifestyles, marine products, and fabulous destinations. A must follow for boat builders, enthusiasts, and everyone else interested in learning about the exciting world of sailing. + 2021 + + + New Hampshire Life + Brewery Special + 2023 + Travel + + + New England Traveler + Discovering the spirit of New England through interesting and unique people and places. + + Greg Boghosian + + Documentary + Travel + + + A Fishing Story With Ronnie Green + Clay Guida + (new). + + Ronnie Green + + 2023 + Sports + + TV-G + + + + Lombardi Line + Former NFL executive Michael Lombardi shares his sports insight and wagering advice. (live). + Sports + + + Charlie Moore Outdoors + A variety of guests join New Englander Charlie Moore, the Mad Fisherman, on outdoors excursions. + Sports + + + Charlie Moore Outdoors + A variety of guests join New Englander Charlie Moore, the Mad Fisherman, on outdoors excursions. + Sports + + + Women's College Hockey + Maine at Boston College + 2023 + + + NHL Hockey + Boston Bruins at Detroit Red Wings + Boston Bruins at Detroit Red Wings. From Little Caesars Arena. + 2023 + Pro Sports + + + Behind the B + Season 11, Episode 3 + Reality + Pro Sports + Sports + + + Bruins Academy + Season 8, Episode 10 + + Charlie Moore + + 2023 + Pro Sports + Sports + + + Charlie Moore Outdoors + A variety of guests join New Englander Charlie Moore, the Mad Fisherman, on outdoors excursions. + Sports + + + Charlie Moore Outdoors + A variety of guests join New Englander Charlie Moore, the Mad Fisherman, on outdoors excursions. + Sports + + + Travel Moore with Anthony Moore + 2022 + + + Travel Moore with Anthony Moore + 2022 + + + Outside the Fame + Peter Gammons + 2023 + + + Golf Destination + September 2023 + 2023 + + + Dining Playbook with Billy and Jenny + A look at the New England food and dining scene, visiting favorite restaurants new and old, with visits from celebrity chefs and local athletes. + + Jenny Johnson + Billy Costa + + Food & Cooking + Sports + + TV-PG + + + + Red Sox Report + 2013 Revisited: Part 1 + Pro Sports + Sports + + + Red Sox Report + 2013 Revisited: Part 2 + Pro Sports + Sports + + + Charlie Moore Outdoors + A variety of guests join New Englander Charlie Moore, the Mad Fisherman, on outdoors excursions. + Sports + + + Dirty Water TV + Exploring the best of New England's entertainment industry, from nightlife to music and dining. + + + Dirty Water TV + Exploring the best of New England's entertainment industry, from nightlife to music and dining. + + + Women's College Hockey + Maine at Boston College + 2023 + + + Red Sox Report + Rick Burleson + Former Red Sox shortstop Rick Burleson (1974-80) is featured. + 2019 + Pro Sports + Sports + + + Red Sox Report + Frank Malzone + Former Red Sox third baseman Frank Malzone (1955-65). + 2019 + Pro Sports + Sports + + + Outdoor America + Hard Truths + Sports + + + Outdoor America + Raised Hunting + A family that uses hunting as a platform to teach ethics and values. + 2017 + Sports + + + Outdoor America + Scott Martin Challenge + 2022 + Sports + + + Outdoor America + Silver Kings + Fishing for silver kings. + 2017 + Sports + + + 1970 Bruins Stanley Cup Playoff Rewind + A game-by-game 50th anniversary look back at the Bruins' run to the 1970 Stanley Cup championship, sparked by Conn Smythe Trophy winner Bobby Orr. + 2020 + + + Follow the Money + A Las Vegas morning show discussing sports odds and point spreads, hosted by Pauly Howard and Mitch Moss. (live). + Sports + + + Men's College Soccer + Harvard at Dartmouth + 2023 + + + My Story + Charlie McAvoy + Bruins defenseman and BU product Charlie McAvoy is profiled. + 2020 + Sports + + + My Story + Matt Grzelcyk + Matt Grzelcyk shares his journey from growing up in Charlestown to playing for the Stanley Cup with his childhood team. + 2019 + Sports + + + NESN Lunch Line + Your midday home for all the best sports betting odds and analysis available. (live). + + + Dining Playbook with Billy and Jenny + A look at the New England food and dining scene, visiting favorite restaurants new and old, with visits from celebrity chefs and local athletes. + + Jenny Johnson + Billy Costa + + Food & Cooking + Sports + + TV-PG + + + + Wicked Bites + New Dining Destinations + + Pat Whitley + Mike Wendt + Scott Whitley + + 2023 + Food & Cooking + Sports + + TV-PG + + + + New Hampshire Life + Brewery Special + 2023 + Travel + + + College Football + Yale at Brown + Yale at Brown. From Brown Stadium. + 2023 + + TV-G + + + + Boston Globe + Interviews with Massachusetts gubernatorial candidates. (new). + + + Ultimate Betting Show + A roundtable discussion to all things sports betting. (live). + + + Bruins Academy + Season 8, Episode 10 + + Charlie Moore + + 2023 + Pro Sports + Sports + + + Behind the B + Season 11, Episode 3 + Reality + Pro Sports + Sports + + + Bruins Pregame + A Boston Bruins preview. (live). + + + Bruins Face-Off + A preview of Boston Bruins action, plus highlights and features. (live). + + + NHL Hockey + Boston Bruins at Dallas Stars + Boston Bruins at Dallas Stars. From American Airlines Center. (live). + 2023 + Pro Sports + + + Bruins Overtime + A recap of today's Boston Bruins game, featuring highlights and interviews with players and coaches. Also: viewer calls. (live). + + + Bruins Postgame Final + A recap of the Boston Bruins game, the impact it has on the big picture, and how it shapes the team moving forward. (live). + 2018 + Pro Sports + Sports + + + NHL Hockey + Boston Bruins at Dallas Stars + Boston Bruins at Dallas Stars. From American Airlines Center. + 2023 + Pro Sports + + + Bruins Overtime + A recap of today's Boston Bruins game, featuring highlights and interviews with players and coaches. Also: viewer calls. + + + Bruins Postgame Final + A recap of the Boston Bruins game, the impact it has on the big picture, and how it shapes the team moving forward. + 2018 + Pro Sports + Sports + + + My Story + Hampus Lindholm + Hampus Lindholm shares his journey from small town Sweden, to being picked sixth overall in 2012, before becoming a Bruins blueliner. + 2022 + Sports + + + Fight Sports: Boxing + Marco Huck vs. Hugo Hernan Garay + 2023 + + + Fight Sports: Boxing + Firat Arslan vs. Yoan Pablo Hernandez + 2023 + + + Bruins Overtime + A recap of today's Boston Bruins game, featuring highlights and interviews with players and coaches. Also: viewer calls. + + + Bruins Postgame Final + A recap of the Boston Bruins game, the impact it has on the big picture, and how it shapes the team moving forward. + 2018 + Pro Sports + Sports + + + Bruins Academy + Season 8, Episode 7 + + Charlie Moore + + 2023 + Pro Sports + Sports + + + Boston Globe + Interviews with Massachusetts gubernatorial candidates. + + + Follow the Money + A Las Vegas morning show discussing sports odds and point spreads, hosted by Pauly Howard and Mitch Moss. (live). + Sports + + + NHL Hockey + Boston Bruins at Dallas Stars + Boston Bruins at Dallas Stars. From American Airlines Center. + 2023 + Pro Sports + + + Bruins Overtime + A recap of today's Boston Bruins game, featuring highlights and interviews with players and coaches. Also: viewer calls. + + + Bruins Postgame Final + A recap of the Boston Bruins game, the impact it has on the big picture, and how it shapes the team moving forward. + 2018 + Pro Sports + Sports + + + NESN Lunch Line + Your midday home for all the best sports betting odds and analysis available. (live). + + + The Drift + The best in boating lifestyles, marine products, and fabulous destinations. A must follow for boat builders, enthusiasts, and everyone else interested in learning about the exciting world of sailing. + 2021 + + + A Fishing Story With Ronnie Green + Clay Guida + + Ronnie Green + + 2023 + Sports + + TV-G + + + + Bruins Pregame + A Boston Bruins preview. + + + NHL Hockey + Boston Bruins at Dallas Stars + Boston Bruins at Dallas Stars. From American Airlines Center. + 2023 + Pro Sports + + + Boston Globe + Interviews with Massachusetts gubernatorial candidates. (new). + + + Ultimate Betting Show + A roundtable discussion to all things sports betting. (live). + + + Inside BC Football + + + Huskies All Access + A monthly magazine show highlighting Connecticut athletics. (new). + + + Men's College Basketball + Albany at Massachusetts + Albany at Massachusetts. From William D. Mullins Memorial Center. (live). + 2023 + + TV-G + + + + UMass Sports Insider + The official show of UMass athletics, bringing viewers closer to coaches and student-athletes, featuring football, men's and women's basketball, hockey and many more varsity sports. + + + Charlie Moore Outdoors + A variety of guests join New Englander Charlie Moore, the Mad Fisherman, on outdoors excursions. + Sports + + + Charlie Moore Outdoors + A variety of guests join New Englander Charlie Moore, the Mad Fisherman, on outdoors excursions. + Sports + + + Travel Moore with Anthony Moore + 2022 + + + Travel Moore with Anthony Moore + 2022 + + + New England Traveler + Discovering the spirit of New England through interesting and unique people and places. + + Greg Boghosian + + Documentary + Travel + + + Men's College Basketball + Albany at Massachusetts + Albany at Massachusetts. From William D. Mullins Memorial Center. + 2023 + + TV-G + + + + Red Sox Report + The Legend of Fenway's Left Field + The team's official television show. Features the best video content from Fenway Park and across Red Sox Nation. + 2019 + Pro Sports + Sports + + + Red Sox Report + Fenway Park: A Powerful Influence + The team's official television show. Features the best video content from Fenway Park and across Red Sox Nation. + 2019 + Pro Sports + Sports + + + Fight Sports MMA + Mariusz Pudzianowski vs. Pawel Mikolajuw + + + Fight Sports: World Championship Kickboxing + Jonay Risco vs. Davit Kiria + From 2018: Jonay Risco vs. Davit Kiria in a featherweight clash. + 2020 + + + Championship Revisited: The 1972 Boston Bruins + Boston's 1972 Stanley Cup season is spotlighted. + 2011 + + + Bruins Academy + Season 8, Episode 8 + + Charlie Moore + + Pro Sports + Sports + + + Boston Globe + Interviews with Massachusetts gubernatorial candidates. + + + Follow the Money + A Las Vegas morning show discussing sports odds and point spreads, hosted by Pauly Howard and Mitch Moss. (live). + Sports + + + Men's College Basketball + Albany at Massachusetts + Albany at Massachusetts. From William D. Mullins Memorial Center. + 2023 + + TV-G + + + + My Story + Hampus Lindholm + Hampus Lindholm shares his journey from small town Sweden, to being picked sixth overall in 2012, before becoming a Bruins blueliner. + 2022 + Sports + + + My Story + Jim Montgomery + 2022 + Sports + + + NESN Lunch Line + Your midday home for all the best sports betting odds and analysis available. (live). + + + Fairways of Life with Matt Adams + Author and Golf Channel host Matt Adams brings you inside the ropes for exclusive interviews with all of golf's stars; equipment updates; instruction for your game; the latest headlines and more. + + Matt Adams + + Talk & Interview + Sports + + + Golf America + Golf courses around the country are spotlighted. + + + Golf Destination + September 2023 + 2023 + + + Sports Stars of Tomorrow + Sports Stars of Tomorrow is a United States nationally-syndicated sports television show about high school and college athletics. The show, which is hosted by well known college and NFL television analyst Charles Davis, takes its viewers across the country in search of the brightest young stars in sports. Sports Stars of Tomorrow is the only high-school sports program in national syndication. (new). + + Charles Davis + Pat Summerall + + Sports + + TV-G + + + + Perfect Game Weekly + Talking baseball development across the U.S., highlighting top players and programs through interviews and features. + + + The Card Life + The Card Life: Atlanta + + Brandon Verzal + Matt Strahm + + 2023 + Sports + + TV-PG + + + + Boston Globe + Interviews with Massachusetts gubernatorial candidates. (new). + + + Ultimate Betting Show + A roundtable discussion to all things sports betting. (live). + + + Contenders to Champions: The 2011 Bruins + 2021 + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + Cook Family Size Meals Faster + Emeril's biggest air fryer oven combines 10 kitchen appliances into one endlessly versatile countertop cooker with 2 cooking zones and a full menu of custom presets. + Paid Program + + + + Cook Family Size Meals Faster + Emeril's biggest air fryer oven combines 10 kitchen appliances into one endlessly versatile countertop cooker with 2 cooking zones and a full menu of custom presets. + Paid Program + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Cindy Crawford's Skin Secrets + Complete Age Maintenance System. + Paid Program + Lifestyle + + + TVPG + + + + Arthritis Causing Neck Pain? SOLUTION! + Manage and relieve head, neck and shoulder pain on your terms with DR-HO'S Neck Pain Pro! + Paid Program + Science + + + + Men's Health - All-Natural Secret for Prostate Health + Prosvent is a doctor formulated blend of rejuvenating herbs and nutrients that help protect overall prostate health. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Transform your home today, fast & easy! + Rotorazer is the world's greatest jigsaw, circular saw, band saw, tile saw and hacksaw all-in-one amazing easy to use tool! + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Arthritis Causing Neck Pain? SOLUTION! + Manage and relieve head, neck and shoulder pain on your terms with DR-HO'S Neck Pain Pro! + Paid Program + Science + + + + Arthritis Causing Neck Pain? SOLUTION! + Manage and relieve head, neck and shoulder pain on your terms with DR-HO'S Neck Pain Pro! + Paid Program + Science + + + + Arthritis Causing Neck Pain? SOLUTION! + Manage and relieve head, neck and shoulder pain on your terms with DR-HO'S Neck Pain Pro! + Paid Program + Science + + + + Arthritis Causing Neck Pain? SOLUTION! + Manage and relieve head, neck and shoulder pain on your terms with DR-HO'S Neck Pain Pro! + Paid Program + Science + + + + NEW Shark Deep Carpet Cleaner + 2-in-1 deep carpet cleaner and handheld spot & stain eliminator combines strong suction and high-pressure spray to deliver the best deep carpet cleaning and tough stain elimination in the market. + Paid Program + + + + Cindy Crawford's Skin Secrets + Complete Age Maintenance System. + Paid Program + Lifestyle + + + TVPG + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + NEW Shark Deep Carpet Cleaner + 2-in-1 deep carpet cleaner and handheld spot & stain eliminator combines strong suction and high-pressure spray to deliver the best deep carpet cleaning and tough stain elimination in the market. + Paid Program + + + + NEW Shark Deep Carpet Cleaner + 2-in-1 deep carpet cleaner and handheld spot & stain eliminator combines strong suction and high-pressure spray to deliver the best deep carpet cleaning and tough stain elimination in the market. + Paid Program + + + + NEW Shark Deep Carpet Cleaner + 2-in-1 deep carpet cleaner and handheld spot & stain eliminator combines strong suction and high-pressure spray to deliver the best deep carpet cleaning and tough stain elimination in the market. + Paid Program + + + + NEW Shark Deep Carpet Cleaner + 2-in-1 deep carpet cleaner and handheld spot & stain eliminator combines strong suction and high-pressure spray to deliver the best deep carpet cleaning and tough stain elimination in the market. + Paid Program + + + + NEW Shark Deep Carpet Cleaner + 2-in-1 deep carpet cleaner and handheld spot & stain eliminator combines strong suction and high-pressure spray to deliver the best deep carpet cleaning and tough stain elimination in the market. + Paid Program + + + + NEW Shark Deep Carpet Cleaner + 2-in-1 deep carpet cleaner and handheld spot & stain eliminator combines strong suction and high-pressure spray to deliver the best deep carpet cleaning and tough stain elimination in the market. + Paid Program + + + + Under Eye Bags? SOLUTION! + Plexaderm helps reduce Under Eye Bags, Dark Circles, and Wrinkles in just 10 minutes! + Paid Program + Lifestyle + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + Cindy Crawford's Skin Secrets + Complete Age Maintenance System. + Paid Program + Lifestyle + + + TVPG + + + + Vacuum & Mop at the SAME Time + The Shark Matrix Plus combines an ultra-powerful vacuum with Sonic Mopping for a complete clean from start to finish. + Paid Program + + + + Vacuum & Mop at the SAME Time + The Shark Matrix Plus combines an ultra-powerful vacuum with Sonic Mopping for a complete clean from start to finish. + Paid Program + + + + Vacuum & Mop at the SAME Time + The Shark Matrix Plus combines an ultra-powerful vacuum with Sonic Mopping for a complete clean from start to finish. + Paid Program + + + + Vacuum & Mop at the SAME Time + The Shark Matrix Plus combines an ultra-powerful vacuum with Sonic Mopping for a complete clean from start to finish. + Paid Program + + + + Vacuum & Mop at the SAME Time + The Shark Matrix Plus combines an ultra-powerful vacuum with Sonic Mopping for a complete clean from start to finish. + Paid Program + + + + Vacuum & Mop at the SAME Time + The Shark Matrix Plus combines an ultra-powerful vacuum with Sonic Mopping for a complete clean from start to finish. + Paid Program + + + + Perfect Meals in 15 Minutes + Meet the Ninja Combi - the only all-in-one multicooker, oven, air fryer and so much more! + Paid Program + Food + + + + Vacuum & Mop at the SAME Time + The Shark Matrix Plus combines an ultra-powerful vacuum with Sonic Mopping for a complete clean from start to finish. + Paid Program + + + + Grill, Smoke AND Air-Fry + Our Cyclonic Grilling Technology gives you food that's tender and juicy on the inside and char-grilled on every side. + Paid Program + Food + + + + NEW Shark Deep Carpet Cleaner + 2-in-1 deep carpet cleaner and handheld spot & stain eliminator combines strong suction and high-pressure spray to deliver the best deep carpet cleaning and tough stain elimination in the market. + Paid Program + + + + NEW Shark Deep Carpet Cleaner + 2-in-1 deep carpet cleaner and handheld spot & stain eliminator combines strong suction and high-pressure spray to deliver the best deep carpet cleaning and tough stain elimination in the market. + Paid Program + + + + NEW Shark Deep Carpet Cleaner + 2-in-1 deep carpet cleaner and handheld spot & stain eliminator combines strong suction and high-pressure spray to deliver the best deep carpet cleaning and tough stain elimination in the market. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + NewsNation Prime + America's source for unbiased news, where engaged citizens get news that represents the full range of perspectives across the country. + News + + + + NewsNation Prime + America's source for unbiased news, where engaged citizens get news that represents the full range of perspectives across the country. + News + + + + NewsNation Prime + America's source for unbiased news, where engaged citizens get news that represents the full range of perspectives across the country. + News + + + + NewsNation Prime + America's source for unbiased news, where engaged citizens get news that represents the full range of perspectives across the country. + News + + + + NewsNation Prime + America's source for unbiased news, where engaged citizens get news that represents the full range of perspectives across the country. + News + + + + Cuomo + Discussions of the day's news stories from multiple perspectives. + News + + + + NewsNation Special Report + One-on-one with leading UFO journalist George Knapp as he takes us through the years, from bombshell Bob Lazar allegations through sitting behind David Grusch at the historic UFO hearing. + News + + + + Dan Abrams Live + Analysis and opinion of the day's news. + News + + + + Blue Bloods + Meet the New Boss + Gormley tries to locate a former NYPD detective he believes may be a threat to Frank's safety; Erin navigates office politics when she chooses to reopen a closed case; Jamie is transferred to a new precinct with a lot of problems. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + Mind Games + Danny investigates a case involving a woman who shot her husband while she was drunk; Anthony defies Erin's orders to drop an assault case; Frank holds an emergency drill for his inner circle. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + God is For You + Pastor David Blunt, from Church on the Rock, shares insights into the Bible. + Specials + Religious + + + TVG + + + + Worship Anew + Scripture readings, inspiring messages, and hymns of the church. + Religious + + + + Tomorrow's World + Tomorrow's World - Make sense of your world through the pages of the Bible. + News + + + + The Jewish Jesus + Messianic Rabbi Kirt Schneider, a Jewish believer in Jesus, shares his insights into the Old and New Testaments, provides guidance on prayer and delivers the Word of God. + Religious + + + TVG + + + + In Search of the Lord's Way + Phil Sanders Bible-based message of God's grace. + Religious + + + + Through the Bible With Les Feldick + Religious programming. + Religious + + + TVG + + + + Catholic Mass + Religious service. + Religious + + + TVPG + + + + Manna-Fest With Perry Stone + In-depth study of the word of God. + Religious + + + TVG + + + + Blue Bloods + The Price of Justice + A traumatized young woman who was held hostage is reluctant to press charges; a prominent NYPD fundraiser becomes a PR nightmare for Frank; Jamie is offered a job on a TV show. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + Mob Rules + Danny and Frank enlist the help of Detective Anthony Abetemarco to get justice for Lt. Gormley after a mob attacks him outside his home; Eddie and Jamie witness a dishonest arrest; Danny looks for a witness to testify against a gang leader. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + Good Cop, Bad Cop + A stray bullet strikes an elderly woman in her home; Frank faces ridicule after he disciplines a disrespectful cop; Erin tries to help Anthony with a case that's personal to him. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + For the Community + Erin and Anthony try to keep a prominent community activist, who isn't a citizen, from being deported; Frank must determine if the NYPD should participate in the U.S. Marshals' high-profile raid of a local gang. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + Whistleblowers + Frank deals with a whistleblower, who claims to have evidence of abuse throughout the NYPD; Danny and Baez investigate a woman who was hit by a car. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + Guilt by Association + Danny has to work with Anthony to find the killer of a witness; Robert Lewis tries to force Frank to publicly support the Attorney General's investigation into the use of excessive force by police. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + Personal Business + A woman becomes the prime suspect in the murder of her ex-boyfriend; Eddie is jealous when Jamie allows a young woman to crash at his apartment; an off-duty sergeant fails to intercede during a robbery. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + Confessions + Frank is left with little information to find a missing boy when a conflicted priest refuses to break the seal of confession; Danny and Baez look into the death of a socialite with a secret life; Jamie and Eddie attend a wedding. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + Unbearable Loss + The son of an outspoken critic in the African-American community is murdered; a convicted felon's cause of death doesn't match the injuries he received when the prisoner transport van carrying him crashed. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + Genetics + Eddie and Jamie get involved in an adoption case between birth and adoptive parents and ask Erin to help settle the dispute; Frank investigates reports about NYPD cadets cheating on psychological exams; Jack plans to enlist in the Marines. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + NewsNation Prime + America's source for unbiased news, where engaged citizens get news that represents the full range of perspectives across the country. + News + + + + NewsNation Prime + America's source for unbiased news, where engaged citizens get news that represents the full range of perspectives across the country. + News + + + + NewsNation Prime + America's source for unbiased news, where engaged citizens get news that represents the full range of perspectives across the country. + News + + + + NewsNation Prime + America's source for unbiased news, where engaged citizens get news that represents the full range of perspectives across the country. + News + + + + NewsNation Prime + America's source for unbiased news, where engaged citizens get news that represents the full range of perspectives across the country. + News + + + + NewsNation Prime + America's source for unbiased news, where engaged citizens get news that represents the full range of perspectives across the country. + News + + + + Cuomo + Discussions of the day's news stories from multiple perspectives. + News + + + + Dan Abrams Live + Analysis and opinion of the day's news. + News + + + + Blue Bloods + Blackout + When New York City experiences a major blackout, police officers scramble to contain the resulting chaos; Frank uncovers some unpleasant truths about his department; Jamie and Eddie question the line between work and their relationship. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + Thicker Than Water + Danny and Baez investigate a murder attempt against a celebrated fertility doctor with a seemingly pristine reputation; Eddie must intervene in a Reagan family matter involving Danny's boys; Erin helps Anthony find justice after a date goes wrong. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + On Balance With Leland Vittert + The day's hottest subjects. + News + + + + Morning In America + NewsNation's live national morning newscast. + News + + + + Morning In America + NewsNation's live national morning newscast. + News + + + + Morning In America + NewsNation's live national morning newscast. + News + + + + Morning In America + NewsNation's live national morning newscast. + News + + + + NewsNation Live w/Marni Hughes + Hosted by award-winning, veteran journalist Marni Hughes. + News + + + + NewsNation Live w/Marni Hughes + Hosted by award-winning, veteran journalist Marni Hughes. + News + + + + NewsNation Live w/Marni Hughes + Hosted by award-winning, veteran journalist Marni Hughes. + News + + + + NewsNation Now With Nichole Berlie + The day's top news headlines, Nichole Berlie hosts. + News + + + + NewsNation Now With Nichole Berlie + The day's top news headlines, Nichole Berlie hosts. + News + + + + NewsNation Now With Connell McShane + Connell McShane presents reports and analysis of the day's national and international newsworthy events. + News + + + + NewsNation Now With Connell McShane + Connell McShane presents reports and analysis of the day's national and international newsworthy events. + News + + + + The Hill + Going beyond the headlines with the players and decisionmakers shaping the political landscape for Americans and their communities. + Political + + + + Elizabeth Vargas Reports + In-depth coverage of the biggest news stories of the day; NewsNation's home for exclusive and enterprise reporting; hosted live by Elizabeth Vargas. + News + + + + On Balance With Leland Vittert + The day's hottest subjects. + News + + + + Cuomo + Discussions of the day's news stories from multiple perspectives. + News + + + + Dan Abrams Live + Analysis and opinion of the day's news. + News + + + + Banfield + Ashleigh Banfield joins NewsNation with a news and talk show airing weeknights. + News + Talk Shows + + + + Cuomo + Discussions of the day's news stories from multiple perspectives. + News + + + + Dan Abrams Live + Analysis and opinion of the day's news. + News + + + + Banfield + Ashleigh Banfield joins NewsNation with a news and talk show airing weeknights. + News + Talk Shows + + + + Cuomo + Discussions of the day's news stories from multiple perspectives. + News + + + + Dan Abrams Live + Analysis and opinion of the day's news. + News + + + + Banfield + Ashleigh Banfield joins NewsNation with a news and talk show airing weeknights. + News + Talk Shows + + + + On Balance With Leland Vittert + The day's hottest subjects. + News + + + + Morning In America + NewsNation's live national morning newscast. + News + + + + Morning In America + NewsNation's live national morning newscast. + News + + + + Morning In America + NewsNation's live national morning newscast. + News + + + + Morning In America + NewsNation's live national morning newscast. + News + + + + NewsNation Live w/Marni Hughes + Hosted by award-winning, veteran journalist Marni Hughes. + News + + + + NewsNation Live w/Marni Hughes + Hosted by award-winning, veteran journalist Marni Hughes. + News + + + + NewsNation Live w/Marni Hughes + Hosted by award-winning, veteran journalist Marni Hughes. + News + + + + NewsNation Now With Nichole Berlie + The day's top news headlines, Nichole Berlie hosts. + News + + + + NewsNation Now With Nichole Berlie + The day's top news headlines, Nichole Berlie hosts. + News + + + + NewsNation Now With Connell McShane + Connell McShane presents reports and analysis of the day's national and international newsworthy events. + News + + + + NewsNation Now With Connell McShane + Connell McShane presents reports and analysis of the day's national and international newsworthy events. + News + + + + The Hill + Going beyond the headlines with the players and decisionmakers shaping the political landscape for Americans and their communities. + Political + + + + Elizabeth Vargas Reports + In-depth coverage of the biggest news stories of the day; NewsNation's home for exclusive and enterprise reporting; hosted live by Elizabeth Vargas. + News + + + + On Balance With Leland Vittert + The day's hottest subjects. + News + + + + Cuomo + Discussions of the day's news stories from multiple perspectives. + News + + + + Dan Abrams Live + Analysis and opinion of the day's news. + News + + + + Banfield + Ashleigh Banfield joins NewsNation with a news and talk show airing weeknights. + News + Talk Shows + + + + Cuomo + Discussions of the day's news stories from multiple perspectives. + News + + + + Dan Abrams Live + Analysis and opinion of the day's news. + News + + + + Banfield + Ashleigh Banfield joins NewsNation with a news and talk show airing weeknights. + News + Talk Shows + + + + Cuomo + Discussions of the day's news stories from multiple perspectives. + News + + + + Dan Abrams Live + Analysis and opinion of the day's news. + News + + + + Banfield + Ashleigh Banfield joins NewsNation with a news and talk show airing weeknights. + News + Talk Shows + + + + On Balance With Leland Vittert + The day's hottest subjects. + News + + + + Morning In America + NewsNation's live national morning newscast. + News + + + + Morning In America + NewsNation's live national morning newscast. + News + + + + Morning In America + NewsNation's live national morning newscast. + News + + + + Morning In America + NewsNation's live national morning newscast. + News + + + + NewsNation Live w/Marni Hughes + Hosted by award-winning, veteran journalist Marni Hughes. + News + + + + NewsNation Live w/Marni Hughes + Hosted by award-winning, veteran journalist Marni Hughes. + News + + + + NewsNation Live w/Marni Hughes + Hosted by award-winning, veteran journalist Marni Hughes. + News + + + + NewsNation Now With Nichole Berlie + The day's top news headlines, Nichole Berlie hosts. + News + + + + NewsNation Now With Nichole Berlie + The day's top news headlines, Nichole Berlie hosts. + News + + + + NewsNation Now With Connell McShane + Connell McShane presents reports and analysis of the day's national and international newsworthy events. + News + + + + NewsNation Now With Connell McShane + Connell McShane presents reports and analysis of the day's national and international newsworthy events. + News + + + + The Hill + Going beyond the headlines with the players and decisionmakers shaping the political landscape for Americans and their communities. + Political + + + + Elizabeth Vargas Reports + In-depth coverage of the biggest news stories of the day; NewsNation's home for exclusive and enterprise reporting; hosted live by Elizabeth Vargas. + News + + + + The Debrief + Join Scripps News live every weeknight for. + News + + + + Scripps News Tonight + Join Chance Seales and Christian Bryant, plus a team of Scripps News reporters, for a deep dive into the news of the day. + News + + + + Off Camera with Sam Jones + Dan Patrick + Sam Jones interviews famous celebrities in an easy-going, relaxed environment with no agenda. + Talk Shows + + + TVPG + + + + Off Camera with Sam Jones + Titus Welliver + Sam Jones interviews famous celebrities in an easy-going, relaxed environment with no agenda. + Talk Shows + + + TVPG + + + + Scripps News Timeline + Scripps News' Alexa Liacko takes you through the most interesting and important stories of the week. + News + + + + The Why + News + + + + In Real Life + Ukrainian Sniper + A Ukrainian sniper navigates a warzone and a pregnancy, carving out a place for more women on the frontlines. + Local + + + TV14 + + + + In Real Life + Voices of Nature, Part 1 + AI technology opens up new possibilities for scientists communicating with animals. + Local + + + TV14 + + + + Xploration Animal Science + Surprisingly Dangerous + The box turtle; the red lionfish. + Animals + Science + + + TVG + + + + Xploration Animal Science + The pufferfish; the hummingbird. + Animals + Science + + + TVG + + + + Xploration Awesome Planet + Animal Migrations + The paths of animal migrations; humpback whale research; elk; horseshoe crabs migrate to lay eggs. + Science + Instructional + + + TVPG + + + + Xploration Awesome Planet + Planet Rescue + People helping the planet; Sea Turtle Rescue and Rehabilitation; Trilogy Excursions do coral reef cleanups; Olympic National Park's temperate rainforests. + Science + Instructional + + + TVPG + + + + This Half Hour + A full hour of news with unique stories and top headlines from across the country. + News + + + + Good to Know + Discover inspirational stories, with real-life stories of everyday people who positively impact their communities. + Local + + + + The Race + Go on the road with Scripps News as we travel to communities across the country to have real conversations with voters about what's impacting their everyday lives and give you a true perspective on where each political party stands. + Local + + + TVPG + + + + Scripps News Timeline + Scripps News' Alexa Liacko takes you through the most interesting and important stories of the week. + News + + + + In Real Life + Voices of Nature, Part 2 + AI technology opens up new possibilities for scientists communicating with animals. + Local + + + TV14 + + + + In Real Life + Living With The Water + A new generation of American infrastructure aims to fight flooding and climate threats in innovative ways. + Local + + + + The Why + News + + + + The Why + News + + + + The Why + News + + + + Scripps News Timeline + Scripps News' Alexa Liacko takes you through the most interesting and important stories of the week. + News + + + + In Real Life + Stigma In The Deep South + In this follow-up to a GLAAD-Award winning documentary, In Real Life shows how public health officials are breaking down barriers and stigma in the fight against HIV transmission across the U.S. south. + Local + + + TV14 + + + + In Real Life + Dark Skies + Scripps News' Christian Bryant explores our relationship with light - from its impacts on wellness here on Earth to its shrouding of the stars above. + Local + + + + Scripps News Showcase + Accidental Climber + Jim Geiger, a 68-year-old man from Sacramento, Calif., attempts to become the oldest living American to summit Mount Everest. + News + + + + Scripps News Showcase + Banksy And The Rise Of Outlaw Art + Mysterious street artist Banksy uses his craft to create political and social statements. + News + + + + Scripps News Timeline + Scripps News' Alexa Liacko takes you through the most interesting and important stories of the week. + News + + + + Weekend Debrief + Get caught up on the day's news, with the context you need to be informed, not influenced. + News + + + TVPG + + + + In Real Life + After Twitter + For 15 years, Twitter was a global public forum that fueled revolutions, united communities, and changed the language of the internet. Elon Musk's Twitter takeover shook up Silicon Valley and upended the lives of the people who built Twitter. + Local + + + TV14 + + + + In Real Life + Stigma In The Deep South + In this follow-up to a GLAAD-Award winning documentary, In Real Life shows how public health officials are breaking down barriers and stigma in the fight against HIV transmission across the U.S. south. + Local + + + TV14 + + + + Bob Dylan: Busy Being Born + Few musicians have made an impact throughout the decades as seismic as Bob Dylan. Retrace his journey, from humble folk beginnings in Hibbing, to the bustling electric Greenwich Village. + Documentary + + + TV14 + + + + In Real Life + After Twitter + For 15 years, Twitter was a global public forum that fueled revolutions, united communities, and changed the language of the internet. Elon Musk's Twitter takeover shook up Silicon Valley and upended the lives of the people who built Twitter. + Local + + + TV14 + + + + In Real Life + Stigma In The Deep South + In this follow-up to a GLAAD-Award winning documentary, In Real Life shows how public health officials are breaking down barriers and stigma in the fight against HIV transmission across the U.S. south. + Local + + + TV14 + + + + Bob Dylan: Busy Being Born + Few musicians have made an impact throughout the decades as seismic as Bob Dylan. Retrace his journey, from humble folk beginnings in Hibbing, to the bustling electric Greenwich Village. + Documentary + + + TV14 + + + + The Why + News + + + + Off Camera with Sam Jones + Dan Patrick + Sam Jones interviews famous celebrities in an easy-going, relaxed environment with no agenda. + Talk Shows + + + TVPG + + + + Off Camera with Sam Jones + Titus Welliver + Sam Jones interviews famous celebrities in an easy-going, relaxed environment with no agenda. + Talk Shows + + + TVPG + + + + Scripps News Timeline + Scripps News' Alexa Liacko takes you through the most interesting and important stories of the week. + News + + + + The Why + News + + + + In Real Life + Ukrainian Sniper + A Ukrainian sniper navigates a warzone and a pregnancy, carving out a place for more women on the frontlines. + Local + + + TV14 + + + + In Real Life + Voices of Nature, Part 1 + AI technology opens up new possibilities for scientists communicating with animals. + Local + + + TV14 + + + + Xploration Animal Science + Surprisingly Dangerous + The box turtle; the red lionfish. + Animals + Science + + + TVG + + + + Xploration Animal Science + The pufferfish; the hummingbird. + Animals + Science + + + TVG + + + + Xploration Awesome Planet + Animal Migrations + The paths of animal migrations; humpback whale research; elk; horseshoe crabs migrate to lay eggs. + Science + Instructional + + + TVPG + + + + Xploration Awesome Planet + Planet Rescue + People helping the planet; Sea Turtle Rescue and Rehabilitation; Trilogy Excursions do coral reef cleanups; Olympic National Park's temperate rainforests. + Science + Instructional + + + TVPG + + + + This Half Hour + A full hour of news with unique stories and top headlines from across the country. + News + + + + Good to Know + Discover inspirational stories, with real-life stories of everyday people who positively impact their communities. + Local + + + + The Race + Go on the road with Scripps News as we travel to communities across the country to have real conversations with voters about what's impacting their everyday lives and give you a true perspective on where each political party stands. + Local + + + TVPG + + + + Scripps News Timeline + Scripps News' Alexa Liacko takes you through the most interesting and important stories of the week. + News + + + + In Real Life + Voices of Nature, Part 2 + AI technology opens up new possibilities for scientists communicating with animals. + Local + + + TV14 + + + + In Real Life + Living With The Water + A new generation of American infrastructure aims to fight flooding and climate threats in innovative ways. + Local + + + + The Why + News + + + + The Why + News + + + + The Why + News + + + + Scripps News Timeline + Scripps News' Alexa Liacko takes you through the most interesting and important stories of the week. + News + + + + In Real Life + Stigma In The Deep South + In this follow-up to a GLAAD-Award winning documentary, In Real Life shows how public health officials are breaking down barriers and stigma in the fight against HIV transmission across the U.S. south. + Local + + + TV14 + + + + In Real Life + Dark Skies + Scripps News' Christian Bryant explores our relationship with light - from its impacts on wellness here on Earth to its shrouding of the stars above. + Local + + + + Scripps News Showcase + Accidental Climber + Jim Geiger, a 68-year-old man from Sacramento, Calif., attempts to become the oldest living American to summit Mount Everest. + News + + + + Scripps News Showcase + Banksy And The Rise Of Outlaw Art + Mysterious street artist Banksy uses his craft to create political and social statements. + News + + + + Scripps News Timeline + Scripps News' Alexa Liacko takes you through the most interesting and important stories of the week. + News + + + + Weekend Debrief + Get caught up on the day's news, with the context you need to be informed, not influenced. + News + + + TVPG + + + + In Real Life + After Twitter + For 15 years, Twitter was a global public forum that fueled revolutions, united communities, and changed the language of the internet. Elon Musk's Twitter takeover shook up Silicon Valley and upended the lives of the people who built Twitter. + Local + + + TV14 + + + + In Real Life + Stigma In The Deep South + In this follow-up to a GLAAD-Award winning documentary, In Real Life shows how public health officials are breaking down barriers and stigma in the fight against HIV transmission across the U.S. south. + Local + + + TV14 + + + + Bob Dylan: Busy Being Born + Few musicians have made an impact throughout the decades as seismic as Bob Dylan. Retrace his journey, from humble folk beginnings in Hibbing, to the bustling electric Greenwich Village. + Documentary + + + TV14 + + + + In Real Life + After Twitter + For 15 years, Twitter was a global public forum that fueled revolutions, united communities, and changed the language of the internet. Elon Musk's Twitter takeover shook up Silicon Valley and upended the lives of the people who built Twitter. + Local + + + TV14 + + + + In Real Life + Stigma In The Deep South + In this follow-up to a GLAAD-Award winning documentary, In Real Life shows how public health officials are breaking down barriers and stigma in the fight against HIV transmission across the U.S. south. + Local + + + TV14 + + + + Bob Dylan: Busy Being Born + Few musicians have made an impact throughout the decades as seismic as Bob Dylan. Retrace his journey, from humble folk beginnings in Hibbing, to the bustling electric Greenwich Village. + Documentary + + + TV14 + + + + The Why + News + + + + PAW Patrol + Pups Great Race; Pups Take the Cake + The pups plan to race each other on Adventure Bay Race Day; Mr. Porter enters a cake competition. + + Owen Mason + Tristan Samuel + Gage Munroe + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save a Giant Plant; Pups Get Stuck + Mayor Goodway's gesture of goodwill gift grows out of control when it is planted in the wrong place; Marshall's fire truck becomes mysteriously magnetized. + + Jaxon Mercey + Max Calinescu + Drew Davis + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds an Ice Cream Shop; The Crew Fixes a Squeak + When a windy day derails construction on an ice cream shop, Rubble and Crew are on the chase; there's a mysterious squeak in City Hall, so Mayor Greatway asks Rubble and Charger to find and fix the squeak before her big speech. + + Leslie Adlam + Cory Doran + Luxton Handspiker + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Playground; The Crew Fixes a Roof + After Speed Meister builds an unsafe playground, Rubble and crew get creative and build a new one with old materials; the town Chili Cookaroo is threatened when City Hall's roof starts to cave in; luckily, the pups know just how to fix it. + + Liam McKenna + Leslie Adlam + Alberta Bolan + + Animated + Children + + + TVY + + + + PAW Patrol + Best of Ultimate Rescue + A collection of the PAW Patrol's Ultimate Rescue missions. + Animated + Children + + + TVY + + + + PAW Patrol + Liberty's Mountain Rescue; Pups Save a Flying Farmer Yumi + Liberty comes to visit the pups just in time to help save the Turbots and their radar doppler in a daring mountain rescue; when Farmer Al builds a windmill, the wind takes Farmer Yumi and Garby on a wild flight. + + Kai Harris + Justin Paul Kelly + Christian Corrao + + Animated + Children + + + TVY + + + + PAW Patrol + Mighty Pups vs. The Mayor of the Universe + Liberty and the Poms team up with the Mighty Pups to save Adventure Bay from being crushed by a giant, flying Top Hat. + + Kai Harris + Justin Paul Kelly + Christian Corrao + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Stop a Gold Finding Machine; Pups Help Mayor Humdinger Out of a Jam + The Paw Patrol springs into action when a digging machine goes out-of-control and takes Uncle Otis on a wild ride; Digi and Tal try to help Mayor Humdinger but leave the Mayor covered in jam, so the Pups must rescue him from hungry animals. + + Kai Harris + Justin Paul Kelly + Christian Corrao + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save the Bay; Pups Save a Goodway + Ryder and the PAW Patrol clean up an oil spill in the water near Adventure Bay; the PAW Patrol must help Mayor Goodway get a statue from the bottom of the bay. + + Owen Mason + Tristan Samuel + Gage Munroe + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds an Observatory; The Crew Builds a Zipline + The pups jump into action to build an observatory to help their friend River get a cool picture of a shooting star; after meeting Park Ranger Rose, the pups get stuck on a nature trail, but with Rubble and crew, there's always a solution. + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Beaver Home; The Crew Fixes a Road + When the pups find out a beaver is to blame for the power being out, they build it a new home to bring the power back. + + Leslie Adlam + Luxton Handspiker + Alessandro Pugiotto + + Animated + Children + + + TVY + + + + Bubble Guppies + The Fastest Feather in the Race! + It's Team Flightless versus cocky Amelia the peregrine falcon; though Penguin Nonny, Ostrich Oona, and Kiwi Goby can't fly, these birds of a feather flock together; teamwork must be enough for them to win the race. + + Jacob Bertrand + Teddy Walsh + Bailey Gambertoglio + + Animated + Children + + + TVY + + + + Bubble Guppies + A Giant Harvest Day! + Holiday Cooks Molly and Gil, on a mission to save the town's Harvest Day (Thanksgiving) feast, must retrieve a Golden Tomato from magical Tall Tale Farms; but first, their food knowledge is tested by three guardians. + + Jacob Bertrand + Teddy Walsh + Bailey Gambertoglio + + Animated + Children + + + TVY + + + + Team Umizoomi + Crazy Skates + Bot rolls all over Umi City when he puts on a pair of crazy skates. + + Madeleine Rose Yen + Ethan Kempner + Donovan Patton + + Animated + Children + + + TVY + + + + Team Umizoomi + Super Soap! + When Silly Bear is covered in glue, the team must deliver some Super Soap to help him get clean. + + Madeleine Rose Yen + Ethan Kempner + Donovan Patton + + Animated + Children + + + TVY + + + + Blaze and the Monster Machines + The Great Pizza Race + It's a head-to-head showdown when Blaze and Crusher enter the great pizza race. + + Nolan North + Dusan Brown + Angelina Wahler + + Animated + Children + + + TVY + + + + Blaze and the Monster Machines + Renewable Energy Racers + Blaze and his friends have renewable energy engines; when the Gas Guzzler steals everyone's gas, they'll have to use renewable energy to finish the race. + + Nolan North + Dusan Brown + Angelina Wahler + + Animated + Children + + + TVY + + + + Blaze and the Monster Machines + Sparkle's Big Rescue + When Crusher sends Blaze away with one of his latest cheats, Blaze's little sister Sparkle comes to save the day and bring her brother back. + + Nolan North + Dusan Brown + Angelina Wahler + + Animated + Children + + + TVY + + + + Blaze and the Monster Machines + Rocket Ski Rescue + When a scheme to cheat in a race with rocket skis backfires on Crusher, Blaze and Grammy set off on a rescue. + + Nolan North + Kevin Michael Richardson + Nat Faxon + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds an Ice Cream Shop; The Crew Fixes a Squeak + When a windy day derails construction on an ice cream shop, Rubble and Crew are on the chase; there's a mysterious squeak in City Hall, so Mayor Greatway asks Rubble and Charger to find and fix the squeak before her big speech. + + Leslie Adlam + Cory Doran + Luxton Handspiker + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Playground; The Crew Fixes a Roof + After Speed Meister builds an unsafe playground, Rubble and crew get creative and build a new one with old materials; the town Chili Cookaroo is threatened when City Hall's roof starts to cave in; luckily, the pups know just how to fix it. + + Liam McKenna + Leslie Adlam + Alberta Bolan + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save a Robosaurus; Pups Save a Film Festival + When a homemade robotic dinosaur comes to life, the pups must find him and bring him home; the pups are shooting their film festival entry until Daring Danny X cuts the action with his dangerous stunt. + + Elijha Hammill + Max Calinescu + Drew Davis + + Animated + Children + + + TVY + + + + PAW Patrol + Sea Patrol: Pups Save the Flying Diving Bell; Sea Patrol: Pups Save a Soggy Farm + Francois and Turbot learn an underwater volcano is going to erupt while Farmer Yumi and Mayor Goodway are scuba diving nearby; Farmer Al's farm is flooded. + + Jaxon Mercey + Justin Paul Kelly + Drew Davis + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Stop a Gold Finding Machine; Pups Help Mayor Humdinger Out of a Jam + The Paw Patrol springs into action when a digging machine goes out-of-control and takes Uncle Otis on a wild ride; Digi and Tal try to help Mayor Humdinger but leave the Mayor covered in jam, so the Pups must rescue him from hungry animals. + + Kai Harris + Justin Paul Kelly + Christian Corrao + + Animated + Children + + + TVY + + + + PAW Patrol + Liberty's Mountain Rescue; Pups Save a Flying Farmer Yumi + Liberty comes to visit the pups just in time to help save the Turbots and their radar doppler in a daring mountain rescue; when Farmer Al builds a windmill, the wind takes Farmer Yumi and Garby on a wild flight. + + Kai Harris + Justin Paul Kelly + Christian Corrao + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save Jake; Pups Save the Parade + The PAW Patrol must rescue Jake when his ankle gets stuck between some fallen rocks; when Alex puts too many balloons on Katie's bathtub float, it floats away. + + Owen Mason + Max Calinescu + Drew Davis + + Animated + Children + + + TVY + + + + PAW Patrol + Mission PAW: Quest for the Crown + Chase and the team get called to Barkingburg to keep an eye on the crown. + + Jaxon Mercey + Max Calinescu + Drew Davis + + Animated + Children + + + TVY + + + + Blue's Clues & You! + Blue's Wish Comes True! + Blue finds a fairy wand that can grant anyone their biggest wish, but he doesn't know the magic word; as Blue plays Blue's Clues to figure out the magic word, he goes on a magical chase through the Wishing Woods and meets the dandelion fairy. + + Traci Paige Johnson + Doug Murray + Jordana Blake + + Animated + Children + + + TVY + + + + Blue's Clues & You! + Knights of the Snack Table + Sir Joshalot and the Knights of the Snack Table are on an epic quest through the neighborhood to find a special treat for the afternoon snack feast; throughout their long journey, the knights demonstrate the most knightly of qualities-helping others. + + Traci Paige Johnson + Doug Murray + Jordana Blake + + Animated + Children + + + TVY + + + + Peppa Pig + Motorbiking; Sea Treasure; Monkey Has a Cough; Police Car; Fire Station Practice + Granny and Grandpa take Peppa and George camping; Peppa finds a message in a bottle; Mummy Pig shows Peppa how to wink; Police Officers Panda and Squirrel visit Peppa's playgroup; Today is the fire station practice day. + + Amelie Bea Smith + Richard Ridings + Morwenna Banks + + Animated + Children + + + TVY + + + + Peppa Pig + Children's Festival; Muddy Festival; World Book Day; Roman Day; Foggy Day + Peppa and her family go to the children's festival; World Book Day at playgroup; Peppa has fun dressing up; Peppa and her family get lost in the fog. + + Harley Bird + Richard Ridings + Morwenna Banks + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save a Jukebox; Pups Save a Mayor on a Wire + Mayor Humdinger steals a jukebox so he can play an annoying song all day long, but Chase and Rubble track it down to save the records; a hungry eagle causes Mayor Goodway's tightrope walking lesson to go awry, sending her down Jake's Mountain. + + Kai Harris + Justin Paul Kelly + Christian Corrao + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save a High Flying Hen; Pups Save a Sloth + After Chickaletta accidentally takes flight on a toy airplane, it's up to the team to rescue her; Mayor Humdinger mistakes a sloth for a monkey, racing to find it and cover up his blunder. + + Kai Harris + Justin Paul Kelly + Christian Corrao + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save a Pizza; Pups Save Skye + While delivering special pizza dough for a party, Alex and Mr. Porter get into an accident; a storm causes Skye to crash land in the snow while on her way to Jake's Mountain. + + Elijha Hammill + Max Calinescu + Drew Davis + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save the Kitty Rescue Crew; Pups Save an Ostrich + Mayor Humdinger creates fake emergencies for his kitties so they can appear better than the PAW Patrol; the Wingnuts get a new pet ostrich, but it gets lost on the trip home. + + Jaxon Mercey + Justin Paul Kelly + Drew Davis + + Animated + Children + + + TVY + + + + PAW Patrol + Best of Big Truck Pups + The PAW Patrol use their new big trucks and the help of their new pup pal Al to repair a dam before Adventure Bay is flooded; Ryder and the Pups team up with Al to save Adventure Bay's big bridge from collapsing. + + Kai Harris + Justin Paul Kelly + Christian Corrao + + Animated + Children + + + TVY + + + + PAW Patrol + Best Animal Rescues + The PAW Patrol searches for missing sheep; Ryder and Chase search for missing songbirds; Katie's kittens run amuck; Zuma goes on a wacky windsurfing water rescue; the pups help Carlos find his lost parrot; the PAW Patrol helps Priscilla the pony. + Animated + Children + + + TVY + + + + PAW Patrol + Mighty Pups vs. The Mayor of the Universe + Liberty and the Poms team up with the Mighty Pups to save Adventure Bay from being crushed by a giant, flying Top Hat. + + Kai Harris + Justin Paul Kelly + Christian Corrao + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Stop a Gold Finding Machine; Pups Help Mayor Humdinger Out of a Jam + The Paw Patrol springs into action when a digging machine goes out-of-control and takes Uncle Otis on a wild ride; Digi and Tal try to help Mayor Humdinger but leave the Mayor covered in jam, so the Pups must rescue him from hungry animals. + + Kai Harris + Justin Paul Kelly + Christian Corrao + + Animated + Children + + + TVY + + + + PAW Patrol + Liberty's Mountain Rescue; Pups Save a Flying Farmer Yumi + Liberty comes to visit the pups just in time to help save the Turbots and their radar doppler in a daring mountain rescue; when Farmer Al builds a windmill, the wind takes Farmer Yumi and Garby on a wild flight. + + Kai Harris + Justin Paul Kelly + Christian Corrao + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save the Bookmobile; Pups Save Heady Humdinger + When Ms. Marjorie brings her bookmobile to Everest and the kids of the mountains, Maynard accidentally sets the van rolling and goes off on a wild ride; Mayor Humdinger carves his face into the cliffs. + + Jaxon Mercey + Justin Paul Kelly + Drew Davis + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save the Balloon Pups; Pups Save the Spider Spies + When giant balloons float away from a parade, it's up to the pups to save the pup balloons, the parade and Mayor Humdinger; the Turbot cousins try to spot a rare spider but get stuck in its web. + + Joey Nijem + Justin Paul Kelly + Lukas Engel + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save an Antarctic Martian; Pups Save the Maze Explorers + Travelling Travis is on another great adventure when he lands in Antarctica but believes he's actually on Mars; Mr. Porter and Alex go on a sightseeing hike but get trapped inside a huge maze. + + Joey Nijem + Justin Paul Kelly + Kingsley Marshall + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Popcorn Café; The Crew Fixes a Slippery Mess + The crew switches to cleanup mode when construction on Café Carl's new popcorn restaurant pops out of control; a soapy accident causes slippery mayhem all over Builder Cove. + + Luxton Handspiker + Leslie Adlam + Alessandro Pugiotto + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Drive-In Movie Theater; The Crew Finds a Rainbow Treasure + When Mix and Motor's favorite TV star has a new movie playing in Builder Cove, the pups need to build a movie theater to watch it; Grandpa tells the pups about a buried treasure, and they find out the key to finding this treasure is teamwork. + + Luxton Handspiker + Leslie Adlam + Alberta Bolan + + Animated + Children + + + TVY + + + + PAW Patrol + Best of Rescue Knights + When Duke and Claw use a magic cauldron to put the people of Barkingburg to sleep, their plan backfires when the enchanted fog works on Sparks; it's up to the PAW Patrol to wake up the Dragon along with everyone else in town. + + Kai Harris + Justin Paul Kelly + Kingsley Marshall + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save Queen Cluck-Cluck; Pups Save a Desert Flounder + Mayor Goodway dreams she's traveled to the mysterious Cluck Cluck Island, a very strange land where Chickaletta is royalty; Traveling Travis' balloon gets caught on the Flounder. + + Beckett Hipkiss + Justin Paul Kelly + Kingsley Marshall + + Animated + Children + + + TVY + + + + PAW Patrol + Rubble and Wild in a Yarn of a Tail; Skye and Rory Flip It; Marshall and Leo Save the Ferris Wheel P + Rubble and Wild team up to stop a giant runaway yarn ball rolling through town; Marshall and Leo must rescue some critters stuck on a Ferris wheel. + + Kai Harris + Justin Paul Kelly + Kingsley Marshall + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save the Jungle Penguins; Pups Save a Freighter + When an ice floe carrying three penguins lands in the jungle, the pups must get the birds back to their frosty home; Daring Danny is locked out of the lighthouse Turbot left him to look after, with a freighter headed his way. + + Jaxon Mercey + Justin Paul Kelly + Lukas Engel + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save a Teeny Penguin; Pups Save the Cat Show + Everest and Jake try to rescue a little penguin and end up floating out to sea on a homemade bridge; Katie's kittens are all covered in mud and running amuck, so the pups must round them up before the Cat Show is ruined. + + Jaxon Mercey + Max Calinescu + Drew Davis + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Pig Barn; The Crew Builds a Giant Runway + A new farmer in town asks Rubble and crew to build a barn for her pig in time for the big Pig Party; Motor's super special birthday present gets delayed, and the pups realize Builder Cove's airport needs a bigger runway. + + Krystal Meadows + Alessandro Pugiotto + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a School; The Crew Builds a Waterway + The crew must finish construction before school starts; the pups need a construction solution to save Farmer Zoe's crops. + + Leslie Adlam + Krystal Meadows + Alessandro Pugiotto + + Animated + Children + + + TVY + + + + Bubble Guppies + The Big Rig Bandit! + When reckless hyena Spotty steals young elephant Eli from the savanna, Wildlife Rangers Zooli and Goby hop into their big rig to rescue him; when the big rig chase lands Spotty and Eli in danger, it's up to the Guppies to save the day. + + Jacob Bertrand + Teddy Walsh + Bailey Gambertoglio + + Animated + Children + + + TVY + + + + Bubble Guppies + The Kingdom of Laughs-a-Lot! + Jesters Goby and Gil arrive in the Kingdom of NeverLaugh, where King Grumpfish decrees that he'll outlaw laughter if no one can make him laugh before sundown. + + Jacob Bertrand + Teddy Walsh + Bailey Gambertoglio + + Animated + Children + + + TVY + + + + Team Umizoomi + The Wild West Toy Train Show + Milli, Geo and Bot must help their friend Ethan after the wind blows away his ticket to the Wild West Toy Train Show. + + Sophia Fox + Ethan Kempner + Donovan Patton + + Animated + Children + + + TVY + + + + Team Umizoomi + Counting Comet + The team must help a comet reach the launch pad of the Umi City rocket ship before it blasts off. + + Madeleine Rose Yen + Ethan Kempner + Donovan Patton + + Animated + Children + + + TVY + + + + Blaze and the Monster Machines + Dino Derby + Dinosaur Blaze is teaming up with his pal Zeg to compete in the Dino Derby. + + Nolan North + Dusan Brown + Angelina Wahler + + Animated + Children + + + TVY + + + + Blaze and the Monster Machines + Sparkle's Racing Badge + Blaze and his sister, Sparkle, team up to make it back to the Monster Dome in time for a big race. + + Nolan North + Dusan Brown + Angelina Wahler + + Animated + Children + + + TVY + + + + Blaze and the Monster Machines + Big Rig: Dolphin Delivery + Big Rig Blaze helps a dolphin named Flippy get back to his family in the ocean. + + Nolan North + Dusan Brown + Angelina Wahler + + Animated + Children + + + TVY + + + + Blaze and the Monster Machines + Sky Track + When Swoops the helicopter loses his rotor, Blaze and AJ head to the Sky Track to try and retrieve it. + + Nolan North + Dusan Brown + Angelina Wahler + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Popcorn Café; The Crew Fixes a Slippery Mess + The crew switches to cleanup mode when construction on Café Carl's new popcorn restaurant pops out of control; a soapy accident causes slippery mayhem all over Builder Cove. + + Luxton Handspiker + Leslie Adlam + Alessandro Pugiotto + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Drive-In Movie Theater; The Crew Finds a Rainbow Treasure + When Mix and Motor's favorite TV star has a new movie playing in Builder Cove, the pups need to build a movie theater to watch it; Grandpa tells the pups about a buried treasure, and they find out the key to finding this treasure is teamwork. + + Luxton Handspiker + Leslie Adlam + Alberta Bolan + + Animated + Children + + + TVY + + + + PAW Patrol + Mighty Pups vs. The Mayor of the Universe + Liberty and the Poms team up with the Mighty Pups to save Adventure Bay from being crushed by a giant, flying Top Hat. + + Kai Harris + Justin Paul Kelly + Christian Corrao + + Animated + Children + + + TVY + + + + PAW Patrol + Mission PAW: Pups Save a Royal Concert; Mission PAW: Pups Save the Princess' Pals + Luke Stars goes missing before his Royal Concert in Barkingburg, and Sweetie attempts to take over the event; animals overrun Barkingburg Castle while the Princess is away, forcing Ryder and the PAW Patrol to get them under control. + + Jaxon Mercey + Justin Paul Kelly + Drew Davis + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save a Freaky Pup-Day; Pups Save a Runaway Mayor + Chase and Chickaletta switch bodies and must learn to work together to return Cap'n Turbot's boat to the bay; Mayor Humdinger creates robotic pants to cheat at the Most Amazing Athlete Contest, but his invention soon goes haywire. + + Jaxon Mercey + Justin Paul Kelly + Lukas Engel + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save an Antarctic Martian; Pups Save the Maze Explorers + Travelling Travis is on another great adventure when he lands in Antarctica but believes he's actually on Mars; Mr. Porter and Alex go on a sightseeing hike but get trapped inside a huge maze. + + Joey Nijem + Justin Paul Kelly + Kingsley Marshall + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save an Ace; Pups Save a Wedding + Skye and the Pups must save a stunt pilot and her plane; the Pups help Farmer Yumi prepare for her wedding day. + + Owen Mason + Max Calinescu + Drew Davis + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save Walinda; Pups Save a Big Bone + The PAW Patrol must come to the rescue when Wally's special friend, Walinda, gets tangled in an anchor chain; Cap'n Turbot and his cousin are in the middle of an archaeological dig when the cliff they are on collapses all around them. + + Elijha Hammill + Max Calinescu + Drew Davis + + Animated + Children + + + TVY + + + + Peppa Pig + Not Very Well; Lunch; Mummy Pig at Work; Gardening; School Play + Peppa does not feel well; Peppa visits Granny and Grandpa Pig; Mummy Pig works on her computer; Peppa and George help Grandpa in the garden; Peppa's play group puts on a play. + + Lily Snowden-Fine + Morwenna Banks + Richard Ridings + + Animated + Children + + + TVY + + + + Peppa Pig + Golden Boots + Peppa loves jumping up and down in puddles wearing her special Golden Boots; unfortunately, Mrs Duck also takes a liking to Peppa's boots, and runs away with them. + Animated + Children + + + TVY + + + + Bubble Guppies + Zooli's New Pet! + Excited that Zooli is getting a new pet, the Guppies try to guess what kind of animal it is; Zooli loves many creatures, so her new pet could be anything in the animal kingdom. + + Jacob Bertrand + Teddy Walsh + Bailey Gambertoglio + + Animated + Children + + + TVY + + + + Bubble Guppies + The New Year's Dragon! + The Guppies are excited for China's Lunar New Year Festival, where they will operate a giant festival dragon the the grand parade. + + Jacob Bertrand + Teddy Walsh + Bailey Gambertoglio + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Bridge + Rubble and his construction pup family gear up to build a bridge, only to find the villainous Speed Meister has a different idea; it's up to the Rubble and crew to work together and save the day by building a new, safe bridge to Builder Cove. + + Leslie Adlam + Cory Doran + Luxton Handspiker + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Library Tea Shop; The Crew Builds a Dance Floor + Construction on the first Builder Cove library is abuzz with bees; Grandpa Gravel teaches Charger all his best moves for the big dance contest. + Animated + Children + + + TVY + + + + Blue's Clues & You! + Rock On, Rainbow Puppy! + Going to New York City to see Rainbow Puppy perform; playing Blue's Clues to figure out what instrument is missing from the track before her concert begins. + + Traci Paige Johnson + Doug Murray + Jordana Blake + + Animated + Children + + + TVY + + + + Blue's Clues & You! + Night at the Blueseum + It's the night of the big Blueseum opening, and just as Blue's masterpiece is unveiled, they discover that it's missing; Blue's Clues must crack this caper and get Blue's painting back. + + Traci Paige Johnson + Doug Murray + Jordana Blake + + Animated + Children + + + TVY + + + + Gabby's Dollhouse + Pandy's Birthday + In honor of Pandy's birthday, Gabby prepares a heartfelt gift and the dollhouse friends celebrate with a series of surprises. + + Laila Lockhart Kraner + Tucker Chandler + Juliet Donenfeld + + Animated + Children + + + TVY + + + + Gabby's Dollhouse + A Knight's Tail + Gabby and Pandy become knights in training and practice bravery by crossing a moat, mixing potions and more. + + Laila Lockhart Kraner + Tucker Chandler + Juliet Donenfeld + + Animated + Children + + + TVY + + + + Peppa Pig + Parachute Jump; Miss Rabbit's Taxi; Playing Pretend; Scooters; George's Racing Car + The school roof is leaking, so Mummy Pig does a parachute jump to raise money to fix it; Miss Rabbit spends the day picking people up and dropping people off in her job as taxi driver. + + Richard Ridings + Morwenna Banks + Cecily Bloom + + Animated + Children + + + TVY + + + + Peppa Pig + Peppa Goes to Paris; Grandpa Pig's Pond; Once Upon a Time; Super Potato; Playgroup Star + Peppa and family go on a trip to Paris to meet Delphine Donkey and her family; the Donkey family take Peppa and family to the top of the Eiffel Tower, forcing Daddy Pig to face his fear of heights. + Animated + Children + + + TVY + + + + Bubble Guppies + Winter Sports Chompetition! + Gil and Bubble Puppy are competing in the Winter Sports Chompetition, a competition for athletes and their dogs; they hope to stop reigning champs Coldsnap and his dog Mr. Husky from cheating to win the gold. + + Jacob Bertrand + Teddy Walsh + Bailey Gambertoglio + + Animated + Children + + + TVY + + + + Bubble Guppies + Get Ready for School! + Oona's friend is worried about his first day of school; the guppies reveal that school is a great place to learn, play and meet new friends. + + Jacob Bertrand + Teddy Walsh + Bailey Gambertoglio + + Animated + Children + + + TVY + + + + PAW Patrol + Sea Patrol: Pups Save a Shark; Sea Patrol: Pups Save the Pier + Humdinger makes a robotic shark to scare everyone away from the beach; the pups come to the rescue when the pier has a broken support post. + + Jaxon Mercey + Max Calinescu + Drew Davis + + Animated + Children + + + TVY + + + + PAW Patrol + Sea Patrol: Pirate Pups to the Rescue + Carlos and Tracker are stranded on an island while searching for buried treasure. + + Jaxon Mercey + Max Calinescu + Drew Davis + + Animated + Children + + + TVY + + + + PAW Patrol + Sea Patrol: Pups Save a Frozen Flounder; Sea Patrol: Pups Save a Narwhal + Cap'n Turbot's boat gets frozen in the Arctic ice; the pups use the Sea Patroller to help guide a lost narwhal back home. + + Jaxon Mercey + Max Calinescu + Drew Davis + + Animated + Children + + + TVY + + + + PAW Patrol + Sea Patrol: Pups Save Puplantis + Sid Swashbuckle the Pirate and his first pup mate, Arrby, steal the giant pearl-making shell that gives Puplantis its magic. + + Jaxon Mercey + Max Calinescu + Drew Davis + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Big Bike Shop; The Crew Builds a Super Tub + Rubble and the pups work to build a big bike shop in time for the Bike Festival, unless Speed Meister beats them to it; when Motor won't take a bath before their family photo, it's up to Rubble and the pups to find a construction solution. + + Leslie Adlam + Cory Doran + Luxton Handspiker + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Car Wash; The Crew Plans Grandpa Day + Mayor Greatway needs her muddy motorcycle cleaned fast, so Wheeler and the pups jump into action to build a solution before the big race; it's Grandpa Gravel's special day, but when the pups are needed, they have to change their Grandpa Day plans. + + Leslie Adlam + Luxton Handspiker + Alessandro Pugiotto + + Animated + Children + + + TVY + + + + PAW Patrol + Mighty Pups vs. The Big Chill + Harold creates a ray that can freeze things instantly, it goes awry and sends a giant ice ball toward Adventure Bay. + + Kai Harris + Justin Paul Kelly + Christian Corrao + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save a Bat Family; Pups Save a Mud Monster + The PAW Patrol works to free a bat family after a rock slide traps them inside their cave; snowboarders on Jake's Mountain become stuck on a broken chairlift while a monster is on the loose. + + Jaxon Mercey + Justin Paul Kelly + Lukas Engel + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save a Rocket Roller Skater; Pups Save Ryder's Surprise + A mix-up delivery leads to Ms. Marjorie and Danny speeding out of control in Adventure Bay; the Pups must rescue them; Ryder's present ends up in the jungle; Carlos is trapped in a jungle gym. + + Joey Nijem + Justin Paul Kelly + Kingsley Marshall + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save a Tour Bus; Pups Save Midnight at the Museum + Mayor Humdinger's tour bus goes out of control when he tries to bring tourists to Foggy Bottom; a fun museum sleepover is interrupted when Alex and the mini-patrol go missing, and Mayor Goodway gets stranded on a T-Rex. + + Joey Nijem + Justin Paul Kelly + Kingsley Marshall + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save Luke Stars; Pups Save Chicken Day + When Luke Stars gets stuck on a ledge, Ryder and Marshall rush to the rescue; Mayor Goodway's big plans for Chicken Day become threatened when the Chicken of Honor, Chickaletta, mysteriously disappears. + + Jaxon Mercey + Justin Paul Kelly + Drew Davis + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save the Butterflies; Pups Save an Underground Chicken + Chickaletta is stuck on a runaway drone and mysterious butterflies cause chaos all around Adventure Bay; Mayor Humdinger steals the statue of Chickaletta. + + Jaxon Mercey + Justin Paul Kelly + Drew Davis + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Bridge + Rubble and his construction pup family gear up to build a bridge, only to find the villainous Speed Meister has a different idea; it's up to the Rubble and crew to work together and save the day by building a new, safe bridge to Builder Cove. + + Leslie Adlam + Cory Doran + Luxton Handspiker + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Library Tea Shop; The Crew Builds a Dance Floor + Construction on the first Builder Cove library is abuzz with bees; Grandpa Gravel teaches Charger all his best moves for the big dance contest. + Animated + Children + + + TVY + + + + PAW Patrol + Mighty Pups vs. The Big Chill + Harold creates a ray that can freeze things instantly, it goes awry and sends a giant ice ball toward Adventure Bay. + + Kai Harris + Justin Paul Kelly + Christian Corrao + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save a White Wolf; Pups Save a Wrong-Way Explorer + After a sudden snowstorm, Everest cares for a white wolf cub as they work together to help the PAW Patrol find them; famous wrong-way explorer Travelling Travis accidentally takes Chickaletta to the North Pole, where they run into some crocodiles. + + Joey Nijem + Justin Paul Kelly + Lukas Engel + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save a Manatee; Pups Save Breakfast + Farmer Al and Farmer Yumi need help from the PAW Patrol to a get a manatee to the swamp; Mr. Porter and Alex get into a sticky situation involving maple syrup. + + Jaxon Mercey + Justin Paul Kelly + Lukas Engel + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save the Mail; Pups Save a Frog Mayor + When the postman's truck gets stuck in the mud, the mail is stuck in a tree; Mayor Goodway turns into a frog. + + Jaxon Mercey + Max Calinescu + Drew Davis + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Skate Park; The Crew Builds a Tunnel + The pups find out Auntie Crane is a secret skateboarding star, but while building a surprise skatepark, they have to fix a cement mix mishap; Charger's favorite singer, Sierra Sparkle, is coming to town. + + Luxton Handspiker + Michela Luci + Alessandro Pugiotto + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds an Ice Cream Shop; The Crew Fixes a Squeak + When a windy day derails construction on an ice cream shop, Rubble and Crew are on the chase; there's a mysterious squeak in City Hall, so Mayor Greatway asks Rubble and Charger to find and fix the squeak before her big speech. + + Leslie Adlam + Cory Doran + Luxton Handspiker + + Animated + Children + + + TVY + + + + Bubble Guppies + Zooli's New Pet! + Excited that Zooli is getting a new pet, the Guppies try to guess what kind of animal it is; Zooli loves many creatures, so her new pet could be anything in the animal kingdom. + + Jacob Bertrand + Teddy Walsh + Bailey Gambertoglio + + Animated + Children + + + TVY + + + + Bubble Guppies + The New Year's Dragon! + The Guppies are excited for China's Lunar New Year Festival, where they will operate a giant festival dragon the the grand parade. + + Jacob Bertrand + Teddy Walsh + Bailey Gambertoglio + + Animated + Children + + + TVY + + + + Team Umizoomi + The Dinosaur Museum Mishap + When a thunderstorm frightens the dinosaurs, the team must find them and return them to the museum before the dinosaur show. + + Sophia Fox + Ethan Kempner + Donovan Patton + + Animated + Children + + + TVY + + + + Team Umizoomi + Playground Heroes + The team must clean up the playground after a storm leaves it in disarray. + + Sophia Fox + Ethan Kempner + Donovan Patton + + Animated + Children + + + TVY + + + + Blaze and the Monster Machines + The Snow Spectacular + Blaze and AJ help a truck named Snowbie get home in time for the Great Snowball Fight. + + Nolan North + Dusan Brown + Angelina Wahler + + Animated + Children + + + TVY + + + + Blaze and the Monster Machines + Super Wheels vs. The Bubblemaker + When the Bubblemaker starts trapping everything in his trouble bubbles, Blaze and Sparkle have to become superheroes to save Axle City. + + Nolan North + Dusan Brown + Angelina Wahler + + Animated + Children + + + TVY + + + + Blaze and the Monster Machines + Construction Crew to the Rescue + When Crusher and Pickle become trapped at the top of a tall, rickety tower, Blaze, Stripes and Starla transform into awesome construction vehicles to build a way down. + + Nolan North + Kevin Michael Richardson + Nat Faxon + + Animated + Children + + + TVY + + + + Blaze and the Monster Machines + Epic Sail + Crusher and Pickle challenge Blaze and the others to a sailboat race, but Crusher's attempt at cheating shipwrecks both teams. + + Nolan North + Dusan Brown + Angelina Wahler + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Big Bike Shop; The Crew Builds a Super Tub + Rubble and the pups work to build a big bike shop in time for the Bike Festival, unless Speed Meister beats them to it; when Motor won't take a bath before their family photo, it's up to Rubble and the pups to find a construction solution. + + Leslie Adlam + Cory Doran + Luxton Handspiker + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Car Wash; The Crew Plans Grandpa Day + Mayor Greatway needs her muddy motorcycle cleaned fast, so Wheeler and the pups jump into action to build a solution before the big race; it's Grandpa Gravel's special day, but when the pups are needed, they have to change their Grandpa Day plans. + + Leslie Adlam + Luxton Handspiker + Alessandro Pugiotto + + Animated + Children + + + TVY + + + + PAW Patrol + Sea Patrol: Pups Save a Shark; Sea Patrol: Pups Save the Pier + Humdinger makes a robotic shark to scare everyone away from the beach; the pups come to the rescue when the pier has a broken support post. + + Jaxon Mercey + Max Calinescu + Drew Davis + + Animated + Children + + + TVY + + + + PAW Patrol + Sea Patrol: Pirate Pups to the Rescue + Carlos and Tracker are stranded on an island while searching for buried treasure. + + Jaxon Mercey + Max Calinescu + Drew Davis + + Animated + Children + + + TVY + + + + PAW Patrol + Sea Patrol: Pups Save a Frozen Flounder; Sea Patrol: Pups Save a Narwhal + Cap'n Turbot's boat gets frozen in the Arctic ice; the pups use the Sea Patroller to help guide a lost narwhal back home. + + Jaxon Mercey + Max Calinescu + Drew Davis + + Animated + Children + + + TVY + + + + PAW Patrol + Sea Patrol: Pups Save Puplantis + Sid Swashbuckle the Pirate and his first pup mate, Arrby, steal the giant pearl-making shell that gives Puplantis its magic. + + Jaxon Mercey + Max Calinescu + Drew Davis + + Animated + Children + + + TVY + + + + PAW Patrol + Pups and the Beanstalk; Pups Save the Turbots + Ryder and the pups must keep Giant Alex busy so that he does not cause damage in Adventure Bay; the PAW Patrol must rescue Cap'n Turbot's cousin. + + Owen Mason + Tristan Samuel + Gage Munroe + + Animated + Children + + + TVY + + + + PAW Patrol + Pup Pup Boogie; Pups in a Fog + Rubble hurts his paw while trying to fix the train tracks; Ryder and the PAW Patrol must fix the bulb in the Adventure Bay lighthouse. + + Owen Mason + Tristan Samuel + Gage Munroe + + Animated + Children + + + TVY + + + + Peppa Pig + Work and Play; Washing; The Camper Van; The Library; Pedro's Cough + Peppa and Suzy learn about work; Daddy Pig's clean shirt gets muddy; Peppa's family go on holiday in a special van; Daddy Pig keeps a library book for too long; Pedro has a cough. + + Harley Bird + Morwenna Banks + Richard Ridings + + Animated + Children + + + TVY + + + + Peppa Pig + Pedro the Cowboy; Peppa & George's Garden; The Flying Vet; International Day; Potato City + Pedro Pony pretends to be a cowboy; Grandpa Pig gives the children seeds for their garden; nearly all of the animals need Dr. Hamster's help on the same day; Peppa and her friends dress up; Peppa and her family visit a new theme park. + + Harley Bird + Morwenna Banks + Richard Ridings + + Animated + Children + + + TVY + + + + Bubble Guppies + Bring on the Bugs! + The Guppies march with all different kinds of bugs in the Big Bug Parade. + + Zach Gordon + Brianna Gentilella + Angelina Wahler + + Animated + Children + + + TVY + + + + Bubble Guppies + The Legend of Pinkfoot! + The Guppies hear a spooky legend while on a camping trip. + + Zach Gordon + Brianna Gentilella + Angelina Wahler + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew and Marshall Build a Fire Station + Rubble and Crew build Builder Cove's first ever Fire Station, complete with an inspection from PAW Patrol's Marshall; when Speed Meister's sneaky sabotage traps Marshall's Fire Truck, the pups work together to put out a fire construction-style. + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Splash Park; The Crew Builds a Playroom + The pups have to get creative to cool down; the crew builds a playroom for Lucas and Lily, but a visitor causes complications. + + Leslie Adlam + Alessandro Pugiotto + + Animated + Children + + + TVY + + + + Blue's Clues & You! + Rainbow Puppy's Skidoo Adventure + Josh and Blue have a playdate with Rainbow Puppy and play a special game to figure where she wants to go. + + Traci Paige Johnson + Doug Murray + Jordana Blake + + Animated + Children + + + TVY + + + + Blue's Clues & You! + Building With Blue + Blue and Magenta are building something special, and viewers need to play Blue and Magenta's Clues to figure it out; while looking for clues, they fix and build things with their handy-dandy tools. + + Traci Paige Johnson + Doug Murray + Jordana Blake + + Animated + Children + + + TVY + + + + Gabby's Dollhouse + Kitty Cat Cam + Fun is a snapshot away, as Gabby and Pandy set out to take a group photo and make time for a picture-perfect scavenger hunt. + + Laila Lockhart Kraner + Tucker Chandler + Juliet Donenfeld + + Animated + Children + + + TVY + + + + Gabby's Dollhouse + Mixed-Up Dollhouse + A sparkly mailbox surprise leads to a mysterious dollhouse mix-up; Gabby and the kitties must find a fix. + + Laila Lockhart Kraner + Tucker Chandler + Juliet Donenfeld + + Animated + Children + + + TVY + + + + Peppa Pig + Captain Daddy Pig; The Power Cut; Bouncy Ball; Stars; Daddy Pig's Birthday + Peppa's family spends a day on the river; the lights go out at Peppa's house; Peppa and George play with a bouncy ball; the sky is full of stars at night; the family celebrates Daddy Pig's birthday. + + Cecily Bloom + Morwenna Banks + Richard Ridings + + Animated + Children + + + TVY + + + + Peppa Pig + The Queen; Perfume; Mirrors; The Olden Days; Mr. Bull in a China Shop + Peppa and her friends accompany Miss Rabbit to the palace to meet the queen; Peppa experiments with flowers; George has fun looking in the mirror; Mr. Bull accidentally breaks his delicate teapot. + Animated + Children + + + TVY + + + + Bubble Guppies + Puddleball! + When rain spoils a game of kickball, Gil invents a new game; Bubble Puppy must overcome his fear of thunder to save the game. + + Jacob Bertrand + Teddy Walsh + Bailey Gambertoglio + + Animated + Children + + + TVY + + + + Bubble Guppies + Fruit Camp! + Deema must turn over a new leaf and try broccoli if she wants to earn her broccoli badge at scout troop initiation. + + Jacob Bertrand + Teddy Walsh + Bailey Gambertoglio + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Go All Monkey; Pups Save a Hoot + An escaped monkey leads the PAW Patrol on a chase through Adventure Bay; the PAW Patrol saves a baby owl and reunites him with his mother. + + Owen Mason + Tristan Samuel + Gage Munroe + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save a Friend; Pups Save a Stowaway + When Marshall begins to feel like his clumsy ways are ruining his friends' fun, he decides to take a break from the PAW Patrol and goes off to the woods; Cali becomes an unsuspecting stowaway when she is accidentally packed up into the Paw Patroller. + + Owen Mason + Max Calinescu + Drew Davis + + Animated + Children + + + TVY + + + + PAW Patrol + Ultimate Rescue: Pups Save the Royal Kitties + When the Royal Kitties are kidnapped on their way to Adventure Bay for a special visit, Ryder needs all the pups to help Chase investigate the case. + + Jaxon Mercey + Justin Paul Kelly + Drew Davis + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save the Skydivers; Pups Save the Cupcakes + Mayor Goodway and farmer Al are ready for a day filled with skydiving fun; Alex and the Mini Patrol get locked inside the flounder. + + Joey Nijem + Justin Paul Kelly + Kingsley Marshall + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Does a Home Renovation; The Crew Builds a Lighthouse + Mix and Rubble are starstruck when their favorite TV renovation star, Hank Hammer, comes to see them at work; Cap'n Turbot is bringing Mayor Goodway to visit her sister, Mayor Greatway; when a fog rolls in, the pups must build a lighthouse quickly. + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Dinosaur Museum; The Crew Builds a Wheelchair Ramp + After uncovering dinosaur bones, the pups decide to build a museum; when Omar the mail carrier breaks his foot, it's up to the pups to make sure he can still deliver the mail. + Animated + Children + + + TVY + + + + PAW Patrol + Mighty Pups vs. The Mighty Cheetah + The Cheetah snatches half of Chase's Meteor Crystal; Chase must stop the Cheetah and restore his crystal before anyone gets hurt. + + Kai Harris + Justin Paul Kelly + Christian Corrao + + Animated + Children + + + TVY + + + + PAW Patrol: The Movie + When their biggest rival, Humdinger, starts wreaking havoc as the mayor of Adventure City, Ryder and everyone's favorite heroic pups kick into high gear to face the challenge. + + Iain Armitage + Marsai Martin + Ron Pardo + + 2021 + Movies + Animated + + + TVG + + + 2 + + + + PAW Patrol + Rocky Saves Himself; Pups and the Mystery of the Driverless Snowcat + Rocky must rescue himself after being stranded on an island full of trash by Mayor Humdinger; Daring Danny's new remote control accidentally takes control of Everest's SnoCat and all the vehicles in Adventure Bay. + + Jaxon Mercey + Justin Paul Kelly + Drew Davis + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew and Marshall Build a Fire Station + Rubble and Crew build Builder Cove's first ever Fire Station, complete with an inspection from PAW Patrol's Marshall; when Speed Meister's sneaky sabotage traps Marshall's Fire Truck, the pups work together to put out a fire construction-style. + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Splash Park; The Crew Builds a Playroom + The pups have to get creative to cool down; the crew builds a playroom for Lucas and Lily, but a visitor causes complications. + + Leslie Adlam + Alessandro Pugiotto + + Animated + Children + + + TVY + + + + PAW Patrol + Mighty Pups vs. The Mighty Cheetah + The Cheetah snatches half of Chase's Meteor Crystal; Chase must stop the Cheetah and restore his crystal before anyone gets hurt. + + Kai Harris + Justin Paul Kelly + Christian Corrao + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save the Circus; Pup a Doodle Do + A baby elephant gets loose when the circus comes to town; the PAW Patrol must search for Mayor Goodway's lost chicken. + + Owen Mason + Tristan Samuel + Gage Munroe + + Animated + Children + + + TVY + + + + PAW Patrol + Sea Patrol: Pups Save a Baby Octopus + The Sea Patrol must save the day when a baby octopus gets separated from its mother and sinks the Flounder. + + Jaxon Mercey + Max Calinescu + Drew Davis + + Animated + Children + + + TVY + + + + PAW Patrol + Pups and the Kitty-tastrophe; Pups Save a Train + Ryder and the PAW Patrol rescue a lost kitty from the bay; Ryder, Rubble and Rocky must help free Katie and Cali's train from a rockslide. + + Owen Mason + Tristan Samuel + Gage Munroe + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Playground; The Crew Fixes a Roof + After Speed Meister builds an unsafe playground, Rubble and crew get creative and build a new one with old materials; the town Chili Cookaroo is threatened when City Hall's roof starts to cave in; luckily, the pups know just how to fix it. + + Liam McKenna + Leslie Adlam + Alberta Bolan + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Beaver Home; The Crew Fixes a Road + When the pups find out a beaver is to blame for the power being out, they build it a new home to bring the power back. + + Leslie Adlam + Luxton Handspiker + Alessandro Pugiotto + + Animated + Children + + + TVY + + + + Bubble Guppies + Bring on the Bugs! + The Guppies march with all different kinds of bugs in the Big Bug Parade. + + Zach Gordon + Brianna Gentilella + Angelina Wahler + + Animated + Children + + + TVY + + + + Bubble Guppies + The Legend of Pinkfoot! + The Guppies hear a spooky legend while on a camping trip. + + Zach Gordon + Brianna Gentilella + Angelina Wahler + + Animated + Children + + + TVY + + + + Team Umizoomi + Favorite Things Show + The team helps Emily find shells for. + + Sophia Fox + Ethan Kempner + Donovan Patton + + Animated + Children + + + TVY + + + + Team Umizoomi + The Milk Out + When the farmer gets sick, the team must help fill Umi City's milk order. + Animated + Children + + + TVY + + + + Blaze and the Monster Machines + Starla's Wild West Birthday + Starla's Wild West birthday party is in trouble when her cake gets carried off by a runaway train. + + Nolan North + Dusan Brown + Angelina Wahler + + Animated + Children + + + TVY + + + + Blaze and the Monster Machines + Ice Cream Monster Machine + Gasquatch invites Blaze and AJ to his ice cream party, but forgets the ice cream; Blaze transforms into an ice cream truck and races to reach Gasquatch's house in time. + + Nolan North + Dusan Brown + Angelina Wahler + + Animated + Children + + + TVY + + + + Blaze and the Monster Machines + Race Car Superstar + While visiting another town, a snooty car traps all of the racers, and Blaze must become a racecar to free his new friends. + + Nolan North + Dusan Brown + Angelina Wahler + + Animated + Children + + + TVY + + + + Blaze and the Monster Machines + The Wishing Wheel + Blaze, AJ and Stripes try to stay on track while searching for a magical treasure that will grant a wish for one lucky race car. + + Nolan North + Dusan Brown + Angelina Wahler + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Does a Home Renovation; The Crew Builds a Lighthouse + Mix and Rubble are starstruck when their favorite TV renovation star, Hank Hammer, comes to see them at work; Cap'n Turbot is bringing Mayor Goodway to visit her sister, Mayor Greatway; when a fog rolls in, the pups must build a lighthouse quickly. + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Dinosaur Museum; The Crew Builds a Wheelchair Ramp + After uncovering dinosaur bones, the pups decide to build a museum; when Omar the mail carrier breaks his foot, it's up to the pups to make sure he can still deliver the mail. + Animated + Children + + + TVY + + + + PAW Patrol + Pups Go All Monkey; Pups Save a Hoot + An escaped monkey leads the PAW Patrol on a chase through Adventure Bay; the PAW Patrol saves a baby owl and reunites him with his mother. + + Owen Mason + Tristan Samuel + Gage Munroe + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save a Friend; Pups Save a Stowaway + When Marshall begins to feel like his clumsy ways are ruining his friends' fun, he decides to take a break from the PAW Patrol and goes off to the woods; Cali becomes an unsuspecting stowaway when she is accidentally packed up into the Paw Patroller. + + Owen Mason + Max Calinescu + Drew Davis + + Animated + Children + + + TVY + + + + PAW Patrol + Ultimate Rescue: Pups Save the Royal Kitties + When the Royal Kitties are kidnapped on their way to Adventure Bay for a special visit, Ryder needs all the pups to help Chase investigate the case. + + Jaxon Mercey + Justin Paul Kelly + Drew Davis + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save the Skydivers; Pups Save the Cupcakes + Mayor Goodway and farmer Al are ready for a day filled with skydiving fun; Alex and the Mini Patrol get locked inside the flounder. + + Joey Nijem + Justin Paul Kelly + Kingsley Marshall + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save a Snowboard Competition; Pups Save a Chicken of the Sea + Jake and Everest are excited for the snowboard competition, but the course is buried under snow; the PAW Patrol sets out to retrieve Cap'n Turbot's sunken diving bell. + + Elijha Hammill + Max Calinescu + Drew Davis + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save the Bears; Pups Save a Farmerless Farm + The PAW Patrol works quietly to save sleeping bears and return them to their cave; with the farmers out of town, Mayor Goodway calls the PAW Patrol to wrangle animals and control the chaos on a farmerless farm. + + Joey Nijem + Justin Paul Kelly + Lukas Engel + + Animated + Children + + + TVY + + + + Peppa Pig + The Outback; Surfing; The Great Barrier Reef; The Boomerang; Nature Trail + Peppa, George, Mummy Pig and Daddy Pig go to visit the Kangaroo family in Australia and get to explore the Outback. + + Richard Ridings + Morwenna Banks + Cecily Bloom + + Animated + Children + + + TVY + + + + Peppa Pig + Camping Holiday; Compost; Richard Rabbit Comes to Play; Fun Run; The Rainbow + Peppa's family goes on holiday in their camper van; Peppa and George learn about compost; Richard Rabbit comes to play with George; Daddy Pig runs a race to raise money; Peppa sees a rainbow. + + Harley Bird + Morwenna Banks + Richard Ridings + + Animated + Children + + + TVY + + + + Bubble Guppies + The Crayon Prix + The Bubble Guppies learn about colors while car racing. + + Zach Gordon + Brianna Gentilella + Angelina Wahler + + Animated + Children + + + TVY + + + + Bubble Guppies + Space Guppies! + When the evil robot Major Bummer tries to eliminate music from the galaxy, Princess Molly and the Guppies must restore peace, harmony and melody. + + Jacob Bertrand + Teddy Walsh + Bailey Gambertoglio + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds an Observatory; The Crew Builds a Zipline + The pups jump into action to build an observatory to help their friend River get a cool picture of a shooting star; after meeting Park Ranger Rose, the pups get stuck on a nature trail, but with Rubble and crew, there's always a solution. + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Popcorn Café; The Crew Fixes a Slippery Mess + The crew switches to cleanup mode when construction on Café Carl's new popcorn restaurant pops out of control; a soapy accident causes slippery mayhem all over Builder Cove. + + Luxton Handspiker + Leslie Adlam + Alessandro Pugiotto + + Animated + Children + + + TVY + + + + Blue's Clues & You! + Into the Blueniverse + Magenta's toy spaceship spins out of control, disappearing into Blueniverse; building a rocket ship to skidoo through the Blueniverse to find all three clues. + + Traci Paige Johnson + Doug Murray + Jordana Blake + + Animated + Children + + + TVY + + + + Blue's Clues & You! + The Case of the Missing Thinking Chair + The Thinking Chair is missing; this is a mystery so huge that Josh and Blue need to call in the Blueprints Detective Agency for Steve's help. + + Traci Paige Johnson + Doug Murray + Jordana Blake + + Animated + Children + + + TVY + + + + Gabby's Dollhouse + Gabby Gets the Hiccups + Gabby and Pandy share their new Meow Meow Mail with Cakey and work on a cure for a case of the hiccups. + + Laila Lockhart Kraner + Tucker Chandler + Juliet Donenfeld + + Animated + Children + + + TVY + + + + Gabby's Dollhouse + Game Show + CatRat takes center stage to host a series of dollhouse games. + + Laila Lockhart Kraner + Tucker Chandler + Juliet Donenfeld + + Animated + Children + + + TVY + + + + Peppa Pig + Long Train Journey; Madame Gazelle's House; Suzy Goes Away; Tiny Land; Grampy Rabbit's Boatyard + Daddy Pig receives a letter saying he must go away on business to test some very important concrete; Peppa, George, Mummy and Daddy Pig go to visit Madame Gazelle and her wonky house. + + Richard Ridings + Morwenna Banks + Cecily Bloom + + Animated + Children + + + TVY + + + + Peppa Pig + Grampy Rabbit in Space; Pirate Treasure; George's Racing Car; George's Balloon; Pedro Is Late + Grampy Rabbit visits Peppa's playgroup to talk about space rockets; Pirate Peppa buries a treasure chest; Grandpa Pig builds George his own race car; George finds it difficult to hold his balloon; the playgroup is going on a trip to the museum. + Animated + Children + + + TVY + + + + Bubble Guppies + The New Guppy! + The Sea Witch steals the Guppies' magical jewels so she can rule the Seven Seas; the Guppies must get their jewels back and stop her before it's too late. + + Jacob Bertrand + Teddy Walsh + Bailey Gambertoglio + + Animated + Children + + + TVY + + + + Bubble Guppies + Good Hair Day! + Gil needs to get his hair cut before picture day. + + Zach Gordon + Brianna Gentilella + Angelina Wahler + + Animated + Children + + + TVY + + + + PAW Patrol + Tracker Joins the Pups! + Ryder and the pups head to the jungle to help Carlos move a massive relic, but Carlos falls into a deep pit. + + Elijha Hammill + Max Calinescu + Drew Davis + + Animated + Children + + + TVY + + + + PAW Patrol + Mighty Pups vs. The Mayor of the Universe + Liberty and the Poms team up with the Mighty Pups to save Adventure Bay from being crushed by a giant, flying Top Hat. + + Kai Harris + Justin Paul Kelly + Christian Corrao + + Animated + Children + + + TVY + + + + PAW Patrol: The Movie + When their biggest rival, Humdinger, starts wreaking havoc as the mayor of Adventure City, Ryder and everyone's favorite heroic pups kick into high gear to face the challenge. + + Iain Armitage + Marsai Martin + Ron Pardo + + 2021 + Movies + Animated + + + TVG + + + 2 + + + + Videos We Heart + Las canciones más populares. + Music + + + TVPG + + + + Videos We Heart + Las canciones más populares. + Music + + + TVPG + + + + Weekend Vibes + Videos musicales. + Music + + + TVPG + + + + Crushworthy + Videos musicales. + Music + + + TVPG + + + + Stuck in Our Heads + Music + + + TVPG + + + + Videos We Heart + Las canciones más populares. + Music + + + TVPG + + + + Videos We Heart + Las canciones más populares. + Music + + + TVPG + + + + Weekend Vibes + Videos musicales. + Music + + + TVPG + + + + Crushworthy + Videos musicales. + Music + + + TVPG + + + + Stuck in Our Heads + Music + + + TVPG + + + + Videos We Heart + Las canciones más populares. + Music + + + TVPG + + + + Mega Nick Mix + Videos de artistas musicales pasados y presentes de Nickelodeon. + Music + + + TVPG + + + + Pop Royalty + Music + + + TVPG + + + + Bumpin' Beats + Videos musicales. + Music + + + TVPG + + + + Crushworthy + Videos musicales. + Music + + + TVPG + + + + Mega Nick Mix + Videos de artistas musicales pasados y presentes de Nickelodeon. + Music + + + TVPG + + + + Pop Royalty + Music + + + TVPG + + + + Bumpin' Beats + Videos musicales. + Music + + + TVPG + + + + Crushworthy + Videos musicales. + Music + + + TVPG + + + + Mega Nick Mix + Videos de artistas musicales pasados y presentes de Nickelodeon. + Music + + + TVPG + + + + Pop Royalty + Music + + + TVPG + + + + Bumpin' Beats + Videos musicales. + Music + + + TVPG + + + + Crushworthy + Videos musicales. + Music + + + TVPG + + + + Mega Nick Mix + Videos de artistas musicales pasados y presentes de Nickelodeon. + Music + + + TVPG + + + + Pop Royalty + Music + + + TVPG + + + + Bumpin' Beats + Videos musicales. + Music + + + TVPG + + + + Crushworthy + Videos musicales. + Music + + + TVPG + + + + Mega Nick Mix + Videos de artistas musicales pasados y presentes de Nickelodeon. + Music + + + TVPG + + + + Pop Royalty + Music + + + TVPG + + + + Bumpin' Beats + Videos musicales. + Music + + + TVPG + + + + Crushworthy + Videos musicales. + Music + + + TVPG + + + + Mega Nick Mix + Videos de artistas musicales pasados y presentes de Nickelodeon. + Music + + + TVPG + + + + Pop Royalty + Music + + + TVPG + + + + Bumpin' Beats + Videos musicales. + Music + + + TVPG + + + + Crushworthy + Videos musicales. + Music + + + TVPG + + + + Mega Nick Mix + Videos de artistas musicales pasados y presentes de Nickelodeon. + Music + + + TVPG + + + + Pop Royalty + Music + + + TVPG + + + + Bumpin' Beats + Videos musicales. + Music + + + TVPG + + + + Crushworthy + Videos musicales. + Music + + + TVPG + + + + Mega Nick Mix + Videos de artistas musicales pasados y presentes de Nickelodeon. + Music + + + TVPG + + + + Pop Royalty + Music + + + TVPG + + + + Bumpin' Beats + Videos musicales. + Music + + + TVPG + + + + Crushworthy + Videos musicales. + Music + + + TVPG + + + + Mega Nick Mix + Videos de artistas musicales pasados y presentes de Nickelodeon. + Music + + + TVPG + + + + Pop Royalty + Music + + + TVPG + + + + Bumpin' Beats + Videos musicales. + Music + + + TVPG + + + + Crushworthy + Videos musicales. + Music + + + TVPG + + + + Mega Nick Mix + Videos de artistas musicales pasados y presentes de Nickelodeon. + Music + + + TVPG + + + + Pop Royalty + Music + + + TVPG + + + + Bumpin' Beats + Videos musicales. + Music + + + TVPG + + + + Crushworthy + Videos musicales. + Music + + + TVPG + + + + Mega Nick Mix + Videos de artistas musicales pasados y presentes de Nickelodeon. + Music + + + TVPG + + + + Pop Royalty + Music + + + TVPG + + + + Bumpin' Beats + Videos musicales. + Music + + + TVPG + + + + Crushworthy + Videos musicales. + Music + + + TVPG + + + + Mega Nick Mix + Videos de artistas musicales pasados y presentes de Nickelodeon. + Music + + + TVPG + + + + Pop Royalty + Music + + + TVPG + + + + Bumpin' Beats + Videos musicales. + Music + + + TVPG + + + + Crushworthy + Videos musicales. + Music + + + TVPG + + + + Mega Nick Mix + Videos de artistas musicales pasados y presentes de Nickelodeon. + Music + + + TVPG + + + + Pop Royalty + Music + + + TVPG + + + + Bumpin' Beats + Videos musicales. + Music + + + TVPG + + + + Crushworthy + Videos musicales. + Music + + + TVPG + + + + Mega Nick Mix + Videos de artistas musicales pasados y presentes de Nickelodeon. + Music + + + TVPG + + + + Pop Royalty + Music + + + TVPG + + + + Bumpin' Beats + Videos musicales. + Music + + + TVPG + + + + Crushworthy + Videos musicales. + Music + + + TVPG + + + + Mega Nick Mix + Videos de artistas musicales pasados y presentes de Nickelodeon. + Music + + + TVPG + + + + Pop Royalty + Music + + + TVPG + + + + Bumpin' Beats + Videos musicales. + Music + + + TVPG + + + + Crushworthy + Videos musicales. + Music + + + TVPG + + + + Mega Nick Mix + Videos de artistas musicales pasados y presentes de Nickelodeon. + Music + + + TVPG + + + + Pop Royalty + Music + + + TVPG + + + + Bumpin' Beats + Videos musicales. + Music + + + TVPG + + + + Crushworthy + Videos musicales. + Music + + + TVPG + + + + Mega Nick Mix + Videos de artistas musicales pasados y presentes de Nickelodeon. + Music + + + TVPG + + + + Pop Royalty + Music + + + TVPG + + + + Bumpin' Beats + Videos musicales. + Music + + + TVPG + + + + Crushworthy + Videos musicales. + Music + + + TVPG + + + + Mega Nick Mix + Videos de artistas musicales pasados y presentes de Nickelodeon. + Music + + + TVPG + + + + Pop Royalty + Music + + + TVPG + + + + Bumpin' Beats + Videos musicales. + Music + + + TVPG + + + + Crushworthy + Videos musicales. + Music + + + TVPG + + + + Mega Nick Mix + Videos de artistas musicales pasados y presentes de Nickelodeon. + Music + + + TVPG + + + + Pop Royalty + Music + + + TVPG + + + + Bumpin' Beats + Videos musicales. + Music + + + TVPG + + + + Crushworthy + Videos musicales. + Music + + + TVPG + + + + Mega Nick Mix + Videos de artistas musicales pasados y presentes de Nickelodeon. + Music + + + TVPG + + + + Pop Royalty + Music + + + TVPG + + + + Bumpin' Beats + Videos musicales. + Music + + + TVPG + + + + Crushworthy + Videos musicales. + Music + + + TVPG + + + + Mega Nick Mix + Videos de artistas musicales pasados y presentes de Nickelodeon. + Music + + + TVPG + + + + Pop Royalty + Music + + + TVPG + + + + Bumpin' Beats + Videos musicales. + Music + + + TVPG + + + + Crushworthy + Videos musicales. + Music + + + TVPG + + + + Mega Nick Mix + Videos de artistas musicales pasados y presentes de Nickelodeon. + Music + + + TVPG + + + + Kung Fu Panda + Chosen to fulfill an ancient prophecy, a clumsy panda (Jack Black) must become a martial-arts master and defend his people from a villainous snow leopard. + + Jack Black + Angelina Jolie + Jackie Chan + + 2008 + Movies + Animated + + + TVG + + + 3 + + + + Kung Fu Panda 2 + Po (Jack Black) must unlock secrets of his past in order to defeat a formidable villain who plans to wipe out kung fu and conquer China. + + Jack Black + Angelina Jolie + Dustin Hoffman + + 2011 + Movies + Animated + + + TVG + + + 3 + + + + Friends + The One With George Stephanopoulos + While the men attend a hockey game and end up at a hospital, the women spy on President Clinton's top aide, George Stephanopoulos, who lives across the street. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With the East German Laundry Detergent + Chandler and Phoebe plan to dump dates on the same night at the same coffee house. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With the Red Sweater + The gals speculate about the father of Rachel's baby, the guys scramble after Chandler loses the film from his wedding. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The One With Ross' New Girlfriend + Rachel decides to look up her former boyfriend (Cosimo Fusco) when she is distraught over Ross' new girlfriend (Lauren Tom). + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The One Where Chandler Can't Cry + Rachel and her sister get into a heated sibling rivalry over Ross; Chandler confesses he hasn't cried since he was a child. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With the Tea Leaves + Rachel devises a lie about her unborn child that she hopes will break the silence between her and Joey; Phoebe reads tea leaves and predicts she will soon encounter the man of her dreams. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The One With the Dozen Lasagnas + Rachel's Italian boyfriend tries to seduce Phoebe; Rachel accidentally reveals a secret to Ross; Monica's aunt refuses to take the lasagnas she ordered. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With the Boobies + Phoebe's psychiatrist boyfriend (Fisher Stevens) annoys her friends with his analyses of their lives. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With Two Parts + Joey asks Phoebe's sister (Lisa Kudrow in a dual role) on a date; Ross takes Lamaze classes with Carol (Jane Sibbett) and Susan (Jessica Hecht). + + Jennifer Aniston + Lisa Kudrow + Courteney Cox + + Sitcom + + + TVPG + + + + Friends + The One With Two Parts + Monica takes Rachel to the hospital; Ross asks his dad (Elliott Gould) for advice on becoming a father. + + Jennifer Aniston + Lisa Kudrow + Courteney Cox + + Sitcom + + + TVPG + + + + Friends + The One With All the Poker + When the girls lose money to the guys in a poker match they seek out Monica's Aunt Iris, a famous card player, for lessons and then demand a rematch. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One Where the Monkey Gets Away + Rachel accidentally lets Ross' pet monkey escape, and the friends form a search party; she is then horrified to learn that her former best friend is engaged to her ex-fiance. + + Jennifer Aniston + Courteney Cox + Matt LeBlanc + + Sitcom + + + TVPG + + + + Mom + Crazy Snakes and a Clog to the Head + When the ladies bring a meeting to a women's prison, Bonnie is attacked by an old acquaintance; Christy helps Bonnie make amends. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + Mom + Spaghetti Sauce and a Dumpster Fire + Christy considers getting a new sponsor after witnessing Marjorie have a major meltdown in a grocery store; Bonnie tries her hand at being a supportive friend. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + Mom + A Taco Bowl and a Tubby Seamstress + Christy is concerned that she and Bonnie might lose their apartment when Bonnie locks horns with the tough new building owner. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + Mom + Ocular Fluid and Fighting Robots + Christy's sponsor challenges her to be nice to Bonnie at all costs; Bonnie is convinced Adam has stopped making an effort. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + Mom + Phone Confetti and a Wee Dingle + Christy and Bonnie's relaxing trip to a spa takes a turn when Bonnie lands in jail. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + Mom + Diamond Earrings and a Pumpkin Head + When Christy falls back into old habits, Bonnie worries about her well-being. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + Mom + Pre-Washed Lettuce and a Mime + Christy has second thoughts about law school after a tough first day; an upsetting dream plagues Bonnie. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + Mom + Go-Go Boots and a Butt Cushion + Christy decides she doesn't need Gamblers Anonymous anymore; Bonnie vehemently disagrees. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + SpongeBob SquarePants + Wormy; Patty Hype + Sandy puts SpongeBob and Patrick in charge of her pet caterpillar; SpongeBob invents colored krabby patties. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Unreal Estate; Code Yellow + When SpongeBob thinks he has an allergy to his pineapple, Squidward offers to help find him a new home; Squidward gets a nose job at the local hospital and SpongeBob tags along as moral support. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Best of the SpongeBob Universe! + Floating on down to Bikini Bottom and seeing the best moments from. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + NFL Slimetime + Week 9 + The end zones become the slime zone as former NFL player-turned-TV host Nate Burleson presents weekly NFL highlights like they've never been seen before. + Sports + Children + + + TVG + + + + Sing + A pig (Reese Witherspoon), a mouse (Seth MacFarlane), a porcupine (Scarlett Johansson), a gorilla (Taron Egerton), an elephant (Tori Kelly) and other animals gather at a koala's (Matthew McConaughey) theater for a singing competition. + + Matthew McConaughey + Reese Witherspoon + Seth MacFarlane + + 2016 + Movies + Animated + + + TVG + + + 3 + + + + Madagascar 3: Europe's Most Wanted + On the run from a French animal-control officer (Frances McDormand), Alex (Ben Stiller) and friends (Chris Rock, David Schwimmer) hide out in a traveling circus, where they perform death-defying tricks and make some new friends. + + Ben Stiller + Chris Rock + David Schwimmer + + 2012 + Movies + Animated + + + TVG + + + 2 + + + + Kung Fu Panda 2 + Po (Jack Black) must unlock secrets of his past in order to defeat a formidable villain who plans to wipe out kung fu and conquer China. + + Jack Black + Angelina Jolie + Dustin Hoffman + + 2011 + Movies + Animated + + + TVG + + + 3 + + + + SpongeBob SquarePants + The Great Snail Race; Pets or Pests; Wormy; Dumped; The Thing; Grooming Gary; A Pal for Gary; Pet Si + SpongeBob enters Gary in a race; SpongeBob adopts a worm; SpongeBob and Patrick watch Sandy's pet; Gary follows Patrick; Squidward is coated in mud and leaves; SpongeBob gives Gary a makeover; SpongeBob gets Gary a pet; Patrick watches Gary. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Big Top Flop; Sandy, Help Us! + When the circus comes to town and steals his customers away, Mr. Krabs tries to sabotage the show; Sandy spends the day solving everyone's issues, only to return home to her own monster of a problem. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Swamp Mates; One Trick Sponge + Bubble Bass finds himself stranded with Patrick in a mysterious swamp, looking for a lost action figure; SpongeBob learns a new magic trick, but he can't find anyone to watch it. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Snooze You Lose; Krusty Katering + Squidward is so tired that SpongeBob and Patrick are unable to wake him up, but they do not want him to miss his big audition; Mr. Krabs and his crew cater a fancy party, but they might be out of their depth with their new wealthy customers. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Sandy's Nutty Nieces; Insecurity Guards + SpongeBob volunteers to baby-sit; SpongeBob and Patrick volunteer as guards at the museum, while Squidward attempts to hang his painting unnoticed. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + SquidBird; Allergy Attack + Squidward gets left with a mess when SpongeBob and Patrick use carrier clams to send messages to each other; after cooking his kazillionth Krabby Patty, SpongeBob believes he's developed an allergy to them. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + SpongeBob SquarePants vs. The Big One + SpongeBob, Patrick and Squidward are swept away to a remote tropical island by a giant wave. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Tentacle Vision; I Heart Dancing + Squidward gets his own public access television show; Squidward becomes jealous of SpongeBob and tries to sabotage his dance audition. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + Friends + The One With the Evil Orthodontist + Rachel is asked to be the maid of honor in her ex-fiance's (Mitchell Whitfield) wedding. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The One With the Fake Monica + Monica, Rachel and Phoebe go on a covert operation to track down the woman who stole Monica's credit card. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With the Ick Factor + Monica's new boyfriend (Stan Kirsch) exposes his own secret after she admits her true age. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One Where Monica Sings + Monica exults in the applause she receives on karaoke night, unaware that the cheering audience can see through her blouse. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With the Mugging + Joey stumbles upon a way to impress a famous actor (Jeff Goldblum) during an audition; Ross learns the identity of a long-ago mugger; Chandler accepts an internship at a shoe company. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The One After Joey & Rachel Kiss + In Barbados, Monica, Chandler and Phoebe eavesdrop on their friends' passionate encounters; Monica styles her hair to look like a blowfish; Phoebe and Mike rekindle their romance. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The One With Ross's Tan + Rachel and Joey nervously anticipate their first real date; Monica and Phoebe try to avoid an obnoxious friend (Jennifer Coolidge) with a fake British accent; Ross emerges from a tanning booth with a two-toned appearance. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The Last One + The six friends prepare to say goodbye and embark on the next chapters of their lives; momentous events and last-minute surprises. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The One With Five Steaks and an Eggplant + The group's plans of throwing a birthday party are marred when money becomes an issue; Chandler sets a woman up to get a date with her, but a case of mistaken identities means that he discovers what she really thought of him. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One Where No One Proposes + Joey finds himself engaged to Rachel soon after she delivers her baby girl, while Phoebe assumes Ross is the one who proposed; Joey sneaks a peek as Rachel tries unsuccessfully to nurse; Monica and Chandler retire to a supply closet for privacy. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The One With the Thumb + Monica finds it difficult to break up with her latest boyfriend (Geoffrey Lower), whom everyone likes; Chandler starts smoking again; Phoebe receives a large sum of money. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Mom + Ambulance Chasers and a Babbling Brook + Christy's demanding law professor leans on her a little too hard; Bonnie's plan to trick Adam into choosing a wedding venue backfires. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + Mom + Big Sauce and Coconut Water + Christy is certain that Bonnie is in over her head when she invites a freshly paroled Tammy to stay with them. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + Mom + Flying Monkeys and a Tank of Nitrous + When Marjorie's husband passes away, the ladies accompany her on a trip to memorialize him. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + Mom + Cottage Cheese and a Weird Buzz + Christy and Jill clash over a gambling debt; Bonnie's new hobby troubles Adam. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + Mom + Puzzle Club and a Closet Party + Christy and Wendy help Jill clean out her closet, which turns out to be a bigger job than expected; Bonnie, Marjorie and Tammy take up a new hobby. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + Mom + Flamingos and a Dance-Based Exercise Class + Bonnie and the ladies help Tammy prepare for her first date since getting out of prison; in order to take the edge off, Christy revisits one of her old vices. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + SpongeBob SquarePants + SquidBird; Allergy Attack + Squidward gets left with a mess when SpongeBob and Patrick use carrier clams to send messages to each other; after cooking his kazillionth Krabby Patty, SpongeBob believes he's developed an allergy to them. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + PAW Patrol + Pups Save the Jungle Penguins; Pups Save a Freighter + When an ice floe carrying three penguins lands in the jungle, the pups must get the birds back to their frosty home; Daring Danny is locked out of the lighthouse Turbot left him to look after, with a freighter headed his way. + + Jaxon Mercey + Justin Paul Kelly + Lukas Engel + + Animated + Children + + + TVY + + + + PAW Patrol + Mighty Pups vs. The Mayor of the Universe + Liberty and the Poms team up with the Mighty Pups to save Adventure Bay from being crushed by a giant, flying Top Hat. + + Kai Harris + Justin Paul Kelly + Christian Corrao + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save the Honey; Pups Save Mayor Goodway's Purse + Yumi's Yummy Honey is all the buzz when it -- and her beehive -- go missing from her farm; Mayor Goodway's purse disappears, along with its precious cargo, Chickaletta. + + Jaxon Mercey + Justin Paul Kelly + Lukas Engel + + Animated + Children + + + TVY + + + + PAW Patrol + Ultimate Rescue: Pups Save the Mountain Climbers; Ultimate Rescue: Pup Save Captain Gordy + Rubble leads the pups in building an emergency landing pad for Captain Gordy; Mayor Goodway, Danny and the Turbots are stuck in a canyon in the mountains. + + Jaxon Mercey + Justin Paul Kelly + Lukas Engel + + Animated + Children + + + TVY + + + + PAW Patrol + Liberty's Mountain Rescue; Pups Save a Flying Farmer Yumi + Liberty comes to visit the pups just in time to help save the Turbots and their radar doppler in a daring mountain rescue; when Farmer Al builds a windmill, the wind takes Farmer Yumi and Garby on a wild flight. + + Kai Harris + Justin Paul Kelly + Christian Corrao + + Animated + Children + + + TVY + + + + PAW Patrol + Pups and the Stinky Bubble Trouble; Pups Save the Baby Ostriches + A strange odor chases jungle animals away from their homes; after Olivia the Ostrich falls into a canyon, the pups work together to lift her to safety and protect her soon-to-hatch eggs. + + Jaxon Mercey + Justin Paul Kelly + Lukas Engel + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Pig Barn; The Crew Builds a Giant Runway + A new farmer in town asks Rubble and crew to build a barn for her pig in time for the big Pig Party; Motor's super special birthday present gets delayed, and the pups realize Builder Cove's airport needs a bigger runway. + + Krystal Meadows + Alessandro Pugiotto + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Drive-In Movie Theater; The Crew Finds a Rainbow Treasure + When Mix and Motor's favorite TV star has a new movie playing in Builder Cove, the pups need to build a movie theater to watch it; Grandpa tells the pups about a buried treasure, and they find out the key to finding this treasure is teamwork. + + Luxton Handspiker + Leslie Adlam + Alberta Bolan + + Animated + Children + + + TVY + + + + PAW Patrol + Mighty Pups vs. The Big Chill + Harold creates a ray that can freeze things instantly, it goes awry and sends a giant ice ball toward Adventure Bay. + + Kai Harris + Justin Paul Kelly + Christian Corrao + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save a Rocket Roller Skater; Pups Save Ryder's Surprise + A mix-up delivery leads to Ms. Marjorie and Danny speeding out of control in Adventure Bay; the Pups must rescue them; Ryder's present ends up in the jungle; Carlos is trapped in a jungle gym. + + Joey Nijem + Justin Paul Kelly + Kingsley Marshall + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save the Marooned Mayors; Pups Save the Game Show + While ice fishing in the North Country, Mayor Goodway and Mayor Humdinger get stuck in an ice crevasse; Beryl hosts a game show at the Wingnuts' farm. + + Joey Nijem + Justin Paul Kelly + Kingsley Marshall + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save the Chalk Art; Pups Save the Hot Potato + The Mini Patrol and the Pups race to save a mural before it rains; Farmer Al and Yumi discover their garden is full of holes and their one-of-a-kind potato is missing. + + Joey Nijem + Justin Paul Kelly + Kingsley Marshall + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save Little Hairy; Pups Save a Kooky Climber + Big Hairy's little brother falls into a hole, and Tracker gets carried away by Big Hairy; Danny tries extreme rock climbing with Ace Sorenson. + + Beckett Hipkiss + Justin Paul Kelly + Kingsley Marshall + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save Queen Cluck-Cluck; Pups Save a Desert Flounder + Mayor Goodway dreams she's traveled to the mysterious Cluck Cluck Island, a very strange land where Chickaletta is royalty; Traveling Travis' balloon gets caught on the Flounder. + + Beckett Hipkiss + Justin Paul Kelly + Kingsley Marshall + + Animated + Children + + + TVY + + + + The Smurfs + Smurfs in Disguise; Jokes on You + After breaking Papa Smurf's telescope, Scaredy and Hefty decide to dress up as girls and hide rather than face punishment; Vanity tires of Jokey's exploding box and decides to booby trap it with an even bigger explosion. + + David Freeman + Bérangère McNeese + Mark Irons + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + The Pest of the West + While researching his family tree, SpongeBob discovers that one of his ancestors was a famous chili-slinger named SpongeBuck. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Potato Puff; There Will Be Grease! + Mrs. Puff's new substitute teacher gives SpongeBob a crash course in driving; Mr. Krabs and Plankton must work together after discovering a well of miracle-grease under their restaurants. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + SquidBird; Allergy Attack + Squidward gets left with a mess when SpongeBob and Patrick use carrier clams to send messages to each other; after cooking his kazillionth Krabby Patty, SpongeBob believes he's developed an allergy to them. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + The Patrick Star Show + Super Stars + The Star Family are a team of superheroes. + + Bill Fagerbakke + Thomas F. Wilson + Cree Summer + + Animated + Children + + + TVY7 + + + + The Secret Life of Pets + A domesticated terrier (Louis C.K.) and his unruly canine pal (Eric Stonestreet) encounter a rebellious bunny (Kevin Hart) and his gang of abandoned pets. + + Louis C.K. + Eric Stonestreet + Kevin Hart + + 2016 + Movies + Animated + + + TVG + + + 3 + + + + SpongeBob SquarePants + Have You Seen This Snail? + Gary runs away from home when SpongeBob forgets to feed him. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Ma and Pa's Big Hurrah; Yellow Pavement + When SpongeBob's parents come to visit, their thirst for thrills comes as a big surprise; an educational driving film. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + MuscleBob BuffPants; Squidward, the Unfriendly Ghost + SpongeBob orders fake arms; Squidward pretends to be a ghost. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Say 'Awww!'; Patrick the Mailman + Frustrated that he's seen as cute instead of evil, Plankton builds a robot to punish anyone who says. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Big Top Flop; Sandy, Help Us! + When the circus comes to town and steals his customers away, Mr. Krabs tries to sabotage the show; Sandy spends the day solving everyone's issues, only to return home to her own monster of a problem. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + Friends + The One With the Baby on the Bus + Joey and Chandler decide to baby-sit and use Ben as a way to pick up women; Phoebe loses her job singing at Central Perk. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One Where Ross Finds Out + A drunken Rachel leaves a phone message for Ross that may change their relationship; Chandler regrets asking Monica to help him lose weight. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With Russ + After deciding to give up acting, Joey is offered a role in a soap opera; Rachel dates a guy named Russ. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With the Lesbian Wedding + Ross helps put Carol and Susan's wedding plans back on track; Rachel's mother announces shocking new plans. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One After the Super Bowl + Joey starts dating a fan (Brooke Shields) who is gorgeous, but soon discovers that she's also crazy; Ross is reminded how much he misses his pet monkey and travels to the San Diego Zoo to find out what has happened to him. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One After the Super Bowl + Ross (David Schwimmer) catches up with Marcel on the set of a movie starring Jean-Claude Van Damme; Chandler gets a date with a girl he liked in fourth grade. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With the Prom Video + Monica's parents drop off some childhood keepsakes including her prom video. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One Where Ross and Rachel ... You Know + Ross and Rachel become more than just friends; Monica caters a party for a dashing older doctor (Tom Selleck). + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The One Where Joey Moves Out + Everyone at Monica's dad's birthday party finds it amusing that their middle-aged friend (Tom Selleck) is dating a woman in her 20s until Monica's parents learn that it is their daughter; Chandler and Joey argue over a dirty spoon. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One Where Eddie Moves In + With Joey in his new apartment, Chandler gets a troublesome new roommate (Adam Goldberg); Phoebe makes a video for. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Mike & Molly + Mike Snores + Mike's incessant snoring interrupts his romance with Molly. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mike & Molly + Molly Gets a Hat + After Mike's mother buys a hat for her, Molly feels obliged to invite the older woman over for Thanksgiving. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + Thanksgiving + + + TV14 + + + + Mike & Molly + First Christmas + Mike tries to find a gift for Molly for their first Christmas together. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mike & Molly + Jim Won't Eat + When Mike's mother needs gallbladder surgery, she asks Molly to care for her dog; Molly is surprised when Mike discusses where he'd like to be buried when he dies. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mike & Molly + First Valentine's Day + Mike runs into Molly's ex-boyfriend, which jeopardizes his plans for Valentine's Day with Molly. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mom + Hacky Sack and a Beautiful Experience + Christy's smoking causes problems during a road trip; Bonnie offers Adam unsolicited advice. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + Mom + Big Floor Pillows and a Ball of Fire + Christy and Bonnie are suspicious when Adam's best friend returns, insisting he's a changed man. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + Mom + Skippy and the Knowledge Hole + Christy finds it challenging to quit smoking; Bonnie helps Tammy prepare to take the GED test. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + SpongeBob SquarePants + Big Top Flop; Sandy, Help Us! + When the circus comes to town and steals his customers away, Mr. Krabs tries to sabotage the show; Sandy spends the day solving everyone's issues, only to return home to her own monster of a problem. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + PAW Patrol + Pups Save Ace's Birthday Surprise; Pups Save a Tower of Pizza + Rocky and the pups fix an old junk car for Ace Sorensen's birthday; Adventure Bay works hard to earn the record for having the world's highest tower of pizzas. + + Jaxon Mercey + Justin Paul Kelly + Drew Davis + + Animated + Children + + + TVY + + + + PAW Patrol + Mighty Pups vs. The Big Chill + Harold creates a ray that can freeze things instantly, it goes awry and sends a giant ice ball toward Adventure Bay. + + Kai Harris + Justin Paul Kelly + Christian Corrao + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save the Bears; Pups Save a Farmerless Farm + The PAW Patrol works quietly to save sleeping bears and return them to their cave; with the farmers out of town, Mayor Goodway calls the PAW Patrol to wrangle animals and control the chaos on a farmerless farm. + + Joey Nijem + Justin Paul Kelly + Lukas Engel + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save a White Wolf; Pups Save a Wrong-Way Explorer + After a sudden snowstorm, Everest cares for a white wolf cub as they work together to help the PAW Patrol find them; famous wrong-way explorer Travelling Travis accidentally takes Chickaletta to the North Pole, where they run into some crocodiles. + + Joey Nijem + Justin Paul Kelly + Lukas Engel + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Stop a Gold Finding Machine; Pups Help Mayor Humdinger Out of a Jam + The Paw Patrol springs into action when a digging machine goes out-of-control and takes Uncle Otis on a wild ride; Digi and Tal try to help Mayor Humdinger but leave the Mayor covered in jam, so the Pups must rescue him from hungry animals. + + Kai Harris + Justin Paul Kelly + Christian Corrao + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save the Squirrels; Pups Save a Roo + The PAW Patrol is on a roll when squirrels stash acorns in Alex's treehouse, causing it to fall onto Daring Danny's skateboard; a switcheroo situation develops when a joey is separated from its mother. + + Joey Nijem + Justin Paul Kelly + Lukas Engel + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Popcorn Café; The Crew Fixes a Slippery Mess + The crew switches to cleanup mode when construction on Café Carl's new popcorn restaurant pops out of control; a soapy accident causes slippery mayhem all over Builder Cove. + + Luxton Handspiker + Leslie Adlam + Alessandro Pugiotto + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Beaver Home; The Crew Fixes a Road + When the pups find out a beaver is to blame for the power being out, they build it a new home to bring the power back. + + Leslie Adlam + Luxton Handspiker + Alessandro Pugiotto + + Animated + Children + + + TVY + + + + PAW Patrol + Mighty Pups vs. The Mighty Cheetah + The Cheetah snatches half of Chase's Meteor Crystal; Chase must stop the Cheetah and restore his crystal before anyone gets hurt. + + Kai Harris + Justin Paul Kelly + Christian Corrao + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save a Trash-Dinger; Pups Save the Royal Armor + When Mayor Humdinger's trash-compacting truck messes up the beach, Rocky's new Re-Use It Truck comes to the rescue; when a gift of armor for the Princess gets scattered all over town, Rocky uses his Re-Use It Truck to put the armor back together. + + Joey Nijem + Justin Paul Kelly + Kingsley Marshall + + Animated + Children + + + TVY + + + + PAW Patrol + Moto Pups: Pups vs. the Ruff-Ruff Pack + Stunt motorcyclist Wild Cat joins the patrol to try to keep Ruff-Ruff Pack troublemakers from trashing the town. + + Joey Nijem + Justin Paul Kelly + Kingsley Marshall + + Animated + Children + + + TVY + + + + PAW Patrol + Moto Pups: Pups Save the Donuts; Moto Pups: Pups Save the Kitties + When the Ruff-Ruff Pack steals Mr. Porter's mini-donut maker, the Moto Pups set off to get the machine back in one piece; the Ruff-Ruff Pack takes over Humdinger's lair and runs off with his kitties. + + Joey Nijem + Justin Paul Kelly + Kingsley Marshall + + Animated + Children + + + TVY + + + + PAW Patrol + Moto Pups: Pups Save a Moto Mayor + Mayor Goodway tries to change the Ruff-Ruff pack's naughty ways by pretending to be a bad biker. + + Beckett Hipkiss + Justin Paul Kelly + Kingsley Marshall + + Animated + Children + + + TVY + + + + PAW Patrol + Moto Pup: Pups Save a Sneezy Chase; Moto Pups: Rescue at Twisty Top Mesa + Moto Pups must rescue the baddies off the Twisty Top Mesa; Chase's cat allergies lead him to the desert, and he's trapped with the Ruff Ruff Pack. + + Beckett Hipkiss + Justin Paul Kelly + Kingsley Marshall + + Animated + Children + + + TVY + + + + The Secret Life of Pets + A domesticated terrier (Louis C.K.) and his unruly canine pal (Eric Stonestreet) encounter a rebellious bunny (Kevin Hart) and his gang of abandoned pets. + + Louis C.K. + Eric Stonestreet + Kevin Hart + + 2016 + Movies + Animated + + + TVG + + + 3 + + + + The Patrick Star Show + Now Museum, Now You Don't + Cecil works as a security guard at Lady Upturn's art museum. + + Bill Fagerbakke + Thomas F. Wilson + Cree Summer + + Animated + Children + + + TVY7 + + + + Dr. Seuss' the Lorax + To find the one thing that will win him the girl of his dreams, a boy (Zac Efron) delves into the story of a grumpy forest creature (Danny DeVito) who fights to protect his world. + + Danny DeVito + Ed Helms + Zac Efron + + 2012 + Movies + Animated + + + TVG + + + 2 + + + + SpongeBob SquarePants + Big Top Flop; Sandy, Help Us! + When the circus comes to town and steals his customers away, Mr. Krabs tries to sabotage the show; Sandy spends the day solving everyone's issues, only to return home to her own monster of a problem. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Free Samples; Home Sweet Rubble + Mr. Krab is forced to give out free food to win back customers; SpongeBob needs all of his friends to help him remodel his pineapple. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Man Ray Returns; Larry the Floor Manager + When Man Ray rents Squidward's house for the weekend, SpongeBob and Patrick must stop his evil vacation; Mr. Krabs takes a vacation and makes Larry the Lobster the temporary manager of the Krusty Krab. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Greasy Buffoons; Model Sponge + Mr. Krabs and Plankton woo customers with greasy entrees; SpongeBob tries to be a model in a kitchen sponge commercial. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Spatula of the Heavens; Gary's Playhouse + SpongeBob embarks on an epic journey to have his beloved spatula reforged by the legendary Guru Greasetrap; SpongeBob builds a snail-house outside for Gary to play in while he is at work. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + Friends + The One Where Dr. Ramoray Dies + Joey's comments in a magazine for soap-opera fans could mean the end of his role on. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The One Where Eddie Won't Go + Chandler wants his annoying new roommate (Adam Goldberg) to move out; Joey is facing some exorbitant bills; the girls learn from a book about personal empowerment. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One Where Old Yeller Dies + Monica's boyfriend proves to be the life of the party when he attends a basketball game with Chandler and Joey. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With the Bullies + Two bullies (Peter DeLuise, Nicky Katt) banish Ross and Chandler from Central Perk; Monica plays the stock market. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With Two Parties + Rachel's separated parents (Marlo Thomas, Ron Leibman) unexpectedly attend her surprise birthday party. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With the Chicken Pox + Phoebe's romantic meeting with an old friend (Charlie Sheen) is stalled by a case of the chickenpox; Ben celebrates his first birthday; Monica frets about her relationship with Richard (Tom Selleck). + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With Barry and Mindy's Wedding + When ex-fiance Barry and Mindy's wedding day arrives, bridesmaid Rachel has flashbacks of her own failed wedding day. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With the Princess Leia Fantasy + Monica is distraught after her break-up with Richard; Chandler and Janice begin seeing each other again; Ross tells Rachel and Chandler about his. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One Where No One's Ready + In a race against the clock, Ross tries to get the gang dressed and ready for a black-tie benefit at the museum. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With the Jam + Phoebe dates a man who thinks he's stalking her twin sister, Ursula; Ross and Rachel give Chandler. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Mike & Molly + Mike's Feet + After working too many double shifts together, Mike and Carl each find the other very annoying. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mike & Molly + Happy Halloween + Mike and Molly are invited to her boss's Halloween party -- a holiday Mike hates. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + Christmas + + + TV14 + + + + Mike & Molly + Mike Cheats + As Thanksgiving Day approaches, Mike starts to secretly cheat on his diet. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + Christmas + + + TV14 + + + + Mike & Molly + Christmas Break + Molly's disappointment about something at work gets in the way of the holiday spirit. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + Christmas + + + TV14 + + + + Mike & Molly + Valentine's Piggyback + After forgetting to prepare for Valentine's Day, Mike takes advantage of Carl's elaborate plans with Christina (Holly Robinson Peete). + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mom + A Dark Closet and Therapy With Horses + Bonnie reluctantly consults a therapist for help with her attention deficit disorder; Christy battles her urge to gamble on sports while helping out at the bar. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + Mom + Soup Town and a Little Blonde Mongoose + When Christy gets sick, Bonnie is consumed with an overwhelming urge to mother her. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + Mom + Lumbar Support and Old Pork + Bonnie has an unexpected reaction when she learns that Adam's bar is doing well; Christy and Tammy go on a double date. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + Mom + Triple Dip and an Overhand Grip + Bonnie and Tammy revisit childhood memories on a trip to their old foster home; Christy and Jill regret accepting a date with two guys from their Alcoholics Anonymous meetings. + + Anna Faris + Allison Janney + Mimi Kennedy + + Sitcom + + + TV14 + + + + SpongeBob SquarePants + Single-Celled Defense + Sick of being stepped on, Plankton learns self-defense from Sandy. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + PAW Patrol + Pups Save Gustavo's Guitar; Pups Save the Yoga Goats + The pups need to find Gustavo Goodway's missing guitar before the evening's campfire concert; Farmer Yumi's new yoga goat class is a hit, until her goats go missing. + + Jaxon Mercey + Justin Paul Kelly + Lukas Engel + + Animated + Children + + + TVY + + + + PAW Patrol + Mighty Pups vs. The Mighty Cheetah + The Cheetah snatches half of Chase's Meteor Crystal; Chase must stop the Cheetah and restore his crystal before anyone gets hurt. + + Kai Harris + Justin Paul Kelly + Christian Corrao + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save a Manatee; Pups Save Breakfast + Farmer Al and Farmer Yumi need help from the PAW Patrol to a get a manatee to the swamp; Mr. Porter and Alex get into a sticky situation involving maple syrup. + + Jaxon Mercey + Justin Paul Kelly + Lukas Engel + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save the Land Pirates; Pups Save the Birdwatching Turbots + When pirates Alex, Julia, Julius and Chick-ARR-letta set sail into the desert and become lost, it's up to the PAW Patrol to save the land pirates; Cap'n Turbot and Francois chirp for help when a bird-watching contest leaves them up in the air. + + Jaxon Mercey + Justin Paul Kelly + Lukas Engel + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save a Melon Festival; Pups Save a Cow + Mayor Humdinger's plan to win the giant melon contest goes off the rails when his. + + Jaxon Mercey + Justin Paul Kelly + Lukas Engel + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save a Freaky Pup-Day; Pups Save a Runaway Mayor + Chase and Chickaletta switch bodies and must learn to work together to return Cap'n Turbot's boat to the bay; Mayor Humdinger creates robotic pants to cheat at the Most Amazing Athlete Contest, but his invention soon goes haywire. + + Jaxon Mercey + Justin Paul Kelly + Lukas Engel + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Skate Park; The Crew Builds a Tunnel + The pups find out Auntie Crane is a secret skateboarding star, but while building a surprise skatepark, they have to fix a cement mix mishap; Charger's favorite singer, Sierra Sparkle, is coming to town. + + Luxton Handspiker + Michela Luci + Alessandro Pugiotto + + Animated + Children + + + TVY + + + + Rubble & Crew + The Crew Builds a Car Wash; The Crew Plans Grandpa Day + Mayor Greatway needs her muddy motorcycle cleaned fast, so Wheeler and the pups jump into action to build a solution before the big race; it's Grandpa Gravel's special day, but when the pups are needed, they have to change their Grandpa Day plans. + + Leslie Adlam + Luxton Handspiker + Alessandro Pugiotto + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Stop the Falling Space Junk + When Digi and Tal's space vacuum breaks, it's up to the pups to save Mayor Humdinger from falling space debris. + + Kai Harris + Justin Paul Kelly + Christian Corrao + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save a Runaway Rooster; Pups Save a Snowbound Cow + Chickaletta and Roosterio run away from a chicken show and get stuck on top of a runaway drone; When Bettina wanders up Jake's mountain and gets caught in a snowstorm, it's up to the Paw Patrol to bring her safely down. + + Beckett Hipkiss + Justin Paul Kelly + Kingsley Marshall + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Stop the Cheetah + The cheetah has a nefarious plan to destroy the jungle and build the cheating-est racetrack ever. + + Beckett Hipkiss + Justin Paul Kelly + Kingsley Marshall + + Animated + Children + + + TVY + + + + PAW Patrol + Sea Patrol: Pups Save a Water Walker; Sea Patrol: Pups Save a Windsurfer + Mayor Humdinger swipes Francois' water-walking shoes and ends up trapped in a pit-like turtle nest; the pups spring into action when a nearby volcano erupts. + + Beckett Hipkiss + Justin Paul Kelly + Kingsley Marshall + + Animated + Children + + + TVY + + + + PAW Patrol + Pups and Katie Stop the Barking Kitty Crew; Pups Save the Glasses + Mayor Humdinger disrupts Adventure Bay with his barking kitties; Katie and the pups rescue the town; Cap'n Turbot loses his glasses. + + Beckett Hipkiss + Justin Paul Kelly + Kingsley Marshall + + Animated + Children + + + TVY + + + + PAW Patrol + Pups Save a Chicken Tulip; Pups Stop an Xtreme Shark + When Mayor Humdinger and his mother help Mayor Goodway look for a rare tulip, Humdinger gets them all in trouble; the pups must save Daring Danny X when a mechanical shark stunt goes awry. + + Beckett Hipkiss + Justin Paul Kelly + Kingsley Marshall + + Animated + Children + + + TVY + + + + Dr. Seuss' the Lorax + To find the one thing that will win him the girl of his dreams, a boy (Zac Efron) delves into the story of a grumpy forest creature (Danny DeVito) who fights to protect his world. + + Danny DeVito + Ed Helms + Zac Efron + + 2012 + Movies + Animated + + + TVG + + + 2 + + + + SpongeBob SquarePants + Big Pink Loser; Bubble Buddy + Patrick begins to take over SpongeBob's life and identity; SpongeBob blows a bubble to keep him company. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Tentacle Vision; I Heart Dancing + Squidward gets his own public access television show; Squidward becomes jealous of SpongeBob and tries to sabotage his dance audition. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + The Clash of Triton + SpongeBob and his friends prepare for King Neptune's birthday party at the Krusty Krab. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Back to the Past; The Bad Guy Club for Villains + SpongeBob and Patrick go back in time to see the young Mermaid Man and Barnacle Boy; SpongeBob and Patrick watch their heroes fight bad guys. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + No Pictures, Please; Stuck on the Roof + Patrick leads an enthusiastic stranger on a tour of his favorite places in Bikini Bottom; SpongeBob is afraid to get off the roof of the Krusty Krab, but he will not let that stop him from living his life. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Jolly Lodgers; Biddy Sitting + After his house gets infested, Squidward checks into a hotel where a different kind of pest awaits him; SpongeBob and Patrick get duped into babysitting a grouchy old lady who keeps trying to escape. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Greasy Buffoons; Model Sponge + Mr. Krabs and Plankton woo customers with greasy entrees; SpongeBob tries to be a model in a kitchen sponge commercial. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + The Flower Pot; SpongeBob's on Parade + The Chum Bucket is replaced by a flower shop with a charming new owner; the Krusty Krab enters a float in the annual Bikini Bottom Parade. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + The Patrick Star Show + Which Witch is Which?; Get Off My Lawnie + Bunny's mother visits from the old country; Granny Tentacles gets her own spin-off show. + + Bill Fagerbakke + Thomas F. Wilson + Cree Summer + + Animated + Children + + + TVY7 + + + + Kamp Koral: SpongeBob's Under Years + What About Meep?; Hard Time Out + When an unsatisfied anchovy strays from his brothers, SpongeBob and Patrick must help him find his true identity; SpongeBob is sent to time-out on behalf of his buddy, so Patrick does what he can to rectify the situation. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Ghost Host; Chimps Ahoy + The Flying Dutchman takes up residence at SpongeBob's house; the beneficiaries of Sandy's treedome pay her a visit. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Have You Seen This Snail? + Gary runs away from home when SpongeBob forgets to feed him. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Naughty Nautical Neighbors; Boating School + Squidward turns SpongeBob and Patrick against each other; boat-driving exam. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Doodle Dimension; Moving Bubble Bass + SpongeBob and Patrick become trapped in an alternate dimension where anything they draw comes to life; SpongeBob and Patrick help Bubble Bass move out of his mother's basement. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Whale of a Birthday; Karate Island + Mr. Krabs wants to throw a birthday party for Pearl; SpongeBob receives an invitation to take part in a competition. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Whale of a Birthday; Karate Island + Mr. Krabs wants to throw a birthday party for Pearl; SpongeBob receives an invitation to take part in a competition. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + The Pink Purloiner; Squid Wood + SpongeBob suspects Patrick of stealing his jellyfishing net; SpongeBob builds a ventriloquist dummy modeled after Squidward. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + License to Milkshake; Squid Baby + SpongeBob is forced to go back to the milkshake academy when he learns that his milkshake license has expired; SpongeBob and Patrick must take care of Squidward when he reverts to being a baby. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Krusty Towers; Mrs. Puff, You're Fired + Mr. Krabs turns the Krusty Krab into a hotel; SpongeBob's record of failed boating tests causes Mrs. Puff to lose her job. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Life Insurance + After a misunderstanding, SpongeBob and Patrick attempt to prove their life insurance protects them from any danger. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Eek, an Urchin!; Squid's Defense + SpongeBob finds a sea urchin living in the Krusty Krab; Squidward convinces SpongeBob and Sandy to teach him karate. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Chum Bucket Supreme; Single Cell Anniversary + Plankton hires Patrick to create advertising slogans for the Chum Bucket; SpongeBob helps Plankton find the perfect anniversary gift for Karen. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + The Getaway; Lost and Found + When SpongeBob mistakes an escaped convict for his driving instructor, it is the new teacher who learns a lesson; Mr. Krabs sends SpongeBob in search of a missing toy, and SpongeBob finds himself lost in the lost-and-found. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Cave Dwelling Sponge; The Clam Whisperer + When a prehistoric sponge is unfrozen, he causes chaos all over town and only SpongeBob can communicate with him; when a flock of clams descend on Bikini Bottom, SpongeBob has to get them out before they ruin the whole town. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Free Samples; Home Sweet Rubble + Mr. Krab is forced to give out free food to win back customers; SpongeBob needs all of his friends to help him remodel his pineapple. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Feral Friends; Don't Wake Patrick! + A strange moon turns everyone in town into wild animals, and Sandy is the only one who can save them; Patrick is sleepwalking, and SpongeBob is unable to wake him up. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Restraining SpongeBob; Fiasco! + Squidward issues a restraining order against SpongeBob; Plankton mistakenly believes that a piece of art is a stolen krabby patty. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + The Loud House + A Bug's Strife; All the Rage + Dad tears the house apart trying to find the cricket ruining his peaceful day alone in the house; tired of getting pummeled during dodgeball, Lincoln and the gang use Clyde's untapped rage without him knowing. + + Grant Palmer + Catherine Taber + Liliana Mumy + + Animated + Children + + + TVY7 + + + + The Loud House + White Hare; Insta-gran + Lincoln has a plan for introducing himself to a new girl; Pop Pop introduces his new girlfriend to the family, and she seems great until she starts showing up unannounced. + + Grant Palmer + Caleel Harris + Catherine Taber + + Animated + Children + + + TVY7 + + + + NFL Slimetime + Week 9 + The end zones become the slime zone as former NFL player-turned-TV host Nate Burleson presents weekly NFL highlights like they've never been seen before. + Sports + Children + + + TVG + + + + The Loud House + Save the Last Pants; A Stella Performance + Rusty tries to bring the fun of Gus' to Duds For Dudes when he's in charge of the store; Stella wins a school competition and is super excited until she learns she has to give a public presentation. + + Grant Palmer + Catherine Taber + Liliana Mumy + + Animated + Children + + + TVY7 + + + + Monster High + Cleo in the Kitchen; Case of the Missing Squeak + Cleo is determined to make a home-cooked meal to cure Clawdeen's homesickness, but she can't do it alone; when Lagoona's beloved toy, Señor Squeaky, goes missing, Lagoona interrogates her friends to track down the culprit. + + Gabrielle Nevaeh Green + Courtney Lin + Iris Menas + + Animated + Children + + + TVY7 + + + + Monster High + Pet Problems; License to Rock + Cleo enlists Deuce and Frankie to help train her new pet snake, Hissette; the task is more challenging than they expect; Finnegan must overcome self-doubt and impress a raging kraken to become Monster High's band leader. + + Gabrielle Nevaeh Green + Courtney Lin + Iris Menas + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Hooky; Mermaid Man and Barnacle Boy II + Mr. Krabs warns SpongeBob to stay away from fish hooks; SpongeBob summons his favorite superheroes for so-called emergencies. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Mermaid Man and Barnacle Boy III; Squirrel Jokes + SpongeBob house-sits for Mermaid Man and Barnacle Boy; SpongeBob is a comedy sensation when he tells mean jokes. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + The Secret Box; Band Geeks + Not knowing the contents of Pat's secret box drives SpongeBob crazy; Squidward lies to an old rival about having a band. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Jellyfishing; Plankton + SpongeBob and Patrick take Squidward jellyfishing; SpongeBob is a victim of Plankton's scheme. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Treats!; For Here or to Go + SpongeBob brings home a box of new snail treats for Gary; when Plankton wins a free krabby patty, Mr. Krabs tries to keep him from collecting his prize. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Banned in Bikini Bottom; Stanley S. SquarePants + Miss Priss has krabby patties banned from Bikini Bottom; SpongeBob's clumsy cousin visits. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Goo Goo Gas; Le Big Switch + Plankton creates a gas that turns everyone at the Krusty Krab into babies; SpongeBob trades places with a French chef from a fancy restaurant. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + SquarePants Family Vacation + SpongeBob and Patrick get lost during a family road trip to the Great Barrier Reef. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Jellyfish Hunter; The Fry Cook Games + SpongeBob brings herds of jellyfish to Mr. Krabs; Patrick gets a job at the Chum Bucket and competes with SpongeBob in the Fry Cook Games. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Handemonium; Breakin' + Plankton's giant Chum Bucket glove runs wild in town, but SpongeBob has a handy friend to help them out; SpongeBob takes his first break ever at work. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + The Lost Mattress; Krabs vs. Plankton + SpongeBob, Patrick and Squidward buy Mr. Krabs a new mattress; Plankton sues Mr. Krabs after falling at the Krusty Krab. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Pineapple Invasion; Salsa Imbecilicus + When SpongeBob hides the secret krabby patty formula in his home, Gary must protect it from Plankton; Sandy must save the day when a freak accident causes everyone in town to become as stupid as Patrick. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + The Loud House + Hand-Me-Downer; The Loudest Yard; Health Kicked; Net Gains; Good Sports; On Thin Ice; Cow Pie Kid; F + The chaotic life of the only boy in a family with 10 sisters who each have unique personalities. + + Grant Palmer + Andre Robinson + Catherine Taber + + Animated + Children + + + TVY7 + + + + The Loud House + Sleuth or Consequences; Pulp Friction; Crimes of Fashion; Recipe for Disaster; Kings of the Con + The chaotic life of the only boy in a family with 10 sisters who each have unique personalities. + + Grant Palmer + Catherine Taber + Liliana Mumy + + Animated + Children + + + TVY7 + + + + The Loud House + Kick the Bucket List; Party Down + Lincoln and Clyde's spring break plans are put in jeopardy when they only have one day to complete their list; Lori throws a sophisticated party, but it backfires when her guests do not like what she has planned. + + Grant Palmer + Caleel Harris + Catherine Taber + + Animated + Children + + + TVY7 + + + + The Loud House + Sister Act; House Flip + To get out of doing things they don't like, Lana and Lola secretly switch places and pretend to be the other; after causing Flip to get hurt, the kids sneak him into the attic to care for him without Mom and Dad knowing. + + Grant Palmer + Andre Robinson + Catherine Taber + + Animated + Children + + + TVY7 + + + + The Loud House + Dine and Bash; Sofa, So Good + After failing to make chef Guy Grazer a meal on his show, the kids try to erase the footage before it airs; the kids search all over Royal Woods to find the missing furniture they left outside while cleaning. + + Grant Palmer + Catherine Taber + Liliana Mumy + + Animated + Children + + + TVY7 + + + + The Loud House + Friended! With the Casagrandes + Ronnie Anne makes friends with Sid, a girl whose family wants to rent the apartment upstairs; when it looks like another couple might get it first, the girls resort to sabotage to try and dissuade them. + + Grant Palmer + Andre Robinson + Catherine Taber + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Abandon Twits; Wallhalla + The Krusty Krew builds a boat for its penny-pinching captain; SpongeBob discovers a crazed castaway living in his walls. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + The Patrick Star Show + The Uncredible Journey; Host-a-Palooza + Tinkle, Ouchie, and Pinkeye must venture back home together after being taken away by mistake; Patrick gets injured, so his family members take turns hosting the show. + + Bill Fagerbakke + Thomas F. Wilson + Cree Summer + + Animated + Children + + + TVY7 + + + + Kamp Koral: SpongeBob's Under Years + Pat's a Li'l Sinker; Camp SpongeBob + Mrs. Puff gives swimming lessons to Patrick after realizing he never got his swim badge; SpongeBob finds himself all alone in the camp, but that doesn't stop him from having a blast. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Whale Watching; Krusty Kleaners + Mr. Krabs hires Squidward to babysit Pearl for the night, but she just wants to sneak out to a cool teen party; after spilling a milkshake during a delivery, SpongeBob vows to return and clean the entire building. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Sanitation Insanity; Bunny Hunt + When Mr. Krabs gets in trouble for littering, he makes SpongeBob and Squidward clean up Bikini Bottom; a sea bunny ravages Squidward's garden, but SpongeBob thinks it's cute. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + SpongeBob B.C. (Before Comedy) + In prehistoric Bikini Bottom, SpongeGar, Patar, and Squog discover fire. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + No Weenies Allowed; Squilliam Returns + SpongeBob tries to convince a bouncer that he is tough enough for the Salty Spitoon; Squidward's archenemy returns. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Squidward's School for Grown-Ups; Oral Report + Patrick decides to act like a grown-up when he grows a beard; SpongeBob realizes that he has stage fright while preparing to give an oral report for boating school. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + SpongeBob's Place; Plankton Gets the Boot + Mr. Krabs' customers abandon him when SpongeBob starts cooking at home; when Plankton gets kicked out of the house, SpongeBob must teach him how to win his computer wife back. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + The Bully; Just One Bite + SpongeBob discovers that Squidward has never actually tried a krabby patty; a bully threatens SpongeBob. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Call the Cops; Surf N' Turf + Plankton goes to jail, but the secret formula is taken as evidence, so SpongeBob and Mr. Krabs plot to get it back; Sandy struggles to build a ship-in-a-bottle before a big contest, so SpongeBob calls in a little extra help. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Blackened Sponge; Mermaid Man vs. SpongeBob + SpongeBob accidentally gives himself a black eye; Plankton brainwashes Mermaid Man and Barnacle Boy to wreak havoc on the Krusty Krab. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + The Krusty Bucket; Squid's on a Bus + Plankton creates a clone of himself and Mr. Krabs, but neither restaurant is safe from the newcomer; Squidward gleefully switches jobs with a bus driver for an easy ride, until SpongeBob and Patrick climb aboard. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Grandpappy the Pirate; Cephalopod Lodge + Mr. Krabs must pretend that he is a pirate when his grandfather comes to visit; SpongeBob discovers that Squidward is a member of a secret society and decides that he wants to join. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + High Sea Diving; Bottle Burglars + SpongeBob wants to be the first sponge to dive all the way up to the surface of the ocean; when SpongeBob and Squidward accidentally let Plankton steal the secret formula, it is up to them to steal it back. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Food Con Castaways; Snail Mail + The gang heads to a food convention, but things go awry when they become stranded in the woods; SpongeBob accidentally fibs to his pen pal, but when his friend comes to visit, he must keep the ruse going. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + The Fishbowl; Married to Money + When Sandy tries to study SpongeBob and Patrick's behavioral patterns, her science experiment goes awry; after following Plankton's advice, Mr. Krabs decides to marry the only thing he as ever loved - money. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Big Sister Sam; Perfect Chemistry + Patrick's big sister Samantha comes for a visit. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + The Sponge Who Could Fly + SpongeBob realizes he wants to fly with the jellyfish; Patchy uncovers a brand new episode of SpongeBob and then loses it. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Accidents Will Happen; The Other Patty + Squidward threatens to take legal action against Mr. Krabs when he gets hurt on the job; Mr. Krabs and Plankton find a common enemy in the new Flabby Patty restaurant. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + The Loud House + Bye Bye Birthday; Tough Guise + Lucy casts a spell; Rusty and the rest of their friends try to toughen Zach up. + + Grant Palmer + Catherine Taber + Liliana Mumy + + Animated + Children + + + TVY7 + + + + The Loud House + Music to my Fears; Fluff and Foiled + Luna and the Moon Goats have to find a replacement guitarist for the band when Luna injures her hands from playing; to make it to Udder Madness Day at Dairyland, Lincoln is determined to get laundry duty finished quickly. + + Grant Palmer + Catherine Taber + Liliana Mumy + + Animated + Children + + + TVY7 + + + + The Loud House + Everybody Loves Leni; Middle Men + Torn between her work friends and her school friends, Leni tries to bring everyone together; when Lincoln and Clyde go to tour the middle school, Lynn gives them some questionable advice. + + Grant Palmer + Andre Robinson + Catherine Taber + + Animated + Children + + + TVY7 + + + + The Loud House + How Double Dare You!; Snoop's On + The siblings turn to Lisa's intelligence to help them land a spot on. + + Grant Palmer + Andre Robinson + Catherine Taber + + Animated + Children + + + TVY7 + + + + The Loud House + Predict Ability; Driving Ambition + After discovering he has rituals, Lincoln worries he's predictable and vows to change things up; Lori develops the yips when she finds out that the golf coach from her dream college is coming to see her play. + + Grant Palmer + Andre Robinson + Catherine Taber + + Animated + Children + + + TVY7 + + + + The Loud House + The Price of Admission; One Flu Over the Loud House + Lincoln is unable to sleep after watching a scary movie, so he stays awake all night; when a common cold spreads through the Loud house, Lincoln believes his sisters have turned into zombies. + + Grant Palmer + Caleel Harris + Catherine Taber + + Animated + Children + + + TVY7 + + + + The Loud House + Potty Mouth; L Is for Love + When the children hear Lily curse, they become worried that they have been a bad influence on her; when a love letter addressed to L. Loud arrives, the family tries to figure out who it was meant for. + + Grant Palmer + Caleel Harris + Catherine Taber + + Animated + Children + + + TVY7 + + + + The Loud House + Wheel and Deal; Feast or Family + Lana and Lincoln enter to compete in a soap box derby; Luan must enroll in a culinary class. + + Grant Palmer + Andre Robinson + Catherine Taber + + Animated + Children + + + TVY7 + + + + The Loud House + Write and Wrong; Purrfect Gig + Mom tries to convince a newspaper editor that her kids are perfect in order to land a parenting advice column job; Luna is hired to watch the McBrides' cat when they go out of town, but the job becomes more demanding than she imagined. + + Grant Palmer + Andre Robinson + Catherine Taber + + Animated + Children + + + TVY7 + + + + The Loud House + Out of Step; Too Cool for School + Clyde and Nana Gayle are in stiff competition when they make the finals of a Grandmother/Grandson Dance Contest; Lincoln and friends need to get school back to normal when Principal Ramirez implements new fishy rules. + + Grant Palmer + Catherine Taber + Liliana Mumy + + Animated + Children + + + TVY7 + + + + The Casagrandes + I, Breakfast Bot; Dynamic Do-Over + Ronnie Anne and her cousins hatch a plan to have Sid's Breakfast Bot do all of their chores; when Carl's dreams are crushed after meeting El Falcon, Bobby decides to take on the role himself. + + Izabella Alvarez + Carlos PenaVega + Sumalee Montano + + Animated + Children + + + TVY7 + + + + The Casagrandes + Fails From the Crypt; Bad Cluck + The kids try to break a local record for staying in the cemetery overnight, and a haunted chicken pesters the family. + + Izabella Alvarez + Carlos PenaVega + Sumalee Montano + + Animated + Children + + + TVY7 + + + + The Casagrandes + Home Improvement; Undivided Attention + Laird is nervous to host movie night at his house, so Ronnie Anne helps him pretend Arturo's pad is his own; Carlota can't seem to pay attention to anything but her phone, so Carlos sets her up with a math tutor. + + Izabella Alvarez + Carlos PenaVega + Sumalee Montano + + Animated + Children + + + TVY7 + + + + The Casagrandes + Guilt Trip; Short Cut + Ronnie Anne and her primos try to win a trip around the world for Maria; when Carlota fails at hair cutting, she trains with CJ, the master barber. + + Izabella Alvarez + Carlos PenaVega + Sumalee Montano + + Animated + Children + + + TVY7 + + + + The Loud House + School's Out With the Loud House! + Funny back-to-school moments with Lincoln and the gang. + + Grant Palmer + Catherine Taber + Liliana Mumy + + Animated + Children + + + TVY7 + + + + The Patrick Star Show + Super Stars + The Star Family are a team of superheroes. + + Bill Fagerbakke + Thomas F. Wilson + Cree Summer + + Animated + Children + + + TVY7 + + + + The Patrick Star Show + The Star Games + Patrick hosts a series of game shows. + + Bill Fagerbakke + Thomas F. Wilson + Cree Summer + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Someone's in the Kitchen With Sandy; The Inside Job + Plankton steals Sandy's pelt to impersonate her; Plankton tries to launch himself into Mr. Krabs' head and misses his target. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Sandy's Rocket; Squeaky Boots + Sandy Cheeks takes a rocket ship into space; Mr. Krabs gives SpongeBob a pair of squeaky boots. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Something Smells; Bossy Boots + SpongeBob's breath smells after he eats sea onion ice cream; Mr. Krabs gives his daughter Pearl a job at Krusty Krab. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Bubble Bass's Tab; Kooky Cooks + Bubble Bass avoids paying his bill at the Krusty Krab, so SpongeBob and Squidward are sent to collect the cash; Mr. Krabs makes Spongebob and Squidward cook a fancy meal for Mrs. Puff, but every dish becomes a dispute. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + The Slumber Party; Grooming Gary + Mr. Krabs interferes with Pearl's slumber party preparations; SpongeBob decides to give Gary a makeover before entering him in a pet show. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + The Loud House + Present Danger; Stressed for the Part + Dressed as David Steele, Lincoln is on the hunt for his stolen birthday present before it's destroyed; after landing a role in a Dairyland production, Luan must hide this news from Mrs. Bernardo, whom she beat out. + + Grant Palmer + Catherine Taber + Liliana Mumy + + Animated + Children + + + TVY7 + + + + The Loud House + The Loud House Thanksgiving Special + Lincoln and Clyde help each other plan the perfect Thanksgiving dinner, from prepping and cooking to eating and enjoying. + + Grant Palmer + Catherine Taber + Liliana Mumy + + Animated + Children + + + TVY7 + + + + The Loud House + Director's Rut; Friday Night Fights + Luan turns to Mr. Coconuts for help after she struggles to direct her school's play; Lisa joins Lynn's football team as the analytics coach to prove that math will always beat out heart. + + Grant Palmer + Andre Robinson + Catherine Taber + + Animated + Children + + + TVY7 + + + + The Loud House + Diss the Cook; For Sale by Loner + Lincoln is convinced the middle school lunch lady is holding a grudge against him and his older sisters; Mr. Grouse attempts to find some peace and quiet after moving away from the Louds. + + Grant Palmer + Andre Robinson + Catherine Taber + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Swimming Fools; The Goobfather + SpongeBob builds a pool in his backyard, and Squidward tries to resist taking a dip; Mr. Krabs must reckon with the Goobfather after he adds patty whips to the menu. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + The Patrick Star Show + Super Stars + The Star Family are a team of superheroes. + + Bill Fagerbakke + Thomas F. Wilson + Cree Summer + + Animated + Children + + + TVY7 + + + + Kamp Koral: SpongeBob's Under Years + Quest for Tire; A Cabin of Curiosities + The weekly food delivery truck goes missing, so the campers must hunt it down like their primal ancestors; a mysterious cabin of odd campers have frightful fun with SpongeBob and Patrick after dark. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + The Incredible Shrinking Sponge; Sportz? + SpongeBob must figure out how to do his job after accidentally shrinking himself; Squidward invents a new sport to get back at SpongeBob and Patrick for annoying him. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Food PBBFT! Truck; Upturn Girls + SpongeBob and Squidward try to sell krabby patties from a food truck in the darkest depths of the ocean; Pearl and Narlene have a whales' day out in the big city. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Squidtastic Voyage; That's No Lady + Squidward swallows his clarinet reed; Patrick disguises himself as a girl. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + SpongeBob's House Party + SpongeBob micromanages an all-out shindig for the denizens of Bikini Bottom. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + A Cabin in the Kelp; The Hankering + The Gal Pals take Pearl to a cabin in the woods for a weekend of silly pranks; Mr. Krabs has a secret taste for something surprising. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + FarmerBob; Gary & Spot + SpongeBob and Patrick work a day on Old Man Jenkins' farm, much to his dismay; Sandy narrates the nocturnal adventures of Gary and his secret pal, Spot. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + The Inmates of Summer; To Save a Squirrel + SpongeBob and Patrick accidentally board a ship full of prisoners; SpongeBob and Patrick find themselves left behind on one of Sandy's extreme wilderness expeditions. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Karen 2.0; InSPONGEiac + Plankton replaces his computer wife with a new version; SpongeBob asks Patrick to help him fall asleep. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + The Nasty Patty; The Idiot Box + Mr. Krabs and SpongeBob hide the health inspector's body; SpongeBob and Patrick throw out their new TV and keep the box. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + SpongeBob Meets the Strangler; Pranks a Lot + SpongeBob turns in a litterbug to the police; SpongeBob and Patrick buy invisible spray from the local prank shop. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Sailor Mouth; Artist Unknown + SpongeBob uses a. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Barnacle Face; Pet Sitter Pat + Mr. Krabs asks SpongeBob to help Pearl get rid of a barnacle on her face; SpongeBob asks Patrick to watch Gary while he's away. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Giant Squidward; No Nose Knows + Squidward turns into a giant after he is sprayed with plant growth spray; Patrick decides that he wants a nose. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Krabby Patty Creature Feature; Teacher's Pests + A new secret krabby patty formula has disastrous results for Bikini Bottom, and only SpongeBob can save the day; Mr. Krabs and Plankton have to take boating school classes. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Pre-Hibernation Week; Life of Crime + SpongeBob hides from Sandy; SpongeBob and Patrick borrow a balloon from a store and accidentally pop it. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Goofy Scoopers; Pat the Dog + SpongeBob and Patrick make it their mission to reunite the recently fired robot band from Goofy Goober's; Patrick is sent to the pound for acting like a worm, but he won't be able to leave unless SpongeBob can train him. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Delivery to Monster Island; Ride Patrick Ride + SpongeBob and Plankton must work together to survive an island of deadly monsters; SpongeBob teaches Patrick how to ride a bike. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + The Loud House + Waking History; Pranks Fore Nothing + Eager to uncover secrets from the past, Lisa uses her technology to wake up a frozen caveman; to win the prank war between Fairway University and their rival Par College, Lori recruits the help of Luan. + + Grant Palmer + Catherine Taber + Liliana Mumy + + Animated + Children + + + TVY7 + + + + The Loud House + Loudest Summer Vacation + Rocking out and making a splash with the Louds and Casagrandes for a loud summer vacation. + + Grant Palmer + Catherine Taber + Liliana Mumy + + Animated + Children + + + TVY7 + + + + The Loud House + ARGGH! You for Real?; Garage Banned + Lincoln and Clyde find out that. + + Grant Palmer + Caleel Harris + Catherine Taber + + Animated + Children + + + TVY7 + + + + The Loud House + Selfie Improvement; No Place Like Homeschool + When Carol Pingrey's photograph gets more. + + Grant Palmer + Caleel Harris + Catherine Taber + + Animated + Children + + + TVY7 + + + + The Loud House + How the Best Was Won; Animal House + A competition creates a rift; Lana struggles to find homes for the exotic pets at the Royal Woods Animal Shelter before they're moved out. + + Grant Palmer + Andre Robinson + Catherine Taber + + Animated + Children + + + TVY7 + + + + The Loud House + Washed Up; Recipe for Disaster + The Louds rent a boat for a relaxing day trip on the lake, but the family ends up marooned on a desert island; Lincoln and Clyde, as Ace and Jack, investigate when they discover a frozen food company is using Dad's recipes. + + Grant Palmer + Andre Robinson + Catherine Taber + + Animated + Children + + + TVY7 + + + + The Loud House + Tricked! + For Halloween, Lincoln and Clyde have scoped out a fancy neighborhood to make their dreams of scoring full-size candy bars a reality; Lucy is putting on a haunted maze and the younger girls scheme to get maximum candy. + + Grant Palmer + Caleel Harris + Catherine Taber + + Animated + Children + + + TVY7 + + + + The Loud House + Cover Girls; Save the Date + Lincoln has his hands full when all 10 of his sisters ask him to cover for them on the same day; Bobby and Lori go on a double date with Lincoln and Bobby's little sister, Ronnie Anne. + + Grant Palmer + Caleel Harris + Catherine Taber + + Animated + Children + + + TVY7 + + + + The Loud House + The Last Laugh; Driver's Dread + Luan thinks Mr. Coconuts is out for revenge when she replaces him with Lola in her act; hoping to drive out to the outlets to meet Lori, Leni looks for alternative ways to get her driver's license. + + Grant Palmer + Catherine Taber + Liliana Mumy + + Animated + Children + + + TVY7 + + + + The Casagrandes + Kick Some Bot; Salvador Doggy + Ronnie Anne, an independent, adventurous, 11-year-old, explores city life with her big, loving, multi-generational Mexican American family. + + Izabella Alvarez + Carlos PenaVega + Sumalee Montano + + Animated + Children + + + TVY7 + + + + The Casagrandes + Operation Popstar + Ronnie Anne and Sid try to get Yoon Kwan's autograph and Carlota helps Alisa prepare for the Great Lakes City Music Festival. + + Izabella Alvarez + Carlos PenaVega + Sumalee Montano + + Animated + Children + + + TVY7 + + + + The Casagrandes + Grandparent Trap; Miss Step + Ronnie Anne thinks her grandparents' marriage is in trouble after watching a relationship talk show; Ronnie Anne learns the art of baile folklorico. + + Izabella Alvarez + Carlos PenaVega + Sumalee Montano + + Animated + Children + + + TVY7 + + + + The Casagrandes + Slink or Swim; The Big Chill + When Bobby finds out Carl can't swim, he offers to show him the ways of the waves; after begging Abuelo for some air conditioning, the cousins decide to earn some cash at the neighborhood fair. + + Izabella Alvarez + Carlos PenaVega + Sumalee Montano + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + No Free Rides; I'm Your Biggest Fanatic + SpongeBob fails his driving test again; SpongeBob and Patrick go to a jellyfishing convention. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Pizza Delivery; Home Sweet Pineapple + SpongeBob and Squidward become stranded in the desert while delivering a pizza; SpongeBob loses his pineapple home. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Hello Bikini Bottom! + Mr. Krabs decides to manage SpongeBob and Squidward's world tour. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Your Shoe's Untied; Squid's Day Off + Patrick and SpongeBob learn to tie their shoes; Squidward is in charge of the Krusty Krab. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + The Patrick Star Show + Now Museum, Now You Don't + Cecil works as a security guard at Lady Upturn's art museum. + + Bill Fagerbakke + Thomas F. Wilson + Cree Summer + + Animated + Children + + + TVY7 + + + + The Patrick Star Show + Super Stars + The Star Family are a team of superheroes. + + Bill Fagerbakke + Thomas F. Wilson + Cree Summer + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Spongicus; Suctioncup Symphony + Plankton builds a coliseum and holds a gladiator show; SpongeBob and Patrick keep Squidward from concentrating on his music. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + The Krusty Sponge; Sing a Song of Patrick + SpongeBob becomes a local sensation after a food critic gives him high ratings; SpongeBob helps Patrick promote a song that he wrote. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Hall Monitor; Jellyfish Jam + SpongeBob takes his turn as hall monitor; SpongeBob brings home a wild jellyfish. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Texas; Walking Small + Sandy Squirrel is homesick; Plankton tries to get SpongeBob to be mean. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Born to Be Wild; Best Frenemies + SpongeBob must protect the town from a ferocious biker gang; Mr. Krabs and Plankton work together to infiltrate a new smoothie shop. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + The Loud House + Loud Family Gets Loud + Lincoln and his family shake things up with their craziest family moments. + + Grant Palmer + Caleel Harris + Catherine Taber + + Animated + Children + + + TVY7 + + + + The Loud House + Camped! + When Dad discovers that his childhood camp is closing, he decides to take the family for one final visit; they soon uncover a map that could lead to a treasure big enough to save the camp and prove the existence of an old camp legend. + + Grant Palmer + Andre Robinson + Catherine Taber + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Hot Crossed Nuts; Sir Urchin and Snail Fail + Sandy's homemade snack becomes a big hit at the Krusty Krab; SpongeBob and Patrick's favorite comedy duo has a falling out on live television. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + The Patrick Star Show + Now Museum, Now You Don't + Cecil works as a security guard at Lady Upturn's art museum. + + Bill Fagerbakke + Thomas F. Wilson + Cree Summer + + Animated + Children + + + TVY7 + + + + Kamp Koral: SpongeBob's Under Years + Midnight Snack Attack; Hot Pearl-tato + After SpongeBob and Patrick eat a secret snack experiment, Plankton must reverse the monstrous side effects. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Money Talks; SpongeBob vs. the Patty Gadget; Slimy Dancing + Mr. Krabs wishes that he could talk to money; SpongeBob competes against a patty-making machine; Squidward trains SpongeBob for a dance contest. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + The Two Faces of Squidward; Spongehenge + Squidward is rushed to the hospital when SpongeBob accidentally slams the door on his face; the music that comes from the wind blowing through SpongeBob's holes attracts jellyfish. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Bubbletown; Girls' Night Out + SpongeBob visits his old pal Bubble Buddy's hometown, Bubbletown; Sandy invites Karen and Mrs. Puff out for a night on the town, so the ladies decide to blow off some steam. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Drive Thru; The Hot Shot + Mr. Krabs turns a hole in the wall of his restaurant into a drive-through window; a famous race car driver's son teaches SpongeBob how to drive. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Roller Cowards; Bucket Sweet Bucket + SpongeBob and Patrick fear a new roller coaster; Plankton tricks SpongeBob, Patrick and Squidward into fixing up the Chum Bucket. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Rise and Shine & Waiting; Fungus Among Us + SpongeBob sends away for a free toy; SpongeBob comes down with a case of contagious sea fungus. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Culture Shock; F.U.N + Squidward and SpongeBob plan a talent show; SpongeBob thinks Plankton is lonely. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Welcome to the Chum Bucket; Frankendoodle + SpongeBob goes to work at the Chum Bucket; SpongeBob creates SpongeDoodle, who plays pranks on everyone, forcing SpongeBob to erase him. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + The Nasty Patty; The Idiot Box + Mr. Krabs and SpongeBob hide the health inspector's body; SpongeBob and Patrick throw out their new TV and keep the box. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Penny Foolish; Nautical Novice + Mr. Krabs becomes obsessed when he thinks that SpongeBob has found a penny; SpongeBob tries to memorize the history of boating in one night. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Boating Buddies; The Krabby Kronicle + Squidward gets caught speeding and is sent to boating school; Mr. Krabs launches a tabloid newspaper. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Help Wanted; Reef Blowers; Tea at the Treedome + SpongeBob applies for a job as a fry cook at Krusty Krab; Squidward's lawn; SpongeBob meets Sandy Cheeks. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Spy Buddies; Boat Smarts; Good Ol' Whathisname + Mr. Krabs sends SpongeBob and Patrick to spy on Plankton; Squidward and SpongeBob make an instructional video on boating techniques; Mr. Krabs holds a contest. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Survival of the Idiots; Dumped + SpongeBob and Patrick sneak into the Treedome; Gary follows Patrick around, and SpongeBob becomes jealous. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Goodbye, Krabby Patty? + Mr. Krabs manufactures krabby patties on an industrial scale, but it drives a wedge between SpongeBob and Patrick. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Super Evil Aquatic Villain Team Up Is Go!; Chum Fricassee + Plankton teams up with Man Ray to take over the Krusty Krab and then the world. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + SpongeBob SquarePants + Chocolate With Nuts; Superfriends + When SpongeBob and Pat sell candy bars door to door, they end up buying more than they sell; superheroes visit. + + Tom Kenny + Bill Fagerbakke + Rodger Bumpass + + Animated + Children + + + TVY7 + + + + The Loud House + Don't You Fore-get About Me; Tough Cookies + Hit by the realization that her big sister will be going off to college soon, Leni tries to thwart Lori's plans; Lincoln and Clyde start their own cookie-making business, but realize it's a lot more work than they realized. + + Grant Palmer + Andre Robinson + Catherine Taber + + Animated + Children + + + TVY7 + + + + The Loud House + Leave No Van Behind; Sponsor Tripped + When Vanzilla seems too broken down to ever drive again, Lana, Dad and Gramps band together to fix her; Lynn and friends enjoy free perks around Royal Woods when their team gets sponsored by local businesses. + + Grant Palmer + Catherine Taber + Liliana Mumy + + Animated + Children + + + TVY7 + + + + The Loud House + Driving Miss Hazy; No Guts, No Glori + Finally tired of doing favors for Lori to get rides, Lincoln decides to help Leni pass her driver's test; Lincoln and nine of his sisters work as a team to thwart the tyranny they face with Lori as their babysitter. + + Grant Palmer + Caleel Harris + Catherine Taber + + Animated + Children + + + TVY7 + + + + The Loud House + Future Tense; Lynner Takes All + After meeting an impressive family, the Loud parents worry that their children are not doing enough to ensure successful futures; tired of Lynn's poor sportsmanship during board games, the siblings decide to team up to take her down. + + Grant Palmer + Caleel Harris + Catherine Taber + + Animated + Children + + + TVY7 + + + + The Loud House + Candy Crushed; Master of Delusion + Lola struggles to dampen her sweet tooth when mom challenges her to go an entire week without added sugar; Lincoln strives to impress the Amazing Brailster when he's chosen to be his assistant at the Illusion Chateau. + + Grant Palmer + Catherine Taber + Liliana Mumy + + Animated + Children + + + TVY7 + + + + The Loud House + Lincoln Loud: Girl Guru; Come Sale Away + Lincoln and Clyde must start a business for a class assignment, so they decide to sell Lincoln's girl expertise; the children are determined to out-sell each other at the Loud family's annual garage sale. + + Grant Palmer + Caleel Harris + Catherine Taber + + Animated + Children + + + TVY7 + + + + The Loud House + House Music; A Novel Idea + Lincoln's family forms a band when he signs them up for a talent show; Lincoln's mother offers to take him to the dental office where she works while his sisters go to work with their father. + + Grant Palmer + Caleel Harris + Catherine Taber + + Animated + Children + + + TVY7 + + + + The Loud House + Don't Escar-go; Double Trouble + When Clyde receives an opportunity to study cooking in France, the gang tries to keep him closer to home; Lola and Lana take on Cheryl and Meryl for the position of twin spokespeople for Auntie Pam's Parlor. + + Grant Palmer + Catherine Taber + Liliana Mumy + + Animated + Children + + + TVY7 + + + + The Loud House + Tails of Woe; The Last Loud on Earth + When Stella's music box disappears at school, the gang immediately suspects a student urban legend known as the Rat Beast; after a night of zombie movies, Clyde and Lincoln find an empty Loud house and assume it's a zombie apocalypse. + + Grant Palmer + Andre Robinson + Catherine Taber + + Animated + Children + + + TVY7 + + + + The Loud House + Cheer Pressure; Stroke of Luck + The cheerleaders challenge Lynn and her teammates to a cheer-off when Lynn dismisses them as athletes; Lori becomes a celebrity at school when she hits a hole-in-one on a notoriously difficult course. + + Grant Palmer + Catherine Taber + Liliana Mumy + + Animated + Children + + + TVY7 + + + + The Casagrandes + Zoo-mergency! + After a zoo fundraiser goes wrong, Sid must save the day with her family. + + Izabella Alvarez + Carlos PenaVega + Sumalee Montano + + Animated + Children + + + TVY7 + + + + The Casagrandes + Alpaca Lies; Rocket Plan + Ronnie Anne and Bobby have to deal with an old friend of Arturo's, Beto the alpaca, but Beto has it out for the kids; Abuelo helps CJ build a rocket, but when things aren't going well, Abuelo tells a little fib to preserve CJ's feelings. + + Izabella Alvarez + Carlos PenaVega + Sumalee Montano + + Animated + Children + + + TVY7 + + + + The Casagrandes + Chancla Force; Fluff Love + Carlitos goes on a wild adventure to get his favorite stuffed animal from an arcade; Carl takes Rosa's chancla, calling the Chancla Force into action. + + Izabella Alvarez + Carlos PenaVega + Sumalee Montano + + Animated + Children + + + TVY7 + + + + The Casagrandes + Battle of the Grandpas; Prankaversary + When Frida's fun dad comes to visit, Hector tries to win back his grandchildren's attention; Ronnie Anne and Lincoln are set for a big day of pranks, and newbie Sid wants to join in on the fun too. + + Izabella Alvarez + Carlos PenaVega + Sumalee Montano + + Animated + Children + + + TVY7 + + + + The Loud House + Overnight Success; Ties That Bind + Lincoln invites Clyde to a sleepover, but gets jealous when Clyde wants to spend time with his sisters; Lincoln eavesdrops on his parents and thinks they have decided to get rid of their children. + + Grant Palmer + Caleel Harris + Catherine Taber + + Animated + Children + + + TVY7 + + + + The Loud House + Deal Me Out; Friendzy + Lincoln and Clyde worry that they may be too old to still be playing Ace Savvy; Lincoln discovers that having a friend over means getting special privileges, and he takes advantage of that. + + Grant Palmer + Andre Robinson + Catherine Taber + + Animated + Children + + + TVY7 + + + + The Loud House + House of Lies; Game Boys + After witnessing an excess of lying in the family, Lisa invents lie-detecting glasses to try and curb the fibs; Lincoln asks to borrow Clyde's new gaming system, but Clyde struggles to trust that it's safe with him. + + Grant Palmer + Andre Robinson + Catherine Taber + + Animated + Children + + + TVY7 + + + + The Loud House + Day of the Dad; Small Blunder + Lori struggles to make a good impression on Bobby's dad after accidentally pushing him into a puddle; desperate to have the best show-and-tell in class, Lily takes Lisa's shrink ray to school. + + Grant Palmer + Catherine Taber + Liliana Mumy + + Animated + Children + + + TVY7 + + + + House Hunters + Couple Wants Space for a Stripper Pole in the New Jersey Suburbs + After years of renting in Teaneck, N.J., a family is ready to buy a house. + Reality TV + + + TVG + + + + House Hunters + Daughter Wants Style but Mom Questions Her Wish list in Dallas + Candace wants a stylish home that is easy to maintain. + Reality TV + + + TVG + + + + Love & Marriage: Huntsville + Where There's Smoke There's Marsau + Three high-powered couples come together for a joint real estate venture, the Comeback Group, in Huntsville, Ala. + Reality TV + + + TV14 + + + + Love & Marriage: Huntsville + Not About to KeKe and Haha + Three high-powered couples come together for a joint real estate venture, the Comeback Group, in Huntsville, Ala. + Reality TV + + + TV14 + + + + Love & Marriage: Huntsville + Holt Her Accountable + Three high-powered couples come together for a joint real estate venture, the Comeback Group, in Huntsville, Ala. + Reality TV + + + TV14 + + + + All Rise + Pretty Ugly + Los Angeles judges, prosecutors and public defenders work to get justice for the people amidst a flawed legal process. + + Simone Missick + Wilson Bethel + Marg Helgenberger + + Drama + Legal + + + TV14 + + + + OWN Spotlight + Oprah & Nicole Avant + Oprah has an intimate conversation with filmmaker and philanthropist Nicole Avant; Nicole shares the terrifying moment of learning that her beloved mother, Jacqueline, had been killed in her own home, and how she navigated that devastating loss. + Docu-Series + + + TV14 + + + + Love & Marriage: Huntsville + Holt Her Accountable + Three high-powered couples come together for a joint real estate venture, the Comeback Group, in Huntsville, Ala. + Reality TV + + + TV14 + + + + All Rise + Pretty Ugly + Los Angeles judges, prosecutors and public defenders work to get justice for the people amidst a flawed legal process. + + Simone Missick + Wilson Bethel + Marg Helgenberger + + Drama + Legal + + + TV14 + + + + OWN Spotlight + Oprah & Nicole Avant + Oprah has an intimate conversation with filmmaker and philanthropist Nicole Avant; Nicole shares the terrifying moment of learning that her beloved mother, Jacqueline, had been killed in her own home, and how she navigated that devastating loss. + Docu-Series + + + TV14 + + + + OWN Spotlight + Oprah & Nicole Avant + Oprah has an intimate conversation with filmmaker and philanthropist Nicole Avant; Nicole shares the terrifying moment of learning that her beloved mother, Jacqueline, had been killed in her own home, and how she navigated that devastating loss. + Docu-Series + + + TV14 + + + + Love & Marriage: Huntsville + Where There's Smoke There's Marsau + Three high-powered couples come together for a joint real estate venture, the Comeback Group, in Huntsville, Ala. + Reality TV + + + TV14 + + + + Love & Marriage: Huntsville + Holt Her Accountable + Three high-powered couples come together for a joint real estate venture, the Comeback Group, in Huntsville, Ala. + Reality TV + + + TV14 + + + + Dr. Phil + Love-Stoned: My Daughter Is Addicted to a Toxic Man! + Rebecca, 19, dropped out of college and left her job to spend 24/7 with her aggressive boyfriend, who blames a lesion on his brain for his anger and rage. + Talk Shows + + + TV14 + + + + Dr. Phil + Family Divided: Torn Between Two Men + Betty says Philip wanted an open marriage, and she met and fell in love with Kevin, so Philip abuses her because her behavior makes him angry; Susan and Brad discuss how they successfully navigated through their divorce while running their company. + Talk Shows + + + TV14 + + + + Dr. Phil + DNA Drama: A Family in Turmoil + Amanda's at-home DNA test led to the discovery of three new sisters and a different dad; all four sisters and their shared biological father come together to see if they have a deeper connection than simply genetics. + Talk Shows + + + TVPG + + + + Dr. Phil + The Trouble With Taylor + Taylor says she drinks hard liquor every weekend until she. + Talk Shows + + + TVPG + + + + Dr. Phil + NY Fireman Fired Over Girlfriend Scandal + A fireman accused of assaulting his transgender model girlfriend. + Talk Shows + + + TVPG + + + + Dr. Phil + I Believe My Husband Is Romancing Women Online and Being Catfished. Help Me, Dr. Phil, to Stop Him F + Kristine wants her estranged husband to stop sending money to random women he meets online, depleting their finances and endangering the family home; he says she is physically abusive. + Talk Shows + + + TV14 + + + + Dr. Phil + DUIs and Dementia: Inside David Cassidy's Secret Battle + In his final television interview, former teen heartthrob David Cassidy sits down with Dr. Phil to discuss his announcement that he is battling dementia and address rumors that he was intoxicated during a recent performance.Guests: David Cassidy.. + Talk Shows + + + TVPG + + + + Super Soul Sunday + Malcolm Gladwell + Oprah Winfrey sits down with author Malcolm Gladwell to discusses his new book,Guests: Malcolm Gladwell.. + Lifestyle + Documentary + + + TVPG + + + + Super Soul Sunday + Quarterback Tom Brady on Legacy & Longevity + NFL quarterback Tom Brady discusses his possible legacy, revealing what he believes is the key to his longevity and success. + Lifestyle + + + TVPG + + + + House Hunters + Growing a Family in Houston + Brandon and his wife Tenya moved from Detroit to warmer climates in Houston last year, falling in love with the area but now they hope to start a family and need to get out of their one-bedroom rental and buy a home with room to grow. + Reality TV + + + TVG + + + + House Hunters + Making the Move in Memphis + A woman's budget may hinder her search for a house in downtown Memphis, Tenn. + Reality TV + + + TVG + + + + House Hunters + First the House, Then the Wedding + College sweethearts want to buy a house in St. Louis before getting married. + Reality TV + + + TVG + + + + House Hunters + Young and Picky Single Looks for a Family-Sized Home in Atlanta + A woman has a huge wish list for her first home and a budget large enough to accommodate most items. + Reality TV + + + TVG + + + + House Hunters + Newly-Single Professor Wants a Fresh Start in an Alabama Home + A woman wants to find a bachelorette pad in Montgomery, Ala. + Reality TV + + + TVG + + + + House Hunters + Chicago Couple Wants Deck to Deep Fry Turkeys + A couple wants to find their first home in Chicago. + Reality TV + + + TVG + + + + House Hunters + NASA Employee Looks for Huge Home in Houston + A man wants to create the ultimate bachelor pad in the Houston suburbs. + Reality TV + + + TVG + + + + House Hunters + Low Budget Blues in Memphis + Newlyweds with a long wish list have high hopes for their Memphis, Tenn., house search. + Reality TV + + + TVG + + + + House Hunters + Drama in Dallas + A woman is ready to leave an apartment and find a house in Dallas. + Reality TV + + + TVG + + + + House Hunters + Grandioso on a Budget-oso in Atlanta + A couple wants a grandioso house on a budget in Atlanta. + Reality TV + + + TVG + + + + 20/20 on OWN + CutThroat, Inc. -- Part One + News Magazine + + + TV14 + + + + 20/20 on OWN + CutThroat, Inc. -- Part Two + News Magazine + + + TV14 + + + + 20/20 on OWN + Love, Interrupted + Sara Johnson's parents didn't approve of her boyfriend; when they're found dead, Sara becomes a suspect. + News Magazine + + + TV14 + + + + 20/20 on OWN + The Wolfpack + Six brothers are confined to a small New York City apartment for 14 years by their father; they watch thousands of movies before one brother decides to break free. + News Magazine + + + TV14 + + + + 20/20 on OWN + Wrongful Revenge + A husband's obsession with the divorce movie. + News Magazine + Reality TV + + + TV14 + + + + 20/20 on OWN + Femme Fatale + A crime scene replica, evidence and jailhouse interview point to revenge in the case of Jodi Arias; a widow stands at the heart of a fatal triangle between her murdered husband and his pastor, the accused. + News Magazine + + + TV14 + + + + 20/20 on OWN + Love, Interrupted + Sara Johnson's parents didn't approve of her boyfriend; when they're found dead, Sara becomes a suspect. + News Magazine + + + TV14 + + + + 20/20 on OWN + The Wolfpack + Six brothers are confined to a small New York City apartment for 14 years by their father; they watch thousands of movies before one brother decides to break free. + News Magazine + + + TV14 + + + + 20/20 on OWN + Wrongful Revenge + A husband's obsession with the divorce movie. + News Magazine + Reality TV + + + TV14 + + + + 20/20 on OWN + Femme Fatale + A crime scene replica, evidence and jailhouse interview point to revenge in the case of Jodi Arias; a widow stands at the heart of a fatal triangle between her murdered husband and his pastor, the accused. + News Magazine + + + TV14 + + + + Dr. Phil + DNA Drama: A Family in Turmoil + Amanda's at-home DNA test led to the discovery of three new sisters and a different dad; all four sisters and their shared biological father come together to see if they have a deeper connection than simply genetics. + Talk Shows + + + TVPG + + + + Dr. Phil + The Trouble With Taylor + Taylor says she drinks hard liquor every weekend until she. + Talk Shows + + + TVPG + + + + Dr. Phil + My Mom Is the Worst Mom in History! + Elora says that when she was going through difficult teen years, her mother put her in the psych ward three times and even put her in foster care, and she fears for her young brother and niece, who currently live with her mother. + Talk Shows + + + TV14 + + + + Dr. Phil + My Fiance Believes He's a Superhero + Kalan is desperate for Dr. Phil's help because her fiance has taken on the persona of a superhero and will answer only to. + Talk Shows + + + TVPG + + + + Dr. Phil + Making a Murderer Exposed + Defense attorney Jerry Buting, former prosecutor Ken Kratz and co-lead investigator Tom Fassbender reunite to discuss the case that inspired the Netflix docuseries. + Talk Shows + + + TVPG + + + + Dr. Phil + Slashed Tires, Affairs, Harassment: Dr. Phil, Help Me Escape My Co-Parenting Nightmare! + Bobby calls his ex-wife, Andrea, a liar, a thief and a sex addict who exposes their 6-year-old son to her lifestyle; Andrea and her current boyfriend call Bobby a deadbeat father who harasses her and accuse him of slashing her tires. + Talk Shows + + + TV14 + + + + Dr. Phil + Police Called 100 Times on Our Car-Stealing, Drug-Taking, Dad-Beating, Beautiful 15-Year-Old, Who Is + Parents say they fear for their family's lives, as 15-year-old Madison assaults them, uses drugs, and was in a high-speed car chase that ended in the car being totaled. + Talk Shows + + + TV14 + + + + Dr. Phil + My Sister Is a Cult Leader Who Claims She's Mother God + Chelsea has been writing to Dr. Phil for years because, she says, her sister Amy left the family, started calling herself. + Talk Shows + + + TV14 + + + + Dr. Phil + A Dangerous Dilemma: I Still Love My Husband, Even Though He Has Slapped My Face, Tried to Head-Butt + Cindy says she still loves her husband, despite their marriage being full of fights, assault and calls to the police; a violent incident happened between her husband and their eldest son the day before the show taped. + Talk Shows + + + TV14 + + + + Judge Mathis + A grandmother says she hasn't seen her son in four months and sues him for car damages and an iPhone; he says he asked her not to post pictures of his baby on social media, and that's why they haven't spoken. + Reality TV + Legal + + + TVPG + + + + Judge Mathis + A man sues his cousin for the balance due on a car; the cousin countersues, saying the plaintiff came to his home and threatened to fight him in front of his wife and children. + Reality TV + Legal + + + TVPG + + + + Judge Mathis + The plaintiff thinks both defendants are her half-sisters, but one of them doesn't believe it -- so she petitioned the court for a sibling DNA test. + Reality TV + Legal + + + TVPG + + + + 20/20 on OWN + CutThroat, Inc. -- Part One + News Magazine + + + TV14 + + + + 20/20 on OWN + CutThroat, Inc. -- Part Two + News Magazine + + + TV14 + + + + 20/20 on OWN + Love, Interrupted + Sara Johnson's parents didn't approve of her boyfriend; when they're found dead, Sara becomes a suspect. + News Magazine + + + TV14 + + + + 20/20 on OWN + The Wolfpack + Six brothers are confined to a small New York City apartment for 14 years by their father; they watch thousands of movies before one brother decides to break free. + News Magazine + + + TV14 + + + + 20/20 on OWN + A Child is Taken + Seven-year-old Somer Thompson went missing on her way home from school; she was found dead two days later. + News Magazine + Reality TV + + + TV14 + + + + 20/20 on OWN + Tragedy on TV + Two journalists are murdered on-air, the killer's identity is revealed by the camera's last image; a story emerges of a reporter whose career filled with early promise spiraled into disappointment, rage, and a delusional desire for deadly revenge. + News Magazine + + + TV14 + + + + 20/20 on OWN + Family Business + An armored truck driver and his family commit a series of heists, eluding authorities for more than a decade; when one of them starts flashing money around, their plan for living the good life begins to crumble. + News Magazine + + + TV14 + + + + 20/20 on OWN + Memory and Mystery + Twelve years after a brutal attack, a woman undergoes hypnosis to recover memories of the man who assailed her; new DNA technology uses a single drop of blood to paint a portrait of a suspect, and police close in on an arrest. + News Magazine + Reality TV + + + TV14 + + + + 20/20 on OWN + A Child is Taken + Seven-year-old Somer Thompson went missing on her way home from school; she was found dead two days later. + News Magazine + Reality TV + + + TV14 + + + + 20/20 on OWN + Tragedy on TV + Two journalists are murdered on-air, the killer's identity is revealed by the camera's last image; a story emerges of a reporter whose career filled with early promise spiraled into disappointment, rage, and a delusional desire for deadly revenge. + News Magazine + + + TV14 + + + + 20/20 on OWN + Family Business + An armored truck driver and his family commit a series of heists, eluding authorities for more than a decade; when one of them starts flashing money around, their plan for living the good life begins to crumble. + News Magazine + + + TV14 + + + + 20/20 on OWN + Memory and Mystery + Twelve years after a brutal attack, a woman undergoes hypnosis to recover memories of the man who assailed her; new DNA technology uses a single drop of blood to paint a portrait of a suspect, and police close in on an arrest. + News Magazine + Reality TV + + + TV14 + + + + Dr. Phil + My Mom Is the Worst Mom in History! + Elora says that when she was going through difficult teen years, her mother put her in the psych ward three times and even put her in foster care, and she fears for her young brother and niece, who currently live with her mother. + Talk Shows + + + TV14 + + + + Dr. Phil + A Dangerous Dilemma: I Still Love My Husband, Even Though He Has Slapped My Face, Tried to Head-Butt + Cindy says she still loves her husband, despite their marriage being full of fights, assault and calls to the police; a violent incident happened between her husband and their eldest son the day before the show taped. + Talk Shows + + + TV14 + + + + Dr. Phil + A Once Successful Wife, Mother and Entrepreneur Loses It All: What Went Wrong? + Amber says her ideal life suddenly spiraled out of control, and after she hit rock bottom, childhood memories of being abused by her parents resurfaced. + Talk Shows + + + TVPG + + + + Dr. Phil + My Sister Is a Cult Leader Who Claims She's Mother God + Chelsea has been writing to Dr. Phil for years because, she says, her sister Amy left the family, started calling herself. + Talk Shows + + + TV14 + + + + Dr. Phil + Private Planes, Black-Tie Parties, Elite Sporting Events: The Shocking Story of One Woman's Life in + Kendall says her parents sold her at birth to a powerful international sex trafficker, and since her escape three years ago, she has feared that the man who. + Talk Shows + + + TV14 + + + + Dr. Phil + Double Trouble: Two Teen Sisters and Their Backstage Drama + Madison's parents say she now corrupts her 13-year-old sister, who has harsh words for them as emotions run high. + Talk Shows + + + TV14 + + + + Dr. Phil + I Want Answers! Did My Son's Best Friend Pull the Trigger?' + Christina believes the wrong person was convicted of killing her son, Steffin. + Talk Shows + + + TV14 + + + + Dr. Phil + Mother God's Followers and Alleged Victims Face Off + Amy says she is. + Talk Shows + + + TV14 + + + + Dr. Phil + The College Student, the Frat Boy and the Football Tailgate Party That Ended in Rape: The Exclusive + A young woman tells of being brutally raped, then tricked into saying that she had consensual sex, and the charges against her rapist being temporarily dropped; her lawyer and a police veteran tell how she was finally given justice. + Talk Shows + + + TV14 + + + + Judge Mathis + A woman sues her ex-boyfriend for stolen money and emotional distress, since he left and never returned; he says she is so obsessed with him that she took his last name even though they aren't married, and he countersues for emotional distress. + Reality TV + Legal + + + TVPG + + + + Judge Mathis + The defendant admits that after her sister mistreated their mother, she broke her windows to teach her a lesson; the plaintiff sues her sister for the cost of an iPad. + Reality TV + Legal + + + TVPG + + + + Judge Mathis + Plaintiff wants the court to issue a DNA test to find out if she and the defendant share the same father. + Reality TV + Legal + + + TVPG + + + + Dr. Phil + My Constant Battle to Not Become a Serial Killer + John says he has urges to torture, kill and dismember people, and he admires his former pen pal, serial killer Arthur Shawcross; Shawcross' daughter and first victim's sister try to change John's mind about him. + Talk Shows + + + TV14 + + + + Dr. Phil + My Wife Tricked Me Into Getting a Divorce + Doug blames his former steroid addiction for causing him to have an affair with an 18-year-old cheerleader; Amy says Doug was always an abusive husband, and he is using their children to manipulate her and pressure her to reconcile. + Talk Shows + + + TV14 + + + + Dr. Phil + An Intense Intervention: I'm Addicted to Pain Pills, but Not an Addict + Nate was shocked after returning home to find his mother, 52, looking like a frail old woman due to an opioid addiction; she told Dr. Phil's producers she wants to get help for her. + Talk Shows + + + TVPG + + + + Dr. Phil + Private Planes, Black-Tie Parties, Elite Sporting Events: The Shocking Story of One Woman's Life in + Kendall says her parents sold her at birth to a powerful international sex trafficker, and since her escape three years ago, she has feared that the man who. + Talk Shows + + + TV14 + + + + Deadline: Crime With Tamron Hall + Murder in the Mellen Patch + The Los Angeles police suspect gang violence after they discover a body set on fire in an alley. The case takes a dramatic turn when the investigators decide to act on a tip-off. + News Magazine + + + TV14 + + + + Deadline: Crime With Tamron Hall + Missing Blue Eyes + After 12-year-old Courtney LeBlanc is kidnapped from her home, her family fears she's fallen prey to a serial killer, but investigators enlist the help of the FBI, and their search brings to light a predator hiding in plain sight. + News Magazine + + + TV14 + + + + Deadline: Crime With Tamron Hall + Vanishing on I-95 + A woman vanishes while driving on I-95 in Florida; her divorce leads police one way, then her body is found, suggesting a different more horrible path; another woman reads about the case and has a hunch she knows the killer. + News Magazine + + + TV14 + + + + Deadline: Crime With Tamron Hall + Shot in the Dark + Twenty-eight-year-old U.S. Army veteran Joey Fulgham is shot dead in his bed in May 2003; police have a lot of ground to cover with a large number of suspects, including Joey's wife, her jealous boyfriend and even her protective teenage brother. + News Magazine + + + TV14 + + + + Deadline: Crime With Tamron Hall + Murder in the Mellen Patch + The Los Angeles police suspect gang violence after they discover a body set on fire in an alley. The case takes a dramatic turn when the investigators decide to act on a tip-off. + News Magazine + + + TV14 + + + + Deadline: Crime With Tamron Hall + Missing Blue Eyes + After 12-year-old Courtney LeBlanc is kidnapped from her home, her family fears she's fallen prey to a serial killer, but investigators enlist the help of the FBI, and their search brings to light a predator hiding in plain sight. + News Magazine + + + TV14 + + + + Deadline: Crime With Tamron Hall + Vanishing on I-95 + A woman vanishes while driving on I-95 in Florida; her divorce leads police one way, then her body is found, suggesting a different more horrible path; another woman reads about the case and has a hunch she knows the killer. + News Magazine + + + TV14 + + + + Deadline: Crime With Tamron Hall + Shot in the Dark + Twenty-eight-year-old U.S. Army veteran Joey Fulgham is shot dead in his bed in May 2003; police have a lot of ground to cover with a large number of suspects, including Joey's wife, her jealous boyfriend and even her protective teenage brother. + News Magazine + + + TV14 + + + + Dr. Phil + A Once Successful Wife, Mother and Entrepreneur Loses It All: What Went Wrong? + Amber says her ideal life suddenly spiraled out of control, and after she hit rock bottom, childhood memories of being abused by her parents resurfaced. + Talk Shows + + + TVPG + + + + Dr. Phil + The College Student, the Frat Boy and the Football Tailgate Party That Ended in Rape: The Exclusive + A young woman tells of being brutally raped, then tricked into saying that she had consensual sex, and the charges against her rapist being temporarily dropped; her lawyer and a police veteran tell how she was finally given justice. + Talk Shows + + + TV14 + + + + Dr. Phil + My Husband Fathered a Love Child With Another Woman: I Married a Real-Life Dr. Jekyll and Mr. Hyde + Terry keeps his wife and mistress, and their children, secret from each other; he claims he has memory loss and does not recollect many details of his affairs. + Talk Shows + + + TV14 + + + + Dr. Phil + Mother God's Followers and Alleged Victims Face Off + Amy says she is. + Talk Shows + + + TV14 + + + + Dr. Phil + My Constant Battle to Not Become a Serial Killer + John says he has urges to torture, kill and dismember people, and he admires his former pen pal, serial killer Arthur Shawcross; Shawcross' daughter and first victim's sister try to change John's mind about him. + Talk Shows + + + TV14 + + + + Dr. Phil + My Wife Tricked Me Into Getting a Divorce + Doug blames his former steroid addiction for causing him to have an affair with an 18-year-old cheerleader; Amy says Doug was always an abusive husband, and he is using their children to manipulate her and pressure her to reconcile. + Talk Shows + + + TV14 + + + + Dr. Phil + An Intense Intervention: I'm Addicted to Pain Pills, but Not an Addict + Nate was shocked after returning home to find his mother, 52, looking like a frail old woman due to an opioid addiction; she told Dr. Phil's producers she wants to get help for her. + Talk Shows + + + TVPG + + + + Dr. Phil + Mother Knows Best: The Story of Gypsy Rose (Part 1) + The doctor gives self-help advice and strategies for a healthy life. + Talk Shows + + + TV14 + + + + Dr. Phil + A Tragic Death, a $3 Million Settlement and a Mom Out of Control + Alyssa's family say that since her husband's death she has spun out of control, drinking, partying and spending excessively; she exhibits unusual behavior with the show's staff. + Talk Shows + + + TV14 + + + + Judge Mathis + The plaintiff says he took his older sister's son into his home and never asked for a dime, and in return, his sister tried to fight his girlfriend, so he's suing her for an insurance deductible. + Reality TV + Legal + + + TVPG + + + + Judge Mathis + A woman says her ex's dog ate her diamond earring; he says he warned her about the dog, but she still left her jewelry where the animal could get it. + Reality TV + Legal + + + TVPG + + + + Judge Mathis + The plaintiff paid the defendant to rent his outdoor venue for an event, but she had to cancel due to the weather, so she sues to get her money back; he denies owing any money and countersues for lost wages. + Reality TV + Legal + + + TVPG + + + + Only the Brave + The Granite Mountain Hotshots become one of the most elite firefighting teams in the country. Watching over lives, homes and everything people hold dear, they forge a unique brotherhood that comes into focus with one fateful fire in Yarnell, Ariz. + + Josh Brolin + Miles Teller + Jeff Bridges + + 2017 + Movies + Drama + + + TVG + + + 3 + + + + Only the Brave + The Granite Mountain Hotshots become one of the most elite firefighting teams in the country. Watching over lives, homes and everything people hold dear, they forge a unique brotherhood that comes into focus with one fateful fire in Yarnell, Ariz. + + Josh Brolin + Miles Teller + Jeff Bridges + + 2017 + Movies + Drama + + + TVG + + + 3 + + + + Hollywood Weapons + Terry's Reindeer Game + Terry and Larry test a scene from. + Drama + + + TVPG + + + + Hollywood Weapons + Ex-Men: The Origin of Terry + Terry and Larry test a famous scene from an X-Men film; they attempt to see if one can split a bullet with a katana sword. + Drama + + + TVPG + + + + Hollywood Weapons + Ex-Men: The Origin of Terry + Terry and Larry test a famous scene from an X-Men film; they attempt to see if one can split a bullet with a katana sword. + Drama + + + TVPG + + + + American Made + Ruger Arms: Part 2 + The modern-era story of one of America's most successful firearm manufacturers. + Documentary + Food + + + TVPG + + + + Ranch America + This is River Klass + River Klass, a rancher and restauranteur, shows how American beef gets to the dinner table. + Regular + + + + Life on the Edge + Charlie Summerville goes missing at sea attempting to deliver construction materials by boat; Pat and Connie Harvie have to deal with an invasion of volcano scientists at America's remotest ranch. + Regular + + + TVPG + + + + Bill Dance Outdoors + The Best Tool for the Job + Bill shows how sometimes a spinnerbait in the tackle box can be the best tool for catching bass. + Sports + Outdoors + + + TVG + + + + Sporting Classics with Chris Dorsey + Colorado Combo Hunt in the Clouds + It's a high-altitude hunt for deer and elk for three close friends in the rugged mountains of southern Colorado. + Sports + Outdoors + + + + Drop Zone + Heading West + With the Missouri rifle season coming to a close, Greg Zipadelli and Hal Shaffer leave their Missouri lease and head west to Nebraska. + Sports + Hunting + + + TVG + + + + Swarovski Optik Quests + New Mexico Elk Rut + Elk hunting in the prime of the rut in New Mexico at the Mescalero Apache Reservation. + Sports + Outdoors + + + + The Fowl Life With Chad Belding + Fast Ducks and Freedom + The Fowl Life Crew heads to Flatline Outfitters in Oklahoma with a host of special guests. The hunting action is fast and the camplife is one for the books. + Sports + Outdoors + + + + The Flush + Dream Team Hunt + Scott Fransen and the team gather in western Minnesota to chase wild pheasants on public land. + + Ron Schara + + Sports + Hunting + + + TVPG + + + + Bill Dance Outdoors + The Best Tool for the Job + Bill shows how sometimes a spinnerbait in the tackle box can be the best tool for catching bass. + Sports + Outdoors + + + TVG + + + + Reel in the Outdoors + La Pesca es mi vida! + Is this Heaven? Kinda... Anglers Inn on Mexico's Lake El Salto. + Sports + Fishing + + + + Critical Mass + Make it Snappy + Rifle season whitetail hunts in Nebraska, Missouri and Kentucky. + Sports + Outdoors + + + TVPG + + + + Bow Madness + Meet in the Middle + Jimmy Holbrook rallies his enthusiasm for the whitetail deer after a string of misfortunes threaten to derail his season. + Sports + Outdoors + + + TVPG + + + + Drury's Thirteen + Texas Takeover + Mark and Taylor Drury get an invite to hunt Texas and successfully take two mature bucks. + Sports + Outdoors + + + TVPG + + + + The Gamekeepers of Mossy Oak + Wild Turkey Talk II + South Dakota Game, Fish, and Parks Biologist Dr. Chad Lehman talks Merriam turkeys and Dr. Dwayne Elmore of OSU explains the overall behavior of the Rio Grande subspecies. Hear more on Gamekeeper podcasts #144 and #142. + Sports + Hunting + + + + Wild Boar Fever: Spain + Caceria por la Tarde + Driven shooting from Spain and a look at Spanish culture. + Sports + Hunting + + + + Sporting Classics with Chris Dorsey + Colorado Combo Hunt in the Clouds + It's a high-altitude hunt for deer and elk for three close friends in the rugged mountains of southern Colorado. + Sports + Outdoors + + + + Drop Zone + Heading West + With the Missouri rifle season coming to a close, Greg Zipadelli and Hal Shaffer leave their Missouri lease and head west to Nebraska. + Sports + Hunting + + + TVG + + + + Swarovski Optik Quests + New Mexico Elk Rut + Elk hunting in the prime of the rut in New Mexico at the Mescalero Apache Reservation. + Sports + Outdoors + + + + The Choice + Remarkable Roll Tide Bucks! + Late season Alabama buck action with Ralph & Vicki. + Sports + Outdoors + + + TVG + + + + Addicted to the Outdoors + Florida Osceolas and Exotics + The Brunsons have the Browning guys down in Florida to do some turkey hunting. + Sports + Outdoors + + + + American Archer + New Friends + Tom Nelson hunts with some new friends in Kansas. + Sports + Outdoors + + + + The Bucks of Tecomate + Mark Works His Magic in Alabama + Mark turned this Alabama tract into a whitetail mecca, and it's now payoff time. + Sports + Outdoors + + + TVPG + + + + American Made + Ruger Arms: Part 2 + The modern-era story of one of America's most successful firearm manufacturers. + Documentary + Food + + + TVPG + + + + Ranch America + This is River Klass + River Klass, a rancher and restauranteur, shows how American beef gets to the dinner table. + Regular + + + + Life on the Edge + Charlie Summerville goes missing at sea attempting to deliver construction materials by boat; Pat and Connie Harvie have to deal with an invasion of volcano scientists at America's remotest ranch. + Regular + + + TVPG + + + + MLF General Tire Team Series + 2023 Bass Pro Shops Championship Match 1 - Day 1 + Three teams compete in Florida for Match 1 of the Bass Pro Shops Championship to advance to the Championship Final. + Regular + + + TV14 + + + + MLF All Angles + Inside the Team Series Championship - Match 1, Day 1 + All Angles inside look at the Team Series Championship Match 1, Day 1 with angler commentary. + Regular + + + + Jim Shockey's Shock Therapy + Peter Baljet - Part 1 + Jim sits down with his good friend Peter Baljet, a non hunter who tagged along with Jim on a 3 week adventure to Russia. You wont want to miss this! + Sports + Hunting + + + + Winchester Life + Another Legend is Born + On opening day of the 2022 Missouri Firearm Season, the 400 Legend made its way into the corn fields and onto the timbered ridges for the very first time with Team Winchester in hopes to test the new cartridge on a whitetail buck. + Regular + + + + Live 2 Hunt With Cody & Kelsy + Moose on the loose + There is nothing like moose hunting. Cody has taken some giant moose in the Yukon but never in his home province. After over a decade of waiting for a tag, this is his chance and it's full of close encounters, including four bulls under 30 yards! + Sports + Outdoors + + + + Crush With Lee & Tiffany + Skyscrapper 200 + It's early season whitetail hunting in Iowa and Lee has his SIG Optics sights on a giant deer that lives right behind the new house. + Sports + Outdoors + + + TVPG + + + + Gregg Ritz's Hunt Masters + Made in Maine + Gregg Ritz lands a coveted Northern Maine Moose tag and has encounters with Traditions on his home turf of New England. + Sports + Hunting + + + + Realtree Outdoors + The Hunt for Mr. Perfect + Tyler Jordan pursues a beautiful Nebraska whitetail he's dubbed Mr. Perfect. + Sports + Outdoors + + + TVPG + + + + Bone Collector + Elk Song + There's elk meat on the Hooray Grill in Oregon. + Sports + Outdoors + + + TVG + + + + Buckmasters + OK-4BO KS + Jackie takes a nice buck in Oklahoma with a muzzleloader at 4BOutfitters then Jacob Landry takes his family hunting in Kansas. + Sports + Hunting + + + TVG + + + + Primos Truth About Hunting + Pt 1- Team Primos Chases Whitetail + Team Primos chases whitetail deer at our home camp, Five Mile, with Brad and Jimmy. + Sports + Outdoors + + + TVG + + + + Winchester Life + Another Legend is Born + On opening day of the 2022 Missouri Firearm Season, the 400 Legend made its way into the corn fields and onto the timbered ridges for the very first time with Team Winchester in hopes to test the new cartridge on a whitetail buck. + Regular + + + + Live 2 Hunt With Cody & Kelsy + Moose on the loose + There is nothing like moose hunting. Cody has taken some giant moose in the Yukon but never in his home province. After over a decade of waiting for a tag, this is his chance and it's full of close encounters, including four bulls under 30 yards! + Sports + Outdoors + + + + Crush With Lee & Tiffany + Skyscrapper 200 + It's early season whitetail hunting in Iowa and Lee has his SIG Optics sights on a giant deer that lives right behind the new house. + Sports + Outdoors + + + TVPG + + + + Gregg Ritz's Hunt Masters + Made in Maine + Gregg Ritz lands a coveted Northern Maine Moose tag and has encounters with Traditions on his home turf of New England. + Sports + Hunting + + + + Realtree Outdoors + The Hunt for Mr. Perfect + Tyler Jordan pursues a beautiful Nebraska whitetail he's dubbed Mr. Perfect. + Sports + Outdoors + + + TVPG + + + + Bone Collector + Elk Song + There's elk meat on the Hooray Grill in Oregon. + Sports + Outdoors + + + TVG + + + + Buckmasters + OK-4BO KS + Jackie takes a nice buck in Oklahoma with a muzzleloader at 4BOutfitters then Jacob Landry takes his family hunting in Kansas. + Sports + Hunting + + + TVG + + + + Primos Truth About Hunting + Pt 1- Team Primos Chases Whitetail + Team Primos chases whitetail deer at our home camp, Five Mile, with Brad and Jimmy. + Sports + Outdoors + + + TVG + + + + Winchester Life + Another Legend is Born + On opening day of the 2022 Missouri Firearm Season, the 400 Legend made its way into the corn fields and onto the timbered ridges for the very first time with Team Winchester in hopes to test the new cartridge on a whitetail buck. + Regular + + + + Live 2 Hunt With Cody & Kelsy + Moose on the loose + There is nothing like moose hunting. Cody has taken some giant moose in the Yukon but never in his home province. After over a decade of waiting for a tag, this is his chance and it's full of close encounters, including four bulls under 30 yards! + Sports + Outdoors + + + + Crush With Lee & Tiffany + Skyscrapper 200 + It's early season whitetail hunting in Iowa and Lee has his SIG Optics sights on a giant deer that lives right behind the new house. + Sports + Outdoors + + + TVPG + + + + Gregg Ritz's Hunt Masters + Made in Maine + Gregg Ritz lands a coveted Northern Maine Moose tag and has encounters with Traditions on his home turf of New England. + Sports + Hunting + + + + Realtree Outdoors + The Hunt for Mr. Perfect + Tyler Jordan pursues a beautiful Nebraska whitetail he's dubbed Mr. Perfect. + Sports + Outdoors + + + TVPG + + + + Addicted to the Outdoors + Florida Osceolas and Exotics + The Brunsons have the Browning guys down in Florida to do some turkey hunting. + Sports + Outdoors + + + + Jim Shockey's Uncharted + A Land of Nothing + Jim journeys to the drought-stricken Namib desert on a quest to find the isolated Himba Tribe. + Sports + Outdoors + + + TVPG + + + + The Lindsey Way + Rut Script + Jeff's Iowa season comes together in the hardwoods as he rattles in an ancient buck to the tree. + Sports + Outdoors + + + + Addicted to the Outdoors + Jon and Gina's First Aoudad Hunt + The Brunsons are headed to one of their favorite states to hunt, Texas, courtesy of 1776 Ammo; they'll be hunting a new ranch this time, as well as targeting an entirely different species; Aoudad, something neither of them have hunted before. + Sports + Outdoors + + + TVG + + + + Whitetail Freaks + Top Ten Buckdown #5 + The buck took on more than it realized. + Sports + Outdoors + + + TVPG + + + + The Bucks of Tecomate + Monster Quest on Cactus Jack Ranch + David Shashy embarks on a marathon hunt for a record buck on famous Cactus Jack Ranch. + Sports + Outdoors + + + TVPG + + + + Swarovski Optik Quests + California Blacktail + Trophy Blacktail Deer hunting in Northern California. + Sports + Outdoors + + + + The Flush + Trampled By Birds + Travis Frank hunts ruffed grouse and woodcock in Wisconsin's northwoods with a dedicated team from Pheasants Forever and Dave Simonett from the band Trampled by Turtles. + + Ron Schara + + Sports + Hunting + + + TVPG + + + + The Fowl Life With Chad Belding + Fast Ducks and Freedom PT.2 + The Fowl Life Crew heads to Flatline Outfitters in Oklahoma with a host of special guests. The hunting action is fast and the camplife is one for the books. + Sports + Outdoors + + + + Wild Upland + Season Highlights + Hosts Kali Parmley and Nathan Ratchford take viewers through the highlights of the first season of. + Sports + Hunting + + + + Winchester Life + Melissa + Ride along with Team Winchester's Melissa Bachman as she takes us on a wild ride chasing big game across North America. + Regular + + + + Jim Shockey's Shock Therapy + Peter Baljet - Part 2 + Peter Baljet has never been on a hunt in his life, so when he joined his friend Jim Shockey on a once in a lifetime adventure to Russia, he knew he was in for the challenge of his life. + Sports + Hunting + + + + Drop Zone + Winding Down + As the hunting season is coming to a close, the Drop Zone team spends some quality time together in Nebraska and Virginia. + Sports + Hunting + + + + Sporting Classics with Chris Dorsey + Bolivia's Savage Golden Dorado + The Dorsey family cast flies to hard-fighting golden dorado at a remote lodge in the jungles of lowland Bolivia. + Sports + Outdoors + + + + Bone Collector + Elk Song + There's elk meat on the Hooray Grill in Oregon. + Sports + Outdoors + + + TVG + + + + Bowlife + Levis Luck + Levi is back at Cactus Jack in South Texas; Levi stares in the eyes of his biggest buck to date. + Sports + Outdoors + + + + The Choice + Mastering the Osceola Gobblers + Fantastic Florida springtime gobbler action. + Sports + Outdoors + + + TVG + + + + North American Whitetail + Made for the Muzzleloader + North American whitetail team captain says his goodbyes with a great late muzzleloader hunt in the Cornhusker State. + Sports + Outdoors + + + TVG + + + + McMillan + Kansas Closeout + Tom's clients make good in Kansas. + Sports + Outdoors + + + + Raised Hunting + Enjoy It + David, Easton and Warren take a look at Warren's whitetail career. + Sports + Outdoors + + + TVPG + + + + Eastman's Hunting TV + Mule Deer Hunt with the Eastmans' + Eastmans' annual family mule deer hunt in Wyoming's sagebrush sea. + Sports + Outdoors + + + TVG + + + + Live 2 Hunt With Cody & Kelsy + Hunter + Hunter Frankfurt is a passionate bowhunter; she pursues moose and mule deer with her bow. + Sports + Outdoors + + + + Crush With Lee & Tiffany + October Lull, Alberta Highs + Hunter Jobs, Brad Treu, and his son Braden all battle the ups and downs of whitetail hunting in October and Lee heads up to Alberta for an archery Mule deer hunt. + Sports + Outdoors + + + TVPG + + + + The One + Grigsby Archery + It's November in Illinois and the rut is finally here at Grigsby Farm. The bucks are out chasing does and there are rubs and scrapes everywhere. + Sports + Outdoors + + + + Jim Shockey's Uncharted + A Land of Nothing + Jim journeys to the drought-stricken Namib desert on a quest to find the isolated Himba Tribe. + Sports + Outdoors + + + TVPG + + + + Farming the Wild + England's Fall Fallow Rut + Mike culls big bucks; Mike guides fellow hunter Jalmar in search of master bucks. + Food + + + TVPG + + + + Man Eats Wild + Argentina Asado + Mario sets out into the La Pampa region of Argentina to share the bounty of hard work harvesting wild food over a classic Asado with a beautiful local family. + Sports + Hunting + + + TVPG + + + + MeatEater + Hawaii Spearfishing + Steve and Ryan Callaghan meet with Kimi Werner and Danny Bolton on the Big Island to dive in the deep blue for mahi mahi and wahoo. + Sports + Outdoors + + + TV14 + + + + Nick's Wild Ride With Nick Hoffman + Bobsleds and Bugles + Nick gets a ride in an Olympic bobsled and hunts bugling elk deep in the mountains of Utah. + Regular + + + + Andrew Zimmern's Wild Game Kitchen + Goat + Chef Andrew butchers a whole goat, using the leg and backstrap for a braised curry while keeping some of the goat's offal for a grilled snack; he completes the meal with rice pilaf with caramelized onions and a tomato and cucumber salad. + Sports + Outdoors + + + + The Sporting Chef + Small Bites. Wild Flavors + Stacy Lyn Harris prepares Venison Meatballs and Ale Gravy Rolls, Goose Pastrami and Venison skewers with Peanut Sauce. Also on the show are Brad Fenson, Harvesting Nature, Kyle Owens, Susie Jimenez, Bama Grill Master and Buddy. + Food + + + + Farming the Wild + England's Fall Fallow Rut + Mike culls big bucks; Mike guides fellow hunter Jalmar in search of master bucks. + Food + + + TVPG + + + + Man Eats Wild + Argentina Asado + Mario sets out into the La Pampa region of Argentina to share the bounty of hard work harvesting wild food over a classic Asado with a beautiful local family. + Sports + Hunting + + + TVPG + + + + MeatEater + Hawaii Spearfishing + Steve and Ryan Callaghan meet with Kimi Werner and Danny Bolton on the Big Island to dive in the deep blue for mahi mahi and wahoo. + Sports + Outdoors + + + TV14 + + + + Nick's Wild Ride With Nick Hoffman + Bobsleds and Bugles + Nick gets a ride in an Olympic bobsled and hunts bugling elk deep in the mountains of Utah. + Regular + + + + Andrew Zimmern's Wild Game Kitchen + Goat + Chef Andrew butchers a whole goat, using the leg and backstrap for a braised curry while keeping some of the goat's offal for a grilled snack; he completes the meal with rice pilaf with caramelized onions and a tomato and cucumber salad. + Sports + Outdoors + + + + The Sporting Chef + Small Bites. Wild Flavors + Stacy Lyn Harris prepares Venison Meatballs and Ale Gravy Rolls, Goose Pastrami and Venison skewers with Peanut Sauce. Also on the show are Brad Fenson, Harvesting Nature, Kyle Owens, Susie Jimenez, Bama Grill Master and Buddy. + Food + + + + Farming the Wild + England's Fall Fallow Rut + Mike culls big bucks; Mike guides fellow hunter Jalmar in search of master bucks. + Food + + + TVPG + + + + Man Eats Wild + Argentina Asado + Mario sets out into the La Pampa region of Argentina to share the bounty of hard work harvesting wild food over a classic Asado with a beautiful local family. + Sports + Hunting + + + TVPG + + + + MeatEater + Hawaii Spearfishing + Steve and Ryan Callaghan meet with Kimi Werner and Danny Bolton on the Big Island to dive in the deep blue for mahi mahi and wahoo. + Sports + Outdoors + + + TV14 + + + + Nick's Wild Ride With Nick Hoffman + Bobsleds and Bugles + Nick gets a ride in an Olympic bobsled and hunts bugling elk deep in the mountains of Utah. + Regular + + + + Andrew Zimmern's Wild Game Kitchen + Goat + Chef Andrew butchers a whole goat, using the leg and backstrap for a braised curry while keeping some of the goat's offal for a grilled snack; he completes the meal with rice pilaf with caramelized onions and a tomato and cucumber salad. + Sports + Outdoors + + + + The Sporting Chef + Small Bites. Wild Flavors + Stacy Lyn Harris prepares Venison Meatballs and Ale Gravy Rolls, Goose Pastrami and Venison skewers with Peanut Sauce. Also on the show are Brad Fenson, Harvesting Nature, Kyle Owens, Susie Jimenez, Bama Grill Master and Buddy. + Food + + + + Farming the Wild + England's Fall Fallow Rut + Mike culls big bucks; Mike guides fellow hunter Jalmar in search of master bucks. + Food + + + TVPG + + + + Man Eats Wild + Argentina Asado + Mario sets out into the La Pampa region of Argentina to share the bounty of hard work harvesting wild food over a classic Asado with a beautiful local family. + Sports + Hunting + + + TVPG + + + + Andrew Zimmern's Wild Game Kitchen + Goat + Chef Andrew butchers a whole goat, using the leg and backstrap for a braised curry while keeping some of the goat's offal for a grilled snack; he completes the meal with rice pilaf with caramelized onions and a tomato and cucumber salad. + Sports + Outdoors + + + + The Sporting Chef + Small Bites. Wild Flavors + Stacy Lyn Harris prepares Venison Meatballs and Ale Gravy Rolls, Goose Pastrami and Venison skewers with Peanut Sauce. Also on the show are Brad Fenson, Harvesting Nature, Kyle Owens, Susie Jimenez, Bama Grill Master and Buddy. + Food + + + + MeatEater + Hawaii Spearfishing + Steve and Ryan Callaghan meet with Kimi Werner and Danny Bolton on the Big Island to dive in the deep blue for mahi mahi and wahoo. + Sports + Outdoors + + + TV14 + + + + Jim Shockey's Hunting Adventures + Blooper Reel: The Best & Worst of 2016 + All the best of, the worst of, and the footage we just couldn't show you the first time. + Sports + Outdoors + + + TVG + + + + American Archer + Back In The Saddle + Adam Eller returns to Colorado for elk. + Sports + Outdoors + + + TVPG + + + + Sporting Classics with Chris Dorsey + Bolivia's Savage Golden Dorado + The Dorsey family cast flies to hard-fighting golden dorado at a remote lodge in the jungles of lowland Bolivia. + Sports + Outdoors + + + + Wild Boar Fever: Spain + Caceria por la Tarde + Driven shooting from Spain and a look at Spanish culture. + Sports + Hunting + + + + Inside Outdoors TV + Ribeye Of The Sky + Tim, Calahan and friends join the Crane Wreckers crew for a Sandhill Crane hunt and BBQ. + Regular + + + + Headhunters TV + Big Sky Bulls + The crew is looking to keep the streak alive in Montana for elk with a rifle at Anchor P Outfitters. + Drama + + + TVPG + + + + Raised Hunting + Enjoy It + David, Easton and Warren take a look at Warren's whitetail career. + Sports + Outdoors + + + TVPG + + + + Realtree Outdoors + Lonestar Bucks + David Blanton and Tony Smotherman of CVA hunt Texas bucks. + Sports + Outdoors + + + TVPG + + + + Gregg Ritz's Hunt Masters + To the Core + Gregg Ritz's oldest daughter Sydney continues the mission of arrowing her first archery buck with Mathews Prima and Kayley Anderson of Leupold Optics finds success with her first whitetail buck in Illinois. + Sports + Hunting + + + + Heartland Bowhunter + Leepers + Steve and his son Dawson are hunting Missouri in hopes that all of the hard work they have done in the offseason will pay off big. + Sports + Outdoors + + + TVG + + + + Primos Truth About Hunting + Pt 2- Team Primos Chases Whitetail + Team Primos chases whitetail deer at the home camp. + Sports + Outdoors + + + TVG + + + + Buckmasters + MT-Sweeps + Jacob Landry hosts the sweepstakes hunt in Montana. + Sports + Hunting + + + TVG + + + + Destination Polaris + Sandcraft Motorsports + Jared Christie and the crew from Sandcraft Motorsports build the ultimate dune machine. + Sports + Outdoors + + + TVPG + + + + Whitetail Freaks + Top Ten Buckdown #5 + The buck took on more than it realized. + Sports + Outdoors + + + TVPG + + + + Buckventures + Hoosier Bucks + Daniel McVay travels to the state of Indiana to hunt for the very first time. Having prepped the farm months prior, its finally time to hit the woods. + Sports + Outdoors + + + TVG + + + + Jim Shockey's Rogue River Men + Setting the Bar + Steve and Chad become heroes within the first hour of the first day; this sets the bar for the rest of the guides and places pressure on them all, including their clients; Jim Shockey arrives from Russia with only 4 days to hunt for his moose. + Sports + Outdoors + + + TV14 + + + + Jim Shockey's Shock Therapy + Peter Baljet - Part 2 + Peter Baljet has never been on a hunt in his life, so when he joined his friend Jim Shockey on a once in a lifetime adventure to Russia, he knew he was in for the challenge of his life. + Sports + Hunting + + + + Guns & Ammo TV + 150 Years of Winchester 1873 + Our editors visit the Cody Firearms Museum to discuss 150 years of the Winchester 1873. + Sports + Outdoors + + + TVG + + + + American Rifleman TV + On Location: EAA Akkar + Touring the facilities of Akkar in Turkey for a look at shotgun manufacturing. + Sports + Outdoors + + + TVG + + + + Bow Madness + 5 Year Quest + Bric Steward, Jason Conrad, and Brandon Jennings head to the land of the giants on a quest to hunt Tom Ware's whitetail haven in Iowa! + Sports + Outdoors + + + TVPG + + + + Bowlife + Levis Luck + Levi is back at Cactus Jack in South Texas; Levi stares in the eyes of his biggest buck to date. + Sports + Outdoors + + + + The Choice + Mastering the Osceola Gobblers + Fantastic Florida springtime gobbler action. + Sports + Outdoors + + + TVG + + + + The Bucks of Tecomate + Monster Quest on Cactus Jack Ranch + David Shashy embarks on a marathon hunt for a record buck on famous Cactus Jack Ranch. + Sports + Outdoors + + + TVPG + + + + Drury's Thirteen + Monsters of Pre-lock + Mark Drury has his sights set on what could be his largest Missouri buck of his life. All while Terry Drury is in hot pursuit of an Illinois brute he calls The Decoy Buck. + Sports + Outdoors + + + TVPG + + + + Critical Mass + A Hot Hand + Late Rut bucks fall in Kansas, Kentucky and Illinois. + Sports + Outdoors + + + TVPG + + + + Beyond the Hunt + Spotted In Hill Country 1 + Rick Kreuter returns to the Hill Country in search of big Axis bucks. + Sports + Hunting + + + TVG + + + + North American Whitetail + Made for the Muzzleloader + North American whitetail team captain says his goodbyes with a great late muzzleloader hunt in the Cornhusker State. + Sports + Outdoors + + + TVG + + + + The Lindsey Way + Rut Script + Jeff's Iowa season comes together in the hardwoods as he rattles in an ancient buck to the tree. + Sports + Outdoors + + + + The One + Grigsby Archery + It's November in Illinois and the rut is finally here at Grigsby Farm. The bucks are out chasing does and there are rubs and scrapes everywhere. + Sports + Outdoors + + + + The Gamekeepers of Mossy Oak + Preserving the Pronghorn + The Gamekeeper crew explores a collaborative study with multiple agencies on pronghorn in the Oklahoma panhandle. They chase pronghorns in helicopters and track pronghorn fawns. + Sports + Hunting + + + + Driven With Pat & Nicole + River Runs Through It + Pat and Nicole head North to the Yukon to hunt with the Wilkinson Family in pursuit of two big bull moose. + Sports + Outdoors + + + TVPG + + + + Drury's Thirteen + Monsters of Pre-lock + Mark Drury has his sights set on what could be his largest Missouri buck of his life. All while Terry Drury is in hot pursuit of an Illinois brute he calls The Decoy Buck. + Sports + Outdoors + + + TVPG + + + + Critical Mass + A Hot Hand + Late Rut bucks fall in Kansas, Kentucky and Illinois. + Sports + Outdoors + + + TVPG + + + + Beyond the Hunt + Spotted In Hill Country 1 + Rick Kreuter returns to the Hill Country in search of big Axis bucks. + Sports + Hunting + + + TVG + + + + North American Whitetail + Made for the Muzzleloader + North American whitetail team captain says his goodbyes with a great late muzzleloader hunt in the Cornhusker State. + Sports + Outdoors + + + TVG + + + + The Lindsey Way + Rut Script + Jeff's Iowa season comes together in the hardwoods as he rattles in an ancient buck to the tree. + Sports + Outdoors + + + + The One + Grigsby Archery + It's November in Illinois and the rut is finally here at Grigsby Farm. The bucks are out chasing does and there are rubs and scrapes everywhere. + Sports + Outdoors + + + + The Gamekeepers of Mossy Oak + Preserving the Pronghorn + The Gamekeeper crew explores a collaborative study with multiple agencies on pronghorn in the Oklahoma panhandle. They chase pronghorns in helicopters and track pronghorn fawns. + Sports + Hunting + + + + Driven With Pat & Nicole + River Runs Through It + Pat and Nicole head North to the Yukon to hunt with the Wilkinson Family in pursuit of two big bull moose. + Sports + Outdoors + + + TVPG + + + + Drury's Thirteen + Monsters of Pre-lock + Mark Drury has his sights set on what could be his largest Missouri buck of his life. All while Terry Drury is in hot pursuit of an Illinois brute he calls The Decoy Buck. + Sports + Outdoors + + + TVPG + + + + Critical Mass + A Hot Hand + Late Rut bucks fall in Kansas, Kentucky and Illinois. + Sports + Outdoors + + + TVPG + + + + Beyond the Hunt + Spotted In Hill Country 1 + Rick Kreuter returns to the Hill Country in search of big Axis bucks. + Sports + Hunting + + + TVG + + + + North American Whitetail + Made for the Muzzleloader + North American whitetail team captain says his goodbyes with a great late muzzleloader hunt in the Cornhusker State. + Sports + Outdoors + + + TVG + + + + The Lindsey Way + Rut Script + Jeff's Iowa season comes together in the hardwoods as he rattles in an ancient buck to the tree. + Sports + Outdoors + + + + The One + Grigsby Archery + It's November in Illinois and the rut is finally here at Grigsby Farm. The bucks are out chasing does and there are rubs and scrapes everywhere. + Sports + Outdoors + + + + The Gamekeepers of Mossy Oak + Preserving the Pronghorn + The Gamekeeper crew explores a collaborative study with multiple agencies on pronghorn in the Oklahoma panhandle. They chase pronghorns in helicopters and track pronghorn fawns. + Sports + Hunting + + + + Driven With Pat & Nicole + River Runs Through It + Pat and Nicole head North to the Yukon to hunt with the Wilkinson Family in pursuit of two big bull moose. + Sports + Outdoors + + + TVPG + + + + Wild Boar Fever: Spain + Caceria por la Tarde + Driven shooting from Spain and a look at Spanish culture. + Sports + Hunting + + + + Swarovski Optik Quests + California Blacktail + Trophy Blacktail Deer hunting in Northern California. + Sports + Outdoors + + + + The Choice + Mastering the Osceola Gobblers + Fantastic Florida springtime gobbler action. + Sports + Outdoors + + + TVG + + + + Nick's Wild Ride With Nick Hoffman + Bobsleds and Bugles + Nick gets a ride in an Olympic bobsled and hunts bugling elk deep in the mountains of Utah. + Regular + + + + Eastman's Hunting TV + Mule Deer Hunt with the Eastmans' + Eastmans' annual family mule deer hunt in Wyoming's sagebrush sea. + Sports + Outdoors + + + TVG + + + + Jim Shockey's Shock Therapy + Peter Baljet - Part 2 + Peter Baljet has never been on a hunt in his life, so when he joined his friend Jim Shockey on a once in a lifetime adventure to Russia, he knew he was in for the challenge of his life. + Sports + Hunting + + + + Bone Collector + Elk Song + There's elk meat on the Hooray Grill in Oregon. + Sports + Outdoors + + + TVG + + + + Bowlife + Levis Luck + Levi is back at Cactus Jack in South Texas; Levi stares in the eyes of his biggest buck to date. + Sports + Outdoors + + + + Bow Madness + 5 Year Quest + Bric Steward, Jason Conrad, and Brandon Jennings head to the land of the giants on a quest to hunt Tom Ware's whitetail haven in Iowa! + Sports + Outdoors + + + TVPG + + + + Live 2 Hunt With Cody & Kelsy + Hunter + Hunter Frankfurt is a passionate bowhunter; she pursues moose and mule deer with her bow. + Sports + Outdoors + + + + American Archer + Back In The Saddle + Adam Eller returns to Colorado for elk. + Sports + Outdoors + + + TVPG + + + + Addicted to the Outdoors + Jon and Gina's First Aoudad Hunt + The Brunsons are headed to one of their favorite states to hunt, Texas, courtesy of 1776 Ammo; they'll be hunting a new ranch this time, as well as targeting an entirely different species; Aoudad, something neither of them have hunted before. + Sports + Outdoors + + + TVG + + + + The Fowl Life With Chad Belding + Fast Ducks and Freedom PT.2 + The Fowl Life Crew heads to Flatline Outfitters in Oklahoma with a host of special guests. The hunting action is fast and the camplife is one for the books. + Sports + Outdoors + + + + The Flush + Trampled By Birds + Travis Frank hunts ruffed grouse and woodcock in Wisconsin's northwoods with a dedicated team from Pheasants Forever and Dave Simonett from the band Trampled by Turtles. + + Ron Schara + + Sports + Hunting + + + TVPG + + + + Crush With Lee & Tiffany + October Lull, Alberta Highs + Hunter Jobs, Brad Treu, and his son Braden all battle the ups and downs of whitetail hunting in October and Lee heads up to Alberta for an archery Mule deer hunt. + Sports + Outdoors + + + TVPG + + + + Raised Hunting + Enjoy It + David, Easton and Warren take a look at Warren's whitetail career. + Sports + Outdoors + + + TVPG + + + + The Lindsey Way + Rut Script + Jeff's Iowa season comes together in the hardwoods as he rattles in an ancient buck to the tree. + Sports + Outdoors + + + + The Gamekeepers of Mossy Oak + Preserving the Pronghorn + The Gamekeeper crew explores a collaborative study with multiple agencies on pronghorn in the Oklahoma panhandle. They chase pronghorns in helicopters and track pronghorn fawns. + Sports + Hunting + + + + Drury's Thirteen + Monsters of Pre-lock + Mark Drury has his sights set on what could be his largest Missouri buck of his life. All while Terry Drury is in hot pursuit of an Illinois brute he calls The Decoy Buck. + Sports + Outdoors + + + TVPG + + + + Driven With Pat & Nicole + River Runs Through It + Pat and Nicole head North to the Yukon to hunt with the Wilkinson Family in pursuit of two big bull moose. + Sports + Outdoors + + + TVPG + + + + Drop Zone + Winding Down + As the hunting season is coming to a close, the Drop Zone team spends some quality time together in Nebraska and Virginia. + Sports + Hunting + + + + Inside Outdoors TV + Ribeye Of The Sky + Tim, Calahan and friends join the Crane Wreckers crew for a Sandhill Crane hunt and BBQ. + Regular + + + + Winchester Life + Melissa + Ride along with Team Winchester's Melissa Bachman as she takes us on a wild ride chasing big game across North America. + Regular + + + + Primos Truth About Hunting + Pt 2- Team Primos Chases Whitetail + Team Primos chases whitetail deer at the home camp. + Sports + Outdoors + + + TVG + + + + Build Box + Legendary Build + From the ground up, the Build Box crew sets out to marry the popular AR15 and 350 Legend cartridge. + Game Shows + + + + American Airgunner Challenge + Blitz Jet, Ready... Break! + In this pressure-packed challenge, contestants get to test their skills with full auto. + + Rossi Morreale + + Sports + Outdoors + + + TVPG + + + + Outrageous TV On Demand + Performing Arts + + + + Outrageous TV On Demand + Performing Arts + + + + Outrageous TV On Demand + Performing Arts + + + + Outrageous TV On Demand + Performing Arts + + + + Outrageous TV On Demand + Performing Arts + + + + Outrageous TV On Demand + Performing Arts + + + + Outrageous TV On Demand + Performing Arts + + + + Outrageous TV On Demand + Performing Arts + + + + Outrageous TV On Demand + Performing Arts + + + + Outrageous TV On Demand + Performing Arts + + + + Outrageous TV On Demand + Performing Arts + + + + Outrageous TV On Demand + Performing Arts + + + + Outrageous TV On Demand + Performing Arts + + + + Outrageous TV On Demand + Performing Arts + + + + Outrageous TV On Demand + Performing Arts + + + + Outrageous TV On Demand + Performing Arts + + + + Outrageous TV On Demand + Performing Arts + + + + Outrageous TV On Demand + Performing Arts + + + + Outrageous TV On Demand + Performing Arts + + + + Outrageous TV On Demand + Performing Arts + + + + Outrageous TV On Demand + Performing Arts + + + + Outrageous TV On Demand + Performing Arts + + + + Outrageous TV On Demand + Performing Arts + + + + Outrageous TV On Demand + Performing Arts + + + + Outrageous TV On Demand + Performing Arts + + + + Outrageous TV On Demand + Performing Arts + + + + Outrageous TV On Demand + Performing Arts + + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Outside Television + Programming on outdoor activities. + + + Death in Paradise + Posing in Murder + DI Goodman gets embroiled in the world of modeling. + + Kris Marshall + Danny John-Jules + Joséphine Jobert + + Drama + + + TVPG + + + + Death in Paradise + A Personal Murder + The team must solve a deeply personal case when Dwayne's old mentor is found dead. + + Kris Marshall + Danny John-Jules + Joséphine Jobert + + Drama + + + TVPG + + + + Shakespeare and Hathaway: Private Investigators + Time Decays + An idyllic Shakespeare walk soon turns to disaster when one of the walkers is murdered and Frank becomes the prime suspect. + + Mark Benton + Jo Joyner + Patrick Walshe McBride + + Comedy + + + TVPG + + + + Shakespeare and Hathaway: Private Investigators + No More Desire a Rose + Frank and Lu are hired to unmask the. + + Mark Benton + Jo Joyner + Patrick Walshe McBride + + Comedy + + + TVPG + + + + Shakespeare and Hathaway: Private Investigators + No More Desire a Rose + Frank and Lu are hired to unmask the. + + Mark Benton + Jo Joyner + Patrick Walshe McBride + + Comedy + + + TVPG + + + + Overboard + A yachtsman's (Edward Herrmann) wife (Goldie Hawn) falls overboard, forgets who she is and becomes an Oregon carpenter's (Kurt Russell) mate. + + Goldie Hawn + Kurt Russell + Edward Herrmann + + 1987 + Movies + Comedy + + + TVG + + + 2 + + + + City Slickers + On vacation, three men (Billy Crystal, Daniel Stern, Bruno Kirby) get to play cowboy on a dude-ranch cattle drive, but unexpected circumstances test their skills and stamina. + + Billy Crystal + Daniel Stern + Bruno Kirby + + 1991 + Movies + Comedy + + + TVG + + + 3 + + + + Silverado + Old West drifters Jake (Kevin Costner), Emmett (Scott Glenn), Mal and Paden (Kevin Kline) shoot it out with a crooked sheriff and clan. + + Kevin Kline + Scott Glenn + Kevin Costner + + 1985 + Movies + Western + + + TVG + + + 3 + + + + Silverado + Old West drifters Jake (Kevin Costner), Emmett (Scott Glenn), Mal and Paden (Kevin Kline) shoot it out with a crooked sheriff and clan. + + Kevin Kline + Scott Glenn + Kevin Costner + + 1985 + Movies + Western + + + TVG + + + 3 + + + + Stars of the Silver Screen + Denzel Washington + Stars of the Silver Screen celebrates the extraordinary actors of the last 90 years. This episode focuses on Denzel Washington. + Documentary + + + + Pop Profiles + Selena Gomez + Selena Gomez's earliest performances and breakthrough singles. + Music + Biography + + + TVPG + + + + Star Tunez + + Gossip + + Talk Shows + Performing Arts + + + TV14 + + + + Star Tunez + + Gossip + + Talk Shows + Performing Arts + + + TV14 + + + + Inside the Actors Studio + Bradley Cooper + Actor Bradley Cooper (Guests: Bradley Cooper.. + Biography + + + TVPG + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Inside the Actors Studio + Inside the Actors Studio: Treat Williams + Alec Baldwin interviews guest Treat Williams, who recounts his stage and screen career from his Broadway debut as Danny Zuko in. + Biography + + + TVPG + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Doc Martin + Blood Is Thicker + Martin's house call to the home of the Flint brothers leads to a diagnosis of food poisoning; Al learns that Bert is not his natural father. + + Martin Clunes + Caroline Catz + Ian McNeice + + Comedy + + + TVPG + + + + The Doctor Blake Mysteries + All That Glitters + A prospector is found dead in a mineshaft shortly after declaring he's struck gold. + + Craig McLachlan + Nadine Garner + Rick Donald + + Drama + + + TVPG + + + + The Doctor Blake Mysteries + Someone's Son, Someone's Daughter + Ballarat hospital's only female doctor is found hanged in an apparent suicide; a telegram arrives for Blake with some news about his family. + + Craig McLachlan + Nadine Garner + Rick Donald + + Drama + + + TVPG + + + + Shakespeare and Hathaway: Private Investigators + Time Decays + An idyllic Shakespeare walk soon turns to disaster when one of the walkers is murdered and Frank becomes the prime suspect. + + Mark Benton + Jo Joyner + Patrick Walshe McBride + + Comedy + + + TVPG + + + + Shakespeare and Hathaway: Private Investigators + No More Desire a Rose + Frank and Lu are hired to unmask the. + + Mark Benton + Jo Joyner + Patrick Walshe McBride + + Comedy + + + TVPG + + + + The Librarians + And the Apple of Discord + When the dragons sleeping beneath the earth threaten to awaken, Flynn returns to help find their hidden treasure. + + Rebecca Romijn + Christian Kane + Lindy Booth + + Drama + + + TVPG + + + + The Librarians + And the Fables of Doom + The librarians travel to a town where fairy tales come to life and attack. + + Rebecca Romijn + Christian Kane + Lindy Booth + + Drama + + + TVPG + + + + The Librarians + And the Rule of Three + The librarians are forced to intercede when a group of competitive high school students start undercutting each other with witchcraft. + + Rebecca Romijn + Christian Kane + Lindy Booth + + Drama + + + TV14 + + + + The Librarians + And the Heart of Darkness + The librarians encounter the house behind the legend of all haunted houses and set out to destroy it. + + Rebecca Romijn + Christian Kane + Lindy Booth + + Drama + + + TV14 + + + + The Forgettable Life of Liam White + An uninspired novelist begins a journey of self-reflection and reconciliation when he learns that his cancer has returned. + + Shaun Woodland + Jasmine Guy + Terrence Carson + + 2021 + Movies + Drama + + + + Silverado + Old West drifters Jake (Kevin Costner), Emmett (Scott Glenn), Mal and Paden (Kevin Kline) shoot it out with a crooked sheriff and clan. + + Kevin Kline + Scott Glenn + Kevin Costner + + 1985 + Movies + Western + + + TVG + + + 3 + + + + Overboard + A yachtsman's (Edward Herrmann) wife (Goldie Hawn) falls overboard, forgets who she is and becomes an Oregon carpenter's (Kurt Russell) mate. + + Goldie Hawn + Kurt Russell + Edward Herrmann + + 1987 + Movies + Comedy + + + TVG + + + 2 + + + + Overboard + A yachtsman's (Edward Herrmann) wife (Goldie Hawn) falls overboard, forgets who she is and becomes an Oregon carpenter's (Kurt Russell) mate. + + Goldie Hawn + Kurt Russell + Edward Herrmann + + 1987 + Movies + Comedy + + + TVG + + + 2 + + + + Inside the Actors Studio + James Burrows + Kelsey Grammer interviews TV director James Burrows who co-createdGuests: James Burrows.. + Biography + + + TVPG + + + + Get Fit with Total Gym, Risk Free + Get in the best shape of your life with the Total Gym 30 Day Risk-Free Trial Offer. + Paid Program + + + + The Doctor Blake Mysteries + The Heart of the Matter + Blake suspects foul play when a councilor is found dead at the town hall. + + Craig McLachlan + Nadine Garner + Charlie Cousins + + Drama + + + TVPG + + + + Travel Guides New Zealand + Southland + The travel guides explore the dramatic scenery and wild coastline of Southland in an adventure that takes them to Invercargill, Bluff and Stewart Island. + Travel + Reality TV + + + TVG + + + + The Story of Art in America + Casper, Wyoming + An exploration of the art scene in Casper, Wyoming; includes interviews with local artists on how their community has influenced their artistic practice. + Documentary + Arts & Entertainment + + + + The Story of Art in America + Coeur d'Alene Tribe, Idaho + An in-depth exploration of the art scene in Coeur d'Alene, Idaho, including interviews with Couer d'Alene Tribe artists on how their community has influenced their practice. + Documentary + Arts & Entertainment + + + + The Story of Art in America + Great Falls, Montana + An exploration of the art scene in Great Falls, Montana; includes interviews with local artists on how their community has influenced their artistic practice. + Documentary + Arts & Entertainment + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + The Doctor Blake Mysteries + All That Glitters + A prospector is found dead in a mineshaft shortly after declaring he's struck gold. + + Craig McLachlan + Nadine Garner + Rick Donald + + Drama + + + TVPG + + + + The Doctor Blake Mysteries + Someone's Son, Someone's Daughter + Ballarat hospital's only female doctor is found hanged in an apparent suicide; a telegram arrives for Blake with some news about his family. + + Craig McLachlan + Nadine Garner + Rick Donald + + Drama + + + TVPG + + + + The Doctor Blake Mysteries + The Heart of the Matter + Blake suspects foul play when a councilor is found dead at the town hall. + + Craig McLachlan + Nadine Garner + Charlie Cousins + + Drama + + + TVPG + + + + The Doctor Blake Mysteries + The Food of Love + When a famous singer dies in an alleyway, it falls to Dr. Blake to investigate. + + Craig McLachlan + Nadine Garner + Charlie Cousins + + Drama + + + TVPG + + + + Midsomer Murders + Blue Herrings + Two elderly ladies die under suspicious circumstances. + + Jason Hughes + Barry Jackson + Fiona Dolman + + Drama + + + TVPG + + + + Midsomer Murders + Judgement Day + Winning the Perfect Village competition is challenged when a local thief is murdered. + + John Nettles + Daniel Casey + Jane Wymark + + Drama + + + TVPG + + + + Midsomer Murders + Death of a Stranger + Chief Inspector Barnaby discovers the truth behind the murder of a tramp is connected to the traditional village fox hunt and its participants. + + John Nettles + Daniel Casey + Jane Wymark + + Drama + + + TVPG + + + + Midsomer Murders + Garden of Death + The closing of what was once a very popular public garden in Midsomer Deverell sparks a series of murders that have Inspector Barnaby and Sgt. Troy stumped. + + John Nettles + Daniel Casey + Jane Wymark + + Drama + + + TVPG + + + + Taggart + Hostile Witness + When a pro-capital punishment candidate and her agent are murdered, Taggart and Jardine are called to investigate. + + Mark McManus + Harriet Buchan + James MacPherson + + Drama + + + + Taggart + Hostile Witness + When a pro-capital punishment candidate and her agent are murdered, Taggart and Jardine are called to investigate. + + Mark McManus + Harriet Buchan + James MacPherson + + Drama + + + + Taggart + Evil Eye + The murder of a gypsy woman outside Glasgow is linked to the fatal stabbing of a policeman in London. + + Mark McManus + Harriet Buchan + James MacPherson + + Drama + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + The Story of Art in America + Phoenix, Arizona + An in-depth exploration of the art scene in Phoenix, Arizona, including interviews with local artists on how their community has influenced their practice. + Documentary + Arts & Entertainment + + + + The Story of Art in America + Seattle, Washington + An in-depth exploration of the art scene in Seattle, Washington, including interviews with local artists on how their community has influenced their practice. + Documentary + Arts & Entertainment + + + + The Story of Art in America + Santa Fe, New Mexico + An in-depth exploration of the art scene in Santa Fe, New Mexico, including interviews with local artists on how their community has influenced their practice. + Documentary + Arts & Entertainment + + + + Shakespeare and Hathaway: Private Investigators + Thy Fury Spent + A simple missing person's case takes a dramatic turn as Frank and Lu find themselves in the middle of a dispute over the opening of a new Shakespeare Center where it's clear that no one is what they seem. + + Mark Benton + Jo Joyner + Patrick Walshe McBride + + Comedy + + + + Shakespeare and Hathaway: Private Investigators + Reputation, Reputation, Reputation! + Frank and Lu enter the competitive world of hairdressing and find themselves combing through a tangled web of backstabbing and deceit. + + Mark Benton + Jo Joyner + Patrick Walshe McBride + + Comedy + + + + Shakespeare and Hathaway: Private Investigators + Best Beware My Sting + An energy tycoon hires Frank and Lu to keep an eye on his wayward eldest daughter and ensure that the wedding of his youngest daughter goes off without a hitch, but things are about to get a whole lot worse. + + Mark Benton + Jo Joyner + Patrick Walshe McBride + + Comedy + + + + Shakespeare and Hathaway: Private Investigators + All That Glisters + Frank and Lu find themselves puzzling through the world of enigmatology as they become podcasters investigating a mysterious 20-year-old car accident which killed a young mother. + + Mark Benton + Jo Joyner + Patrick Walshe McBride + + Comedy + + + + Frankie Drake Mysteries + Ghosts + Frankie reunites with a traumatized friend during an investigation into a soldier's murder. + + Lauren Lee Smith + Chantel Riley + Rebecca Liddiard + + Drama + History + + + TVPG + + + + Frankie Drake Mysteries + Anastasia + A young woman claims to be a Russian princess and demands protection from those who want her dead. + + Lauren Lee Smith + Chantel Riley + Rebecca Liddiard + + Drama + History + + + TVPG + + + + Midsomer Murders + Destroying Angel + The death of a hotel owner leads to murder and intrigue, as Barnaby uncovers a web of illicit affairs and shady business dealings. + + John Nettles + Daniel Casey + Jane Wymark + + Drama + + + TVPG + + + + Midsomer Murders + The Electric Vendetta + When a man's naked body is found at the centre of a crop circle and more corpses begin turning up with peculiar injuries, DCI Barnaby has to uncover who is responsible - or are extraterrestrial powers really at work in Midsomer? + + John Nettles + Daniel Casey + Jane Wymark + + Drama + + + TVPG + + + + Doc Martin + Perish Together as Fools + Louisa has a medical scare and goes to Martin for reassurance; Joe Penhale's brother Sam comes to town; Martin learns the surgery needs some updating. + + Martin Clunes + Caroline Catz + Stephanie Cole + + Comedy + + + TVPG + + + + Doc Martin + Driving Mr. McLynn + Martin urges Louisa to slow down after he catches her moving furniture; Martin refuses a handicapped parking tag for an elderly couple when the man won't prove he is disabled. + + Martin Clunes + Caroline Catz + Stephanie Cole + + Comedy + + + TVPG + + + + Doc Martin + The Departed + The widow of one of Doc's patients believes her husband is trying to communicate from the grave; one of Louisa's students falls ill on a class trip. + + Martin Clunes + Caroline Catz + Stephanie Cole + + Comedy + + + TVPG + + + + Doc Martin + Midwife Crisis + Doc clashes with the new district midwife over natural methods; Bert becomes enamored with a new restaurant employee. + + Martin Clunes + Caroline Catz + Stephanie Cole + + Comedy + + + TVPG + + + + Doc Martin + Do Not Disturb + Pauline finds out Doc is leaving; Bert organizes a baby shower for Louisa; Doc and Edith go to a conference. + + Martin Clunes + Caroline Catz + Stephanie Cole + + Comedy + + + TVPG + + + + The Librarians + And the Happily Ever Afters + The team scatters and each person begins living the ideal version of their life; the appearance of Ariel brings everyone together to investigate. + + Rebecca Romijn + Christian Kane + Lindy Booth + + Drama + + + TVPG + + + + The Librarians + And the Final Curtain + The librarians discover that Prospero's magic is wreaking havoc with the technology of the world; Flynn and Baird must travel back to 1611, while the rest of the team battles Prospero in the present. + + Rebecca Romijn + Christian Kane + Lindy Booth + + Drama + + + TV14 + + + + The Librarians + And the Rise of Chaos + The Egyptian God of Chaos inhabits a human, and tries to release pure evil into the world; the librarians must decipher clues in a science museum. + + Rebecca Romijn + Christian Kane + Lindy Booth + + Drama + + + TVPG + + + + The Librarians + And the Fangs of Death + Flynn leads the others on a rescue mission, which leads them into a subterranean trap filled with ancient Egyptian werewolves. + + Rebecca Romijn + Christian Kane + Lindy Booth + + Drama + + + TVPG + + + + The Bridge + Old Friends + Sonya and Marco close in on the killer; Charlotte takes drastic measures to protect her ranch; Frye learns that demons from his past aren't done with him yet. + + Diane Kruger + Demián Bichir + Ted Levine + + Drama + + + TVMA + + + + The Bridge + Take the Ride, Pay the Toll + The killer reveals his endgame. + + Diane Kruger + Demián Bichir + Ted Levine + + Drama + + + TVMA + + + + On the Trail of the Plains Indians + Native Americans from the Plains live in harmony with nature, under complex social codes. Between tribal wars, the cult of bravery and a culture of dreams, life is both very free and very hard. + Specials + Documentary + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Pop Profiles + Jennifer Lopez + A profile of the success behind the famous American singer/actress/dance and entrepreneur Jennifer Lopez. + Music + Biography + + + TVPG + + + + Doc Martin + Erotomania + Martin urges Mrs. Tishell to remove the collar she's worn for years; career disagreements lead Louisa to break up with Danny; a man from the Salvation Army arrives in Portwenn. + + Martin Clunes + Caroline Catz + Ian McNeice + + Comedy + + + TVPG + + + + Doc Martin + On the Edge + Birdwatchers descend on Portwenn in search of a rare species; Pauline gives her notice; Bert uses the police van to take the birdwatchers on tour. + + Martin Clunes + Caroline Catz + Ian McNeice + + Comedy + + + TVPG + + + + Doc Martin + On the Edge + Birdwatchers descent on Portwenn to find a rare species; a paranoid villager takes Doc, Louisa and Pauline prisoner. + + Martin Clunes + Caroline Catz + Ian McNeice + + Comedy + + + TVPG + + + + Doc Martin + The Apple Doesn't Fall + A new police officer, who has narcolepsy, replaces Mark Mylow; Martin treats a girl who's been taking her mother's diet pills. + + Martin Clunes + Caroline Catz + Ian McNeice + + Comedy + + + TVPG + + + + Frankie Drake Mysteries + Once Burnt Twice Spied + Mary finds out how Frankie and Trudy met and how Drake Private Detectives was formed. + + Lauren Lee Smith + Chantel Riley + Rebecca Liddiard + + Drama + History + + + TVPG + + + + Frankie Drake Mysteries + The Old Switcheroo + Frankie is suspicious when an old rival turns up and is selling antiquities. + + Lauren Lee Smith + Chantel Riley + Rebecca Liddiard + + Drama + History + + + TVPG + + + + Midsomer Murders + Who Killed Cock Robin? + Barnaby's old adversary, Melvyn Stockard, may be behind the death of his son's future father-in-law. + + John Nettles + Daniel Casey + Jane Wymark + + Drama + + + TVPG + + + + Midsomer Murders + Dark Autumn + Adulterous liaisons and pub rivalries may be behind the murder of a postman. + + John Nettles + Jane Wymark + Barry Jackson + + Drama + + + TVPG + + + + Cold Justice + Inside the Episode 621 Trail of Terror + Two top-notch female investigators dig into murder cases that have gone for years without answers. + Reality TV + + + TV14 + + + + Dateline: Secrets Uncovered + The Last Day + After Erin Corwin told her husband she was scouting hiking trails in Joshua Tree National Park, she suddenly vanished -- police quickly uncovered a steamy love triangle and a mystery with a deep pool of potential suspects. + Docu-Series + + + TVPG + + + + Cold Justice + Inside the Episode 621 Trail of Terror + Two top-notch female investigators dig into murder cases that have gone for years without answers. + Reality TV + + + TV14 + + + + Cold Justice + Covet + Kelly and Aaron Sam head to Lake Charles, La., to investigate the shocking murder of a young man gunned down in his car after attending church on Palm Sunday. + Reality TV + + + TV14 + + + + Snapped + Bryan Miller + When two young women are brutally murdered in Phoenix, friends and family wait decades for answers; when advancements in DNA reinvigorate the case, police discover the killer has been hiding in plain sight. + Documentary + + + TV14 + + + + Snapped + Shirley Nelson + When a prominent Santa Rosa, Calif., couple is found gunned down at the offices of one of the world's most popular cartoons, detectives are left to untangle the inner workings of a decades-long marriage. + Documentary + + + TV14 + + + + Snapped + Carol Kopenkoskey + A 39-year marriage ends in a brutal death, bringing to light a tale of adultery and murder. + Documentary + + + TVPG + + + + Dateline + Finding Sarah Goode + A tight-knit Long Island family go to extraordinary lengths to find their missing sister. + News Magazine + + + TVPG + + + + Dateline + Finding Sarah Goode + A tight-knit Long Island family go to extraordinary lengths to find their missing sister. + News Magazine + + + TVPG + + + + Dateline + Stone-Cold + When a hard-charging boss in Arizona is shot to death, police uncover a complex web of bruised egos in his professional life and a trail of broken hearts in his personal life. + News Magazine + + + + Dateline + Return to the Early Shift + A Kentucky man is convicted of murdering his co-worker; the mystery is considered solved until a stunning disclosure years later turns the closed case upside down. + News Magazine + + + TVPG + + + + Dateline + Prairie Confidential + A murder case considered closed by North Dakota detectives is suddenly reopened when a confidential informant comes forward with a tip about an unlikely suspect. + News Magazine + + + + Dateline: Secrets Uncovered + The Match + Diane Marcell walked into her home and found her daughter covered in blood, the attacker said she was next; a single drop of blood was the key to finding him, but it took nearly a decade to unlock its secrets. + Docu-Series + + + TVPG + + + + Dateline: Secrets Uncovered + The Valentine's Day Mystery + He was a wealthy doctor with a perfect life and the perfect wife; then, he found her dead on Valentine's Day; she was beloved but did have enemies; investigators followed a bloody trail of evidence, leading to a big courtroom twist. + Docu-Series + + + TVPG + + + + Dateline: Secrets Uncovered + Bitter Pill + Rosie and Yazeed Essa seemed to have an ideal life, two beautiful children, no financial worries and a loving extended family; a fatal fender bender shattered it all; investigators discovered her marriage was full of secrets. + Docu-Series + + + TVPG + + + + Snapped + Amy Fisher + A jealous teenager's brash act of violence thrusts a shadowy affair into the national spotlight; the surviving victim, Mary Jo Buttafuoco, sheds light on her side of the scandal that rocked America. + Documentary + + + TVPG + + + + Snapped + Angela Ferguson + When the body of a beloved aircraft machinist is found stuffed in the trunk of his own car, investigators follow a trail of deception to a manipulative killer. + Documentary + + + TVPG + + + + Snapped + Angelina O'Mara + In the fall of 2011, homicide detectives in towns over 200 miles apart connect two separate murders to one ruthless killer. + Documentary + + + TVPG + + + + Snapped + Julene Simko + When the owner of an Ohio landscaping company is found shot to death in his bed, the ensuing investigation exposes an elaborate web of sex, obsession, and power. + Documentary + + + TVPG + + + + Snapped + Jackie Ray + In Gig Harbor, Wash., a homicide investigation reveals the dark lengths to which one woman will go for her family's safety. + Documentary + + + TVPG + + + + Snapped + Diana Lovejoy + A contentious divorce and custody battle lands one father in the crosshairs of a sniper. + Documentary + + + TVPG + + + + Snapped + Betty Wilson + Analyzing the investigation into the gruesome murder of an esteemed Southern doctor; an anonymous tip leads police to uncover a pattern of lust, greed and a complex dynamic between twin sisters. + Documentary + + + TV14 + + + + The Real Murders of Los Angeles + Blood, Sweats, and Tears + After a man mysteriously dies in his doctor's office, a routine call from a life insurance company plunges investigators into a twisted world of mystery, money and murder where they must unravel a complex web of lies and false identities. + Documentary + + + + Final Moments + Murder at the Creek + After asking to drop off a book off at a friend's house, 15-year-old Danielle Locklear never returns home, but a cryptic clue leads investigators to a secluded creek. + Regular + + + + Snapped + Betty Wilson + Analyzing the investigation into the gruesome murder of an esteemed Southern doctor; an anonymous tip leads police to uncover a pattern of lust, greed and a complex dynamic between twin sisters. + Documentary + + + TV14 + + + + Snapped + Crystal Mangum + One of the most notorious citizens of Durham, North Carolina finds herself under scrutiny after her boyfriend is stabbed. + Documentary + + + TVPG + + + + Final Moments + A Mother's Search + Ashley Young has an active online presence and loves posting on social media; when she suddenly stops communicating with loved ones, her mother launches a search to find out why; a gruesome discovery leads to a tragic answer. + Regular + + + TVPG + + + + Final Moments + The Missed Bus + Yingying Zhang, a student at the University of Illinois, misses a campus bus by seconds and then vanishes; as police trace the final moments before she disappeared, they discover a dark secret on campus that takes the case in a shocking direction. + Regular + + + TVPG + + + + Cold Justice + The Key to the Crime (Part 1) + For the 100th case, the 2007 murder of a popular college student who was stabbed to death in her bed; help is needed from forensic pathologist, digital forensics expert and DNA lab to solve the case. + Reality TV + + + TV14 + + + + Cold Justice + The Key to the Crime (Part 2) + The Cold Justice team continues its investigation into the murder of a popular 18-year-old college student. + Reality TV + + + TV14 + + + + Dateline + The Last Day + The investigation into the disappearance of a Marine's 19-year-old wife reveals a secret love triangle and multiple suspects. + News Magazine + + + TVPG + + + + Dateline + The Last Day + The investigation into the disappearance of a Marine's 19-year-old wife reveals a secret love triangle and multiple suspects. + News Magazine + + + TVPG + + + + Dateline + Noises in the Night + A popular high school student is found murdered in her bed; two students help police solve the case. + News Magazine + + + + The Disappearance of: Natalee Holloway + New Lead + Natalee Holloway disappears from Aruba in May 2005, and her father Dave never stops looking for her; he receives a new lead that could be the key to solving the 12-year-old mystery, but he has suspicions about the source. + Reality TV + Documentary + + + TV14 + + + + The Disappearance of: Natalee Holloway + The Sting + Dave Holloway and a team of investigators pursue a lead that may shed light on his daughter's disappearance, with the goal of obtaining a taped confession and concrete evidence. + Reality TV + Documentary + + + TV14 + + + + The Disappearance of: Natalee Holloway + The Sting: Day 2 + The sting operation in New Orleans continues as the investigation team begins running out of time to obtain the necessary information from the co-conspirator. + Reality TV + Documentary + + + TV14 + + + + The Disappearance of: Natalee Holloway + Aruba + TJ and his team head to Aruba to begin phase two of their investigation - attempting to obtain DNA evidence from Natalee's alleged burial site; Dave must convince his informant to go the extra mile. + Reality TV + Documentary + + + TV14 + + + + The Disappearance of: Natalee Holloway + The Burial Site + TJ races to the location where the co-conspirator claims he dug up Natalee's remains in 2010; working with the Aruban authorities, they search for DNA that could lead to convicting those involved in Natalee's disappearance. + Reality TV + Documentary + + + TV14 + + + + The Disappearance of: Natalee Holloway + The Bones + After two years following a lead, the investigators finally have evidence in hand that could answer the 12-year-old mystery of what happened to Natalee Holloway. + Reality TV + Documentary + + + TV14 + + + + Cold Justice + Danger at Dawn + Kelly and Abbey Abbondandolo investigate the cold-blooded murder of a fun-loving Texas country boy shot in the back of his head; it could the result of a love triangle gone tragically wrong. + Reality TV + + + TV14 + + + + Cold Justice + Down by the Lake + Kelly and Johnny Bonds answer the call of a grieving mother, whose 19-year-old son drowned while camping with friends; despite the medical examiner ruling it an accident, some suspect foul play. + Reality TV + + + TV14 + + + + Snapped + Anne Throneberry + An investigation into the disappearance of an Arkansas couple leads a law enforcement team on a manhunt through the rugged terrain of the Ozarks and into unforeseen danger. + Documentary + + + TVPG + + + + Snapped + Uloma Curry-Walker + When a revered fire lieutenant is gunned down in his driveway, detectives navigate stories of a long-standing neighborhood feud and a surprise cancer scare to piece together a conspiracy plot involving young pawns manipulated by a cunning mastermind. + + Sharon Martin + + Documentary + + + TVPG + + + + Snapped + Alisha Noel-Murray + After a man is shot just a few feet inside his New York home, the ensuing investigation brings to light a murder-for-hire plot spurred by greed. + Documentary + + + TVPG + + + + Snapped + Opal Williams + When police searching for a missing Indiana man discover a body on a riverbank, they launch an investigation that unearths a surprising story of an open marriage and evidence of a brutal torture. + + Sharon Martin + + Documentary + + + TVPG + + + + Snapped + Lisa Jones-Orock + Police in a small Pennsylvania town respond to an eyewitness report of a murder behind a grocery store and find that the victim is no stranger to law enforcement. + Documentary + + + TVPG + + + + Snapped + Sharon Halstead + When a young mother is executed and her family critically injured, investigators piece together haunting clues and an earlier murder to capture deranged killers with a spiritual calling. + + Sharon Martin + + Documentary + + + TVPG + + + + Myth of the Zodiac Killer + The Hoax Theory + An English professor lays out a stirring hoax theory on America's most famous cold case, launching filmmaker Andrew Nock on a journey into the world of. + Documentary + + + TV14 + + + + Myth of the Zodiac Killer + Breaking the Mythology + The hoax theory is put to the test when two computational linguistic experts study the 32 Zodiac letters; filmmaker Andrew Nock meets a witness for her first on-camera interview after years of fear that. + Documentary + + + TV14 + + + + The Real Murders of Los Angeles + Blood, Sweats, and Tears + After a man mysteriously dies in his doctor's office, a routine call from a life insurance company plunges investigators into a twisted world of mystery, money and murder where they must unravel a complex web of lies and false identities. + Documentary + + + + The Real Murders of Los Angeles + Once Bitten + The shocking murder of a Van Nuys newlywed goes cold for 23 years until detectives bent on justice revisit the brutal evidence, including a bite mark on the victim's arm that leads them to the most unlikely killer. + Documentary + + + + The Real Murders of Los Angeles + Tunnel of Terror + Detectives are plunged into a world of occult worship and shadowy characters as they try to solve the brutal murder of a promising UCLA student found butchered in a railroad tunnel with a diabolical reputation. + Documentary + + + + The Real Murders of Los Angeles + Final Photograph + When a beloved model, actress and former Los Angeles Raiderette cheerleader vanishes in broad daylight after leaving her Hermosa Beach home, a media frenzy engulfs the entire city as detectives embark on a desperate search for a sociopathic killer. + Documentary + + + + Dateline + Before the Storm + A mother of two who vanishes during a storm turns out to be a victim of something sinister. + News Magazine + + + TVPG + + + + Dateline + The Alibi + The homicide of private first class soldier and young mother Karlyn Ramirez; a glimpse into the FBI's crime lab and an in-depth look at how multiple agencies uncovered a plot that spanned several states and prompted suspicions of espionage. + News Magazine + + + + Dateline + Suspicion in Silver City + When the mysterious death of a 23-year-old mother in New Mexico goes unsolved, her family searches for answers. + News Magazine + + + + Accident, Suicide, or Murder + Lover's Chair + Investigators uncover a web of lies a decade after a couple's romantic evening atop Rockefeller Lookout in New Jersey ends with the wife's tragic death. + Documentary + + + TVPG + + + + Accident, Suicide, or Murder + Relentless + A Texas woman's apparent suicide devastates the family that she leaves behind, but after one investigator dedicates decades to solving the mystery of what drove her to make such a tragic decision, a far more sinister truth is discovered. + Documentary + + + TV14 + + + + New York Homicide + Howard Beach Murder + When the body of a young woman is found hidden in tall reeds in a quiet park near her home, fear grips the Queens neighborhood; after months of ceaseless investigation, a clue from the past leads NYPD detectives to an unexpected killer. + Documentary + + + TVPG + + + + New York Homicide + The Midtown Millennium Murder + Days before the New Millennium, a jailed informant calls the NYPD with a cryptic tip about a murder, sending detectives on a hunt through dozens of New York's high-rise buildings, in search of a crime scene - and a body. + Documentary + + + TVPG + + + + Killer Relationship With Faith Jenkins + Fatal Attraction + Single mother Nicole Halpin is murdered in her home and her two children witness the attack, but justice will prevail when detectives sift through a list of Nicole's admirers to find her killer. + Documentary + + + TVPG + + + + Killer Relationship With Faith Jenkins + Murdered Matriarch + When 78-year-old Ina Gross is viciously murdered, suspicion falls on one of her own children; the siblings stand together until the truth is revealed. + Documentary + + + TVPG + + + + Dateline: Secrets Uncovered + The Night Lynsie Disappeared + It was a mystery that stumped investigators for years; a college student disappears after a night out clubbing; her mother thought she was at a sleepover with friends and it takes an eagle-eyed detective to find the truth buried in a pile of lies. + Docu-Series + + + TVPG + + + + Dateline: Secrets Uncovered + The Inside Man + A convict is offered a deal as tempting as it is dangerous; he must go undercover in a psychiatric hospital to get information from a suspected serial killer in order to win his freedom, but there's no guarantee he'll get out alive. + Docu-Series + + + TVPG + + + + Dateline: Secrets Uncovered + Deadly Connection + Young women out for a little fun with their friends, Kenia Monge and Lydia Tillman don't know each other, but their stories will become forever intertwined, both of them falling prey to a smooth-talking stranger with a terrifying secret. + Docu-Series + + + TVPG + + + + Dateline: Secrets Uncovered + Devil's Bathtub + Craig and Laura Rideout appear happy but after they separate, an ugly secret is revealed and one of them will soon be dead; clues point to four possible killers and leave investigators wondering if this murder is all in the family. + Docu-Series + + + TVPG + + + + Dateline: Secrets Uncovered + Deadly Circumstances + Brittany Eldridge was nearly nine months pregnant when she was found dead in her apartment; investigators focused on two men they believed had a possible motive. + Docu-Series + + + TVPG + + + + Dateline: Secrets Uncovered + A Crack in Everything + For the Jennings family, Christmas Eve becomes a waking nightmare after a gunshot rings out, and investigators must determine whether a secret led to suicide or murder. + Docu-Series + + + TVPG + + + + Dateline: Secrets Uncovered + A Night of the New Moon + Diana Lovejoy and her husband welcome a baby boy, but their marriage crumbles; a bitter custody battle follows; fearing for her safety, Diane turns to a man skilled in self-defense, but as it turns out, someone else is in grave danger. + Docu-Series + + + TVPG + + + + Dateline: Secrets Uncovered + Twisted in Texas + Meghan Verikas is attracted to Leon Jacob, in part, because as a doctor he saves lives; police officers tell her he is trying to hire a hit man, potentially to take hers, but authorities have a plan of their own. + Docu-Series + + + TVPG + + + + Dateline: Secrets Uncovered + Tangled Web + Sam and Danielle Dreher appear to have a storybook marriage, but this ending was not happily ever after; when Sam is murdered, investigators discover a twisted tale of secrets, lies and infidelity. + Docu-Series + + + TVPG + + + + Dateline: Secrets Uncovered + Stealing Paradise + A group of adventurous Americans think they found paradise in a tropical hideaway, the kind of place where people don't ask a lot of questions about their neighbors, until some of those neighbors start to disappear. + Docu-Series + + + TVPG + + + + Dateline: Secrets Uncovered + A Shot in the Dark + What happened in Cara Ryan's bedroom is a mystery; she admits she shot her ex-husband, but investigators need to know if it was murder or self-defense; detectives hear several versions of the story, but for a jury, there is only one truth. + Docu-Series + + + TVPG + + + + Sleeping With Death + Bad Blood + In an upscale high-rise in Chicago, a successful businesswoman is murdered as her boyfriend sleeps beside her; investigators point a finger at the boyfriend, but an exhaustive investigation uncovers the surprising architect of her murder. + Documentary + + + TVPG + + + + Sleeping With Death + A Monster in the Night + A mother is shot to death while her young daughters lay asleep in the same room; baffled investigators wonder if an open door invited an intruder in, or if the killer is someone else she trusted who has been in the house all along. + Documentary + + + + Dateline + Secrets in the Smoky Mountains + A son uncovers a dark family conspiracy when he questions his mother following a man's apparent suicide. + News Magazine + + + TVPG + + + + Dateline + Secrets in the Smoky Mountains + A son uncovers a dark family conspiracy when he questions his mother following a man's apparent suicide. + News Magazine + + + TVPG + + + + Dateline + Jagged + When Ohio mother Heather Bogle goes missing, a detective identifies multiple suspects, until he himself comes under scrutiny for his investigation. + News Magazine + + + + Accident, Suicide, or Murder + A Deadly Inferno + Tragedy strikes a rural Nebraska town when a beloved high school volleyball coach dies in a fiery car accident; but as investigators reconstruct her tragic death, the resulting clues steer the investigation to reveal a horrifying series of events. + Documentary + + + TVPG + + + + Accident, Suicide, or Murder + Vanished With the Tides + An apparent victim of an accidental drowning washes ashore on idyllic Cocoa Beach, Fla., but as investigators pull back the layers of the victim's personal life, a far murkier truth is revealed. + Documentary + + + TV14 + + + + Living With a Serial Killer + Anthony Shore + Houston police search for a serial killer preying on young women until a local man's DNA finally reveals the culprit; upon his arrest, the killer's sister and daughter learn his true identity. + Documentary + + + TVPG + + + + Living With a Serial Killer + Stephen Griffiths + The ex-girlfriend of the self-proclaimed Crossbow Cannibal reveals the mental and physical abuse she endured for years at the hands of one of the U.K.'s most heinous serial killers. + Documentary + + + TVPG + + + + Final Moments + The Red Suitcases + Laura Johnson, a mother of five, moves in with her boyfriend in Billings, Mont., then suddenly stops communicating with her family; her son rushes halfway across the country to learn why and finds disturbing clues that explain how she vanished. + Regular + + + TVPG + + + + Final Moments + A Date With Death + Police discover clues that suggest Michael Sandy, an interior designer who recently moved to New York to find a husband, was targeted in a hit-and-run accident on a busy highway. + Regular + + + TVPG + + + + Dateline: Secrets Uncovered + Haunting + Police believe a pair of double homicides in Nebraska, five years apart, might be connected; investigators working to solve the crimes fear the killer might strike again. + Docu-Series + + + TVPG + + + + Dateline: Secrets Uncovered + Tangled + At first it looked like a home invasion gone wrong at the house Ralph Candelario shared with his second wife, but when police learn the antique dealer's first wife had disappeared, they take a closer look. + Docu-Series + + + TVPG + + + + Dateline: Secrets Uncovered + Troubled Waters + A California couple's romantic getaway on a boat turns tragic when the young wife and mother is lost at sea; the case goes cold for years until a model with a checkered past goes undercover to find the truth. + Docu-Series + + + TVPG + + + + Dateline: Secrets Uncovered + The Last Dance + A beloved kindergarten teacher and mother of two finds a new lease on life after shedding hundreds of pounds; when she suddenly vanishes from her home, investigators uncover a connection between her dramatic weight loss and mysterious disappearance. + Docu-Series + + + TVPG + + + + Dateline: Secrets Uncovered + The Ultimatum + Michele and Lloyd Neurauter are devoted to their three daughters, even after their divorce; when Michele is found dead in her home, police suspect she killed herself; then, they uncover a deadly betrayal too twisted to be true -- except it is true. + Docu-Series + + + TVPG + + + + Dateline: Secrets Uncovered + A Deadly Path + After a woman falls to her death while hiking with her husband in Rocky Mountain National Park, rangers question if her death was an accident. + Docu-Series + + + TVPG + + + + P.E.G. Access + Public, educational, and government access television. + Local + + + + P.E.G. Access + Public, educational, and government access television. + Local + + + + P.E.G. Access + Public, educational, and government access television. + Local + + + + P.E.G. Access + Public, educational, and government access television. + Local + + + + P.E.G. Access + Public, educational, and government access television. + Local + + + + P.E.G. Access + Public, educational, and government access television. + Local + + + + P.E.G. Access + Public, educational, and government access television. + Local + + + + P.E.G. Access + Public, educational, and government access television. + Local + + + + P.E.G. Access + Public, educational, and government access television. + Local + + + + P.E.G. Access + Public, educational, and government access television. + Local + + + + P.E.G. Access + Public, educational, and government access television. + Local + + + + P.E.G. Access + Public, educational, and government access television. + Local + + + + P.E.G. Access + Public, educational, and government access television. + Local + + + + P.E.G. Access + Public, educational, and government access television. + Local + + + + P.E.G. Access + Public, educational, and government access television. + Local + + + + The Key Ingredient with Sheri Castle + Muscadine Mood + Broccoli pasta salad with muscadines in a poppyseed dressing; skillet of roasted muscadines and sausage; muscadine and peanut pie. + Food + + + TVG + + + + Pati's Mexican Table + Maya Today + A visit to Cenote Xocempich; horchata; sikil pak; fresh herbs masa corn tortillas. + Food + + + TVG + + + + Rick Steves' Europe + Sicilian Delights + Fresh seafood at the fisherman's harbor in Cefalù, on the northern coast of Sicily; Siracusa; Capuchin crypt; agriturismo; a classic Sicilian banquet. + Travel + + + TVG + + + + Wine First + Douro, Portugal + Searching for Douro wines along the Douro River; chef Rui Paula.Guests: Rui Paula.. + Travel + Food + + + TVPG + + + + Start Up + Dream First Studios -- Baltimore, MD + Music producer Don Trunk helps artists make music in a safe and comfortable environment. + Business + + + TVG + + + + To the Contrary With Bonnie Erbé + Del. Eleanor Holmes Norton (D-District of Columbia).Guests: Eleanor Holmes Norton.. + Talk Shows + News + + + + Firing Line With Margaret Hoover + Margaret Hoover leads interviews and debates. + Regular + + + + Broadchurch + A new witness shares a story with Ellie and Hardy, turning their case on its ear; Katie discovers a link between the case and a key suspect. + + David Tennant + Olivia Colman + Andrew Buchan + + Drama + + + TVMA + + + + The Seaside Hotel + Soldiers + After partying with the young people for a few days, Weyse returns to the hotel for some peace, but his troubles have only just begun. + + Anne Louise Hassing + Bodil Jørgensen + Amalie Dollerup + + Drama + + + TV14 + + + + World on Fire on Masterpiece + The war reaches the Egyptian desert, while bombs fall on Manchester; Harry introduces an explosive force into Robina's household. + + Jonah Hauer-King + Lesley Manville + Julia Brown + + Miniseries + History + + + TV14 + + + + La Frontera With Pati Jinich + Fronterizos of the Golden Coast + Experiencing the melding of cultures and cross-border collaborations with the fronterizos or borderlanders of the golden coast at the California part of the US-Mexico border. + Travel + Food + + + TVPG + + + + Travels With Darley + Wilmington, Delaware + Exploring the colonial town of New Castle, Delaware; Nemours Estate; Winterthur Museum, Garden and Library; Hagley Museum and Library. + Travel + + + TVG + + + + Bare Feet With Mickela Mallozzi + Cubanos + Grammy Award-winner Arturo O'Farrill and his Afro-Latin Jazz Band; Oyu Oro Afro-Cuban Dance Ensemble; dancing Cuban salsa at Far Rockaway Beach in Queens. + Travel + Performing Arts + + + TVG + + + + Travels With Darley + Wilmington, Delaware + Exploring the colonial town of New Castle, Delaware; Nemours Estate; Winterthur Museum, Garden and Library; Hagley Museum and Library. + Travel + + + TVG + + + + Bare Feet With Mickela Mallozzi + Cubanos + Grammy Award-winner Arturo O'Farrill and his Afro-Latin Jazz Band; Oyu Oro Afro-Cuban Dance Ensemble; dancing Cuban salsa at Far Rockaway Beach in Queens. + Travel + Performing Arts + + + TVG + + + + Make48 + Time for a Wrap Up! + The teams gets hands on with the new prototype; season wrapup and next steps. + Business + + + TVG + + + + Start Up + Brian LeFeve: St. Clair Shores, MI + Life coach Brian LeFeve helps individuals live their best life. + Business + + + TVG + + + + Poetry in America + Mending Wall + Robert Frost'sGuests: Caroline Kennedy, Tracy K. Smith, Julia Alvarez.. + Instructional + + + TVPG + + + + Museum Access + The Best of America -- USS Intrepid/WWII -- Wings of Freedom; U-505 German Submarine + Touring the World War II German U-505 submarine; exploring American aviation history and the World War II B-24 bomber; the flight deck of the World War II USS Intrepid aircraft carrier; Space Shuttle Enterprise; Blue Angels aircraft. + Documentary + + + TVG + + + + Knit and Crochet Now! + Cozy Comfy Cardi's + Waterford crochet cardigan; Gansey-style cardigan; zig zags crochet dishcloth; the knit cardigan of many colors. + Instructional + + + TVG + + + + Best of Sewing With Nancy + No-Hassle Triangles Quilt Blocks, Part 2 + Making 1/4-square triangles and modified 1/4-square triangles from beginner to experienced levels, including the 1/4-square dance, boy's nonsense, silent star, Ohio star, star of hope, and card trick blocks. + Instructional + + + TVG + + + + Pocket Sketching With Kath Macaulay + Journaling + Leaving space for words, whether it's a private journal or a shared travel journal; greeting cards as a travel journal; choosing paper that will work with the pen. + Arts & Entertainment + + + TVG + + + + The Best of the Joy of Painting + Majestic Pine + A golden field of sparse pines and other greenery fit inside a unique shape with curved, cut-in corners. + Instructional + Arts & Entertainment + + + TVG + + + + Healthy Minds With Dr. Jeffrey Borenstein + NAMI: National Alliance on Mental Illness + CEO Daniel H. Gillison Jr., National Alliance on Mental Illness, discusses the non-profit that provides free resources, support and events for mental health patients. + Health + + + TVG + + + + Second Opinion With Joan Lunden + Racial Disparities in Health + Racial disparities that exist in health and health care in the U.S. + Health + + + TVPG + + + + LAUSD Bond Oversight Committee Meeting + November 2, 2023 + Regular + + + + LA School Board Committee Meeting + Special Education Committee + Local + + + + Poetry in America + Sonnet IV; I Shall Forget You Presently, My Dear + The sonnets written by Edna St. Vincent Millay in 1920s Greenwich Village challenge cliches of love and romance.Guests: Olivia Gatwood, Leslie Jamison, Philip Galanes.. + Instructional + + + TV14 + + + + Astrid + Starling + A famous lawyer is brutally shot dead in front of 12 witnesses who deny seeing or hearing anything; the mystery is whether they are accomplices to the crime or just innocent people present at the wrong place at the wrong time. + + Sara Mortensen + Lola Dewaere + Benoit Michel + + Regular + + + TV14 + + + + The Seaside Hotel + Collaboration + While Mrs. Weyse makes a dangerous discovery, Molin returns from Berlin with an offer to Madsen for new cooperation with the Germans. + + Anne Louise Hassing + Bodil Jørgensen + Amalie Dollerup + + Drama + + + TV14 + + + + La Frontera With Pati Jinich + Fronterizos of the Golden Coast + Experiencing the melding of cultures and cross-border collaborations with the fronterizos or borderlanders of the golden coast at the California part of the US-Mexico border. + Travel + Food + + + TVPG + + + + No Passport Required + Houston + The food and culture of Houston's Nigerian and West African community; cooking with cutting-edge chefs and traditional home cooks. + Food + + + TVPG + + + + Les Stroud's Wild Harvest + Oak & Madrone + A harvest based on two trees -- oak and madrone; bark, berries, nuts, flour and infused bourbon leave chef Paul Rogalski and guest chef Joy Cyr with a tough culinary challenge. + Food + + + TVG + + + + The Daytripper + Lake Jackson, TX + Scuba diving with old amusement park rides; a fish hatchery that turns out millions of Texas redfish each year; wagyu meatball sub; tiki drinks and ramen. + Travel + + + TVG + + + + NOVA + Ancient Earth: Life Rising + Exploring how some of the earliest life emerged on Earth. + Science + + + TVPG + + + + Celebrity Antiques Road Trip + Cliff Parisi & Judy Parfitt + Actors Cliff Parisi and Judy Parfitt (Guests: Cliff Parisi, Judy Parfitt.. + Hobbies & Crafts + Arts & Entertainment + + + TVPG + + + + Finding Your Roots With Henry Louis Gates, Jr. + Watchmen + Regina King and Damon Lindelof discover their family trees.Guests: Regina King, Damon Lindelof.. + Documentary + + + TV14 + + + + Reel South + Justice Is a Beginning + Two stories from the South's penitentiary systems focus on an investigation into youth suicide and systemic neglect (. + Documentary + + + TV14 + + + + Girl Unscripted + The Boys + Parents are oblivious when 14-year-old Erica dates a 17-year-old boy; terrible secrets hide in the shadows of Rachel's home. + Drama + Documentary + + + TV14 + + + + I Go to the Rock: The Gospel Music of Whitney Houston + Examining how profoundly Gospel music influenced Whitney Houston's personal life and helped shape her career, from her first performance in front of an audience to her best-selling Gospel album of all time,. + Specials + Documentary + + + TVG + + + + Focus on Europe + Hamas terror attacks in Israel cause concern for Israelis and Jews abroad; algae growth in the Baltic Sea; school of refugees in Cyprus; stone skimming championship in Scotland. + Regular + + + TVG + + + + The Seaside Hotel + New Plans + Madsen is close to achieving his dream of being allowed to build in Germany. + + Anne Louise Hassing + Bodil Jørgensen + Amalie Dollerup + + Drama + + + TV14 + + + + Finding Your Roots With Henry Louis Gates, Jr. + Watchmen + Regina King and Damon Lindelof discover their family trees.Guests: Regina King, Damon Lindelof.. + Documentary + + + TV14 + + + + Roadtrip Nation + Trailblazing + Amazon solutions architect Anel Perez; political campaign manager Andre Carroll. + Travel + + + TVG + + + + Les Stroud's Beyond Survival + The Hewa and the Hidden Secret Ceremony Part 2 + Les Stroud travels three days on foot through the jungle of Papua New Guinea to carry out the. + Reality TV + + + TVPG + + + + Opportunity Knock$ + Community Support + Families strengthen their financial resilience and independence by visiting resources in their communities. + Business + + + TVPG + + + + Consuelo Mack WealthTrack + Legendary Value Investor Exclusive + Bruce Berkowitz, Fairholme Fund.Guests: Bruce Berkowitz.. + Business + + + TVG + + + + Sit and Be Fit + Wake Your Body With Exercise + Using a towel to improve range of motion; a finger segment for the brain features college football hand signs; foot release homework assignment. + Regular + + + TVG + + + + Classical Stretch: By Essentrics + Posture + A full-body posture workout. + Health + + + TVG + + + + Yoga in Practice + Intention, Knowledge, and Action + Uniting mind and body with the standing rotation, revolved open twist, and the apex pose, Twisted Sister. + Regular + + + TVG + + + + Reading Wizards + Lesson 16: Words That Begin with Ch + Instructional + + + + Math Park + Understanding Decimals: Tenths + Instructional + + + + Peg + Cat + The Chicken Problem; The Space Creature Problem + Peg and Cat need to get 100 chickens back in the coop; Peg, Cat and Richard must get the 100 chickens back to their spaceship. + Animated + Children + + + TVY + + + + Hero Elementary + AJ's Extra Superpower, Part 1; AJ's Extra Superpower, Part 2 + The crew discovers that a dog is stealing a little girl's toys from her backyard; AJ tries to find his hero, Jetman Jones, at Citytown Hero Con. + + Carlos Díaz + Stacey Depass + Jadiel Dowlin + + Animated + Children + + + TVY + + + + Molly of Denali + Lynx to the Past; Molly of the Yukon + Trini is discouraged because she can't add her own moves to the Lynx Dance; Molly hopes to catch a Yukon River king salmon. + + Sovereign Bill + Lorne Cardinal + Ronnie Dean Harris + + Animated + Children + + + TVY + + + + Donkey Hodie + A Big Favor for Grampy; A Fair Way to Bounce + Grampy asks Donkey to take Gregory for a walk, but Gregory won't move; Harriett Elizabeth Cow wants her pals to try her invention -- the Bounce-a-rino. + + Haley Jenkins + Frankie Cordero + Stephanie D'Abruzzo + + Animated + Children + + + TVY + + + + Daniel Tiger's Neighborhood + Daniel's Blueberry Paws; Wow at the Library + Daniel Tiger's treat from Prince Tuesday's fruity ice treat cart starts to melt when he becomes distracted by all the other flavors. + + Devan Cohen + Ted Dykstra + Heather Bambrick + + Animated + Children + + + TVY + + + + Curious George + Submonkey; Double-O Monkey Tracks Trouble + George volunteers to retrieve Professor Pizza's birthday present, which has been dragged away by an ocean current; George tries to prevent Betsy's dance recital from being ruined. + + Frank Welker + + Animated + Children + + + TVY + + + + Sesame Street + Big Bird's Happy to Be Me Club + Big Bird wants to join the Good Bird's Club, but they try to bully him into changing. + + Fran Brill + Leslie Carrara-Rudolph + Ryan Dillon + + Children + Instructional + + + TVY + + + + Alma's Way + Checkers Champ; World's Greatest + Alma helps Andre prepare for a checkers tournament; Alma and Rafia compete for World's Greatest Artist. + Animated + Children + + + TVY + + + + Rosie's Rules + Dino Day Delayed; Rosie's Walkie Talkie + Rosie tries to make tomorrow come faster so she can go to the Dino Park; Rosie looks for her missing walkie talkies. + Animated + Children + + + TVY + + + + Xavier Riddle and the Secret Museum + I Am Abraham Lincoln; I Am Jane Jacobs + Yadina gets advice from Abraham Lincoln after she accidentally loses her friend's toy; Jane Jacobs inspires Xavier, Yadina and Brad to rebuild their fort. + Animated + Children + + + TVY + + + + Elinor Wonders Why + A Moth Mystery; Just Peachy + Fluttering moths distract the kids when they try to sing their new Sunny Summer Song; the kids give away peaches to their friends in Animal Town. + Animated + Children + + + TVY + + + + Ready Jet Go! + Ice Moon Enceladus; What Goes Up .. + Sean sets up a snow cone stand to raise money to send a spaceship to Mars, but he runs out of ice quickly; Jet learns about gravity after building a mini flying saucer. + Animated + Children + + + TVY + + + + Let's Go Luna! + Shake, Rattle and Roll; Love and Harmony + Leo experience an earthquake in San Francisco; Carmen searches for love and harmony. + Animated + Children + + + TVY + + + + Pinkalicious & Peterrific + A Birthday Party for Kendra; Norman Plans a Playdate + Pinkalicious plans a surprise birthday party for Kendra; Pinkalicious and Peter help Norman the Gnome plan a play date with his friend Edna. + Animated + Children + + + TVY + + + + Nature Cat + The Deal With Eels; Skip It! + Daisy and Hal want to join Squeeks to look for a spooky creature that looks like a snake but swims in the river; Nature Cat competes against Ronald in the Neighborhood Rock-Skipping Championship of the World. + Animated + Children + + + TVY + + + + Dinosaur Train + Don's Hole-iday; We're Not All Dinosaurs + The kids make up an imaginary holiday for Don; the Pteranodons meet a new small mammal friend, Adele Alphadon. + Animated + Children + + + TVY + + + + Wild Kratts + Honey Seekers + The relationship between the honey guide bird and honey badger. + + Martin Kratt + Chris Kratt + + Animals + Children + + + TVY + + + + Cyberchase + Creech's Creature Quandary + A disagreement drives a wedge between friends when Inez tells Creech her bike path should be shut down. + Animated + Children + + + TVY + + + + Arthur + Rhyme for Your Life; For Whom the Bell Tolls + Binky falls asleep while writing a poem; Arthur takes care of D.W. after she loses her voice. + Animated + Children + + + TVY + + + + Odd Squad + The Jackies; Invasion of the Body Switchers + Ms. O and her team are determined to win a Jackie Award; Ms. O and Oscar accidentally switch bodies. + + Filip Geljo + Dalila Bela + Sean Michael Kyer + + Children + Instructional + + + TVY + + + + Oc World + Local + + + + Sustaining US + Foster Youth Find A Way + Local + + + + BBC News The Context + A regular panel of guests from across the political spectrum discuss the biggest international stories of the day, along with news-making interviews and analysis from BBC correspondents around the globe. + News + + + TVPG + + + + BBC News America + Live news program produced out of BBC's Washington, D.C. bureau; host Sumi Somaskanda. + News + + + + Finding Your Roots With Henry Louis Gates, Jr. + Watchmen + Regina King and Damon Lindelof discover their family trees.Guests: Regina King, Damon Lindelof.. + Documentary + + + TV14 + + + + Legacy List With Matt Paxton + A Space for Healing (Birmingham, AL) + Sisters of one of the girls killed in the 1963 bombing of the 16th Street Baptist Church in Birmingham, Ala., downsize their longtime home, filled with memories and mementos from the tragedy. + Reality TV + + + TVG + + + + Celebrity Antiques Road Trip + Cliff Parisi & Judy Parfitt + Actors Cliff Parisi and Judy Parfitt (Guests: Cliff Parisi, Judy Parfitt.. + Hobbies & Crafts + Arts & Entertainment + + + TVPG + + + + Journey to Highclere Castle With the Sicilian Tenors + The Sicilian Tenors perform some of their classic repertoire at Highclere Castle, home of. + Specials + Music + + + TVG + + + + BBC News + News. Reporting on the day's international news from London and from BBC correspondents around the world. + News + + + TVG + + + + NHK Newsline + World events, business news and weather forecasts; broadcast in English. + News + + + + Democracy Now! + An independent news program features international journalists, grassroots leaders, independent analysts, as well as ordinary people directly affected by world events and U.S. policy. + Political + News + + + + Amanpour and Company + Christiane Amanpour leads discussions about world issues and interviews with global leaders. + Regular + + + + Legacy List With Matt Paxton + A Space for Healing (Birmingham, AL) + Sisters of one of the girls killed in the 1963 bombing of the 16th Street Baptist Church in Birmingham, Ala., downsize their longtime home, filled with memories and mementos from the tragedy. + Reality TV + + + TVG + + + + Celebrity Antiques Road Trip + Cliff Parisi & Judy Parfitt + Actors Cliff Parisi and Judy Parfitt (Guests: Cliff Parisi, Judy Parfitt.. + Hobbies & Crafts + Arts & Entertainment + + + TVPG + + + + Journey to Highclere Castle With the Sicilian Tenors + The Sicilian Tenors perform some of their classic repertoire at Highclere Castle, home of. + Specials + Music + + + TVG + + + + Sit and Be Fit + Exercise Interventions for Functional Fitness + A daily exercise to promote functional fitness and independence; a pelvic floor exercise to strengthen the core. + Regular + + + TVG + + + + Classical Stretch: By Essentrics + Long Adductor + Toning and liberating the long adductors, the muscles of the inner thigh. + Health + + + TVG + + + + Your Fountain of Youth With Lee Holden + Energy & Vitality + Gentle warm-ups, stretches and flowing movements that help release chronically-held tension and stress and free up healing energy throughout the body. + Health + + + TVG + + + + Reading Wizards + Instructional + + + + Math Park + More Fun with Decimals: Hundredths + Instructional + + + + Peg + Cat + The Messy Room Problem; The Golden Pyramid Problem + Peg and Cat sort through a messy room before company comes; Peg and Cat search for the Mermaid's golden pyramids. + Animated + Children + + + TVY + + + + Hero Elementary + Friends of the Forest; Chicken Hero + The heroes embark on a mission with Branchman to plan a solution to use less paper; the crew tries to track down a chicken on the loose. + + Carlos Díaz + Stacey Depass + Jadiel Dowlin + + Animated + Children + + + TVY + + + + Molly of Denali + Operation Sleepover; Beneath the Surface + Molly spends the night at Tooey's house when a blizzard strikes Qyah; Molly loses her fish charm bracelet in an ice hole. + + Sovereign Bill + Sequoia Janvier + Lorne Cardinal + + Animated + Children + + + TVY + + + + Donkey Hodie + The Golden Crunchdoodles Return; Flowers, Fetch, and Dance + The pals find a box of Golden Crunchdoodles cereal; Donkey, Panda and Bob Dog want to play different things. + + Haley Jenkins + Frankie Cordero + Stephanie D'Abruzzo + + Animated + Children + + + TVY + + + + Daniel Tiger's Neighborhood + The Class Votes; The Neighborhood Votes + Daniel and his classmates choose a class pet; the kids get to vote on a new piece of playground equipment. + + Jake Beale + Ted Dykstra + Heather Bambrick + + Animated + Children + + + TVY + + + + Curious George + George Makes a Stand; Curious George Sees the Light + George sets up a lemonade stand; George tries to fix the new traffic light on the country road. + + Frank Welker + + Animated + Children + + + TVY + + + + Sesame Street + Sesame Street Goes to the Farm + Farmer Todd takes Elmo, Rosita, Bert, and Ernie on a tour of a farm; they learn about the machines farmers use, the animals that live on the farm, and the food that grows there. + + Fran Brill + Leslie Carrara-Rudolph + Ryan Dillon + + Children + Instructional + + + TVY + + + + Alma's Way + To Break or Not to Break; The New Mr. Octy + Alma senses that Beto is hesitant about breaking his pinata and wants to find out why; Alma regrets her decision to give away an old toy she doesn't play with anymore. + + Summer Rose Castillo + Jesús E. Martínez + Annie Henk + + Animated + Children + + + TVY + + + + Rosie's Rules + Rosie in the City; Rosie in the Country + Rosie, Javi and Papa go on an adventure when Javi's dragon gets lost in the city; Rosie looks for blue bonnets in the country. + + Ellora Lopez + Denise Oliver + Gabby Clarke + + Animated + Children + + + TVY + + + + Xavier Riddle and the Secret Museum + I Am George Washington; I Am Susan B. Anthony + George Washington shows Yadina how to be the best Nature Troop leader; Susan B. Anthony helps Brad show his friends that everyone should have a vote. + Animated + Children + + + TVY + + + + Elinor Wonders Why + A Garden for All; Band of Explorers + Elinor gives Hazel some strawberry seeds to grow at home; the Exploring Club goes on a musical march in the forest. + Animated + Children + + + TVY + + + + Ready Jet Go! + Solar System Bake-off!; Kid-Kart Derby + Mindy and Carrot enter a cooking competition and make desserts representing different planets; Jet builds an electric engine for the annual soapbox derby. + Animated + Children + + + TVY + + + + Let's Go Luna! + Hola Mariachi; Loco for Cocoa + Carmen finds a mariachi band to fill in when the Circo orchestra gets the hiccups; Leo, Carmen and Andy help return a lost cocoa bean. + Animated + Children + + + TVY + + + + Pinkalicious & Peterrific + A Fairy Thanksgiving; Pinkfoot Playdate + Pinkalicious and Peter accidentally damage Fairyanna's Thanksgiving table and vow to make it right; Pinkfoot spends the day with Pinkalicious and her friends. + Animated + Children + + + TVY + + + + Nature Cat + Magical Mushroom Mystery Tour; A Midsummer Day's Dream + Squeeks wants to create a walking tour that features different types of mushrooms; Nature Cat and his pals celebrate midsummer with floral fedoras and the traditional midsummer dance. + Animated + Children + + + TVY + + + + Dinosaur Train + Father's Day + King and Crystal go to a concert. + Animated + Children + + + TVY + + + + Wild Kratts + Slider, the Otter + The Wild Kratts find a lost otter cub. + + Martin Kratt + Chris Kratt + + Animals + Children + + + TVY + + + + Cyberchase + Housewarming Party + As the Three Pigs celebrate their new cottage with a housewarming party, Hacker and Wicked accidentally zap away Mount Evermore -- which had been protecting the cottage from direct sunlight. + Animated + Children + + + TVY + + + + Arthur + The Election; Francine Goes to War + Mr. Ratburn's class has a pretend election; Francine gets into trouble. + Animated + Children + + + TVY + + + + Odd Squad + The Odd Antidote; The One That Got Away + Ms. O develops bizarre side effects after being sprayed by a weird plant; a mysterious villain may bring Ms. O's old partner out of retirement. + + Filip Geljo + Dalila Bela + Sean Michael Kyer + + Children + Instructional + + + TVY + + + + Story Pirates Presents: SPTV + Instructional + + + + Story Pirates Presents: SPTV + Instructional + + + + DIY Science Time + Light + Do-it-yourself activities include spectroscopes, magnifying glasses and kaleidoscopes. + Instructional + Science + + + TVG + + + + BBC News The Context + A regular panel of guests from across the political spectrum discuss the biggest international stories of the day, along with news-making interviews and analysis from BBC correspondents around the globe. + News + + + TVPG + + + + BBC News America + Live news program produced out of BBC's Washington, D.C. bureau; host Sumi Somaskanda. + News + + + + NOVA + Ancient Earth: Life Rising + Exploring how some of the earliest life emerged on Earth. + Science + + + TVPG + + + + Power Trip: The Story of Energy + Globalization + How energy enabled rapid globalization. + Documentary + Science + + + TVPG + + + + Rick Steves Art of the Modern Age + Exploring how new technologies and social progress spawned various artistic styles during the 1800s -- romanticism, Belle Epoque, impressionism and art nouveau. + Specials + Documentary + + + TVPG + + + + Bob Dole, Italy and World War II + The experience of fighting in Italy during World War II changes the life of a young Lt. Bob Dole. + Specials + Documentary + + + TVPG + + + + BBC News + News. Reporting on the day's international news from London and from BBC correspondents around the world. + News + + + TVG + + + + NHK Newsline + World events, business news and weather forecasts; broadcast in English. + News + + + + Democracy Now! + An independent news program features international journalists, grassroots leaders, independent analysts, as well as ordinary people directly affected by world events and U.S. policy. + Political + News + + + + Amanpour and Company + Christiane Amanpour leads discussions about world issues and interviews with global leaders. + Regular + + + + Power Trip: The Story of Energy + Globalization + How energy enabled rapid globalization. + Documentary + Science + + + TVPG + + + + Rick Steves Art of the Modern Age + Exploring how new technologies and social progress spawned various artistic styles during the 1800s -- romanticism, Belle Epoque, impressionism and art nouveau. + Specials + Documentary + + + TVPG + + + + Bob Dole, Italy and World War II + The experience of fighting in Italy during World War II changes the life of a young Lt. Bob Dole. + Specials + Documentary + + + TVPG + + + + Sit and Be Fit + Pamper Your Feet + Exercises to stimulate feet and keep them healthy. + Regular + + + TVG + + + + Classical Stretch: By Essentrics + Back Pain Relief + A 23-minute back pain relief workout. + Health + + + TVG + + + + Happy Yoga With Sarah Starr + Summer Sunflower Storm + Dynamic core strengthening moves along with simple stretches for the shoulders, back, hips, legs and more. + Health + + + TVG + + + + Reading Wizards + Instructional + + + + Math Park + Understanding Fractions + Instructional + + + + Peg + Cat + The Pirate Problem; The Sleepover Problem + Peg and Cat show a group of pirates how to share tropical fruit; during a sleepover, Peg and Cat help the scared pirates fall asleep by counting chickens. + Animated + Children + + + TVY + + + + Hero Elementary + Looking Super; Schmubble Trouble + Hail Caesar helps the crew search for a self-flying cape that took off from the store; AJ, Lucita and Sara get caught inside Schmubble Bubbles. + + Carlos Díaz + Stacey Depass + Jadiel Dowlin + + Animated + Children + + + TVY + + + + Molly of Denali + King Run; Native Youth Olympics + Molly helps Grandpa Nat fix the broken fish wheel; Molly learns that her dad competed in the Native Youth Olympics. + Animated + Children + + + TVY + + + + Donkey Hodie + The Breakfast Bowl; Dancing Dandelions + Donkey and Panda compete in the Breakfast Bowl; Donkey, Panda and Bob Dog plant dancing dandelion seeds and look for the right music to help the flowers grow. + + Haley Jenkins + Frankie Cordero + Stephanie D'Abruzzo + + Animated + Children + + + TVY + + + + Daniel Tiger's Neighborhood + Mad at the Crayon Factory; Mad at School + Daniel gets mad when he doesn't get a crayon box right away at the Crayon Factory. + + Devan Cohen + Ted Dykstra + Heather Bambrick + + Animated + Children + + + TVY + + + + Curious George + George's Geode Jamboree; The Man With the Yellow Hair + George stumbles upon a closed earth science exhibit and decides to start his rock collection; George and the Man with the Yellow Hat stop at a barbershop where George learns of the barber's special techniques. + + Frank Welker + Jeff Bennett + Annie Mumolo + + Animated + Children + + + TVY + + + + Sesame Street + Bert's Bike Time with Luis + Luis and Ernie help Bert gain confidence to ride his bike without training wheels. + + Fran Brill + Leslie Carrara-Rudolph + Ryan Dillon + + Children + Instructional + + + TVY + + + + Alma's Way + Alma's Book Swap; Finders Keepers + Alma finds a way for everyone to get books while the library is under renovation; Alma finds a doll in the park. + Animated + Children + + + TVY + + + + Rosie's Rules + Dance Party Island; Rosie the Mascot + Rosie makes a dance party island in her backyard, but the flag she puts up causes confusion; Rosie decides to be the mascot for Javi's soccer team. + + Ellora Lopez + Denise Oliver + Gabby Clarke + + Animated + Children + + + TVY + + + + Xavier Riddle and the Secret Museum + I Am Edmund Hillary; I Am Celia Cruz + Edmund Hillary explains to Xavier that even the most courageous adventurers ask for help when they need it; Yadina prepares for a special birthday performance with the help of Celia Cruz. + Animated + Children + + + TVY + + + + Elinor Wonders Why + Speed Racer; One of These Goats + Elinor and her friends try to make their race car go faster by changing its shape; the substitute teacher has trouble telling the Goat twins apart. + Animated + Children + + + TVY + + + + Ready Jet Go! + Asteroids, Meteors, and Meteorites; Mindy's Meteorite Stand + The kids learn the difference between an asteroid, a meteor and a meteorite; while digging in the yard, Mindy and Sunspot find a unique rock that Mindy believes is a meteorite. + Animated + Children + + + TVY + + + + Let's Go Luna! + What's the Big Idea?; Day of the Dead + Andy learns about murals while looking for a big surface to paint in Mexico City; Carmen is asked to perform at the Day of the Dead festival. + Animated + Children + + + TVY + + + + Pinkalicious & Peterrific + Aqualicious; Sing in the Spring + Pinkalicious and Peter become friends with a merminnie named Aqua; Pinkalicious and Peter help bring in the spring after the springtime fairies get the flu. + Animated + Children + + + TVY + + + + Nature Cat + Rock Clues; Sweet Scent + Squeeks needs to find her missing magnifying glass in time for the Rock Stars Club meeting; the gang tracks down a sweet scent. + Animated + Children + + + TVY + + + + Dinosaur Train + King and Crystal Play Red Rock; Nick of Time + King and Crystal are invited to perform at Red Rock, but King needs some convincing to overcome stage fright; Dad's friend Nick comes for a visit but all he wants to do is teach the kids how to fly. + Animated + Children + + + TVY + + + + Wild Kratts + The Great Froggyback Ride + The Wild Kratts are accidentally miniaturized while adventuring in the Amazon. + + Martin Kratt + Chris Kratt + + Animals + Children + + + TVY + + + + Cyberchase + Plantasaurus! + Motherboard invites the kids for a slumber party with Digit in Control Central. + Animated + Children + + + TVY + + + + Maya & Miguel + Abuela Upmanship + Maya stretches the truth a little about her grandmother's acting career. + Animated + Children + + + TVY + + + + Biz Kid$ + Financial Institutions -- All the Same? + Investment houses; stock exchanges; payday loan companies; fashion and finance in New York. + Children + Instructional + + + TVG + + + + SciGirls + Atletas Maravillosos/Awesome Athletes + Inspired by Olympic athletes, SciGirls in San Diego create a fitness boot camp. + Children + Instructional + + + TVG + + + + Ready Jet Go! + So Many Moons; Project Pluto + Mindy worries about the addition of a younger sibling; an excited Mindy wants to present her Pluto model for show and tell. + Animated + Children + + + TVY + + + + WordGirl + Jerky Jerk; Becky's Birthday + Becky must stop the Butcher from stealing the ancient Beef Jerky of Supreme Power; Energy Monster. + Animated + Children + + + TVY7 + + + + Wild Kratts + Hermit Crab Shell Exchange + Martin and Chris spot a hermit crab on the beach. + + Martin Kratt + Chris Kratt + + Animals + Children + + + TVY + + + + Odd Squad + Sample of New York; It's Not Easy Being Chill + The Mobile Unit helps the New York City Odd Squad when agents go on strike; agent-in-training Orpita does her agent profile report on Omar. + + Filip Geljo + Dalila Bela + Sean Michael Kyer + + Children + Instructional + + + TVY + + + + Wimee's Words + Storytelling + Silly words; talking with children about being writers; a tour of the KDL Bookmobile; Wimee dreams about discovering the most magical book in the world. + Animated + Children + + + TVG + + + + Clifford the Big Red Dog + The Adventures of Clifford the Good; Surf's Up ... And Down + Clifford decides to do good deeds around the island as Clifford the Good; Jack gets upset when he has trouble mastering surfing. + + Hannah Levinson + Adam Sanders + Bahia Watson + + Animated + Children + + + TVY + + + + Let's Go Luna! + What's the Big Idea?; Day of the Dead + Andy learns about murals while looking for a big surface to paint in Mexico City; Carmen is asked to perform at the Day of the Dead festival. + Animated + Children + + + TVY + + + + Sesame Street + A Home for Gecko + Elmo, Abby, and Chris help Zoe make a habitat for her new pet gecko, Gary; they need a hiding spot in the terrarium for Gary to keep cool. + + Fran Brill + Leslie Carrara-Rudolph + Ryan Dillon + + Children + Instructional + + + TVY + + + + Work It Out Wombats! + Special Delivery; Campout Confusion + Zadie helps Malik design a faster route to bring ice cream to a sick Sammy; Zadie tries to host a fun campout. + + Ian Ho + Rain Janjua + Mia SwamiNathan + + Animated + Children + + + TVY + + + + Peg + Cat + The Clown Problem; The Ninja Problem + Peg and Cat help Mac achieve his dream of being a clown in the circus; Peg and Cat help their friend Aki find the fifteen missing cherry blossom trees. + Animated + Children + + + TVY + + + + Daniel Tiger's Neighborhood + Daniel's Grr-ific Grandpere; Making Mozies With Nana + Daniel Tiger is excited to spend an entire day with his grandpa; Daniel Tiger spends a whole day with Jodi and her Nana. + + Devan Cohen + Ted Dykstra + Heather Bambrick + + Animated + Children + + + TVY + + + + Cyberchase + Coral Grief + The CyberSquad and Digit try to find the source that is heating up the ocean waters and bleaching the coral reef. + + Christopher Lloyd + Gilbert Gottfried + Novie Edwards + + Animated + Children + + + TVY + + + + Pinkalicious & Peterrific + Peter's Blues; Pink Raspberry + Peter learns to play the blues on his harmonica; Peter decides to host a silly song contest. + Animated + Children + + + TVY + + + + Super Why! + The Cookbook + A rhyming chef helps Whyatt make a birthday cake for his little sister. + Animated + Children + + + TVY + + + + Pinkalicious & Peterrific + Peter's Blues; Pink Raspberry + Peter learns to play the blues on his harmonica; Peter decides to host a silly song contest. + Animated + Children + + + TVY + + + + Super Why! + The Cookbook + A rhyming chef helps Whyatt make a birthday cake for his little sister. + Animated + Children + + + TVY + + + + Dinosaur Train + Have You Heard About the Herd?; Jess Hesperornis + Ernie introduces Tiny and Buddy to a herding game; the Pteranodons meet a water-dwelling dinosaur who is also a bird. + Animated + Children + + + TVY + + + + The Cat in the Hat Knows a Lot About That! + A Tale About Tails; Sticky Situation + Animals with different tails; Nick's drumstick helps fix a beaver dam. + + Martin Short + + Animated + Children + + + TVY + + + + Curious George + Count on George to Deliver; The Baby Elephant + While delivering boxes of Sprouts bars in his wagon, George discovers he's missing one; George visits an elephant sanctuary in Kenya, but when a calf gets stuck in a mud pit, George needs some big help. + + Frank Welker + Jeff Bennett + Annie Mumolo + + Animated + Children + + + TVY + + + + The Berenstain Bears + Mama's New Job; Mighty Milton + Mama opens her own quilt shop, leaving Papa and the Cubs to share the housework; Brother helps a new cub. + Children + Instructional + + + TVY + + + + Molly of Denali + A Fireweed Feast; River Skate + Molly and Trini look for firewood to make treats, but plans are interrupted by a storm; Molly and Tooey hope to teach Trini how to skate in time for the River Skate and bonfire. + + Sovereign Bill + Lorne Cardinal + Ronnie Dean Harris + + Animated + Children + + + TVY + + + + Martha Speaks + The Opera Contest; Maestro Martha + An opera contest; two bad guys plan to turn a charity concert into a heist. + + Vanesa Tomasino + Alex Ferris + + Animated + Children + + + TVY + + + + Maya & Miguel + The Best Thanksgiving Ever + Maya and Miguel try to plan the best Thanksgiving celebration for Santiago's mother. + Animated + Children + + + TVY + + + + Biz Kid$ + Don't Blow Your Dough + Putting money in a safe place; avoiding identity theft; Washington State Attorney General Rob McKenna. + Children + Instructional + + + TVG + + + + SciGirls + Robots to the Rescue! + Abby and her friends give a rescue robot a personality makeover. + Children + Instructional + + + TVG + + + + Ready Jet Go! + What's a Satellite; Satellite Selfie + An orbiting communications satellite breaks down, knocking out television service and prompting Jet to fly up to space to figure out the problem; the kids try to gather for a selfie when a satellite passes over the neighborhood. + Animated + Children + + + TVY + + + + Arthur + Muffy's Car Campaign; Truth or Poll + Muffy worries that a petition to help protect the environment may put Crosswire Motors out of business; Brain suggests that Binky conduct a poll about the latest math test. + Animated + Children + + + TVY + + + + WordGirl + Trustworthy Tobey; The Tooth Hurts + Becky blames Tobey for a missing library book; Becky fills in for Scoops at the Daily Rag when he is absent from school. + Animated + Children + + + TVY7 + + + + Wild Kratts + Voyage of the Butterflier XT + The monarch butterfly's 2,000-mile migration. + + Martin Kratt + Chris Kratt + + Animals + Children + + + TVY + + + + Odd Squad + The Sandwich Project; Wax on Wax Odd + Members of the Mobile Unit get zapped into sandwiches by villain Shelly Catessan; the Mobile Unit faces a series of challenges that Orla knew would be coming. + + Filip Geljo + Dalila Bela + Sean Michael Kyer + + Children + Instructional + + + TVY + + + + Wimee's Words + Number Two + A song about twos; numbers in Swahili; a book about being. + Animated + Children + + + TVG + + + + Clifford the Big Red Dog + The Adventures of Clifford the Good; Surf's Up ... And Down + Clifford decides to do good deeds around the island as Clifford the Good; Jack gets upset when he has trouble mastering surfing. + + Hannah Levinson + Adam Sanders + Bahia Watson + + Animated + Children + + + TVY + + + + Let's Go Luna! + Dig It Daddy-O; Hilly Nilly + Andy becomes Prince of the Beatniks in San Francisco; the gang rides a cable car. + Animated + Children + + + TVY + + + + Sesame Street + Bert's Bike Time with Luis + Luis and Ernie help Bert gain confidence to ride his bike without training wheels. + + Fran Brill + Leslie Carrara-Rudolph + Ryan Dillon + + Children + Instructional + + + TVY + + + + Work It Out Wombats! + Snout and About; Zadie's Shell Shuffle + Zadie and Malik retrace their steps to locate Zeke's beloved stuffy Snout; JunJun's song helps Zadie fix Mr. E's shell garden. + + Ian Ho + Rain Janjua + Mia SwamiNathan + + Animated + Children + + + TVY + + + + Peg + Cat + The Three Bears Problem; The Giant Problem + Peg and Cat create The Electric Eleven by bringing together the Three Bears, Three Little Pigs and the Three Billy Goats Gruff; Peg and Cat plan an escape when they fear the Giants want to eat them. + Animated + Children + + + TVY + + + + Daniel Tiger's Neighborhood + Daniel's Grr-ific Grandpere; Making Mozies With Nana + Daniel Tiger is excited to spend an entire day with his grandpa; Daniel Tiger spends a whole day with Jodi and her Nana. + + Devan Cohen + Ted Dykstra + Heather Bambrick + + Animated + Children + + + TVY + + + + Cyberchase + Coral Grief + The CyberSquad and Digit try to find the source that is heating up the ocean waters and bleaching the coral reef. + + Christopher Lloyd + Gilbert Gottfried + Novie Edwards + + Animated + Children + + + TVY + + + + Pinkalicious & Peterrific + Peter's Blues; Pink Raspberry + Peter learns to play the blues on his harmonica; Peter decides to host a silly song contest. + Animated + Children + + + TVY + + + + Super Why! + Snow White + The Super Readers meet Snow White as she is tempted with an apple by a wicked queen. + Animated + Children + + + TVY + + + + Dinosaur Train + Have You Heard About the Herd?; Jess Hesperornis + Ernie introduces Tiny and Buddy to a herding game; the Pteranodons meet a water-dwelling dinosaur who is also a bird. + Animated + Children + + + TVY + + + + The Cat in the Hat Knows a Lot About That! + A Tale About Tails; Sticky Situation + Animals with different tails; Nick's drumstick helps fix a beaver dam. + + Martin Short + + Animated + Children + + + TVY + + + + Curious George + Count on George to Deliver; The Baby Elephant + While delivering boxes of Sprouts bars in his wagon, George discovers he's missing one; George visits an elephant sanctuary in Kenya, but when a calf gets stuck in a mud pit, George needs some big help. + + Frank Welker + Jeff Bennett + Annie Mumolo + + Animated + Children + + + TVY + + + + The Berenstain Bears + Mama's New Job; Mighty Milton + Mama opens her own quilt shop, leaving Papa and the Cubs to share the housework; Brother helps a new cub. + Children + Instructional + + + TVY + + + + Molly of Denali + A Fireweed Feast; River Skate + Molly and Trini look for firewood to make treats, but plans are interrupted by a storm; Molly and Tooey hope to teach Trini how to skate in time for the River Skate and bonfire. + + Sovereign Bill + Lorne Cardinal + Ronnie Dean Harris + + Animated + Children + + + TVY + + + + Martha Speaks + Alice Covers Up; Carolina Picks a Lilly + Alice plans to go to a pool party but gets caught in a strange cover-up; Carolina adopts a new puppy. + + Vanesa Tomasino + Alex Ferris + + Animated + Children + + + TVY + + + + Maya & Miguel + Fashionistas + Miguel agrees to participate in a fashion show before he learns the new coach of the soccer travel team will be there. + Animated + Children + + + TVY + + + + Biz Kid$ + How Credit Affects Your Life + Building good credit; how credit laws affect one's life. + Children + Instructional + + + TVG + + + + SciGirls + Mejorando Procesos/Process Power + SciGirls in Arizona design a streamlined service plan for a food bank to help high school students in need. + Children + Instructional + + + TVG + + + + Ready Jet Go! + Sunspot and the Great Red Spot; Uncle Zucchini Babysits + Mechanical problems with the family wagon/saucer may keep Sunspot from meeting fellow pet aliens on Jupiter; Uncle Zucchini babysits when the Propulsion parents take a work assignment. + Animated + Children + + + TVY + + + + Arthur + Muffy's Car Campaign; Truth or Poll + Muffy worries that a petition to help protect the environment may put Crosswire Motors out of business; Brain suggests that Binky conduct a poll about the latest math test. + Animated + Children + + + TVY + + + + WordGirl + Chuck!; Down With Word Up + Chuck the Evil Sandwich-Making Guy tries to steal gold; Granny May turns the townspeople against WordGirl. + Animated + Children + + + TVY7 + + + + Wild Kratts + Voyage of the Butterflier XT + The monarch butterfly's 2,000-mile migration. + + Martin Kratt + Chris Kratt + + Animals + Children + + + TVY + + + + Odd Squad + The Sandwich Project; Wax on Wax Odd + Members of the Mobile Unit get zapped into sandwiches by villain Shelly Catessan; the Mobile Unit faces a series of challenges that Orla knew would be coming. + + Filip Geljo + Dalila Bela + Sean Michael Kyer + + Children + Instructional + + + TVY + + + + Wimee's Words + Thankful for Veterans + Wimee and friends sing about things that they are thankful for; a road trip to an art exhibit; a story about a cake-eating frog; Veterans Day. + Animated + Children + + + TVG + + + + Clifford the Big Red Dog + The Wild Wolf Pack; Putt-ing It Together + Clifford decides to start his own wolf pack after Emily Elizabeth reads him a story about wolves; Emily Elizabeth sets out to create a mini golf course in her backyard. + + Hannah Levinson + Adam Sanders + Bahia Watson + + Animated + Children + + + TVY + + + + Let's Go Luna! + Dig It Daddy-O; Hilly Nilly + Andy becomes Prince of the Beatniks in San Francisco; the gang rides a cable car. + Animated + Children + + + TVY + + + + Sesame Street + Bert's Bike Time with Luis + Luis and Ernie help Bert gain confidence to ride his bike without training wheels. + + Fran Brill + Leslie Carrara-Rudolph + Ryan Dillon + + Children + Instructional + + + TVY + + + + Work It Out Wombats! + Snout and About; Zadie's Shell Shuffle + Zadie and Malik retrace their steps to locate Zeke's beloved stuffy Snout; JunJun's song helps Zadie fix Mr. E's shell garden. + + Ian Ho + Rain Janjua + Mia SwamiNathan + + Animated + Children + + + TVY + + + + Peg + Cat + The Play Date Problem; The Blabberwocky Problem + Peg and Cat use the power of patterns to help their friends Beethoven and the Three Bears play together; Peg and Cat are the Knights of the Round Table. + Animated + Children + + + TVY + + + + Daniel Tiger's Neighborhood + Daniel's Grr-ific Grandpere; Making Mozies With Nana + Daniel Tiger is excited to spend an entire day with his grandpa; Daniel Tiger spends a whole day with Jodi and her Nana. + + Devan Cohen + Ted Dykstra + Heather Bambrick + + Animated + Children + + + TVY + + + + Xavier Riddle and the Secret Museum + I Am Abraham Lincoln; I Am Jane Jacobs + Yadina gets advice from Abraham Lincoln after she accidentally loses her friend's toy; Jane Jacobs inspires Xavier, Yadina and Brad to rebuild their fort. + Animated + Children + + + TVY + + + + Pinkalicious & Peterrific + A Birthday Party for Kendra; Norman Plans a Playdate + Pinkalicious plans a surprise birthday party for Kendra; Pinkalicious and Peter help Norman the Gnome plan a play date with his friend Edna. + Animated + Children + + + TVY + + + + Super Why! + The Beach Day Mystery + A scavenger hunt includes clues, pirates and a treasure. + Animated + Children + + + TVY + + + + Dinosaur Train + Don's Hole-iday; We're Not All Dinosaurs + The kids make up an imaginary holiday for Don; the Pteranodons meet a new small mammal friend, Adele Alphadon. + Animated + Children + + + TVY + + + + The Cat in the Hat Knows a Lot About That! + Night Lights; Go Snails Go! + Fireflies provide light for the shadow puppet show; how snails use their shells. + + Martin Short + + Animated + Children + + + TVY + + + + Curious George + Submonkey; Double-O Monkey Tracks Trouble + George volunteers to retrieve Professor Pizza's birthday present, which has been dragged away by an ocean current; George tries to prevent Betsy's dance recital from being ruined. + + Frank Welker + + Animated + Children + + + TVY + + + + The Berenstain Bears + Go to School; Week at Grandma's + Sister is warned about the difficulty of third grade; Brother and Sister are sure they will be bored at Grandma's house when Mama and Papa go on a second honeymoon. + Children + Instructional + + + TVY + + + + Molly of Denali + Lynx to the Past; Molly of the Yukon + Trini is discouraged because she can't add her own moves to the Lynx Dance; Molly hopes to catch a Yukon River king salmon. + + Sovereign Bill + Lorne Cardinal + Ronnie Dean Harris + + Animated + Children + + + TVY + + + + Martha Speaks + Martha: Deadline Doggie; It's the Giant Pumpkin, Martha + Martha sniffs out leads for Carolina's paper; Carolina competes with the Ronald Report. + + Vanesa Tomasino + Alex Ferris + + Animated + Children + + + TVY + + + + Maya & Miguel + Cupid + Miguel learns he has been chosen to portray Cupid at school and must deliver valentines while wearing wings. + Animated + Children + + + TVY + + + + Biz Kid$ + Introducing Entrepreneurs + Stories behind the Frisbee, Slinky and blue jeans; an entrepreneur's lemonade stand became so successful she was able to make over an entire park. + Children + Instructional + + + TVG + + + + SciGirls + Going Green + Mackenzie and her friends invent a new use for recycled yogurt cups. + Children + Instructional + + + TVG + + + + Ready Jet Go! + Space Junk; Scientific Sean + The kids meet up with Uncle Zucchini and start to clean up their space neighborhood; Jet and Sean build paper airplanes. + Animated + Children + + + TVY + + + + Arthur + Rhyme for Your Life; For Whom the Bell Tolls + Binky falls asleep while writing a poem; Arthur takes care of D.W. after she loses her voice. + Animated + Children + + + TVY + + + + WordGirl + A Sticky Situation; Eight Legs vs. Two-Brains + WordGirl and TJ become glued together; it's Becky's turn to take care of the class pet -- a tarantula named Shaggy. + Animated + Children + + + TVY7 + + + + Wild Kratts + Honey Seekers + The relationship between the honey guide bird and honey badger. + + Martin Kratt + Chris Kratt + + Animals + Children + + + TVY + + + + Odd Squad + The Jackies; Invasion of the Body Switchers + Ms. O and her team are determined to win a Jackie Award; Ms. O and Oscar accidentally switch bodies. + + Filip Geljo + Dalila Bela + Sean Michael Kyer + + Children + Instructional + + + TVY + + + + Wimee's Words + Yellow + Wimee sings a song and writes a story with his friends; a song about yellow things; a book about the sun; a song in Spanish about the color yellow. + Animated + Children + + + TVG + + + + Clifford the Big Red Dog + The Wild Wolf Pack; Putt-ing It Together + Clifford decides to start his own wolf pack after Emily Elizabeth reads him a story about wolves; Emily Elizabeth sets out to create a mini golf course in her backyard. + + Hannah Levinson + Adam Sanders + Bahia Watson + + Animated + Children + + + TVY + + + + Let's Go Luna! + Dig It Daddy-O; Hilly Nilly + Andy becomes Prince of the Beatniks in San Francisco; the gang rides a cable car. + Animated + Children + + + TVY + + + + Sesame Street + Big Bird's Happy to Be Me Club + Big Bird wants to join the Good Bird's Club, but they try to bully him into changing. + + Fran Brill + Leslie Carrara-Rudolph + Ryan Dillon + + Children + Instructional + + + TVY + + + + Nature Cat + The Deal With Eels; Skip It! + Daisy and Hal want to join Squeeks to look for a spooky creature that looks like a snake but swims in the river; Nature Cat competes against Ronald in the Neighborhood Rock-Skipping Championship of the World. + Animated + Children + + + TVY + + + + Peg + Cat + The Circus Problem; The Buried Treasure Problem + Peg and Cat climb and swing through the center ring at the circus; Peg and Cat measure their way to buried treasure. + Animated + Children + + + TVY + + + + Daniel Tiger's Neighborhood + Daniel's Blueberry Paws; Wow at the Library + Daniel Tiger's treat from Prince Tuesday's fruity ice treat cart starts to melt when he becomes distracted by all the other flavors. + + Devan Cohen + Ted Dykstra + Heather Bambrick + + Animated + Children + + + TVY + + + + Xavier Riddle and the Secret Museum + I Am Abraham Lincoln; I Am Jane Jacobs + Yadina gets advice from Abraham Lincoln after she accidentally loses her friend's toy; Jane Jacobs inspires Xavier, Yadina and Brad to rebuild their fort. + Animated + Children + + + TVY + + + + Pinkalicious & Peterrific + A Birthday Party for Kendra; Norman Plans a Playdate + Pinkalicious plans a surprise birthday party for Kendra; Pinkalicious and Peter help Norman the Gnome plan a play date with his friend Edna. + Animated + Children + + + TVY + + + + Super Why! + The Rolling Rice Cakes + An old man chases his rice cakes into a mouse hole. + Animated + Children + + + TVY + + + + Dinosaur Train + The Egg Stealer?; To Grandparents' Nest We Go! + Buddy and Don find unhatched eggs on the beach; the kids spend the day at Grandma and Grandpa's cliffside nest. + Animated + Children + + + TVY + + + + The Cat in the Hat Knows a Lot About That! + Night Lights; Go Snails Go! + Fireflies provide light for the shadow puppet show; how snails use their shells. + + Martin Short + + Animated + Children + + + TVY + + + + Curious George + Submonkey; Double-O Monkey Tracks Trouble + George volunteers to retrieve Professor Pizza's birthday present, which has been dragged away by an ocean current; George tries to prevent Betsy's dance recital from being ruined. + + Frank Welker + + Animated + Children + + + TVY + + + + The Berenstain Bears + Go to School; Week at Grandma's + Sister is warned about the difficulty of third grade; Brother and Sister are sure they will be bored at Grandma's house when Mama and Papa go on a second honeymoon. + Children + Instructional + + + TVY + + + + Molly of Denali + Lynx to the Past; Molly of the Yukon + Trini is discouraged because she can't add her own moves to the Lynx Dance; Molly hopes to catch a Yukon River king salmon. + + Sovereign Bill + Lorne Cardinal + Ronnie Dean Harris + + Animated + Children + + + TVY + + + + Martha Speaks + The Opera Contest; Maestro Martha + An opera contest; two bad guys plan to turn a charity concert into a heist. + + Vanesa Tomasino + Alex Ferris + + Animated + Children + + + TVY + + + + Maya & Miguel + Maya Quixote and Miguel Panza + Maya and Miguel go on a quest to reinstate Miguel's favorite ice cream at the local ice cream shop. + Animated + Children + + + TVY + + + + Biz Kid$ + The Art of Negotiation + Strategies for effective negotiations; teens runs Grand Slam Garage Sales; a young man sells movie memorabilia online. + Children + Instructional + + + TVG + + + + SciGirls + Asombrosos Arboles/Terrific Trees + Exploring the benefits that big trees bring to ecosystems, and the differences between trees in the rainforest and the city. + Children + Instructional + + + TVG + + + + Ready Jet Go! + Diggin' Earth; Mindy's Mystery + The kids try to dig into the center of the earth, but find that it is too hot; a strong smell from outside keeps Mindy awake. + Animated + Children + + + TVY + + + + Arthur + Rhyme for Your Life; For Whom the Bell Tolls + Binky falls asleep while writing a poem; Arthur takes care of D.W. after she loses her voice. + Animated + Children + + + TVY + + + + WordGirl + Mr. Big; Book Ends + WordGirl tries to figure out a businessman's new product; Tobey uses his robots to hold the library hostage. + Animated + Children + + + TVY7 + + + + Wild Kratts + Honey Seekers + The relationship between the honey guide bird and honey badger. + + Martin Kratt + Chris Kratt + + Animals + Children + + + TVY + + + + Odd Squad + The Jackies; Invasion of the Body Switchers + Ms. O and her team are determined to win a Jackie Award; Ms. O and Oscar accidentally switch bodies. + + Filip Geljo + Dalila Bela + Sean Michael Kyer + + Children + Instructional + + + TVY + + + + Wimee's Words + Bears + A song about a big bear; a story about a chipmunk's forest adventure; how to say key words in American Sign Language (ASL); a Native American story; a book talk. + Animated + Children + + + TVG + + + + Clifford the Big Red Dog + Dancing by the Book; Tucker's Tooth + Emily Elizabeth and Jack are determined to show off their favorite dance move at the dance party on Birdwell Island; Tucker's loose tooth keeps him from doing his job as the island's firehouse dog. + + Hannah Levinson + Adam Sanders + Bahia Watson + + Animated + Children + + + TVY + + + + Let's Go Luna! + Dig It Daddy-O; Hilly Nilly + Andy becomes Prince of the Beatniks in San Francisco; the gang rides a cable car. + Animated + Children + + + TVY + + + + Sesame Street + Big Bird's Happy to Be Me Club + Big Bird wants to join the Good Bird's Club, but they try to bully him into changing. + + Fran Brill + Leslie Carrara-Rudolph + Ryan Dillon + + Children + Instructional + + + TVY + + + + Nature Cat + The Deal With Eels; Skip It! + Daisy and Hal want to join Squeeks to look for a spooky creature that looks like a snake but swims in the river; Nature Cat competes against Ronald in the Neighborhood Rock-Skipping Championship of the World. + Animated + Children + + + TVY + + + + Peg + Cat + The Littlest Chicken Problem; The Election Problem + Peg and Cat follow the Littlest Chicken all through Fairytale Land; the farmer holds an election to see who'll watch over the farm in his absence. + Animated + Children + + + TVY + + + + Daniel Tiger's Neighborhood + Daniel's Blueberry Paws; Wow at the Library + Daniel Tiger's treat from Prince Tuesday's fruity ice treat cart starts to melt when he becomes distracted by all the other flavors. + + Devan Cohen + Ted Dykstra + Heather Bambrick + + Animated + Children + + + TVY + + + + Xavier Riddle and the Secret Museum + I Am George Washington; I Am Susan B. Anthony + George Washington shows Yadina how to be the best Nature Troop leader; Susan B. Anthony helps Brad show his friends that everyone should have a vote. + Animated + Children + + + TVY + + + + Pinkalicious & Peterrific + A Fairy Thanksgiving; Pinkfoot Playdate + Pinkalicious and Peter accidentally damage Fairyanna's Thanksgiving table and vow to make it right; Pinkfoot spends the day with Pinkalicious and her friends. + Animated + Children + + + TVY + + + + Super Why! + Woofster Finds a Home + Whyatt meets a puppy at a pet adoption fair. + Animated + Children + + + TVY + + + + Dinosaur Train + Father's Day + King and Crystal go to a concert. + Animated + Children + + + TVY + + + + The Cat in the Hat Knows a Lot About That! + Flight of the Penguin; Let's Go Fly a Kite + Sally and Nick learn not all birds fly when they race with Percy the penguin; wind blows Sally and Nick's kite away. + + Martin Short + + Animated + Children + + + TVY + + + + Curious George + George Makes a Stand; Curious George Sees the Light + George sets up a lemonade stand; George tries to fix the new traffic light on the country road. + + Frank Welker + + Animated + Children + + + TVY + + + + The Berenstain Bears + Trouble With Pets; The Sitter + Brother and Sister adopt a puppy and quickly learn about responsibility; Brother and Sister damage Ms. Grizzle's flowerbed. + Children + Instructional + + + TVY + + + + Molly of Denali + Operation Sleepover; Beneath the Surface + Molly spends the night at Tooey's house when a blizzard strikes Qyah; Molly loses her fish charm bracelet in an ice hole. + + Sovereign Bill + Sequoia Janvier + Lorne Cardinal + + Animated + Children + + + TVY + + + + Martha Speaks + TD's Magic; Scaredy Cat + TD wants to put on a magic show for CD's birthday party; spooky stories. + + Vanesa Tomasino + Alex Ferris + + Animated + Children + + + TVY + + + + Maya & Miguel + Papi Joins the Band + Miguel tries to fend off his father's help when he and his friends form a band for a talent contest. + Animated + Children + + + TVY + + + + Biz Kid$ + The Biz Kids Challenge + Two teams set up identical lemonade stands, with each team deciding the price and promotion strategy to sell the most product. + Children + Instructional + + + TVG + + + + SciGirls + Star Power + Avianna and Miranda help cut light pollution in the neighborhood. + Children + Instructional + + + TVG + + + + Ready Jet Go! + Beep and Boop's Game; Constellation Prize + The kids help get BOOP over a ravine on Mars, and learn that satellites help scientists communicate with far away rovers; constellations. + Animated + Children + + + TVY + + + + Arthur + The Election; Francine Goes to War + Mr. Ratburn's class has a pretend election; Francine gets into trouble. + Animated + Children + + + TVY + + + + WordGirl + Time-Out With Two-Brains; Dr. WordGirl-Brains + It's Becky's turn to take care of the class pet -- a tarantula; Dr. Two-Brains freezes time to preserve his vault of cheese. + Animated + Children + + + TVY7 + + + + Wild Kratts + Slider, the Otter + The Wild Kratts find a lost otter cub. + + Martin Kratt + Chris Kratt + + Animals + Children + + + TVY + + + + Odd Squad + The Odd Antidote; The One That Got Away + Ms. O develops bizarre side effects after being sprayed by a weird plant; a mysterious villain may bring Ms. O's old partner out of retirement. + + Filip Geljo + Dalila Bela + Sean Michael Kyer + + Children + Instructional + + + TVY + + + + Wimee's Words + Potluck + Wimee's friends sing about potluck; secret recipes; potluck in six languages; baking cookies; Number Crunching; a book about dumpling day. + Animated + Children + + + TVG + + + + Clifford the Big Red Dog + Dancing by the Book; Tucker's Tooth + Emily Elizabeth and Jack are determined to show off their favorite dance move at the dance party on Birdwell Island; Tucker's loose tooth keeps him from doing his job as the island's firehouse dog. + + Hannah Levinson + Adam Sanders + Bahia Watson + + Animated + Children + + + TVY + + + + Let's Go Luna! + Shake, Rattle and Roll; Love and Harmony + Leo experience an earthquake in San Francisco; Carmen searches for love and harmony. + Animated + Children + + + TVY + + + + Sesame Street + Sesame Street Goes to the Farm + Farmer Todd takes Elmo, Rosita, Bert, and Ernie on a tour of a farm; they learn about the machines farmers use, the animals that live on the farm, and the food that grows there. + + Fran Brill + Leslie Carrara-Rudolph + Ryan Dillon + + Children + Instructional + + + TVY + + + + Nature Cat + Magical Mushroom Mystery Tour; A Midsummer Day's Dream + Squeeks wants to create a walking tour that features different types of mushrooms; Nature Cat and his pals celebrate midsummer with floral fedoras and the traditional midsummer dance. + Animated + Children + + + TVY + + + + Peg + Cat + The Birthday Cake Problem; The Doohickey Problem + Peg and Cat make a birthday cake for Jonah and his friends; Peg and Cat must reassemble their smashed space ship. + Animated + Children + + + TVY + + + + Daniel Tiger's Neighborhood + The Class Votes; The Neighborhood Votes + Daniel and his classmates choose a class pet; the kids get to vote on a new piece of playground equipment. + + Jake Beale + Ted Dykstra + Heather Bambrick + + Animated + Children + + + TVY + + + + Xavier Riddle and the Secret Museum + I Am George Washington; I Am Susan B. Anthony + George Washington shows Yadina how to be the best Nature Troop leader; Susan B. Anthony helps Brad show his friends that everyone should have a vote. + Animated + Children + + + TVY + + + + Pinkalicious & Peterrific + A Fairy Thanksgiving; Pinkfoot Playdate + Pinkalicious and Peter accidentally damage Fairyanna's Thanksgiving table and vow to make it right; Pinkfoot spends the day with Pinkalicious and her friends. + Animated + Children + + + TVY + + + + Super Why! + Peter Rabbit + Peter Rabbit is on the hunt for some vegetables for his mama. + Animated + Children + + + TVY + + + + Dinosaur Train + Double-Crested Trouble; Erma and the Conductor + Buddy and Tiny meet twin brothers with double-crests on their heads; Erma Eoraptor and Mr. Conductor watch a meteor shower. + Animated + Children + + + TVY + + + + The Cat in the Hat Knows a Lot About That! + Flight of the Penguin; Let's Go Fly a Kite + Sally and Nick learn not all birds fly when they race with Percy the penguin; wind blows Sally and Nick's kite away. + + Martin Short + + Animated + Children + + + TVY + + + + Curious George + George Makes a Stand; Curious George Sees the Light + George sets up a lemonade stand; George tries to fix the new traffic light on the country road. + + Frank Welker + + Animated + Children + + + TVY + + + + The Berenstain Bears + Trouble With Pets; The Sitter + Brother and Sister adopt a puppy and quickly learn about responsibility; Brother and Sister damage Ms. Grizzle's flowerbed. + Children + Instructional + + + TVY + + + + Molly of Denali + Operation Sleepover; Beneath the Surface + Molly spends the night at Tooey's house when a blizzard strikes Qyah; Molly loses her fish charm bracelet in an ice hole. + + Sovereign Bill + Sequoia Janvier + Lorne Cardinal + + Animated + Children + + + TVY + + + + Martha Speaks + Martha: Deadline Doggie; It's the Giant Pumpkin, Martha + Martha sniffs out leads for Carolina's paper; Carolina competes with the Ronald Report. + + Vanesa Tomasino + Alex Ferris + + Animated + Children + + + TVY + + + + Maya & Miguel + The Taming of Mr. Shue + The children must find a way to win over their new teacher. + Animated + Children + + + TVY + + + + Biz Kid$ + The World Is a Risky Place + How to protect one's business, assets and self; two young tennis coaches; the owner of Small Town Skateshop. + Children + Instructional + + + TVG + + + + SciGirls + High Tech Tide + Florida SciGirls and marine biologists digitally track eagle rays in the Gulf of Mexico. + Children + Instructional + + + TVG + + + + Ready Jet Go! + Which Moon Is Best?; Detective Mindy + Sean wants to be the first to walk on a moon, but he can't decide which one; the kids learn about black holes. + Animated + Children + + + TVY + + + + Arthur + The Election; Francine Goes to War + Mr. Ratburn's class has a pretend election; Francine gets into trouble. + Animated + Children + + + TVY + + + + WordGirl + Super-Grounded; Mouse Army + Becky sends Captain Huggy Face to battle the Butcher; an army of supersmart mice tries to take over the city. + Animated + Children + + + TVY7 + + + + Wild Kratts + Slider, the Otter + The Wild Kratts find a lost otter cub. + + Martin Kratt + Chris Kratt + + Animals + Children + + + TVY + + + + Odd Squad + The Odd Antidote; The One That Got Away + Ms. O develops bizarre side effects after being sprayed by a weird plant; a mysterious villain may bring Ms. O's old partner out of retirement. + + Filip Geljo + Dalila Bela + Sean Michael Kyer + + Children + Instructional + + + TVY + + + + Wimee's Words + Kindness + Wimee and friends sing about things they do with friends; a story about popcorn; kindness chemicals in the brain; a song about sharing; Mr. Grumpfry gives Siblee a day off. + Animated + Children + + + TVG + + + + Clifford the Big Red Dog + The March of the Sea Turtles; A Squirrely Situation + The kids try to figure out why the newly-hatched baby sea turtles walk around town instead of crawling into the ocean; Emily Elizabeth and Clifford are inspired to turn Clifford's doghouse into a warm and cozy paradise. + + Hannah Levinson + Adam Sanders + Bahia Watson + + Animated + Children + + + TVY + + + + Let's Go Luna! + Shake, Rattle and Roll; Love and Harmony + Leo experience an earthquake in San Francisco; Carmen searches for love and harmony. + Animated + Children + + + TVY + + + + Sesame Street + Sesame Street Goes to the Farm + Farmer Todd takes Elmo, Rosita, Bert, and Ernie on a tour of a farm; they learn about the machines farmers use, the animals that live on the farm, and the food that grows there. + + Fran Brill + Leslie Carrara-Rudolph + Ryan Dillon + + Children + Instructional + + + TVY + + + + Nature Cat + Magical Mushroom Mystery Tour; A Midsummer Day's Dream + Squeeks wants to create a walking tour that features different types of mushrooms; Nature Cat and his pals celebrate midsummer with floral fedoras and the traditional midsummer dance. + Animated + Children + + + TVY + + + + Peg + Cat + The Ring Problem; The Wedding Problem + The Giant drops a diamond ring and it bounces into a narrow pipe; Peg and Cat are chosen to organize the Giants' wedding. + Animated + Children + + + TVY + + + + Daniel Tiger's Neighborhood + The Class Votes; The Neighborhood Votes + Daniel and his classmates choose a class pet; the kids get to vote on a new piece of playground equipment. + + Jake Beale + Ted Dykstra + Heather Bambrick + + Animated + Children + + + TVY + + + + Xavier Riddle and the Secret Museum + I Am Edmund Hillary; I Am Celia Cruz + Edmund Hillary explains to Xavier that even the most courageous adventurers ask for help when they need it; Yadina prepares for a special birthday performance with the help of Celia Cruz. + Animated + Children + + + TVY + + + + Pinkalicious & Peterrific + Aqualicious; Sing in the Spring + Pinkalicious and Peter become friends with a merminnie named Aqua; Pinkalicious and Peter help bring in the spring after the springtime fairies get the flu. + Animated + Children + + + TVY + + + + Super Why! + Webby in Bathland + After practicing her soccer moves, Red finds out it takes more than just water to wash away germs. + Animated + Children + + + TVY + + + + Dinosaur Train + King and Crystal Play Red Rock; Nick of Time + King and Crystal are invited to perform at Red Rock, but King needs some convincing to overcome stage fright; Dad's friend Nick comes for a visit but all he wants to do is teach the kids how to fly. + Animated + Children + + + TVY + + + + The Cat in the Hat Knows a Lot About That! + You Should Be Dancing!; Batty for Bats + Nick and Sally take dance lessons from a bird; a bat teaches Nick and Sally about echolocation. + + Martin Short + + Animated + Children + + + TVY + + + + Curious George + George's Geode Jamboree; The Man With the Yellow Hair + George stumbles upon a closed earth science exhibit and decides to start his rock collection; George and the Man with the Yellow Hat stop at a barbershop where George learns of the barber's special techniques. + + Frank Welker + Jeff Bennett + Annie Mumolo + + Animated + Children + + + TVY + + + + The Berenstain Bears + Trick or Treat; Lend a Helping Hand + The cubs plan to avoid Widder Jones' house while trick or treating; the cubs help Widder Jones with some chores. + Children + Instructional + + + TVY + + + + Molly of Denali + King Run; Native Youth Olympics + Molly helps Grandpa Nat fix the broken fish wheel; Molly learns that her dad competed in the Native Youth Olympics. + Animated + Children + + + TVY + + + + Martha Speaks + Martha Acts Up; Ronald Is In + Martha is excited to be part of. + + Vanesa Tomasino + Alex Ferris + + Animated + Children + + + TVY + + + + Maya & Miguel + Crushed + Tito exposes Miguel's crush on a new substitute teacher. + Animated + Children + + + TVY + + + + Biz Kid$ + How to Be a Smart Consumer + Smart shopping strategies; avoiding common pitfalls and traps set by high-pressure salesmen. + Children + Instructional + + + TVG + + + + SciGirls + Aquabots + Underwater robotics at the U.S. Naval Academy; a SeaPerch ROV investigates artificial oyster reefs in the Chesapeake Bay. + Children + Instructional + + + TVG + + + + Ready Jet Go! + Sunday Drive + Everything goes out of whack after the Propulsions download the new version of their saucer dashboard operating system. + + Ashleigh Ball + Kyle Rideout + Meg Roe + + Animated + Children + + + TVY + + + + Arthur + Arthur's Chicken Pox; Sick as a Dog + Arthur gets chicken pox just as the circus comes to town; Arthur blames D.W. for making his dog sick. + Animated + Children + + + TVY + + + + WordGirl + Tim Botsford: Neighborhood Assistant; Set Sail for the Bake Sale + Determined to help anyone who needs it, Tim Botsford becomes the Neighborhood Assistant; Nocan the Contrarian schemes to steal items from the debate club's bake sale. + Animated + Children + + + TVY7 + + + + Wild Kratts + Honey Seekers + The relationship between the honey guide bird and honey badger. + + Martin Kratt + Chris Kratt + + Animals + Children + + + TVY + + + + Odd Squad + Odd Outbreak; The Perfect Lunch + A strange medical crisis causes much chaos; Olive and Otto help Ms. O host an important lunch. + + Filip Geljo + Dalila Bela + Sean Michael Kyer + + Children + Instructional + + + TVY + + + + Wimee's Words + Cats + Wimee sings about animal sounds; translating cat into six languages; a silly song about cat food; a book about cats; Cocoa and Fifi. + Animated + Children + + + TVG + + + + Clifford the Big Red Dog + The March of the Sea Turtles; A Squirrely Situation + The kids try to figure out why the newly-hatched baby sea turtles walk around town instead of crawling into the ocean; Emily Elizabeth and Clifford are inspired to turn Clifford's doghouse into a warm and cozy paradise. + + Hannah Levinson + Adam Sanders + Bahia Watson + + Animated + Children + + + TVY + + + + Let's Go Luna! + Hola Mariachi; Loco for Cocoa + Carmen finds a mariachi band to fill in when the Circo orchestra gets the hiccups; Leo, Carmen and Andy help return a lost cocoa bean. + Animated + Children + + + TVY + + + + Sesame Street + Bert's Bike Time with Luis + Luis and Ernie help Bert gain confidence to ride his bike without training wheels. + + Fran Brill + Leslie Carrara-Rudolph + Ryan Dillon + + Children + Instructional + + + TVY + + + + Nature Cat + Rock Clues; Sweet Scent + Squeeks needs to find her missing magnifying glass in time for the Rock Stars Club meeting; the gang tracks down a sweet scent. + Animated + Children + + + TVY + + + + Peg + Cat + The Tree Problem; Another Tree Problem + Peg uses three giant gifts to get Cat down from a tree; Peg must find another way to retrieve Cat when he gets stuck in a tree again. + Animated + Children + + + TVY + + + + Daniel Tiger's Neighborhood + Mad at the Crayon Factory; Mad at School + Daniel gets mad when he doesn't get a crayon box right away at the Crayon Factory. + + Devan Cohen + Ted Dykstra + Heather Bambrick + + Animated + Children + + + TVY + + + + Xavier Riddle and the Secret Museum + I Am Edmund Hillary; I Am Celia Cruz + Edmund Hillary explains to Xavier that even the most courageous adventurers ask for help when they need it; Yadina prepares for a special birthday performance with the help of Celia Cruz. + Animated + Children + + + TVY + + + + Pinkalicious & Peterrific + Aqualicious; Sing in the Spring + Pinkalicious and Peter become friends with a merminnie named Aqua; Pinkalicious and Peter help bring in the spring after the springtime fairies get the flu. + Animated + Children + + + TVY + + + + Super Why! + The Boy Who Drew Cats + A boy struggles to sketch a picture for the emperor. + Animated + Children + + + TVY + + + + Dinosaur Train + Dome-Headed Dinosaur; Treasure Hunt + Sibling dinosaurs with enormous dome heads play a sport called dome ball; Don and Gilbert search for amber. + Animated + Children + + + TVY + + + + The Cat in the Hat Knows a Lot About That! + You Should Be Dancing!; Batty for Bats + Nick and Sally take dance lessons from a bird; a bat teaches Nick and Sally about echolocation. + + Martin Short + + Animated + Children + + + TVY + + + + Curious George + George's Geode Jamboree; The Man With the Yellow Hair + George stumbles upon a closed earth science exhibit and decides to start his rock collection; George and the Man with the Yellow Hat stop at a barbershop where George learns of the barber's special techniques. + + Frank Welker + Jeff Bennett + Annie Mumolo + + Animated + Children + + + TVY + + + + The Berenstain Bears + Trick or Treat; Lend a Helping Hand + The cubs plan to avoid Widder Jones' house while trick or treating; the cubs help Widder Jones with some chores. + Children + Instructional + + + TVY + + + + PBS News Weekend + Analysis of national and international news, as well as in-depth reporting on topics ranging from education and politics to technology and finance. + News + + + + Finding Your Roots With Henry Louis Gates, Jr. + Anchormen + Journalists Jim Acosta and Van Jones learn about their ancestors.Guests: Jim Acosta, Van Jones.. + Documentary + + + TVPG + + + + Antiques Roadshow + Thrills & Chills + A MAD issue 8 complete. + Hobbies & Crafts + Arts & Entertainment + + + TVG + + + + Midsomer Murders + The Wolf Hunter of Little Worthy: Part 1 + After a photographer wins an urban myth competition with his creation The Wolf Hunter, a man is killed, prompting Barnaby to investigate whether this myth has become murderous reality. + + Neil Dudgeon + Nick Hendrix + Fiona Dolman + + Drama + + + TVPG + + + + Midsomer Murders + The Wolf Hunter of Little Worthy: Part 2 + After a photographer wins an urban myth competition for his creation The Wolf Hunter, a man is killed, prompting Barnaby to investigate whether this myth has become murderous reality. + + Neil Dudgeon + Nick Hendrix + Fiona Dolman + + Drama + + + TVPG + + + + Agatha Christie's Poirot + Curtain: Poirot's Last Case + Poirot returns to Styles with Hastings decades after solving their first mystery together to prevent a serial killer from claiming more victims. + + David Suchet + Helen Baxendale + Hugh Fraser + + Drama + + + TVPG + + + + Agatha Christie's Poirot + Curtain: Poirot's Last Case + Poirot returns to Styles with Hastings decades after solving their first mystery together to prevent a serial killer from claiming more victims. + + David Suchet + Helen Baxendale + Hugh Fraser + + Drama + + + TVPG + + + + Rick Steves' Europe + Rick Steves' Europe: Art of the Early Middle Ages + Diverse art produced by early Europeans, from Christians to Muslims and Byzantines to Vikings. + Travel + + + TVPG + + + + Austin City Limits + Jorge Drexler + This long-running concert series features artists from every musical genre in a live-music setting. + Music + Performing Arts + + + TVPG + + + + Songs at the Center + Master Series Episode With Ray Stevens + Nashville Songwriters Hall of Fame and Country Music Hall of Fame singer-songwriter Ray Stevens, whose talent ranges from novelty songs like. + Music + + + TVPG + + + + Finding Your Roots With Henry Louis Gates, Jr. + Anchormen + Journalists Jim Acosta and Van Jones learn about their ancestors.Guests: Jim Acosta, Van Jones.. + Documentary + + + TVPG + + + + Finding Your Roots With Henry Louis Gates, Jr. + Anchormen + Journalists Jim Acosta and Van Jones learn about their ancestors.Guests: Jim Acosta, Van Jones.. + Documentary + + + TVPG + + + + Finding Your Roots With Henry Louis Gates, Jr. + Anchormen + Journalists Jim Acosta and Van Jones learn about their ancestors.Guests: Jim Acosta, Van Jones.. + Documentary + + + TVPG + + + + Midsomer Murders + The Wolf Hunter of Little Worthy: Part 1 + After a photographer wins an urban myth competition with his creation The Wolf Hunter, a man is killed, prompting Barnaby to investigate whether this myth has become murderous reality. + + Neil Dudgeon + Nick Hendrix + Fiona Dolman + + Drama + + + TVPG + + + + Midsomer Murders + The Wolf Hunter of Little Worthy: Part 2 + After a photographer wins an urban myth competition for his creation The Wolf Hunter, a man is killed, prompting Barnaby to investigate whether this myth has become murderous reality. + + Neil Dudgeon + Nick Hendrix + Fiona Dolman + + Drama + + + TVPG + + + + Rick Steves' Europe + Rick Steves' Europe: Art of the Early Middle Ages + Diverse art produced by early Europeans, from Christians to Muslims and Byzantines to Vikings. + Travel + + + TVPG + + + + Mister Rogers' Neighborhood + Construction Paper + Making chains from construction paper; when attempting to learn something, it's important to keep trying. + Children + Instructional + + + TVY + + + + Daniel Tiger's Neighborhood + Daniel's Grr-ific Grandpere; Making Mozies With Nana + Daniel Tiger is excited to spend an entire day with his grandpa; Daniel Tiger spends a whole day with Jodi and her Nana. + + Devan Cohen + Ted Dykstra + Heather Bambrick + + Animated + Children + + + TVY + + + + Work It Out Wombats! + Snout and About; Zadie's Shell Shuffle + Zadie and Malik retrace their steps to locate Zeke's beloved stuffy Snout; JunJun's song helps Zadie fix Mr. E's shell garden. + + Ian Ho + Rain Janjua + Mia SwamiNathan + + Animated + Children + + + TVY + + + + Curious George + Count on George to Deliver; The Baby Elephant + While delivering boxes of Sprouts bars in his wagon, George discovers he's missing one; George visits an elephant sanctuary in Kenya, but when a calf gets stuck in a mud pit, George needs some big help. + + Frank Welker + Jeff Bennett + Annie Mumolo + + Animated + Children + + + TVY + + + + Nature Cat + Are You My Egg?; SOS (Save Our Salad) + A lost baby lizard needs help finding her nest; Nature Cat enlists the help of his friends to get rid of the beetles in his garden. + Animated + Children + + + TVY + + + + Nature Cat + Agents of the Great Outdoors; The Nature-tastic Four + Nature Cat and the gang help deliver a possum's letter to his wife in the big city; the crew must stop an evil gerbil from stealing the sunset. + Animated + Children + + + TVY + + + + Antiques Roadshow + Thrills & Chills + A MAD issue 8 complete. + Hobbies & Crafts + Arts & Entertainment + + + TVG + + + + NOVA + Ancient Earth: Humans + How Earth gave rise to humans, starting with the asteroid strike that wiped out the dinosaurs, the spread of primates across the planet and geologic events that made the human species possible. + Science + + + TVPG + + + + Secrets of the Dead + Death in Britannia + A skeleton dating back to the Roman occupation of Britain provokes further study after scientists see an iron nail driven through its heel bone, possibly indicating the person was crucified. + History + Documentary + + + TV14 + + + + Spy in the Ocean, A Nature Miniseries + Deep Feelings + From dolphins to cuttlefish, ocean animals possess emotions and behavior similar to humans, including the capacity to love, grieve, deceive and invent. + Documentary + + + TVPG + + + + Baseball + The Capital of Baseball + Interviews and film document memorable moments of New York City baseball, including the Brooklyn Dodgers' first World Series win. + Sports + Baseball + + + TVPG + + + + Baseball + A Whole New Ball Game + The popularity of football and the union organization transform baseball in the end of the 1960s. + Sports + Baseball + + + TVPG + + + + Cara Romero: Following the Light + California Indian history informs the work of contemporary fine art photographer Cara Romero, whose visuals capture Indigenous and non-Indigenous cultural memory. + Specials + Documentary + + + TVG + + + + Washington Week With The Atlantic + A panel of journalists provides reporting and analysis of the major stories emanating from the United States capital. + News + Political + + + + PBS News Weekend + Analysis of national and international news, as well as in-depth reporting on topics ranging from education and politics to technology and finance. + News + + + + Agatha Christie's Marple + By the Pricking of My Thumbs + Tuppence is concerned by the behavior of staff and residents of a nursing home when he visits his elderly aunt. + + Geraldine McEwan + Anthony Andrews + Greta Scacchi + + Drama + + + TVPG + + + + Hotel Portofino + Contortions + Rose and Alice make their way back to Portofino, surprising the residents; Cecil concocts a plan to take control of the hotel; Bella tries to discover the real identity of the inspector. + + Natascha McElhone + Mark Umbers + Olivia Morris + + Drama + + + TV14 + + + + World on Fire on Masterpiece + As Kasia takes on her first assignment as an agent, Rajib's military values are tested; a familiar face comes to David's aid. + + Zofia Wichlacz + Ahad Raza Mir + Gregg Sulkin + + Miniseries + History + + + TV14 + + + + Annika on Masterpiece + Annika reflects on 1984 when the team are flown to the Hebridean islands to investigate the death of a man found in a block of ice. + + Nicola Walker + Jamie Sives + Katie Leung + + Performing Arts + Drama + + + TV14 + + + + Little Bird + Burning Down The House + Esther finds members of her family who help her put together the pieces of the past; Esther returns home to Montreal to confront Golda, her adoptive mother, about the revelations she's uncovered that shine a new light on their life. + + Darla Contois + Ellyn Jade + Joshua Odjick + + Drama + + + TV14 + + + + Hotel Portofino + Contortions + Rose and Alice make their way back to Portofino, surprising the residents; Cecil concocts a plan to take control of the hotel; Bella tries to discover the real identity of the inspector. + + Natascha McElhone + Mark Umbers + Olivia Morris + + Drama + + + TV14 + + + + World on Fire on Masterpiece + As Kasia takes on her first assignment as an agent, Rajib's military values are tested; a familiar face comes to David's aid. + + Zofia Wichlacz + Ahad Raza Mir + Gregg Sulkin + + Miniseries + History + + + TV14 + + + + Annika on Masterpiece + Annika reflects on 1984 when the team are flown to the Hebridean islands to investigate the death of a man found in a block of ice. + + Nicola Walker + Jamie Sives + Katie Leung + + Performing Arts + Drama + + + TV14 + + + + Agatha Christie's Poirot + Curtain: Poirot's Last Case + Poirot returns to Styles with Hastings decades after solving their first mystery together to prevent a serial killer from claiming more victims. + + David Suchet + Helen Baxendale + Hugh Fraser + + Drama + + + TVPG + + + + Tell Me More With Kelly Corrigan + Linda Villarosa + Writer and journalist Linda Villarosa.Guests: Linda Villarosa.. + Regular + + + TVPG + + + + Nature Cat + Agents of the Great Outdoors; The Nature-tastic Four + Nature Cat and the gang help deliver a possum's letter to his wife in the big city; the crew must stop an evil gerbil from stealing the sunset. + Animated + Children + + + TVY + + + + Curious George + Count on George to Deliver; The Baby Elephant + While delivering boxes of Sprouts bars in his wagon, George discovers he's missing one; George visits an elephant sanctuary in Kenya, but when a calf gets stuck in a mud pit, George needs some big help. + + Frank Welker + Jeff Bennett + Annie Mumolo + + Animated + Children + + + TVY + + + + Arthur + Rhyme for Your Life; For Whom the Bell Tolls + Binky falls asleep while writing a poem; Arthur takes care of D.W. after she loses her voice. + Animated + Children + + + TVY + + + + Odd Squad + The Jackies; Invasion of the Body Switchers + Ms. O and her team are determined to win a Jackie Award; Ms. O and Oscar accidentally switch bodies. + + Filip Geljo + Dalila Bela + Sean Michael Kyer + + Children + Instructional + + + TVY + + + + Molly of Denali + Lynx to the Past; Molly of the Yukon + Trini is discouraged because she can't add her own moves to the Lynx Dance; Molly hopes to catch a Yukon River king salmon. + + Sovereign Bill + Lorne Cardinal + Ronnie Dean Harris + + Animated + Children + + + TVY + + + + Alma's Way + Checkers Champ; World's Greatest + Alma helps Andre prepare for a checkers tournament; Alma and Rafia compete for World's Greatest Artist. + Animated + Children + + + TVY + + + + Wild Kratts + Honey Seekers + The relationship between the honey guide bird and honey badger. + + Martin Kratt + Chris Kratt + + Animals + Children + + + TVY + + + + Curious George + Submonkey; Double-O Monkey Tracks Trouble + George volunteers to retrieve Professor Pizza's birthday present, which has been dragged away by an ocean current; George tries to prevent Betsy's dance recital from being ruined. + + Frank Welker + + Animated + Children + + + TVY + + + + Daniel Tiger's Neighborhood + Daniel's Blueberry Paws; Wow at the Library + Daniel Tiger's treat from Prince Tuesday's fruity ice treat cart starts to melt when he becomes distracted by all the other flavors. + + Devan Cohen + Ted Dykstra + Heather Bambrick + + Animated + Children + + + TVY + + + + Rosie's Rules + Dino Day Delayed; Rosie's Walkie Talkie + Rosie tries to make tomorrow come faster so she can go to the Dino Park; Rosie looks for her missing walkie talkies. + Animated + Children + + + TVY + + + + Sesame Street + Big Bird's Happy to Be Me Club + Big Bird wants to join the Good Bird's Club, but they try to bully him into changing. + + Fran Brill + Leslie Carrara-Rudolph + Ryan Dillon + + Children + Instructional + + + TVY + + + + Work It Out Wombats! + Me Time; Zadie and the Big, Loud, Noisy Thing + The Wombats go on a quest to figure out all the elements that go into creating the perfect. + + Ian Ho + Rain Janjua + Mia SwamiNathan + + Animated + Children + + + TVY + + + + Donkey Hodie + A Big Favor for Grampy; A Fair Way to Bounce + Grampy asks Donkey to take Gregory for a walk, but Gregory won't move; Harriett Elizabeth Cow wants her pals to try her invention -- the Bounce-a-rino. + + Haley Jenkins + Frankie Cordero + Stephanie D'Abruzzo + + Animated + Children + + + TVY + + + + Pinkalicious & Peterrific + A Birthday Party for Kendra; Norman Plans a Playdate + Pinkalicious plans a surprise birthday party for Kendra; Pinkalicious and Peter help Norman the Gnome plan a play date with his friend Edna. + Animated + Children + + + TVY + + + + Elinor Wonders Why + A Moth Mystery; Just Peachy + Fluttering moths distract the kids when they try to sing their new Sunny Summer Song; the kids give away peaches to their friends in Animal Town. + Animated + Children + + + TVY + + + + Nature Cat + The Deal With Eels; Skip It! + Daisy and Hal want to join Squeeks to look for a spooky creature that looks like a snake but swims in the river; Nature Cat competes against Ronald in the Neighborhood Rock-Skipping Championship of the World. + Animated + Children + + + TVY + + + + Hero Elementary + AJ's Extra Superpower, Part 1; AJ's Extra Superpower, Part 2 + The crew discovers that a dog is stealing a little girl's toys from her backyard; AJ tries to find his hero, Jetman Jones, at Citytown Hero Con. + + Carlos Díaz + Stacey Depass + Jadiel Dowlin + + Animated + Children + + + TVY + + + + Xavier Riddle and the Secret Museum + I Am Abraham Lincoln; I Am Jane Jacobs + Yadina gets advice from Abraham Lincoln after she accidentally loses her friend's toy; Jane Jacobs inspires Xavier, Yadina and Brad to rebuild their fort. + Animated + Children + + + TVY + + + + Antiques Roadshow + Thrills & Chills + A MAD issue 8 complete. + Hobbies & Crafts + Arts & Entertainment + + + TVG + + + + Spy in the Ocean, A Nature Miniseries + Deep Feelings + From dolphins to cuttlefish, ocean animals possess emotions and behavior similar to humans, including the capacity to love, grieve, deceive and invent. + Documentary + + + TVPG + + + + Spy in the Wild: A Nature Miniseries + The North + Studying how animals move, feed and fight; a hummingbird films millions of butterflies; a squirrel faces a battle; a beaver watches other beavers build dams. + Regular + + + TVPG + + + + Rivers of Life + Danube + Exploring Europe's Danube River, including secret tributaries, baby turtles and a waterfall riding kayakfdrder. + Documentary + + + TVPG + + + + PBS NewsHour + Co-anchors Amna Nawaz and Geoff Bennett and correspondents offer in-depth analysis of current events. + News + + + + Celebrity Antiques Road Trip + Peter White & John Sergeant + John Sergeant and Peter White tour the countryside south of the Thames; with the wind in his sails, John gets up to speed on the river in a historic yacht while Peter bats an inning at one of the country's oldest cricket clubs.Guests: John Sergeant, Peter White.. + Hobbies & Crafts + Arts & Entertainment + + + TVPG + + + + Antiques Roadshow + Vintage Chattanooga Hour 2 + A New York Celtics Barnstorming poster circa 1935; a 1940 Disney Fantasia animation cell; a Newcomb College vase circa 1908. + Hobbies & Crafts + Arts & Entertainment + + + TVG + + + + Antiques Roadshow + Vintage Honolulu + Nineteenth-century Hawaiian poi pounders; a Dirk van Erp copper vase; an 1888 Joseph Nawahi oil painting. + Hobbies & Crafts + Arts & Entertainment + + + TVG + + + + Independent Lens + Three Chaplains + How Muslim chaplains in the armed forces vow to protect the right of every service member to practice their faith freely. + Documentary + Performing Arts + + + TV14 + + + + American Veteran + The Crossing + Recruits leave the civilian world as they take the oath to serve in the U.S. military; narrator Drew Carey. + History + Documentary + + + TV14 + + + + PBS NewsHour + Co-anchors Amna Nawaz and Geoff Bennett and correspondents offer in-depth analysis of current events. + News + + + + Antiques Roadshow + Vintage Chattanooga Hour 2 + A New York Celtics Barnstorming poster circa 1935; a 1940 Disney Fantasia animation cell; a Newcomb College vase circa 1908. + Hobbies & Crafts + Arts & Entertainment + + + TVG + + + + Antiques Roadshow + Vintage Honolulu + Nineteenth-century Hawaiian poi pounders; a Dirk van Erp copper vase; an 1888 Joseph Nawahi oil painting. + Hobbies & Crafts + Arts & Entertainment + + + TVG + + + + Independent Lens + Three Chaplains + How Muslim chaplains in the armed forces vow to protect the right of every service member to practice their faith freely. + Documentary + Performing Arts + + + TV14 + + + + American Veteran + The Crossing + Recruits leave the civilian world as they take the oath to serve in the U.S. military; narrator Drew Carey. + History + Documentary + + + TV14 + + + + Nature Cat + The Deal With Eels; Skip It! + Daisy and Hal want to join Squeeks to look for a spooky creature that looks like a snake but swims in the river; Nature Cat competes against Ronald in the Neighborhood Rock-Skipping Championship of the World. + Animated + Children + + + TVY + + + + Curious George + Submonkey; Double-O Monkey Tracks Trouble + George volunteers to retrieve Professor Pizza's birthday present, which has been dragged away by an ocean current; George tries to prevent Betsy's dance recital from being ruined. + + Frank Welker + + Animated + Children + + + TVY + + + + Arthur + The Election; Francine Goes to War + Mr. Ratburn's class has a pretend election; Francine gets into trouble. + Animated + Children + + + TVY + + + + Odd Squad + The Odd Antidote; The One That Got Away + Ms. O develops bizarre side effects after being sprayed by a weird plant; a mysterious villain may bring Ms. O's old partner out of retirement. + + Filip Geljo + Dalila Bela + Sean Michael Kyer + + Children + Instructional + + + TVY + + + + Molly of Denali + Operation Sleepover; Beneath the Surface + Molly spends the night at Tooey's house when a blizzard strikes Qyah; Molly loses her fish charm bracelet in an ice hole. + + Sovereign Bill + Sequoia Janvier + Lorne Cardinal + + Animated + Children + + + TVY + + + + Alma's Way + To Break or Not to Break; The New Mr. Octy + Alma senses that Beto is hesitant about breaking his pinata and wants to find out why; Alma regrets her decision to give away an old toy she doesn't play with anymore. + + Summer Rose Castillo + Jesús E. Martínez + Annie Henk + + Animated + Children + + + TVY + + + + Wild Kratts + Slider, the Otter + The Wild Kratts find a lost otter cub. + + Martin Kratt + Chris Kratt + + Animals + Children + + + TVY + + + + Curious George + George Makes a Stand; Curious George Sees the Light + George sets up a lemonade stand; George tries to fix the new traffic light on the country road. + + Frank Welker + + Animated + Children + + + TVY + + + + Daniel Tiger's Neighborhood + The Class Votes; The Neighborhood Votes + Daniel and his classmates choose a class pet; the kids get to vote on a new piece of playground equipment. + + Jake Beale + Ted Dykstra + Heather Bambrick + + Animated + Children + + + TVY + + + + Rosie's Rules + Rosie in the City; Rosie in the Country + Rosie, Javi and Papa go on an adventure when Javi's dragon gets lost in the city; Rosie looks for blue bonnets in the country. + + Ellora Lopez + Denise Oliver + Gabby Clarke + + Animated + Children + + + TVY + + + + Sesame Street + Sesame Street Goes to the Farm + Farmer Todd takes Elmo, Rosita, Bert, and Ernie on a tour of a farm; they learn about the machines farmers use, the animals that live on the farm, and the food that grows there. + + Fran Brill + Leslie Carrara-Rudolph + Ryan Dillon + + Children + Instructional + + + TVY + + + + Work It Out Wombats! + The Mighty Zeke; Gift for a Fish + Zadie tries to help Zeke overcome his fear of riding a two-wheeler; the Wombats design a gift for baby fish. + + Ian Ho + Rain Janjua + Mia SwamiNathan + + Animated + Children + + + TVY + + + + Donkey Hodie + The Golden Crunchdoodles Return; Flowers, Fetch, and Dance + The pals find a box of Golden Crunchdoodles cereal; Donkey, Panda and Bob Dog want to play different things. + + Haley Jenkins + Frankie Cordero + Stephanie D'Abruzzo + + Animated + Children + + + TVY + + + + Pinkalicious & Peterrific + A Fairy Thanksgiving; Pinkfoot Playdate + Pinkalicious and Peter accidentally damage Fairyanna's Thanksgiving table and vow to make it right; Pinkfoot spends the day with Pinkalicious and her friends. + Animated + Children + + + TVY + + + + Elinor Wonders Why + A Garden for All; Band of Explorers + Elinor gives Hazel some strawberry seeds to grow at home; the Exploring Club goes on a musical march in the forest. + Animated + Children + + + TVY + + + + Nature Cat + Magical Mushroom Mystery Tour; A Midsummer Day's Dream + Squeeks wants to create a walking tour that features different types of mushrooms; Nature Cat and his pals celebrate midsummer with floral fedoras and the traditional midsummer dance. + Animated + Children + + + TVY + + + + Hero Elementary + Friends of the Forest; Chicken Hero + The heroes embark on a mission with Branchman to plan a solution to use less paper; the crew tries to track down a chicken on the loose. + + Carlos Díaz + Stacey Depass + Jadiel Dowlin + + Animated + Children + + + TVY + + + + Xavier Riddle and the Secret Museum + I Am George Washington; I Am Susan B. Anthony + George Washington shows Yadina how to be the best Nature Troop leader; Susan B. Anthony helps Brad show his friends that everyone should have a vote. + Animated + Children + + + TVY + + + + Antiques Roadshow + Meadow Brook Hall Hour 2 + A Keith Haring archive; Harry Bertoia brooches; an 1835. + Hobbies & Crafts + Arts & Entertainment + + + TVG + + + + NOVA + Ancient Earth: Humans + How Earth gave rise to humans, starting with the asteroid strike that wiped out the dinosaurs, the spread of primates across the planet and geologic events that made the human species possible. + Science + + + TVPG + + + + Secrets of the Dead + Death in Britannia + A skeleton dating back to the Roman occupation of Britain provokes further study after scientists see an iron nail driven through its heel bone, possibly indicating the person was crucified. + History + Documentary + + + TV14 + + + + Secrets of the Dead + The First Circle of Stonehenge + An archaeological quest reveals the oldest stones of Stonehenge originally belonged to an earlier sacred site -- a stone circle built on a remote hillside in west Wales. + History + Documentary + + + TVPG + + + + PBS NewsHour + Co-anchors Amna Nawaz and Geoff Bennett and correspondents offer in-depth analysis of current events. + News + + + + Finding Your Roots With Henry Louis Gates, Jr. + Anchormen + Journalists Jim Acosta and Van Jones learn about their ancestors.Guests: Jim Acosta, Van Jones.. + Documentary + + + TVPG + + + + Finding Your Roots With Henry Louis Gates, Jr. + Out of the Past + Actors Billy Crudup and Tamera Mowry-Housley uncover their lost roots.Guests: Billy Crudup, Tamera Mowry-Housley.. + Documentary + + + TVPG + + + + Native America + Women Rule + The diverse ways that Native women carry forward deep traditions to better their communities, lands and the world. + Documentary + + + TVPG + + + + Frontline + Shattered Dreams of Peace: The Road From Oslo + A chronicle shows the Middle East from the 1995 assassination of Israeli Prime Minister Yitzhak Rabin into the present crisis. + News Magazine + Documentary + + + TV14 + + + + American Veteran + The Mission + Stories from veterans illustrate how military life shapes servicemen and women in profound, unexpected ways; host Tammy Duckworth. + History + Documentary + + + TV14 + + + + PBS NewsHour + Co-anchors Amna Nawaz and Geoff Bennett and correspondents offer in-depth analysis of current events. + News + + + + Native America + Women Rule + The diverse ways that Native women carry forward deep traditions to better their communities, lands and the world. + Documentary + + + TVPG + + + + Frontline + Shattered Dreams of Peace: The Road From Oslo + A chronicle shows the Middle East from the 1995 assassination of Israeli Prime Minister Yitzhak Rabin into the present crisis. + News Magazine + Documentary + + + TV14 + + + + Nature Cat + Magical Mushroom Mystery Tour; A Midsummer Day's Dream + Squeeks wants to create a walking tour that features different types of mushrooms; Nature Cat and his pals celebrate midsummer with floral fedoras and the traditional midsummer dance. + Animated + Children + + + TVY + + + + Curious George + George Makes a Stand; Curious George Sees the Light + George sets up a lemonade stand; George tries to fix the new traffic light on the country road. + + Frank Welker + + Animated + Children + + + TVY + + + + Arthur + Arthur's Chicken Pox; Sick as a Dog + Arthur gets chicken pox just as the circus comes to town; Arthur blames D.W. for making his dog sick. + Animated + Children + + + TVY + + + + Odd Squad + Odd Outbreak; The Perfect Lunch + A strange medical crisis causes much chaos; Olive and Otto help Ms. O host an important lunch. + + Filip Geljo + Dalila Bela + Sean Michael Kyer + + Children + Instructional + + + TVY + + + + Molly of Denali + King Run; Native Youth Olympics + Molly helps Grandpa Nat fix the broken fish wheel; Molly learns that her dad competed in the Native Youth Olympics. + Animated + Children + + + TVY + + + + Alma's Way + Alma's Book Swap; Finders Keepers + Alma finds a way for everyone to get books while the library is under renovation; Alma finds a doll in the park. + Animated + Children + + + TVY + + + + Wild Kratts + The Great Froggyback Ride + The Wild Kratts are accidentally miniaturized while adventuring in the Amazon. + + Martin Kratt + Chris Kratt + + Animals + Children + + + TVY + + + + Curious George + George's Geode Jamboree; The Man With the Yellow Hair + George stumbles upon a closed earth science exhibit and decides to start his rock collection; George and the Man with the Yellow Hat stop at a barbershop where George learns of the barber's special techniques. + + Frank Welker + Jeff Bennett + Annie Mumolo + + Animated + Children + + + TVY + + + + Daniel Tiger's Neighborhood + Mad at the Crayon Factory; Mad at School + Daniel gets mad when he doesn't get a crayon box right away at the Crayon Factory. + + Devan Cohen + Ted Dykstra + Heather Bambrick + + Animated + Children + + + TVY + + + + Rosie's Rules + Dance Party Island; Rosie the Mascot + Rosie makes a dance party island in her backyard, but the flag she puts up causes confusion; Rosie decides to be the mascot for Javi's soccer team. + + Ellora Lopez + Denise Oliver + Gabby Clarke + + Animated + Children + + + TVY + + + + Sesame Street + Bert's Bike Time with Luis + Luis and Ernie help Bert gain confidence to ride his bike without training wheels. + + Fran Brill + Leslie Carrara-Rudolph + Ryan Dillon + + Children + Instructional + + + TVY + + + + Work It Out Wombats! + Summerween; Make it Snow + The Wombats create a summer version of Halloween; the Wombats design and build their own snow globe. + + Ian Ho + Rain Janjua + Mia SwamiNathan + + Animated + Children + + + TVY + + + + Donkey Hodie + The Breakfast Bowl; Dancing Dandelions + Donkey and Panda compete in the Breakfast Bowl; Donkey, Panda and Bob Dog plant dancing dandelion seeds and look for the right music to help the flowers grow. + + Haley Jenkins + Frankie Cordero + Stephanie D'Abruzzo + + Animated + Children + + + TVY + + + + Pinkalicious & Peterrific + Aqualicious; Sing in the Spring + Pinkalicious and Peter become friends with a merminnie named Aqua; Pinkalicious and Peter help bring in the spring after the springtime fairies get the flu. + Animated + Children + + + TVY + + + + Elinor Wonders Why + Speed Racer; One of These Goats + Elinor and her friends try to make their race car go faster by changing its shape; the substitute teacher has trouble telling the Goat twins apart. + Animated + Children + + + TVY + + + + Nature Cat + Rock Clues; Sweet Scent + Squeeks needs to find her missing magnifying glass in time for the Rock Stars Club meeting; the gang tracks down a sweet scent. + Animated + Children + + + TVY + + + + Hero Elementary + Looking Super; Schmubble Trouble + Hail Caesar helps the crew search for a self-flying cape that took off from the store; AJ, Lucita and Sara get caught inside Schmubble Bubbles. + + Carlos Díaz + Stacey Depass + Jadiel Dowlin + + Animated + Children + + + TVY + + + + Antiques Roadshow + Meadow Brook Hall Hour 3 + A Civil War presentation sword and portrait; Danny Lyon Civil Rights posters; a copy of. + Hobbies & Crafts + Arts & Entertainment + + + TVG + + + + Agatha Christie's Poirot + Curtain: Poirot's Last Case + Poirot returns to Styles with Hastings decades after solving their first mystery together to prevent a serial killer from claiming more victims. + + David Suchet + Helen Baxendale + Hugh Fraser + + Drama + + + TVPG + + + + PBS News Weekend + Analysis of national and international news, as well as in-depth reporting on topics ranging from education and politics to technology and finance. + News + + + + Finding Your Roots With Henry Louis Gates, Jr. + Anchormen + Journalists Jim Acosta and Van Jones learn about their ancestors.Guests: Jim Acosta, Van Jones.. + Documentary + + + TVPG + + + + Antiques Roadshow + Thrills & Chills + A MAD issue 8 complete. + Hobbies & Crafts + Arts & Entertainment + + + TVG + + + + Midsomer Murders + The Wolf Hunter of Little Worthy: Part 1 + After a photographer wins an urban myth competition with his creation The Wolf Hunter, a man is killed, prompting Barnaby to investigate whether this myth has become murderous reality. + + Neil Dudgeon + Nick Hendrix + Fiona Dolman + + Drama + + + TVPG + + + + Midsomer Murders + The Wolf Hunter of Little Worthy: Part 2 + After a photographer wins an urban myth competition for his creation The Wolf Hunter, a man is killed, prompting Barnaby to investigate whether this myth has become murderous reality. + + Neil Dudgeon + Nick Hendrix + Fiona Dolman + + Drama + + + TVPG + + + + Agatha Christie's Poirot + Curtain: Poirot's Last Case + Poirot returns to Styles with Hastings decades after solving their first mystery together to prevent a serial killer from claiming more victims. + + David Suchet + Helen Baxendale + Hugh Fraser + + Drama + + + TVPG + + + + Agatha Christie's Poirot + Curtain: Poirot's Last Case + Poirot returns to Styles with Hastings decades after solving their first mystery together to prevent a serial killer from claiming more victims. + + David Suchet + Helen Baxendale + Hugh Fraser + + Drama + + + TVPG + + + + Rick Steves' Europe + Rick Steves' Europe: Art of the Early Middle Ages + Diverse art produced by early Europeans, from Christians to Muslims and Byzantines to Vikings. + Travel + + + TVPG + + + + Austin City Limits + Jorge Drexler + This long-running concert series features artists from every musical genre in a live-music setting. + Music + Performing Arts + + + TVPG + + + + Songs at the Center + Master Series Episode With Ray Stevens + Nashville Songwriters Hall of Fame and Country Music Hall of Fame singer-songwriter Ray Stevens, whose talent ranges from novelty songs like. + Music + + + TVPG + + + + Finding Your Roots With Henry Louis Gates, Jr. + Anchormen + Journalists Jim Acosta and Van Jones learn about their ancestors.Guests: Jim Acosta, Van Jones.. + Documentary + + + TVPG + + + + Finding Your Roots With Henry Louis Gates, Jr. + Anchormen + Journalists Jim Acosta and Van Jones learn about their ancestors.Guests: Jim Acosta, Van Jones.. + Documentary + + + TVPG + + + + Finding Your Roots With Henry Louis Gates, Jr. + Anchormen + Journalists Jim Acosta and Van Jones learn about their ancestors.Guests: Jim Acosta, Van Jones.. + Documentary + + + TVPG + + + + Midsomer Murders + The Wolf Hunter of Little Worthy: Part 1 + After a photographer wins an urban myth competition with his creation The Wolf Hunter, a man is killed, prompting Barnaby to investigate whether this myth has become murderous reality. + + Neil Dudgeon + Nick Hendrix + Fiona Dolman + + Drama + + + TVPG + + + + Midsomer Murders + The Wolf Hunter of Little Worthy: Part 2 + After a photographer wins an urban myth competition for his creation The Wolf Hunter, a man is killed, prompting Barnaby to investigate whether this myth has become murderous reality. + + Neil Dudgeon + Nick Hendrix + Fiona Dolman + + Drama + + + TVPG + + + + Rick Steves' Europe + Rick Steves' Europe: Art of the Early Middle Ages + Diverse art produced by early Europeans, from Christians to Muslims and Byzantines to Vikings. + Travel + + + TVPG + + + + Mister Rogers' Neighborhood + Construction Paper + Making chains from construction paper; when attempting to learn something, it's important to keep trying. + Children + Instructional + + + TVY + + + + Daniel Tiger's Neighborhood + Daniel's Grr-ific Grandpere; Making Mozies With Nana + Daniel Tiger is excited to spend an entire day with his grandpa; Daniel Tiger spends a whole day with Jodi and her Nana. + + Devan Cohen + Ted Dykstra + Heather Bambrick + + Animated + Children + + + TVY + + + + Work It Out Wombats! + Snout and About; Zadie's Shell Shuffle + Zadie and Malik retrace their steps to locate Zeke's beloved stuffy Snout; JunJun's song helps Zadie fix Mr. E's shell garden. + + Ian Ho + Rain Janjua + Mia SwamiNathan + + Animated + Children + + + TVY + + + + Curious George + Count on George to Deliver; The Baby Elephant + While delivering boxes of Sprouts bars in his wagon, George discovers he's missing one; George visits an elephant sanctuary in Kenya, but when a calf gets stuck in a mud pit, George needs some big help. + + Frank Welker + Jeff Bennett + Annie Mumolo + + Animated + Children + + + TVY + + + + Nature Cat + Are You My Egg?; SOS (Save Our Salad) + A lost baby lizard needs help finding her nest; Nature Cat enlists the help of his friends to get rid of the beetles in his garden. + Animated + Children + + + TVY + + + + Nature Cat + Agents of the Great Outdoors; The Nature-tastic Four + Nature Cat and the gang help deliver a possum's letter to his wife in the big city; the crew must stop an evil gerbil from stealing the sunset. + Animated + Children + + + TVY + + + + Antiques Roadshow + Thrills & Chills + A MAD issue 8 complete. + Hobbies & Crafts + Arts & Entertainment + + + TVG + + + + NOVA + Ancient Earth: Humans + How Earth gave rise to humans, starting with the asteroid strike that wiped out the dinosaurs, the spread of primates across the planet and geologic events that made the human species possible. + Science + + + TVPG + + + + Secrets of the Dead + Death in Britannia + A skeleton dating back to the Roman occupation of Britain provokes further study after scientists see an iron nail driven through its heel bone, possibly indicating the person was crucified. + History + Documentary + + + TV14 + + + + Spy in the Ocean, A Nature Miniseries + Deep Feelings + From dolphins to cuttlefish, ocean animals possess emotions and behavior similar to humans, including the capacity to love, grieve, deceive and invent. + Documentary + + + TVPG + + + + Baseball + The Capital of Baseball + Interviews and film document memorable moments of New York City baseball, including the Brooklyn Dodgers' first World Series win. + Sports + Baseball + + + TVPG + + + + Baseball + A Whole New Ball Game + The popularity of football and the union organization transform baseball in the end of the 1960s. + Sports + Baseball + + + TVPG + + + + Cara Romero: Following the Light + California Indian history informs the work of contemporary fine art photographer Cara Romero, whose visuals capture Indigenous and non-Indigenous cultural memory. + Specials + Documentary + + + TVG + + + + Washington Week With The Atlantic + A panel of journalists provides reporting and analysis of the major stories emanating from the United States capital. + News + Political + + + + PBS News Weekend + Analysis of national and international news, as well as in-depth reporting on topics ranging from education and politics to technology and finance. + News + + + + Agatha Christie's Marple + By the Pricking of My Thumbs + Tuppence is concerned by the behavior of staff and residents of a nursing home when he visits his elderly aunt. + + Geraldine McEwan + Anthony Andrews + Greta Scacchi + + Drama + + + TVPG + + + + Hotel Portofino + Contortions + Rose and Alice make their way back to Portofino, surprising the residents; Cecil concocts a plan to take control of the hotel; Bella tries to discover the real identity of the inspector. + + Natascha McElhone + Mark Umbers + Olivia Morris + + Drama + + + TV14 + + + + World on Fire on Masterpiece + As Kasia takes on her first assignment as an agent, Rajib's military values are tested; a familiar face comes to David's aid. + + Zofia Wichlacz + Ahad Raza Mir + Gregg Sulkin + + Miniseries + History + + + TV14 + + + + Annika on Masterpiece + Annika reflects on 1984 when the team are flown to the Hebridean islands to investigate the death of a man found in a block of ice. + + Nicola Walker + Jamie Sives + Katie Leung + + Performing Arts + Drama + + + TV14 + + + + Little Bird + Burning Down The House + Esther finds members of her family who help her put together the pieces of the past; Esther returns home to Montreal to confront Golda, her adoptive mother, about the revelations she's uncovered that shine a new light on their life. + + Darla Contois + Ellyn Jade + Joshua Odjick + + Drama + + + TV14 + + + + Hotel Portofino + Contortions + Rose and Alice make their way back to Portofino, surprising the residents; Cecil concocts a plan to take control of the hotel; Bella tries to discover the real identity of the inspector. + + Natascha McElhone + Mark Umbers + Olivia Morris + + Drama + + + TV14 + + + + World on Fire on Masterpiece + As Kasia takes on her first assignment as an agent, Rajib's military values are tested; a familiar face comes to David's aid. + + Zofia Wichlacz + Ahad Raza Mir + Gregg Sulkin + + Miniseries + History + + + TV14 + + + + Annika on Masterpiece + Annika reflects on 1984 when the team are flown to the Hebridean islands to investigate the death of a man found in a block of ice. + + Nicola Walker + Jamie Sives + Katie Leung + + Performing Arts + Drama + + + TV14 + + + + Agatha Christie's Poirot + Curtain: Poirot's Last Case + Poirot returns to Styles with Hastings decades after solving their first mystery together to prevent a serial killer from claiming more victims. + + David Suchet + Helen Baxendale + Hugh Fraser + + Drama + + + TVPG + + + + Tell Me More With Kelly Corrigan + Linda Villarosa + Writer and journalist Linda Villarosa.Guests: Linda Villarosa.. + Regular + + + TVPG + + + + Nature Cat + Agents of the Great Outdoors; The Nature-tastic Four + Nature Cat and the gang help deliver a possum's letter to his wife in the big city; the crew must stop an evil gerbil from stealing the sunset. + Animated + Children + + + TVY + + + + Curious George + Count on George to Deliver; The Baby Elephant + While delivering boxes of Sprouts bars in his wagon, George discovers he's missing one; George visits an elephant sanctuary in Kenya, but when a calf gets stuck in a mud pit, George needs some big help. + + Frank Welker + Jeff Bennett + Annie Mumolo + + Animated + Children + + + TVY + + + + Arthur + Rhyme for Your Life; For Whom the Bell Tolls + Binky falls asleep while writing a poem; Arthur takes care of D.W. after she loses her voice. + Animated + Children + + + TVY + + + + Odd Squad + The Jackies; Invasion of the Body Switchers + Ms. O and her team are determined to win a Jackie Award; Ms. O and Oscar accidentally switch bodies. + + Filip Geljo + Dalila Bela + Sean Michael Kyer + + Children + Instructional + + + TVY + + + + Molly of Denali + Lynx to the Past; Molly of the Yukon + Trini is discouraged because she can't add her own moves to the Lynx Dance; Molly hopes to catch a Yukon River king salmon. + + Sovereign Bill + Lorne Cardinal + Ronnie Dean Harris + + Animated + Children + + + TVY + + + + Alma's Way + Checkers Champ; World's Greatest + Alma helps Andre prepare for a checkers tournament; Alma and Rafia compete for World's Greatest Artist. + Animated + Children + + + TVY + + + + Wild Kratts + Honey Seekers + The relationship between the honey guide bird and honey badger. + + Martin Kratt + Chris Kratt + + Animals + Children + + + TVY + + + + Curious George + Submonkey; Double-O Monkey Tracks Trouble + George volunteers to retrieve Professor Pizza's birthday present, which has been dragged away by an ocean current; George tries to prevent Betsy's dance recital from being ruined. + + Frank Welker + + Animated + Children + + + TVY + + + + Daniel Tiger's Neighborhood + Daniel's Blueberry Paws; Wow at the Library + Daniel Tiger's treat from Prince Tuesday's fruity ice treat cart starts to melt when he becomes distracted by all the other flavors. + + Devan Cohen + Ted Dykstra + Heather Bambrick + + Animated + Children + + + TVY + + + + Rosie's Rules + Dino Day Delayed; Rosie's Walkie Talkie + Rosie tries to make tomorrow come faster so she can go to the Dino Park; Rosie looks for her missing walkie talkies. + Animated + Children + + + TVY + + + + Sesame Street + Big Bird's Happy to Be Me Club + Big Bird wants to join the Good Bird's Club, but they try to bully him into changing. + + Fran Brill + Leslie Carrara-Rudolph + Ryan Dillon + + Children + Instructional + + + TVY + + + + Work It Out Wombats! + Me Time; Zadie and the Big, Loud, Noisy Thing + The Wombats go on a quest to figure out all the elements that go into creating the perfect. + + Ian Ho + Rain Janjua + Mia SwamiNathan + + Animated + Children + + + TVY + + + + Donkey Hodie + A Big Favor for Grampy; A Fair Way to Bounce + Grampy asks Donkey to take Gregory for a walk, but Gregory won't move; Harriett Elizabeth Cow wants her pals to try her invention -- the Bounce-a-rino. + + Haley Jenkins + Frankie Cordero + Stephanie D'Abruzzo + + Animated + Children + + + TVY + + + + Pinkalicious & Peterrific + A Birthday Party for Kendra; Norman Plans a Playdate + Pinkalicious plans a surprise birthday party for Kendra; Pinkalicious and Peter help Norman the Gnome plan a play date with his friend Edna. + Animated + Children + + + TVY + + + + Elinor Wonders Why + A Moth Mystery; Just Peachy + Fluttering moths distract the kids when they try to sing their new Sunny Summer Song; the kids give away peaches to their friends in Animal Town. + Animated + Children + + + TVY + + + + Nature Cat + The Deal With Eels; Skip It! + Daisy and Hal want to join Squeeks to look for a spooky creature that looks like a snake but swims in the river; Nature Cat competes against Ronald in the Neighborhood Rock-Skipping Championship of the World. + Animated + Children + + + TVY + + + + Hero Elementary + AJ's Extra Superpower, Part 1; AJ's Extra Superpower, Part 2 + The crew discovers that a dog is stealing a little girl's toys from her backyard; AJ tries to find his hero, Jetman Jones, at Citytown Hero Con. + + Carlos Díaz + Stacey Depass + Jadiel Dowlin + + Animated + Children + + + TVY + + + + Xavier Riddle and the Secret Museum + I Am Abraham Lincoln; I Am Jane Jacobs + Yadina gets advice from Abraham Lincoln after she accidentally loses her friend's toy; Jane Jacobs inspires Xavier, Yadina and Brad to rebuild their fort. + Animated + Children + + + TVY + + + + Antiques Roadshow + Thrills & Chills + A MAD issue 8 complete. + Hobbies & Crafts + Arts & Entertainment + + + TVG + + + + Spy in the Ocean, A Nature Miniseries + Deep Feelings + From dolphins to cuttlefish, ocean animals possess emotions and behavior similar to humans, including the capacity to love, grieve, deceive and invent. + Documentary + + + TVPG + + + + Spy in the Wild: A Nature Miniseries + The North + Studying how animals move, feed and fight; a hummingbird films millions of butterflies; a squirrel faces a battle; a beaver watches other beavers build dams. + Regular + + + TVPG + + + + Rivers of Life + Danube + Exploring Europe's Danube River, including secret tributaries, baby turtles and a waterfall riding kayakfdrder. + Documentary + + + TVPG + + + + PBS NewsHour + Co-anchors Amna Nawaz and Geoff Bennett and correspondents offer in-depth analysis of current events. + News + + + + Celebrity Antiques Road Trip + Peter White & John Sergeant + John Sergeant and Peter White tour the countryside south of the Thames; with the wind in his sails, John gets up to speed on the river in a historic yacht while Peter bats an inning at one of the country's oldest cricket clubs.Guests: John Sergeant, Peter White.. + Hobbies & Crafts + Arts & Entertainment + + + TVPG + + + + Antiques Roadshow + Vintage Chattanooga Hour 2 + A New York Celtics Barnstorming poster circa 1935; a 1940 Disney Fantasia animation cell; a Newcomb College vase circa 1908. + Hobbies & Crafts + Arts & Entertainment + + + TVG + + + + Antiques Roadshow + Vintage Honolulu + Nineteenth-century Hawaiian poi pounders; a Dirk van Erp copper vase; an 1888 Joseph Nawahi oil painting. + Hobbies & Crafts + Arts & Entertainment + + + TVG + + + + Independent Lens + Three Chaplains + How Muslim chaplains in the armed forces vow to protect the right of every service member to practice their faith freely. + Documentary + Performing Arts + + + TV14 + + + + American Veteran + The Crossing + Recruits leave the civilian world as they take the oath to serve in the U.S. military; narrator Drew Carey. + History + Documentary + + + TV14 + + + + PBS NewsHour + Co-anchors Amna Nawaz and Geoff Bennett and correspondents offer in-depth analysis of current events. + News + + + + Antiques Roadshow + Vintage Chattanooga Hour 2 + A New York Celtics Barnstorming poster circa 1935; a 1940 Disney Fantasia animation cell; a Newcomb College vase circa 1908. + Hobbies & Crafts + Arts & Entertainment + + + TVG + + + + Antiques Roadshow + Vintage Honolulu + Nineteenth-century Hawaiian poi pounders; a Dirk van Erp copper vase; an 1888 Joseph Nawahi oil painting. + Hobbies & Crafts + Arts & Entertainment + + + TVG + + + + Independent Lens + Three Chaplains + How Muslim chaplains in the armed forces vow to protect the right of every service member to practice their faith freely. + Documentary + Performing Arts + + + TV14 + + + + American Veteran + The Crossing + Recruits leave the civilian world as they take the oath to serve in the U.S. military; narrator Drew Carey. + History + Documentary + + + TV14 + + + + Nature Cat + The Deal With Eels; Skip It! + Daisy and Hal want to join Squeeks to look for a spooky creature that looks like a snake but swims in the river; Nature Cat competes against Ronald in the Neighborhood Rock-Skipping Championship of the World. + Animated + Children + + + TVY + + + + Curious George + Submonkey; Double-O Monkey Tracks Trouble + George volunteers to retrieve Professor Pizza's birthday present, which has been dragged away by an ocean current; George tries to prevent Betsy's dance recital from being ruined. + + Frank Welker + + Animated + Children + + + TVY + + + + Arthur + The Election; Francine Goes to War + Mr. Ratburn's class has a pretend election; Francine gets into trouble. + Animated + Children + + + TVY + + + + Odd Squad + The Odd Antidote; The One That Got Away + Ms. O develops bizarre side effects after being sprayed by a weird plant; a mysterious villain may bring Ms. O's old partner out of retirement. + + Filip Geljo + Dalila Bela + Sean Michael Kyer + + Children + Instructional + + + TVY + + + + Molly of Denali + Operation Sleepover; Beneath the Surface + Molly spends the night at Tooey's house when a blizzard strikes Qyah; Molly loses her fish charm bracelet in an ice hole. + + Sovereign Bill + Sequoia Janvier + Lorne Cardinal + + Animated + Children + + + TVY + + + + Alma's Way + To Break or Not to Break; The New Mr. Octy + Alma senses that Beto is hesitant about breaking his pinata and wants to find out why; Alma regrets her decision to give away an old toy she doesn't play with anymore. + + Summer Rose Castillo + Jesús E. Martínez + Annie Henk + + Animated + Children + + + TVY + + + + Wild Kratts + Slider, the Otter + The Wild Kratts find a lost otter cub. + + Martin Kratt + Chris Kratt + + Animals + Children + + + TVY + + + + Curious George + George Makes a Stand; Curious George Sees the Light + George sets up a lemonade stand; George tries to fix the new traffic light on the country road. + + Frank Welker + + Animated + Children + + + TVY + + + + Daniel Tiger's Neighborhood + The Class Votes; The Neighborhood Votes + Daniel and his classmates choose a class pet; the kids get to vote on a new piece of playground equipment. + + Jake Beale + Ted Dykstra + Heather Bambrick + + Animated + Children + + + TVY + + + + Rosie's Rules + Rosie in the City; Rosie in the Country + Rosie, Javi and Papa go on an adventure when Javi's dragon gets lost in the city; Rosie looks for blue bonnets in the country. + + Ellora Lopez + Denise Oliver + Gabby Clarke + + Animated + Children + + + TVY + + + + Sesame Street + Sesame Street Goes to the Farm + Farmer Todd takes Elmo, Rosita, Bert, and Ernie on a tour of a farm; they learn about the machines farmers use, the animals that live on the farm, and the food that grows there. + + Fran Brill + Leslie Carrara-Rudolph + Ryan Dillon + + Children + Instructional + + + TVY + + + + Work It Out Wombats! + The Mighty Zeke; Gift for a Fish + Zadie tries to help Zeke overcome his fear of riding a two-wheeler; the Wombats design a gift for baby fish. + + Ian Ho + Rain Janjua + Mia SwamiNathan + + Animated + Children + + + TVY + + + + Donkey Hodie + The Golden Crunchdoodles Return; Flowers, Fetch, and Dance + The pals find a box of Golden Crunchdoodles cereal; Donkey, Panda and Bob Dog want to play different things. + + Haley Jenkins + Frankie Cordero + Stephanie D'Abruzzo + + Animated + Children + + + TVY + + + + Pinkalicious & Peterrific + A Fairy Thanksgiving; Pinkfoot Playdate + Pinkalicious and Peter accidentally damage Fairyanna's Thanksgiving table and vow to make it right; Pinkfoot spends the day with Pinkalicious and her friends. + Animated + Children + + + TVY + + + + Elinor Wonders Why + A Garden for All; Band of Explorers + Elinor gives Hazel some strawberry seeds to grow at home; the Exploring Club goes on a musical march in the forest. + Animated + Children + + + TVY + + + + Nature Cat + Magical Mushroom Mystery Tour; A Midsummer Day's Dream + Squeeks wants to create a walking tour that features different types of mushrooms; Nature Cat and his pals celebrate midsummer with floral fedoras and the traditional midsummer dance. + Animated + Children + + + TVY + + + + Hero Elementary + Friends of the Forest; Chicken Hero + The heroes embark on a mission with Branchman to plan a solution to use less paper; the crew tries to track down a chicken on the loose. + + Carlos Díaz + Stacey Depass + Jadiel Dowlin + + Animated + Children + + + TVY + + + + Xavier Riddle and the Secret Museum + I Am George Washington; I Am Susan B. Anthony + George Washington shows Yadina how to be the best Nature Troop leader; Susan B. Anthony helps Brad show his friends that everyone should have a vote. + Animated + Children + + + TVY + + + + Antiques Roadshow + Meadow Brook Hall Hour 2 + A Keith Haring archive; Harry Bertoia brooches; an 1835. + Hobbies & Crafts + Arts & Entertainment + + + TVG + + + + NOVA + Ancient Earth: Humans + How Earth gave rise to humans, starting with the asteroid strike that wiped out the dinosaurs, the spread of primates across the planet and geologic events that made the human species possible. + Science + + + TVPG + + + + Secrets of the Dead + Death in Britannia + A skeleton dating back to the Roman occupation of Britain provokes further study after scientists see an iron nail driven through its heel bone, possibly indicating the person was crucified. + History + Documentary + + + TV14 + + + + Secrets of the Dead + The First Circle of Stonehenge + An archaeological quest reveals the oldest stones of Stonehenge originally belonged to an earlier sacred site -- a stone circle built on a remote hillside in west Wales. + History + Documentary + + + TVPG + + + + PBS NewsHour + Co-anchors Amna Nawaz and Geoff Bennett and correspondents offer in-depth analysis of current events. + News + + + + Finding Your Roots With Henry Louis Gates, Jr. + Anchormen + Journalists Jim Acosta and Van Jones learn about their ancestors.Guests: Jim Acosta, Van Jones.. + Documentary + + + TVPG + + + + Finding Your Roots With Henry Louis Gates, Jr. + Out of the Past + Actors Billy Crudup and Tamera Mowry-Housley uncover their lost roots.Guests: Billy Crudup, Tamera Mowry-Housley.. + Documentary + + + TVPG + + + + Native America + Women Rule + The diverse ways that Native women carry forward deep traditions to better their communities, lands and the world. + Documentary + + + TVPG + + + + Frontline + Shattered Dreams of Peace: The Road From Oslo + A chronicle shows the Middle East from the 1995 assassination of Israeli Prime Minister Yitzhak Rabin into the present crisis. + News Magazine + Documentary + + + TV14 + + + + American Veteran + The Mission + Stories from veterans illustrate how military life shapes servicemen and women in profound, unexpected ways; host Tammy Duckworth. + History + Documentary + + + TV14 + + + + PBS NewsHour + Co-anchors Amna Nawaz and Geoff Bennett and correspondents offer in-depth analysis of current events. + News + + + + Native America + Women Rule + The diverse ways that Native women carry forward deep traditions to better their communities, lands and the world. + Documentary + + + TVPG + + + + Frontline + Shattered Dreams of Peace: The Road From Oslo + A chronicle shows the Middle East from the 1995 assassination of Israeli Prime Minister Yitzhak Rabin into the present crisis. + News Magazine + Documentary + + + TV14 + + + + Nature Cat + Magical Mushroom Mystery Tour; A Midsummer Day's Dream + Squeeks wants to create a walking tour that features different types of mushrooms; Nature Cat and his pals celebrate midsummer with floral fedoras and the traditional midsummer dance. + Animated + Children + + + TVY + + + + Curious George + George Makes a Stand; Curious George Sees the Light + George sets up a lemonade stand; George tries to fix the new traffic light on the country road. + + Frank Welker + + Animated + Children + + + TVY + + + + Arthur + Arthur's Chicken Pox; Sick as a Dog + Arthur gets chicken pox just as the circus comes to town; Arthur blames D.W. for making his dog sick. + Animated + Children + + + TVY + + + + Odd Squad + Odd Outbreak; The Perfect Lunch + A strange medical crisis causes much chaos; Olive and Otto help Ms. O host an important lunch. + + Filip Geljo + Dalila Bela + Sean Michael Kyer + + Children + Instructional + + + TVY + + + + Molly of Denali + King Run; Native Youth Olympics + Molly helps Grandpa Nat fix the broken fish wheel; Molly learns that her dad competed in the Native Youth Olympics. + Animated + Children + + + TVY + + + + Alma's Way + Alma's Book Swap; Finders Keepers + Alma finds a way for everyone to get books while the library is under renovation; Alma finds a doll in the park. + Animated + Children + + + TVY + + + + Wild Kratts + The Great Froggyback Ride + The Wild Kratts are accidentally miniaturized while adventuring in the Amazon. + + Martin Kratt + Chris Kratt + + Animals + Children + + + TVY + + + + Curious George + George's Geode Jamboree; The Man With the Yellow Hair + George stumbles upon a closed earth science exhibit and decides to start his rock collection; George and the Man with the Yellow Hat stop at a barbershop where George learns of the barber's special techniques. + + Frank Welker + Jeff Bennett + Annie Mumolo + + Animated + Children + + + TVY + + + + Daniel Tiger's Neighborhood + Mad at the Crayon Factory; Mad at School + Daniel gets mad when he doesn't get a crayon box right away at the Crayon Factory. + + Devan Cohen + Ted Dykstra + Heather Bambrick + + Animated + Children + + + TVY + + + + Rosie's Rules + Dance Party Island; Rosie the Mascot + Rosie makes a dance party island in her backyard, but the flag she puts up causes confusion; Rosie decides to be the mascot for Javi's soccer team. + + Ellora Lopez + Denise Oliver + Gabby Clarke + + Animated + Children + + + TVY + + + + Sesame Street + Bert's Bike Time with Luis + Luis and Ernie help Bert gain confidence to ride his bike without training wheels. + + Fran Brill + Leslie Carrara-Rudolph + Ryan Dillon + + Children + Instructional + + + TVY + + + + Work It Out Wombats! + Summerween; Make it Snow + The Wombats create a summer version of Halloween; the Wombats design and build their own snow globe. + + Ian Ho + Rain Janjua + Mia SwamiNathan + + Animated + Children + + + TVY + + + + Donkey Hodie + The Breakfast Bowl; Dancing Dandelions + Donkey and Panda compete in the Breakfast Bowl; Donkey, Panda and Bob Dog plant dancing dandelion seeds and look for the right music to help the flowers grow. + + Haley Jenkins + Frankie Cordero + Stephanie D'Abruzzo + + Animated + Children + + + TVY + + + + Pinkalicious & Peterrific + Aqualicious; Sing in the Spring + Pinkalicious and Peter become friends with a merminnie named Aqua; Pinkalicious and Peter help bring in the spring after the springtime fairies get the flu. + Animated + Children + + + TVY + + + + Elinor Wonders Why + Speed Racer; One of These Goats + Elinor and her friends try to make their race car go faster by changing its shape; the substitute teacher has trouble telling the Goat twins apart. + Animated + Children + + + TVY + + + + Nature Cat + Rock Clues; Sweet Scent + Squeeks needs to find her missing magnifying glass in time for the Rock Stars Club meeting; the gang tracks down a sweet scent. + Animated + Children + + + TVY + + + + Hero Elementary + Looking Super; Schmubble Trouble + Hail Caesar helps the crew search for a self-flying cape that took off from the store; AJ, Lucita and Sara get caught inside Schmubble Bubbles. + + Carlos Díaz + Stacey Depass + Jadiel Dowlin + + Animated + Children + + + TVY + + + + Antiques Roadshow + Meadow Brook Hall Hour 3 + A Civil War presentation sword and portrait; Danny Lyon Civil Rights posters; a copy of. + Hobbies & Crafts + Arts & Entertainment + + + TVG + + + + Agatha Christie's Poirot + Curtain: Poirot's Last Case + Poirot returns to Styles with Hastings decades after solving their first mystery together to prevent a serial killer from claiming more victims. + + David Suchet + Helen Baxendale + Hugh Fraser + + Drama + + + TVPG + + + + Life at the Waterhole + Hotter weather impacts the animals as the waterhole becomes busier as the night gets cooler, and nocturnal activity brings a new predator out of the shadows -- the elusive hyena. + Documentary + + + TVPG + + + + Spy in the Ocean, A Nature Miniseries + Deep Thinkers + Spy creatures reveal an ocean full of intelligence and ways of thinking, including large-brained whales, smart octopi, diving monkeys, creative fish and other intelligent animals. + Documentary + + + TVG + + + + NOVA + Ancient Earth: Inferno + Scientists piece together geologic evidence from the past and clues from the Earth's ecosystems to determine how life made it through a cataclysmic extinction that wiped out about 90 percent of all species 252 million years ago. + Science + + + TVPG + + + + Secrets of the Dead + Eiffel's Race to the Top + The untold story behind Paris' most famous landmark and the race to build a monument that stands 1,000 feet high. + History + Documentary + + + TVPG + + + + NOVA + Saving Notre Dame + Engineers race to rebuild the roof of the Notre Dame cathedral and secure the medieval structure within five years. + Science + + + TVG + + + + NOVA + Rebuilding Notre Dame + A team of engineers, masons and timber workers restore France's Notre Dame Cathedral following the April 2019 fire. + Science + + + TVPG + + + + Finding Your Roots With Henry Louis Gates, Jr. + Anchormen + Journalists Jim Acosta and Van Jones learn about their ancestors.Guests: Jim Acosta, Van Jones.. + Documentary + + + TVPG + + + + Spy in the Ocean, A Nature Miniseries + Deep Thinkers + Spy creatures reveal an ocean full of intelligence and ways of thinking, including large-brained whales, smart octopi, diving monkeys, creative fish and other intelligent animals. + Documentary + + + TVG + + + + NOVA + Ancient Earth: Inferno + Scientists piece together geologic evidence from the past and clues from the Earth's ecosystems to determine how life made it through a cataclysmic extinction that wiped out about 90 percent of all species 252 million years ago. + Science + + + TVPG + + + + NOVA + Ancient Earth: Inferno + Scientists piece together geologic evidence from the past and clues from the Earth's ecosystems to determine how life made it through a cataclysmic extinction that wiped out about 90 percent of all species 252 million years ago. + Science + + + TVPG + + + + NOVA + Ancient Earth: Inferno + Scientists piece together geologic evidence from the past and clues from the Earth's ecosystems to determine how life made it through a cataclysmic extinction that wiped out about 90 percent of all species 252 million years ago. + Science + + + TVPG + + + + Lucy Worsley's Royal Myths & Secrets + Elizabeth I, The Warrior Queen + Elizabeth I's image as a warrior queen, facilitated by myths and secrets about her victory over the Spanish Armada, shaped British national identity for centuries. + History + Documentary + + + TVPG + + + + Lucy Worsley's Royal Myths & Secrets + Queen Anne, The Mother of Great Britain + Queen Anne's role in the forging of Great Britain, a role often overshadowed by gossip over her love life. + History + Documentary + + + TV14 + + + + Lucy Worsley's Royal Myths & Secrets + Marie Antoinette, The Doomed Queen + The myths and secrets that led Marie Antoinette to the guillotine. + History + Documentary + + + TV14 + + + + Lucy Worsley's Royal Myths & Secrets + Henry VIII's Reformation + Lucy Worsley discovers how the history of the Reformation has been manipulated and mythologized by generations of politicians and writers. + History + Documentary + + + TVPG + + + + Lucy Worsley's Royal Myths & Secrets + Kings George III and IV & the Napoleonic War + Lucy Worsley digs behind the facade of Georgian elegance to reveal the fibs that helped conceal a darker side to the Regency and suppressed rebellion in an age of revolution. + History + Documentary + + + TVPG + + + + Lucy Worsley's Royal Myths & Secrets + The Romanovs & The Russian Revolution + The myths and fibs surrounding the dramatic events of 1917, including a group of women workers who kick-started the Russian Revolution in February 1917. + History + Documentary + + + TVPG + + + + You Are Cordially Invited + Highclere Castle + Exploring the grounds of Highclere Castle on horseback; a look at the design of the castle and how it is used for entertaining. + Documentary + + + TVG + + + + Victoria on Masterpiece + A Soldier's Daughter; The Green-Eyed Monster + New mother Victoria is impatient to return to the business of ruling a nation, while Albert attempts to protect her from bad news about Afghanistan; Albert's friendship with Ada Lovelace threatens Victoria's health. + + Jenna Coleman + Rufus Sewell + Peter Firth + + History + + + TVPG + + + + Victoria on Masterpiece + Warp and Weft; The Sins of the Father + As discontent grows in the country, grief forces Victoria to put childish things away; despite giving birth to a healthy Prince of Wales, Victoria finds herself paralyzed by sorrow. + + Jenna Coleman + Rufus Sewell + Peter Firth + + History + + + TVPG + + + + Victoria on Masterpiece + Entente Cordiale + The Queen attempts to deal with foreign relations by taking the royal court on a trip to France, where she goes toe to toe with Louis Philippe, king of the French. + + Jenna Coleman + Rufus Sewell + Peter Firth + + History + + + TVG + + + + Victoria on Masterpiece + Faith, Hope & Charity + News of the famine in Ireland reaches the queen, who is met with opposition when she announces her government should be doing more to help. + + Jenna Coleman + Rufus Sewell + Peter Firth + + History + + + TVPG + + + + Victoria on Masterpiece + The King Over the Water + Victoria flees to the Scottish Highlands with her court, hoping she and Albert will have a chance to be a normal couple. + + Jenna Coleman + Rufus Sewell + Peter Firth + + History + + + TVPG + + + + Victoria on Masterpiece + The Luxury of Conscience + Victoria and Albert deal with their worst nightmare as parents while Peel takes on the ultimate parliamentary battle; tragedy forces Victoria and Albert to face the cost of their convictions. + + Jenna Coleman + Rufus Sewell + Peter Firth + + History + + + TVPG + + + + Victoria on Masterpiece + Comfort and Joy + Albert seeks the Christmastime joy of his youth; Victoria is threatened by a relative; romantic tension surrounds the palace. + + Jenna Coleman + Rufus Sewell + Peter Firth + + History + + + TVPG + + + + Tending Nature + Protecting the Coast With the Tolowa Dee-Ni' + The Tolowa Dee-ni' revive traditional harvesting of shellfish such as mussels at the Smith River near the Oregon border, helping California state agencies monitor toxicity levels and manage marine protected areas. + Documentary + + + TVPG + + + + Tending Nature + Decolonizing Cuisine With Mak-'amham + Ohlone chefs Louis Trevino and Vincent Medina revitalize Ohlone food practices and adapt them for a modernist palate. + Documentary + + + TVPG + + + + Tending Nature + Tribal Hunting With the Pit River Peoples + The Pit River Tribe in Northeast California revives traditional hunting practices, preserves and monitors wild elk and deer populations and develops intertribal trading networks for distributing humanely sourced and sustainable native foods. + Documentary + + + TVPG + + + + Tending Nature + Healing the Body With United Indian Health Services + The United Indian Health Services, Inc.'s Potawot Community Garden's food sovereignty program inspires other initiatives across California. + Documentary + + + TVPG + + + + Artbound + Angel City Press: L.A. Through The Pages + Angel City Press has influenced the public's understanding and appreciation of Los Angeles. + Arts & Entertainment + + + TVPG + + + + POV + Fire Through Dry Grass + Nursing home residents use poetry and art to describe the danger and imprisonment they feel during COVID-19's lockdown. + Documentary + Biography + + + TV14 + + + + The Warrior Tradition + The untold story of Native American service in the U.S. military. + Specials + Documentary + + + TV14 + + + + To Be of Service + Service dogs bring happiness and a feeling of safety to veterans with PTSD. + 2019 + Movies + Documentary + + + + American Veteran + The Crossing + Recruits leave the civilian world as they take the oath to serve in the U.S. military; narrator Drew Carey. + History + Documentary + + + TV14 + + + + American Veteran + The Mission + Stories from veterans illustrate how military life shapes servicemen and women in profound, unexpected ways; host Tammy Duckworth. + History + Documentary + + + TV14 + + + + American Veteran + The Return + Hollywood war stories seem to end in triumph, but in reality the return to civilian life is often less certain; host Wes Studi. + History + Documentary + + + TV14 + + + + American Veteran + The Reckoning + Veterans reflect on their service and how veterans and civilians can work together to move America forward; host J.R. Martinez. + History + Documentary + + + TV14 + + + + Shrapnel Down: My Korean War Story + Gunner's Mate Bill Rector uses an 8mm to document his Korean War experiences, including battles during the Blockade of Wonsan -- the longest naval blockade in modern history. + Specials + Documentary + + + TVPG + + + + To Be of Service + Service dogs bring happiness and a feeling of safety to veterans with PTSD. + 2019 + Movies + Documentary + + + + American Veteran + The Crossing + Recruits leave the civilian world as they take the oath to serve in the U.S. military; narrator Drew Carey. + History + Documentary + + + TV14 + + + + American Veteran + The Mission + Stories from veterans illustrate how military life shapes servicemen and women in profound, unexpected ways; host Tammy Duckworth. + History + Documentary + + + TV14 + + + + American Veteran + The Return + Hollywood war stories seem to end in triumph, but in reality the return to civilian life is often less certain; host Wes Studi. + History + Documentary + + + TV14 + + + + American Veteran + The Reckoning + Veterans reflect on their service and how veterans and civilians can work together to move America forward; host J.R. Martinez. + History + Documentary + + + TV14 + + + + Shrapnel Down: My Korean War Story + Gunner's Mate Bill Rector uses an 8mm to document his Korean War experiences, including battles during the Blockade of Wonsan -- the longest naval blockade in modern history. + Specials + Documentary + + + TVPG + + + + To Be of Service + Service dogs bring happiness and a feeling of safety to veterans with PTSD. + 2019 + Movies + Documentary + + + + American Veteran + The Crossing + Recruits leave the civilian world as they take the oath to serve in the U.S. military; narrator Drew Carey. + History + Documentary + + + TV14 + + + + American Veteran + The Mission + Stories from veterans illustrate how military life shapes servicemen and women in profound, unexpected ways; host Tammy Duckworth. + History + Documentary + + + TV14 + + + + American Veteran + The Return + Hollywood war stories seem to end in triumph, but in reality the return to civilian life is often less certain; host Wes Studi. + History + Documentary + + + TV14 + + + + American Veteran + The Reckoning + Veterans reflect on their service and how veterans and civilians can work together to move America forward; host J.R. Martinez. + History + Documentary + + + TV14 + + + + Life at the Waterhole + Rain transforms life at the waterhole, creating an abundance of food as mating and birthing seasons arrive; moderate weather makes it harder for predators as prey is able to migrate farther. + Documentary + + + TVPG + + + + Spy in the Ocean, A Nature Miniseries + Deep Feelings + From dolphins to cuttlefish, ocean animals possess emotions and behavior similar to humans, including the capacity to love, grieve, deceive and invent. + Documentary + + + TVPG + + + + NOVA + Ancient Earth: Humans + How Earth gave rise to humans, starting with the asteroid strike that wiped out the dinosaurs, the spread of primates across the planet and geologic events that made the human species possible. + Science + + + TVPG + + + + Secrets of the Dead + Death in Britannia + A skeleton dating back to the Roman occupation of Britain provokes further study after scientists see an iron nail driven through its heel bone, possibly indicating the person was crucified. + History + Documentary + + + TV14 + + + + Secrets of the Dead + The End of the Romans + An investigation into the real causes of the decline of the Roman Empire, including three epidemics and climate change. + History + Documentary + + + TVPG + + + + Ancient Invisible Cities + Athens + Uncovering the hidden secrets of Athens, from the buildings on the Acropolis to silver mines and quarries. + Documentary + Science + + + TVPG + + + + America's Test Kitchen + Light Summer Meal + Grilled boneless skinless chicken breasts with red pepper-almond sauce; a head-to-head tasting of whole dill pickles; flatware sets; berry granita. + Instructional + Food + + + TVG + + + + Cook's Country + Biscuits and Chicken + Butter and lard biscuits; the debate between lard and shortening; the benefits of full-sized and mini food processors; mimosa fried chicken. + Food + + + TVG + + + + Spy in the Ocean, A Nature Miniseries + Deep Feelings + From dolphins to cuttlefish, ocean animals possess emotions and behavior similar to humans, including the capacity to love, grieve, deceive and invent. + Documentary + + + TVPG + + + + NOVA + Ancient Earth: Humans + How Earth gave rise to humans, starting with the asteroid strike that wiped out the dinosaurs, the spread of primates across the planet and geologic events that made the human species possible. + Science + + + TVPG + + + + Secrets of the Dead + Death in Britannia + A skeleton dating back to the Roman occupation of Britain provokes further study after scientists see an iron nail driven through its heel bone, possibly indicating the person was crucified. + History + Documentary + + + TV14 + + + + Secrets of the Dead + The End of the Romans + An investigation into the real causes of the decline of the Roman Empire, including three epidemics and climate change. + History + Documentary + + + TVPG + + + + Ancient Invisible Cities + Athens + Uncovering the hidden secrets of Athens, from the buildings on the Acropolis to silver mines and quarries. + Documentary + Science + + + TVPG + + + + Life at the Waterhole + Rain transforms life at the waterhole, creating an abundance of food as mating and birthing seasons arrive; moderate weather makes it harder for predators as prey is able to migrate farther. + Documentary + + + TVPG + + + + Spy in the Ocean, A Nature Miniseries + Deep Feelings + From dolphins to cuttlefish, ocean animals possess emotions and behavior similar to humans, including the capacity to love, grieve, deceive and invent. + Documentary + + + TVPG + + + + NOVA + Ancient Earth: Humans + How Earth gave rise to humans, starting with the asteroid strike that wiped out the dinosaurs, the spread of primates across the planet and geologic events that made the human species possible. + Science + + + TVPG + + + + Secrets of the Dead + Death in Britannia + A skeleton dating back to the Roman occupation of Britain provokes further study after scientists see an iron nail driven through its heel bone, possibly indicating the person was crucified. + History + Documentary + + + TV14 + + + + Secrets of the Dead + The End of the Romans + An investigation into the real causes of the decline of the Roman Empire, including three epidemics and climate change. + History + Documentary + + + TVPG + + + + Ancient Invisible Cities + Athens + Uncovering the hidden secrets of Athens, from the buildings on the Acropolis to silver mines and quarries. + Documentary + Science + + + TVPG + + + + Life at the Waterhole + Rain transforms life at the waterhole, creating an abundance of food as mating and birthing seasons arrive; moderate weather makes it harder for predators as prey is able to migrate farther. + Documentary + + + TVPG + + + + Spy in the Ocean, A Nature Miniseries + Deep Feelings + From dolphins to cuttlefish, ocean animals possess emotions and behavior similar to humans, including the capacity to love, grieve, deceive and invent. + Documentary + + + TVPG + + + + NOVA + Ancient Earth: Humans + How Earth gave rise to humans, starting with the asteroid strike that wiped out the dinosaurs, the spread of primates across the planet and geologic events that made the human species possible. + Science + + + TVPG + + + + Secrets of the Dead + Death in Britannia + A skeleton dating back to the Roman occupation of Britain provokes further study after scientists see an iron nail driven through its heel bone, possibly indicating the person was crucified. + History + Documentary + + + TV14 + + + + Secrets of the Dead + The End of the Romans + An investigation into the real causes of the decline of the Roman Empire, including three epidemics and climate change. + History + Documentary + + + TVPG + + + + Ancient Invisible Cities + Athens + Uncovering the hidden secrets of Athens, from the buildings on the Acropolis to silver mines and quarries. + Documentary + Science + + + TVPG + + + + Lucy Worsley's Royal Palace Secrets + Touring three of London's palaces -- the Tower of London, Hampton Court and Kensington Palace; host Lucy Worsley. + Specials + Documentary + + + TVPG + + + + Antiques Roadshow + Vintage Chattanooga Hour 2 + A New York Celtics Barnstorming poster circa 1935; a 1940 Disney Fantasia animation cell; a Newcomb College vase circa 1908. + Hobbies & Crafts + Arts & Entertainment + + + TVG + + + + Antiques Roadshow + Vintage Honolulu + Nineteenth-century Hawaiian poi pounders; a Dirk van Erp copper vase; an 1888 Joseph Nawahi oil painting. + Hobbies & Crafts + Arts & Entertainment + + + TVG + + + + Celebrity Antiques Road Trip + David Gower & Nick Hancock + Cricket legend David Gower and TV presenter Nick Hancock tour Hampshire to find curios and collectibles to take to auction in Sidcup; Charlie Ross and Phil Serrell ably assist.Guests: Nick Hancock, David Gower.. + Hobbies & Crafts + Arts & Entertainment + + + TVPG + + + + Pati's Mexican Table + Maya Today + A visit to Cenote Xocempich; horchata; sikil pak; fresh herbs masa corn tortillas. + Food + + + TVG + + + + The Key Ingredient with Sheri Castle + Hey Pumpkin + Pumpkin creme caramel; an entree salad with warm pumpkin wedges and a honey vinaigrette; whole roasted pumpkin stuffed with bread pudding; how to perfectly roast pumpkin seeds. + Food + + + TVG + + + + America's Test Kitchen + Light Summer Meal + Grilled boneless skinless chicken breasts with red pepper-almond sauce; a head-to-head tasting of whole dill pickles; flatware sets; berry granita. + Instructional + Food + + + TVG + + + + Cook's Country + Biscuits and Chicken + Butter and lard biscuits; the debate between lard and shortening; the benefits of full-sized and mini food processors; mimosa fried chicken. + Food + + + TVG + + + + Austin City Limits + Jorge Drexler + Award-winning Latin singer Jorge Drexler performs Spanish-language songs from. + Music + Performing Arts + + + TVPG + + + + Lucy Worsley's Royal Palace Secrets + Touring three of London's palaces -- the Tower of London, Hampton Court and Kensington Palace; host Lucy Worsley. + Specials + Documentary + + + TVPG + + + + Antiques Roadshow + Vintage Chattanooga Hour 2 + A New York Celtics Barnstorming poster circa 1935; a 1940 Disney Fantasia animation cell; a Newcomb College vase circa 1908. + Hobbies & Crafts + Arts & Entertainment + + + TVG + + + + Antiques Roadshow + Vintage Honolulu + Nineteenth-century Hawaiian poi pounders; a Dirk van Erp copper vase; an 1888 Joseph Nawahi oil painting. + Hobbies & Crafts + Arts & Entertainment + + + TVG + + + + Celebrity Antiques Road Trip + David Gower & Nick Hancock + Cricket legend David Gower and TV presenter Nick Hancock tour Hampshire to find curios and collectibles to take to auction in Sidcup; Charlie Ross and Phil Serrell ably assist.Guests: Nick Hancock, David Gower.. + Hobbies & Crafts + Arts & Entertainment + + + TVPG + + + + Pati's Mexican Table + Maya Today + A visit to Cenote Xocempich; horchata; sikil pak; fresh herbs masa corn tortillas. + Food + + + TVG + + + + The Key Ingredient with Sheri Castle + Hey Pumpkin + Pumpkin creme caramel; an entree salad with warm pumpkin wedges and a honey vinaigrette; whole roasted pumpkin stuffed with bread pudding; how to perfectly roast pumpkin seeds. + Food + + + TVG + + + + Lucy Worsley's Royal Palace Secrets + Touring three of London's palaces -- the Tower of London, Hampton Court and Kensington Palace; host Lucy Worsley. + Specials + Documentary + + + TVPG + + + + Antiques Roadshow + Vintage Chattanooga Hour 2 + A New York Celtics Barnstorming poster circa 1935; a 1940 Disney Fantasia animation cell; a Newcomb College vase circa 1908. + Hobbies & Crafts + Arts & Entertainment + + + TVG + + + + Antiques Roadshow + Vintage Honolulu + Nineteenth-century Hawaiian poi pounders; a Dirk van Erp copper vase; an 1888 Joseph Nawahi oil painting. + Hobbies & Crafts + Arts & Entertainment + + + TVG + + + + Celebrity Antiques Road Trip + David Gower & Nick Hancock + Cricket legend David Gower and TV presenter Nick Hancock tour Hampshire to find curios and collectibles to take to auction in Sidcup; Charlie Ross and Phil Serrell ably assist.Guests: Nick Hancock, David Gower.. + Hobbies & Crafts + Arts & Entertainment + + + TVPG + + + + Pati's Mexican Table + Maya Today + A visit to Cenote Xocempich; horchata; sikil pak; fresh herbs masa corn tortillas. + Food + + + TVG + + + + The Key Ingredient with Sheri Castle + Hey Pumpkin + Pumpkin creme caramel; an entree salad with warm pumpkin wedges and a honey vinaigrette; whole roasted pumpkin stuffed with bread pudding; how to perfectly roast pumpkin seeds. + Food + + + TVG + + + + America's Test Kitchen + Light Summer Meal + Grilled boneless skinless chicken breasts with red pepper-almond sauce; a head-to-head tasting of whole dill pickles; flatware sets; berry granita. + Instructional + Food + + + TVG + + + + Cook's Country + Biscuits and Chicken + Butter and lard biscuits; the debate between lard and shortening; the benefits of full-sized and mini food processors; mimosa fried chicken. + Food + + + TVG + + + + Lucy Worsley's Royal Palace Secrets + Touring three of London's palaces -- the Tower of London, Hampton Court and Kensington Palace; host Lucy Worsley. + Specials + Documentary + + + TVPG + + + + Antiques Roadshow + Vintage Chattanooga Hour 2 + A New York Celtics Barnstorming poster circa 1935; a 1940 Disney Fantasia animation cell; a Newcomb College vase circa 1908. + Hobbies & Crafts + Arts & Entertainment + + + TVG + + + + Antiques Roadshow + Vintage Honolulu + Nineteenth-century Hawaiian poi pounders; a Dirk van Erp copper vase; an 1888 Joseph Nawahi oil painting. + Hobbies & Crafts + Arts & Entertainment + + + TVG + + + + Celebrity Antiques Road Trip + David Gower & Nick Hancock + Cricket legend David Gower and TV presenter Nick Hancock tour Hampshire to find curios and collectibles to take to auction in Sidcup; Charlie Ross and Phil Serrell ably assist.Guests: Nick Hancock, David Gower.. + Hobbies & Crafts + Arts & Entertainment + + + TVPG + + + + American Masters + Buffy Sainte-Marie: Carry It On + Indigenous artist Buffy Sainte-Marie rises to prominence in New York's Greenwich Village folk music scene, becoming an Academy Award-winning singer-songwriter, social activist and educator. + Documentary + Biography + + + TV14 + + + + America ReFramed + Town Destroyer + A dispute over historic murals at a public high school depicting the life of George Washington becomes a touchstone for a national debate over public art and historic memory. + + Silas House + Gyasi Ross + Sandra Cisneros + + Documentary + + + TVPG + + + + Independent Lens + Scenes From the Glittering World + Adolescence, trauma and the power of connecting with an isolated Navajo homeland. + Documentary + Performing Arts + + + TV14 + + + + American Masters + Buffy Sainte-Marie: Carry It On + Indigenous artist Buffy Sainte-Marie rises to prominence in New York's Greenwich Village folk music scene, becoming an Academy Award-winning singer-songwriter, social activist and educator. + Documentary + Biography + + + TV14 + + + + America ReFramed + Town Destroyer + A dispute over historic murals at a public high school depicting the life of George Washington becomes a touchstone for a national debate over public art and historic memory. + + Silas House + Gyasi Ross + Sandra Cisneros + + Documentary + + + TVPG + + + + America ReFramed + Town Destroyer + A dispute over historic murals at a public high school depicting the life of George Washington becomes a touchstone for a national debate over public art and historic memory. + + Silas House + Gyasi Ross + Sandra Cisneros + + Documentary + + + TVPG + + + + Independent Lens + Scenes From the Glittering World + Adolescence, trauma and the power of connecting with an isolated Navajo homeland. + Documentary + Performing Arts + + + TV14 + + + + Independent Lens + Matter of Mind: My ALS + Three people face different paths as they live with the progressively debilitating illness ALS -- amyotrophic lateral sclerosis. + Documentary + Performing Arts + + + TV14 + + + + POV + He's My Brother + Christine works to ensure dignified lives for herself and her brother, Peter, who was born with multiple disabilities, while facing uncertainties about becoming his primary caregiver. + Documentary + Biography + + + TVPG + + + + On Story + A Conversation With Ron Bass + Academy Award-winning screenwriter Ron Bass talks about his work, which includesGuests: Ronald Bass.. + Performing Arts + + + TVPG + + + + To the Contrary With Bonnie Erbé + Del. Eleanor Holmes Norton (D-District of Columbia).Guests: Eleanor Holmes Norton.. + Talk Shows + News + + + + Washington Week With The Atlantic + A panel of journalists provides reporting and analysis of the major stories emanating from the United States capital. + News + Political + + + + The Open Mind + The Nonexistent Left and Right + Authors Verlan Lewis and Hyrum Lewis talk about their book,Guests: Verlan Lewis, Hyrum Lewis.. + Talk Shows + + + TVG + + + + Focus on Europe + Hamas terror attacks in Israel cause concern for Israelis and Jews abroad; algae growth in the Baltic Sea; school of refugees in Cyprus; stone skimming championship in Scotland. + Regular + + + TVG + + + + Global Us + Ukrainian war victims get prostheses in the U.S.; how Kyrgyzstanis see the Ukraine war; China's population shrinks for the first time in decades; Mauritania's young gold prospectors. + News Magazine + + + TVG + + + + America ReFramed + Town Destroyer + A dispute over historic murals at a public high school depicting the life of George Washington becomes a touchstone for a national debate over public art and historic memory. + + Silas House + Gyasi Ross + Sandra Cisneros + + Documentary + + + TVPG + + + + Independent Lens + Scenes From the Glittering World + Adolescence, trauma and the power of connecting with an isolated Navajo homeland. + Documentary + Performing Arts + + + TV14 + + + + The Chavis Chronicles + The Art Born From Covid-19 + Berrisford Boothe and Klare Scarborough discussGuests: Berrisford Boothe, Klare Scarborough.. + Talk Shows + + + TVPG + + + + The Laura Flanders Show + Colette Pichon Battle on Climate Justice Reparations + Colette Pichon Battle, co-founder, Vision & Initiatives Partner for Taproot Earth.Guests: Colette Pichon Battle.. + Talk Shows + Local + + + TVG + + + + MN Original + Phil Vandervaart and Kristi Abbott + Sign painter Phil Vandervaart; Kristi Abbott's collages; Philip Noyed's abstract paintings; Musical Mondays. + Music + Arts & Entertainment + + + TVG + + + + America's Heartland + A family grows oranges for the long haul in California's Central Valley; cantaloupes; lemon cous cous chicken; Farm to School brings K-12 students more local foods. + Travel + + + TVG + + + + This American Land + Ropeless Fishing to Save Whales; Women Hikers Give Back; Preserving Original Homesteads + A coalition saves the right whale while allowing fishermen to save their livelihoods; immigrant women hike together and work on volunteer park projects; conservation easements ensure that original homesteads survive. + Environmental + + + TVG + + + + Start Up + Posies Flower Truck: Tampa, FL + Posies Flower Truck, a pop-up, make-your-own bouquet flower truck. + Business + + + TVG + + + + To the Contrary With Bonnie Erbé + Del. Eleanor Holmes Norton (D-District of Columbia).Guests: Eleanor Holmes Norton.. + Talk Shows + News + + + + Firing Line With Margaret Hoover + Margaret Hoover leads interviews and debates. + Regular + + + + The Open Mind + The Nonexistent Left and Right + Authors Verlan Lewis and Hyrum Lewis talk about their book,Guests: Verlan Lewis, Hyrum Lewis.. + Talk Shows + + + TVG + + + + ICT Newscast With Aliyah Chavez + News + + + + Global Us + Ukrainian war victims get prostheses in the U.S.; how Kyrgyzstanis see the Ukraine war; China's population shrinks for the first time in decades; Mauritania's young gold prospectors. + News Magazine + + + TVG + + + + On Story + A Conversation With Ron Bass + Academy Award-winning screenwriter Ron Bass talks about his work, which includesGuests: Ronald Bass.. + Performing Arts + + + TVPG + + + + America ReFramed + Town Destroyer + A dispute over historic murals at a public high school depicting the life of George Washington becomes a touchstone for a national debate over public art and historic memory. + + Silas House + Gyasi Ross + Sandra Cisneros + + Documentary + + + TVPG + + + + Independent Lens + Scenes From the Glittering World + Adolescence, trauma and the power of connecting with an isolated Navajo homeland. + Documentary + Performing Arts + + + TV14 + + + + Spy in the Wild: A Nature Miniseries + The North + Studying how animals move, feed and fight; a hummingbird films millions of butterflies; a squirrel faces a battle; a beaver watches other beavers build dams. + Regular + + + TVPG + + + + Spy in the Ocean, A Nature Miniseries + Deep Feelings + From dolphins to cuttlefish, ocean animals possess emotions and behavior similar to humans, including the capacity to love, grieve, deceive and invent. + Documentary + + + TVPG + + + + Finding Your Roots With Henry Louis Gates, Jr. + Anchormen + Journalists Jim Acosta and Van Jones learn about their ancestors.Guests: Jim Acosta, Van Jones.. + Documentary + + + TVPG + + + + American Experience + The War on Disco + Exploring the cultural movement that aided disco's rise and the backlash that tried to destroy it. + Documentary + + + TV14 + + + + Battle Over Bears Ears + The battle over how the Bears Ears National Monument in Utah is protected and managed; issues include the Western themes of federal verses state control, sacred rights to the land and stewardship. + Specials + Documentary + + + TV14 + + + + Spy in the Ocean, A Nature Miniseries + Deep Feelings + From dolphins to cuttlefish, ocean animals possess emotions and behavior similar to humans, including the capacity to love, grieve, deceive and invent. + Documentary + + + TVPG + + + + Finding Your Roots With Henry Louis Gates, Jr. + Anchormen + Journalists Jim Acosta and Van Jones learn about their ancestors.Guests: Jim Acosta, Van Jones.. + Documentary + + + TVPG + + + + American Experience + The War on Disco + Exploring the cultural movement that aided disco's rise and the backlash that tried to destroy it. + Documentary + + + TV14 + + + + Battle Over Bears Ears + The battle over how the Bears Ears National Monument in Utah is protected and managed; issues include the Western themes of federal verses state control, sacred rights to the land and stewardship. + Specials + Documentary + + + TV14 + + + + Independent Lens + Home From School: The Children of Carlisle + Northern Arapaho tribal members travel from Wyoming to Pennsylvania to retrieve remains of three children who died at Carlisle Indian Industrial School in the 1880s. + Documentary + Performing Arts + + + TVPG + + + + Spy in the Wild: A Nature Miniseries + The North + Studying how animals move, feed and fight; a hummingbird films millions of butterflies; a squirrel faces a battle; a beaver watches other beavers build dams. + Regular + + + TVPG + + + + BBC News + News. Reporting on the day's international news from London and from BBC correspondents around the world. + News + + + TVG + + + + The Whitney Reynolds Show + Hope and Healing + A community that experienced a mass shooting comes together for support and unity; miniature horse therapy helps promote empathy and overall well-being with young patients; a nonprofit helps the homeless community. + Talk Shows + + + TVPG + + + + Newsroom Tokyo + NHK World's newest program provides comprehensive coverage of events in Japan and Asia. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + Direct Talk + News, current affairs and documentaries focusing on Japan and Asia. + News + Documentary + + + + Spy in the Ocean, A Nature Miniseries + Deep Feelings + From dolphins to cuttlefish, ocean animals possess emotions and behavior similar to humans, including the capacity to love, grieve, deceive and invent. + Documentary + + + TVPG + + + + Finding Your Roots With Henry Louis Gates, Jr. + Anchormen + Journalists Jim Acosta and Van Jones learn about their ancestors.Guests: Jim Acosta, Van Jones.. + Documentary + + + TVPG + + + + American Experience + The War on Disco + Exploring the cultural movement that aided disco's rise and the backlash that tried to destroy it. + Documentary + + + TV14 + + + + Battle Over Bears Ears + The battle over how the Bears Ears National Monument in Utah is protected and managed; issues include the Western themes of federal verses state control, sacred rights to the land and stewardship. + Specials + Documentary + + + TV14 + + + + Amanpour and Company + Christiane Amanpour leads discussions about world issues and interviews with global leaders. + Regular + + + + The Whitney Reynolds Show + Hope and Healing + A community that experienced a mass shooting comes together for support and unity; miniature horse therapy helps promote empathy and overall well-being with young patients; a nonprofit helps the homeless community. + Talk Shows + + + TVPG + + + + The Open Mind + The Nonexistent Left and Right + Authors Verlan Lewis and Hyrum Lewis talk about their book,Guests: Verlan Lewis, Hyrum Lewis.. + Talk Shows + + + TVG + + + + After Action + All Gave Some + Three veterans who have had brushes with death talk about how they stay positive and what life is like after action. + Documentary + + + TV14 + + + + After Action + In Doc + Three veterans who were once in charge of transforming new recruits into service men and women talk about the transformation process and its impact on their lives after action. + Documentary + + + TVPG + + + + American Veteran + The Crossing + Recruits leave the civilian world as they take the oath to serve in the U.S. military; narrator Drew Carey. + History + Documentary + + + TV14 + + + + DW News + Presenting a round-up of the most recent news and developments from across the world. + News + + + + BBC News America + Live news program produced out of BBC's Washington, D.C. bureau; host Sumi Somaskanda. + News + + + + France 24 + Live feed from leading 24/7 international news and current affairs channel based in Paris, providing key information to understand ever-more complex global events through in-depth analysis and an international lens. + News + Political + + + TVPG + + + + NHK Newsline + World events, business news and weather forecasts; broadcast in English. + News + + + + Her War, Her Story: World War II + From the U.S. Women's Army Corps to the civilian witnesses to the war in Europe, Jane Lynch narrates the stories of more than two dozen women's experiences in World War II. + Specials + Documentary + + + TVPG + + + + Soldier On: Life After Deployment + Three women readjust to civilian life following military service. + Specials + Documentary + + + TVPG + + + + Films BYkids + Return Date: Unknown + A 17-year-old who escaped Ukraine when the Russian army invaded interviews fellow refugees and examines how people find solidarity and hope during times of crisis. + Documentary + + + TV14 + + + + Stories From the Stage + Serving With Honor + Service members and their families demonstrate character and resolve amid trying circumstances; with Kevin Dutremble, Juli-anne Whitney Jensen and James Griffin. + Documentary + + + TVPG + + + + PBS NewsHour + Co-anchors Amna Nawaz and Geoff Bennett and correspondents offer in-depth analysis of current events. + News + + + + The Day + A daily news summary from Europe with anchor Brent Goff. + News + + + + BBC News + News. Reporting on the day's international news from London and from BBC correspondents around the world. + News + + + TVG + + + + Her War, Her Story: World War II + From the U.S. Women's Army Corps to the civilian witnesses to the war in Europe, Jane Lynch narrates the stories of more than two dozen women's experiences in World War II. + Specials + Documentary + + + TVPG + + + + Soldier On: Life After Deployment + Three women readjust to civilian life following military service. + Specials + Documentary + + + TVPG + + + + Films BYkids + Return Date: Unknown + A 17-year-old who escaped Ukraine when the Russian army invaded interviews fellow refugees and examines how people find solidarity and hope during times of crisis. + Documentary + + + TV14 + + + + Stories From the Stage + Serving With Honor + Service members and their families demonstrate character and resolve amid trying circumstances; with Kevin Dutremble, Juli-anne Whitney Jensen and James Griffin. + Documentary + + + TVPG + + + + PBS NewsHour + Co-anchors Amna Nawaz and Geoff Bennett and correspondents offer in-depth analysis of current events. + News + + + + Amanpour and Company + Christiane Amanpour leads discussions about world issues and interviews with global leaders. + Regular + + + + The Good Road + Nashville, TN -- Making Space + A trip to Nashville, Tenn., includes the National Museum of African American Music and tje Parthenon. + Documentary + + + TVPG + + + + The Good Road + Cape Canaveral, Florida -- Space Force, Go for Launch + Cape Canaveral Space Force Station; how Guardians protect Space Force; a journey through the nascent stages of the space program; the rundown of an impending Falcon 9 launch. + Documentary + + + TVPG + + + + BBC News + News. Reporting on the day's international news from London and from BBC correspondents around the world. + News + + + TVG + + + + Asia Insight + An in-depth portrait of Asia today, covering its dynamism as a center of growth. + News + Local + + + + Newsroom Tokyo + NHK World's newest program provides comprehensive coverage of events in Japan and Asia. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + Direct Talk + News, current affairs and documentaries focusing on Japan and Asia. + News + Documentary + + + + Her War, Her Story: World War II + From the U.S. Women's Army Corps to the civilian witnesses to the war in Europe, Jane Lynch narrates the stories of more than two dozen women's experiences in World War II. + Specials + Documentary + + + TVPG + + + + Soldier On: Life After Deployment + Three women readjust to civilian life following military service. + Specials + Documentary + + + TVPG + + + + Films BYkids + Return Date: Unknown + A 17-year-old who escaped Ukraine when the Russian army invaded interviews fellow refugees and examines how people find solidarity and hope during times of crisis. + Documentary + + + TV14 + + + + Stories From the Stage + Serving With Honor + Service members and their families demonstrate character and resolve amid trying circumstances; with Kevin Dutremble, Juli-anne Whitney Jensen and James Griffin. + Documentary + + + TVPG + + + + The Good Road + Nashville, TN -- Making Space + A trip to Nashville, Tenn., includes the National Museum of African American Music and tje Parthenon. + Documentary + + + TVPG + + + + The Good Road + Cape Canaveral, Florida -- Space Force, Go for Launch + Cape Canaveral Space Force Station; how Guardians protect Space Force; a journey through the nascent stages of the space program; the rundown of an impending Falcon 9 launch. + Documentary + + + TVPG + + + + Amanpour and Company + Christiane Amanpour leads discussions about world issues and interviews with global leaders. + Regular + + + + Consuelo Mack WealthTrack + Legendary Value Investor Exclusive + Bruce Berkowitz, Fairholme Fund.Guests: Bruce Berkowitz.. + Business + + + TVG + + + + Asia Insight + An in-depth portrait of Asia today, covering its dynamism as a center of growth. + News + Local + + + + After Action + Pledge of Allegiance + Veterans Dr. Sam Babu, Mazin Mozan and Nick Paz discuss their personal connection to citizenship and its impact on military service. + Documentary + + + TVPG + + + + After Action + Glass Ceiling + Three veterans who were the first women in their fields talk about how they overcame challenges and how those experiences impacted their lives after action. + Documentary + + + TVPG + + + + American Veteran + The Mission + Stories from veterans illustrate how military life shapes servicemen and women in profound, unexpected ways; host Tammy Duckworth. + History + Documentary + + + TV14 + + + + DW News + Presenting a round-up of the most recent news and developments from across the world. + News + + + + BBC News America + Live news program produced out of BBC's Washington, D.C. bureau; host Sumi Somaskanda. + News + + + + France 24 + Live feed from leading 24/7 international news and current affairs channel based in Paris, providing key information to understand ever-more complex global events through in-depth analysis and an international lens. + News + Political + + + TVPG + + + + NHK Newsline + World events, business news and weather forecasts; broadcast in English. + News + + + + NOVA + Ancient Earth: Humans + How Earth gave rise to humans, starting with the asteroid strike that wiped out the dinosaurs, the spread of primates across the planet and geologic events that made the human species possible. + Science + + + TVPG + + + + Secrets of the Dead + Death in Britannia + A skeleton dating back to the Roman occupation of Britain provokes further study after scientists see an iron nail driven through its heel bone, possibly indicating the person was crucified. + History + Documentary + + + TV14 + + + + The Good Road + Asheville, NC -- The French Broad + An urban. + Documentary + + + TVPG + + + + The Good Road + Cabo Rojo, Puerto Rico: Salt of the Earth + A journey through Puerto Rico; University of Puerto Rico's Sea Grant; wildlife refuge for migratory birds; the mangrove fields of La Paguera. + Documentary + + + TVPG + + + + PBS NewsHour + Co-anchors Amna Nawaz and Geoff Bennett and correspondents offer in-depth analysis of current events. + News + + + + The Day + A daily news summary from Europe with anchor Brent Goff. + News + + + + BBC News + News. Reporting on the day's international news from London and from BBC correspondents around the world. + News + + + TVG + + + + NOVA + Ancient Earth: Humans + How Earth gave rise to humans, starting with the asteroid strike that wiped out the dinosaurs, the spread of primates across the planet and geologic events that made the human species possible. + Science + + + TVPG + + + + Secrets of the Dead + Death in Britannia + A skeleton dating back to the Roman occupation of Britain provokes further study after scientists see an iron nail driven through its heel bone, possibly indicating the person was crucified. + History + Documentary + + + TV14 + + + + The Good Road + Asheville, NC -- The French Broad + An urban. + Documentary + + + TVPG + + + + The Good Road + Cabo Rojo, Puerto Rico: Salt of the Earth + A journey through Puerto Rico; University of Puerto Rico's Sea Grant; wildlife refuge for migratory birds; the mangrove fields of La Paguera. + Documentary + + + TVPG + + + + PBS NewsHour + Co-anchors Amna Nawaz and Geoff Bennett and correspondents offer in-depth analysis of current events. + News + + + + Amanpour and Company + Christiane Amanpour leads discussions about world issues and interviews with global leaders. + Regular + + + + POV + Manzanar, Diverted: When Water Becomes Dust + Native American, Japanese American and rancher communities form an alliance to defend their land and water from Los Angeles. + Documentary + Biography + + + TVPG + + + + BBC News + News. Reporting on the day's international news from London and from BBC correspondents around the world. + News + + + TVG + + + + GZERO World With Ian Bremmer + What's Iran's Next Move? + Karim Sadjadpour, Carnegie Endowment for International Peace, discusses Iran's next moves regarding Israel's war in Gaza.Guests: Karim Sadjadpour.. + Regular + + + TVPG + + + + Newsroom Tokyo + NHK World's newest program provides comprehensive coverage of events in Japan and Asia. + News + + + + Newsline in Depth + A colorful variety of feature stories, including reports on daily life from locations throughout Japan as well as other parts of Asia and around the world. + News + News Magazine + + + + Direct Talk + News, current affairs and documentaries focusing on Japan and Asia. + News + Documentary + + + + NOVA + Ancient Earth: Humans + How Earth gave rise to humans, starting with the asteroid strike that wiped out the dinosaurs, the spread of primates across the planet and geologic events that made the human species possible. + Science + + + TVPG + + + + Secrets of the Dead + Death in Britannia + A skeleton dating back to the Roman occupation of Britain provokes further study after scientists see an iron nail driven through its heel bone, possibly indicating the person was crucified. + History + Documentary + + + TV14 + + + + The Good Road + Asheville, NC -- The French Broad + An urban. + Documentary + + + TVPG + + + + The Good Road + Cabo Rojo, Puerto Rico: Salt of the Earth + A journey through Puerto Rico; University of Puerto Rico's Sea Grant; wildlife refuge for migratory birds; the mangrove fields of La Paguera. + Documentary + + + TVPG + + + + POV + Manzanar, Diverted: When Water Becomes Dust + Native American, Japanese American and rancher communities form an alliance to defend their land and water from Los Angeles. + Documentary + Biography + + + TVPG + + + + Amanpour and Company + Christiane Amanpour leads discussions about world issues and interviews with global leaders. + Regular + + + + To the Contrary With Bonnie Erbé + Del. Eleanor Holmes Norton (D-District of Columbia).Guests: Eleanor Holmes Norton.. + Talk Shows + News + + + + Energy Switch + The Future of Batteries, Part 1 + The future of battery technology. + Talk Shows + + + TVG + + + + After Action + Her Silence + Three veterans who have experienced military sexual trauma reveal how their cases were handled, the impact on their lives and the wars they are fighting after action. + Documentary + + + TVPG + + + + After Action + Mind, Body, Spirit-Animals + Three veterans reveal how dogs, birds and horses help bring healing and independence to those who struggle after action. + Documentary + + + TVPG + + + + American Veteran + The Return + Hollywood war stories seem to end in triumph, but in reality the return to civilian life is often less certain; host Wes Studi. + History + Documentary + + + TV14 + + + + DW News + Presenting a round-up of the most recent news and developments from across the world. + News + + + + BBC News America + Live news program produced out of BBC's Washington, D.C. bureau; host Sumi Somaskanda. + News + + + + France 24 + Live feed from leading 24/7 international news and current affairs channel based in Paris, providing key information to understand ever-more complex global events through in-depth analysis and an international lens. + News + Political + + + TVPG + + + + NHK Newsline + World events, business news and weather forecasts; broadcast in English. + News + + + + Pennsylvania's Neighborhood Chester County + A look at the Oxford Mainstreet car show. + + + + Inside the Lines + Philadelphia 76ers outlook with Keith Pompey of the Philadelphia Inquirer, and Dei Lynam of 97.5 The Fanatic Radio. + + + + PCN Primetime - pcntv.com + + + + PCN Profiles + nterview with Mike Missanelli, sports talk radio host and former print reporter. + + + + Civil War Institute at Gettysburg College + Civil War Institute program on the Confederate Flag with John Coski. + + + + The Peninsula Campaign and Black Confederates + Civil War Institute program on the Peninsula Campaign and black confederates; Glenn David Brasher hosts. + + + + Ulysses S. Grant and the Problem of Virginia in 1864: Civil War Institute + Civil War Institute presents Ulysses S. Grant and the Problem of Virginia in 1864; Brooks Simpson hosts. + + + + Gettysburg Living History Portrayals + Performed by the Confederation of Union Generals. Battle of Gettysburg Day 1 with Maj. Gen. George Gordon Meade, Brig. Gen. John Buford, Brig. Gen. Lysander Cutler, Sgt. James 'Mickey' Sullivan, and Maj. Gen. Abner Doubleday. + + + + Gettysburg Day 3 + Gettysburg Day 3: Pickett's Charge with Matt Atkinson. + + + + Gettysburg Day 2 + With Dan Welch and Christopher Gwinn. + + + + Gettysburg Day 2 + The Wheatfield with Michael Kelly. + + + + Pennsylvania Country Roads + Pennsylvania Country Roads is produced by the Northeast Horseman's Journal. + + + + Inside Pennsylvania Boroughs + Inside Pennsylvania Boroughs is produced by the PA State Association of Boroughs. + + + + Journalists' Roundtable + Journalists: Jon Delano of KDKA-TV, Jan Murphy of Pennlive/The Patriot News, and Kate Huangpu of Spotlight PA. + + + + PMA Perspective + PMA Perspective is produced by the Pennsylvania Manufacturers' Association. + + + + Mini Horse Extravaganza + + + + Mini Horse and Mini Mule Pull Contest + Mini horse and mini mule pull contest. + + + + Basics of Home Food Preservation + + + + Farm Show Highlights + 11:30 - Mushroom Farmers of PA Booth; 11:34 - Mushroom Farmers Exhibit. + + + + Farm Show + 11:40 - Hardwood Council Exhibit; 11:46 - Logging and Forestry Exhibit; 11:52 - Hardwood Products Exhibit; 11:18 - Christmas Tree Exhibit. + + + + Farm Show + 12:10 - Eastern Black Walnut Seedlings Judging; 12:14 - PA Fair Queen Anna Haldeman;12:17 - Quilt Block Pieced Adult 19 + Judging; 12:21 - Truckin' for Troops; 12:23 - Youth Baked Goods Judging. + + + + Antique Tractor Display + Antique tractor display with Waterloo Boys of Southeast PA. + + + + Antique Tractor Restoration Shop + Antique tractor restoration shop with Waterloo Boys of Southeast PA. + + + + Election 2023 + KYW Newsradio debate between Cherelle Parker (D) and David Oh (R). + + + + PA Manufacturers' Association Business Briefing + PA Manufacturers' Association program with PA Senate Majority Leader Sen. Joe Pittman, R-Armstrong, Indiana, Jefferson, and Westmoreland. + + + + PA Press Club + PA Press Club with House Majority Leader Matt Bradford. + + + + Air Quality + PennEnvironment report release on air quality. + + + + PIAA Boys and Girls Golf Championships + Top 10 finishers for the PIAA 2A and 3A Individual Golf Championships. + + + + Saucon Valley Country Club + A look at the Saucon Valley Country Club in Bethlehem. + + + + Pennsylvania Parks History + A trolley park created in the early 1900's in Carroll Township, Washington County. + + + + Pennsylvania Parks History + A 60-acre trolley park, created in the early 1900s, is located between Oil City and Franklin. + + + + PCN Tours + Tour of Oakworks in New Freedom, PA. + + + + PA Books + Interview about the book "Are All Politics Nationalized?" with authors Berwood Yost, Matthew Schousen, and Stephen Medvic. + + + + Election 2023 + KDKA-TV debate with Sara Innamorato (D) and Joe Rockey (R). + + + + Former PA Supreme Court Chief Justice Max Baer Portrait Unveiling + Portrait unveiling of former PA Supreme Court Chief Justice Max Baer (2021-2022). + + + + PA Supreme Court Session + PA Supreme Court Session from Harrisburg recorded on May 23, 2023. + + + + History of the PA Superior Court + PA Bar Association Appellate Advocacy Committee program on the history of PA Superior Court. + + + + The PCN Capitol Preview + Guests: Rep. Joanna McClinton, D-Speaker of the PA House; and Rep. KC Tomlinson, R-Bucks. + + + + The PCN Capitol Preview + Guests: Kevin Harley, Managing Director at Quantum Communications; Brit Crampsie, President at Brit Crampsie Communications; and Nathan Reigner, Director of the PA Outdoor Recreation Office. Call 1-877-PA6-5001, text 717-219-4001 or on Facebook. + + + + Journalists' Roundtable + Journalists: Jon Delano of KDKA-TV, Jan Murphy of Pennlive/The Patriot News, and Kate Huangpu of Spotlight PA. + + + + On the Issues + Interview with Maria Battista, Republican for PA Superior Court. + + + + On the Issues + Interview with Timika Lane, Democrat for PA Superior Court. + + + + On the Issues + Interview with Matt Wolf, Democrat for PA Commonwealth Court. + + + + PCN Tours + A visit to Westerwald Pottery. + + + + PA Books + Interview about the book "Are All Politics Nationalized?" with authors Berwood Yost, Matthew Schousen, and Stephen Medvic. + + + + The PCN Capitol Preview + Guests: TJ Rooney and Alan Novak of Rooney Novak Isenhour Group; and Rep. Tim O'Neal, R-Minority Whip. Call 1-877-PA6-5001, text 717-219-4001 or on Facebook. + + + + Election 2023 + KYW Newsradio debate between Cherelle Parker (D) and David Oh (R). + + + + Election 2023 + WTAE-TV debate with Joe Rockey (R) and Sara Innamorato (D). + + + + Election 2023 + Crawford County Bar Association judicial forum with candidates for Supreme, Superior and Commonwealth courts. Courtesy of Armstrong in Meadville. + + + + Election 2023 + Pennsylvanians for Modern Courts and Every Voice, Every Vote forum with statewide judicial candidates. + + + + Election 2023 + KYW Newsradio debate between Cherelle Parker (D) and David Oh (R). + + + + Election 2023 + WTAE-TV debate with Joe Rockey (R) and Sara Innamorato (D). + + + + It's History! + Scranton Cultural Center at the Masonic Temple, Scranton, PA. + + + + Weather World + Statewide weather report and weather-related information produced by Penn State's Weather Communications Group faculty and students. + + + + The PCN Capitol Preview + Connect directly with public officials, advocates, and newsmakers on the top news, issues, political and public policy topics. + + + + PCN Tours + Tour of Martin Guitars in Nazareth. + + + + PCN Tours + Tour of Martin Guitars in Nazareth, PA. + + + + PCN Tours + Experience the process of how your favorite products in the Commonwealth are made with tours led by representatives of the facility. + + + + PCN Tours + Tour in Middleburg. + + + + PCN Tours + Tour of Patterson-Kelley Boilers & Water Heaters in East Stroudsburg, PA. + + + + PCN Tours Aul Bat Company in Pittsburgh + (2014) A factory tour of Aul Bat Company in Pittsburgh. + + + + Battlefield Pennsylvania + Wage and job cuts caused nationwide railroad strikes in 1877. In Pittsburgh, militia clashed with strikers from July 21-22, killing 40 men. + + + + Battlefield Pennsylvania + The Battle of Hunterstown, a meeting engagement between Gen. Wade Hampton's cavalry and Gen. George Custer's force, occurred July 2, 1863. + + + + PCN Tours + Tour of Martin Guitars in Nazareth. + + + + PCN Tours + Tour of Martin Guitars in Nazareth, PA. + + + + PCN Tours + Experience the process of how your favorite products in the Commonwealth are made with tours led by representatives of the facility. + + + + PCN Tours + Tour in Middleburg. + + + + PCN Tours + Tour of Patterson-Kelley Boilers & Water Heaters in East Stroudsburg, PA. + + + + PCN Tours Aul Bat Company in Pittsburgh + (2014) A factory tour of Aul Bat Company in Pittsburgh. + + + + Battlefield Pennsylvania + Wage and job cuts caused nationwide railroad strikes in 1877. In Pittsburgh, militia clashed with strikers from July 21-22, killing 40 men. + + + + Battlefield Pennsylvania + The Battle of Hunterstown, a meeting engagement between Gen. Wade Hampton's cavalry and Gen. George Custer's force, occurred July 2, 1863. + + + + PCN Tours + Experience the process of how your favorite products in the Commonwealth are made with tours led by representatives of the facility. + + + + PA Books + With author Allen Dieterich-Ward. + + + + Voices of Veterans + Raymond Drumheller, from Pottstown, was an Airman 2nd Class in the U.S. Air Force during the Cold War. + + + + Voices of Veterans + Pierre Ritter, from Harrisburg, was a Petty Officer 2nd Class in the U.S. Navy and a Medic in the U.S. Army Reserves. + + + + Voices of Veterans + Arthur Mulrooney, from Millmont, was a sergeant in the U.S. Army during World War II. + + + + Voices of Veterans + John Wear, from New Hope, was a Corporal in the U.S. Marine Corps during the Vietnam War. + + + + Voices of Veterans + Ralph Galati, from Wallingford, was a Captain in the U.S. Air Force who served in Vietnam and was a prisoner of war. + + + + Voices of Veterans + Glenn Bushey, from Camp Hill, was a Corporal in the U.S. Army who served in World War II and Korea. + + + + Voices of Veterans + + + + Weather World + Statewide weather report and weather-related information produced by Penn State's Weather Communications Group faculty and students. + + + + PCN Programming + + + + PA Books Dead Letters + Interview about the book Dead Letters with author Jessica Weible. + + + + PA Books + Interview about the book The First Congress with author Fergus Bordewich. + + + + General Election 2023 + General Election 2023 with Deborah Gross, president and CEO at Pennsylvanians for Modern Courts; Charles Eppolito, Judicial Evaluation Commission Chair at PA Bar Association; and Chris Borick, director of the MCIPO. + + + + PA Books + Interview about the book Shanghai Faithful with author Jennifer Lin. + + + + PCN Profiles + Interview with Bill DeWeese, former Speaker of the PA House. + + + + PCN Profiles + Interview with Peter Gurt, president at Milton Hershey School. + + + + PCN Profiles + Interview with Dave Williams, member of National Farm Broadcasters Association. + + + + PA Books Dead Letters + Interview about the book Dead Letters with author Jessica Weible. + + + + PA Books + Interview about the book The First Congress with author Fergus Bordewich. + + + + PA Books + Interview about the book "Ghost River" with authors Will Fenton, Lee Francis, and Weshoyot Alvitre. + + + + PA Books + Interview about the book "Emotional Gettysburg" with authors Karl J. Kuerner and Bruce Mowday. + + + + PA Books + Interview about the book Shanghai Faithful with author Jennifer Lin. + + + + PCN Profiles + Interview with Bill DeWeese, former Speaker of the PA House. + + + + PCN Profiles + Interview with Peter Gurt, president at Milton Hershey School. + + + + PCN Profiles + Interview with Dave Williams, member of National Farm Broadcasters Association. + + + + PCN Tours + Tour in Telford, PA. + + + + PA Books + Josef Wegner and Jennifer Houser Wegner. + + + + Keystone Edition + WVIA-TV produced program. + + + + Voices of Veterans + + + + Voices of Veterans + Heath Thomas, from Kunkletown, was in the U.S. Marines and U.S. Navy in Afghanistan. + + + + Voices of Veterans + Dave Binder, of Allentown, was a Petty Officer, 2nd Class in the U.S. Navy during the Vietnam War. + + + + Voices of Veterans + Angela Grabuloff, from Middletown, served in the U.S. Air Force. + + + + Voices of Veterans + Dennis Curran, from Excelsior, a Corporal in the U.S. Marines, served during the Vietnam War. + + + + Voices of Veterans + Doug O'Dell, from LaPorte, was a Major General in the U.S. Marines, who commanded anti-terrorism forces in Afghanistan and Iraq. + + + + Weather World + Statewide weather report and weather-related information produced by Penn State's Weather Communications Group faculty and students. + + + + On the Issues + Election 2023 with Fletcher McClellan, Political Science Professor at Elizabethtown College. + + + + On the Issues + Interviews with Alison Dagnes, Political Science Professor at Shippensburg University. + + + + Varsity Blues + When the star quarterback (Paul Walker) is injured, a rigid high-school football coach (Jon Voight) expects an irreverent player (James Van Der Beek) to lead the team to victory. + + James Van Der Beek + Jon Voight + Paul Walker + + 1999 + Movies + Comedy + Drama + + + TVPG + + + 2 + + + + Rudy + With heart and determination an Illinois youth (Sean Astin) tackles shortcomings to play Notre Dame football. + + Sean Astin + Ned Beatty + Charles S. Dutton + + 1993 + Movies + Drama + + + TVG + + + 3 + + + + NCIS: New Orleans + The Root of All Evil + The team investigates the murder of a JAG captain who was discovered at home by his daughter, the only heir to his large estate; Sebastian is intimidated when he is put in charge of a team on his first day of training. + + Scott Bakula + Vanessa Ferlito + Rob Kerkovich + + Drama + + + TV14 + + + + NCIS: New Orleans + The Man in the Red Suit + When Pride is unable to sleep due to continuing nightmares about the mysterious man in the red suit, he undergoes a specialized treatment to help him figure out the man's identity; an arrogant new officer joins the team. + + Scott Bakula + Vanessa Ferlito + Rob Kerkovich + + Drama + + + TV14 + + + + NCIS: New Orleans + Relentless + Tammy must protect a teenage girl after her father is shot in their home; the rest of the team searches for a motive. + + Scott Bakula + Vanessa Ferlito + Rob Kerkovich + + Drama + + + TV14 + + + + NCIS: New Orleans + Pride and Prejudice + When a man impersonating Lasalle attempts to free a young woman from jail, the team investigates both the impostor and the prisoner; Pride's daughter pays him a surprise visit. + + Scott Bakula + Vanessa Ferlito + Rob Kerkovich + + Drama + + + TV14 + + + + NCIS: New Orleans + Biased + Racial tensions rise in New Orleans when a white officer shoots a black Navy officer he believed was armed in the middle of a busy street party. + + Scott Bakula + Vanessa Ferlito + Rob Kerkovich + + Drama + + + TV14 + + + + NCIS: New Orleans + A Changed Woman + When a Navy sailor is found dead, the team tracks the suspicious movements of people in his life prior to his death; Hannah comes to terms with her daughter's relationship with her ex's new girlfriend. + + Scott Bakula + Vanessa Ferlito + Rob Kerkovich + + Drama + + + TV14 + + + + NCIS: New Orleans + Monolith + When Sebastian is injured while unsuccessfully trying to prevent a kidnapping, NCIS races to find the missing woman and her abductors; the team gets a peek into Agent Carter's personal life. + + Scott Bakula + Vanessa Ferlito + Rob Kerkovich + + Drama + + + TV14 + + + + NCIS: New Orleans + Predators + The team investigates the death of a Naval microbiologist whose hobby as a. + + Scott Bakula + Lucas Black + Vanessa Ferlito + + Drama + + + TV14 + + + + Scorpion + Ice Ca-Cabes + Team Scorpion is forced to freeze Cabe's body after he's seriously wounded by exploding shrapnel while on a mission in the desert. + + Elyes Gabel + Robert Patrick + Katharine McPhee + + Drama + + + TV14 + + + + Scorpion + Faux Money Maux Problems + When Team Scorpion is tricked into producing counterfeit cash for a foreign entity that intends to ruin the U.S. economy, Paige relies on her mother's skills as a grifter to save them. + + Elyes Gabel + Robert Patrick + Katharine McPhee + + Drama + + + TV14 + + + + Scorpion + The Hole Truth + Team Scorpion attempts to save a man stuck on the edge of a massive sink hole that could permanently destroy the Los Angeles water supply. + + Elyes Gabel + Robert Patrick + Katharine McPhee + + Drama + + + TV14 + + + + Scorpion + Sharknerdo + Team Scorpion's job to find sunken treasure goes awry when Walter and Paige's boat explodes, leaving them lost in the middle of the Pacific Ocean surrounded by sharks. + + Elyes Gabel + Robert Patrick + Katharine McPhee + + Drama + + + TV14 + + + + Scorpion + Keep It in Check, Mate + Walter and Sylvester enter an international chess competition under cover on foreign soil in an effort to extricate a U.S. spy before her identity is exposed. + + Elyes Gabel + Robert Patrick + Katharine McPhee + + Drama + + + TV14 + + + + Scorpion + Dirty Seeds, Done Dirt Cheap + Happy, Sylvester and Cabe suffer from life-threatening, fear-based hallucinations after a simple mission to protect a vital seed bank goes awry. + + Elyes Gabel + Robert Patrick + Katharine McPhee + + Drama + + + TV14 + + + + Scorpion + Don't Burst My Bubble + Team Scorpion must move Happy's friend Ada, and the sterile bubble Ada lives in that protects her compromised immune system, to a secure location after a severe storm leaves the structure surrounded by dangerous debris. + + Elyes Gabel + Robert Patrick + Katharine McPhee + + Drama + + + TV14 + + + + Scorpion + Monkey See, Monkey Poo + To stop a dangerous virus from spreading, Team Scorpion must locate an endangered monkey in the Amazon that has the antibody for the cure; Toby and Happy see a counselor to prepare for matrimony. + + Elyes Gabel + Robert Patrick + Katharine McPhee + + Drama + + + TV14 + + + + Scorpion + Broken Wind + The team races to save Paige and Happy when a wire supporting the gondola they are in during a mission to repair a turbine at a wind farm snaps. + + Elyes Gabel + Robert Patrick + Katharine McPhee + + Drama + + + TV14 + + + + Scorpion + Rock Block + The team defies the orders of a foreign government when it retrieves an asteroid containing DNA strands that could have deadly consequences if they are exposed. + + Elyes Gabel + Robert Patrick + Katharine McPhee + + Drama + + + TV14 + + + + Scorpion + Strife on Mars + The team attempts to extract a pair of scientists trapped inside a failing and dangerous bio-dome designed for Mars. + + Elyes Gabel + Robert Patrick + Katharine McPhee + + Drama + + + TV14 + + + + Scorpion + Something Burrowed, Something Blew + After extinguishing a catastrophic tunnel fire, Team Scorpion helps Toby and Happy get to their wedding ceremony. + + Elyes Gabel + Robert Patrick + Katharine McPhee + + Drama + + + TV14 + + + + Criminal Minds + Ashley + The BAU investigates a double homicide and kidnapping in New Hampshire; Rossi's plans to elevate his relationship with Krystall don't go as planned. + + Joe Mantegna + Paget Brewster + Matthew Gray Gubler + + Drama + Legal + + + TV14 + + + + Criminal Minds + Broken Wing + A professor from Lewis' past tips off the BAU to an alarming number of overdose deaths of patients who just completed rehab. + + Joe Mantegna + Paget Brewster + Matthew Gray Gubler + + Drama + Legal + + + TV14 + + + + Criminal Minds + Flesh and Blood + Prentiss faces her past when the BAU is sent to investigate the murders of prominent businessmen, all of whom are missing their hearts; Prentiss plans a romantic first date with Mendoza, but the evening is cut short by an urgent call from Rossi. + + Joe Mantegna + Paget Brewster + A.J. Cook + + Drama + Legal + + + TV14 + + + + Criminal Minds + Night Lights + The BAU team heads to Portland, Ore., to investigate a chilling abduction that may be linked to a local couple who were killed in their home a week earlier. + + Joe Mantegna + Paget Brewster + A.J. Cook + + Drama + Legal + + + TV14 + + + + Criminal Minds + Hamelin + The BAU team flies to Iowa to investigate the disappearance of three 10-year-old children who appear to have been abducted from their homes, with surveillance video from a park as their only lead to finding the children's whereabouts. + + Joe Mantegna + Paget Brewster + A.J. Cook + + Drama + Legal + + + TV14 + + + + NCIS: New Orleans + Something in the Air, Part 1 + As New Orleans grapples with the effects of COVID-19, Pride sends Tammy and Carter to investigate a suspicious death aboard an offshore humanitarian ship; Wade is overwhelmed by the high volume in the morgue due to COVID-19. + + Scott Bakula + Vanessa Ferlito + Rob Kerkovich + + Drama + + + TV14 + + + + NCIS: New Orleans + Something in the Air, Part 2 + Tammy and Carter continue to investigate a suspicious death aboard a COVID-infected humanitarian ship; Pride and the team discover what may be the key to finding the killer; Wade helps a grieving woman. + + Scott Bakula + Vanessa Ferlito + Rob Kerkovich + + Drama + + + TV14 + + + + NCIS: New Orleans + One of Our Own + Pride and the team take on a group of dirty cops when they discover that a murder victim was also a key witness in multiple excessive force cases; Tammy faces the reality of being in a new relationship. + + Scott Bakula + Vanessa Ferlito + Rob Kerkovich + + Drama + + + TV14 + + + + NCIS: New Orleans + We All Fall.. + The team continue to investigate the murder of an officer who was about to blow the whistle on police misconduct; Pride must get creative in order to finally get rid of the dirty cops; the mayor asks Pride to join her new task force. + + Scott Bakula + Vanessa Ferlito + Rob Kerkovich + + Drama + + + TV14 + + + + NCIS: New Orleans + Operation Drano, Part I + The team investigates a suspicious death and the missing key piece of evidence is a top secret, high-tech battery; Pride and the team realize there could be deadly consequences if it falls into the wrong hands. + + Scott Bakula + Vanessa Ferlito + Rob Kerkovich + + Drama + + + TV14 + + + + NCIS: New Orleans + Operation Drano, Part II + When a torpedo hits a fishing trawler at sea, the entire Gulf Coast is in jeopardy as Pride and NCIS race to find the submarine before it can strike again. + + Scott Bakula + Vanessa Ferlito + Rob Kerkovich + + Drama + + + TV14 + + + + NCIS: New Orleans + Leda and the Swan, Part I + A Navy therapist who is working to get justice for victims of sexual assault is murdered; Carter's mother confronts him when he refuses to talk to the FBI for a background check on her behalf. + + Scott Bakula + Vanessa Ferlito + Rob Kerkovich + + Drama + + + TV14 + + + + NCIS: New Orleans + Leda and the Swan, Part II + As Pride and the team continue the investigation of an officer's assault and the murder of her therapist, NCIS zeroes in on a suspect who's been working the system for years; Carter and his mother talk about how they'll move forward after a mistake. + + Scott Bakula + Vanessa Ferlito + Rob Kerkovich + + Drama + + + TV14 + + + + 48 Hours + Lorenzen Wright: No Defense + Seven years after professional basketball player Lorenzen Wright was gunned down in the woods, police get a tip that reignites the investigation. + News Magazine + Legal + + + + 48 Hours + Cal Harris: The Final Verdict + A wealthy businessman gets a final verdict after facing multiple trials for the murder of his wife. + News Magazine + Legal + + + + ER + NICU + Abby and Neela are assigned to a monthlong rotation in the neonatal intensive-care unit, and they experience emotional highs and lows while caring for the struggling infants. + + Noah Wyle + Laura Innes + Alex Kingston + + Drama + + + TV14 + + + + ER + Get Carter + Dr. Carter's inquisitive girlfriend (Thandie Newton) makes an impact as she observes hospital operations; Gallant is almost shot during a domestic dispute; Weaver dedicates a center to the memory of Dr. Romano. + + Noah Wyle + Laura Innes + Alex Kingston + + Drama + + + TV14 + + + + ER + Impulse Control + Sam treats an abused, pregnant teenager; Carter shows Makemba (Thandie Newton) the wonders of wintertime; emergency-room mayhem shocks a risk-assessment expert (Richard Kline); Dr. Pratt and Abby restrain a man who has tuberculosis. + + Noah Wyle + Laura Innes + Alex Kingston + + Drama + + + TV14 + + + + ER + Blood Relations + Claustrophobic Neela accompanies a poisoned newborn into a hyperbaric chamber; Lewis and Abby treat a man covered in blood; a boy tests positive for leukemia; Chen returns from China with her sick father in tow. + + Noah Wyle + Laura Innes + Alex Kingston + + Drama + + + TV14 + + + + ER + Forgive and Forget + A psychotic patient threatens the hospital with a stolen Army tank; Dr. Kovac's French friend visits; an E.R. staffer has a heart attack; 13-year-olds have chlamydia. + + Noah Wyle + Laura Innes + Alex Kingston + + Drama + + + TV14 + + + + ER + The Student + Dr. Carter's protege takes his advice too far and treats a brain-injury patient; Dr. Gallant falsifies a medical report; Chuck defends Dr. Lewis from a pervert; Dr. Chen searches for a caretaker for her combative father. + + Noah Wyle + Laura Innes + Alex Kingston + + Drama + + + TV14 + + + + Law & Order + Boy Gone Astray + When a wealthy young woman is found dead in her apartment, a few signs lead detectives to believe the killer was not after her wealth; a security video exposes two potential suspects, leading the detectives to a drug cartel. + + Jeremy Sisto + Anthony Anderson + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + Doped + A suspicious nasal spray is found at the site of a deadly car crash; after the medical examiner realizes the spray could easily disorient its user, the detectives become suspicious of the victim's boss. + + Jeremy Sisto + Anthony Anderson + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + For the Defense + When a key witness in a murder trial is found dead in her hotel, detectives get involved in a spiraling case that unravels into an intricate conspiracy. + + Jeremy Sisto + Anthony Anderson + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + Shotgun + Detectives Lupo and Bernard think a violent armed robbery might be a scare tactic for a shakedown. + + Jeremy Sisto + Anthony Anderson + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + Fed + When a campaign volunteer is murdered, Detectives Lupo and Bernard end up dealing with more than just dirty politics. + + Jeremy Sisto + Anthony Anderson + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + Blackmail + When a journalist is found dead in an abandoned apartment, the investigation uncovers a relationship between the victim and a daytime talk-show host, who admits to a series of workplace affairs and a blackmail threat. + + Jeremy Sisto + Anthony Anderson + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + Steel-Eyed Death + When a family is found murdered at home, a runaway teenager becomes a suspect. + + Jeremy Sisto + Anthony Anderson + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + Boy on Fire + The investigation of a 16-year-old student whose body was burned causes Lupo and Bernard to question the young person he mentored, the last person to see him alive; the investigation draws attention to a vicious high-school rivalry. + + Jeremy Sisto + Anthony Anderson + S. Epatha Merkerson + + Drama + + + TV14 + + + + Miss Congeniality + An image consultant (Michael Caine) transforms a tomboyish FBI agent (Sandra Bullock) into a beauty queen so she can work under cover. + + Sandra Bullock + Michael Caine + Benjamin Bratt + + 2000 + Movies + Comedy + + + TVG + + + 2 + + + + Miss Congeniality + An image consultant (Michael Caine) transforms a tomboyish FBI agent (Sandra Bullock) into a beauty queen so she can work under cover. + + Sandra Bullock + Michael Caine + Benjamin Bratt + + 2000 + Movies + Comedy + + + TVG + + + 2 + + + + Miss Congeniality 2: Armed and Fabulous + FBI agent Gracie Hart (Sandra Bullock) clashes with her superiors when she jumps in to save two kidnapped friends in Las Vegas. + + Sandra Bullock + Regina King + Enrique Murciano + + 2005 + Movies + Comedy + + + TVG + + + 2 + + + + Miss Congeniality + An image consultant (Michael Caine) transforms a tomboyish FBI agent (Sandra Bullock) into a beauty queen so she can work under cover. + + Sandra Bullock + Michael Caine + Benjamin Bratt + + 2000 + Movies + Comedy + + + TVG + + + 2 + + + + Miss Congeniality 2: Armed and Fabulous + FBI agent Gracie Hart (Sandra Bullock) clashes with her superiors when she jumps in to save two kidnapped friends in Las Vegas. + + Sandra Bullock + Regina King + Enrique Murciano + + 2005 + Movies + Comedy + + + TVG + + + 2 + + + + ER + Where There's Smoke + Dr. Weaver tries to save Sandy after she is severely injured fighting a fire; Dr. Lewis is confined to bed rest; tensions between Dr. Gallant and Neela mount; Dr. Corday gets a pleasant surprise. + + Noah Wyle + Laura Innes + Alex Kingston + + Drama + + + TV14 + + + + ER + Just a Touch + A woman accuses Dr. Pratt of sexual harassment; Neela studies strokes in a laboratory with brainy but bizarre graduate students; Sam tries to resist the appeal of her son's father (Cole Hauser); Weaver vows to fight for her baby boy. + + Noah Wyle + Laura Innes + Alex Kingston + + Drama + + + TV14 + + + + ER + Abby Normal + A panicked Dr. Weaver is ordered to give up her son to the Lopez family; Dr. Carter greets Kem (Thandie Newton) upon her return to the hospital. + + Noah Wyle + Laura Innes + Alex Kingston + + Drama + + + TV14 + + + + ER + Midnight + Dr. Carter suspects trouble and rushes his pregnant girlfriend to the E.R.; Dr. Greene's daughter seeks a haven and morning after pills. + + Noah Wyle + Laura Innes + Alex Kingston + + Drama + + + TV14 + + + + ER + Drive + Dr. Kovac stops to help a stranded motorist and her son, but when a car hits them, he must use all his skills to keep them alive until specialists arrive. + + Noah Wyle + Laura Innes + Alex Kingston + + Drama + + + TV14 + + + + ER + One for the Road + Pratt, facing gunfire, loses control of his vehicle, trapping himself and his passengers under water; Dr. Weaver stops a police officer from performing a body search on a young woman; Dr. Carter and Kem deal with their child's remains. + + Noah Wyle + Laura Innes + Alex Kingston + + Drama + + + TV14 + + + + Criminal Minds + Chameleon + Rossi questions his actions in the aftermath of a struggle with a serial killer who appears to have outsmarted the BAU. + + Joe Mantegna + Paget Brewster + A.J. Cook + + Drama + Legal + + + TV14 + + + + Criminal Minds + Sick and Evil + The BAU investigates a string of murders taking place in supposedly haunted houses in Lewiston, Maine. + + Joe Mantegna + Paget Brewster + A.J. Cook + + Drama + Legal + + + TV14 + + + + Criminal Minds + Truth or Dare + Rossi prepares to marry Krystall; the team investigates a series of fatal shootings following car accidents. + + Joe Mantegna + Paget Brewster + Matthew Gray Gubler + + Drama + Legal + + + TV14 + + + + Criminal Minds + Under the Skin + The BAU team investigates an unsub with striking similarities to Rossi's latest obsession,. + + Joe Mantegna + Paget Brewster + Matthew Gray Gubler + + Drama + Legal + + + TV14 + + + + Criminal Minds + Awakenings + The team searches for Everett Lynch and his daughter; Spencer has a meaningful visit with his mother. + + Joe Mantegna + Paget Brewster + Matthew Gray Gubler + + Drama + Legal + + + TV14 + + + + Criminal Minds + Spectator Slowing + The BAU team investigates a series of seemingly random fatal explosions throughout Kentucky and Tennessee. + + Joe Mantegna + Paget Brewster + Matthew Gray Gubler + + Drama + Legal + + + TV14 + + + + Criminal Minds + Saturday + The members of the BAU enjoy a Saturday off in vastly different ways; Rossi and Prentiss help Simmons assemble a new crib; Garcia leads a hacking competition; Dr. Reid strikes up a conversation with a woman named Maxine. + + Joe Mantegna + Paget Brewster + Matthew Gray Gubler + + Drama + Legal + + + TV14 + + + + Criminal Minds + Ghost + Following a series of fatal shootings, the BAU team travels to Illinois to investigate what appears to be a copycat serial killer. + + Joe Mantegna + Paget Brewster + Matthew Gray Gubler + + Drama + Legal + + + TV14 + + + + NCIS: New Orleans + Bad Moon Rising + The team is concerned when Sebastian becomes unreachable while under cover as a new recruit. + + Scott Bakula + Vanessa Ferlito + Rob Kerkovich + + Drama + + + TV14 + + + + NCIS: New Orleans + Waiting for Monroe + The team must track down a mysterious female assassin responsible for murders in Athens, Rome and London; Wade's son begs her to allow him to go on a police ride-along for an article he's writing on a youth outreach program. + + Scott Bakula + Vanessa Ferlito + Rob Kerkovich + + Drama + + + TV14 + + + + NCIS: New Orleans + The Root of All Evil + The team investigates the murder of a JAG captain who was discovered at home by his daughter, the only heir to his large estate; Sebastian is intimidated when he is put in charge of a team on his first day of training. + + Scott Bakula + Vanessa Ferlito + Rob Kerkovich + + Drama + + + TV14 + + + + NCIS: New Orleans + The Man in the Red Suit + When Pride is unable to sleep due to continuing nightmares about the mysterious man in the red suit, he undergoes a specialized treatment to help him figure out the man's identity; an arrogant new officer joins the team. + + Scott Bakula + Vanessa Ferlito + Rob Kerkovich + + Drama + + + TV14 + + + + FBI + Green Birds + After eight people are fatally poisoned at a deli in New York City, agents Maggie Bell and OA Zidan trace the crime to an unlikely culprit and conduct a sting operation to prevent further attacks. + + Missy Peregrym + Zeeko Zaki + Ebonée Noel + + Drama + + + TV14 + + + + FBI + Prey + Special agents Maggie Bell and OA Zidan join the team to investigate the murders of 18 young women, and they get help from a survivor associated with the deceased. + + Missy Peregrym + Zeeko Zaki + Ebonée Noel + + Drama + + + TV14 + + + + FBI + Crossfire + As the body count continues to rise, Maggie Bell and OA Zidan rush to track down an active sniper who has an elusive motive. + + Missy Peregrym + Zeeko Zaki + Ebonée Noel + + Drama + + + TV14 + + + + FBI + Doomsday + Maggie and OA investigate the death of a safety inspector and its possible connection to a leak at a nuclear power plant. + + Missy Peregrym + Zeeko Zaki + Ebonée Noel + + Drama + + + TV14 + + + + FBI + Family Man + After a senator's daughter is kidnapped and held for ransom, the FBI must find the little girl before their time limit expires; they must dig into the senator's past for clues to who did this to his family. + + Missy Peregrym + Zeeko Zaki + Ebonée Noel + + Drama + + + TV14 + + + + FBI + Cops and Robbers + Maggie and OA hunt down a ruthless group of robbers who are posing as police officers to target armored trucks. + + Missy Peregrym + Zeeko Zaki + Ebonée Noel + + Drama + + + TVPG + + + + ER + Damaged + Dr. Carter, struggling with unfulfilled dreams and the loss of his girlfriend, slips into a dangerous depression. + + Noah Wyle + Laura Innes + Alex Kingston + + Drama + + + TV14 + + + + ER + Try Carter + The girlfriend of a brain-dead biker with HIV wants to donate his organs to a friend, who is also infected with HIV; Abby orders a drug test on Ray's patient; Corday confronts Weaver over her choice of a surgeon. + + Noah Wyle + Laura Innes + Alex Kingston + + Drama + + + TV14 + + + + ER + Fear + The staff treats two small children who fell from a third-story window; Pratt treats a man with an unsightly rash that turns out to be lung cancer; Corday receives discipline for performing an HIV-positive organ transplant. + + Noah Wyle + Laura Innes + Alex Kingston + + Drama + + + TV14 + + + + ER + An Intern's Guide to the Galaxy + On Neela's first day back, interns, competing at processing heavy patient loads, make a serious mistake. + + Noah Wyle + Laura Innes + Alex Kingston + + Drama + + + TV14 + + + + ER + Time of Death + Kovac, Abby and Sam struggle to save the life of Charlie Metcalf (Ray Liotta), whose initial complaint of a stomachache turns out to be much more than anyone had imagined. + + Noah Wyle + Laura Innes + Alex Kingston + + Drama + + + TV14 + + + + ER + White Guy, Dark Hair + A rape victim, barely able to speak, does all she can to help police. + + Noah Wyle + Laura Innes + Alex Kingston + + Drama + + + TV14 + + + + Criminal Minds + Date Night + After a father and daughter get kidnapped, a former foe of the BAU returns with very specific demands for Dr. Reid. + + Joe Mantegna + Paget Brewster + Matthew Gray Gubler + + Drama + Legal + + + TV14 + + + + Criminal Minds + Rusty + When the BAU team travels to Denver to investigate several murders, Prentiss is forced to evaluate her relationship with Special Agent Andrew Mendoza. + + Joe Mantegna + Paget Brewster + Matthew Gray Gubler + + Drama + Legal + + + TV14 + + + + Criminal Minds + Family Tree + Prentiss and J.J. are faced with important decisions to make about their futures as the BAU travels to Texas to investigate a series of murdered businessmen. + + Joe Mantegna + Paget Brewster + Matthew Gray Gubler + + Drama + Legal + + + TV14 + + + + Criminal Minds + Face Off + Rossi develops some new theories about Everett Lynch, aka The Chameleon; the team sets out on an epic hunt to capture Lynch. + + Joe Mantegna + Paget Brewster + Matthew Gray Gubler + + Drama + Legal + + + TV14 + + + + Pac-12 Tailgate + USC + Kickoff game days live from a different campus each week by celebrating the sights, sounds, and traditions that make football in the Pac-12 unlike any other. + Sports + Football + + + + Pac-12 Football in 60 + 2021: UCLA at Arizona + From Oct. 9, 2021. + Sports + Football + + + + Pac-12 Football in 60 + 2023: Washington State at UCLA + From Oct. 7, 2023. + Sports + Football + + + + Pac-12 Football in 60 + 2023: Colorado at UCLA + From Oct. 28, 2023. + Sports + Football + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + San Jose State vs. USC + San Jose State at USC + The No. 6 Trojans begin their final season as a member of the Pac-12 by hosting the Spartans. USC joins the Big Ten in 2024. Trojans junior Caleb Williams is favored to win his second straight Heisman Trophy after tossing 42 TD passes last season. + Sports + Football + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Arizona vs. UCLA + Arizona at UCLA + Women's college volleyball action. + Sports + Volleyball + + + + Arizona State vs. USC + Arizona State at USC + From Galen Center in Los Angeles. + Sports + Volleyball + + + + UCLA vs. Stanford + UCLA at Stanford + From Laird Q. Cagan Stadium in Stanford, Calif. + Sports + Soccer + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + USC vs. UCLA + USC at UCLA + From Wallis Annenberg Stadium in Westwood, Calif. + Sports + Soccer + + + + Arizona vs. UCLA + Arizona at UCLA + Women's college volleyball action. + Sports + Volleyball + + + + Arizona vs. UCLA + Arizona at UCLA + Women's college volleyball action. + Sports + Volleyball + + + + Arizona State vs. USC + Arizona State at USC + From Galen Center in Los Angeles. + Sports + Volleyball + + + + UCLA vs. Stanford + UCLA at Stanford + From Laird Q. Cagan Stadium in Stanford, Calif. + Sports + Soccer + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Arizona vs. UCLA + Arizona at UCLA + Women's college volleyball action. + Sports + Volleyball + + + + Arizona State vs. USC + Arizona State at USC + From Galen Center in Los Angeles. + Sports + Volleyball + + + + College Football + Teams TBA + All the action from NCAA college football. + Sports + Football + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + College Football + Teams TBA + All the action from NCAA college football. + Sports + Football + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Auburn vs. USC + Auburn at USC + The Trojans (8-3) take on the No. 19 Tigers (9-1) in the City of Angels. Auburn rebounded from its first loss of the season to beat Georgia State 72-64 on Dec. 14. Boogie Ellis is posting 14.1 points per game for USC, which has won four in a row. + Sports + Basketball + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Arizona vs. UCLA + Arizona at UCLA + The No. 4 Bruins try to strike back against the No. 8 Wildcats in this Pac-12 engagement. Arizona put a stop to UCLA's 8-0 start in conference play by winning 58-52 on Jan. 21. Lithuanian forward Azuolas Tubelis double-doubled for the Wildcats. + Sports + Basketball + + + + UCLA vs. Stanford + Pac-12 Tournament: UCLA vs. Stanford + The No. 1 Cardinal (28-4, 15-3) duel the No. 5 Bruins (24-8, 11-7) in a Pac-12 Tournament semifinal. Stanford swept both meetings with UCLA this season. Cameron Brink poured in 22 points during Stanford's 76-65 quarterfinal win over Oregon. + Sports + Basketball + + + + Purdue vs. UCLA + Purdue at UCLA + From Pauley Pavilion in Los Angeles. + Sports + Basketball + + + + 2023 Pac-12 Women's Basketball Tournament + The 2023 Pac-12 Women's Basketball Tournament, presented by New York Life, returned to Las Vegas on March 1-5 as all 12 teams from across the conference competed to punch their ticket to the 2023 NCAA Women's Basketball Tournament. + Sports + Basketball + + + + Pac-12 All-Century: Men's Basketball Team + A dream team of the all-time greatest basketball players in the Conference of Champions rich history is assembled, highlighted by a Player and Coach of the Century. + Sports + Basketball + + + + St. Francis (Pa.) vs. UCLA + St. Francis (Pa.) at UCLA + UCLA hosts St. Francis (Pa.). The Bruins start fresh without Tyger Campbell, Jaime Jaquez Jr. or 2023 Naismith Defensive Player of the Year Jaylen Clark, a trio that helped UCLA to a Final Four appearance in 2021 and a regular-season title in 2023. + Sports + Basketball + + + + St. Francis (Pa.) vs. UCLA + St. Francis (Pa.) at UCLA + UCLA hosts St. Francis (Pa.). The Bruins start fresh without Tyger Campbell, Jaime Jaquez Jr. or 2023 Naismith Defensive Player of the Year Jaylen Clark, a trio that helped UCLA to a Final Four appearance in 2021 and a regular-season title in 2023. + Sports + Basketball + + + + Purdue vs. UCLA + Purdue at UCLA + From Pauley Pavilion in Los Angeles. + Sports + Basketball + + + + UCLA vs. USC + UCLA at USC + Los Angeles rivals in the No. 8 Bruins (17-3, 8-1 Pac-12) and the Trojans (14-6, 6-3) renew hostilities for the 260th time. The Bruins lead the series 145-114. UCLA comes off a 58-52 setback at then-No. 11 Arizona that snapped a 14-game win streak. + Sports + Basketball + + + + Our Stories + Mitch Canham, Danielle Lawrie and Natalie Williams + Exploring the most compelling topics, student-athletes, coaches, and teams through informative, entertaining, and emotional stories. + Sports + Documentary + + + + St. Francis (Pa.) vs. UCLA + St. Francis (Pa.) at UCLA + UCLA hosts St. Francis (Pa.). The Bruins start fresh without Tyger Campbell, Jaime Jaquez Jr. or 2023 Naismith Defensive Player of the Year Jaylen Clark, a trio that helped UCLA to a Final Four appearance in 2021 and a regular-season title in 2023. + Sports + Basketball + + + + Pac-12 All-Century: Men's Basketball Team + A dream team of the all-time greatest basketball players in the Conference of Champions rich history is assembled, highlighted by a Player and Coach of the Century. + Sports + Basketball + + + + USC vs. UCLA + USC at UCLA + From Wallis Annenberg Stadium in Westwood, Calif. + Sports + Soccer + + + + College Football + Teams TBA + All the action from NCAA college football. + Sports + Football + + + + USC vs. UCLA + USC at UCLA + From Wallis Annenberg Stadium in Westwood, Calif. + Sports + Soccer + + + + St. Francis (Pa.) vs. UCLA + St. Francis (Pa.) at UCLA + UCLA hosts St. Francis (Pa.). The Bruins start fresh without Tyger Campbell, Jaime Jaquez Jr. or 2023 Naismith Defensive Player of the Year Jaylen Clark, a trio that helped UCLA to a Final Four appearance in 2021 and a regular-season title in 2023. + Sports + Basketball + + + + Purdue vs. UCLA + Purdue at UCLA + From Pauley Pavilion in Los Angeles. + Sports + Basketball + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + 2023 Pac-12 Women's Basketball Tournament + The 2023 Pac-12 Women's Basketball Tournament, presented by New York Life, returned to Las Vegas on March 1-5 as all 12 teams from across the conference competed to punch their ticket to the 2023 NCAA Women's Basketball Tournament. + Sports + Basketball + + + + St. Francis (Pa.) vs. UCLA + St. Francis (Pa.) at UCLA + UCLA hosts St. Francis (Pa.). The Bruins start fresh without Tyger Campbell, Jaime Jaquez Jr. or 2023 Naismith Defensive Player of the Year Jaylen Clark, a trio that helped UCLA to a Final Four appearance in 2021 and a regular-season title in 2023. + Sports + Basketball + + + + Pac-12 Football in 60 + 2023: UCLA at Arizona + From Nov. 4, 2023. + Sports + Football + + + + Pac-12 Football in 60 + 2023: Washington at USC + From Nov. 4, 2023. + Sports + Football + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 Football in 60 + 2023: UCLA at Arizona + From Nov. 4, 2023. + Sports + Football + + + + Pac-12 Football in 60 + 2023: Washington at USC + From Nov. 4, 2023. + Sports + Football + + + + Pac-12 Football in 60 + 2023: UCLA at Arizona + From Nov. 4, 2023. + Sports + Football + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 Football in 60 + 2023: Washington at USC + From Nov. 4, 2023. + Sports + Football + + + + Pac-12 Football in 60 + 2023: UCLA at Arizona + From Nov. 4, 2023. + Sports + Football + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 Football in 60 + 2023: Washington at USC + From Nov. 4, 2023. + Sports + Football + + + + Pac-12 Football in 60 + 2023: UCLA at Arizona + From Nov. 4, 2023. + Sports + Football + + + + Pac-12 Football in 60 + 2023: Washington at USC + From Nov. 4, 2023. + Sports + Football + + + + Pac-12 Football in 60 + 2023: USC at California + From Oct. 28, 2023. + Sports + Football + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + USC vs. UCLA + USC at UCLA + From Wallis Annenberg Stadium in Westwood, Calif. + Sports + Soccer + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 Football in 60 + 2023: Washington at USC + From Nov. 4, 2023. + Sports + Football + + + + Purdue vs. UCLA + Purdue at UCLA + From Pauley Pavilion in Los Angeles. + Sports + Basketball + + + + St. Francis (Pa.) vs. UCLA + St. Francis (Pa.) at UCLA + UCLA hosts St. Francis (Pa.). The Bruins start fresh without Tyger Campbell, Jaime Jaquez Jr. or 2023 Naismith Defensive Player of the Year Jaylen Clark, a trio that helped UCLA to a Final Four appearance in 2021 and a regular-season title in 2023. + Sports + Basketball + + + + Stanford vs. Washington State + Stanford at Washington State + The Cougars (4-4, 1-4 Pac-12) try for their seventh straight victory over the Cardinal (2-6, 1-5). Washington State's Cameron Ward is seventh in the nation with 2,532 passing yards after throwing for 315 in a 38-27 loss at Arizona State on Oct. 28. + Sports + Football + + + + Football Postgame + Postgame analysis and highlights. + Sports + Football + + + + Pac-12 Tailgate + USC + Kickoff game days live from a different campus each week by celebrating the sights, sounds, and traditions that make football in the Pac-12 unlike any other. + Sports + Football + + + + Pac-12 Tailgate + USC + Kickoff game days live from a different campus each week by celebrating the sights, sounds, and traditions that make football in the Pac-12 unlike any other. + Sports + Football + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Arizona State vs. Utah + Arizona State at Utah + The No. 18 Utes (6-2, 3-2) lick their wounds as the Sun Devils (2-6, 1-4) visit for a Pac-12 game. Utah's conference title hopes were dashed with a 35-6 loss to then-No. 8 Oregon on Oct. 28. Arizona State comes off a 38-27 win over Washington State. + Sports + Football + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Colorado vs. Oregon + Colorado at Oregon + Women's college volleyball action. + Sports + Volleyball + + + + Washington vs. Stanford + Washington at Stanford + Women's college volleyball action. + Sports + Volleyball + + + + UCLA vs. Stanford + UCLA at Stanford + From Laird Q. Cagan Stadium in Stanford, Calif. + Sports + Soccer + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 Football in 60 + 2023: Washington at USC + From Nov. 4, 2023. + Sports + Football + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 Football in 60 + 2023: Washington at USC + From Nov. 4, 2023. + Sports + Football + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 Football in 60 + 2023: Washington at USC + From Nov. 4, 2023. + Sports + Football + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 Football in 60 + 2023: Washington at USC + From Nov. 4, 2023. + Sports + Football + + + + Utah vs. Oregon State + Utah at Oregon State + Women's college volleyball action. + Sports + Volleyball + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Arizona State vs. USC + Arizona State at USC + From Galen Center in Los Angeles. + Sports + Volleyball + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + California vs. Oregon + California at Oregon + Heisman Trophy contender Bo Nix and the No. 6 Ducks (7-1, 4-1 Pac-12) host the Golden Bears (3-5, 1-4). Oregon leads the series 42-41-2 after winning 12 of the last 14 meetings. Nix has completed 78.30f his passes with 21 TDs and one interception. + Sports + Football + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Stanford vs. Washington State + Stanford at Washington State + The Cougars (4-4, 1-4 Pac-12) try for their seventh straight victory over the Cardinal (2-6, 1-5). Washington State's Cameron Ward is seventh in the nation with 2,532 passing yards after throwing for 315 in a 38-27 loss at Arizona State on Oct. 28. + Sports + Football + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Arizona vs. UCLA + Pac-12 Tournament: Arizona vs. UCLA + The No. 1 Bruins barrel into a revenge meeting with the No. 2 Wildcats in the Pac-12 final. Arizona beat UCLA in the 2022 Pac-12 tourney title game. The Bruins boast a 12-game win streak, including their regular-season finale against the Wildcats. + Sports + Basketball + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Linfield College vs. Oregon State + Linfield at Oregon State + From Gill Coliseum in Corvallis, Ore. + Sports + Basketball + + + + Towson vs. Colorado + Towson at Colorado + The Buffaloes try to mimic the success of the football team as they play their season opener against the Tigers. The buzz around Colorado grew with incoming freshman Cody Williams from Gilbert, Ariz., the first five-star recruit in Buffs history. + Sports + Basketball + + + + Morgan State vs. Arizona + Morgan State at Arizona + The No. 12 Wildcats play their season opener against the Bears. Arizona became the first school to lose twice to a No. 15 seed as a No. 2 seed in the NCAA Tournament when Princeton matched Santa Clara's 1993 feat in the 2023 edition's first round. + Sports + Basketball + + + + St. Francis (Pa.) vs. UCLA + St. Francis (Pa.) at UCLA + UCLA hosts St. Francis (Pa.). The Bruins start fresh without Tyger Campbell, Jaime Jaquez Jr. or 2023 Naismith Defensive Player of the Year Jaylen Clark, a trio that helped UCLA to a Final Four appearance in 2021 and a regular-season title in 2023. + Sports + Basketball + + + + St. Francis (Pa.) vs. UCLA + St. Francis (Pa.) at UCLA + UCLA hosts St. Francis (Pa.). The Bruins start fresh without Tyger Campbell, Jaime Jaquez Jr. or 2023 Naismith Defensive Player of the Year Jaylen Clark, a trio that helped UCLA to a Final Four appearance in 2021 and a regular-season title in 2023. + Sports + Basketball + + + + Purdue vs. UCLA + Purdue at UCLA + From Pauley Pavilion in Los Angeles. + Sports + Basketball + + + + University of St. Thomas vs. California + University of St. Thomas at California + From Haas Pavilion in Berkeley, Calif. + Sports + Basketball + + + + Pac-12 All-Century: Men's Basketball Team + A dream team of the all-time greatest basketball players in the Conference of Champions rich history is assembled, highlighted by a Player and Coach of the Century. + Sports + Basketball + + + + Eastern Washington vs. Utah + Eastern Washington at Utah + From Jon M. Huntsman Center in Salt Lake City. + Sports + Basketball + + + + Our Stories + Mitch Canham, Danielle Lawrie and Natalie Williams + Exploring the most compelling topics, student-athletes, coaches, and teams through informative, entertaining, and emotional stories. + Sports + Documentary + + + + California vs. Oregon + California at Oregon + Heisman Trophy contender Bo Nix and the No. 6 Ducks (7-1, 4-1 Pac-12) host the Golden Bears (3-5, 1-4). Oregon leads the series 42-41-2 after winning 12 of the last 14 meetings. Nix has completed 78.30f his passes with 21 TDs and one interception. + Sports + Football + + + + California vs. Stanford + California at Stanford + Women's college soccer action. + Sports + Soccer + + + + Stanford vs. Washington State + Stanford at Washington State + The Cougars (4-4, 1-4 Pac-12) try for their seventh straight victory over the Cardinal (2-6, 1-5). Washington State's Cameron Ward is seventh in the nation with 2,532 passing yards after throwing for 315 in a 38-27 loss at Arizona State on Oct. 28. + Sports + Football + + + + USC vs. UCLA + USC at UCLA + From Wallis Annenberg Stadium in Westwood, Calif. + Sports + Soccer + + + + Cal State Northridge vs. Stanford + Cal State Northridge at Stanford + From Maples Pavilion in Stanford, Calif. + Sports + Basketball + + + + Idaho vs. Washington State + Idaho at Washington State + From Beasley Coliseum in Pullman, Wash. + Sports + Basketball + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Our Stories + Black History Month + Exploring the most compelling topics, student-athletes, coaches, and teams through informative, entertaining, and emotional stories. + Sports + + + + Bellarmine University vs. Washington + Bellarmine at Washington + From Alaska Airlines Arena in Seattle. + Sports + Basketball + + + + Pac-12 Football in 60 + 2023: Oregon State at Colorado + From Nov. 4, 2023. + Sports + Football + + + + Pac-12 Football in 60 + 2023: Washington at USC + From Nov. 4, 2023. + Sports + Football + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 Football in 60 + 2023: California at Oregon + From Nov. 4, 2023. + Sports + Football + + + + Pac-12 Football in 60 + 2023: Stanford at Washington State + From Nov. 4, 2023. + Sports + Football + + + + Pac-12 Football in 60 + 2023: UCLA at Arizona + From Nov. 4, 2023. + Sports + Football + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 Football in 60 + 2023: Arizona State at Utah + From Nov. 4, 2023. + Sports + Football + + + + Pac-12 Football in 60 + 2023: Oregon State at Colorado + From Nov. 4, 2023. + Sports + Football + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 Football in 60 + 2023: Washington at USC + From Nov. 4, 2023. + Sports + Football + + + + Pac-12 Football in 60 + 2023: UCLA at Arizona + From Nov. 4, 2023. + Sports + Football + + + + Pac-12 Football in 60 + 2023: Arizona State at Utah + From Nov. 4, 2023. + Sports + Football + + + + Pac-12 Football in 60 + 2023: California at Oregon + From Nov. 4, 2023. + Sports + Football + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Washington State vs. Washington + Washington State at Washington + Women's college soccer action. + Sports + Soccer + + + + Pac-12 After Dark + Breaking down all the gridiron action after the final whistle blows with exclusive, in-depth analysis and reactions for every Pac-12 football game. + Sports + + + + Pac-12 Football in 60 + 2023: California at Oregon + From Nov. 4, 2023. + Sports + Football + + + + Towson vs. Colorado + Towson at Colorado + The Buffaloes try to mimic the success of the football team as they play their season opener against the Tigers. The buzz around Colorado grew with incoming freshman Cody Williams from Gilbert, Ariz., the first five-star recruit in Buffs history. + Sports + Basketball + + + + St. Francis (Pa.) vs. UCLA + St. Francis (Pa.) at UCLA + UCLA hosts St. Francis (Pa.). The Bruins start fresh without Tyger Campbell, Jaime Jaquez Jr. or 2023 Naismith Defensive Player of the Year Jaylen Clark, a trio that helped UCLA to a Final Four appearance in 2021 and a regular-season title in 2023. + Sports + Basketball + + + + Yellowstone + Winning or Learning + Jamie receives some surprising news; Beth receives an offer; Jimmy settles in on the road; tensions boil over in the bunkhouse. + + Kevin Costner + Wes Bentley + Kelly Reilly + + Drama + + + TVMA + + + + Yellowstone + Under a Blanket of Red + John and Kayce are forced to deal with some newcomers in town; Lloyd is in the doghouse with Rip, and finds purpose in teaching Carter; Jamie seeks information about his father. + + Kevin Costner + Wes Bentley + Kelly Reilly + + Drama + + + TVMA + + + + Yellowstone + I Want to Be Him + Beth confronts her father's houseguest; Kayce and his family search for a new home; Jamie seeks answers from Garrett; Lloyd loses his cool. + + Kevin Costner + Wes Bentley + Kelly Reilly + + Drama + + + TVMA + + + + Yellowstone + Keep the Wolves Close + John is put in an awkward position by Gov. Perry; Carter works to earn back Beth's trust; Jamie is in for a big surprise. + + Kevin Costner + Wes Bentley + Kelly Reilly + + Drama + + + TVMA + + + + Yellowstone + No Kindness for the Coward + Tensions escalate with the protestors, but Beth has a plan; Jimmy and Emily get closer; Monica and Kayce share a special moment. + + Kevin Costner + Wes Bentley + Kelly Reilly + + Drama + + + TVMA + + + + Bar Rescue + 3rd Pocket's a Charm + In Hickory, N.C., Jon finds a bar with an absent owner, an untrained staff, and an infestation of pests. + Reality TV + + + TV14 + + + + Bar Rescue + Every Rosé Has Its Thorn + After running a successful floral business for two decades, owner Randi thought she could parlay that success into a budding new bar, but she never rose to the occasion. + Reality TV + + + TV14 + + + + Bar Rescue + Tanked and Toasty + Jon travels back to San Antonio to find a bar and marriage both crippled at the hands of their party-hungry owner. + Reality TV + + + TVPG + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Car accident? Free Legal Consultation + Legal professionals standing by to answer your questions. + Paid Program + + + + Amazing Abs + Tone, tighten and burn fat - In seated comfort! Transform your entire body with the Ab Doer 360! + Paid Program + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Yellowstone + No Such Thing as Fair + John and Beth squabble; Jimmy has an important decision to make; Kayce begins a new quest; Jamie realizes Garrett's past might affect his own future. + + Kevin Costner + Wes Bentley + Kelly Reilly + + Drama + + + TVMA + + + + Yellowstone + Grass on the Streets and Weeds on the Rooftops + To the Duttons, family is everything; however, newfound truths threaten that bond; Jimmy comes home and has important decisions to make; Beth takes family matters into her own hands. + + Kevin Costner + Wes Bentley + Kelly Reilly + + Drama + + + TVMA + + + + Yellowstone + One Hundred Years Is Nothing + John Dutton is sworn in as Governor of Montana; as John settles into the powers of his new office, he makes bold moves to protect the Yellowstone from his opponents; the bunkhouse and the Duttons enjoy the Governor's ball. + + Kevin Costner + Wes Bentley + Kelly Reilly + + Drama + + + TVMA + + + + Yellowstone + The Sting of Wisdom + John makes a speech to the state of Montana as a new opponent from Market Equities arrives on a private jet; the cowboys deal with a new problem. + + Kevin Costner + Wes Bentley + Kelly Reilly + + Drama + + + TVMA + + + + Yellowstone + Tall Drink of Water + Beth heads to Salt Lake City to take care of unfinished business; a trap is set for Jamie; Kayce makes an important decision for his family. + + Kevin Costner + Wes Bentley + Kelly Reilly + + Drama + + + TVMA + + + + Yellowstone + Horses in Heaven + John makes swift changes at the Capitol; later, he receives some advice from Senator Perry; the venom between Jamie and Beth reaches a boiling point. + + Kevin Costner + Wes Bentley + Kelly Reilly + + Drama + + + TVMA + + + + Yellowstone + Watch 'Em Ride Away + John tells Clara to cancel his Capitol meetings to brand cattle with the Yellowstone cowboys; Beth's disdain for a perceived rival reaches a boiling point. + + Kevin Costner + Wes Bentley + Kelly Reilly + + Drama + + + TVMA + + + + Yellowstone + Cigarettes, Whiskey, a Meadow and You + The Duttons and the Yellowstone enjoy an almost perfect day branding cattle; Montana gets an unexpected visitor from outside; Sarah continues to sink her teeth into Jamie; Rainwater deals with a challenger from within. + + Kevin Costner + Wes Bentley + Kelly Reilly + + Drama + + + TVMA + + + + Yellowstone + The Dream Is Not Me + John deals with a problem with his herd; Sen. Perry delivers news to Rainwater; Jamie and Sarah plan their next move; the entire Yellowstone enjoys a rare evening of fun together; Beth discusses a new business plan concerning the ranch. + + Kevin Costner + Wes Bentley + Kelly Reilly + + Drama + + + TVMA + + + + Yellowstone + A Knife and No Coin + Jamie goes through with his plan; John has a request for Monica and lends support to an unexpected friend; the Yellowstone cowboys embark on a big change; a flashback reveals a source of Rip's loyalty. + + Kevin Costner + Wes Bentley + Kelly Reilly + + Drama + + + TVMA + + + + The Town + A Boston bank robber (Ben Affleck) looks for a way out of his criminal lifestyle after beginning a passionate romance with the woman (Rebecca Hall) that his gang briefly took hostage. + + Ben Affleck + Rebecca Hall + Jon Hamm + + 2010 + Movies + Thriller + + + TVPG + + + 3 + + + + The Town + A Boston bank robber (Ben Affleck) looks for a way out of his criminal lifestyle after beginning a passionate romance with the woman (Rebecca Hall) that his gang briefly took hostage. + + Ben Affleck + Rebecca Hall + Jon Hamm + + 2010 + Movies + Thriller + + + TVPG + + + 3 + + + + The Town + A Boston bank robber (Ben Affleck) looks for a way out of his criminal lifestyle after beginning a passionate romance with the woman (Rebecca Hall) that his gang briefly took hostage. + + Ben Affleck + Rebecca Hall + Jon Hamm + + 2010 + Movies + Thriller + + + TVPG + + + 3 + + + + Bar Rescue + How the Cookie Crumbles + Jon must save a former travel agent turned bar owner and her family business before it crashes and burns. + Reality TV + + + TV14 + + + + Bar Rescue + The Lost Episode + Taking on a hot-tempered New Jersey bar owner who can't stop kicking people out of his bar. + Reality TV + + + TVPG + + + + Get Fit with Total Gym, Risk Free + Get in the best shape of your life with the Total Gym 30 Day Risk-Free Trial Offer. + Paid Program + + + + Ninja Woodfire Outdoor Grill + Meet the Shark Ninja Wood Fire Grill, with Master Grill, BBQ Smoke, and Air Fry outdoor capabilities. Powered by electricity and flavored by real burning wood pellets, Woodfire Technology allows you to easily create rich flavor you can see and taste. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + Paid Program + + + TV14 + + + + Bar Rescue + Swanky Troubles + Swanky Bubbles is a failing champagne bar in Philadelphia. + Reality TV + + + TVPG + + + + Bar Rescue + Owner Ousted + Jon discovers that one owner isn't pulling his weight, and shows him the door. + Reality TV + + + TVPG + + + + Bar Rescue + Bro's Got to Geaux + Jon has to get the owners of a bar known for serving minors to give up their frat-boy ways. + Reality TV + + + TVPG + + + + Bar Rescue + Storming the Castle + A castle-shaped bar with an owner who has anger management issues and is pushing staff to their breaking points. + Reality TV + + + TVPG + + + + Bar Rescue + Casually Tapped Out + Taffer tries to resurrect a closed neighborhood bar by reigniting the passion of the burnt out firefighter who owns it. + Reality TV + + + TVPG + + + + Bar Rescue + Wheels of Misfortune + In a desert town, Taffer collides with the owner of a bar in a roller rink, a local landmark close to closing for good. + Reality TV + + + TVPG + + + + Bar Rescue + Life, Liberty, and the Pursuit of Fatballs + Jon Taffer tries to rescue a Jacksonville sports bar with a horrible reputation and an even worse name that leaves the bar without a single customer. + Reality TV + + + TVPG + + + + Bar Rescue + A Twice in a Lifetime Opportunity + In his second re-rescue, Jon Taffer returns to Champagne's Cafe to help the struggling bar survive the pandemic and maintain its Las Vegas legacy. + Reality TV + + + TV14 + + + + Two and a Half Men + Slowly and in a Circular Fashion + When Walden's mother (Mimi Rogers) and ex-wife (Judy Greer) try to take over his company, he turns to Alan for help. + + Ashton Kutcher + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + A Possum on Chemo + Zoey tries to convince Walden to cut his hair and shave; Alan and Lyndsey revive their relationship. + + Ashton Kutcher + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + The Duchess of Dull-in-Sack + Walden tries to loosen Zooey up by sharing some of Berta's special brownies. + + Ashton Kutcher + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Not in My Mouth! + A near-death experience has an adverse effect on Zoey and Walden's relationship; Alan thinks Lyndsey may have a drinking problem. + + Ashton Kutcher + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + We Called It Mr. Pinky + Charlie responds inappropriately to a woman's declaration of love, and Rose says his inability to have a long-lasting relationship is due to unresolved issues with his mother. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Sleep Tight, Puddin' Pop + Rose's father (Martin Sheen) confronts Charlie about his intentions toward Rose. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + That Voodoo That I Do Do + Charlie cons Jake into taking ballet lessons in order to get close to the teacher. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Madame and Her Special Friend + A wealthy, elderly woman (Cloris Leachman) sets her sights on Alan. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Something Salted and Twisted + Alan organizes a family dinner to celebrate a newspaper article that calls him a. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + That Special Tug + Alan's emotional breakdown after dropping Jake off for a weekend away sends Charlie to a therapist. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Dodgeball: A True Underdog Story + The owner (Vince Vaughn) of a gym and an overbearing entrepreneur (Ben Stiller) form dodgeball teams to compete for $50,000 in Las Vegas. + + Vince Vaughn + Christine Taylor + Ben Stiller + + 2004 + Movies + Comedy + + + TVG + + + 3 + + + + Old School + Three friends (Luke Wilson, Will Ferrell, Vince Vaughn) try to recapture the fun of their college years by starting their own off-campus fraternity. + + Luke Wilson + Will Ferrell + Vince Vaughn + + 2003 + Movies + Comedy + + + TVPG + + + 2 + + + + Dodgeball: A True Underdog Story + The owner (Vince Vaughn) of a gym and an overbearing entrepreneur (Ben Stiller) form dodgeball teams to compete for $50,000 in Las Vegas. + + Vince Vaughn + Christine Taylor + Ben Stiller + + 2004 + Movies + Comedy + + + TVG + + + 3 + + + + Dodgeball: A True Underdog Story + The owner (Vince Vaughn) of a gym and an overbearing entrepreneur (Ben Stiller) form dodgeball teams to compete for $50,000 in Las Vegas. + + Vince Vaughn + Christine Taylor + Ben Stiller + + 2004 + Movies + Comedy + + + TVG + + + 3 + + + + Old School + Three friends (Luke Wilson, Will Ferrell, Vince Vaughn) try to recapture the fun of their college years by starting their own off-campus fraternity. + + Luke Wilson + Will Ferrell + Vince Vaughn + + 2003 + Movies + Comedy + + + TVPG + + + 2 + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Car Repair Secrets! + Save thousands on car repairs. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Bar Rescue + Weber's of Lies + Jon helps a former strip club in Reseda, Calif., become profitable; a bartender is caught stealing. + Reality TV + + + TVPG + + + + Bar Rescue + Brawlin' Babes + A sports bar with no TV's isn't Jon's biggest problem at this Missouri establishment; he must get bartenders and their spineless owner to unite in order to beat the competition. + Reality TV + + + TVPG + + + + Bar Rescue + Twin vs. Twin + Before Jon even enters this Kansas City bar he is met with sirens; sibling rivalry between twins. + Reality TV + + + TVPG + + + + Bar Rescue + Demolition Man + The city threatens to shut down a bar after the owner unsafely renovates without a permit; Taffer attempts to school the clueless rookie owner and bring the construction disaster up to code before the city intervenes. + Reality TV + + + TVPG + + + + Bar Rescue + Pole Without a Purpose + A gentleman's club in Las Vegas, Nev., is in need of some gentlemen. + Reality TV + + + TVPG + + + + Bar Rescue + Pie Hard + Two longtime postal employees' failing pizza bar is on the brink of closing its doors for good unless Jon Taffer can find a way to rescue both the bar and their friendship. + Reality TV + + + TVPG + + + + Bar Rescue + Driving Miss Tara + After being left by her husband, Tara, a newly single mom, hires a general manager not only to help her save a failing bar, but to fill the void in her personal life. + Reality TV + + + TVPG + + + + Bar Rescue + A Bar to Take Pride In + A gay bar in Las Vegas is on the verge of closing after losing all of its entertainment options due to the Covid-19 pandemic. + Reality TV + + + TV14 + + + + Two and a Half Men + The War Against Gingivitis + Walden's ex-business partner shows up at the beach house looking to make peace. + + Ashton Kutcher + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Palmdale, Ech + Alan and Lyndsey introduce their mothers; Jake and Eldridge get a ride from Walden to a party. + + Ashton Kutcher + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Grandma's Pie + Walden tells Zoey that he will be going into business with his ex-wife (Judy Greer); Lyndsey and Alan grapple with their mothers' new relationship. + + Ashton Kutcher + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Mr. Hose Says Yes + Zoey and her daughter move in with Walden; Alan gets more than he bargained for with Lyndsey. + + Ashton Kutcher + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Humiliation Is a Visual Medium + Charlie must deal with the challenges of a committed relationship that is not based on sex. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Love Isn't Blind, It's Retarded + Charlie plans a romantic date with Mia in hopes of consummating their relationship; Alan starts dating Charlie's most recent ex-girlfriend. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + My Tongue Is Meat + When Charlie finds he can no longer handle the healthy lifestyle that Mia has imposed on him, he sneaks cigars, beer and burgers into the garage. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Ergo, the Booty Call + Alan tries to avoid bringing his sexy 22-year-old girlfriend to Jake's birthday party. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + The Unfortunate Little Schnauser + Charlie boycotts an advertising awards banquet, having lost several years in a row to his nemesis, Archie (Jon Lovitz). + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + The Spit-Covered Cobbler + Paying his young girlfriend's bills financially straps Alan. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + The Dark Knight + Batman (Christian Bale) has to keep a balance between heroism and vigilantism to fight a vile criminal known as the Joker (Heath Ledger), who would plunge Gotham City into anarchy. + + Christian Bale + Heath Ledger + Aaron Eckhart + + 2008 + Movies + Action + + + TVG + + + 4 + + + + The Dark Knight Rises + Eight years after he took the blame for Harvey Dent's death and vanished into the night, Batman (Christian Bale) is forced out of his self-imposed exile by a cunning cat burglar (Anne Hathaway) and a merciless terrorist called Bane (Tom Hardy). + + Christian Bale + Anne Hathaway + Tom Hardy + + 2012 + Movies + Action + + + TVG + + + 3 + + + + The Dark Knight Rises + Eight years after he took the blame for Harvey Dent's death and vanished into the night, Batman (Christian Bale) is forced out of his self-imposed exile by a cunning cat burglar (Anne Hathaway) and a merciless terrorist called Bane (Tom Hardy). + + Christian Bale + Anne Hathaway + Tom Hardy + + 2012 + Movies + Action + + + TVG + + + 3 + + + + Bar Rescue + A Bar to Take Pride In + A gay bar in Las Vegas is on the verge of closing after losing all of its entertainment options due to the Covid-19 pandemic. + Reality TV + + + TV14 + + + + Under Eye Bags? SOLUTION! + Plexaderm helps reduce Under Eye Bags, Dark Circles, and Wrinkles in just 10 minutes! + Paid Program + Lifestyle + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Coin Collecting with Mike Mezack + Learn about the wonderful world of numismatics with your host Mike Mezack and get the opportunity to build your own collection with some of the best deals around! + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Jane Seymour, Kate Walsh share their skin secrets + Crepe Erase Ultra visibly transforms your skin with 9 super hydrators! Tune in to see how Jane Seymour and Kate Walsh keep their skin so smooth. Treat and repair the look of crepey skin.Shop at CrepeErase.com. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Bar Rescue + Fallen Angels + Jon Taffer attempts to rescue a biker bar that is struggling with a scandalous reputation. + Reality TV + + + TVPG + + + + Bar Rescue + Hogtied Ham's + Jon tries to save automotive-themed Angry Ham's Garage. + Reality TV + + + TVPG + + + + Bar Rescue + A Horse Walks Into a Bar + A western bar is plagued with drunk owners, a bank foreclosure and horse excrement. + Reality TV + + + TVPG + + + + Bar Rescue + Muscle Madness + Two meatheads' tempers and testosterone threaten their friendship and their Houston bar. + Reality TV + + + TVPG + + + + Bar Rescue + Brokedown Palace + Actors Alexander Siddig and Iddo Goldberg help Taffer rescue a Moroccan bar that is having an identity crisis. + Reality TV + + + TVPG + + + + Bar Rescue + Bar Over Troubled Water + Taffer rescues a successful bar, and the beacon of a community, that was destroyed by flooding in Louisiana. + Reality TV + + + TVPG + + + + Bar Rescue + Desi, You Got Some 'Splainin' To Do + After suffering a stroke, a bar owner is on the verge of losing his family legacy. + Reality TV + + + TVPG + + + + Bar Rescue + Till Failure Do You Part + In Gibsonton, Fla., Jon must help rescue not only a failing bar but a broken marriage after the Covid pandemic destroyed both their business and their relationship. + Reality TV + + + TV14 + + + + Two and a Half Men + Why We Gave Up Women + When Alan has a heart attack, Charlie's ghost (Kathy Bates) visits him. + + Ashton Kutcher + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + The Straw in My Donut Hole + Zoey isn't convinced Alan deserves all the love and affection he receives upon his return from the hospital. + + Ashton Kutcher + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Oh Look! Al-Qaeda! + Jake graduates and must decide what to do with his life. + + Ashton Kutcher + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + I Changed My Mind About the Milk + Walden plans a surprise for Zoey's birthday. + + Ashton Kutcher + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Golly Moses, She's a Muffin + Kandi moves in with Alan, causing tension in the house, since Charlie is having a dry spell with women. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Always a Bridesmaid, Never a Burro + Charlie sleeps with Kandi's mother, as Alan tries to win her daughter back; Kandi arranges a date between her father and Judith. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Just Once With Aunt Sophie + Charlie and Alan help Jake prepare for his first boy-girl party. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Arguments for the Quickie + Charlie's former girlfriend (Emmanuelle Vaugier) returns with an unexpected request. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Dog on the Town + Dogs who lost mobility get rehabilitated; the history of the world's iconic pet cemeteries; a popular garden of stone in Southern California; ultimate doggie day care; forget Thai and Swedish massages, how about a doggie massage. + + + + About Dogs + Everything about the Shar-Pei, Yorkshire Terrier, Bull dog and Boxer breeds. + + + + Canine Countdown + The AKC'S top seven breeds for 2012. + + + + Annual Canine Countdown + The American Kennel Club's top breeds list for 2012; a recap of the top seven breeds as well as the top three dogs. + + + + About Dogs + Small-breed dogs. + + + + How to Make Your Pet a Star + + + + A Day in the Life of a Chimpanzee + + + + Animal Control Patrol + + + + Pets.TV - A Day in the Life of an Alpaca + + + + Animal Control Patrol + + + + Animal Control Patrol + + + + Just Ask the Pet Vet + Whether it's a story of suspense or some heartwarming furry fun, pet lovers will get their fix in all things animals and indulge in their wild side. + + + + Pet Careers + People who've turned their love for pets into careers, including a pet photographer, an animal advocate, a dog walker, and a cat veterinarian. + + + + Animal Control Patrol + Officer Muro and Officer Pena take us on an event-filled day from rescuing a mom and her four newborn puppies, to picking up a raccoon and opossum caught in a cat trap and releasing them back into the wild. + + + + Dog on the Town + Dogs who lost mobility get rehabilitated; the history of the world's iconic pet cemeteries; a popular garden of stone in Southern California; ultimate doggie day care; forget Thai and Swedish massages, how about a doggie massage. + + + + About Dogs + Everything about the Shar-Pei, Yorkshire Terrier, Bull dog and Boxer breeds. + + + + Dog on the Town + Dogs who lost mobility get rehabilitated; the history of the world's iconic pet cemeteries; a popular garden of stone in Southern California; ultimate doggie day care; forget Thai and Swedish massages, how about a doggie massage. + + + + About Dogs + Everything about the Shar-Pei, Yorkshire Terrier, Bull dog and Boxer breeds. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + THE AMAZING TELIKIN ONE TOUCH, THE WORLD'S EASIEST COMPUTER! + A single touch takes you to Email, Web, Video Chat, Contracts, Photos, Games, and more in this sleek, simple and sophisticated computer. Say hello to TELIKIN! TELIKIN is an ALL IN ONE computer that is easy to set up and navigate. SPECIAL OFFER! + + + + In Touch With Dr. Charles Stanley + In Touch Ministries is the broadcast teaching ministry of Dr. Charles Stanley. + + + + Top Dog Parks + Pet-friendly parks, from Runyon Park in the Hollywood Hills to Huntington Beach Off-Leash Dog Park. + + + + Animal Control Patrol + Host Christina Dietz visits the local shelter to show viewers just how easy it is to adopt the pet of their dreams. + + + + Canine Countdown + The top 10 dog breeds of 2016. + + + + Canine Countdown + The top 10 dog breeds for 2017. + + + + Pets Go to Panama + Pets TV goes to Panama. + + + + Cologne Zoo + A day at the Cologne Zoo. + + + + Pets Goes to the Maldives + + + + Pets Goes on an African Safari + + + + Pets.TV Goes to the Pretoria Zoo + + + + Pets.TV Goes to Zanzibar + + + + Amazing Aquariums + + + + Amazing Aquariums + + + + Top Dog Parks + Pet-friendly parks, from Runyon Park in the Hollywood Hills to Huntington Beach Off-Leash Dog Park. + + + + Animal Control Patrol + Host Christina Dietz visits the local shelter to show viewers just how easy it is to adopt the pet of their dreams. + + + + Canine Countdown + The top 10 dog breeds of 2016. + + + + Canine Countdown + The top 10 dog breeds for 2017. + + + + Pets Go to Panama + Pets TV goes to Panama. + + + + Cologne Zoo + A day at the Cologne Zoo. + + + + Pets Goes to the Maldives + + + + Pets Goes on an African Safari + + + + Pets.TV Goes to the Pretoria Zoo + + + + Pets.TV Goes to Zanzibar + + + + Amazing Aquariums + + + + Amazing Aquariums + + + + Top Dog Parks + Pet-friendly parks, from Runyon Park in the Hollywood Hills to Huntington Beach Off-Leash Dog Park. + + + + Animal Control Patrol + Host Christina Dietz visits the local shelter to show viewers just how easy it is to adopt the pet of their dreams. + + + + Canine Countdown + The top 10 dog breeds of 2016. + + + + Canine Countdown + The top 10 dog breeds for 2017. + + + + Pets Go to Panama + Pets TV goes to Panama. + + + + Cologne Zoo + A day at the Cologne Zoo. + + + + Pets Goes to the Maldives + + + + Pets Goes on an African Safari + + + + Pets.TV Goes to the Pretoria Zoo + + + + Pets.TV Goes to Zanzibar + + + + Amazing Aquariums + + + + Amazing Aquariums + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Cologne Zoo + A day at the Cologne Zoo. + + + + Pets Go to Panama + Pets TV goes to Panama. + + + + Canine Countdown + The top 10 dog breeds for 2017. + + + + Canine Countdown + The top 10 dog breeds of 2016. + + + + Animal Control Patrol + Host Christina Dietz visits the local shelter to show viewers just how easy it is to adopt the pet of their dreams. + + + + Top Dog Parks + Pet-friendly parks, from Runyon Park in the Hollywood Hills to Huntington Beach Off-Leash Dog Park. + + + + About Dogs + Everything about the Shar-Pei, Yorkshire Terrier, Bull dog and Boxer breeds. + + + + Dog on the Town + Dogs who lost mobility get rehabilitated; the history of the world's iconic pet cemeteries; a popular garden of stone in Southern California; ultimate doggie day care; forget Thai and Swedish massages, how about a doggie massage. + + + + Just Ask the Pet Vet + + + + Animal Control Patrol + + + + Animal Control Patrol + + + + Animal Control Patrol + + + + Cologne Zoo + A day at the Cologne Zoo. + + + + Pets Go to Panama + Pets TV goes to Panama. + + + + Canine Countdown + The top 10 dog breeds for 2017. + + + + Canine Countdown + The top 10 dog breeds of 2016. + + + + Animal Control Patrol + Host Christina Dietz visits the local shelter to show viewers just how easy it is to adopt the pet of their dreams. + + + + Top Dog Parks + Pet-friendly parks, from Runyon Park in the Hollywood Hills to Huntington Beach Off-Leash Dog Park. + + + + About Dogs + Everything about the Shar-Pei, Yorkshire Terrier, Bull dog and Boxer breeds. + + + + Dog on the Town + Dogs who lost mobility get rehabilitated; the history of the world's iconic pet cemeteries; a popular garden of stone in Southern California; ultimate doggie day care; forget Thai and Swedish massages, how about a doggie massage. + + + + Just Ask the Pet Vet + Whether it's a story of suspense or some heartwarming furry fun, pet lovers will get their fix in all things animals and indulge in their wild side. + + + + Animal Control Patrol + + + + Animal Control Patrol + + + + Animal Control Patrol + + + + Cologne Zoo + A day at the Cologne Zoo. + + + + Pets Go to Panama + Pets TV goes to Panama. + + + + Canine Countdown + The top 10 dog breeds for 2017. + + + + Canine Countdown + The top 10 dog breeds of 2016. + + + + Animal Control Patrol + Host Christina Dietz visits the local shelter to show viewers just how easy it is to adopt the pet of their dreams. + + + + Top Dog Parks + Pet-friendly parks, from Runyon Park in the Hollywood Hills to Huntington Beach Off-Leash Dog Park. + + + + About Dogs + Everything about the Shar-Pei, Yorkshire Terrier, Bull dog and Boxer breeds. + + + + Dog on the Town + Dogs who lost mobility get rehabilitated; the history of the world's iconic pet cemeteries; a popular garden of stone in Southern California; ultimate doggie day care; forget Thai and Swedish massages, how about a doggie massage. + + + + Just Ask the Pet Vet + Whether it's a story of suspense or some heartwarming furry fun, pet lovers will get their fix in all things animals and indulge in their wild side. + + + + Animal Control Patrol + + + + Animal Control Patrol + + + + Animal Control Patrol + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Animal Control Patrol + + + + About Dogs + + + + How to Make Your Pet a Star + + + + About Dogs + Small-breed dogs. + + + + Annual Canine Countdown + The American Kennel Club's top breeds list for 2012; a recap of the top seven breeds as well as the top three dogs. + + + + Canine Countdown + The AKC'S top seven breeds for 2012. + + + + Animal Control Patrol + Officer Muro and Officer Pena take us on an event-filled day from rescuing a mom and her four newborn puppies, to picking up a raccoon and opossum caught in a cat trap and releasing them back into the wild. + + + + Pets.TV - A Day in the Life of an Alpaca + + + + Pets.TV + Pet news, care, health and lifestyles. + + + + Pets.TV Goes to the Pretoria Zoo + + + + Sri Lanka's Beloved Asian Elephants + Zahirah Marty treks through Sri Lanka and the Hurulu Eco Reserve, a fence-free forest featuring the largest gathering of Asian elephants. + + + + Canine Countdown + The top 10 dog breeds for 2017. + + + + Animal Control Patrol + + + + About Dogs + + + + How to Make Your Pet a Star + + + + About Dogs + Small-breed dogs. + + + + Annual Canine Countdown + The American Kennel Club's top breeds list for 2012; a recap of the top seven breeds as well as the top three dogs. + + + + Canine Countdown + The AKC'S top seven breeds for 2012. + + + + Animal Control Patrol + Officer Muro and Officer Pena take us on an event-filled day from rescuing a mom and her four newborn puppies, to picking up a raccoon and opossum caught in a cat trap and releasing them back into the wild. + + + + Pets.TV - A Day in the Life of an Alpaca + + + + Pets.TV + Pet news, care, health and lifestyles. + + + + Pets.TV Goes to the Pretoria Zoo + + + + Sri Lanka's Beloved Asian Elephants + Zahirah Marty treks through Sri Lanka and the Hurulu Eco Reserve, a fence-free forest featuring the largest gathering of Asian elephants. + + + + Canine Countdown + The top 10 dog breeds for 2017. + + + + Animal Control Patrol + + + + About Dogs + + + + How to Make Your Pet a Star + + + + About Dogs + Small-breed dogs. + + + + Annual Canine Countdown + The American Kennel Club's top breeds list for 2012; a recap of the top seven breeds as well as the top three dogs. + + + + Canine Countdown + The AKC'S top seven breeds for 2012. + + + + Animal Control Patrol + Officer Muro and Officer Pena take us on an event-filled day from rescuing a mom and her four newborn puppies, to picking up a raccoon and opossum caught in a cat trap and releasing them back into the wild. + + + + Pets.TV - A Day in the Life of an Alpaca + + + + Pets.TV + Pet news, care, health and lifestyles. + + + + Pets.TV Goes to the Pretoria Zoo + + + + Sri Lanka's Beloved Asian Elephants + Zahirah Marty treks through Sri Lanka and the Hurulu Eco Reserve, a fence-free forest featuring the largest gathering of Asian elephants. + + + + Canine Countdown + The top 10 dog breeds for 2017. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + CHRISTINA HALL and Jacuzzi® amazing bathroom makeovers + SPECIAL OFFER + Trusted brand Jacuzzi® and renowned interior designer, Christina Hall can help you transform your old bathroom into a gorgeous custom, safe and stylish space. Jacuzzi® has limited time special offers to make your dream bathroom happen today CALL NOW. + + + + Just Ask the Pet Vet + Whether it's a story of suspense or some heartwarming furry fun, pet lovers will get their fix in all things animals and indulge in their wild side. + + + + Pets Goes to the Maldives + + + + Pets.TV Goes to the Pretoria Zoo + + + + Pets.TV Goes to Zanzibar + + + + Amazing Aquariums + + + + Animal Control Patrol + Officer Muro and Officer Pena take us on an event-filled day from rescuing a mom and her four newborn puppies, to picking up a raccoon and opossum caught in a cat trap and releasing them back into the wild. + + + + Animal Control Patrol + Host Christina Dietz visits the local shelter to show viewers just how easy it is to adopt the pet of their dreams. + + + + Rotterdam Zoo + A Day at the Rotterdam Zoo. + + + + Pets Goes on an African Safari + + + + Sri Lanka's Beloved Asian Elephants + Zahirah Marty treks through Sri Lanka and the Hurulu Eco Reserve, a fence-free forest featuring the largest gathering of Asian elephants. + + + + Pet Careers + People who've turned their love for pets into careers, including a pet photographer, an animal advocate, a dog walker, and a cat veterinarian. + + + + Canine Countdown + The AKC'S top seven breeds for 2012. + + + + Just Ask the Pet Vet + Whether it's a story of suspense or some heartwarming furry fun, pet lovers will get their fix in all things animals and indulge in their wild side. + + + + Pets Goes to the Maldives + + + + Pets.TV Goes to the Pretoria Zoo + + + + Pets.TV Goes to Zanzibar + + + + Amazing Aquariums + + + + Animal Control Patrol + Officer Muro and Officer Pena take us on an event-filled day from rescuing a mom and her four newborn puppies, to picking up a raccoon and opossum caught in a cat trap and releasing them back into the wild. + + + + Animal Control Patrol + Host Christina Dietz visits the local shelter to show viewers just how easy it is to adopt the pet of their dreams. + + + + Rotterdam Zoo + A Day at the Rotterdam Zoo. + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 0900 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Talk With World Leaders + Major world leaders give Phoenix viewers their thoughts and views on global developments. + Political + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 1100 + News + + + + My Hong Kong Story + News + + + + China Tourism Group Phoenix Midday Express + Variety + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 1300 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Dreamscapes, Architectural Wonders + Arts & Entertainment + + + + News On The Hour 1400 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Talk With World Leaders + Major world leaders give Phoenix viewers their thoughts and views on global developments. + Political + + + + News On The Hour 1500 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 1600 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Mainland Q&A + Mainland issues, current affairs, and the people who shape them. + News + + + + News On The Hour 1700 + News + + + + China Financial Intelligence + Business + + + + Phoenix Focus 1800 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News Talk + The big issues of the week through the lens of British Muslims. + Religious + News + + + + China News Live + The hosts deliver the latest updates on a range of topics concerning Mainland China and discuss them with experts from different backgrounds, live. + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News Times + Local + + + + Phoenix Focus 2000 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Hong Kong Perspectives + Political + + + + Wu Liang Ye Phoenix Evening Express + Regular + + + + News On The Hour 2200 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News Talk + The big issues of the week through the lens of British Muslims. + Religious + News + + + + News On The Hour 2300 + News + + + + My Hong Kong Story + News + + + + Mainland Q&A + Mainland issues, current affairs, and the people who shape them. + News + + + + Phoenix Midnight Express + The hosts present the latest social, political and economic news updates and developments from China and around the world. + Variety + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News Talk + Detailed informative news. + News + Talk Shows + + + + News On The Hour 0100 + Local + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News Times + Local + + + + China Financial Intelligence + Business + + + + News On The Hour 0100 + Local + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 0100 + Local + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 0100 + Local + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 0100 + Local + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 0100 + Local + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News Talk + Detailed informative news. + News + Talk Shows + + + + News On The Hour 0100 + Local + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Hong Kong Perspectives + Political + + + + Phoenix Morning Express + The world news with a focus on events in China, HK, Taiwan and the rest of Asia. + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 0900 + News + + + + News Times + Local + + + + News On The Hour 1000 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 1100 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Mainland Q&A + Mainland issues, current affairs, and the people who shape them. + News + + + + China Tourism Group Phoenix Midday Express + Variety + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 1300 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Fact Check on News + News + + + + News On The Hour 1400 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 1500 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 1600 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 1700 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Financial Journal + Viewers get up-to-date analysis of shifting market movements. + Political + Business + + + + Phoenix Focus 1800 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News Talk + The big issues of the week through the lens of British Muslims. + Religious + News + + + + China News Live + The hosts deliver the latest updates on a range of topics concerning Mainland China and discuss them with experts from different backgrounds, live. + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Phoenix Focus 2000 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Phoenix Financial Daily Report + The presenter delivers relevant news and updates from the world of finance and invites experts from related fields to offer financial advice and insight. + Business + + + + Phoenix Evening Express + A live broadcast transmitted via satellite from HK, covering the social, economic, cultural and sports news in China, HK and Taiwan. + News + + + TVG + + + + Chief Editor's Time + A summary of the day's key events, offering a profound look into current affairs' implications. + Discussion + + + + News Talk + Detailed informative news. + News + Talk Shows + + + + Phoenix Focus 2300 + The anchors deliver the biggest headlines, news and developments from various places around the world. + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Chief Editor's Time + A summary of the day's key events, offering a profound look into current affairs' implications. + Discussion + + + + Phoenix Midnight Express + The hosts present the latest social, political and economic news updates and developments from China and around the world. + Variety + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 0100 + Local + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Financial Journal + Viewers get up-to-date analysis of shifting market movements. + Political + Business + + + + News On The Hour 0100 + Local + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Phoenix Financial Daily Report + The presenter delivers relevant news and updates from the world of finance and invites experts from related fields to offer financial advice and insight. + Business + + + + News On The Hour 0100 + Local + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Chief Editor's Time + A summary of the day's key events, offering a profound look into current affairs' implications. + Discussion + + + + News On The Hour 0100 + Local + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 0100 + Local + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 0100 + Local + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News Talk + Detailed informative news. + News + Talk Shows + + + + News On The Hour 0100 + Local + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Zoom In + Regular + + + + Phoenix Morning Express + The world news with a focus on events in China, HK, Taiwan and the rest of Asia. + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 0900 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Financial Journal + Viewers get up-to-date analysis of shifting market movements. + Political + Business + + + + News On The Hour 1000 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 1100 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Chief Editor's Time + A summary of the day's key events, offering a profound look into current affairs' implications. + Discussion + + + + China Tourism Group Phoenix Midday Express + Variety + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 1300 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Financial Journal + Viewers get up-to-date analysis of shifting market movements. + Political + Business + + + + News On The Hour 1400 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Chief Editor's Time + A summary of the day's key events, offering a profound look into current affairs' implications. + Discussion + + + + News On The Hour 1500 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 1600 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 1700 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Financial Journal + Viewers get up-to-date analysis of shifting market movements. + Political + Business + + + + Phoenix Focus 1800 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News Talk + The big issues of the week through the lens of British Muslims. + Religious + News + + + + China News Live + The hosts deliver the latest updates on a range of topics concerning Mainland China and discuss them with experts from different backgrounds, live. + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Phoenix Focus 2000 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Phoenix Financial Daily Report + The presenter delivers relevant news and updates from the world of finance and invites experts from related fields to offer financial advice and insight. + Business + + + + Phoenix Evening Express + A live broadcast transmitted via satellite from HK, covering the social, economic, cultural and sports news in China, HK and Taiwan. + News + + + TVG + + + + Chief Editor's Time + A summary of the day's key events, offering a profound look into current affairs' implications. + Discussion + + + + News Talk + Detailed informative news. + News + Talk Shows + + + + Phoenix Focus 2300 + The anchors deliver the biggest headlines, news and developments from various places around the world. + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Chief Editor's Time + A summary of the day's key events, offering a profound look into current affairs' implications. + Discussion + + + + Phoenix Midnight Express + The hosts present the latest social, political and economic news updates and developments from China and around the world. + Variety + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 0100 + Local + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Financial Journal + Viewers get up-to-date analysis of shifting market movements. + Political + Business + + + + News On The Hour 0100 + Local + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Phoenix Financial Daily Report + The presenter delivers relevant news and updates from the world of finance and invites experts from related fields to offer financial advice and insight. + Business + + + + News On The Hour 0100 + Local + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Chief Editor's Time + A summary of the day's key events, offering a profound look into current affairs' implications. + Discussion + + + + News On The Hour 0100 + Local + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 0100 + Local + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 0100 + Local + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News Talk + Detailed informative news. + News + Talk Shows + + + + News On The Hour 0100 + Local + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Zoom In + Regular + + + + Phoenix Morning Express + The world news with a focus on events in China, HK, Taiwan and the rest of Asia. + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 0900 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Financial Journal + Viewers get up-to-date analysis of shifting market movements. + Political + Business + + + + News On The Hour 1000 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 1100 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Chief Editor's Time + A summary of the day's key events, offering a profound look into current affairs' implications. + Discussion + + + + China Tourism Group Phoenix Midday Express + Variety + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 1300 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Financial Journal + Viewers get up-to-date analysis of shifting market movements. + Political + Business + + + + News On The Hour 1400 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Chief Editor's Time + A summary of the day's key events, offering a profound look into current affairs' implications. + Discussion + + + + News On The Hour 1500 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 1600 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 1700 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Financial Journal + Viewers get up-to-date analysis of shifting market movements. + Political + Business + + + + Phoenix Focus 1800 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News Talk + The big issues of the week through the lens of British Muslims. + Religious + News + + + + China News Live + The hosts deliver the latest updates on a range of topics concerning Mainland China and discuss them with experts from different backgrounds, live. + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Phoenix Focus 2000 + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Phoenix Financial Daily Report + The presenter delivers relevant news and updates from the world of finance and invites experts from related fields to offer financial advice and insight. + Business + + + + Phoenix Evening Express + A live broadcast transmitted via satellite from HK, covering the social, economic, cultural and sports news in China, HK and Taiwan. + News + + + TVG + + + + Chief Editor's Time + A summary of the day's key events, offering a profound look into current affairs' implications. + Discussion + + + + News Talk + Detailed informative news. + News + Talk Shows + + + + Phoenix Focus 2300 + The anchors deliver the biggest headlines, news and developments from various places around the world. + News + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Chief Editor's Time + A summary of the day's key events, offering a profound look into current affairs' implications. + Discussion + + + + Phoenix Midnight Express + The hosts present the latest social, political and economic news updates and developments from China and around the world. + Variety + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 0100 + Local + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Financial Journal + Viewers get up-to-date analysis of shifting market movements. + Political + Business + + + + News On The Hour 0100 + Local + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Phoenix Financial Daily Report + The presenter delivers relevant news and updates from the world of finance and invites experts from related fields to offer financial advice and insight. + Business + + + + News On The Hour 0100 + Local + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Chief Editor's Time + A summary of the day's key events, offering a profound look into current affairs' implications. + Discussion + + + + News On The Hour 0100 + Local + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 0100 + Local + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News On The Hour 0100 + Local + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + News Talk + Detailed informative news. + News + Talk Shows + + + + News On The Hour 0100 + Local + + + + Phoenix Weather Forecast + Phoenix weather forecast. + News + Environmental + + + + Zoom In + Regular + + + + Resting Place + Story about a major (John Lithgow) who battles racism while trying to bury a black Vietnam hero in an all-white cemetery. Luther: Morgan Freeman. Ada: C.C.H. Pounder. Eudora: Frances Sternhagen. Sam: G.D. Spradlin. Sarge: M. Emmet Walsh. Hauer: Richard Bradford. Directed on location by John Korty. + + John Lithgow + Morgan Freeman + Frances Sternhagen + G.D. Spradlin + M. Emmet Walsh + Richard Bradford + Paul Chihara + John Korty + Robert Huddleston + Walter Halsey Davis + + 1986 + Drama + + TV-PG + + + + You've Got a Friend + Dylan McLaughlin plays Bobby, a boy who recently lost his parents and finds solace in box-car racing with help from the town loner (John Schneider), a former derby racer himself. But victory doesn't come easy for Bobby as he is forced to confront a bully and disapproval from his uncle (Jason Brooks). Miss Nelson: Bitty Schram. + + John Schneider + Dylan McLaughlin + Bitty Schram + Jason Brooks + Kate Connor + Mark Rolston + James W. Wrenn + James Contner + James A. Contner + Robert Halmi, Jr. + Oliver Robins + + 2007 + Drama + + TV-PG + + + + Late Bloomer + Botanist Jenny fled her small town and cruel high school couple Shane and Allison to track rare flowers around the globe. Now back, she's shocked to find Shane has become a teacher and even more surprised when he's determined to make it up to her. + + Kaili Thorne + Brooke Newton + Garrett Backstrom + Linden Ashby + Stephen Graziano + W.D. Hogan + Lincoln Lageson + Rick Garman + + 2016 + Drama + Family + + TV-PG + + + + A Stranger's Heart + Samantha Mathis plays Callie, the recipient of a long-awaited heart transplant whose cynical attitude dissipates as she longs for a connection with her donor's orphaned daughter. Peter Dobson plays Callie's love interest and fellow transplant recipient, but it's Thomas Kopache who steals the show as her perennially grieving widowed father. Andy Wolk directed. + + Samantha Mathis + Peter Dobson + Thomas Kopache + Gina Hecht + Kevin Kilner + Raynor Scheine + Lawrence Shragge + Andy Wolk + Robert Halmi, Jr. + Kelli Pryor + + 2007 + Drama + + TV-PG + + + + Family Plan + Charlie MacKenzie is a dedicated career woman who must lie about having a family in order to land her dream job. Charlie gets the job, but when her new boss moves in next door, Charlie must hire an actor to play her husband and borrow her best friend's teenage daughter to act as her own child. + + Tori Spelling + Jordan Bridges + Greg Germann + Kate Vernon + Kali Rocha + Ryan Tasz + David Kitay + David S. Cass Sr. + Robert Halmi, Jr. + Richard Gitelson + + 2005 + Drama + Family + Comedy + + + TV-PG + + + + Family Plan + Charlie MacKenzie is a dedicated career woman who must lie about having a family in order to land her dream job. Charlie gets the job, but when her new boss moves in next door, Charlie must hire an actor to play her husband and borrow her best friend's teenage daughter to act as her own child. + + Tori Spelling + Jordan Bridges + Greg Germann + Kate Vernon + Kali Rocha + Ryan Tasz + David Kitay + David S. Cass Sr. + Robert Halmi, Jr. + Richard Gitelson + + 2005 + Drama + Family + Comedy + + + TV-PG + + + + Time Capsule + After 10 years, a group of high school friends reunite at their alma mater's field house to dig up their time capsule. When they open the time capsule they decide to relive their fun high school moments which inspire a newfound relationship. + 2020 + Drama + + TV-PG + + + + The Joneses Unplugged + Newlyweds who are struggling with their relationship reconnect during a blackout, when their electronic devices are not working. + + Mischa Barton + Sean Faris + Alyssa Diaz + David Ogden Stiers + Markie Post + BJ Mitchell + Bradford May + James Wilberger + Larry LaFond + + 2017 + Drama + Family + + TV-PG + + + + Straight From the Heart + A singles ad leads to an unlikely courtship between a Big Apple photographer (Teri Polo) and a widowed Wyoming rancher (Andrew McCarthy). Patricia Kalember, Greg Evigan. Carla: Christine Tucci. Howard: J. Kenneth Campbell. Jesse: David Jean-Thomas. + + Teri Polo + Andrew McCarthy + Patricia Kalember + Greg Evigan + Christine Tucci + David Jean-Thomas + Mader + Dave S. Cass Sr. + David S. Cass, Sr. + Robert Halmi, Jr. + + 2003 + Drama + + TV-PG + + + + Resting Place + Story about a major (John Lithgow) who battles racism while trying to bury a black Vietnam hero in an all-white cemetery. Luther: Morgan Freeman. Ada: C.C.H. Pounder. Eudora: Frances Sternhagen. Sam: G.D. Spradlin. Sarge: M. Emmet Walsh. Hauer: Richard Bradford. Directed on location by John Korty. + + John Lithgow + Morgan Freeman + Frances Sternhagen + G.D. Spradlin + M. Emmet Walsh + Richard Bradford + Paul Chihara + John Korty + Robert Huddleston + Walter Halsey Davis + + 1986 + Drama + + TV-PG + + + + You've Got a Friend + Dylan McLaughlin plays Bobby, a boy who recently lost his parents and finds solace in box-car racing with help from the town loner (John Schneider), a former derby racer himself. But victory doesn't come easy for Bobby as he is forced to confront a bully and disapproval from his uncle (Jason Brooks). Miss Nelson: Bitty Schram. + + John Schneider + Dylan McLaughlin + Bitty Schram + Jason Brooks + Kate Connor + Mark Rolston + James W. Wrenn + James Contner + James A. Contner + Robert Halmi, Jr. + Oliver Robins + + 2007 + Drama + + TV-PG + + + + A View from Here + A journalist (Laura Leighton) returns to her rural hometown to visit her ailing mother (Angie Dickinson) and discovers that many of the area's farmers are selling their land to a casino developer because of an extreme drought. Directed by Stephen W. Bridgewater. + 2009 + + TV-PG + + + + Touched + A young nurse who takes a job as a live-in caretaker for a cantankerous, dying novelist discovers the secret of why the elderly woman is estranged from her son, and sets out to do something about it. + + Sam Page + Rachael Carpani + Doris Roberts + Ernie Hudson + Bradford May + + 2014 + Drama + + TV-PG + + + + Vickery's Wild Ride + A successful ad man (Jonathan Silverman) tries to reconnect with his family by taking them on a monthlong vacation to a rustic cabin that he recently inherited. Though resistant at first, the family start to enjoy themselves after meeting a cowboy (Peter Strauss) who teaches them about life's simpler pleasures. + 2010 + + TV-PG + + + + The Reading Room + Tale of a widower (James Earl Jones) who's determined to make a reading room available in the tough inner-city neighborhood where he and his wife grew up. Joanna Cassidy, Tim Reid, Georg Stanford Brown (who also directed). + + James Earl Jones + Joanna Cassidy + Idris Muhammed + Tim Reid + Kathryne Dora Brown + Keith Robinson + Elia Cmiral + Georg Stanford Brown + Robert Halmi Jr. + Randy Feldman + + 2005 + Drama + + + TV-PG + + + + Love Will Keep Us Together + After years of hiring housekeepers to run his home, a single advertising executive loses his job and becomes a stay-at-home dad. His new role gives him a different perspective on his family, but a tempting job offer threatens to lead him back to his old workaholic ways. + 2010 + + TV-PG + + + + Woman of the House + A woman who feels nostalgic about her college sorority days takes a job as a house mother to her former chapter. Along with bringing out the best in the girls, she helps to turn the chapter around with the help of the charming Dean of Student Affairs. + + Monika Mitchell + + 2017 + Drama + + TV-PG + + + + Uncorked + A workaholic (Julie Benz) finds herself in unfamiliar territory after her schedule unexpectedly clears during a business trip to California's wine country. She starts spending time with a local chef (Scott Elrod) and his eccentric family, who try to teach her that there's more to life than work. JoBeth Williams and Elliott Gould also star. Directed by David Cass Sr. + + Julie Benz + Scott Elrod + JoBeth Williams + Elliott Gould + Gattlin Griffith + David Andriole + David S. Cass, Sr. + David Cass Sr. + Larry Levinson + Jim Head + + 2010 + Drama + + + TV-PG + + + + A Man for Every Month + An introvert journalist researches a magazine article by going out with different men every month. + + Justene Alpert + Najee De-Tiege + Bradley Dodds + Cole Gerdes + Steven Good + Ashli Haynes + Robert Irving + Ron Oliver + Brian Gordon + Abbey Cleland + + 2017 + Comedy + + TV-PG + + + + A View from Here + A journalist (Laura Leighton) returns to her rural hometown to visit her ailing mother (Angie Dickinson) and discovers that many of the area's farmers are selling their land to a casino developer because of an extreme drought. Directed by Stephen W. Bridgewater. + 2009 + + TV-PG + + + + Touched + A young nurse who takes a job as a live-in caretaker for a cantankerous, dying novelist discovers the secret of why the elderly woman is estranged from her son, and sets out to do something about it. + + Sam Page + Rachael Carpani + Doris Roberts + Ernie Hudson + Bradford May + + 2014 + Drama + + TV-PG + + + + Vickery's Wild Ride + A successful ad man (Jonathan Silverman) tries to reconnect with his family by taking them on a monthlong vacation to a rustic cabin that he recently inherited. Though resistant at first, the family start to enjoy themselves after meeting a cowboy (Peter Strauss) who teaches them about life's simpler pleasures. + 2010 + + TV-PG + + + + The Reading Room + Tale of a widower (James Earl Jones) who's determined to make a reading room available in the tough inner-city neighborhood where he and his wife grew up. Joanna Cassidy, Tim Reid, Georg Stanford Brown (who also directed). + + James Earl Jones + Joanna Cassidy + Idris Muhammed + Tim Reid + Kathryne Dora Brown + Keith Robinson + Elia Cmiral + Georg Stanford Brown + Robert Halmi Jr. + Randy Feldman + + 2005 + Drama + + + TV-PG + + + + Love Will Keep Us Together + After years of hiring housekeepers to run his home, a single advertising executive loses his job and becomes a stay-at-home dad. His new role gives him a different perspective on his family, but a tempting job offer threatens to lead him back to his old workaholic ways. + 2010 + + TV-PG + + + + Woman of the House + A woman who feels nostalgic about her college sorority days takes a job as a house mother to her former chapter. Along with bringing out the best in the girls, she helps to turn the chapter around with the help of the charming Dean of Student Affairs. + + Monika Mitchell + + 2017 + Drama + + TV-PG + + + + Uncorked + A workaholic (Julie Benz) finds herself in unfamiliar territory after her schedule unexpectedly clears during a business trip to California's wine country. She starts spending time with a local chef (Scott Elrod) and his eccentric family, who try to teach her that there's more to life than work. JoBeth Williams and Elliott Gould also star. Directed by David Cass Sr. + + Julie Benz + Scott Elrod + JoBeth Williams + Elliott Gould + Gattlin Griffith + David Andriole + David S. Cass, Sr. + David Cass Sr. + Larry Levinson + Jim Head + + 2010 + Drama + + + TV-PG + + + + A Man for Every Month + An introvert journalist researches a magazine article by going out with different men every month. + + Justene Alpert + Najee De-Tiege + Bradley Dodds + Cole Gerdes + Steven Good + Ashli Haynes + Robert Irving + Ron Oliver + Brian Gordon + Abbey Cleland + + 2017 + Comedy + + TV-PG + + + + Oliver's Ghost + A young boy (Nicholas Stargel) befriends a ghost (Martin Mull) living in the attic of his family's new house in a small town. After several angry outbursts from the ghost, the boy tries to get to the bottom of what's plaguing him. Directed by Dave S. Cass Sr. + + Nicholas Stargel + Martin Mull + Rhea Perlman + Cameron Daddo + Bridget White + Daniela Bobadilla + Dave S. Cass Sr. + Larry Levinson + David Golden + + 2011 + Drama + Fantasy + + TV-PG + + + + Ice Dreams + An ex-Olympian (Jessica Cauffiel), who abandoned her figure-skating career following a tragic accident, reluctantly begins coaching an aspiring skater (Noelle Bruno). But their local practice rink could soon shut its doors for good as the new owner (Brady Smith) struggles to make ends meet. Jerry Stiller, Shelley Long and Kathleen Wilhoite also star. Directed by David Burton Morris. + + Jessica Cauffiel + Shelley Long + Brady Smith + Jerry Stiller + Kathleen Wilhoite + Noelle Bruno + David Burton Morris + Larry Levinson + Elizabeth Stevens + + 2010 + Drama + Family + + + TV-PG + + + + Easy Heart + A music teacher hires a struggling country singer to perform at her town's annual festival, but the musician's difficult behavior causes problems. The pair soon find common ground in music, however, and inspire each other to embark on new paths. + 2012 + + TV-PG + + + + A Son's Promise + Rick Schroder as the eldest of seven brothers, battling to keep his siblings together. Filmed in Georgia. Dorothy: Veronica Cartwright. Weston: Boyd Gaines. Paw Paw: Donald Moffat. Wayne: David Andrews. Tommy: Andrew Lowery. Charles: Stephen Dorff. Renolds: Ken Strong. Judge: Danny Nelson. David: Ryan Marshall. + + Rick Schroder + Veronica Cartwright + Boyd Gaines + Donald Moffat + David Andrews + Andrew Lowery + J.A.C. Redford + John Korty + + 1990 + Drama + + TV-PG + + + + The Wishing Well + A jaded journalist (Jordan Ladd) travels to a small town to write a piece about its reportedly magic wishing well. While at the well, she and a young girl (Jadin Gould) make the same wish and set off an unusual series of events that shows the woman how her life could be different. Jason London, Ernest Borgnine, Sally Kellerman, Yeardley Smith and Charles Shaughnessy also star. Directed by David Jackson. + + Jordan Ladd + Jason London + Ernest Borgnine + Sally Kellerman + Yeardley Smith + Charles Shaughnessy + Stephen Graziano + David Jackson + Larry Levinson + Steven H. Berman + + 2010 + Drama + Family + + TV-PG + + + + The Nanny Express + A spunky nanny (Vanessa Marcil) tries to win over her rebellious charges, who are coping with the death of their mother. Romance soon blooms between the nanny and the kids' father (Brennan Elliott), but the relationship could stall if the kids object. Dean Stockwell and Stacy Keach also star. + + Vanessa Marcil + Brennan Elliott + Uriah Shelton + Natalie Dreyfuss + Dean Stockwell + Stacy Keach + Joe Kraemer + Bradford May + Robert Halmi, Jr. + Stephen Langford + + 2009 + Drama + Comedy + + TV-PG + + + + What I Did for Love + After a lawyer (Jeremy London) proposes to his girlfriend (Dorie Barton), they head to her family's ranch for the holidays, where he must gain approval from her difficult dad (James Gammon) and cope with her scheming aunt (Sally Struthers), who informs her niece's ex-flame of the blossoming relationship. Mark Griffiths directed. + + Jeremy London + Dorie Barton + Sally Struthers + James Gammon + Chase Hoyt + James Edson + Kevin Kiner + Mark Griffiths + Robert Halmi, Jr. + Marjorie A. Sweeney + + 2006 + Drama + + + TV-PG + + + + Shadow on the Mesa + A gunslinger seeks out the father he never met while looking for answers about his mother's murder. When he arrives at his father's ranch, he finds himself in the middle of a war over the land. + + Wes Brown + Kevin Sorbo + Meredith Baxter + Gail O'Grady + Greg Evigan + Shannon Lucio + David S. Cass Sr. + Lincoln Lageson + Lee Martin + + 2013 + Action & Adventure + + TV-PG + + + + Oliver's Ghost + A young boy (Nicholas Stargel) befriends a ghost (Martin Mull) living in the attic of his family's new house in a small town. After several angry outbursts from the ghost, the boy tries to get to the bottom of what's plaguing him. Directed by Dave S. Cass Sr. + + Nicholas Stargel + Martin Mull + Rhea Perlman + Cameron Daddo + Bridget White + Daniela Bobadilla + Dave S. Cass Sr. + Larry Levinson + David Golden + + 2011 + Drama + Fantasy + + TV-PG + + + + Ice Dreams + An ex-Olympian (Jessica Cauffiel), who abandoned her figure-skating career following a tragic accident, reluctantly begins coaching an aspiring skater (Noelle Bruno). But their local practice rink could soon shut its doors for good as the new owner (Brady Smith) struggles to make ends meet. Jerry Stiller, Shelley Long and Kathleen Wilhoite also star. Directed by David Burton Morris. + + Jessica Cauffiel + Shelley Long + Brady Smith + Jerry Stiller + Kathleen Wilhoite + Noelle Bruno + David Burton Morris + Larry Levinson + Elizabeth Stevens + + 2010 + Drama + Family + + + TV-PG + + + + Easy Heart + A music teacher hires a struggling country singer to perform at her town's annual festival, but the musician's difficult behavior causes problems. The pair soon find common ground in music, however, and inspire each other to embark on new paths. + 2012 + + TV-PG + + + + A Son's Promise + Rick Schroder as the eldest of seven brothers, battling to keep his siblings together. Filmed in Georgia. Dorothy: Veronica Cartwright. Weston: Boyd Gaines. Paw Paw: Donald Moffat. Wayne: David Andrews. Tommy: Andrew Lowery. Charles: Stephen Dorff. Renolds: Ken Strong. Judge: Danny Nelson. David: Ryan Marshall. + + Rick Schroder + Veronica Cartwright + Boyd Gaines + Donald Moffat + David Andrews + Andrew Lowery + J.A.C. Redford + John Korty + + 1990 + Drama + + TV-PG + + + + The Wishing Well + A jaded journalist (Jordan Ladd) travels to a small town to write a piece about its reportedly magic wishing well. While at the well, she and a young girl (Jadin Gould) make the same wish and set off an unusual series of events that shows the woman how her life could be different. Jason London, Ernest Borgnine, Sally Kellerman, Yeardley Smith and Charles Shaughnessy also star. Directed by David Jackson. + + Jordan Ladd + Jason London + Ernest Borgnine + Sally Kellerman + Yeardley Smith + Charles Shaughnessy + Stephen Graziano + David Jackson + Larry Levinson + Steven H. Berman + + 2010 + Drama + Family + + TV-PG + + + + The Nanny Express + A spunky nanny (Vanessa Marcil) tries to win over her rebellious charges, who are coping with the death of their mother. Romance soon blooms between the nanny and the kids' father (Brennan Elliott), but the relationship could stall if the kids object. Dean Stockwell and Stacy Keach also star. + + Vanessa Marcil + Brennan Elliott + Uriah Shelton + Natalie Dreyfuss + Dean Stockwell + Stacy Keach + Joe Kraemer + Bradford May + Robert Halmi, Jr. + Stephen Langford + + 2009 + Drama + Comedy + + TV-PG + + + + What I Did for Love + After a lawyer (Jeremy London) proposes to his girlfriend (Dorie Barton), they head to her family's ranch for the holidays, where he must gain approval from her difficult dad (James Gammon) and cope with her scheming aunt (Sally Struthers), who informs her niece's ex-flame of the blossoming relationship. Mark Griffiths directed. + + Jeremy London + Dorie Barton + Sally Struthers + James Gammon + Chase Hoyt + James Edson + Kevin Kiner + Mark Griffiths + Robert Halmi, Jr. + Marjorie A. Sweeney + + 2006 + Drama + + + TV-PG + + + + Shadow on the Mesa + A gunslinger seeks out the father he never met while looking for answers about his mother's murder. When he arrives at his father's ranch, he finds himself in the middle of a war over the land. + + Wes Brown + Kevin Sorbo + Meredith Baxter + Gail O'Grady + Greg Evigan + Shannon Lucio + David S. Cass Sr. + Lincoln Lageson + Lee Martin + + 2013 + Action & Adventure + + TV-PG + + + + The Wedding Do Over + Wedding planner Abby specializes in fixing weddings that went wrong, but when she is forced to work with her ex-fiancé, she begins to question whether their relationship was the disaster she remembers. + + Nicole Gale Anderson + Parker Young + Karissa Lee Staples + Alisha Wainwright + Stephen Colletti + Carolyn Hennesy + Stephen Graziano + W.D. Hogan + James Wilberger + + 2018 + Drama + Comedy + + TV-PG + + + + Reading, Writing & Romance + A struggling actor takes a job teaching high-school English and begins a romance with another teacher. But when he lands a big acting gig, he must decide if he's willing to leave behind his new life. + + Eric Mabius + Virginia Williams + Stefanie Powers + Meredith Baxter + Adam Kulbersh + Martin Mull + Ernie Barbarash + Larry Levinson + Todd Mattox + + 2013 + Drama + Comedy + + TV-PG + + + + Mulligan + A kids-show actor (Ethan Erickson) and a single mom (Jennie Garth) butt heads after the two are in a car accident. But while dealing with the fallout from the crash, the pair begin to make a real connection. The actor's secrets, however, threaten to ruin the fledgling romance. David Burton Morris directed. + 2011 + + TV-PG + + + + Playing Father + A jazz musician takes a teaching gig at a struggling school and mentors a talented but troubled student. As he helps the teen confront problems at home and school, he also begins to focus on healing his relationship with his own distant son. + 2013 + + TV-PG + + + + Love Comes Softly + Marty is a 19 year old pioneer woman, recently married. She goes west with her husband Clem, hoping to start a new life. But Clem unexpectedly dies, and Marty finds herself alone, two months pregnant. Clark Davis, a widower, offers her a marriage of convenience: she needs food and money, and he needs someone to take care of his daughter Missie. She accepts his proposal as a temporary solution. + + Katherine Heigl + Dale Midkiff + Skye McCole Bartusiak + Corbin Bernsen + Theresa Russell + Oliver Macready + William Ashford + Michael Landon Jr. + Michael Landon + Robert Halmi, Jr. + Cindy Kelley + + 2003 + Drama + Family + + TV-PG + + + + Cupid, Inc. + A talk-show host receives a visit from a mysterious love expert, who promises he'll reveal her true love to her if she first helps other couples find each other. Her matchmaking efforts don't go smoothly, however, and she begins to question her task. + 2012 + + TV-PG + + + + Falling in Love with the Girl Next Door + Mark Lucas and Theresa Connolly fall in love but their overbearing mothers ruin their wedding plans and possibly their future together. + + Patty Duke + Shelley Long + Bruce Boxleitner + Patrick Duffy + Crystal Allen + Ken Marino + Ron Ramin + Armand Mastroianni + Robert Halmi, Jr. + Sally Nemeth + + 2006 + Comedy + + + TV-PG + + + + A Stranger's Heart + Samantha Mathis plays Callie, the recipient of a long-awaited heart transplant whose cynical attitude dissipates as she longs for a connection with her donor's orphaned daughter. Peter Dobson plays Callie's love interest and fellow transplant recipient, but it's Thomas Kopache who steals the show as her perennially grieving widowed father. Andy Wolk directed. + + Samantha Mathis + Peter Dobson + Thomas Kopache + Gina Hecht + Kevin Kilner + Raynor Scheine + Lawrence Shragge + Andy Wolk + Robert Halmi, Jr. + Kelli Pryor + + 2007 + Drama + + TV-PG + + + + The Wedding Do Over + Wedding planner Abby specializes in fixing weddings that went wrong, but when she is forced to work with her ex-fiancé, she begins to question whether their relationship was the disaster she remembers. + + Nicole Gale Anderson + Parker Young + Karissa Lee Staples + Alisha Wainwright + Stephen Colletti + Carolyn Hennesy + Stephen Graziano + W.D. Hogan + James Wilberger + + 2018 + Drama + Comedy + + TV-PG + + + + Reading, Writing & Romance + A struggling actor takes a job teaching high-school English and begins a romance with another teacher. But when he lands a big acting gig, he must decide if he's willing to leave behind his new life. + + Eric Mabius + Virginia Williams + Stefanie Powers + Meredith Baxter + Adam Kulbersh + Martin Mull + Ernie Barbarash + Larry Levinson + Todd Mattox + + 2013 + Drama + Comedy + + TV-PG + + + + Mulligan + A kids-show actor (Ethan Erickson) and a single mom (Jennie Garth) butt heads after the two are in a car accident. But while dealing with the fallout from the crash, the pair begin to make a real connection. The actor's secrets, however, threaten to ruin the fledgling romance. David Burton Morris directed. + 2011 + + TV-PG + + + + Playing Father + A jazz musician takes a teaching gig at a struggling school and mentors a talented but troubled student. As he helps the teen confront problems at home and school, he also begins to focus on healing his relationship with his own distant son. + 2013 + + TV-PG + + + + Love Comes Softly + Marty is a 19 year old pioneer woman, recently married. She goes west with her husband Clem, hoping to start a new life. But Clem unexpectedly dies, and Marty finds herself alone, two months pregnant. Clark Davis, a widower, offers her a marriage of convenience: she needs food and money, and he needs someone to take care of his daughter Missie. She accepts his proposal as a temporary solution. + + Katherine Heigl + Dale Midkiff + Skye McCole Bartusiak + Corbin Bernsen + Theresa Russell + Oliver Macready + William Ashford + Michael Landon Jr. + Michael Landon + Robert Halmi, Jr. + Cindy Kelley + + 2003 + Drama + Family + + TV-PG + + + + Cupid, Inc. + A talk-show host receives a visit from a mysterious love expert, who promises he'll reveal her true love to her if she first helps other couples find each other. Her matchmaking efforts don't go smoothly, however, and she begins to question her task. + 2012 + + TV-PG + + + + Falling in Love with the Girl Next Door + Mark Lucas and Theresa Connolly fall in love but their overbearing mothers ruin their wedding plans and possibly their future together. + + Patty Duke + Shelley Long + Bruce Boxleitner + Patrick Duffy + Crystal Allen + Ken Marino + Ron Ramin + Armand Mastroianni + Robert Halmi, Jr. + Sally Nemeth + + 2006 + Comedy + + + TV-PG + + + + A Stranger's Heart + Samantha Mathis plays Callie, the recipient of a long-awaited heart transplant whose cynical attitude dissipates as she longs for a connection with her donor's orphaned daughter. Peter Dobson plays Callie's love interest and fellow transplant recipient, but it's Thomas Kopache who steals the show as her perennially grieving widowed father. Andy Wolk directed. + + Samantha Mathis + Peter Dobson + Thomas Kopache + Gina Hecht + Kevin Kilner + Raynor Scheine + Lawrence Shragge + Andy Wolk + Robert Halmi, Jr. + Kelli Pryor + + 2007 + Drama + + TV-PG + + + + Time Capsule + After 10 years, a group of high school friends reunite at their alma mater's field house to dig up their time capsule. When they open the time capsule they decide to relive their fun high school moments which inspire a newfound relationship. + 2020 + Drama + + TV-PG + + + + The Reading Room + Tale of a widower (James Earl Jones) who's determined to make a reading room available in the tough inner-city neighborhood where he and his wife grew up. Joanna Cassidy, Tim Reid, Georg Stanford Brown (who also directed). + + James Earl Jones + Joanna Cassidy + Idris Muhammed + Tim Reid + Kathryne Dora Brown + Keith Robinson + Elia Cmiral + Georg Stanford Brown + Robert Halmi Jr. + Randy Feldman + + 2005 + Drama + + + TV-PG + + + + You've Got a Friend + Dylan McLaughlin plays Bobby, a boy who recently lost his parents and finds solace in box-car racing with help from the town loner (John Schneider), a former derby racer himself. But victory doesn't come easy for Bobby as he is forced to confront a bully and disapproval from his uncle (Jason Brooks). Miss Nelson: Bitty Schram. + + John Schneider + Dylan McLaughlin + Bitty Schram + Jason Brooks + Kate Connor + Mark Rolston + James W. Wrenn + James Contner + James A. Contner + Robert Halmi, Jr. + Oliver Robins + + 2007 + Drama + + TV-PG + + + + Family Plan + Charlie MacKenzie is a dedicated career woman who must lie about having a family in order to land her dream job. Charlie gets the job, but when her new boss moves in next door, Charlie must hire an actor to play her husband and borrow her best friend's teenage daughter to act as her own child. + + Tori Spelling + Jordan Bridges + Greg Germann + Kate Vernon + Kali Rocha + Ryan Tasz + David Kitay + David S. Cass Sr. + Robert Halmi, Jr. + Richard Gitelson + + 2005 + Drama + Family + Comedy + + + TV-PG + + + + Miles From Nowhere + A high-school football player (Andrew Lawrence) copes with his best friend's death by training to run a sub-four-minute mile. But his quest puts him at odds with his father (Treat Williams) after he begins to neglect football. Joanna Going also stars. Directed by David Burton Morris. + 2008 + + TV-PG + + + + Party of 1-2-3 + From self-love to sexy couples to a menage-a-trois in one steamy show. + Adult + + + TVMA + + + + Silk and Satin + Adult + + + TVMA + + + + Bare Bliss + Newly discovered natural beauties pose in stunning locations. + Adult + + + TVMA + + + + Playboy Centerfolds + Models from around the world show off their beauty for Playboy's cameras. + Adult + + + TVMA + + + + Playboy Girlfriends + An exploration of the intimate bond that exists between girlfriends. + Adult + + + TVMA + + + + Playboy Centerfolds + Models from around the world show off their beauty for Playboy's cameras. + Adult + + + TVMA + + + + Playboy Girlfriends + An exploration of the intimate bond that exists between girlfriends. + Adult + + + TVMA + + + + Silk and Satin + Adult + + + TVMA + + + + Playmates! + Britany Nola + Miss November 2012. + Adult + + + TVMA + + + + The Tryst List + Couples spice up their sex lives. + Adult + + + TVMA + + + + Swing + Nina & Andres + A committed couple seeks their first full swap at the Swing House. + Adult + + + TVMA + + + + SexArt + Women have sex in romantic settings. + Adult + + + TVMA + + + + Secret Sessions + Relaxing massage sessions go to the next level as alluring couples make love in spa settings. + Adult + + + TVMA + + + + Early Bird Yoga + Relaxing mind, body and soul with nude yoga instructor Daniella. + Adult + + + TVMA + + + + Fantasy Flirt + Sexy models pose for the cameras and share their intimate fantasies. + Adult + + + TVMA + + + + Naked Happy Girls + Give Me Your Naked + Photographer Andrew Einhorn searches New York City to photograph models for his upcoming book of nudes. + Adult + + + TVMA + + + + Naked Happy Girls + Mommie Dearest + Andrew's parents weigh in on his unique photography. + Adult + + + TVMA + + + + Playboy Girlfriends + An exploration of the intimate bond that exists between girlfriends. + Adult + + + TVMA + + + + Triple Play + A couple seeking a threesome finds their partner on a radio show. + Adult + + + TVMA + + + + Party of 1-2-3 + Self-love, hot couples and sexy threesomes in a non-stop showcase. + Adult + + + TVMA + + + + Complex Affairs + Adult + + + TVMA + + + + Swing + Kristen & Brandon + Kristen and Brandon enter the mansion. + Adult + + + TVMA + + + + XConfessions + Three true tales of sexy adventures from master filmmaker Erika Lust. + Adult + + + TVMA + + + + The Life Erotic + Beautiful women explore each other and themselves. + Adult + + + TVMA + + + + FrolicMe Passion + Couples combat the routine of daily life by taking a break from their chores to enjoy the best spontaneous sex in every room of the house. + Adult + + + TVMA + + + + Seduction Weapons + Sexy assassins obey clients' demands. + Adult + + + TVMA + + + + Naked Happy Girls + Naked and Happy + Andrew reminisces about his favorite subjects. + Adult + + + TVMA + + + + Badass! + Big Boobs & Big Stunts + Some of our favorite hot bodies; outrageous stunts and nonstop sex appeal. + Adult + + + TVMA + + + + Sexcape + Sabrina & Thomas + A couple rekindles their passion on the Big Island of Hawaii. + Adult + + + TVMA + + + + Femme Fit + Toned women stay fit by getting physical. + Adult + + + TVMA + + + + Just the Girls + No boys allowed when gorgeous girls turn to one another for pleasure. + Adult + + + TVMA + + + + Swing + Ginger & Brian + A sweet Mormon couple dabbles in hedonism. + Adult + + + TVMA + + + + FrolicMe Passion + Couples combat the routine of daily life by taking a break from their chores to enjoy the best spontaneous sex in every room of the house. + Adult + + + TVMA + + + + Suite Rendezvous + Sensual hotel encounters are on full display in these sexy and erotic vignettes. + Adult + + + TVMA + + + + The Tryst List + Couples spice up their sex lives. + Adult + + + TVMA + + + + Seduction Weapons + Sexy assassins obey clients' demands. + Adult + + + TVMA + + + + Early Bird Yoga + Relaxing mind, body and soul with nude yoga instructor Daniella. + Adult + + + TVMA + + + + Playboy Girlfriends + An exploration of the intimate bond that exists between girlfriends. + Adult + + + TVMA + + + + Private Selfies + A showcase for real girls who submit sexy private selfies shot on their smartphones, tablets and laptops. + Adult + + + TVMA + + + + Playboy's Amateur Girls + Cybergirls overcome their shyness to show everything. + Adult + + + TVMA + + + + Sexcape + Mari & Chris + Married New Yorkers rekindle their passion in a Finland igloo, learn to ski on an indoor slope and meet a Helsinki stripper. + Adult + + + TVMA + + + + Dream Dates + Spending time with beautiful women. + Adult + + + TVMA + + + + Naked Happy Girls + A Tail of Two Cities + Andrew photographs a Park Avenue. + Adult + + + TVMA + + + + Hot Babes Doing Stuff Naked + Born to Ride + Nudie cuties take barebacked horse rides, ride mechanical bulls, and romp in demolition equipment. + Adult + + + TVMA + + + + Foursome + Las Vegas + Vegas singles lose their close in the first five minutes. + Adult + + + TVMA + + + + Best of the Playboy Morning Show + The very best moments from The Playboy Morning Show. Featuring the most memorable guests and Playboy babes that hosts Andrea Lowell and Kevin Klein have to offer. + Adult + Performing Arts + + + TVMA + + + + SexArt + Women have sex in romantic settings. + Adult + + + TVMA + + + + The Tryst List + Couples spice up their sex lives. + Adult + + + TVMA + + + + Swing + Nina & Andres + A committed couple seeks their first full swap at the Swing House. + Adult + + + TVMA + + + + SexArt + Women have sex in romantic settings. + Adult + + + TVMA + + + + Secret Sessions + Relaxing massage sessions go to the next level as alluring couples make love in spa settings. + Adult + + + TVMA + + + + Passion Diaries + Unravel the deepest fantasies and unspoken secrets inside an intoxicating world of sensuality and intimacy. + Adult + + + TVMA + + + + Pleasure Parlour + Erotic services are on the menu. + Adult + + + TVMA + + + + Sybil, An Indecent Story Part 2 + Specials + Adult + + + TVMA + + + + Passion Diaries + Unravel the deepest fantasies and unspoken secrets inside an intoxicating world of sensuality and intimacy. + Adult + + + TVMA + + + + Lights, Camera, Play + Alluring couples have sexy and erotic encounters in a private theater before an unseen audience. + Adult + + + TVMA + + + + Playboy Trip: Back in Argentina + The babes live out their biker girl fantasies; a two-wheeled tour of Argentina; a wet and wild photo shoot. + + Lauren Elise + Danielle Mathers + + Adult + + + TVMA + + + + Femme Fit + Toned women stay fit by getting physical. + Adult + + + TVMA + + + + Undercover + Sex toy museum; foot fetish club. + Adult + + + TVMA + + + + Bare Bliss + Newly discovered natural beauties pose in stunning locations. + Adult + + + TVMA + + + + Playboy Shootout + Winners Revealed + Hef makes his final decision. + Adult + Reality TV + + + TVMA + + + + Fantasy Flirt + Gorgeous models get naked and naughty posing for Playboy's cameras. + Adult + + + TVMA + + + + Playboy Girlfriends + An exploration of the intimate bond that exists between girlfriends. + Adult + + + TVMA + + + + Cougar Club L.A. + The ladies shoot a. + Adult + + + TVMA + + + + Spa X + Clients receive a spa treatment. + Adult + + + TVMA + + + + Lights, Camera, Play + Alluring couples have sexy and erotic encounters in a private theater before an unseen audience. + Adult + + + TVMA + + + + The Tryst List + Couples spice up their sex lives. + Adult + + + TVMA + + + + Party of 1-2-3 + From self-love to sexy couples to a menage-a-trois in one steamy show. + Adult + + + TVMA + + + + Hot Babes Doing Stuff Naked + Wet & Willing + Hot babes moisten their naked bodies on fishing trips, poolside fights and dog washing. + Adult + + + TVMA + + + + Hot Babes Doing Stuff Naked + Born to Ride + Nudie cuties take barebacked horse rides, ride mechanical bulls, and romp in demolition equipment. + Adult + + + TVMA + + + + Hot Babes Doing Stuff Naked + Nature Girls + Naked grape stomp romps; full frontal farming; camping au natural; skins on skins basketball. + Adult + + + TVMA + + + + Hot Babes Doing Stuff Naked + Hot Wheelin' + Naked hot babes at the roller link, truck wash, cleaning house, and playing with hoes in the garden. + Adult + + + TVMA + + + + Playboy's Amateur Girls + Playboy's hottest Cybergirls show their stuff. + Adult + + + TVMA + + + + Playboy's Amateur Girls + More Cybergirl hotties are shown. + Adult + + + TVMA + + + + Playboy's Amateur Girls + Cybergirls overcome their shyness to show everything. + Adult + + + TVMA + + + + Playboy's Amateur Girls + Real first-timers show their stuff. + Adult + + + TVMA + + + + Playboy's Amateur Girls + Every type of hot babe is represented. + Adult + + + TVMA + + + + Playboy's Amateur Girls + Hottie amateurs show it all. + Adult + + + TVMA + + + + Playboy's Amateur Girls + Real college students and sexy wives. + Adult + + + TVMA + + + + Playboy's Amateur Girls + Exotic hotties, curvy blondes, and sexy wives. + Adult + + + TVMA + + + + Private Selfies + The sexiest self-shot photos and videos submitted by amateur girls across the country. + Adult + + + TVMA + + + + Private Selfies + A showcase for real girls who submit sexy private selfies shot on their smartphones, tablets and laptops. + Adult + + + TVMA + + + + Private Selfies + Lara Cole has a new batch of sexy selfies. + Adult + + + TVMA + + + + Private Selfies + Sexy girls submit hot videos. + Adult + + + TVMA + + + + Private Selfies + Beautiful babes submit their hot photos. + Adult + + + TVMA + + + + Private Selfies + The latest collection of sexy selfies from around the country. + Adult + + + TVMA + + + + Playboy Muses + When art meets beauty, imagination and reality converge. + Adult + + + TVMA + + + + Jazmin's Touch + Dominatrix Juliette learns to show her submissive side. + Adult + + + TVMA + + + + Best of the Playboy Morning Show + The very best moments from The Playboy Morning Show. Featuring the most memorable guests and Playboy babes that hosts Andrea Lowell and Kevin Klein have to offer. + Adult + Performing Arts + + + TVMA + + + + Playboy Shootout + If You Build It.. + Bedroom shoot judged by Traci Bingham. + Adult + Reality TV + + + TVMA + + + + Party of 1-2-3 + It's always a party, no matter how many show up. + Adult + + + TVMA + + + + Just the Girls + Beautiful women share erotic moments together -- and alone. + Adult + + + TVMA + + + + Secret Sessions + Relaxing massage sessions go to the next level as alluring couples make love in spa settings. + Adult + + + TVMA + + + + Suite Rendezvous + Sensual hotel encounters are on full display in these sexy and erotic vignettes. + Adult + + + TVMA + + + + Lights, Camera, Play + Alluring couples have sexy and erotic encounters in a private theater before an unseen audience. + Adult + + + TVMA + + + + XConfessions Xtreme + Food + Food is the theme as Erika Lust brings true tales of passion to life. + Adult + + + TVMA + + + + Silk and Satin + Adult + + + TVMA + + + + Bare Bliss + Newly discovered natural beauties pose in stunning locations. + Adult + + + TVMA + + + + Playboy Centerfolds + Models from around the world show off their beauty for Playboy's cameras. + Adult + + + TVMA + + + + Playboy Girlfriends + An exploration of the intimate bond that exists between girlfriends. + Adult + + + TVMA + + + + Silk and Satin + Adult + + + TVMA + + + + Playmates! + Britany Nola + Miss November 2012. + Adult + + + TVMA + + + + Dream Dates + Spending time with beautiful women. + Adult + + + TVMA + + + + Hot Babes Doing Stuff Naked + Born to Ride + Nudie cuties take barebacked horse rides, ride mechanical bulls, and romp in demolition equipment. + Adult + + + TVMA + + + + Early Bird Yoga + Relaxing mind, body and soul with nude yoga instructor Daniella. + Adult + + + TVMA + + + + Best of the Playboy Morning Show + The very best moments from The Playboy Morning Show. Featuring the most memorable guests and Playboy babes that hosts Andrea Lowell and Kevin Klein have to offer. + Adult + Performing Arts + + + TVMA + + + + Private Selfies + Lara Cole has a new batch of sexy selfies. + Adult + + + TVMA + + + + Naked Happy Girls + Ethnic Treats + An Asian nibbler and an Italian pastry chef expose their assets. + Adult + + + TVMA + + + + Playboy's Amateur Girls + Real first-timers show their stuff. + Adult + + + TVMA + + + + Foursome + Reality Gone Wild + Man loves getting his beautiful roomies naked. + Adult + + + TVMA + + + + Sexcape + Hobie & Calvin + Two busy Texas doctors travel to Chile, where they visit a sexy coffee shop, watch exotic animals at the zoo and hook up in the middle of the desert. + Adult + + + TVMA + + + + Early Bird Yoga + Relaxing mind, body and soul with nude yoga instructor Daniella. + Adult + + + TVMA + + + + Fantasy Flirt + Sexy models pose for the cameras and share their intimate fantasies. + Adult + + + TVMA + + + + Playboy Girlfriends + An exploration of the intimate bond that exists between girlfriends. + Adult + + + TVMA + + + + Triple Play + A couple seeking a threesome finds their partner on a radio show. + Adult + + + TVMA + + + + Party of 1-2-3 + Self-love, hot couples and sexy threesomes in a non-stop showcase. + Adult + + + TVMA + + + + Complex Affairs + Adult + + + TVMA + + + + Swing + Kristen & Brandon + Kristen and Brandon enter the mansion. + Adult + + + TVMA + + + + XConfessions + Three true tales of sexy adventures from master filmmaker Erika Lust. + Adult + + + TVMA + + + + The Life Erotic + Beautiful women explore each other and themselves. + Adult + + + TVMA + + + + FrolicMe Passion + Couples combat the routine of daily life by taking a break from their chores to enjoy the best spontaneous sex in every room of the house. + Adult + + + TVMA + + + + Seduction Weapons + Sexy assassins obey clients' demands. + Adult + + + TVMA + + + + Naked Happy Girls + Naked and Happy + Andrew reminisces about his favorite subjects. + Adult + + + TVMA + + + + Badass! + Big Boobs & Big Stunts + Some of our favorite hot bodies; outrageous stunts and nonstop sex appeal. + Adult + + + TVMA + + + + Sexcape + Sabrina & Thomas + A couple rekindles their passion on the Big Island of Hawaii. + Adult + + + TVMA + + + + Femme Fit + Toned women stay fit by getting physical. + Adult + + + TVMA + + + + Just the Girls + No boys allowed when gorgeous girls turn to one another for pleasure. + Adult + + + TVMA + + + + Swing + Ginger & Brian + A sweet Mormon couple dabbles in hedonism. + Adult + + + TVMA + + + + FrolicMe Passion + Couples combat the routine of daily life by taking a break from their chores to enjoy the best spontaneous sex in every room of the house. + Adult + + + TVMA + + + + Suite Rendezvous + Sensual hotel encounters are on full display in these sexy and erotic vignettes. + Adult + + + TVMA + + + + The Tryst List + Couples spice up their sex lives. + Adult + + + TVMA + + + + Seduction Weapons + Sexy assassins obey clients' demands. + Adult + + + TVMA + + + + Passion Diaries + Unravel the deepest fantasies and unspoken secrets inside an intoxicating world of sensuality and intimacy. + Adult + + + TVMA + + + + Pleasure Parlour + Erotic services are on the menu. + Adult + + + TVMA + + + + Sybil, An Indecent Story Part 2 + Specials + Adult + + + TVMA + + + + Passion Diaries + Unravel the deepest fantasies and unspoken secrets inside an intoxicating world of sensuality and intimacy. + Adult + + + TVMA + + + + Lights, Camera, Play + Alluring couples have sexy and erotic encounters in a private theater before an unseen audience. + Adult + + + TVMA + + + + SexArt + Women have sex in romantic settings. + Adult + + + TVMA + + + + The Tryst List + Couples spice up their sex lives. + Adult + + + TVMA + + + + Swing + Nina & Andres + A committed couple seeks their first full swap at the Swing House. + Adult + + + TVMA + + + + SexArt + Women have sex in romantic settings. + Adult + + + TVMA + + + + Secret Sessions + Relaxing massage sessions go to the next level as alluring couples make love in spa settings. + Adult + + + TVMA + + + + Early Bird Yoga + Relaxing mind, body and soul with nude yoga instructor Daniella. + Adult + + + TVMA + + + + Playboy Girlfriends + An exploration of the intimate bond that exists between girlfriends. + Adult + + + TVMA + + + + Private Selfies + A showcase for real girls who submit sexy private selfies shot on their smartphones, tablets and laptops. + Adult + + + TVMA + + + + Playboy's Amateur Girls + Cybergirls overcome their shyness to show everything. + Adult + + + TVMA + + + + Sexcape + Mari & Chris + Married New Yorkers rekindle their passion in a Finland igloo, learn to ski on an indoor slope and meet a Helsinki stripper. + Adult + + + TVMA + + + + Dream Dates + Spending time with beautiful women. + Adult + + + TVMA + + + + Naked Happy Girls + A Tail of Two Cities + Andrew photographs a Park Avenue. + Adult + + + TVMA + + + + Hot Babes Doing Stuff Naked + Born to Ride + Nudie cuties take barebacked horse rides, ride mechanical bulls, and romp in demolition equipment. + Adult + + + TVMA + + + + Foursome + Las Vegas + Vegas singles lose their close in the first five minutes. + Adult + + + TVMA + + + + Best of the Playboy Morning Show + The very best moments from The Playboy Morning Show. Featuring the most memorable guests and Playboy babes that hosts Andrea Lowell and Kevin Klein have to offer. + Adult + Performing Arts + + + TVMA + + + + Playboy Trip: Back in Argentina + The babes live out their biker girl fantasies; a two-wheeled tour of Argentina; a wet and wild photo shoot. + + Lauren Elise + Danielle Mathers + + Adult + + + TVMA + + + + Femme Fit + Toned women stay fit by getting physical. + Adult + + + TVMA + + + + Undercover + Sex toy museum; foot fetish club. + Adult + + + TVMA + + + + Bare Bliss + Newly discovered natural beauties pose in stunning locations. + Adult + + + TVMA + + + + Playboy Shootout + Winners Revealed + Hef makes his final decision. + Adult + Reality TV + + + TVMA + + + + Fantasy Flirt + Gorgeous models get naked and naughty posing for Playboy's cameras. + Adult + + + TVMA + + + + Playboy Girlfriends + An exploration of the intimate bond that exists between girlfriends. + Adult + + + TVMA + + + + Cougar Club L.A. + The ladies shoot a. + Adult + + + TVMA + + + + Spa X + Clients receive a spa treatment. + Adult + + + TVMA + + + + Lights, Camera, Play + Alluring couples have sexy and erotic encounters in a private theater before an unseen audience. + Adult + + + TVMA + + + + The Tryst List + Couples spice up their sex lives. + Adult + + + TVMA + + + + Party of 1-2-3 + From self-love to sexy couples to a menage-a-trois in one steamy show. + Adult + + + TVMA + + + + Dream Dates + Spending time with beautiful women. + Adult + + + TVMA + + + + Hot Babes Doing Stuff Naked + Born to Ride + Nudie cuties take barebacked horse rides, ride mechanical bulls, and romp in demolition equipment. + Adult + + + TVMA + + + + Early Bird Yoga + Relaxing mind, body and soul with nude yoga instructor Daniella. + Adult + + + TVMA + + + + Best of the Playboy Morning Show + The very best moments from The Playboy Morning Show. Featuring the most memorable guests and Playboy babes that hosts Andrea Lowell and Kevin Klein have to offer. + Adult + Performing Arts + + + TVMA + + + + Private Selfies + Lara Cole has a new batch of sexy selfies. + Adult + + + TVMA + + + + Naked Happy Girls + Ethnic Treats + An Asian nibbler and an Italian pastry chef expose their assets. + Adult + + + TVMA + + + + Playboy's Amateur Girls + Real first-timers show their stuff. + Adult + + + TVMA + + + + Foursome + Reality Gone Wild + Man loves getting his beautiful roomies naked. + Adult + + + TVMA + + + + Sexcape + Hobie & Calvin + Two busy Texas doctors travel to Chile, where they visit a sexy coffee shop, watch exotic animals at the zoo and hook up in the middle of the desert. + Adult + + + TVMA + + + + Playboy On Demand + Adult + + + + Playboy On Demand + Adult + + + + Playboy On Demand + Adult + + + + Playboy On Demand + Adult + + + + Playboy On Demand + Adult + + + + Playboy On Demand + Adult + + + + Playboy On Demand + Adult + + + + Playboy On Demand + Adult + + + + Playboy On Demand + Adult + + + + Playboy On Demand + Adult + + + + Playboy On Demand + Adult + + + + Playboy On Demand + Adult + + + + Playboy On Demand + Adult + + + + Playboy On Demand + Adult + + + + Playboy On Demand + Adult + + + + Playboy On Demand + Adult + + + + Playboy On Demand + Adult + + + + Playboy On Demand + Adult + + + + Playboy On Demand + Adult + + + + Playboy On Demand + Adult + + + + Playboy On Demand + Adult + + + + Playboy On Demand + Adult + + + + Playboy On Demand + Adult + + + + Playboy On Demand + Adult + + + + Playboy Centerfolds + Las modelos más exclusivas de todas partes del mundo muestran toda su belleza antes las cámaras de Playboy. + Adult + + + TVMA + + + + Playboy's Amateur Girls + Más bellezas cibernéticas. + Adult + + + TVMA + + + + Pleasure Parlour + Adult + + + TVMA + + + + Pleasure Parlour + Adult + + + TVMA + + + + Adult Stars: Up Close + Las principales estrellas de películas para adultos conceden acceso entre bastidores a sus vidas personales en episodios reveladores y exclusivos. + Adult + + + TVMA + + + + Adult Stars: Up Close + Las principales estrellas de películas para adultos conceden acceso entre bastidores a sus vidas personales en episodios reveladores y exclusivos. + Adult + + + TVMA + + + + Naked Happy Girls + Sex in the City + Andrew recorre el lado sexy de San Francisco en busca de su chica desnuda de fantasía. + Adult + + + TVMA + + + + Spa X + Los clientes de este establecimiento reciben un tratamiento de spa muy especial. + Adult + + + TVMA + + + + Photographer in Love + Victoria, una pudorosa joven del interior, llega a la ciudad para cumplir su sueño de estudiar medicina. Su primo Paul, fotógrafo de moda será con él con quien Victoria encontrará un nuevo motivo para quedarse en la ciudad. + Adult + + + TVMA + + + + XConfessions Xtreme + Movie Magic + Relatos reales de lujuria delante y detrás de cámara cobran vida. + Adult + + + TVMA + + + + XConfessions Xtreme + Movie Magic + Relatos reales de lujuria delante y detrás de cámara cobran vida. + Adult + + + TVMA + + + + Playboy Centerfolds + Las modelos más exclusivas de todas partes del mundo muestran toda su belleza antes las cámaras de Playboy. + Adult + + + TVMA + + + + Playboy Centerfolds + Las modelos más exclusivas de todas partes del mundo muestran toda su belleza antes las cámaras de Playboy. + Adult + + + TVMA + + + + Playboy's Amateur Girls + Chicas cibernéticas superan su timidez para revelar todo. + Adult + + + TVMA + + + + Stranger Sex + Melody Marks, Kate Bloom, Kylie Quinn y Kenzie Reeves son una mujeres jóvenes con comportamientos riesgosos. + + Melody Marks + Kylie Quinn + Kenzie Reeves + + 2022 + Movies + Adult + + + + Naked Happy Girls + San Francisco Treats + Andrew conoce a una chica descarada del barrio chino. + Adult + + + TVMA + + + + Badass! + Cada vicio al desnudo se encuentra aquí, topless, superbustos y más. + Adult + + + TVMA + + + + Private Selfies + Selfies muy calientes presentados por Lara Cole. + Adult + + + TVMA + + + + Eternal Allure + Las mujeres más hermosas se desnudan en distintos lugares de todo el mundo. + Adult + + + TVMA + + + + Playboy Centerfolds + Las modelos más exclusivas de todas partes del mundo muestran toda su belleza antes las cámaras de Playboy. + Adult + + + TVMA + + + + Pleasure Parlour + Adult + + + TVMA + + + + The Life Erotic + Mujeres hermosas se exploran a ellas mismas y a otras mujeres. + Adult + + + TVMA + + + + The Life Erotic + Parejas y mujeres se unen a través del placer. + Adult + + + TVMA + + + + Suite Rendezvous + Parejas sedientas de sexo deciden encontrarse en una habitación de hotel para explorar su sensualidad y adentrarse en juegos eróticos. Este espacio los va a llevar a un momento donde las preocupaciones mundanas desaparecen. + Adult + + + TVMA + + + + Suite Rendezvous + Parejas sedientas de sexo deciden encontrarse en una habitación de hotel para explorar su sensualidad y adentrarse en juegos eróticos. Este espacio los va a llevar a un momento donde las preocupaciones mundanas desaparecen. + Adult + + + TVMA + + + + Badass! + Una experiencia explosiva. + Adult + + + TVMA + + + + Spa X + Los clientes de este establecimiento reciben un tratamiento de spa muy especial. + Adult + + + TVMA + + + + Photographer in Love + Victoria, una pudorosa joven del interior, llega a la ciudad para cumplir su sueño de estudiar medicina. Su primo Paul, fotógrafo de moda será con él con quien Victoria encontrará un nuevo motivo para quedarse en la ciudad. + Adult + + + TVMA + + + + Surfing Attraction + Ecuador + Latinas en topless y olas de erotismo en Ecuador. + Adult + + + TVMA + + + + Badass! + Un programa que sigue a las conejitas en sus aventuras extremas y hasta donde nadie se atreve. + Adult + + + TVMA + + + + Badass! + Vueltas en motocicleta; Paravelismo; Kite surfing. + Adult + + + TVMA + + + + The Rub + How Far Would You Go For You Love? + Regular + + + + Playboy's Casting Calls: The Mansion + Chicas reales se desnudan en la mansión de Playboy Casting Calls. + Adult + + + TVMA + + + + FrolicMe Stories + Historias de parejas apasionadas que seducen y buscan llegar al orgasmo bajo cualquier circunstancia. + Adult + + + TVMA + + + + e-Rotic + América traviesa, una página web de clips hardcore y shows pornográficos en directo; Emily Marilyn. + Adult + + + TVMA + + + + Playboy's Amateur Girls + Las chicas cibernéticas más calientes de Playboy. + Adult + + + TVMA + + + + Stranger Sex + Melody Marks, Kate Bloom, Kylie Quinn y Kenzie Reeves son una mujeres jóvenes con comportamientos riesgosos. + + Melody Marks + Kylie Quinn + Kenzie Reeves + + 2022 + Movies + Adult + + + + Naked Happy Girls + California Girls + Sammy ayuda a Andrew a buscar nuevas chicas desnudas. + Adult + + + TVMA + + + + Naked Happy Girls + Sex in the City + Andrew recorre el lado sexy de San Francisco en busca de su chica desnuda de fantasía. + Adult + + + TVMA + + + + Playboy Centerfolds + Las hermosas modelos internacionales lucen su estilo y belleza. + Adult + + + TVMA + + + + Playboy Centerfolds + Las modelos más exclusivas de todas partes del mundo muestran toda su belleza antes las cámaras de Playboy. + Adult + + + TVMA + + + + Playboy's Amateur Girls + Más bellezas cibernéticas. + Adult + + + TVMA + + + + Pleasure Parlour + Adult + + + TVMA + + + + Show Us Your Wits + La playmate Daphnee Dulpaix y estripers de Las Vegas contestan preguntas difíciles por dinero. + Adult + + + TVMA + + + + Show Us Your Wits + Preguntas de trivia con stripperes como distracción. + Adult + + + TVMA + + + + Pleasure Parlour + Adult + + + TVMA + + + + Pleasure Parlour + Adult + + + TVMA + + + + Naked Happy Girls + San Francisco Treats + Andrew conoce a una chica descarada del barrio chino. + Adult + + + TVMA + + + + Spa X + Los clientes de este establecimiento reciben un tratamiento de spa muy especial. + Adult + + + TVMA + + + + Surfing Attraction + Latinas en topless y curvas de sensualidad exótica. + Adult + + + TVMA + + + + Surfing Attraction + Uma y Sofía deciden explorar una isla distante retirada de la costa y de los cuerpos perfectos de los otros. Aimee hace un nuevo contacto por su cuenta. + Adult + + + TVMA + + + + Spa X + Los clientes de este establecimiento reciben un tratamiento de spa muy especial. + Adult + + + TVMA + + + + Spa X + Los clientes de este establecimiento reciben un tratamiento de spa muy especial. + Adult + + + TVMA + + + + Adult Stars: Up Close + Las principales estrellas de películas para adultos conceden acceso entre bastidores a sus vidas personales en episodios reveladores y exclusivos. + Adult + + + TVMA + + + + Adult Stars: Up Close + Las principales estrellas de películas para adultos conceden acceso entre bastidores a sus vidas personales en episodios reveladores y exclusivos. + Adult + + + TVMA + + + + Adult Stars: Up Close + Las principales estrellas de películas para adultos conceden acceso entre bastidores a sus vidas personales en episodios reveladores y exclusivos. + Adult + + + TVMA + + + + Playboy Centerfolds + Las modelos más exclusivas de todas partes del mundo muestran toda su belleza antes las cámaras de Playboy. + Adult + + + TVMA + + + + Playboy Centerfolds + Las modelos más exclusivas de todas partes del mundo muestran toda su belleza antes las cámaras de Playboy. + Adult + + + TVMA + + + + Playboy's Amateur Girls + Chicas cibernéticas superan su timidez para revelar todo. + Adult + + + TVMA + + + + Stranger Sex + Melody Marks, Kate Bloom, Kylie Quinn y Kenzie Reeves son una mujeres jóvenes con comportamientos riesgosos. + + Melody Marks + Kylie Quinn + Kenzie Reeves + + 2022 + Movies + Adult + + + + The Realty Group Sex + Jaime Michelle, Aaliyah Love, Carmen Valentina y Vanessa Vega son esposas atractivas que no entienden porque sus maridos las rechazan. Enfurecidas, van a cobrar venganza con el primer hombre que encuentren cerca. + Specials + Adult + + + TVMA + + + + Badass! + Cada vicio al desnudo se encuentra aquí, topless, superbustos y más. + Adult + + + TVMA + + + + Badass! + Un programa que sigue a las conejitas en sus aventuras extremas y hasta donde nadie se atreve. + Adult + + + TVMA + + + + Stranger Sex + Melody Marks, Kate Bloom, Kylie Quinn y Kenzie Reeves son una mujeres jóvenes con comportamientos riesgosos. + + Melody Marks + Kylie Quinn + Kenzie Reeves + + 2022 + Movies + Adult + + + + Photographer in Love + Victoria, una pudorosa joven del interior, llega a la ciudad para cumplir su sueño de estudiar medicina. Su primo Paul, fotógrafo de moda será con él con quien Victoria encontrará un nuevo motivo para quedarse en la ciudad. + Adult + + + TVMA + + + + Suite Rendezvous + Parejas sedientas de sexo deciden encontrarse en una habitación de hotel para explorar su sensualidad y adentrarse en juegos eróticos. Este espacio los va a llevar a un momento donde las preocupaciones mundanas desaparecen. + Adult + + + TVMA + + + + Room Service + Velma es elegida para administrar un exclusivo hotel. Al llegar es recibida por Milos, el botones, que le entregará todas las llaves del lugar y le advertirá que hay una llave azul que jamás deberá usar, esa llave abre una puerta prohibida. + + Luciana Suarez Lomoro + Valeria Rossati + Melina Marin + + Adult + + + TVMA + + + + The Life Erotic + Mujeres hermosas se exploran a ellas mismas y a otras mujeres. + Adult + + + TVMA + + + + The Life Erotic + Parejas y mujeres se unen a través del placer. + Adult + + + TVMA + + + + Trophy Wives Crave Big Love + Esposas espectaculares que son infieles a sus maridos con hombres que sí las saben satisfacer en la cama. + + Quinn Wilde + Madison Summers + + 2022 + Movies + Adult + + + + Badass! + Cada vicio al desnudo se encuentra aquí, topless, superbustos y más. + Adult + + + TVMA + + + + Badass! + Un programa que sigue a las conejitas en sus aventuras extremas y hasta donde nadie se atreve. + Adult + + + TVMA + + + + Photographer in Love + Victoria, una pudorosa joven del interior, llega a la ciudad para cumplir su sueño de estudiar medicina. Su primo Paul, fotógrafo de moda será con él con quien Victoria encontrará un nuevo motivo para quedarse en la ciudad. + Adult + + + TVMA + + + + Suite Rendezvous + Parejas sedientas de sexo deciden encontrarse en una habitación de hotel para explorar su sensualidad y adentrarse en juegos eróticos. Este espacio los va a llevar a un momento donde las preocupaciones mundanas desaparecen. + Adult + + + TVMA + + + + Private Selfies + Vídeos privados de calientes amateurs. + Adult + + + TVMA + + + + Eternal Allure + Las mujeres más hermosas se desnudan en distintos lugares de todo el mundo. + Adult + + + TVMA + + + + Playboy Centerfolds + Modelos de todo el mundo exhiben su belleza ante las cámaras. + Adult + + + TVMA + + + + Room Service + Velma es elegida para administrar un exclusivo hotel. Al llegar es recibida por Milos, el botones, que le entregará todas las llaves del lugar y le advertirá que hay una llave azul que jamás deberá usar, esa llave abre una puerta prohibida. + + Luciana Suarez Lomoro + Valeria Rossati + Melina Marin + + Adult + + + TVMA + + + + Cougars need big love + Natalie Grace, Cherry Kiss, Angelica Heart y Shalina Devine son cuatro maduras europeas que buscan placer a toda costa. Esta vez toman una sesión de masajes con un profesional de buena mano y gran mástil para quedar tan saciadas como desean. + + Cherry Kiss + Angelica Heart + Shalina Devine + + 2023 + Movies + Adult + + + + Naked Happy Girls + Count Me In + Andrew explora el bosque frondoso de una ecologista desnuda. + Adult + + + TVMA + + + + Spa X + Los clientes de este establecimiento reciben un tratamiento de spa muy especial. + Adult + + + TVMA + + + + Stranger Sex + Melody Marks, Kate Bloom, Kylie Quinn y Kenzie Reeves son una mujeres jóvenes con comportamientos riesgosos. + + Melody Marks + Kylie Quinn + Kenzie Reeves + + 2022 + Movies + Adult + + + + Surfing Attraction + Aimee comienza a florecer, sirviendo como la apasionada última musa de Tokas. + Adult + + + TVMA + + + + Pleasure Parlour + Adult + + + TVMA + + + + Nino Dolce Hotel + Nino se molesta con una de las empleadas por una reserva de la esposa del mayor Sambrota. Además, una emisión más de Ninonoticias y la aparición del genio del amor. + Adult + + + TVMA + + + + Stranger Sex + Melody Marks, Kate Bloom, Kylie Quinn y Kenzie Reeves son una mujeres jóvenes con comportamientos riesgosos. + + Melody Marks + Kylie Quinn + Kenzie Reeves + + 2022 + Movies + Adult + + + + The Life Erotic + Un grupo de bellas mujeres se entrega al placer y exploran su sexualidad entre ellas y con otras personas. + Adult + + + TVMA + + + + The Life Erotic + Un grupo de bellas mujeres se entrega al placer y exploran su sexualidad entre ellas y con otras personas. + Adult + + + TVMA + + + + Naughty Cosplay + Charly va a una fiesta de cosplay, pero su amigo no lo entiende. Después de que ella se lo explique, él se da cuenta de que la verdadera razón por la que lo hace es para echar un polvo... pero quizá ahora no tenga que salir de casa para eso. + + Charly Summer + Delilah Day + Spencer Bradley + + 2022 + Movies + Adult + + + + Naked Happy Girls + Count Me In + Andrew explora el bosque frondoso de una ecologista desnuda. + Adult + + + TVMA + + + + Spa X + Los clientes de este establecimiento reciben un tratamiento de spa muy especial. + Adult + + + TVMA + + + + Spa X + Los clientes de este establecimiento reciben un tratamiento de spa muy especial. + Adult + + + TVMA + + + + Surfing Attraction + Aimee comienza a florecer, sirviendo como la apasionada última musa de Tokas. + Adult + + + TVMA + + + + Pleasure Parlour + Adult + + + TVMA + + + + FrolicMe Stories + Historias de parejas apasionadas que seducen y buscan llegar al orgasmo bajo cualquier circunstancia. + Adult + + + TVMA + + + + e-Rotic + Una dominadora forzuda y depravación canadiense. + Adult + + + TVMA + + + + Playboy's Amateur Girls + Estas amateurs apenas legales se desnudan sólo para ti. MILFs, asiáticas, y colegialas voluptuosas lo muestran todo. + Adult + + + TVMA + + + + Nino Dolce Hotel + Nino se molesta con una de las empleadas por una reserva de la esposa del mayor Sambrota. Además, una emisión más de Ninonoticias y la aparición del genio del amor. + Adult + + + TVMA + + + + Trophy Wives Crave Big Love + Esposas espectaculares que son infieles a sus maridos con hombres que sí las saben satisfacer en la cama. + + Quinn Wilde + Madison Summers + + 2022 + Movies + Adult + + + + Badass! + Una experiencia explosiva. + Adult + + + TVMA + + + + Badass! + Vueltas en motocicleta; Paravelismo; Kite surfing. + Adult + + + TVMA + + + + Private Selfies + Vídeos privados de calientes amateurs. + Adult + + + TVMA + + + + Eternal Allure + Las mujeres más hermosas se desnudan en distintos lugares de todo el mundo. + Adult + + + TVMA + + + + Playboy Centerfolds + Modelos de todo el mundo exhiben su belleza ante las cámaras. + Adult + + + TVMA + + + + Photographer in Love + Victoria, una pudorosa joven del interior, llega a la ciudad para cumplir su sueño de estudiar medicina. Su primo Paul, fotógrafo de moda será con él con quien Victoria encontrará un nuevo motivo para quedarse en la ciudad. + Adult + + + TVMA + + + + Suite Rendezvous + Parejas sedientas de sexo deciden encontrarse en una habitación de hotel para explorar su sensualidad y adentrarse en juegos eróticos. Este espacio los va a llevar a un momento donde las preocupaciones mundanas desaparecen. + Adult + + + TVMA + + + + Room Service + Velma es elegida para administrar un exclusivo hotel. Al llegar es recibida por Milos, el botones, que le entregará todas las llaves del lugar y le advertirá que hay una llave azul que jamás deberá usar, esa llave abre una puerta prohibida. + + Luciana Suarez Lomoro + Valeria Rossati + Melina Marin + + Adult + + + TVMA + + + + The Rub + How Far Would You Go For You Love? + Regular + + + + Playboy's Casting Calls: The Mansion + Chicas reales se desnudan en la mansión de Playboy Casting Calls. + Adult + + + TVMA + + + + Cougar Passions + Estas mujeres maduras checas infieles no son tan jóvenes como sus amantes bien dotados, pero aún pueden enseñar como tomar un mástil rígido en sus bocas y cavidades. + + Kelly Trump + Cinthia Dark + Regine Bardot + + 2021 + Movies + Adult + + + + Badass! + Una experiencia explosiva. + Adult + + + TVMA + + + + Badass! + Vueltas en motocicleta; Paravelismo; Kite surfing. + Adult + + + TVMA + + + + Photographer in Love + Victoria, una pudorosa joven del interior, llega a la ciudad para cumplir su sueño de estudiar medicina. Su primo Paul, fotógrafo de moda será con él con quien Victoria encontrará un nuevo motivo para quedarse en la ciudad. + Adult + + + TVMA + + + + Suite Rendezvous + Parejas sedientas de sexo deciden encontrarse en una habitación de hotel para explorar su sensualidad y adentrarse en juegos eróticos. Este espacio los va a llevar a un momento donde las preocupaciones mundanas desaparecen. + Adult + + + TVMA + + + + FrolicMe Stories + Historias de parejas apasionadas que seducen y buscan llegar al orgasmo bajo cualquier circunstancia. + Adult + + + TVMA + + + + e-Rotic + América traviesa, una página web de clips hardcore y shows pornográficos en directo; Emily Marilyn. + Adult + + + TVMA + + + + Playboy's Amateur Girls + Las chicas cibernéticas más calientes de Playboy. + Adult + + + TVMA + + + + Room Service + Velma es elegida para administrar un exclusivo hotel. Al llegar es recibida por Milos, el botones, que le entregará todas las llaves del lugar y le advertirá que hay una llave azul que jamás deberá usar, esa llave abre una puerta prohibida. + + Luciana Suarez Lomoro + Valeria Rossati + Melina Marin + + Adult + + + TVMA + + + + Naughty Cosplay + Charly va a una fiesta de cosplay, pero su amigo no lo entiende. Después de que ella se lo explique, él se da cuenta de que la verdadera razón por la que lo hace es para echar un polvo... pero quizá ahora no tenga que salir de casa para eso. + + Charly Summer + Delilah Day + Spencer Bradley + + 2022 + Movies + Adult + + + + Naked Happy Girls + The Beat Goes On + Andrew encuentra a una jipi caliente. + Adult + + + TVMA + + + + Spa X + Los clientes de este establecimiento reciben un tratamiento de spa muy especial. + Adult + + + TVMA + + + + FrolicMe Stories + Historias de parejas apasionadas que seducen y buscan llegar al orgasmo bajo cualquier circunstancia. + Adult + + + TVMA + + + + e-Rotic + Una dominadora forzuda y depravación canadiense. + Adult + + + TVMA + + + + Playboy's Amateur Girls + Estas amateurs apenas legales se desnudan sólo para ti. MILFs, asiáticas, y colegialas voluptuosas lo muestran todo. + Adult + + + TVMA + + + + Surfing Attraction + Sofia y Aimee se tentan entre sí; Ethan lleva a las chicas a su cabaña y despierta algo primordial en ellas. + Adult + + + TVMA + + + + Pleasure Parlour + Adult + + + TVMA + + + + Nino Dolce Hotel + Una directora quiere filmar una película en el hotel y visita las instalaciones. Nino le hace un tour muy especial. También, filma sus propios planos. + Adult + + + TVMA + + + + Playboy's Amateur Girls + MILFs, universitarias, lesbianas, este capítulo contiene toda clase de bellezón. + Adult + + + TVMA + + + + Suite Rendezvous: Behind Closed Doors + Nuevas habitaciones de hotel, nuevas parejas y nuevas fantasías. Una oportunidad para verlo todo, desde el detrás de la escena hasta el momento en el que se liberan y explotan de placer. + Adult + + + TVMA + + + + Suite Rendezvous: Behind Closed Doors + Nuevas habitaciones de hotel, nuevas parejas y nuevas fantasías. Una oportunidad para verlo todo, desde el detrás de la escena hasta el momento en el que se liberan y explotan de placer. + Adult + + + TVMA + + + + Mixed love + A estas hermosas chicas de ébano les encanta que las toquen y les chupen las conchitas hasta hacerlas acabar. Lacey London, Hazel Grace, Nicole Kitt y Avery Jane se ponen bien cachondas cuando entran en acción. + + Lacey London + Jay Romero + Hazel Grace + + 2023 + Movies + Adult + + + + Naked Happy Girls + The Beat Goes On + Andrew encuentra a una jipi caliente. + Adult + + + TVMA + + + + Spa X + Los clientes de este establecimiento reciben un tratamiento de spa muy especial. + Adult + + + TVMA + + + + Spa X + Los clientes de este establecimiento reciben un tratamiento de spa muy especial. + Adult + + + TVMA + + + + Surfing Attraction + Sofia y Aimee se tentan entre sí; Ethan lleva a las chicas a su cabaña y despierta algo primordial en ellas. + Adult + + + TVMA + + + + Pleasure Parlour + Adult + + + TVMA + + + + FrolicMe Stories + Historias de parejas apasionadas que seducen y buscan llegar al orgasmo bajo cualquier circunstancia. + Adult + + + TVMA + + + + e-Rotic + Una dominadora forzuda y depravación canadiense. + Adult + + + TVMA + + + + Playboy's Amateur Girls + MILFs, universitarias, lesbianas, este capítulo contiene toda clase de bellezón. + Adult + + + TVMA + + + + Nino Dolce Hotel + Una directora quiere filmar una película en el hotel y visita las instalaciones. Nino le hace un tour muy especial. También, filma sus propios planos. + Adult + + + TVMA + + + + Cougar Passions + Estas mujeres maduras checas infieles no son tan jóvenes como sus amantes bien dotados, pero aún pueden enseñar como tomar un mástil rígido en sus bocas y cavidades. + + Kelly Trump + Cinthia Dark + Regine Bardot + + 2021 + Movies + Adult + + + + Naked Happy Girls + California Girls + Sammy ayuda a Andrew a buscar nuevas chicas desnudas. + Adult + + + TVMA + + + + Spa X + Los clientes de este establecimiento reciben un tratamiento de spa muy especial. + Adult + + + TVMA + + + + FrolicMe Stories + Historias de parejas apasionadas que seducen y buscan llegar al orgasmo bajo cualquier circunstancia. + Adult + + + TVMA + + + + e-Rotic + América traviesa, una página web de clips hardcore y shows pornográficos en directo; Emily Marilyn. + Adult + + + TVMA + + + + Playboy's Amateur Girls + Las chicas cibernéticas más calientes de Playboy. + Adult + + + TVMA + + + + Surfing Attraction + Ecuador + Latinas en topless y olas de erotismo en Ecuador. + Adult + + + TVMA + + + + Pleasure Parlour + Adult + + + TVMA + + + + Nino Dolce Hotel + Nino abre las puertas de su hotel y recibe a una invitada muy especial: la esposa del embajador. Además, las chicas toman clases en la escuelita de Nino y al final del episodio cenan a puertas cerradas. + Adult + + + TVMA + + + + XConfessions Xtreme + Movie Magic + Relatos reales de lujuria delante y detrás de cámara cobran vida. + Adult + + + TVMA + + + + I Screwed My Teacher + Chicas calientes reciben educación sexual, pero pura práctica. + 2010 + Movies + Adult + + + + Naked Happy Girls + California Girls + Sammy ayuda a Andrew a buscar nuevas chicas desnudas. + Adult + + + TVMA + + + + Spa X + Los clientes de este establecimiento reciben un tratamiento de spa muy especial. + Adult + + + TVMA + + + + Surfing Attraction + Ecuador + Latinas en topless y olas de erotismo en Ecuador. + Adult + + + TVMA + + + + Pleasure Parlour + Adult + + + TVMA + + + + Playboy Centerfolds + Las hermosas modelos internacionales lucen su estilo y belleza. + Adult + + + TVMA + + + + Playboy Centerfolds + Las modelos más exclusivas de todas partes del mundo muestran toda su belleza antes las cámaras de Playboy. + Adult + + + TVMA + + + + Playboy's Amateur Girls + Más bellezas cibernéticas. + Adult + + + TVMA + + + + Nino Dolce Hotel + Nino abre las puertas de su hotel y recibe a una invitada muy especial: la esposa del embajador. Además, las chicas toman clases en la escuelita de Nino y al final del episodio cenan a puertas cerradas. + Adult + + + TVMA + + + + Mixed love + A estas hermosas chicas de ébano les encanta que las toquen y les chupen las conchitas hasta hacerlas acabar. Lacey London, Hazel Grace, Nicole Kitt y Avery Jane se ponen bien cachondas cuando entran en acción. + + Lacey London + Jay Romero + Hazel Grace + + 2023 + Movies + Adult + + + + Naked Happy Girls + Buon Appetito + Una chica enseña todo en el viñedo de Sonoma; Una sesión fotográfica con una mesera caliente. + Adult + + + TVMA + + + + Spa X + Los clientes de este establecimiento reciben un tratamiento de spa muy especial. + Adult + + + TVMA + + + + FrolicMe Stories + Historias de parejas apasionadas que seducen y buscan llegar al orgasmo bajo cualquier circunstancia. + Adult + + + TVMA + + + + e-Rotic + Una dominadora forzuda y depravación canadiense. + Adult + + + TVMA + + + + Quick Hunts + The Prince of the African Bush + Sports + + + Hard Truths of Conservation + Out of Africa + Dan Cabela explains the domestic trade in exotic wildlife and how some of the planet's most threatened species are being protected by the practice. + 2022 + Reality + S1 E6 + + TV-PG + + + + Pursue The Wild + Steens Mountain Oregon Antelope & Mule Deer + The legendary Steens Mountain rises alongside the Alvord Desert with deep glacier-carved gorges and sweeping sagebrush landscapes. + 2023 + + + Higdon Outdoors + 910 Mountains of Ducks + Sports + + + Deer and Deer Hunting + Spinal Tap + Sports + + TV-PG + + + + Modern Hunter + Axis in Texas + Brad Rucks returns to Texas for his annual Axis deer hunt with Texas Trophy Whitetails. But this time, he brought a friend down for his first chance at an extremely wide Axis buck. + 2023 + + + Deer & Deer Hunting Properties + Food Plot Strategies + Tim Neumann provides food plot strategies to ensure that viewers have thriving food plots that last from season to season. + 2023 + + + Deertopia + Managing From Afar + 2023 + + + Blaine's Real World + One Chip Challenge + Blaine travels to the Midwest to find a buck and venison, while Bossboy tries the One Chip Challenge in camp. + 2023 + + + The Chase With Ted and Amber + Predator Series + Predator hunting is featured. + 2023 + + + Canadian Whitetail + Deer hunting in Canada. + + Dean Partridge + + Sports + + + Let's Geaux Fishin' With Kevin Ford + Kevin Ford heads to the best fishing destinations on the Louisiana Gulf Coast and explores the best tips and tactics. + + TV-G + + + + Canadian Whitetail + The Maybe Buck + + Dean Partridge + + Sports + + + Carolina All Out + Kerr Lake Crappies + + + Live the Wild Life + Alaska Caribou + 2022 + Sports + + + Whitetail Frenzy + Team Aharon vs Team Kenny: Colorado Elk Part 2 + 2023 + + + Canadian Whitetail + The Maybe Buck + + Dean Partridge + + Sports + + + The Overland Chronicles + Argentine Antlers - Stag Hunting With a Bow + Scott swaps his trusty F-350 for a flight to the diverse landscapes of Argentina. His mission is to bow hunt the impressive red stag. + 2023 + + + Doug Koenig's Championship Season + The Centennial State + Shooting pro Doug Koenig he travels to Walden, Colorado to hunt pronghorn antelope and elk with Spur Outfitters. Doug will be using his Ruger "Hawkeye FTW" chambered in 300 Win Mag. + 2019 + Sports + + + Shoot Straight TV + Wyatt and Keely Go After Wapiti + + + Surviving Mann + Tyrolean Ladder From Hell + An edge-of-your-seat Tyrolean traverse (a horizontal ladder) over-and occasionally plunging into-the alligator occupied lake. Then, watching as the celebrity shooters and special guests unleash the power of some truly formidable machinery. + 2023 + + + Paid Programming + Paid Programming. + + TV-14 + + + + The Edge + Solo Stone Sheep + Sports + + + Struttinbuck + A Year in Review + + + Americana Outdoors + The 6th Annual Turkey Bass Smash Part 2 and the National Walleye Tour From Lake Winnebago + We're wrapping up the exciting action at the 6th annual Yamaha Turkey Bass Smash, and later, Americana Outdoors takes a look at the National Walleye Tour event from Lake Winnebago. + + Wade Middleton + + Sports + + TV-PG + + + + Conquest Scents + Justice + Following Doug Roberts as he works on ConQuest Deer Farm. In addition, Doug discusses and shows the popular ConQuest Scents that come directly from the deer at ConQuest Deer Farm. + 2023 + + + North American Trapper Showcase + Handling Nest Raiders and Coyote's on land or lease. + 2022 + + + Limitless Outdoors + 370\" Colorado Bull on the Last Day + + + The American Way + Saskatchewan Bear and Waterfowl Pt 1 + + + Deer and Deer Hunting + Spinal Tap + Sports + + TV-PG + + + + Modern Hunter + Axis in Texas + Brad Rucks returns to Texas for his annual Axis deer hunt with Texas Trophy Whitetails. But this time, he brought a friend down for his first chance at an extremely wide Axis buck. + 2023 + + + Yamaha's Whitetail Diaries + Whitetail Rut in Texas: Feast or Famine: Part 1 + Wade and Steve are going after whitetail during the peak of the rut. This episode is as unpredicable as a buck during the rut and we can't wait to bring you all the action. + + + Blaine's Real World + One Chip Challenge + Blaine travels to the Midwest to find a buck and venison, while Bossboy tries the One Chip Challenge in camp. + 2023 + + + Pursue The Wild + Steens Mountain Oregon Antelope & Mule Deer + The legendary Steens Mountain rises alongside the Alvord Desert with deep glacier-carved gorges and sweeping sagebrush landscapes. + 2023 + + + Ozonics Experience + Creating More Opportunities + + + Looking for a Medicare Plan? Tune in Now! + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. + 2014 + + + Sportsman's Journal + Impulse Walleyes + 2023 + + + Just Kill'n Time TV + Bearing Down + + + Let's Geaux Fishin' With Kevin Ford + Chasing Bull Reds in Venice + + TV-G + + + + Americana Outdoors + The 6th Annual Turkey Bass Smash Part 2 and the National Walleye Tour From Lake Winnebago + We're wrapping up the exciting action at the 6th annual Yamaha Turkey Bass Smash, and later, Americana Outdoors takes a look at the National Walleye Tour event from Lake Winnebago. + + Wade Middleton + + Sports + + TV-PG + + + + Conquest Scents + Justice + Following Doug Roberts as he works on ConQuest Deer Farm. In addition, Doug discusses and shows the popular ConQuest Scents that come directly from the deer at ConQuest Deer Farm. + 2023 + + + Hunting With HECS + The Challenge of Archery Whitetails + Sports + + + Looking for a Medicare Plan? Tune in Now! + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. + 2014 + + + North American Trapper Showcase + Handling Nest Raiders and Coyote's on land or lease. + 2022 + + + The Direction + Legendary Sam Rayburn with Legend Tommy Martin + In this episode Mark is excited to return to famous Sam Rayburn to fish with one of the legends of bass fishing, Tommy Martin; they'll discuss and capture some information on Tommy's career on this trip for the episode; also will note that Mark fished a Bassmaster Open on the lake back in the early 2000's; another interesting tidbit is that Mark was actually on Sam Rayburn fishing when the space shuttle blew up; he actually heard the explosion and felt the rumble. + + Mark Stowe + + 2023 + Reality + Sports + + TV-G + + + + Wiebe Trapline Adventures + Six Girls on a Trapline Part 2 + + + Final Descent Outdoors + Powers Is the Name + + Brad Clay + + Sports + + + Red Arrow TV + Virginia Gun Season + Kip tracks down a buck in his home state and wraps the season with some drive action. + 2023 + Action & Adventure + + + Carnivore + From Desert to Dense Brush + Sports + + + Surviving Mann + Tyrolean Ladder From Hell + An edge-of-your-seat Tyrolean traverse (a horizontal ladder) over-and occasionally plunging into-the alligator occupied lake. Then, watching as the celebrity shooters and special guests unleash the power of some truly formidable machinery. + 2023 + + + Ted Nugent: Spirit of the Wild + Early Season Monster + + Ted Nugent + + Sports + + + On The Road + North Carolina Bear + Sports + + + McWhorter Rifles' Precision Hunting TV + Bobby Hunts the Novillos Ranch + Master gunsmith Bobby Keigans travels to south Texas to hunt the famed brush country and the Novillos Ranch. Bobby hunts with a new McWhorter 7mm PRC and takes several impressive whitetails. + 2023 + + TV-G + + + + Elusive Wildlife + Lighting It up With Pigman Part 2 + Part 2. With Mother Nature and the clock both against them, Chad and Pigman turn their attentions to some prime hog hunting spots in search of big nocturnal boars. It's time to pile them up with both bows and guns. + 2018 + Sports + + + Long Range Pursuit + 4th and Long + Hunting giant bull elk in New Mexico.. + 2015 + Sports + + + Spiritual Outdoor Adventures + The Ancient Trails of Manitoba + + + Trophy Pond + A Four-Acre Pond in Arkansas + Walt and his employee Andrew catch big northern largemouth. + 2022 + + + Ozonics Experience + Creating More Opportunities + + + Quick Hunts + 75 Yard Archery Caribou + Sports + + + The American Way + Saskatchewant Bear; Fishing Part 2 2023 + + + The Bearded Buck + Home, Sweet Home + + Jerry Tibbott + + 2022 + Sports + + + Let's Geaux Fishin' With Kevin Ford + Fish on the Rocks + + TV-G + + + + Ultimate Deer Hunting System + 2023 + + + Texas Team Trail + Texas Team Trail from Sam Rayburn + Texas Team Trail presented by Bass Pro Shops kicks off the 2023 season from the legendary Sam Rayburn Reservoir. With teams from all over the nation on the water, it is going to be a wide open chase to take the title. + 2023 + + TV-G + + + + The Scott Martin Challenge + Mississippi River Bass Challenge + Scott and Cade explore the labyrinth of bass fishing water on the Mississippi River in La Crosse, Wisconsin. + + Scott Martin + + 2023 + Sports + S18 E7 + + TV-G + + + + On the Water With Hank Parker + A Day With Clay + 2023 + Sports + + TV-PG + + + + Yamaha's Whitetail Diaries + Whitetail Rut in Texas: Feast or Famine: Part 2 + The rutting action in South Texas really heats up as Steve of Yamaha Outdoors continues his pursuit of whitetail during the rut. + + + National Walleye Tour + Nwt Mississippi River - Prairie Du Chien, Wisconsin + National Walleye Tour is at the Mississippi River in Prairie du Chien, Wisconsin for the third stop of the season. + Sports + + TV-G + + + + Blaine's Real World + Last Day Suprise + Blaine is in the Midwest on his last day, looking for a monster buck. He then travels to Florida in search of a Seminole Buck. + 2023 + + + Hunting With HECS + Elusive Midwest Whitetails + Sports + + + Fly Rod Chronicles With Curtis Fleming + Salute to our Hometown Heroes + Curtis, along with the WV DNR, supports the Appalachian Wounded Warriors with fishing fun in Pipestem State Park and Mountain Waters Adventures. + 2023 + + TV-G + + + + Woodfire Outdoor Electric Grill + + + Surviving Mann + The Glove + 2023 + + + Conquest Scents + Deantlering One Year Olds + + + Just Kill'n Time TV + Missouri Bound + + + Mark Peterson's the Journey Within + Colorado Antelope Hunt + Mark Peterson and his friend, Kevin, take their daughters to Colorado for an Antelope hunt. + 2023 + Reality + + + Unleashed Global Adventures + Beary Alaskan + Travel + Sports + + + Decision pointe Outdoors + Filming Fiascos + 2023 + + + Looking for a Medicare Plan? Tune in Now! + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. + 2014 + + + The Scott Martin Challenge + Mississippi River Bass Challenge + Scott and Cade explore the labyrinth of bass fishing water on the Mississippi River in La Crosse, Wisconsin. + + Scott Martin + + 2023 + Sports + S18 E7 + + TV-G + + + + Canadian Whitetail + Tridem + + Dean Partridge + + Sports + + + Ozonics Experience + Creating More Opportunities + + + Carolina All Out + Old Farm Gobblers + + + Swarovski Optik Quests With the Eyes of a Hawk + Wyoming Monster Mule Deer + Spot and stalk monster mule deer in Wyoming with the Swarovski Optik sales force. + 2018 + Sports + + TV-PG + + + + Ted Nugent Spirit of the Wild + Home Sweet Home + + Ted Nugent + + 2023 + Sports + + + North American Trapper + A Real Working Trapline Day #2 + Sports + + + Ultimate Outdoors + Business Trip to the G2 Ranch + + + Conquest Scents + Deantlering One Year Olds + + + The High Road With Keith Warren + Mission Impala-Ssible + + + North American Trapper Showcase + Handling Nest Raiders and Coyote's on land or lease. + 2022 + + + Trigger Time TV + Pursuit Channel Presents: Trigger Time TV 11; 06; 23 + + + Experience Total Gym + Total Gym is the easiest and most effective way to look your best! + + + Hunting With HECS + Elusive Midwest Whitetails + Sports + + + Spiritual Outdoor Adventures + Kids on Target at Wildcat Creek (Part 1) + + + Final Descent Outdoors + Can You Hear Me Now? + + Brad Clay + + Sports + + + Higdon Outdoors + 910 Mountains of Ducks + Sports + + + Legendary Trails TV + Stone & Dall Sheep Hunts + Legendary Trails', Bob Foulkrod, explains his Obsession Quest. He then embarks on Stone and Dall Sheep hunts. + 2023 + + + Wiebe Trapline Adventures + Longline Iowa Ditch Trapping With Justin Deaver - Part 1 + + + Canadian Whitetail + Tridem + + Dean Partridge + + Sports + + + Red Arrow TV + Louisiana Texas + The Campbell Family stops and deer hunts Louisiana for a couple of days on their way to kill some hogs in Texas. + 2023 + Action & Adventure + + + Swarovski Optik Quests With the Eyes of a Hawk + Wyoming Monster Mule Deer + Spot and stalk monster mule deer in Wyoming with the Swarovski Optik sales force. + 2018 + Sports + + TV-PG + + + + The American Way + Saskatchewant Bear; Fishing Part 2 2023 + + + The Virtue: The Woodhavenway + String &Amp; Powder + Mac & Cheese popping primers while P Viddy has a little late-season slice-n-dice, all at Knox County Whitetails. + 2023 + + + Pursue The Wild + Journey for Oryx & Sable + Kristy Titus travels to the Limpopo Province of South Africa in pursuit of the sable. + 2023 + + + Just Kill'n Time TV + Missouri Bound + + + Let's Geaux Fishin' With Kevin Ford + Fish on the Rocks + + TV-G + + + + Mark Peterson's the Journey Within + Colorado Antelope Hunt + Mark Peterson and his friend, Kevin, take their daughters to Colorado for an Antelope hunt. + 2023 + Reality + + + The Way It Was + Oklahoma Whitetail + Sports + + + Yamaha's Whitetail Diaries + Whitetail Rut in Texas: Feast or Famine: Part 2 + The rutting action in South Texas really heats up as Steve of Yamaha Outdoors continues his pursuit of whitetail during the rut. + + + Legendary Trails TV + Stone & Dall Sheep Hunts + Legendary Trails', Bob Foulkrod, explains his Obsession Quest. He then embarks on Stone and Dall Sheep hunts. + 2023 + + + Trophy Pond + A One-Acre Pond in Northern Arkansas + Walt and his employee Andrew fish for giant hand-painted bluegill in this small pond. + 2023 + + + Fly Rod Chronicles With Curtis Fleming + Salute to our Hometown Heroes + Curtis, along with the WV DNR, supports the Appalachian Wounded Warriors with fishing fun in Pipestem State Park and Mountain Waters Adventures. + 2023 + + TV-G + + + + Mojo Untamed + Getting Buff Down Under + Terry travels to Australia with the dream of crossing another species off the bucket list: the water buffalo. + 2023 + + TV-PG + + + + Higdon Outdoors + 910 Mountains of Ducks + Sports + + + Waterfowl Obsession TV Presented by Sx Decoys + Last Flight + 2023 + Sports + + + Set in the Past Presented by North American Trapper + Canadian Trapline Adventure + Alan follows Mike Gurski on his Canadian trapline. + 2023 + + + Trigger Time TV + Pursuit Channel Presents: Trigger Time TV 11; 06; 23 + + + The Ultimate Oath + Freedom Fishing + Hosts Gary Bartels and Steve Holden join OATH registered hero Trip McIngvale in Port O'Connor to do some fishing with Tight Lines Guide Service. + 2022 + Reality + + TV-G + + + + The Bear Whisperer + Spot N Stalk Buck + Blaine is in the Hill Country. Blaine is headed down a mountain to put a stalk on a big Texas buck. + + Blaine Anthony + + 2021 + + + Ultimate Deer Hunting System + 2023 + + + Pursue The Wild + Journey for Oryx & Sable + Kristy Titus travels to the Limpopo Province of South Africa in pursuit of the sable. + 2023 + + + Mojo Untamed + Getting Buff Down Under + Terry travels to Australia with the dream of crossing another species off the bucket list: the water buffalo. + 2023 + + TV-PG + + + + DraftKings + + + Red Arrow TV + Louisiana Texas + The Campbell Family stops and deer hunts Louisiana for a couple of days on their way to kill some hogs in Texas. + 2023 + Action & Adventure + + + Fly Rod Chronicles With Curtis Fleming + Salute to our Hometown Heroes + Curtis, along with the WV DNR, supports the Appalachian Wounded Warriors with fishing fun in Pipestem State Park and Mountain Waters Adventures. + 2023 + + TV-G + + + + On the Water With Hank Parker + A Day With Clay + 2023 + Sports + + TV-PG + + + + Looking for a Medicare Plan? Tune in Now! + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. + 2014 + + + Open Season + Birds and Bucks + Sports + + + Legendary Trails TV + Stone & Dall Sheep Hunts + Legendary Trails', Bob Foulkrod, explains his Obsession Quest. He then embarks on Stone and Dall Sheep hunts. + 2023 + + + The Bearded Buck + Home, Sweet Home + + Jerry Tibbott + + 2022 + Sports + + + Looking for a Medicare Plan? Tune in Now! + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. + 2014 + + + Conquest Scents + Deantlering One Year Olds + + + North American Trapper Showcase + Handling Nest Raiders and Coyote's on land or lease. + 2022 + + + Elusive Wildlife + Marfa Mishap + John Reed and predator hunting pro Kirk McKendree take a roadtrip to Marfa, West Texas, where there's plenty of red light coyotes. After a promising first night, things take an unexpected turn leaving the guys wondering what else can go wrong. + 2019 + Sports + + + Surviving Mann + The Glove + Donn kicks off this episode with a mad dash for individual points. Next, the contestants and celebrity guests are tested with a unique course of fire. + 2023 + + + Car Repair Secrets! + You could save thousands in potential car repairs. + 2019 + + + Whitetail Frenzy + Team Aharon vs Team Kenny: Early Season Whitetails + + + Shoot Straight TV + Bulls in the Land of Enchantment + + + On The Road + Lake Pearl + Sports + + + Ted Nugent Spirit of the Wild + Home Sweet Home + + Ted Nugent + + 2023 + Sports + + + Ozonics Experience + Creating More Opportunities + + + Hunting With HECS + Elusive Midwest Whitetails + Sports + + + Americana Outdoors + Gemsbok Hunting in South Africa and Top Water Fishing for Largemouth Bass + + Wade Middleton + + Sports + + TV-PG + + + + Quick Hunts + 75 Yard Archery Caribou + Sports + + + The Scott Martin Challenge + Mississippi River Bass Challenge + Scott and Cade explore the labyrinth of bass fishing water on the Mississippi River in La Crosse, Wisconsin. + + Scott Martin + + 2023 + Sports + S18 E7 + + TV-G + + + + The Way It Was + Oklahoma Whitetail + Sports + + + Team 200 + Traditional Whitetails - Part 1 + Part 1. An introduction of Wade Fatool and Rick and Rock Bonomo as they chase giant bucks across the Midwest and Canada with traditional archery gear. + + Adam Hays + + 2020 + Sports + + TV-PG + + + + Modern Hunter + Deer Camp + Two brothers try to recreate an image of the first deer they shot together years ago. + 2023 + + + Carolina All Out + Old Farm Gobblers + + + Deer and Deer Hunting + Subzero Whitetails + Sports + + TV-PG + + + + Yamaha's Whitetail Diaries + Whitetail Rut in Texas: Feast or Famine: Part 2 + The rutting action in South Texas really heats up as Steve of Yamaha Outdoors continues his pursuit of whitetail during the rut. + + + Hunting With HECS + Elusive Midwest Whitetails + Sports + + + Conquest Scents + Deantlering One Year Olds + + + Brandon Belt Fishing + The Show Team Series - Sam Rayburn 2023 + We follow anglers on Day 1 & 2 of The Show Team Series Presented by Basscat as the compete on Lake Sam Rayburn for bragging rights and their chance at $50,000. + 2023 + + + Yamaha's Whitetail Diaries + Whitetail Rut in Texas: Feast or Famine: Part 2 + The rutting action in South Texas really heats up as Steve of Yamaha Outdoors continues his pursuit of whitetail during the rut. + + + Wiebe Trapline Adventures + Longline Iowa Ditch Trapping With Justin Deaver - Part 1 + + + Hard Truths of Conservation + Resurfacing in the Everglades + Dan Cabela takes a closer look into the efforts in recovering the alligator population in Florida. + 2022 + Reality + S2 E1 + + TV-PG + + + + Higdon Outdoors + 910 Mountains of Ducks + Sports + + + Ultimate Deer Hunting System + 2023 + + + Man vs Elk + Bow Hunting Elk + Sports + + + Wiebe Trapline Adventures + Longline Iowa Ditch Trapping With Justin Deaver - Part 1 + + + Dream Makers + The Call of the Hunt + + + Dying Breed TV + Shawn Chatham features hunts. + Sports + + + Keith Warren's Deer & Wildlife Stories + High Rollers of the Deer Industry!! High Roller Whitetails + 2023 + + + On the Water With Hank Parker + A Day With Clay + 2023 + Sports + + TV-PG + + + + Hunting With HECS + Elusive Midwest Whitetails + Sports + + + The Bassquatch Hunter - Fish out of Water + Kayak Fishing vs. Pizza Truck + Mike takes Jim Combs, the owner of Rollin' Stone Pizza, kayak fishing for the first time and catches the largest fish of his life! Then Mike discovers how difficult it is to prepare pizza. + 2023 + + + Woodfire Outdoor Electric Grill + + + The Ultimate Oath + Freedom Fishing + Hosts Gary Bartels and Steve Holden join OATH registered hero Trip McIngvale in Port O'Connor to do some fishing with Tight Lines Guide Service. + 2022 + Reality + + TV-G + + + + Ozonics Experience + Creating More Opportunities + + + Conquest Scents + Deantlering One Year Olds + + + Brandon Belt Fishing + The Show Team Series - Sam Rayburn 2023 + We follow anglers on Day 1 & 2 of The Show Team Series Presented by Basscat as the compete on Lake Sam Rayburn for bragging rights and their chance at $50,000. + 2023 + + + The Bear Whisperer + Spot N Stalk Buck + Blaine is in the Hill Country. Blaine is headed down a mountain to put a stalk on a big Texas buck. + + Blaine Anthony + + 2021 + + + DraftKings + + + Wallhanger TV With Chad & Dana + Calling for Snow + Sports + + + Trailing the Hunter's Moon + Whitetail Here, There, Everywhere + + Larry Weishuhn + + Sports + + + Looking for a Medicare Plan? Tune in Now! + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. + 2014 + + + Pursue The Wild + Journey for Oryx & Sable + Kristy Titus travels to the Limpopo Province of South Africa in pursuit of the sable. + 2023 + + + The Way It Was + Oklahoma Whitetail + Sports + + + The Direction + Winter Time Bassin' on Dale Hallow + Mark is joined by Mitchell Johnson, the owner of Dead End Game Calls; Mitchell loves to turkey hunt and to fish, but also loves carp fishing; Some turkey hunting conversation may be had, but Mitchell loves carp fishing and actually has a whole line of products for it. + + Mark Stowe + + 2018 + Reality + Sports + + TV-G + + + + Ted Nugent Spirit of the Wild + Home Sweet Home + + Ted Nugent + + 2023 + Sports + + + The Virtue: The Woodhavenway + String &Amp; Powder + Mac & Cheese popping primers while P Viddy has a little late-season slice-n-dice, all at Knox County Whitetails. + 2023 + + + Struttinbuck + South Dakota + + + The High Road With Keith Warren + Mission Impala-Ssible + + + Looking for a Medicare Plan? Tune in Now! + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. + 2014 + + + The Overland Chronicles + Blessed Kansas Whiettail + After hunting for days without a glimpse of a big Whitetail buck, Scott's luck finally changes as a friend comes to the rescue and gives him a chance to hunt some of the best country in Kansas. + 2022 + + + Americana Outdoors + Gemsbok Hunting in South Africa and Top Water Fishing for Largemouth Bass + + Wade Middleton + + Sports + + TV-PG + + + + Hard Truths of Conservation + Resurfacing in the Everglades + Dan Cabela takes a closer look into the efforts in recovering the alligator population in Florida. + 2022 + Reality + S2 E1 + + TV-PG + + + + Long Range Pursuit + A Day in the Canyon + Wyoming mountain-goat action. + Sports + + + Doug Koenig's Championship Season + Bullets of Fury + Sports + + + Open Season + Birds and Bucks + Sports + + + Fisherman's Digest + Lake of the Woods + John Bergsma showcases fishing hot spots in the Great Lakes region. + 2021 + + TV-G + + + + Great Gifts + Presents for everyone on one's list. + Shopping + + + TVG + + + + Belle by Kim Gravel - Fashion + Figure-focused fashion. + Shopping + Fashion + + + TVG + + + + Shawn Saves Christmas + Gifts, decor and more with host Shawn Killinger. + Shopping + + + TVG + + + + VitaMix: More Than a Blender + High-performance blending machines. + Shopping + Food + + + TVG + + + + Great Gifts + Presents for everyone on one's list. + Shopping + + + TVG + + + + Great Gifts + Presents for everyone on one's list. + Shopping + + + TVG + + + + Nonstop Holiday Party + Shopping + + + TVG + + + + Countdown to Christmas + Gift Edition + Holiday Trim, Toys & More. + Shopping + Christmas + + + TVG + + + + Nonstop Holiday Party + Shopping + + + TVG + + + + In the Kitchen With David + Innovative appliances, kitchenware, and cookbooks as well as food, fun, and everything a home cook needs to create great meals and memories. + Shopping + Food + + + TVG + + + + Nonstop Holiday Party + Shopping + + + TVG + + + + Susan Graver Style + Designer fashions that are easy to wear and care for. + Shopping + Fashion + + + TVG + + + + Nonstop Holiday Party + Shopping + + + TVG + + + + BumbleBella by Jill Martin + Specials + Fashion + + + TVG + + + + Peace Love World - Fashion + Casual-cool fashion with inspirational messages. + Shopping + Fashion + + + TVG + + + + Just Reduced - Fashion & Accessories + Clearance prices. + Fashion + + + TVG + + + + BumbleBella by Jill Martin + Specials + Fashion + + + TVG + + + + The Perfect Gift With Jen Coffey + Shopping + + + TVG + + + + Affinity Gems + Signature collection of precious, semiprecious, opaque and exotic gemstones, all set in precious metals. + Specials + Shopping + + + TVG + + + + Mally: Color Cosmetics + Cosmetics from celebrity makeup artist Mally Roncal. + Shopping + Fashion + + + TVG + + + + Fashion Deals With Leah Williams + Deals on the looks you love with host Leah Williams. + Fashion + Shopping + + + TVG + + + + TATCHA - Skin Care + Skin care inspired by the ancient beauty rituals of Japanese Geisha. + Shopping + Fashion + + + TVG + + + + Gifts of Style + Women's apparel and accessories. + Shopping + + + TVG + + + + Very Merry Deals + Hottest gift deals of the day. + Shopping + + + TVG + + + + Laura Geller Makeup Studio + Cosmetics from the renowned New York make-up artist. + Shopping + Fashion + + + TVG + + + + BumbleBella by Jill Martin + Specials + Fashion + + + TVG + + + + Quacker Factory by Jeanne Bice + Embellished women's clothing and accessories. + Shopping + Fashion + + + TVG + + + + TATCHA - Skin Care + Skin care inspired by the ancient beauty rituals of Japanese Geisha. + Shopping + Fashion + + + TVG + + + + LOGO by Lori Goldstein + Contemporary fashion and accessories. + Shopping + Fashion + + + TVG + + + + PM Style With Amy Stran + Fashion, fun and friends with Amy Stran. + Shopping + Fashion + + + TVG + + + + Accessorize With Shawn + Host Shawn Killinger shares affordable ways to update one's wardrobe. + Shopping + Fashion + + + TVG + + + + Shawn on Style + Leveling up one's look with weekly wardrobe inspiration from host Shawn Killinger. + Fashion + Shopping + + + TVG + + + + NuFACE Anti-Aging Innovations + At home skin care solutions from NuFACE. + Shopping + + + TVG + + + + Shoe Shopping With Courtney + Footwear and fun with host Courtney Khondabi. + Shopping + + + TVG + + + + Anybody Fashion + Contemporary fashion designed especially for QVC. + Fashion + + + TVG + + + + NuFACE Anti-Aging Innovations + At home skin care solutions from NuFACE. + Shopping + + + TVG + + + + Quacker Factory by Jeanne Bice + Embellished women's clothing and accessories. + Shopping + Fashion + + + TVG + + + + Peace Love World - Fashion + Casual-cool fashion with inspirational messages. + Shopping + Fashion + + + TVG + + + + philosophy - beauty + Inspirational line of skin care, fragrance, bath and body products, and cosmetics. + Shopping + + + TVG + + + + Get Gorgeous, Give Gorgeous + Self-care essentials and gifts for beauty-lovers. + Shopping + + + TVG + + + + NuFACE Anti-Aging Innovations + At home skin care solutions from NuFACE. + Shopping + + + TVG + + + + Denim & Co. + Classic and affordable women's separates. + Shopping + Fashion + + + TVG + + + + Very Merry Deals + Hottest gift deals of the day. + Shopping + + + TVG + + + + tarte beauty + Beautiful color cosmetics. + Shopping + + + TVG + + + + It Takes Two With Mary & Sandra -- Holiday + Sisterhood and holiday shopping with longtime friends and program hosts Mary DeAngelis and Sandra Bennett. + Shopping + + + TVG + + + + Gifts of Style + Women's apparel and accessories. + Shopping + + + TVG + + + + Gift Guide + Must-have gifts for everyone on your list. + Shopping + + + TVG + + + + NuFACE Anti-Aging Innovations + At home skin care solutions from NuFACE. + Shopping + + + TVG + + + + Shoe Shopping With Courtney and Jane + Footwear and fun with Jane Treacy and Courtney Khondabi. + Shopping + Fashion + + + TVG + + + + Girls' Night in for the Holidays Courtney & Jane + Shopping + + + TVG + + + + Mrs. Prindable's Handmade Confections + A delicious assortment of sweet and salty treats. + Shopping + + + TVG + + + + Sweets & Treats + Regular + + + TVG + + + + Corky's Southern Holiday + Shopping + Food + + + TVG + + + + Mrs. Prindable's Handmade Confections + A delicious assortment of sweet and salty treats. + Shopping + + + TVG + + + + Sweets & Treats + Regular + + + TVG + + + + Corky's Southern Holiday + Shopping + Food + + + TVG + + + + Mrs. Prindable's Handmade Confections + A delicious assortment of sweet and salty treats. + Shopping + + + TVG + + + + Breakfast With Mary + Rise & shine for a menu of morning foodie faves with Program Host Mary DeAngelis. + Regular + + + TVG + + + + Gourmet Holiday + Gourmet foods for everyday dining, holiday entertaining or gift-giving. + Shopping + Food + + + TVG + + + + Foodie Finds + Culinary items for one's food-obsessed friends and family. + Shopping + + + TVG + + + + Gourmet Holiday + Gourmet foods for everyday dining, holiday entertaining or gift-giving. + Shopping + Food + + + TVG + + + + Gourmet Holiday + Gourmet foods for everyday dining, holiday entertaining or gift-giving. + Shopping + Food + + + TVG + + + + HomeWorx by Slatkin & Co. Candles & Home Fragrance + Candles and home scents from fragrance expert. + Shopping + + + TVG + + + + Warm & Comfy Linens + Today's special value and big deal offers. Comforters, pillows, sheets and more. + Shopping + + + TVG + + + + HairMax: The Science of Hair Growth + Products specifically designed to treat hair loss. + Shopping + Health + + + TVG + + + + Primetime Specials -- Expires Tonight + First-quality items at a low prime-time special price. + Shopping + + + TVG + + + + Gifts of Style + Women's apparel and accessories. + Shopping + + + TVG + + + + Gifts of Style + Women's apparel and accessories. + Shopping + + + TVG + + + + Peace Love World - Fashion + Casual-cool fashion with inspirational messages. + Shopping + Fashion + + + TVG + + + + Cute & Comfy Fashion + Comfy fashion must-haves. + Fashion + + + TVG + + + + Breezies Intimates Collection + Comfortable undergarments. + Shopping + Fashion + + + TVG + + + + Jewelry Gifts + Fine and fashion and watches. + Shopping + Fashion + + + TVG + + + + Isaac Mizrahi Live! + Lifestyle collection by award-winning fashion designer. + Shopping + + + TVG + + + + LOGO by Lori Goldstein + Contemporary fashion and accessories. + Shopping + Fashion + + + TVG + + + + Sunday Morning Q + Sunday shopping showcase. + Shopping + + + TVG + + + + Belle by Kim Gravel - Fashion + Figure-focused fashion. + Shopping + Fashion + + + TVG + + + + Women With Control + Fashionable tops and bottoms to give attitude and confidence. + Shopping + + + TVG + + + + Shoe Shopping + Weekly footwear showcase featuring leading brands. + Shopping + + + TVG + + + + Susan Graver Style + Designer fashions that are easy to wear and care for. + Shopping + Fashion + + + TVG + + + + Joan Rivers Classics Collection + Celebrity line of fashion accessories and jewelry. + Shopping + Fashion + + + TVG + + + + Isaac Mizrahi Live! + Lifestyle collection by award-winning fashion designer. + Shopping + + + TVG + + + + Anybody Fashion + Contemporary fashion designed especially for QVC. + Fashion + + + TVG + + + + Clarks Footwear + Comfort shoes. + Shopping + Fashion + + + TVG + + + + Lug - Bags & Accessories + Colorful bags with superb organization. + Shopping + + + TVG + + + + Dennis by Dennis Basso + Outerwear & Sportswear by Couture Designer. + Shopping + + + TVG + + + + Primetime Specials -- Expires Tonight + First-quality items at a low prime-time special price. + Shopping + + + TVG + + + + Saturday Morning Gifts + Ideas for everyone. + Shopping + + + TVG + + + + Saturday Morning Gifts + Ideas for everyone. + Shopping + + + TVG + + + + La-Z-Boy + Comfortable recliners from La-Z-Boy Company. + Shopping + + + TVG + + + + In the Kitchen With David + Innovative appliances, kitchenware, and cookbooks as well as food, fun, and everything a home cook needs to create great meals and memories. + Shopping + Food + + + TVG + + + + Mary Beth's Gift Guide + NFL + Gift suggestions from Mary Beth Roe. + Shopping + + + TVG + + + + Dyson Cleaning + Innovative vacuums and accessories. + Shopping + + + TVG + + + + Storage Solutions + Shopping + + + TVG + + + + Practical Presents + Unique gift ideas. + Shopping + + + TVG + + + + Duraflame Heaters + Home heating solutions. + Shopping + + + TVG + + + + The Joy of Toys + Gifts of toys. + Shopping + + + TVG + + + + Tech the Halls Gifts + Christmas + Shopping + + + TVG + + + + Gifts for the Home + Elegant accents and practical presents for the home. + Shopping + + + TVG + + + + Steve & Vanessa's Holi-YAYS + Shopping + + + TVG + + + + Warm & Comfy Gifts + Regular + + + TVG + + + + Primetime Specials -- Expires Tonight + First-quality items at a low prime-time special price. + Shopping + + + TVG + + + + In the Kitchen With David + Innovative appliances, kitchenware, and cookbooks as well as food, fun, and everything a home cook needs to create great meals and memories. + Shopping + Food + + + TVG + + + + In the Kitchen With David + Innovative appliances, kitchenware, and cookbooks as well as food, fun, and everything a home cook needs to create great meals and memories. + Shopping + Food + + + TVG + + + + Great Gifts + Presents for everyone on one's list. + Shopping + + + TVG + + + + Accessorize With Shawn + Host Shawn Killinger shares affordable ways to update one's wardrobe. + Shopping + Fashion + + + TVG + + + + Shawn on Style + Leveling up one's look with weekly wardrobe inspiration from host Shawn Killinger. + Fashion + Shopping + + + TVG + + + + Susan Graver Style + Designer fashions that are easy to wear and care for. + Shopping + Fashion + + + TVG + + + + Shoe Shopping With Courtney + Footwear and fun with host Courtney Khondabi. + Shopping + + + TVG + + + + My Time With Mary Beth - Jewelry Edition + Regular + + + TVG + + + + Diamonique Jewelry Sale + Low Sale Prices on cubic zirconia. + Regular + + + TVG + + + + Or Paz Israeli Silver Jewelry + Sterling jewelry. + Shopping + Fashion + + + TVG + + + + Jewelry Gifts + Fine and fashion and watches. + Shopping + Fashion + + + TVG + + + + Gold Jewelry Gifts + Fine jewelry in 14K and 18K gold. + Shopping + + + TVG + + + + Diamonique Designer Gallery + Designer looks in world's finest simulated gemstone jewelry. + Shopping + + + TVG + + + + Gemstone Jewelry Gifts + Shopping + + + TVG + + + + Diamonique Jewelry Gifts + Fine jewelry gifts featuring the world's finest simulated gemstone. + Shopping + + + TVG + + + + Jewelry Gifts Under $100 + Shopping + + + TVG + + + + JAI Jewelry + Affordable luxury jewelry. + Shopping + + + TVG + + + + Primetime Specials -- Expires Tonight + First-quality items at a low prime-time special price. + Shopping + + + TVG + + + + Denim & Co. + Classic and affordable women's separates. + Shopping + Fashion + + + TVG + + + + Denim & Co. + Classic and affordable women's separates. + Shopping + Fashion + + + TVG + + + + PM Style With Amy Stran + Fashion, fun and friends with Amy Stran. + Shopping + Fashion + + + TVG + + + + Girls' Night in for the Holidays Courtney & Jane + Shopping + + + TVG + + + + Gift Guide + Must-have gifts for everyone on your list. + Shopping + + + TVG + + + + Quacker Factory by Jeanne Bice + Embellished women's clothing and accessories. + Shopping + Fashion + + + TVG + + + + Women with Control Clearance-Featuring Attitude by Renee + Fashionable tops and bottoms to give attitude and confidence at clearance prices. + Shopping + Fashion + + + TVG + + + + LOGO by Lori Goldstein Clearance + Contemporary fashion and accessories from leading stylist at low clearance prices. + Shopping + Fashion + + + TVG + + + + Belle by Kim Gravel Clearance - Fashion + Clearance prices on figure-focused fashion. + Shopping + Fashion + + + TVG + + + + Girl With Curves -- Fashion -- Clearance + Fashion + Shopping + + + TVG + + + + Isaac Mizrahi Live! Clearance + Low clearance prices on lifestyle collection by award-winning fashion designer. + Shopping + Fashion + + + TVG + + + + Susan Graver Style Clearance + Easy-to-wear designer fashions. + Shopping + + + TVG + + + + Your Style Live Clearance + Fashion + + + TVG + + + + Noticias RCN + Un espacio para encontrar contenidos de opinión, análisis y debate. Toda la información originada desde el lugar de la noticia. + News + + + + Yo, José Gabriel + Las noches se llenan de estrellas con grandes entrevistas a diversos invitados y la mejor música. + Talk Shows + Variety + + + TVPG + + + + Entrevistas con Hernán + Profundas entrevistas con las grandes figuras del momento. + Regular + + + + El show de las estrellas + Programa musical con presentaciones en distintas partes de Colombia. + Music + + + + Colombia a la carta + Un programa dedicado a resaltar la riqueza culinaria de Colombia mostrando recetas, cocineros y lugares para visitar. Un espacio para los amantes del buen comer. + Food + + + + Vivendo TV + Un programa donde se promociona la venta de viviendas en las principales ciudades de Colombia. + Local + + + + Hasta que la plata nos separe + Debido a un accidente con Alejandra, Rafael tendrá que trabajar muchas horas en la empresa de Alejandra para cubrir los gastos del accidente. + + Victor Hugo Cabrera + Marcela Carvajal + Humberto Dorado + + Soaps + Comedy + + + TV14 + + + + Hasta que la plata nos separe + Debido a un accidente con Alejandra, Rafael tendrá que trabajar muchas horas en la empresa de Alejandra para cubrir los gastos del accidente. + + Victor Hugo Cabrera + Marcela Carvajal + Humberto Dorado + + Soaps + Comedy + + + TV14 + + + + El Mundo del Campo + Programa sobre la cultura colombiana, las tradiciones, los festivales, la comida y mucho más de cada región. + History + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + El despecho + Se presentan los videos de los mejores artistas regionales y nacionales de música popular, acompañado de presentaciones. + Music + Performing Arts + + + + Vivendo TV + Un programa donde se promociona la venta de viviendas en las principales ciudades de Colombia. + Local + + + + La Santa Misa + Jesús rompió todos los paradigmas y sellos que aprisionaban a la humanidad. A través de su muerte y resurrección se nace a una nueva vida, realidad que llena de gozo y se celebra en la santa misa. + Religious + + + + Colombia a la carta + Un programa dedicado a resaltar la riqueza culinaria de Colombia mostrando recetas, cocineros y lugares para visitar. Un espacio para los amantes del buen comer. + Food + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + La Santa Misa + Jesús rompió todos los paradigmas y sellos que aprisionaban a la humanidad. A través de su muerte y resurrección se nace a una nueva vida, realidad que llena de gozo y se celebra en la santa misa. + Religious + + + + Transforma Pacífico + Un programa que muestra las experiencias de los emprendedores y empresarios de la región. + Business + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Tr3inta y 2 regionalmente nuestro + Programa de la Federación de Departamentos que busca recorrer los 32 departamentos de Colombia, mostrar su cultura, tradiciones, gastronomía y sitios turísticos, además de visitar y animar a los colombianos a recorrer su país. + + Liche Durán + + Travel + Performing Arts + + + + El despecho + Se presentan los videos de los mejores artistas regionales y nacionales de música popular, acompañado de presentaciones. + Music + Performing Arts + + + + Noticias RCN + Un espacio para encontrar contenidos de opinión, análisis y debate. Toda la información originada desde el lugar de la noticia. + News + + + + Vivendo TV + Un programa donde se promociona la venta de viviendas en las principales ciudades de Colombia. + Local + + + + Colombia a la carta + Un programa dedicado a resaltar la riqueza culinaria de Colombia mostrando recetas, cocineros y lugares para visitar. Un espacio para los amantes del buen comer. + Food + + + + Deportistas de lujo + Programa enfocado en conocer más detalladamente a los protagonistas que se destacan en las diferentes disciplinas deportivas. + Sports + Talk Show + + + + El despecho + Se presentan los videos de los mejores artistas regionales y nacionales de música popular, acompañado de presentaciones. + Music + Performing Arts + + + + Hola gente + Un programa basado en humor, concursos y premios para los televidentes. También cuenta con invitados de la farándula. Este es un espacio donde cualquier persona de una típica familia colombiana se siente identificada. + Performing Arts + + + + Noticias RCN + Un espacio para encontrar contenidos de opinión, análisis y debate. Toda la información originada desde el lugar de la noticia. + News + + + + Noticias RCN + Especial noticias RCN + Un espacio para encontrar contenidos de opinión, análisis y debate. Toda la información originada desde el lugar de la noticia. + News + + + + Deportistas de lujo + Programa enfocado en conocer más detalladamente a los protagonistas que se destacan en las diferentes disciplinas deportivas. + Sports + Talk Show + + + + Yo, José Gabriel + Las noches se llenan de estrellas con grandes entrevistas a diversos invitados y la mejor música. + Talk Shows + Variety + + + TVPG + + + + Colombia a la carta + Un programa dedicado a resaltar la riqueza culinaria de Colombia mostrando recetas, cocineros y lugares para visitar. Un espacio para los amantes del buen comer. + Food + + + + Vivendo TV + Un programa donde se promociona la venta de viviendas en las principales ciudades de Colombia. + Local + + + + Hasta que la plata nos separe + Debido a un accidente con Alejandra, Rafael tendrá que trabajar muchas horas en la empresa de Alejandra para cubrir los gastos del accidente. + + Victor Hugo Cabrera + Marcela Carvajal + Humberto Dorado + + Soaps + Comedy + + + TV14 + + + + El Mundo del Campo + Programa sobre la cultura colombiana, las tradiciones, los festivales, la comida y mucho más de cada región. + History + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Noticias RCN + Un espacio para encontrar contenidos de opinión, análisis y debate. Toda la información originada desde el lugar de la noticia. + News + + + + Yo, José Gabriel + Las noches se llenan de estrellas con grandes entrevistas a diversos invitados y la mejor música. + Talk Shows + Variety + + + TVPG + + + + Colombia a la carta + Un programa dedicado a resaltar la riqueza culinaria de Colombia mostrando recetas, cocineros y lugares para visitar. Un espacio para los amantes del buen comer. + Food + + + + Hasta que la plata nos separe + Debido a un accidente con Alejandra, Rafael tendrá que trabajar muchas horas en la empresa de Alejandra para cubrir los gastos del accidente. + + Victor Hugo Cabrera + Marcela Carvajal + Humberto Dorado + + Soaps + Comedy + + + TV14 + + + + Hablando claro con Flavia Dos Santos + Un programa que busca solucionar conflictos cotidianos que ocurren entre los ciudadanos. + Talk Shows + + + + Ponte al día con Cata Robayo + Más que un programa de variedades, es una grandiosa oportunidad para que todas las personas se pongan al día con Catalina Robayo en diferentes temas, desde el cuidado de salud, belleza, cocina y más. + Talk Shows + News + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Entrevistas con Hernán + Profundas entrevistas con las grandes figuras del momento. + Regular + + + + Noticias RCN + Un espacio para encontrar contenidos de opinión, análisis y debate. Toda la información originada desde el lugar de la noticia. + News + + + + Yo, José Gabriel + Las noches se llenan de estrellas con grandes entrevistas a diversos invitados y la mejor música. + Talk Shows + Variety + + + TVPG + + + + Lo Mejor de la Liga Águila + Todos los goles del Torneo Águila, entrevistas, ruedas de prensa y demás. Lo mejor del torneo. Un resumen completo de lo que ocurre fecha a fecha en el Torneo de la B. + Sports + + + + Girls O'clock + El mundo de la moda llega con una mirada diferente. Las pasarelas, los backstages y los eventos más top de la moda se dan cita con los mejores diseñadores del mundo. + Fashion + + + + Hasta que la plata nos separe + Debido a un accidente con Alejandra, Rafael tendrá que trabajar muchas horas en la empresa de Alejandra para cubrir los gastos del accidente. + + Victor Hugo Cabrera + Marcela Carvajal + Humberto Dorado + + Soaps + Comedy + + + TV14 + + + + Tenemos que hablar + Todo el glamour del mundo del espectáculo, con novedades, polémicas y lo último en información sobre las estrellas del entretenimiento. + News Magazine + Performing Arts + + + + El despecho + Se presentan los videos de los mejores artistas regionales y nacionales de música popular, acompañado de presentaciones. + Music + Performing Arts + + + + Trendiando + Lo mejor del entretenimiento y las nuevas tendencias. + Performing Arts + + + + Noticias RCN + Un espacio para encontrar contenidos de opinión, análisis y debate. Toda la información originada desde el lugar de la noticia. + News + + + + Hasta que la plata nos separe + Debido a un accidente con Alejandra, Rafael tendrá que trabajar muchas horas en la empresa de Alejandra para cubrir los gastos del accidente. + + Victor Hugo Cabrera + Marcela Carvajal + Humberto Dorado + + Soaps + Comedy + + + TV14 + + + + Charla técnica + El análisis, la opinión y el resumen de la jornada deportiva. + Sports + Talk Show + + + + Noticias RCN + Un espacio para encontrar contenidos de opinión, análisis y debate. Toda la información originada desde el lugar de la noticia. + News + + + + El despecho + Se presentan los videos de los mejores artistas regionales y nacionales de música popular, acompañado de presentaciones. + Music + Performing Arts + + + + Lo Mejor de la Liga Águila + Todos los goles del Torneo Águila, entrevistas, ruedas de prensa y demás. Lo mejor del torneo. Un resumen completo de lo que ocurre fecha a fecha en el Torneo de la B. + Sports + + + + Trendiando + Lo mejor del entretenimiento y las nuevas tendencias. + Performing Arts + + + + Hasta que la plata nos separe + Debido a un accidente con Alejandra, Rafael tendrá que trabajar muchas horas en la empresa de Alejandra para cubrir los gastos del accidente. + + Victor Hugo Cabrera + Marcela Carvajal + Humberto Dorado + + Soaps + Comedy + + + TV14 + + + + El Mundo del Campo + Programa sobre la cultura colombiana, las tradiciones, los festivales, la comida y mucho más de cada región. + History + + + + Noticias RCN + Un espacio para encontrar contenidos de opinión, análisis y debate. Toda la información originada desde el lugar de la noticia. + News + + + + Mañana express + Todas las noticias de actualidad con un toque de buen humor. + News Magazine + + + + Hablando claro con Flavia Dos Santos + Un programa que busca solucionar conflictos cotidianos que ocurren entre los ciudadanos. + Talk Shows + + + + Ponte al día con Cata Robayo + Más que un programa de variedades, es una grandiosa oportunidad para que todas las personas se pongan al día con Catalina Robayo en diferentes temas, desde el cuidado de salud, belleza, cocina y más. + Talk Shows + News + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + América se entera + Tratamiento objetivo y profundo de las noticias más relevantes de la actualidad. + News + + + + Noticias RCN + Un espacio para encontrar contenidos de opinión, análisis y debate. Toda la información originada desde el lugar de la noticia. + News + + + + Yo, José Gabriel + Las noches se llenan de estrellas con grandes entrevistas a diversos invitados y la mejor música. + Talk Shows + Variety + + + TVPG + + + + Hasta que la plata nos separe + Debido a un accidente con Alejandra, Rafael tendrá que trabajar muchas horas en la empresa de Alejandra para cubrir los gastos del accidente. + + Victor Hugo Cabrera + Marcela Carvajal + Humberto Dorado + + Soaps + Comedy + + + TV14 + + + + Tenemos que hablar + Todo el glamour del mundo del espectáculo, con novedades, polémicas y lo último en información sobre las estrellas del entretenimiento. + News Magazine + Performing Arts + + + + El show de las estrellas + Programa musical con presentaciones en distintas partes de Colombia. + Music + + + + Trendiando + Lo mejor del entretenimiento y las nuevas tendencias. + Performing Arts + + + + Noticias RCN + Un espacio para encontrar contenidos de opinión, análisis y debate. Toda la información originada desde el lugar de la noticia. + News + + + + Hasta que la plata nos separe + Debido a un accidente con Alejandra, Rafael tendrá que trabajar muchas horas en la empresa de Alejandra para cubrir los gastos del accidente. + + Victor Hugo Cabrera + Marcela Carvajal + Humberto Dorado + + Soaps + Comedy + + + TV14 + + + + Charla técnica + El análisis, la opinión y el resumen de la jornada deportiva. + Sports + Talk Show + + + + Noticias RCN + Un espacio para encontrar contenidos de opinión, análisis y debate. Toda la información originada desde el lugar de la noticia. + News + + + + El despecho + Se presentan los videos de los mejores artistas regionales y nacionales de música popular, acompañado de presentaciones. + Music + Performing Arts + + + + Entrevistas con Hernán + Profundas entrevistas con las grandes figuras del momento. + Regular + + + + Trendiando + Lo mejor del entretenimiento y las nuevas tendencias. + Performing Arts + + + + Hasta que la plata nos separe + Debido a un accidente con Alejandra, Rafael tendrá que trabajar muchas horas en la empresa de Alejandra para cubrir los gastos del accidente. + + Victor Hugo Cabrera + Marcela Carvajal + Humberto Dorado + + Soaps + Comedy + + + TV14 + + + + El Mundo del Campo + Programa sobre la cultura colombiana, las tradiciones, los festivales, la comida y mucho más de cada región. + History + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Noticias RCN + Un espacio para encontrar contenidos de opinión, análisis y debate. Toda la información originada desde el lugar de la noticia. + News + + + + Mañana express + Todas las noticias de actualidad con un toque de buen humor. + News Magazine + + + + Hablando claro con Flavia Dos Santos + Un programa que busca solucionar conflictos cotidianos que ocurren entre los ciudadanos. + Talk Shows + + + + Ponte al día con Cata Robayo + Más que un programa de variedades, es una grandiosa oportunidad para que todas las personas se pongan al día con Catalina Robayo en diferentes temas, desde el cuidado de salud, belleza, cocina y más. + Talk Shows + News + + + + Abc financiero + Programa dedicado a la educación y cultura financiera para el cuidado del uso cotidiano del dinero. + Specials + Instructional + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + América se entera + Tratamiento objetivo y profundo de las noticias más relevantes de la actualidad. + News + + + + Noticias RCN + Un espacio para encontrar contenidos de opinión, análisis y debate. Toda la información originada desde el lugar de la noticia. + News + + + + El despecho + Se presentan los videos de los mejores artistas regionales y nacionales de música popular, acompañado de presentaciones. + Music + Performing Arts + + + + Turistéate + Una muestra de la gente, la cultura y algunos de los sitios de interés turístico más representativos de Colombia e Hispanoamérica. + Travel + + + TVPG + + + + Hasta que la plata nos separe + Debido a un accidente con Alejandra, Rafael tendrá que trabajar muchas horas en la empresa de Alejandra para cubrir los gastos del accidente. + + Victor Hugo Cabrera + Marcela Carvajal + Humberto Dorado + + Soaps + Comedy + + + TV14 + + + + Tenemos que hablar + Todo el glamour del mundo del espectáculo, con novedades, polémicas y lo último en información sobre las estrellas del entretenimiento. + News Magazine + Performing Arts + + + + El despecho + Se presentan los videos de los mejores artistas regionales y nacionales de música popular, acompañado de presentaciones. + Music + Performing Arts + + + + Trendiando + Lo mejor del entretenimiento y las nuevas tendencias. + Performing Arts + + + + A Taste of London + Sweet Scene. + + + + Paris Bistro Cooking + Seasonal Soups. + + + + America's Comfort Food + Austin BBQ. + + + + Paris Bistro Cooking + Simple seafood starters. + + + + Paris Bistro Cooking + Conquering Condiments. + + + + Eleni's Greek Odyssey + Dinner at the Acropolis. + + + + Baking at Ballyknocken + Chocolate Delights. + + + + Celebrating with Lorna Maseko + Lorna's Foodie Travels. + + + + Celebrating with Lorna Maseko + Cape Malay Flavors. + + + + The French Pub + French Farm Fraises. + + + + Paris Bistro Cooking + Carrots from the Market. + + + + The French Pub + Foraging for the French Pub. + + + + A Taste of London + Sweet Scene. + + + + Paris Bistro Cooking + Seasonal Soups. + + + + A Taste of London + Sweet Scene. + + + + Paris Bistro Cooking + Seasonal Soups. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + THE AMAZING TELIKIN ONE TOUCH, THE WORLD'S EASIEST COMPUTER! + A single touch takes you to Email, Web, Video Chat, Contracts, Photos, Games, and more in this sleek, simple and sophisticated computer. Say hello to TELIKIN! TELIKIN is an ALL IN ONE computer that is easy to set up and navigate. SPECIAL OFFER! + + + + In Touch With Dr. Charles Stanley + In Touch Ministries is the broadcast teaching ministry of Dr. Charles Stanley. + + + + The French Pub + Normandy's Lobster Bounty. + + + + Paris Bistro Cooking + Simple seafood starters. + + + + Catherine's Farmhouse Kitchen + Easy Appetizers. + + + + Catherine's Farmhouse Kitchen + Mouth-Watering Mains. + + + + Baking at Ballyknocken + Pastries, Pies & Tarts. + + + + Eleni's Greek Odyssey + My Greek Food Trip. + + + + A Taste of London + The Classics. + + + + Celebrating with Lorna Maseko + Lorna's Foodie Travels. + + + + Paris Bistro Cooking + Demystifying Mayonnaise. + + + + The French Pub + My French Porchetta. + + + + America's Comfort Food + Latino Cuisine. + + + + Paris Bistro Cooking + Seasonal Soups. + + + + The French Pub + Normandy's Lobster Bounty. + + + + Paris Bistro Cooking + Simple seafood starters. + + + + Catherine's Farmhouse Kitchen + Easy Appetizers. + + + + Catherine's Farmhouse Kitchen + Mouth-Watering Mains. + + + + Baking at Ballyknocken + Pastries, Pies & Tarts. + + + + Eleni's Greek Odyssey + My Greek Food Trip. + + + + A Taste of London + The Classics. + + + + Celebrating with Lorna Maseko + Lorna's Foodie Travels. + + + + Paris Bistro Cooking + Demystifying Mayonnaise. + + + + The French Pub + My French Porchetta. + + + + America's Comfort Food + Latino Cuisine. + + + + Paris Bistro Cooking + Seasonal Soups. + + + + The French Pub + Normandy's Lobster Bounty. + + + + Paris Bistro Cooking + Simple seafood starters. + + + + Catherine's Farmhouse Kitchen + Easy Appetizers. + + + + Catherine's Farmhouse Kitchen + Mouth-Watering Mains. + + + + Baking at Ballyknocken + Pastries, Pies & Tarts. + + + + Eleni's Greek Odyssey + My Greek Food Trip. + + + + A Taste of London + The Classics. + + + + Celebrating with Lorna Maseko + Lorna's Foodie Travels. + + + + Paris Bistro Cooking + Demystifying Mayonnaise. + + + + The French Pub + My French Porchetta. + + + + America's Comfort Food + Latino Cuisine. + + + + Paris Bistro Cooking + Seasonal Soups. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + The French Pub + French Farm Fraises. + + + + The French Pub + Normandy's Lobster Bounty. + + + + A Taste of London + Sweet Scene. + + + + Celebrating with Lorna Maseko + Perfect Potato Dishes. + + + + Paris Bistro Cooking + Demystifying Mayonnaise. + + + + Baking at Ballyknocken + Chocolate Delights. + + + + Ericka's Mexican Cocina + Celebrating Salsas. + + + + Celebrating with Lorna Maseko + Cape Malay Flavors. + + + + Celebrating with Lorna Maseko + Cape Town's Bounty. + + + + Katie Parla's Roman Kitchen + Chicken Cacciatore. + + + + Paris Bistro Cooking + Conquering Condiments. + + + + The French Pub + My French Porchetta. + + + + The French Pub + French Farm Fraises. + + + + The French Pub + Normandy's Lobster Bounty. + + + + A Taste of London + Sweet Scene. + + + + Celebrating with Lorna Maseko + Perfect Potato Dishes. + + + + Paris Bistro Cooking + Demystifying Mayonnaise. + + + + Baking at Ballyknocken + Chocolate Delights. + + + + Ericka's Mexican Cocina + Celebrating Salsas. + + + + Celebrating with Lorna Maseko + Cape Malay Flavors. + + + + Celebrating with Lorna Maseko + Cape Town's Bounty. + + + + Katie Parla's Roman Kitchen + Chicken Cacciatore. + + + + Paris Bistro Cooking + Conquering Condiments. + + + + The French Pub + My French Porchetta. + + + + The French Pub + French Farm Fraises. + + + + The French Pub + Normandy's Lobster Bounty. + + + + A Taste of London + Sweet Scene. + + + + Celebrating with Lorna Maseko + Perfect Potato Dishes. + + + + Paris Bistro Cooking + Demystifying Mayonnaise. + + + + Baking at Ballyknocken + Chocolate Delights. + + + + Ericka's Mexican Cocina + Celebrating Salsas. + + + + Celebrating with Lorna Maseko + Cape Malay Flavors. + + + + Celebrating with Lorna Maseko + Cape Town's Bounty. + + + + Katie Parla's Roman Kitchen + Chicken Cacciatore. + + + + Paris Bistro Cooking + Conquering Condiments. + + + + The French Pub + My French Porchetta. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + The French Pub + Foraging for the French Pub. + + + + The French Pub + Normandy's Camembert. + + + + A Taste of London + Sweet Scene. + + + + Eleni's Greek Odyssey + My Poseidon Adventure. + + + + Celebrating with Lorna Maseko + Iconic Street Food on Vilakazi. + + + + Paris Bistro Cooking + Fete with friends. + + + + Baking at Ballyknocken + Afternoon Tea. + + + + A Taste of London + + + + Ericka's Mexican Cocina + Aguas Frescas. + + + + Paris Bistro Cooking + Conquering Condiments. + + + + Paris Bistro Cooking + Fromage favorites. + + + + Paris Bistro Cooking + Seasonal Soups. + + + + The French Pub + Foraging for the French Pub. + + + + The French Pub + Normandy's Camembert. + + + + A Taste of London + Sweet Scene. + + + + Eleni's Greek Odyssey + My Poseidon Adventure. + + + + Celebrating with Lorna Maseko + Iconic Street Food on Vilakazi. + + + + Paris Bistro Cooking + Fete with friends. + + + + Baking at Ballyknocken + Afternoon Tea. + + + + A Taste of London + + + + Ericka's Mexican Cocina + Aguas Frescas. + + + + Paris Bistro Cooking + Conquering Condiments. + + + + Paris Bistro Cooking + Fromage favorites. + + + + Paris Bistro Cooking + Seasonal Soups. + + + + The French Pub + Foraging for the French Pub. + + + + The French Pub + Normandy's Camembert. + + + + A Taste of London + Sweet Scene. + + + + Eleni's Greek Odyssey + My Poseidon Adventure. + + + + Celebrating with Lorna Maseko + Iconic Street Food on Vilakazi. + + + + Paris Bistro Cooking + Fete with friends. + + + + Baking at Ballyknocken + Afternoon Tea. + + + + A Taste of London + + + + Ericka's Mexican Cocina + Aguas Frescas. + + + + Paris Bistro Cooking + Conquering Condiments. + + + + Paris Bistro Cooking + Fromage favorites. + + + + Paris Bistro Cooking + Seasonal Soups. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + CHRISTINA HALL and Jacuzzi® amazing bathroom makeovers + SPECIAL OFFER + Trusted brand Jacuzzi® and renowned interior designer, Christina Hall can help you transform your old bathroom into a gorgeous custom, safe and stylish space. Jacuzzi® has limited time special offers to make your dream bathroom happen today CALL NOW. + + + + The French Pub + My French Porchetta. + + + + Celebrating with Lorna Maseko + Lorna's Foodie Travels. + + + + The French Pub + French Farm Fraises. + + + + Paris Bistro Cooking + Asparagus Appetizers. + + + + Baking at Ballyknocken + Pastries, Pies & Tarts. + + + + Eleni's Greek Odyssey + My Greek Food Trip. + + + + Katie Parla's Roman Kitchen + Chicken Cacciatore. + + + + Eleni's Greek Odyssey + Dinner at the Acropolis. + + + + Catherine's Farmhouse Kitchen + + + + Catherine's Farmhouse Kitchen + Mouth-Watering Mains. + + + + Paris Bistro Cooking + Conquering Condiments. + + + + America's Comfort Food + Austin BBQ. + + + + The French Pub + My French Porchetta. + + + + Celebrating with Lorna Maseko + Lorna's Foodie Travels. + + + + The French Pub + French Farm Fraises. + + + + Paris Bistro Cooking + Asparagus Appetizers. + + + + Baking at Ballyknocken + Pastries, Pies & Tarts. + + + + Eleni's Greek Odyssey + My Greek Food Trip. + + + + Katie Parla's Roman Kitchen + Chicken Cacciatore. + + + + Eleni's Greek Odyssey + Dinner at the Acropolis. + + + + Mo' Better Blues + Music comes first for a Manhattan jazzman (Denzel Washington) with one too many lovers and a manager (Spike Lee) who gambles. + + Denzel Washington + Spike Lee + Wesley Snipes + + 1990 + Movies + Drama + + + TVG + + + 2 + + + + Worth Winning + A TV weatherman's (Mark Harmon) buddy bets him he cannot talk three women into marriage, and prove it on video. + + Mark Harmon + Madeleine Stowe + Lesley Ann Warren + + 1989 + Movies + Comedy + + + TVG + + + 2 + + + + Without a Trace + Estranged from her husband (David Dukes), a New Yorker (Kate Nelligan) turns to the police after her son disappears on the way to school. + + Kate Nelligan + Judd Hirsch + David Dukes + + 1983 + Movies + Drama + + + TVG + + + 2 + + + + A Walk in the Clouds + A married chocolate salesman (Keanu Reeves) agrees to pose for a day as the new husband of a pregnant vineyard heiress (Aitana Sánchez-Gijón) in postwar California. + + Keanu Reeves + Aitana Sánchez-Gijón + Anthony Quinn + + 1995 + Movies + Romance + + + TVG + + + 2 + + + + Mo' Better Blues + Music comes first for a Manhattan jazzman (Denzel Washington) with one too many lovers and a manager (Spike Lee) who gambles. + + Denzel Washington + Spike Lee + Wesley Snipes + + 1990 + Movies + Drama + + + TVG + + + 2 + + + + Mo' Better Blues + Music comes first for a Manhattan jazzman (Denzel Washington) with one too many lovers and a manager (Spike Lee) who gambles. + + Denzel Washington + Spike Lee + Wesley Snipes + + 1990 + Movies + Drama + + + TVG + + + 2 + + + + I Capture the Castle + A British teenager (Romola Garai) secretly loves the young American (Henry Thomas) her older sister (Rose Byrne) already claimed for herself. + + Romola Garai + Rose Byrne + Henry Thomas + + 2003 + Movies + Drama + + + 3 + + + + License to Drive + A teenager (Corey Haim) flunks his driving test but goes out anyway in his grandfather's 1972 blue Cadillac. + + Corey Haim + Corey Feldman + Carol Kane + + 1988 + Movies + Comedy + + + TVG + + + 2 + + + + Gridlock'd + Two heroin addicts (Tim Roth, Tupac Shakur) seek rehabilitation, but police, gangsters and government bureaucracy block their path. + + Tim Roth + Tupac Shakur + Thandie Newton + + 1997 + Movies + Drama + + + TV14 + + + 2 + + + + Only the Lonely + A Chicago policeman (John Candy) wants to marry a mortuary cosmetician (Ally Sheedy), but his feisty Irish mother (Maureen O'Hara) won't let him. + + John Candy + Maureen O'Hara + Ally Sheedy + + 1991 + Movies + Romance + + + TVG + + + 3 + + + + Cop and a Half + Teaming with a crusty detective (Burt Reynolds) is a dream come true for an 8-year-old murder witness (Norman D. Golden II). + + Burt Reynolds + Norman Golden II + Ruby Dee + + 1993 + Movies + Comedy + + + TVG + + + 2 + + + + The Jackal + A jailed IRA operative (Richard Gere) helps the FBI track a masterful assassin (Bruce Willis) about to perform a political killing. + + Bruce Willis + Richard Gere + Sidney Poitier + + 1997 + Movies + Thriller + + + TVPG + + + 2 + + + + The Poseidon Adventure + A clergyman (Gene Hackman) leads survivors of a capsized luxury liner through the ship's innards to its highest point. + + Gene Hackman + Ernest Borgnine + Shelley Winters + + 1972 + Movies + Adventure + + + TVG + + + 2 + + + + Butch and Sundance: The Early Days + Young Butch Cassidy (Tom Berenger) and the Sundance Kid (William Katt) team up for adventure in the Old West. + + William Katt + Tom Berenger + Jill Eikenberry + + 1979 + Movies + Western + + + TVG + + + 2 + + + + Colette + After moving to Paris, author Sidonie-Gabrielle Colette agrees to ghostwrite a semi-autobiographical novel for her husband. Its success soon inspires her to fight for creative ownership and overcome the societal constraints of the early 20th century. + + Keira Knightley + Dominic West + Denise Gough + + 2018 + Movies + History + + + TVG + + + 3 + + + + Gridlock'd + Two heroin addicts (Tim Roth, Tupac Shakur) seek rehabilitation, but police, gangsters and government bureaucracy block their path. + + Tim Roth + Tupac Shakur + Thandie Newton + + 1997 + Movies + Drama + + + TV14 + + + 2 + + + + License to Drive + A teenager (Corey Haim) flunks his driving test but goes out anyway in his grandfather's 1972 blue Cadillac. + + Corey Haim + Corey Feldman + Carol Kane + + 1988 + Movies + Comedy + + + TVG + + + 2 + + + + The Poseidon Adventure + A clergyman (Gene Hackman) leads survivors of a capsized luxury liner through the ship's innards to its highest point. + + Gene Hackman + Ernest Borgnine + Shelley Winters + + 1972 + Movies + Adventure + + + TVG + + + 2 + + + + The Jackal + A jailed IRA operative (Richard Gere) helps the FBI track a masterful assassin (Bruce Willis) about to perform a political killing. + + Bruce Willis + Richard Gere + Sidney Poitier + + 1997 + Movies + Thriller + + + TVPG + + + 2 + + + + The Jackal + A jailed IRA operative (Richard Gere) helps the FBI track a masterful assassin (Bruce Willis) about to perform a political killing. + + Bruce Willis + Richard Gere + Sidney Poitier + + 1997 + Movies + Thriller + + + TVPG + + + 2 + + + + Colette + After moving to Paris, author Sidonie-Gabrielle Colette agrees to ghostwrite a semi-autobiographical novel for her husband. Its success soon inspires her to fight for creative ownership and overcome the societal constraints of the early 20th century. + + Keira Knightley + Dominic West + Denise Gough + + 2018 + Movies + History + + + TVG + + + 3 + + + + Down Missouri Way + Agriculture professor Jane Colwell (Martha O'Driscoll) is seeking a quiet getaway when she takes her prized mule off to visit an Ozarks farming community, but upon arrival she is stunned to discover a film crew diligently at work on a new movie. + + Martha O'Driscoll + John Carradine + Eddie Dean + + 1946 + Movies + Musical + + + 2 + + + + Philadelphia + Fired by his firm, a lawyer (Tom Hanks) with AIDS fights back in court with help from his lawyer (Denzel Washington). + + Tom Hanks + Denzel Washington + Jason Robards + + 1993 + Movies + Drama + + + TVG + + + 3 + + + + The Poseidon Adventure + A clergyman (Gene Hackman) leads survivors of a capsized luxury liner through the ship's innards to its highest point. + + Gene Hackman + Ernest Borgnine + Shelley Winters + + 1972 + Movies + Adventure + + + TVG + + + 2 + + + + Cookie's Fortune + Female relatives (Glenn Close, Julianne Moore) scheme to avoid scandal at an eccentric's death, wrongly blamed on a caretaker. + + Glenn Close + Julianne Moore + Liv Tyler + + 1999 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Colette + After moving to Paris, author Sidonie-Gabrielle Colette agrees to ghostwrite a semi-autobiographical novel for her husband. Its success soon inspires her to fight for creative ownership and overcome the societal constraints of the early 20th century. + + Keira Knightley + Dominic West + Denise Gough + + 2018 + Movies + History + + + TVG + + + 3 + + + + Less Than Zero + Beverly Hills rich kids (Andrew McCarthy, Jami Gertz) help their friend (Robert Downey Jr.) who is hooked on cocaine. + + Andrew McCarthy + Jami Gertz + Robert Downey Jr. + + 1987 + Movies + Drama + + + TVPG + + + 2 + + + + Philadelphia + Fired by his firm, a lawyer (Tom Hanks) with AIDS fights back in court with help from his lawyer (Denzel Washington). + + Tom Hanks + Denzel Washington + Jason Robards + + 1993 + Movies + Drama + + + TVG + + + 3 + + + + Exit the Dragon, Enter the Tiger + A fighter (Bruce Li) finds drug smugglers behind the death of Bruce Lee. + + Bruce Li + Lung Fei + Ma Chi Chiang + + 1976 + Movies + Action + + + 1 + + + + Return of the Tiger + A kung-fu fighter (Bruce Li) and his woman sidekick (Angela Mao) represent Dutch investors. + + Bruce Li + Paul L. Smith + Angela Mao + + 1980 + Movies + Adventure + + + 1 + + + + Speed + A SWAT team ace (Keanu Reeves) must keep the speed of a Santa Monica bus above 50 mph, or a madman's (Dennis Hopper) bomb will explode. + + Keanu Reeves + Dennis Hopper + Sandra Bullock + + 1994 + Movies + Action + + + TVG + + + 3 + + + + Philadelphia + Fired by his firm, a lawyer (Tom Hanks) with AIDS fights back in court with help from his lawyer (Denzel Washington). + + Tom Hanks + Denzel Washington + Jason Robards + + 1993 + Movies + Drama + + + TVG + + + 3 + + + + Cookie's Fortune + Female relatives (Glenn Close, Julianne Moore) scheme to avoid scandal at an eccentric's death, wrongly blamed on a caretaker. + + Glenn Close + Julianne Moore + Liv Tyler + + 1999 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Exit the Dragon, Enter the Tiger + A fighter (Bruce Li) finds drug smugglers behind the death of Bruce Lee. + + Bruce Li + Lung Fei + Ma Chi Chiang + + 1976 + Movies + Action + + + 1 + + + + Return of the Tiger + A kung-fu fighter (Bruce Li) and his woman sidekick (Angela Mao) represent Dutch investors. + + Bruce Li + Paul L. Smith + Angela Mao + + 1980 + Movies + Adventure + + + 1 + + + + Heathers + Cool Veronica (Winona Ryder) and her quirky new boyfriend (Christian Slater) topple a high-school trio of too-cool Heathers. + + Winona Ryder + Christian Slater + Shannen Doherty + + 1989 + Movies + Comedy + + + TVPG + + + 3 + + + + Cookie's Fortune + Female relatives (Glenn Close, Julianne Moore) scheme to avoid scandal at an eccentric's death, wrongly blamed on a caretaker. + + Glenn Close + Julianne Moore + Liv Tyler + + 1999 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Speed + A SWAT team ace (Keanu Reeves) must keep the speed of a Santa Monica bus above 50 mph, or a madman's (Dennis Hopper) bomb will explode. + + Keanu Reeves + Dennis Hopper + Sandra Bullock + + 1994 + Movies + Action + + + TVG + + + 3 + + + + Exit the Dragon, Enter the Tiger + A fighter (Bruce Li) finds drug smugglers behind the death of Bruce Lee. + + Bruce Li + Lung Fei + Ma Chi Chiang + + 1976 + Movies + Action + + + 1 + + + + Return of the Tiger + A kung-fu fighter (Bruce Li) and his woman sidekick (Angela Mao) represent Dutch investors. + + Bruce Li + Paul L. Smith + Angela Mao + + 1980 + Movies + Adventure + + + 1 + + + + Beneath the Planet of the Apes + A time-warped astronaut (James Franciscus) lands on ape-ruled Earth and finds telepathic mutants worshiping an atomic bomb. + + James Franciscus + Kim Hunter + Charlton Heston + + 1970 + Movies + Sci-Fi + + + TVPG + + + 3 + + + + Escape From the Planet of the Apes + Cornelius (Roddy McDowall), Zira (Kim Hunter) and Milo, apes from the future, escape to 1970s Los Angeles and pose a threat. + + Roddy McDowall + Kim Hunter + Bradford Dillman + + 1971 + Movies + Sci-Fi + + + TVG + + + 3 + + + + Speed + A SWAT team ace (Keanu Reeves) must keep the speed of a Santa Monica bus above 50 mph, or a madman's (Dennis Hopper) bomb will explode. + + Keanu Reeves + Dennis Hopper + Sandra Bullock + + 1994 + Movies + Action + + + TVG + + + 3 + + + + Terror by Night + Sherlock Holmes (Basil Rathbone) and Dr. Watson (Nigel Bruce) guard the Star of Rhodesia diamond on a London-to-Edinburgh train. + + Basil Rathbone + Nigel Bruce + Alan Mowbray + + 1946 + Movies + Mystery + + + TVG + + + 2 + + + + Ghost Town Renegades + A federal investigator (Al. + + Al + + 1947 + Movies + Western + + + 1 + + + + A Christmas Carol + Dickens' London miser Ebenezer Scrooge (George C. Scott) meets the ghosts of Christmases past, present and yet to come. + + George C. Scott + Angela Pleasence + Edward Woodward + + 1984 + Movies + Christmas + Children + + + TVG + + + 2 + + + + Beneath the Planet of the Apes + A time-warped astronaut (James Franciscus) lands on ape-ruled Earth and finds telepathic mutants worshiping an atomic bomb. + + James Franciscus + Kim Hunter + Charlton Heston + + 1970 + Movies + Sci-Fi + + + TVPG + + + 3 + + + + Escape From the Planet of the Apes + Cornelius (Roddy McDowall), Zira (Kim Hunter) and Milo, apes from the future, escape to 1970s Los Angeles and pose a threat. + + Roddy McDowall + Kim Hunter + Bradford Dillman + + 1971 + Movies + Sci-Fi + + + TVG + + + 3 + + + + Conquest of the Planet of the Apes + Caesar the ape (Roddy McDowall) leads simians in revolt against the governor (Don Murray) enslaving them on future Earth. + + Roddy McDowall + Don Murray + Ricardo Montalban + + 1972 + Movies + Sci-Fi + + + TVG + + + 2 + + + + Conquest of the Planet of the Apes + Caesar the ape (Roddy McDowall) leads simians in revolt against the governor (Don Murray) enslaving them on future Earth. + + Roddy McDowall + Don Murray + Ricardo Montalban + + 1972 + Movies + Sci-Fi + + + TVG + + + 2 + + + + Battle for the Planet of the Apes + Gorilla general Aldo (Claude Akins) hounds ape leader Caesar (Roddy McDowall) and what's left of humanity on simian-ruled future Earth. + + Roddy McDowall + Claude Akins + Natalie Trundy + + 1973 + Movies + Sci-Fi + + + TVG + + + 2 + + + + The Great Sioux Massacre + The story of Gen. Custer (Philip Carey) and the Little Bighorn is seen through the eyes of two of his subordinates (Joseph Cotten, Darren McGavin). + + Joseph Cotten + Darren McGavin + Phil Carey + + 1965 + Movies + Western + + + TVG + + + 2 + + + + A Christmas Carol + Dickens' London miser Ebenezer Scrooge (George C. Scott) meets the ghosts of Christmases past, present and yet to come. + + George C. Scott + Angela Pleasence + Edward Woodward + + 1984 + Movies + Christmas + Children + + + TVG + + + 2 + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Beneath the Planet of the Apes + A time-warped astronaut (James Franciscus) lands on ape-ruled Earth and finds telepathic mutants worshiping an atomic bomb. + + James Franciscus + Kim Hunter + Charlton Heston + + 1970 + Movies + Sci-Fi + + + TVPG + + + 3 + + + + Escape From the Planet of the Apes + Cornelius (Roddy McDowall), Zira (Kim Hunter) and Milo, apes from the future, escape to 1970s Los Angeles and pose a threat. + + Roddy McDowall + Kim Hunter + Bradford Dillman + + 1971 + Movies + Sci-Fi + + + TVG + + + 3 + + + + Conquest of the Planet of the Apes + Caesar the ape (Roddy McDowall) leads simians in revolt against the governor (Don Murray) enslaving them on future Earth. + + Roddy McDowall + Don Murray + Ricardo Montalban + + 1972 + Movies + Sci-Fi + + + TVG + + + 2 + + + + Battle for the Planet of the Apes + Gorilla general Aldo (Claude Akins) hounds ape leader Caesar (Roddy McDowall) and what's left of humanity on simian-ruled future Earth. + + Roddy McDowall + Claude Akins + Natalie Trundy + + 1973 + Movies + Sci-Fi + + + TVG + + + 2 + + + + A Christmas Carol + Dickens' London miser Ebenezer Scrooge (George C. Scott) meets the ghosts of Christmases past, present and yet to come. + + George C. Scott + Angela Pleasence + Edward Woodward + + 1984 + Movies + Christmas + Children + + + TVG + + + 2 + + + + Cop and a Half + Teaming with a crusty detective (Burt Reynolds) is a dream come true for an 8-year-old murder witness (Norman D. Golden II). + + Burt Reynolds + Norman Golden II + Ruby Dee + + 1993 + Movies + Comedy + + + TVG + + + 2 + + + + License to Drive + A teenager (Corey Haim) flunks his driving test but goes out anyway in his grandfather's 1972 blue Cadillac. + + Corey Haim + Corey Feldman + Carol Kane + + 1988 + Movies + Comedy + + + TVG + + + 2 + + + + Texas Terror + A former lawman straps on his six-shooters when he discovers the identity of his best friend's killer. + + John Wayne + Lucile Browne + LeRoy Mason + + 1935 + Movies + Western + + + TVG + + + 2 + + + + The Marty Stuart Show + John Conlee + John Conlee sings. + Music + + + TVG + + + + The Dailey & Vincent Show + Everette + Dailey & Vincent preform their new song. + Talk Shows + Variety + + + TVG + + + + The Daniel O'Donnell Show + Home to Donegal + Classics such as. + Music + + + + Mollie B Polka Party + Bands are Alpenfest, Henny & the Versa J's, Gordy Prochaska & The Little Fishermen, Joshua Kay with Fred Ziwich and the Dujka Brothers. + Performing Arts + + + TVG + + + + The Very Best of Larry's Country Diner + Ed Bruce + Walking down memory lane with Larry and the diner gang; Ed Bruce joins as a guest.Guests: Ed Bruce.. + Music + Performing Arts + + + TV14 + + + + Perley's Place + Ronnie McDowell + Music + + + + The Duttons Through the Years + Timothy the Tenacious + Persistance pays off as Timothy works through his projects. + Performing Arts + + + TVG + + + + The Red Skelton Show + Freddie the Count + Some French swindlers convince Freddie that he is the missing heir to a large French inheritance and take him to Paris to try and prove it; they plan to steal it from him if the scheme works but, as it turns out, Freddie really is the heir. + + Red Skelton + Cesar Romero + + Comedy + Variety + + + TVG + + + + The Red Skelton Show + The Sailor Takes a Wife + Red decides to write to all the quiz programs and try to get on one and win some money on his next shore leave, but the only confirmation he gets is from a show that uses a husband and wife as a team, so he talks Snorkel into dressing up as his wife. + + Red Skelton + Mickey Rooney + + Comedy + Variety + + + TVG + + + + The Red Skelton Show + Freddie the Count + Some French swindlers convince Freddie that he is the missing heir to a large French inheritance and take him to Paris to try and prove it; they plan to steal it from him if the scheme works but, as it turns out, Freddie really is the heir. + + Red Skelton + Cesar Romero + + Comedy + Variety + + + TVG + + + + The Red Skelton Show + The Sailor Takes a Wife + Red decides to write to all the quiz programs and try to get on one and win some money on his next shore leave, but the only confirmation he gets is from a show that uses a husband and wife as a team, so he talks Snorkel into dressing up as his wife. + + Red Skelton + Mickey Rooney + + Comedy + Variety + + + TVG + + + + The Red Skelton Show + Freddie the Count + Some French swindlers convince Freddie that he is the missing heir to a large French inheritance and take him to Paris to try and prove it; they plan to steal it from him if the scheme works but, as it turns out, Freddie really is the heir. + + Red Skelton + Cesar Romero + + Comedy + Variety + + + TVG + + + + The Red Skelton Show + The Sailor Takes a Wife + Red decides to write to all the quiz programs and try to get on one and win some money on his next shore leave, but the only confirmation he gets is from a show that uses a husband and wife as a team, so he talks Snorkel into dressing up as his wife. + + Red Skelton + Mickey Rooney + + Comedy + Variety + + + TVG + + + + Canadian Finals Rodeo + 2021 CFR: Round 3 + A look back at Round 3 from the 2021 CFR at the Westerner Park. + Sports + Rodeo + + + + Agri-Pulse Newsmakers + A national news show that engages lawmakers and key influencers on the hottest political topics; featuring members of Congress, federal and state officials, farmers, ag and food commodity groups and roundtable panelists. + News + + + + Being Your Best with Trey Johnson + In a world with so many different definitions of success, discover what true success looks like and know more about God. + Local + + + + Allen Jackson Ministries + From World Outreach Church in Murfreesboro, Tenn., pastor Allen Jackson mentors and challenges individuals with a biblical message that helps them become more fully devoted followers of Jesus Christ. + Religious + + + + Dr. Robert Jeffress: Pathway to Victory + The teaching ministry of Dr. Robert Jeffress. + Religious + + + TVG + + + + Turning Point With Dr. David Jeremiah + Dr. David Jeremiah's goal is to deliver the unchanging Word of God to an ever-changing world. + Religious + + + TVG + + + + Hagee Ministries + The mission of John Hagee Ministries is to take the Gospel to all the world and to all generations. + Religious + + + TVG + + + + Michael Youssef + Leading The Way ministries and Dr. Michael Youssef share the Gospel across the globe, equipping believers to grow into a deeper walk with Christ. + Religious + + + TVG + + + + The John Ankerberg Show + John Ankerberg presents contemporary spiritual issues and defends biblical Christian answers. + Religious + + + + The Marty Stuart Show + John Conlee + John Conlee sings. + Music + + + TVG + + + + The Porter Wagoner Show + Marty Robbins + Music variety show. + Music + + + + California Bountiful + Mariposa + California's wild horses; corn chowder; food tours. + Travel + + + TVG + + + + Texas Country Reporter + Beasley's sausage and a trip to Cedar Hill State Park. + Travel + + + TVG + + + + The American Rancher + Purina Wind and Rain + Pam checks out a predictable way to optimize beef cattle performance in an unpredictible world. + Animals + + + TVG + + + + Equestrian Nation + Therapeutic riding centers that do miracles. + Animals + Sports + + + TVG + + + + Chris Cox Horsemanship + Tips from the Clinic + Get a glimpse into a Chris Cox Horsemanship 1 Clinic. + Sports + Equestrian + + + TVG + + + + Pre-Show: Canadian Finals Rodeo + Pre-Show: Round 6 + LIVE Pre-Show coverage for Performance 6 of the 2023 Canadian Finals Rodeo at the Westerner Park in Red Deer, Alberta. + Sports + Rodeo + + + + Canadian Finals Rodeo + 2023 CFR: Round 6 + LIVE coverage of Performance 6 at the 2023 Canadian Finals Rodeo at the Westerner Park in Red Deer, Alberta. + Sports + Rodeo + + + + FFA Today + FFA members showcase their peers' accomplishments in the classroom, community and in agribusiness. + Regular + + + TVG + + + + Gentle Giants + Celebrity Driving: World Perch, Pt. 1 + Pam, Kadee and Dr. Pol drive on an obstacle course at the World Percheron Congress Draft Horse Show in Massachusetts. + Sports + Equestrian + + + TVG + + + + The Jimmy Sturr Show + The Eagles Tribute; Lindsey Webster + Eagles; Lindsey Webster; Matt and Elaine. + Music + + + TVG + + + + Midwest Country + Tim Hadler, Angie Senger, Terry Smith. + Music + + + TVG + + + + Cowboy Church + Pastor Bill Young preaches at the 2023 Cowboy Churches' Revival Roundup. + Religious + + + TVG + + + + The Marty Stuart Show + Jessie Colter + Jessie Colter. + Music + + + TVG + + + + Muletown in the Round + Wendell Mobley, Lee Thomas Miller + Paul Overstreet, Wendell Mobley and Lee Thomas Miller share the stories behind their songs with Southern Girls, There Goes My Life, One Love At A Time, It Ain't My Fault. + Music + + + TVG + + + + On the Record + Pam Tillis + Pam Tillis shares stories of growing up as the daughter of one of country music's most iconic artists, Mel Tillis. + Talk Shows + Music + + + + Ralph Emery's Memories + Kathy Mattea + Kathy Mattea from 5/5/2008. + Performing Arts + + + TVG + + + + FarmHer + Mari Omlan & Laura Olsen - Green Mountain Girls Farm + A rainy day won't spoil Marji's fun. + Regular + + + TVG + + + + This Week in AgriBusiness + Orion Samuelson and Max Armstrong recap the nation's top agriculture news, weather and markets. + Business + + + TVG + + + + Farm Monitor + The challenges and opportunities facing southern farmers; weekly stories and close-up features about people and issues in Georgia; Ray D'Alessio and Kenny Burgamy host. + News + + + TVG + + + + Gentle Giants + Celebrity Driving: World Perch, Pt. 1 + Pam, Kadee and Dr. Pol drive on an obstacle course at the World Percheron Congress Draft Horse Show in Massachusetts. + Sports + Equestrian + + + TVG + + + + NTPA Championship Pulling + Tomah Minis + Modified Minis go in every direction, all at once at the Budweiser Dairyland Super Nationals in Tomah, Wisconsin. + Sports + Automotive + + + TVG + + + + Classic Tractor Fever + Tractors Dad Had + Antique tractors, farm toys and more. + Documentary + + + TVG + + + + Canadian Finals Rodeo + 2021 CFR: Round 4 + As the 2023 Canadian Finals Rodeo rapidly approaches, join us for a look back at Round 4 from the 2021 CFR at the Westerner Park in Red Deer, Alberta. + Sports + Rodeo + + + + Muletown in the Round + Wendell Mobley, Lee Thomas Miller + Paul Overstreet, Wendell Mobley and Lee Thomas Miller share the stories behind their songs with Southern Girls, There Goes My Life, One Love At A Time, It Ain't My Fault. + Music + + + TVG + + + + On the Record + Pam Tillis + Pam Tillis shares stories of growing up as the daughter of one of country music's most iconic artists, Mel Tillis. + Talk Shows + Music + + + + NTPA Championship Pulling + Tomah Minis + Modified Minis go in every direction, all at once at the Budweiser Dairyland Super Nationals in Tomah, Wisconsin. + Sports + Automotive + + + TVG + + + + This Week in AgriBusiness + Orion Samuelson and Max Armstrong recap the nation's top agriculture news, weather and markets. + Business + + + TVG + + + + Dr. David Jeremiah + Practical Bible teaching. + Religious + + + TVG + + + + FFA Today + FFA members showcase their peers' accomplishments in the classroom, community and in agribusiness. + Regular + + + TVG + + + + AgDay + An exploration of new information in American agriculture that farmers and ranchers need to succeed. + News + + + TVG + + + + Market Day Report + Live agricultural and rural news, weather, and in-depth commodities reports featuring the grains, cattle, and pork markets. + Regular + + + TVG + + + + Cow Guy Close + Markets specialist Scott Shellady breaks down headlines that drive the commodities and equities markets with commentary from respected industry heavyweights in wrapping up the trading day. + News + + + + FFA Today + FFA members showcase their peers' accomplishments in the classroom, community and in agribusiness. + Regular + + + TVG + + + + Better Horses TV + Focusing on the equine industry, including clinicians, shows, competition, and events. + Talk Shows + Sports + + + + I Love Toy Trains + Lionel Nation 5 + John Pisano and Paul Carlisle's collection of tinplate trains. + Hobbies & Crafts + + + TVG + + + + Positively Paula + BBQ Inside? + Pitmaster Steve Botkin brings traditional outdoor barbecue inside and the smoke into Paula's kitchen. + Food + + + TVG + + + + DocTalk + Treating BRD in Cattle + Treating cattle with respiratory disease. + Animals + + + TVG + + + + Trains & Locomotives + Summer Steam Spectacular Vol.1 the 484's: Part 2 + Film footage illustrates how trains and locomotives have helped promote travel and development. + Documentary + + + TVG + + + + Rural Health Matters + Experts talk about the coronavirus outbreak and how it impacts people in rural America. + Health + + + TVG + + + + Postcards From Nebraska + Rain; bluegrass lawns; Dannebrog Country Club; sandhill cranes. + Regular + + + TVG + + + + Rural Evening News + Agriculture and rural news; weather; commodities markets reports from Chicago and Washington, D.C. + News + Environmental + + + TVG + + + + Rural America Live + Best of Sunbelt Ag Expo 2023 + The Sunbelt Ag Expo is an agricultural-based trade show held at Spence Field in Moultrie, Ga.; the annual event has more than 1,200 exhibitors showcasing the latest in farming technology. + News + + + TVG + + + + The American Rancher + Bear Creek Farms + A Texas ranching family develops an all-around commerical and registered Angus program. + Animals + + + TVG + + + + Red Steagall West of Wall Street + Galveston, Texas and the Moody Family + The city of Galveston is a grand place in the state of Texas; Red visits with a former mayor, and they talk about one of the city's most important families -- the Moodys. + Travel + History + + + TVG + + + + Cinch High School Rodeo Tour + 75th Anniversary of the NHSFR - pt 1 + Breakaway Roping from the National High School Finals Rodeo from Wyoming Camplex in Gillette, WY. + Sports + Rodeo + + + TVG + + + + Horse of the West + 2023 Ardmore Barrel Futurity & ACT + The 2023 Better Barrel Races Ardmore Barrel Futurity and American Contender Tournament from Ardmore, Okla. + Sports + Miscellaneous + + + TVG + + + + Postcards From Nebraska + Rain; bluegrass lawns; Dannebrog Country Club; sandhill cranes. + Regular + + + TVG + + + + Rural Evening News + Agriculture and rural news; weather; commodities markets reports from Chicago and Washington, D.C. + News + Environmental + + + TVG + + + + Rural America Live + Best of Sunbelt Ag Expo 2023 + The Sunbelt Ag Expo is an agricultural-based trade show held at Spence Field in Moultrie, Ga.; the annual event has more than 1,200 exhibitors showcasing the latest in farming technology. + News + + + TVG + + + + The American Rancher + Bear Creek Farms + A Texas ranching family develops an all-around commerical and registered Angus program. + Animals + + + TVG + + + + Red Steagall West of Wall Street + Galveston, Texas and the Moody Family + The city of Galveston is a grand place in the state of Texas; Red visits with a former mayor, and they talk about one of the city's most important families -- the Moodys. + Travel + History + + + TVG + + + + Canadian Finals Rodeo + 2021 CFR: Round 5 + As the 2023 Canadian Finals Rodeo rapidly approaches, join us for a look back at Round 5 from the 2021 CFR at the Westerner Park in Red Deer, Alberta. + Sports + Rodeo + + + + Horse of the West + 2023 Ardmore Barrel Futurity & ACT + The 2023 Better Barrel Races Ardmore Barrel Futurity and American Contender Tournament from Ardmore, Okla. + Sports + Miscellaneous + + + TVG + + + + Better Horses TV + Saddlebronc rider Blane Stacy brings his best and walks through his day as a contender in the Bronc riding with best score full ride. 6 Crowns Rodeo pick-up man Paden Bouldan works with rough stock competitions. + Talk Shows + Sports + + + + Coop Dreams + Turkeys Galore + Chickens and goats are used in the Stock Cropper; turkeys overrun the chicken yard. + Reality TV + Animals + + + TVG + + + + Presleys' Country Jubilee + Jambalaya + Beka Osmond brings some Cajun flavor with jambalaya and Herk cooks up some jokes. + Music + Variety + + + TVG + + + + The Marty Stuart Show + John Conlee + John Conlee sings. + Music + + + TVG + + + + Dr. David Jeremiah + Practical Bible teaching. + Religious + + + TVG + + + + Rural Evening News + Agriculture and rural news; weather; commodities markets reports from Chicago and Washington, D.C. + News + Environmental + + + TVG + + + + AgDay + An exploration of new information in American agriculture that farmers and ranchers need to succeed. + News + + + TVG + + + + Market Day Report + Live agricultural and rural news, weather, and in-depth commodities reports featuring the grains, cattle, and pork markets. + Regular + + + TVG + + + + Cow Guy Close + Markets specialist Scott Shellady breaks down headlines that drive the commodities and equities markets with commentary from respected industry heavyweights in wrapping up the trading day. + News + + + + Total Acre Farming + Crop yield champions David Hula from Virginia and Randy Dowdy from Georgia aim to school more growers across the country in their winning ways, doing their best in a business where uncontrollable factors can be daunting. + Regular + + + + Horse of the West + 2023 Ardmore Barrel Futurity & ACT + The 2023 Better Barrel Races Ardmore Barrel Futurity and American Contender Tournament from Ardmore, Okla. + Sports + Miscellaneous + + + TVG + + + + Chris Cox Horsemanship + Chris explores the world of horse training. + Sports + Equestrian + + + TVG + + + + The Duttons Through the Years + Timothy the Tenacious + Persistance pays off as Timothy works through his projects. + Performing Arts + + + TVG + + + + Rural Heritage + Canning Purple Hull Peas + An Arkansas couple pick, process and can purple hull peas from a variety handed down for generations. + Instructional + + + TVG + + + + Machinery Pete TV + Allegan 1 + The twin jewels of the Ken Darby farm sale are a pair of Magnum 305s. + Local + + + + Classic Tractor Fever + Tractors Dad Had + Antique tractors, farm toys and more. + Documentary + + + TVG + + + + NTPA Championship Pulling + Chapel Hill Pro Stocks + The beat of Pro Stocks at the Lions Super Pull of the South in Chapel Hill. + Sports + Automotive + + + TVG + + + + Texas Agriculture Matters + Legendary 6666 Ranch + Sid Miller honors one of the most storied family-run businesses in Texas history; the legendary Four Sixes Ranch represents generations of Texans who were raised to care for the brand, livestock, and land, driven by hard work and determination. + Regular + + + TVG + + + + Rural Evening News + Agriculture and rural news; weather; commodities markets reports from Chicago and Washington, D.C. + News + Environmental + + + TVG + + + + Ag PhD + Catching snow in fields; strip-tilling with heavy residue; base saturation calcium. + Business + + + TVG + + + + Cattlemen to Cattlemen + Beef industry news, markets and features from the National Cattlemen's Beef Association. + News Magazine + + + TVG + + + + SharkFarmer TV + Rob Stumps Nashville Tourists + Rob Sharkey hits the streets of Nashville to see what tourists know about agriculture. + Regular + + + TVG + + + + Chris Cox Horsemanship + Chris explores the world of horse training. + Sports + Equestrian + + + TVG + + + + Saddle Up With Dennis Brouse + Lewis & Clark + Challenges endured by Lewis and Clark; Howdy needs help crossing a bridge; cattle clinic; trail ride at Broken Kettle Prairie. + Animals + + + TVG + + + + Best of America by Horseback + Hang 'Em High Horse Camp, Kentucky + Hang 'Em High Horse Camp is a privately owned horse camp run by trail riders, for trail riders nestled in the Daniel Boone National Forest in London, Ky. + Travel + Animals + + + TVG + + + + Rural Evening News + Agriculture and rural news; weather; commodities markets reports from Chicago and Washington, D.C. + News + Environmental + + + TVG + + + + Ag PhD + Catching snow in fields; strip-tilling with heavy residue; base saturation calcium. + Business + + + TVG + + + + Cattlemen to Cattlemen + Beef industry news, markets and features from the National Cattlemen's Beef Association. + News Magazine + + + TVG + + + + Cattlemen to Cattlemen + Beef industry news, markets and features from the National Cattlemen's Beef Association. + News Magazine + + + TVG + + + + SharkFarmer TV + Rob Stumps Nashville Tourists + Rob Sharkey hits the streets of Nashville to see what tourists know about agriculture. + Regular + + + TVG + + + + Canadian Finals Rodeo + 2021 CFR: Round 6 + As the 2023 Canadian Finals Rodeo rapidly approaches, join us for a look back at Round 6 from the 2021 CFR at the Westerner Park in Red Deer, Alberta. + Sports + Rodeo + + + + Chris Cox Horsemanship + Chris explores the world of horse training. + Sports + Equestrian + + + TVG + + + + Saddle Up With Dennis Brouse + Lewis & Clark + Challenges endured by Lewis and Clark; Howdy needs help crossing a bridge; cattle clinic; trail ride at Broken Kettle Prairie. + Animals + + + TVG + + + + Midwest Country + Tim Hadler, Angie Senger, Terry Smith. + Music + + + TVG + + + + The Dailey & Vincent Show + Everette + Dailey & Vincent preform their new song. + Talk Shows + Variety + + + TVG + + + + Dr. David Jeremiah + Practical Bible teaching. + Religious + + + TVG + + + + Rural Evening News + Agriculture and rural news; weather; commodities markets reports from Chicago and Washington, D.C. + News + Environmental + + + TVG + + + + AgDay + An exploration of new information in American agriculture that farmers and ranchers need to succeed. + News + + + TVG + + + + Market Day Report + Live agricultural and rural news, weather, and in-depth commodities reports featuring the grains, cattle, and pork markets. + Regular + + + TVG + + + + Cow Guy Close + Markets specialist Scott Shellady breaks down headlines that drive the commodities and equities markets with commentary from respected industry heavyweights in wrapping up the trading day. + News + + + + FarmHer + Mari Omlan & Laura Olsen - Green Mountain Girls Farm + A rainy day won't spoil Marji's fun. + Regular + + + TVG + + + + Equestrian Nation + Trail Blazer - Doc Larsen + A veterinarian spends his retirement building horse trails; Doc Larsen; horse care tips. + Animals + Sports + + + TVG + + + + Best of America by Horseback + Valley Meadow Farms in Maryland + Del, Shevawn, Tom, and Pat fall in love with this bed and barn in Maryland and the family who loves sharing their farm with guests. + Travel + Animals + + + TVG + + + + Simply Southern + Smocking + Smocking, Boarhog's BBQ, what's in season and a recipe for shortcut tomato focaccia. + Regular + + + TVG + + + + The Texas Bucket List + Polish Pottery; Snoopy's Pier; Licon Dairy + Polish Pottery in Seguin; Snoopy's Pier in Corpus Christi; Licon Dairy in San Elizario. + Travel + + + TVPG + + + + Little Britches Rodeo + Sr. Boy Tie Down Roping + National Finals Senior Tie Down Roping; interviews with champions and members of the NLBRA family. + Sports + Rodeo + + + TVG + + + + America's Heartland + An urban couple moves to the country and grows saffron; a tomato farmer adds solar panels to farmland affected by drought; cooking a hearty white bean and beef stew; touring a lumber mill in Alabama. + Travel + + + TVG + + + + Small Town Big Deal + Georgia Peanut Festival + Innovation, tradition and success happen in rural places. + Travel + Documentary + + + TVG + + + + Mollie B Polka Party + Ennis Czech Boys; Leo Lonnie Orchestra; Jim Busta Band; Terry Cavanaugh & Alpine Express; Jack Tady & the Tady Bears. + Performing Arts + + + TVG + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + BEST TV + Variety + + + + Dezhurnyy Po Erevanu + Variety + + + + Izrail za nedelyu + Itogi informatsionnoy nedeli v Izraile v obzorakh blizhnevostochnogo byuro. + Travel + + + + Vy derzhites` + Programma ob ekonomike. V kazhdom vypuske - interv`yu s avtoritetnymi ekonomistami. + Talk Shows + + + + Vzyal I Poehal + Kak zhivut nashi na raznyh kontinentah? Istorii relokatsii i emigratsii. Sovety po adaptatsii v novoy strane. ZHizn glazami turistov i ne tolko v avtorskom proekte youtube - blogera Vovy Karmanova - Vzyal i poehal. + Variety + + + + Za porogom + Proekt o puteshestviyah, turizme, aktivnom otdyhe i ekstremalnyh vidah sporta. Marshruty vyhodnogo dnya, pohody i ekspeditsii. + Variety + + + + Zato chestno + Variety + + + + Dvoichnyy Kod + Variety + + + + Dvoichnyy Kod + Variety + + + + Chas speak + Tok- shou. + Talk Shows + + + + Dezhurnyy Po Erevanu + Variety + + + + Drobyshevskiy. Chelovek Razumnyy + History + Instructional + + + + Nauka Protiv + Documentary + + + + Vstal Vopros + Variety + + + + Vzyal I Poehal + Kak zhivut nashi na raznyh kontinentah? Istorii relokatsii i emigratsii. Sovety po adaptatsii v novoy strane. ZHizn glazami turistov i ne tolko v avtorskom proekte youtube - blogera Vovy Karmanova - Vzyal i poehal. + Variety + + + + Mul'tfil'my + Sbornik mul'tfil'mov. + Animated + Children + + + + Mul'tfil'my + Sbornik mul'tfil'mov. + Animated + Children + + + + Izrail za nedelyu + Itogi informatsionnoy nedeli v Izraile v obzorakh blizhnevostochnogo byuro. + Travel + + + + Sdelano v Izraile + 'Sdelano v Izraile' s Dinoy Margolinoy. + + Dina Margolina + + Local + + + + Vy derzhites` + Programma ob ekonomike. V kazhdom vypuske - interv`yu s avtoritetnymi ekonomistami. + Talk Shows + + + + Hroniki Novogo Mira + Variety + + + + Redaktsiya + Avtorskiy proyekt Alekseya Pivovarova, v kotorom on budet rasskazyvat' eksklyuzivnyye istorii ob aktual'nykh sobytiyakh i yavleniyakh. + News Magazine + + + + Chto eto bylo? + News Magazine + Talk Shows + + + + Den'gi + Glavnyye novosti iz mira biznesa i ekonomiki i poslednyaya informatsiya s birzhevykh ploshchadok. + Business + + + + Den'gi + Glavnyye novosti iz mira biznesa i ekonomiki i poslednyaya informatsiya s birzhevykh ploshchadok. + Business + + + + Den'gi + Glavnyye novosti iz mira biznesa i ekonomiki i poslednyaya informatsiya s birzhevykh ploshchadok. + Business + + + + Den'gi + Glavnyye novosti iz mira biznesa i ekonomiki i poslednyaya informatsiya s birzhevykh ploshchadok. + Business + + + + Novye itogi + Informatsionnaya teleperedacha. + News + + + TVG + + + + Na Paltsah + Variety + + + + Redaktsiya News + Aleksey Pivovarov korotko o samom vazhnom i aktualnom. + News + + + + Amerikanskie istorii + History + + + + Legenda + Etih lyudey pomnit i znaet vsya strana. Oni s dostoinstvom proshli ispytanie slavoy. Oni kumiry millionov. Aktery, politiki, muzykanty, uchenye i sportsmeny - lichno povedayut o teh, urokah, kotorye oni perezhili. + Variety + + + + 900 sekund + Comedy + + + + Vzyal I Poehal + Kak zhivut nashi na raznyh kontinentah? Istorii relokatsii i emigratsii. Sovety po adaptatsii v novoy strane. ZHizn glazami turistov i ne tolko v avtorskom proekte youtube - blogera Vovy Karmanova - Vzyal i poehal. + Variety + + + + Vstal Vopros + Variety + + + + Chto-to ne tak + Chto-to ne tak - eto avtorskiy video podkast Romana Tarasenko s po-nastoyashchemu poleznymi interv'yu. V formate dushevnoy, no obstoyatel'noy besedy on obsuzhdayet s gostyami temy, kotoryye volnuyut kazhdogo. + Variety + + + + Is stories + Variety + + + + 900 sekund + Comedy + + + + Redaktsiya News + Aleksey Pivovarov korotko o samom vazhnom i aktualnom. + News + + + + Zhiza + Hotite uznat bolshe o sovremennyh i interesnyh professiyah, no boites zadat glupyy vopros? My zadadim vse glupye voprosy professionalam za vas! A oni rasskazhut, kak vsyo est na samom dele! + Drama + + + + Legenda + Etih lyudey pomnit i znaet vsya strana. Oni s dostoinstvom proshli ispytanie slavoy. Oni kumiry millionov. Aktery, politiki, muzykanty, uchenye i sportsmeny - lichno povedayut o teh, urokah, kotorye oni perezhili. + Variety + + + + Eto ne Freyd + Programma o psikhologicheskikh problemakh muzhchin i zhenshchin. Ishchem puti resheniya i pomogayem preodolet' zhiznennyye trudnosti. + Reality TV + + + + Redaktsiya News + Aleksey Pivovarov korotko o samom vazhnom i aktualnom. + News + + + + Na Paltsah + Variety + + + + Mul'tfil'my + Sbornik mul'tfil'mov. + Animated + Children + + + + Dezhurnyy Po Erevanu + Variety + + + + Amerikanskie istorii + History + + + + Zhiza + Hotite uznat bolshe o sovremennyh i interesnyh professiyah, no boites zadat glupyy vopros? My zadadim vse glupye voprosy professionalam za vas! A oni rasskazhut, kak vsyo est na samom dele! + Drama + + + + Dvoichnyy Kod + Variety + + + + Zato chestno + Variety + + + + Novosti izrailya + News + + + + Spetsialnoe intervyu + Regular + + + + Na Paltsah + Variety + + + + Dva V Ume + Performing Arts + + + + Respirator Babushkina + Variety + + + + Karina krasnaya + Posle opyta pervoy neschastlivoy lyubvi Karina vykhodit zamuzh za cheloveka sharshe ee. + + Marina Konyashkina + Yuriy Chursin + Sergey Yushkevich + + Drama + + + + Karina krasnaya + Posle opyta pervoy neschastlivoy lyubvi Karina vykhodit zamuzh za cheloveka sharshe ee. + + Marina Konyashkina + Yuriy Chursin + Sergey Yushkevich + + Drama + + + + Dezhurnyy po Nyu-Yorku + Samye aktual'nye novosti Nyu-Yorka. + News Magazine + + + + Sdelano v Izraile + 'Sdelano v Izraile' s Dinoy Margolinoy. + + Dina Margolina + + Local + + + + Vy derzhites` + Programma ob ekonomike. V kazhdom vypuske - interv`yu s avtoritetnymi ekonomistami. + Talk Shows + + + + Spetsialnoe intervyu + Regular + + + + Amerikanskie istorii + History + + + + Skvoznoy Efir. Amerika + Variety + + + + Dezhurnyy po Nyu-Yorku + Samye aktual'nye novosti Nyu-Yorka. + News Magazine + + + + Karina krasnaya + Posle opyta pervoy neschastlivoy lyubvi Karina vykhodit zamuzh za cheloveka sharshe ee. + + Marina Konyashkina + Yuriy Chursin + Sergey Yushkevich + + Drama + + + + Karina krasnaya + Posle opyta pervoy neschastlivoy lyubvi Karina vykhodit zamuzh za cheloveka sharshe ee. + + Marina Konyashkina + Yuriy Chursin + Sergey Yushkevich + + Drama + + + + Respirator Babushkina + Variety + + + + Sdelano v Izraile + 'Sdelano v Izraile' s Dinoy Margolinoy. + + Dina Margolina + + Local + + + + Psihologiya Vlasti + Documentary + + + + Progulki po Izrailyu + Chem zhivyot Izrail? Vse poslednie novosti i ih analiz. + Documentary + + + + Nashi + Avtorskaya programma zhurnalista i pisatelya Aleksandra Genisa, v kotoroy on beseduet so svoimi druzyami - predstavitelyami mira iskusstva. + Talk Shows + + + + Chuzhestrantsy + History + + + + Amerikanskie istorii + History + + + + Razgovor s Labkovskim + Psiholog Mihail Labkovskiy i veduschiy Andrey Ezhov razbirayut slozhnye zhiznennye situatsii i dayut prakticheskie sovety. + Talk Shows + + + + Skvoznoy Efir. Amerika + Variety + + + + Mul'tfil'my + Sbornik mul'tfil'mov. + Animated + Children + + + + Dezhurnyy po Nyu-Yorku + Samye aktual'nye novosti Nyu-Yorka. + News Magazine + + + + Novosti + Operativnost', ob'yektivnost', kachestvo - glavnyye cherty 'Novostey'. V ob'yektive nashikh zhurnalistov - proisshestviya, aktual'nyye sobytiya politiki, ekonomiki. My otslezhivayem samoye interesnoye iz togo, chto proiskhodit v Ukraine i v mire. + News + + + + Za porogom + Proekt o puteshestviyah, turizme, aktivnom otdyhe i ekstremalnyh vidah sporta. Marshruty vyhodnogo dnya, pohody i ekspeditsii. + Variety + + + + Amerikanskie istorii + History + + + + Nauka Protiv + Documentary + + + + Drobyshevskiy. Chelovek Razumnyy + History + Instructional + + + + Bolshoy nyuztok + Glavnye novosti dnya v osnove bolshogo informatsionnogo shou, v kotorom veduschie, eksperty, korrespondenty i gosti v studii detalno obsuzhdayut kartinu uhodyaschego dnya. + Variety + + + + Nam nado pogovorit` + Programma Marianny Minsker i Mikhaila Labkovskogo o psikhologicheskikh problemakh. + Specials + Talk Shows + + + + Dvoichnyy Kod + Variety + + + + Redaktsiya. Spetsvypusk + Syuzhety o lyudyah, sobytiyah i yavleniyah glazami glavreda RTVI. + News Magazine + + + + Dnevnik svekrovi + Lena i Pavel - intelligentnye i utonchennye suprugi. V ikh sem'e tsarili teplye otnosheniya, poka odnazhdy ikh syn Danya ne prepodnes roditelyam syurpriz - svoyu passiyu Nyusyu. V neveste, kak nazlo, voplotilos vse nepriemlemoe dlya Belotserkovskikh. + + Evgeniya Dmitrieva + Olga Pavlovets + Anna Nevskaya + + Miniseries + Drama + + + + Dnevnik svekrovi + Lena i Pavel - intelligentnye i utonchennye suprugi. V ikh sem'e tsarili teplye otnosheniya, poka odnazhdy ikh syn Danya ne prepodnes roditelyam syurpriz - svoyu passiyu Nyusyu. V neveste, kak nazlo, voplotilos vse nepriemlemoe dlya Belotserkovskikh. + + Evgeniya Dmitrieva + Olga Pavlovets + Anna Nevskaya + + Miniseries + Drama + + + + Dezhurnyy po Nyu-Yorku + Samye aktual'nye novosti Nyu-Yorka. + News Magazine + + + + Hroniki Novogo Mira + Variety + + + + Sdelano v Izraile + 'Sdelano v Izraile' s Dinoy Margolinoy. + + Dina Margolina + + Local + + + + Bolshoy nyuztok + Glavnye novosti dnya v osnove bolshogo informatsionnogo shou, v kotorom veduschie, eksperty, korrespondenty i gosti v studii detalno obsuzhdayut kartinu uhodyaschego dnya. + Variety + + + + Skvoznoy Efir. Amerika + Variety + + + + Dezhurnyy po Nyu-Yorku + Samye aktual'nye novosti Nyu-Yorka. + News Magazine + + + + Dnevnik svekrovi + Lena i Pavel - intelligentnye i utonchennye suprugi. V ikh sem'e tsarili teplye otnosheniya, poka odnazhdy ikh syn Danya ne prepodnes roditelyam syurpriz - svoyu passiyu Nyusyu. V neveste, kak nazlo, voplotilos vse nepriemlemoe dlya Belotserkovskikh. + + Evgeniya Dmitrieva + Olga Pavlovets + Anna Nevskaya + + Miniseries + Drama + + + + Dnevnik svekrovi + Lena i Pavel - intelligentnye i utonchennye suprugi. V ikh sem'e tsarili teplye otnosheniya, poka odnazhdy ikh syn Danya ne prepodnes roditelyam syurpriz - svoyu passiyu Nyusyu. V neveste, kak nazlo, voplotilos vse nepriemlemoe dlya Belotserkovskikh. + + Evgeniya Dmitrieva + Olga Pavlovets + Anna Nevskaya + + Miniseries + Drama + + + + Dvoichnyy Kod + Variety + + + + Redaktsiya. Spetsvypusk + Syuzhety o lyudyah, sobytiyah i yavleniyah glazami glavreda RTVI. + News Magazine + + + + Hroniki Novogo Mira + Variety + + + + Psihologiya Vlasti + Documentary + + + + Progulki po Izrailyu + Chem zhivyot Izrail? Vse poslednie novosti i ih analiz. + Documentary + + + + Nashi + Avtorskaya programma zhurnalista i pisatelya Aleksandra Genisa, v kotoroy on beseduet so svoimi druzyami - predstavitelyami mira iskusstva. + Talk Shows + + + + Chuzhestrantsy + History + + + + Amerikanskie istorii + History + + + + Razgovor s Labkovskim + Psiholog Mihail Labkovskiy i veduschiy Andrey Ezhov razbirayut slozhnye zhiznennye situatsii i dayut prakticheskie sovety. + Talk Shows + + + + Skvoznoy Efir. Amerika + Variety + + + + Mul'tfil'my + Sbornik mul'tfil'mov. + Animated + Children + + + + Dezhurnyy po Nyu-Yorku + Samye aktual'nye novosti Nyu-Yorka. + News Magazine + + + + Novosti + Operativnost', ob'yektivnost', kachestvo - glavnyye cherty 'Novostey'. V ob'yektive nashikh zhurnalistov - proisshestviya, aktual'nyye sobytiya politiki, ekonomiki. My otslezhivayem samoye interesnoye iz togo, chto proiskhodit v Ukraine i v mire. + News + + + + Vzyal I Poehal + Kak zhivut nashi na raznyh kontinentah? Istorii relokatsii i emigratsii. Sovety po adaptatsii v novoy strane. ZHizn glazami turistov i ne tolko v avtorskom proekte youtube - blogera Vovy Karmanova - Vzyal i poehal. + Variety + + + + Chas speak + Tok- shou. + Talk Shows + + + + Dvoichnyy Kod + Variety + + + + Novosti izrailya + News + + + + Bolshoy nyuztok + Glavnye novosti dnya v osnove bolshogo informatsionnogo shou, v kotorom veduschie, eksperty, korrespondenty i gosti v studii detalno obsuzhdayut kartinu uhodyaschego dnya. + Variety + + + + Zato chestno + Variety + + + + Udivitelnye Tvari + Variety + + + + Eto ne Freyd + Programma o psikhologicheskikh problemakh muzhchin i zhenshchin. Ishchem puti resheniya i pomogayem preodolet' zhiznennyye trudnosti. + Reality TV + + + + Dnevnik svekrovi + Lena i Pavel - intelligentnye i utonchennye suprugi. V ikh sem'e tsarili teplye otnosheniya, poka odnazhdy ikh syn Danya ne prepodnes roditelyam syurpriz - svoyu passiyu Nyusyu. V neveste, kak nazlo, voplotilos vse nepriemlemoe dlya Belotserkovskikh. + + Evgeniya Dmitrieva + Olga Pavlovets + Anna Nevskaya + + Miniseries + Drama + + + + Dnevnik svekrovi + Lena i Pavel - intelligentnye i utonchennye suprugi. V ikh sem'e tsarili teplye otnosheniya, poka odnazhdy ikh syn Danya ne prepodnes roditelyam syurpriz - svoyu passiyu Nyusyu. V neveste, kak nazlo, voplotilos vse nepriemlemoe dlya Belotserkovskikh. + + Evgeniya Dmitrieva + Olga Pavlovets + Anna Nevskaya + + Miniseries + Drama + + + + Dezhurnyy po Nyu-Yorku + Samye aktual'nye novosti Nyu-Yorka. + News Magazine + + + + Amerikanskie istorii + History + + + + Legenda + Etih lyudey pomnit i znaet vsya strana. Oni s dostoinstvom proshli ispytanie slavoy. Oni kumiry millionov. Aktery, politiki, muzykanty, uchenye i sportsmeny - lichno povedayut o teh, urokah, kotorye oni perezhili. + Variety + + + + On Patrol: First Shift + A discussion of what's in store for the upcoming episode of. + Reality TV + Legal + + + TV14 + + + + On Patrol: Live + Hosts Dan Abrams, retired Tulsa Police Department Sgt. Sean. + Reality TV + Legal + + + TV14 + + + + On Patrol: Live + Hosts Dan Abrams, retired Tulsa Police Department Sgt. Sean. + Reality TV + Legal + + + TV14 + + + + On Patrol: Live + Hosts Dan Abrams, retired Tulsa Police Department Sgt. Sean. + Reality TV + Legal + + + TV14 + + + + Most Shocking + Busted in the Buff 5 + There's nothing to hide when these nudies hit the streets. + Reality TV + Legal + + + TV14 + + + + Stories of Love to the Rescue by Shriners Hospitals for Children® + Alec and Kaleb interview patients and their families, and how their lives have been changed because of the life-changing pediatric specialty care they received at Shriners Hospitals for Children®. + Paid Program + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Get Fit with Total Gym, Risk Free + Get in the best shape of your life with the Total Gym 30 Day Risk-Free Trial Offer. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + Stan Lee: Life, Death & Money + At 95-years-old, Stan Lee is a comic book legend; despite being touted as a creative genius whose original characters launched the multi-billion-dollar Marvel movie franchise, Lee is no mastermind when it comes to handling his money. + Specials + Reality TV + + + TVPG + + + + Autopsy: The Last Hours Of ... + Adam West + Adam West who played the original and classic Batman in the hit TV series of the 1960s, died in 2017 just days after being diagnosed with the blood and bone cancer Leukemia. + Documentary + + + TV14 + + + + Autopsy: The Last Hours Of ... + Bill Bixby + Bill Bixby is a legendary actor, director and producer and has been charming audiences for three decades; he finds fame with. + Documentary + + + TV14 + + + + Autopsy: The Last Hours Of ... + Christopher Reeve + An investigation into the cause of death for actor Christopher Reeve, who died Oct. 10, 2004, after being paralyzed from a horse riding accident since 1995. + + Darren McStay + Darrell Griggs + + Documentary + + + TV14 + + + + Autopsy: The Last Hours Of ... + Leonard Nimoy + On February 27th, 2015, Leonard Nimoy, the actor famed for bringing the world Spock, dies of COPD at the age of 83. + Documentary + + + TV14 + + + + Star Trek to Twilight Zone: TVs Favorite Sci-Fi + The fascinating back stories of. + Specials + Documentary + + + TVPG + + + + Cops Reloaded + Anti Hero Saves the Day + Officers respond to a domestic dispute; a suspect is chased on foot; a couple are questioned for driving a stolen vehicle; a boy is rescued from a swimming pool. + Reality TV + + + TVPG + + + + Cops Reloaded + Hide and Go Seek + A driver is questioned about drug possession; a man flees a car accident; a car is searched for drugs; a man with outstanding warrants takes refuge. + Reality TV + + + TVPG + + + + Cops Reloaded + Half a Dozen Dads + Police pursue a suspect in a high-speed chase; a car is searched for drugs; police investigate an alleged fight; cops probe a home invasion. + Reality TV + + + TVPG + + + + Cops Reloaded + Lewd Local Dudes + A routine traffic stop turns into an arrest for narcotics; a hit-and-run call is investigated; female impersonators are questioned for allegedly causing a disturbance; a drug transaction at a truck stop is investigated. + Reality TV + + + TVPG + + + + On Patrol: First Shift + A discussion of what's in store for the upcoming episode of. + Reality TV + Legal + + + TV14 + + + + On Patrol: Live + Hosts Dan Abrams, retired Tulsa Police Department Sgt. Sean. + Reality TV + Legal + + + TV14 + + + + On Patrol: Live + Hosts Dan Abrams, retired Tulsa Police Department Sgt. Sean. + Reality TV + Legal + + + TV14 + + + + Friends: Behind Closed Doors + An inside look at how. + Specials + Documentary + + + TVPG + + + + Autopsy: The Last Hours Of ... + Luke Perry + On March 4th, 2019, the much-loved actor Luke Perry dies after suffering a massive and totally unexpected stroke at just 52-years-old. + Documentary + + + TV14 + + + + Friends: Behind Closed Doors + An inside look at how. + Specials + Documentary + + + TVPG + + + + Friends: Behind Closed Doors + An inside look at how. + Specials + Documentary + + + TVPG + + + + Autopsy: The Last Hours Of ... + Luke Perry + On March 4th, 2019, the much-loved actor Luke Perry dies after suffering a massive and totally unexpected stroke at just 52-years-old. + Documentary + + + TV14 + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Ninja Woodfire Outdoor Grill + Meet the Shark Ninja Wood Fire Grill, with Master Grill, BBQ Smoke, and Air Fry outdoor capabilities. Powered by electricity and flavored by real burning wood pellets, Woodfire Technology allows you to easily create rich flavor you can see and taste. + Paid Program + + + + Cindy Crawford and Ellen Pompeo share secrets + Join Cindy Crawford and Ellen Pompeo as they discuss their busy lives and the breakthrough skin care discovery that keeps them looking their best. Take a trip to the stunning French countryside to see a rare French melon that defies aging. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + FALL FESTIVAL OF KNIVES + This is a special presentation of Cutlery Corner. Our Fall Festival set has 110 total pieces including a Katana sword, filet knife with sheath, several fixed blades, multiple bowies and tactical knives and a 21 piece kitchen set. FLEX PAY allowed. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Marvin Gaye: Life, Death & Money + Marvin Gaye was shot and killed inside his California mansion by his father; the world learns that Gaye's murder was not the biggest source of tension for the late star's family. + Specials + Documentary + + + TVPG + + + + Chris Cornell: Life, Death & Money + A look at the life grunge rock icon and former Soundgarden frontman Chris Cornell, and the bitter estate battles that ensued after his untimely death. + Specials + Reality TV + + + TVPG + + + + Tom Petty: Life, Death & Money + After Tom Petty's death in 2017, a bitter family feud erupted over control of the icon's artistic properties and how his legacy would be preserved. + Specials + Reality TV + + + TVPG + + + + Jessica Hahn: What Happened? + Jessica Hahn's public rape allegation against televangelist con man Jim Bakker leads to the ultimate downfall of the Praise the Lord Network (PTL) empire that stole millions from its followers. + Specials + Performing Arts + + + TVPG + + + + Monica Lewinsky: What Happened? + President Bill Clinton denies his alleged sexual relationship with 22-year-old Monica Lewinsky in 1998, but after the public learns of their affair and Clinton admits wrongdoing, he gets impeached. + Specials + Performing Arts + + + TVPG + + + + Jail + Child of God + The jails of Austin, Texas; Las Vegas; and Charlotte, N.C. + Reality TV + Legal + + + TV14 + + + + Jail + Phone Fight + A hysterical woman gets transferred to an isolation cell; a woman shows her undying LA pride to the arresting officers; a young woman indicates that she is going to harm herself, prompting deputies to restrain her. + Reality TV + Legal + + + TV14 + + + + Jail + Fearless + The jails of Austin, Texas; San Diego; and Charlotte, N.C. + Reality TV + Legal + + + TV14 + + + + Jail + Running Wild + A testy man gets sent to the isolation cell to cool off; a teary-eyed young man maintains his innocence; an inmate may have ingested contraband to avoid possession charges. + Reality TV + Legal + + + TV14 + + + + Jail + Party's Over + The jails of San Diego; Portland, Ore.; and Fort Worth, Texas. + Reality TV + Legal + + + TV14 + + + + Jail + Hat Thief + The jails of Las Vegas; Albuquerque, N.M.; and Portland, Ore. + Reality TV + Legal + + + TV14 + + + + Cops + Mardi Gras 2003 + A man is arrested for mooning a crowd; officers detain three men at the scene of a fight; a man claims a building has no stairs after he is arrested climbing down a drainpipe. + Reality TV + Legal + + + TV14 + + + + Cops + Coast to Coast + Officers Deas and Nelson assist a carjacking victim in New Orleans; a man claims a discovered crack pipe does not belong to him. + Reality TV + Legal + + + TVPG + + + + Cops + Bad Girls 4 Special Edition + Officers try to restrain a belligerent male suspect and his combative female companion in Palm Springs, Calif. + Reality TV + Legal + + + TV14 + + + + Cops + Coast to Coast + A deputy questions a woman who accuses her boyfriend of abusive behavior; a call about shots being fired leads to the discovery of a gun; officers pursue a man after he steals his wife's car and their children. + Reality TV + Legal + + + TVPG + + + + Jail + Child of God + The jails of Austin, Texas; Las Vegas; and Charlotte, N.C. + Reality TV + Legal + + + TV14 + + + + Jail + Phone Fight + A hysterical woman gets transferred to an isolation cell; a woman shows her undying LA pride to the arresting officers; a young woman indicates that she is going to harm herself, prompting deputies to restrain her. + Reality TV + Legal + + + TV14 + + + + Jail + Fearless + The jails of Austin, Texas; San Diego; and Charlotte, N.C. + Reality TV + Legal + + + TV14 + + + + Jail + Running Wild + A testy man gets sent to the isolation cell to cool off; a teary-eyed young man maintains his innocence; an inmate may have ingested contraband to avoid possession charges. + Reality TV + Legal + + + TV14 + + + + Jail + Party's Over + The jails of San Diego; Portland, Ore.; and Fort Worth, Texas. + Reality TV + Legal + + + TV14 + + + + Jail + Hat Thief + The jails of Las Vegas; Albuquerque, N.M.; and Portland, Ore. + Reality TV + Legal + + + TV14 + + + + Cops + Mardi Gras 2003 + A man is arrested for mooning a crowd; officers detain three men at the scene of a fight; a man claims a building has no stairs after he is arrested climbing down a drainpipe. + Reality TV + Legal + + + TV14 + + + + Cops + Coast to Coast + Officers Deas and Nelson assist a carjacking victim in New Orleans; a man claims a discovered crack pipe does not belong to him. + Reality TV + Legal + + + TVPG + + + + Cops + Bad Girls 4 Special Edition + Officers try to restrain a belligerent male suspect and his combative female companion in Palm Springs, Calif. + Reality TV + Legal + + + TV14 + + + + Cops + Coast to Coast + A deputy questions a woman who accuses her boyfriend of abusive behavior; a call about shots being fired leads to the discovery of a gun; officers pursue a man after he steals his wife's car and their children. + Reality TV + Legal + + + TVPG + + + + Most Shocking + Stopped by the Law 4 + A lead-footed drug addict leads police on a chase; a routine traffic stop takes a harrowing turn when a woman jumps off a bridge, taking an officer with her; a drug runner gets nabbed with cocaine. + Reality TV + Legal + + + TV14 + + + + Most Shocking + Lawless Ladies 2 + A revolt at a women's prison leaves guards at the mercy of the inmates; a police officer making a traffic stop is exposed to a topless revue; a woman with outstanding warrants adds assault on an officer to her rap sheet. + Reality TV + Legal + + + TV14 + + + + Most Shocking + Citizens Under Attack + A jilted husband savagely stabs his wife; a strip club bouncer goes berserk and beats a customer; a feisty woman in a miniskirt goes toe-to-toe with a gang of bullies. + Reality TV + Legal + + + TV14 + + + + Most Shocking + Stopped by the Law 4 + A lead-footed drug addict leads police on a chase; a routine traffic stop takes a harrowing turn when a woman jumps off a bridge, taking an officer with her; a drug runner gets nabbed with cocaine. + Reality TV + Legal + + + TV14 + + + + Most Shocking + Lawless Ladies 2 + A revolt at a women's prison leaves guards at the mercy of the inmates; a police officer making a traffic stop is exposed to a topless revue; a woman with outstanding warrants adds assault on an officer to her rap sheet. + Reality TV + Legal + + + TV14 + + + + Most Shocking + Citizens Under Attack + A jilted husband savagely stabs his wife; a strip club bouncer goes berserk and beats a customer; a feisty woman in a miniskirt goes toe-to-toe with a gang of bullies. + Reality TV + Legal + + + TV14 + + + + Coin Collecting with Mike Mezack + Learn about the wonderful world of numismatics with your host Mike Mezack and get the opportunity to build your own collection with some of the best deals around! + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigate Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Get Fit with Total Gym, Risk Free + Get in the best shape of your life with the Total Gym 30 Day Risk-Free Trial Offer. + Paid Program + + + + Stories of Love to the Rescue by Shriners Hospitals for Children® + Alec and Kaleb interview patients and their families, and how their lives have been changed because of the life-changing pediatric specialty care they received at Shriners Hospitals for Children®. + Paid Program + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Hollywood 911 + OJ & Nicole Brown Simpson; Frankie Muniz; Gary Coleman; Shannen Doherty + Nicole Brown's desperate call for help; Frankie Muniz's domestic dispute; Gary Coleman's final days; Shannen Doherty encounters a suicidal fan. + Reality TV + Drama + + + TV14 + + + + Hollywood 911 + Brittany Murphy; Bryan Cranston; Amanda Bynes; Nicki Minaj + Brittany Murphy's mother tries to save her daughter's life; Bryan Cranston's car gets broken into; Amanda Bynes' neighborhood breakdown; Nicki Minaj's volatile Texas Hotel altercation. + Reality TV + Drama + + + TV14 + + + + Hollywood 911 + Whitney Houston; Shia LaBeouf; Miley Cyrus; Lamar Odom + Whitney Houston's final moments; the terrifying 911 call made by Shia LaBeouf as he confronts a stalker inside his home; Lamar Odom's brush with death; Miley Cyrus' traumatic tour bus crash. + Reality TV + Drama + + + TV14 + + + + Charles Manson: The Final Words + An in-depth look into the Manson family murders told from Charles Manson's perspective; never-before-seen case files, pictures and exclusive interviews with Manson himself from inside California State Prison. + Specials + Documentary + + + TV14 + + + + Jail + Big Angry Man + A look at jails in Las Vegas, Nev., Portland, Ore. and Tacoma, Wash. + Reality TV + Legal + + + TV14 + + + + Jail + Bad Boys + Deputies assist arresting officers by removing an angry man from their patrol car; violent outbursts plague an arrest; one woman struggles with bail; three drunk men become wildly emotional. + Reality TV + Legal + + + TV14 + + + + Jail + Hysterical Earring + The jails of San Diego, Calif.; Portland, Ore. and Las Vegas, Nev. + Reality TV + Legal + + + TV14 + + + + Jail + Ultimate Fighter + In Charlotte, N.C., an angry inmate refuses to change clothes; in Portland, Ore., a young man in violation of his parole is stopped by officers for attempting to hitchhike; in Las Vegas, two men arrested for domestic violence claim they were beaten. + Reality TV + Legal + + + TV14 + + + + Jail + International Police + A man cannot understand why he was arrested; confusion is sparked over the gender of an arrested individual; a man is put into a holding cell after his inability to answer questions halts the booking process. + Reality TV + Legal + + + TV14 + + + + Jail + Hopeless Hooker + An extremely agitated woman gets placed in a restraint chair; a young woman with a drug addiction is booked on prostitution charges; an uncooperative and drunken man refuses to change into his jail uniform. + Reality TV + Legal + + + TV14 + + + + Cops + Coast to Coast + Civilians restrain a suspected prowler; a suspicious amount of money leads to an arrest during a traffic stop; a bicyclist has drugs in a backpack. + Reality TV + Legal + + + TVPG + + + + Cops + Coast to Coast + A police officer pursues a speeding motorcycle; an officer apprehends a suspect with a loaded rifle in the back seat of his vehicle. + Reality TV + Legal + + + TVPG + + + + Cops + Coast to Coast + Responding to a call about a fight at a local gas station; two women are detained at a convenient store after jealousy causes them to fight. + Reality TV + Legal + + + TV14 + + + + Cops + Resisting Arrest No. 1 + An intense struggle ensues when officers attempt to place a suspect under arrest. + Reality TV + Legal + + + TV14 + + + + Jail + Big Angry Man + A look at jails in Las Vegas, Nev., Portland, Ore. and Tacoma, Wash. + Reality TV + Legal + + + TV14 + + + + Jail + Bad Boys + Deputies assist arresting officers by removing an angry man from their patrol car; violent outbursts plague an arrest; one woman struggles with bail; three drunk men become wildly emotional. + Reality TV + Legal + + + TV14 + + + + Jail + Hysterical Earring + The jails of San Diego, Calif.; Portland, Ore. and Las Vegas, Nev. + Reality TV + Legal + + + TV14 + + + + Jail + Ultimate Fighter + In Charlotte, N.C., an angry inmate refuses to change clothes; in Portland, Ore., a young man in violation of his parole is stopped by officers for attempting to hitchhike; in Las Vegas, two men arrested for domestic violence claim they were beaten. + Reality TV + Legal + + + TV14 + + + + Jail + International Police + A man cannot understand why he was arrested; confusion is sparked over the gender of an arrested individual; a man is put into a holding cell after his inability to answer questions halts the booking process. + Reality TV + Legal + + + TV14 + + + + Jail + Hopeless Hooker + An extremely agitated woman gets placed in a restraint chair; a young woman with a drug addiction is booked on prostitution charges; an uncooperative and drunken man refuses to change into his jail uniform. + Reality TV + Legal + + + TV14 + + + + Cops + Coast to Coast + Civilians restrain a suspected prowler; a suspicious amount of money leads to an arrest during a traffic stop; a bicyclist has drugs in a backpack. + Reality TV + Legal + + + TVPG + + + + Cops + Coast to Coast + A police officer pursues a speeding motorcycle; an officer apprehends a suspect with a loaded rifle in the back seat of his vehicle. + Reality TV + Legal + + + TVPG + + + + Cops + Coast to Coast + Responding to a call about a fight at a local gas station; two women are detained at a convenient store after jealousy causes them to fight. + Reality TV + Legal + + + TV14 + + + + Cops + Resisting Arrest No. 1 + An intense struggle ensues when officers attempt to place a suspect under arrest. + Reality TV + Legal + + + TV14 + + + + World's Most Amazing Videos + Footage of real experiences include dangerous police encounters, natural disasters and humorous mishaps. + Reality TV + + + TV14 + + + + World's Most Amazing Videos + Race car skids into track-side TV cameraman; pregnant woman leaps from burning building; bungee-jumping accident; earthquake in Assisi, Italy. + Reality TV + + + TV14 + + + + World's Most Amazing Videos + A wing walker slips during an airplane stunt exhibition; a rocket-fuel factory explodes; a store clerk fends off one robber only to be held up by two others later. + Reality TV + + + TV14 + + + + World's Most Amazing Videos + Footage of real experiences include dangerous police encounters, natural disasters and humorous mishaps. + Reality TV + + + TV14 + + + + World's Most Amazing Videos + Race car skids into track-side TV cameraman; pregnant woman leaps from burning building; bungee-jumping accident; earthquake in Assisi, Italy. + Reality TV + + + TV14 + + + + World's Most Amazing Videos + A wing walker slips during an airplane stunt exhibition; a rocket-fuel factory explodes; a store clerk fends off one robber only to be held up by two others later. + Reality TV + + + TV14 + + + + Transforming Lives by Shriners Hospitals for Children® + Join Alec as he journeys into heartwarming stories of patients, their families and the amazing impact the specialized pediatric care at Shriners Hospitals for Children® has had in transforming their lives. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + OXYPURE ZERO, AIR PURIFIER WITH ZERO REPLACEMENT FILTERS + JD Scott shares the AMAZING Oxypure Zero, Air Purifier with Zero Replacement Filters! Get the smart WIFI enabled air purifier that helps achieve ZERO airborn pollutants without any additional replacement filters! Call/go online/scan the QR code NOW! + Paid Program + + + + Gwyneth Paltrow: Terrorized + Gwyneth Paltrow tries to protect herself and her family from a relentless stalker who travels across the country to get close to her; Gwyneth's personal head of security gives exclusive insight into the private life of the terrified actress. + Specials + Reality TV + + + TV14 + + + + Madonna: Stalked + In 1995 Madonna's life is put on the line when a man who has a laundry list of mental health problems knocks on her door. + Specials + Documentary + + + TV14 + + + + Christina Grimmie: A Voice Silenced + Although Christina Grimmie was an artist on the rise, making a name for herself on. + Specials + Performing Arts + + + TV14 + + + + Bigfoot: I Saw It! + Hunters Roger Patterson and Bob Gimlin set out to search for the fabled beast. + Specials + Documentary + + + TV14 + + + + Jail + Hot Tied Whiner + After being arrested for domestic violence, a man is placed in restraints; an intoxicated man picks a fight with inmates over their hometown; a woman is arrested for assaulting theater guards. + Reality TV + Legal + + + TV14 + + + + Jail + Tuxedo Man + Officers have difficulty booking an incomprehensible man; a commotion at a church ends in arrest; a man wearing a tuxedo is detained after mocking officers for wearing. + Reality TV + Legal + + + TV14 + + + + Jail + Wild Girl + A woman kicks an officer in the face while being put into the patrol car; a man arrested for fighting entertains deputies with his interpretation of heavy metal tunes; a man tries to bite officers; a man is arrested for drinking and driving. + Reality TV + Legal + + + TV14 + + + + Jail + Phone Banger + A hysterical woman gets transferred to an isolation cell; a woman shows her undying LA pride to the arresting officers; a young woman indicates that she is going to harm herself, prompting deputies to restrain her. + Reality TV + Legal + + + TV14 + + + + Jail + Prom Dress DUI + A testy man gets sent to the isolation cell to cool off; a teary-eyed young man maintains his innocence; an inmate may have ingested contraband to avoid possession charges. + Reality TV + Legal + + + TV14 + + + + Jail + Fake Seizure + An inmate claims to have post traumatic stress disorder; an inmate fakes a seizure; a young man is arrested for assault. + Reality TV + Legal + + + TV14 + + + + Cops + Coast to Coast + A witness helps apprehend a burglar; at a traffic stop, a man says his ailing wife put illegal tags on his car. + Reality TV + Legal + + + TVPG + + + + Cops + Rescues Special Edition + Deputies and civilians form a human chain to rescue a man who has fallen into a rushing river; a driver is pinned in an overturned vehicle. + Reality TV + Legal + + + TVPG + + + + Cops + Coast to Coast + An officer calls in a K-9 unit to search for narcotics; an officer arrests a suspect on a charge of domestic battery. + Reality TV + Legal + + + TVPG + + + + Cops + Portland, OR; Maricopa County, AZ; San Bernardino, CA: Rescue 2: Special Edition + A suspect holds his wife hostage, forcing officers to break down his door; water almost sweeps away a man's pickup truck. + Reality TV + Legal + + + TVPG + + + + Jail + Hot Tied Whiner + After being arrested for domestic violence, a man is placed in restraints; an intoxicated man picks a fight with inmates over their hometown; a woman is arrested for assaulting theater guards. + Reality TV + Legal + + + TV14 + + + + Jail + Tuxedo Man + Officers have difficulty booking an incomprehensible man; a commotion at a church ends in arrest; a man wearing a tuxedo is detained after mocking officers for wearing. + Reality TV + Legal + + + TV14 + + + + Jail + Wild Girl + A woman kicks an officer in the face while being put into the patrol car; a man arrested for fighting entertains deputies with his interpretation of heavy metal tunes; a man tries to bite officers; a man is arrested for drinking and driving. + Reality TV + Legal + + + TV14 + + + + Jail + Phone Banger + A hysterical woman gets transferred to an isolation cell; a woman shows her undying LA pride to the arresting officers; a young woman indicates that she is going to harm herself, prompting deputies to restrain her. + Reality TV + Legal + + + TV14 + + + + Jail + Prom Dress DUI + A testy man gets sent to the isolation cell to cool off; a teary-eyed young man maintains his innocence; an inmate may have ingested contraband to avoid possession charges. + Reality TV + Legal + + + TV14 + + + + Jail + Fake Seizure + An inmate claims to have post traumatic stress disorder; an inmate fakes a seizure; a young man is arrested for assault. + Reality TV + Legal + + + TV14 + + + + One Step Beyond + The Burning Girl + A girl denies arson charges, but appears guilty. + + Al Hopson + Peter Walker + Geraldine Wall + + Sci-Fi + + + + Hollywood Idols + Roger Moore: A Matter of Class + Actor Roger Moore relays the story of his life and career; film clips include. + Biography + + + TVPG + + + + Doctor Who + The Krotons + The time-travelers land amid a revolt. + + William Hartnell + Patrick Troughton + Jon Pertwee + + Sci-Fi + Drama + + + TVPG + + + + Doctor Who + The Krotons + Jamie takes action in the Doctor's absence. + + William Hartnell + Patrick Troughton + Jon Pertwee + + Sci-Fi + Drama + + + TVPG + + + + Doctor Who + The Krotons + The Doctor uses acid as a weapon. + + William Hartnell + Patrick Troughton + Jon Pertwee + + Sci-Fi + Drama + + + TVPG + + + + Danger Man + The Relaxed Informer + A girl appears to be a traitor, but may not be aware of it. + + Patrick McGoohan + + Drama + + + TVPG + + + + Danger Man + The Brothers + A fiery girl leads Drake to Sicilian brothers who stole a diplomatic pouch. + + Patrick McGoohan + + Drama + + + TVPG + + + + Wiseguy + Smokey Mountain Requiem + Vinnie's intention of leaving the operation prompts Mel to offer him control of the country's largest cocaine distribution network. + + Ken Wahl + Jonathan Banks + Jim Byrnes + + Drama + + + TV14 + + + + Nightmare Alley + A sideshow barker (Tyrone Power) goes from mind reader to society spiritualist, then to carnival geek. + + Tyrone Power + Joan Blondell + Coleen Gray + + 1947 + Movies + Crime Story + + + TVG + + + 3 + + + + Nightmare Alley + A sideshow barker (Tyrone Power) goes from mind reader to society spiritualist, then to carnival geek. + + Tyrone Power + Joan Blondell + Coleen Gray + + 1947 + Movies + Crime Story + + + TVG + + + 3 + + + + Vampyr + While staying at an inn near a creepy castle, a young man (Julian West) meets two sisters, a one-legged man and an old vampire (Henriette Gérard). + + Julian West + Henriette Gérard + Jan Hieronimko + + 1932 + Movies + Horror + + + TVG + + + 3 + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Stories of Love to the Rescue by Shriners Hospitals for Children® + Alec and Kaleb interview patients and their families, and how their lives have been changed because of the life-changing pediatric specialty care they received at Shriners Hospitals for Children®. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Heart of Health + A program dedicated to examining the truth in the Bible, which leads to love and healing of both the physical body and spiritual self. + Religious + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Stories of Love to the Rescue by Shriners Hospitals for Children® + Alec and Kaleb interview patients and their families, and how their lives have been changed because of the life-changing pediatric specialty care they received at Shriners Hospitals for Children®. + Paid Program + + + + Mustard Pancakes + Tongue Twister + Mr. D learns that playing tricks on people is not a good thing to do; a pie piece goes missing. + Children + Instructional + + + TVY + + + + DragonFlyTV + Science for children. + Children + Instructional + + + TVG + + + + Dog Tales + Dog training, health, nutrition, behavior and grooming. + News Magazine + Animals + + + TVG + + + + Biz Kid$ + Financial literacy and work readiness for children ages 6 to 12. + + Kaelon Christopher + Alexander Oki + + Children + Instructional + + + TVG + + + + Animal Rescue + A showcase of animal rescues with a focus on the work of the dedicated individuals who treat the various creatures of the animal kingdom. + Reality TV + Animals + + + TVG + + + + Think Big + Teen inventors use their creativity and scientific skill to create remarkable machines. + Instructional + + + TVG + + + + The Adventures of Champion + The Deer Hunters + Ricky tries to rescue a fawn from a snare and incurs the trappers' wrath; The men are trying to provide meat for a railroad construction crew but are wiping out the native game in the process. + + Barry Curtis + James Bannon + Francis McDonald + + Regular + + + + The Lone Ranger + The Man Who Came Back + Tonto and the Lone Ranger are puzzled by an old friend's disappearance. + + Clayton Moore + Jay Silverheels + + Christmas + + + TVPG + + + + Bonanza + Death at Dawn + The deputized Cartwrights sentence a murderer to hang at dawn. + + Lorne Greene + Michael Landon + Dan Blocker + + Drama + + + TVG + + + + Hawkeye and the Last of the Mohicans + Revenge + A young lieutenant seeks blind vengeance for the brutal murders of his parents by warmongering Shawnee. + + John Hart + Lon Chaney Jr. + + Regular + + + + The Adventures of Kit Carson + Incident at Wagontire + Kit finds a large sum of money on the body of a dead stagecoach passenger; El Toro is framed. + + Bill Williams + Don Diamond + + Regular + + + + Straight Shooter + An FBI agent (Tim McCoy) and his partner (Ben Corbett) seek mobsters who killed for possession of stolen bonds. + + Tim McCoy + Julie Sheldon + Ben Corbett + + 1940 + Movies + Crime Story + + + 1 + + + + Doctor Who + Destiny of the Daleks + The Doctor arrives on a desolate planet only to discover he is not the only person interested in the ruins of an ancient city. + + Tom Baker + Lalla Ward + Tim Barlow + + Sci-Fi + Drama + + + TVPG + + + + Doctor Who + Destiny of the Daleks + The Movellans try to discover the purpose of the Daleks. + + Tom Baker + Lalla Ward + Tim Barlow + + Sci-Fi + Drama + + + TVPG + + + + Doctor Who + Destiny of the Daleks + The Doctor's worst fears are realized when he and Romana are trapped underground. + + Tom Baker + Lalla Ward + Tim Barlow + + Sci-Fi + Drama + + + TVPG + + + + Doctor Who + Destiny of the Daleks + The Doctor and Davros are used as pawns in a great space war that has been halted by a logical stalemate. + + Tom Baker + Lalla Ward + Tim Barlow + + Sci-Fi + Drama + + + TVPG + + + + The Saint + The Lawless Lady + Templar hopes to reform a lovely, larcenous countess (Dawn Addams) when they become partners to avenge a murder; guest Julian Glover. + + Roger Moore + + Drama + + + TVPG + + + + Wiseguy + Player to Be Named Now + Mel Profitt (Kevin Spacey) uses a former girlfriend (Jane Brucker) as a sexual pawn in a power game with a rival. Guest star: Joan Severance. With Jonathan Banks. + + Ken Wahl + Jonathan Banks + Jim Byrnes + + Drama + + + TV14 + + + + The Brain That Wouldn't Die + A surgeon (Jason Evers) tapes his fiancee's (Virginia Leith) mouth shut and prepares to put her head on a model's (Adele Lamont) body. + + Jason Evers + Virginia Leith + Adele Lamont + + 1962 + Movies + Horror + + + TVG + + + 1 + + + + Cold Squad + Amanda Millard + The investigation into the resurrection of a woman believed to have been killed in 1982 leads to a police informant and those who covered for him. + + Julie Stewart + Michael Hogan + Joy Tanner + + Drama + + + TV14 + + + + Intelligence + Love and Conspiracy + Mary is ordered to gather intel on her lover; Reardon punishes an opportunistic drug supplier. + + Ian Tracey + Klea Scott + Matt Frewer + + Drama + + + TV14 + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Daytime + Talk Shows + + + TVPG + + + + My Little Margie + Meet Mr. Murphy + A widower lives with his cute but mischievous 21-year-old daughter. + + Gale Storm + Charles Farrell + Don Hayden + + Sitcom + + + + Life With Elizabeth + Ping Pong; Leaking Roof; Vacuum Cleaner Salesman + Alvin beats Elizabeth at pingpong; Alvin brags about fixing the roof, but it leaks during a storm; a vacuum cleaner salesman drops by and thinks they are planning his demise. + + Betty White + Del Moore + + Sitcom + + + TVPG + + + + The Loretta Young Show + Forest Ranger + An escaped convict seeks revenge on a forest ranger. + + Loretta Young + + Drama + + + + Decoy + The Lieutenant Had a Son + Casey must investigate an Army officer who is driven to violence by his ex-wife. + + Beverly Garland + + Drama + + + + The Lone Ranger + Pete and Pedro + A ruthless man plans to gain control over a young woman's property. + + Clayton Moore + Jay Silverheels + + Christmas + + + TVPG + + + + Annie Oakley + Sure-Shot Annie + Annie (Gail Davis) attempts to prove a beautiful woman (Eve Miller) is involved in two bank robberies. With Rick Vallin. + + Gail Davis + Brad Johnson + Jimmy Hawkins + + Christmas + + + TVPG + + + + The Doctors + The lives and loves of the staff at Hope Memorial Hospital. + + Meg Mundy + Franc Luz + Elaine Lee + + Soaps + + + + Tales of Tomorrow + The Crystal Egg + A scientist claims to have seen the surface of Mars. + + Thomas Mitchell + Edgar Stehli + Josephine Brown + + Sci-Fi + + + + The Ray Bradbury Theater + The Martian + A lonely couple living on Mars meet a young man who appears to be their dead son. + + John Vernon + Paul Clemens + Sheila Moore + + Sci-Fi + + + TVPG + + + + Suspense + The Man Who Talked in His Sleep + Teenage practical joker Jerry pretends his new stepfather revealed something incriminating while talking in his sleep. + + Don Briggs + Edith Atwater + Ben Cooper + + Drama + + + + Danger Man + Say It With Flowers + A security investigator travels worldwide. + + Patrick McGoohan + + Drama + + + TVPG + + + + Naked City + The Fault in Our Stars + An unemployed actor takes to strangling and robbing cab drivers to pay the rent. With Roddy McDowall. + + Paul Burke + Horace McMahon + Harry Bellaver + + Drama + + + + Kansas City Confidential + An ex-convict (John Payne) is framed for a bank holdup done by a police captain (Preston Foster) and men wearing masks. + + John Payne + Coleen Gray + Preston Foster + + 1952 + Movies + Crime Story + + + TVG + + + 3 + + + + Genie From Down Under + Customs + Penelope, Lady Diana and Miss Mossop are stopped at customs. + Comedy + + + + The Doctors + The lives and loves of the staff at Hope Memorial Hospital. + + Meg Mundy + Franc Luz + Elaine Lee + + Soaps + + + + Wiseguy + Pilot + After serving an 18-month prison sentence to establish his cover, Vinnie infiltrates the Atlantic City crime empire of Sonny Steelgrave (Ray Sharkey). + + Ken Wahl + Jonathan Banks + Jim Byrnes + + Drama + + + TV14 + + + + Doctor Who + Castrovalva + The Doctor has been taken from the Zero Cabinet by Castrovalvan warriors. + + Peter Davison + + Sci-Fi + Drama + + + TVPG + + + + Doctor Who + Castrovalva + The Doctor seeks a solution to Castrovalva's temporal treadmill, which renders escape impossible. + + Peter Davison + + Sci-Fi + Drama + + + TVPG + + + + 21 Jump Street + Don't Stretch the Rainbow + Fuller sends Hanson and Hoffs to defuse an explosive situation in a high school divided by racial tensions; guest J.A. Preston. + + Johnny Depp + Holly Robinson + Peter DeLuise + + Drama + + + TVPG + + + + The Saint + The Benevolent Burglary + Templar tries to teach an arrogant millionaire a lesson, and bring together two lovers, by planning the burglary of an art collection. + + Roger Moore + + Drama + + + TVPG + + + + Heartland + Into the Wild + Amy helps a unique animal from an abandoned zoo; Tim joins Jessica in New York for her art show while trying to fix a past mistake; Jack and Lisa work through difficulties in their relationship. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Cold Squad + Jane Doe + After a badly decomposed body is discovered, the team (Julie Stewart, Bob Frazer, Peter Wingfield) reopens a 20-year-old unsolved murder case. + + Julie Stewart + Michael Hogan + Joy Tanner + + Drama + + + TV14 + + + + Disasters of the Century + Against the Elements + A mild winter weekend becomes a prelude to destruction from above, and a summer day full of promise ends in a whirlwind of devastation and death. + Documentary + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Stories of Love to the Rescue by Shriners Hospitals for Children® + Alec and Kaleb interview patients and their families, and how their lives have been changed because of the life-changing pediatric specialty care they received at Shriners Hospitals for Children®. + Paid Program + + + + Daytime + Talk Shows + + + TVPG + + + + My Little Margie + A Mother for Vern + A widower lives with his cute but mischievous 21-year-old daughter. + + Gale Storm + Charles Farrell + Don Hayden + + Sitcom + + + + Four Star Playhouse + Note of Fear + Anthology series features four rotating stars. + + Dick Powell + Charles Boyer + David Niven + + Drama + + + + Meet Corliss Archer + The Phone Fumble + Harry's efforts to make an important phone call are hampered by the loss of the phone number, the loss of the phone, Corliss's housework, and Dexter's visit with gifts of food. + + Ann Baker + Mary Brian + John Eldredge + + Sitcom + + + TVPG + + + + The Lawless Years + Lucky Silva + A New York cop fights organized crime in the Roaring '20s. + + James Gregory + Robert Karnes + + Drama + + + + Shotgun Slade + Slade is a combination private detective and Western hero. + + Scott Brady + + Regular + + + + Annie Oakley + Tuffy + Annie (Gail Davis) becomes suspicious and concerned about a boy's (Barry Froner) attitude after his convict father's (Douglas Grange) death. + + Gail Davis + Brad Johnson + Jimmy Hawkins + + Christmas + + + TVPG + + + + The Doctors + The lives and loves of the staff at Hope Memorial Hospital. + + Meg Mundy + Franc Luz + Elaine Lee + + Soaps + + + + Tales of Tomorrow + The Dark Angel + A woman is immortal. + + Meg Mundy + Sidney Blackmer + Don Briggs + + Sci-Fi + + + + The Ray Bradbury Theater + The Lonely One + Amid warnings of a serial strangler, a bored woman (Joanna Cassidy) strolls home -- alone and late at night. + + Joanna Cassidy + Sheila McCarthy + Maggie Harper + + Sci-Fi + + + TVPG + + + + Suspense + Monsieur Vidocq + Retired police commissioner, Monsieur Vidocq, investigates a series of thefts at France's national museum. + + Luis Van Rooten + Jacques Aubuchon + Nigel Green + + Drama + + + + Danger Man + The Man Who Wouldn't Talk + Drake must free a captured British spymaster before he sells his secrets. + + Patrick McGoohan + + Drama + + + TVPG + + + + Naked City + Tombstone for a Derelict + Four youths dress as Nazis and stab derelicts to effect a change in the brutal nature of man. With Robert Redford. + + Paul Burke + Horace McMahon + Harry Bellaver + + Drama + + + + Long John Silver's Return to Treasure Island + The pirate (Robert Newton) and young Jim Hawkins (Kit Taylor) rescue Purity Pinker (Connie Gilchrist) and look for treasure. + + Robert Newton + Kit Taylor + Connie Gilchrist + + 1954 + Movies + Adventure + + + TVG + + + 3 + + + + The Girl From Tomorrow + Kings of the Dinosaurs + Alana and Jenny stop the second spaceship; Silverthorn is tricked. + + Katharine Cullen + Melissa Marshall + James Findlay + + Sci-Fi + + + + The Doctors + The lives and loves of the staff at Hope Memorial Hospital. + + Meg Mundy + Franc Luz + Elaine Lee + + Soaps + + + + Wiseguy + Pilot + After serving an 18-month prison sentence to establish his cover, Vinnie infiltrates the Atlantic City crime empire of Sonny Steelgrave (Ray Sharkey). + + Ken Wahl + Jonathan Banks + Jim Byrnes + + Drama + + + TV14 + + + + Doctor Who + Castrovalva + The true identity of the Portreeve is revealed. + + Peter Davison + + Sci-Fi + Drama + + + TVPG + + + + Doctor Who + Four to Doomsday + The Tardis lands on a huge spaceship, captained by the leader of a race of technologically advanced reptiles intent on taking over Earth. + + Peter Davison + Stratford Johns + Matthew Waterhouse + + Sci-Fi + Drama + + + TVPG + + + + 21 Jump Street + Honor Bound + When teenage cadets appear to have brutalized five homosexual men, Hanson and Penhall investigate at a tough military academy. + + Johnny Depp + Holly Robinson + Peter DeLuise + + Drama + + + TVPG + + + + The Saint + The Wonderful War + Templar uses loudspeakers, tape-recorders, fireworks, friends and a pretty girl to wage war against a Middle East oil-producing state. + + Roger Moore + + Drama + + + TVPG + + + + Da Vinci's Inquest + A Big Whiff of a Real Bad Smell + Da Vinci investigates a house fire; Leary and Shannon work on a missing persons case. + + Nicholas Campbell + Donnelly Rhodes + Ian Tracey + + Drama + + + TV14 + + + + Cold Squad + Jane Doe + As the investigation continues into a 20-year-old murder spree, the Cold Squad is racked with internal strife. + + Julie Stewart + Michael Hogan + Joy Tanner + + Drama + + + TV14 + + + + Heartland + Into the Wild + Amy helps a unique animal from an abandoned zoo; Tim joins Jessica in New York for her art show while trying to fix a past mistake; Jack and Lisa work through difficulties in their relationship. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Stories of Love to the Rescue by Shriners Hospitals for Children® + Alec and Kaleb interview patients and their families, and how their lives have been changed because of the life-changing pediatric specialty care they received at Shriners Hospitals for Children®. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Daytime + Talk Shows + + + TVPG + + + + My Little Margie + Motorcycle Cop + A widower lives with his cute but mischievous 21-year-old daughter. + + Gale Storm + Charles Farrell + Don Hayden + + Sitcom + + + + Four Star Playhouse + The Last Voyage + A sea captain on his final voyage learns that there is a bomb on his ship, timed to go off soon after reaching port. + + Dick Powell + Charles Boyer + David Niven + + Drama + + + + The Mickey Rooney Show + The Executive + Mickey believes he is being passed over for a promotion because he is short. + + Mickey Rooney + John Hubbard + Regis Toomey + + Comedy + Performing Arts + + + + Follow That Man + The Fraternity of Five + Mike Barnett, a wisecracking and savvy freelance private investigator based in New York, takes on the most dangerous of cases. + + Ralph Bellamy + + Drama + + + + The Adventures of Kit Carson + Range Masters + Kit is sent to investigate the forthcoming trial of a man accused of murder. + + Bill Williams + Don Diamond + + Regular + + + + Annie Oakley + Dead Man's Bluff + Annie (Gail Davis) investigates suspicious activity and uncovers an elaborate counterfeiting scheme. With Emile Meyer, Myron Healey. + + Gail Davis + Brad Johnson + Jimmy Hawkins + + Christmas + + + TVPG + + + + The Doctors + The lives and loves of the staff at Hope Memorial Hospital. + + Meg Mundy + Franc Luz + Elaine Lee + + Soaps + + + + Tales of Tomorrow + The Duplicates + A world on the far side of the sun duplicates ours. + + Darren McGavin + Cameron Prudhomme + Patricia Ferris + + Sci-Fi + + + + The Ray Bradbury Theater + The Happiness Machine + A man builds a machine that makes its users feel happy; with Elliott Gould. + + Elliott Gould + Mimi Kuzyk + Paul McIver + + Sci-Fi + + + TVPG + + + + Suspense + The Moving Target + An athlete from a country behind the Iron Curtain uses the Olympics as his chance to escape to freedom. + + Jamie Smith + Irja Jensen + Joseph Anthony + + Drama + + + + Danger Man + Someone Is Liable to Get Hurt + Drake is sent in when an M9 agent is murdered in the Caribbean while investigating illegal arms deals that are leading up to an armed overthrow of the government. + + Patrick McGoohan + + Drama + + + TVPG + + + + Naked City + A Memory of Crying + A bankrupt lawyer marries the love of his life and loses her in childbirth, then holds up crapshooters to pay the obstetrician. + + Paul Burke + Horace McMahon + Harry Bellaver + + Drama + + + + Verified Videos + A mix of the best hip-hop and R&B music videos, from the hottest new releases to favorite throwbacks. + Music + + + TV14 + + + + The Best of Diddy + Paying tribute to Puff Daddy with his latest and greatest music video features and collaborations. + Specials + Reality TV + + + TV14 + + + + Caresha Please + Latto + Yung Miami welcomes Latto to get into all the details about her relationship, sex advice, career talk and more. + Music + + + + Verified Videos: After Hours + A late-night mix of the best raw and uncut hip-hop and R&B music videos. + Music + + + TVMA + + + + Big Facts + Atlanta legends Big Bank and DJ Scream welcome the biggest names in hip-hop culture for unfiltered conversations. + Music + Talk Shows + + + TVMA + + + + Caresha Please + Latto + Yung Miami welcomes Latto to get into all the details about her relationship, sex advice, career talk and more. + Music + + + + Caresha Please + Latto + Yung Miami welcomes Latto to get into all the details about her relationship, sex advice, career talk and more. + Music + + + + Verified Videos: After Hours + A late-night mix of the best raw and uncut hip-hop and R&B music videos. + Music + + + TVMA + + + + Big Facts + Atlanta legends Big Bank and DJ Scream welcome the biggest names in hip-hop culture for unfiltered conversations. + Music + Talk Shows + + + TVMA + + + + The Best of Diddy + Paying tribute to Puff Daddy with his latest and greatest music video features and collaborations. + Specials + Reality TV + + + TV14 + + + + Verified Videos: After Hours + A late-night mix of the best raw and uncut hip-hop and R&B music videos. + Music + + + TVMA + + + + Verified Videos + AM + A morning mix of jams to start the day. + Music + + + TV14 + + + + Kingdom Culture With T.D. Jakes + Counterintuitive Discplines! + How to tell if God gives blessings despite faults. + Religious + + + TV14 + + + + Verified Videos + AM + A morning mix of jams to start the day. + Music + + + TV14 + + + + Kingdom Culture With T.D. Jakes + Powerful words of inspiration straight from The Potter's House ministry; with Bishop T.D. Jakes. + Religious + + + TV14 + + + + REVOLT Black News + News + + + TV14 + + + + The Best of Diddy + Paying tribute to Puff Daddy with his latest and greatest music video features and collaborations. + Specials + Reality TV + + + TV14 + + + + Kingdom Culture With T.D. Jakes + Powerful words of inspiration straight from The Potter's House ministry; with Bishop T.D. Jakes. + Religious + + + TV14 + + + + The Crew League + Offset vs. Rob49 + Hometown hero Offset and the Bando Boyz take on New Orleans' own Rob49 and the Vultures Cartel for the next spot in the semi-finals. + Sports + Basketball + + + + The Crew League + Nick Cannon vs. Waka Flocka Flame + Team captain Nick Cannon, co-captain Hitman Holla and the N'Credible Crew battle it out with the defending Crew League champions Waka Flocka Flame and Brick Squad. + Sports + Basketball + + + + Short & Fresh + Rising filmmakers push the culture forward through their short works. + Performing Arts + + + TVMA + + + + Short & Fresh + Rising filmmakers push the culture forward through their short works. + Performing Arts + + + TVMA + + + + Short & Fresh + Rising filmmakers push the culture forward through their short works. + Performing Arts + + + TVMA + + + + Short & Fresh + Damn Write Originals + Featuring short films:. + Performing Arts + + + TVMA + + + + Short & Fresh + Hip Hop Halloween IV + In this special Halloween-themed episode,. + Performing Arts + + + TVMA + + + + The Crew League + Offset vs. Rob49 + Hometown hero Offset and the Bando Boyz take on New Orleans' own Rob49 and the Vultures Cartel for the next spot in the semi-finals. + Sports + Basketball + + + + The Crew League + Nick Cannon vs. Waka Flocka Flame + Team captain Nick Cannon, co-captain Hitman Holla and the N'Credible Crew battle it out with the defending Crew League champions Waka Flocka Flame and Brick Squad. + Sports + Basketball + + + + Caresha Please + Latto + Yung Miami welcomes Latto to get into all the details about her relationship, sex advice, career talk and more. + Music + + + + Black Girl Stuff + A lineup of influential Black women discuss important cultural topics. + Performing Arts + + + TV14 + + + + REVOLT Black News + News + + + TV14 + + + + Drink Champs: Happy Hour + Queens rapper N.O.R.E. and Miami hip-hop pioneer DJ EFN are joined by A-list guest stars for a boozy, raucous and totally unfiltered show where nothing is off limits after a few shots. + Music + Comedy + + + TVMA + + + + Caresha Please + Latto + Yung Miami welcomes Latto to get into all the details about her relationship, sex advice, career talk and more. + Music + + + + Verified Videos: After Hours + A late-night mix of the best raw and uncut hip-hop and R&B music videos. + Music + + + TVMA + + + + Internationally Known + Highlighting emerging artists and the top hits in Africa, Latin America, the U.K., and more. + Music + + + TV14 + + + + What's Good Africa + Kweku Smoke & Senyo Foli + Rapper Kweku Smoke, his manager, and producer Atown ASB discuss the. + Talk Shows + + + TV14 + + + + Drink Champs: Happy Hour + Queens rapper N.O.R.E. and Miami hip-hop pioneer DJ EFN are joined by A-list guest stars for a boozy, raucous and totally unfiltered show where nothing is off limits after a few shots. + Music + Comedy + + + TVMA + + + + The Crew League + Offset vs. Rob49 + Hometown hero Offset and the Bando Boyz take on New Orleans' own Rob49 and the Vultures Cartel for the next spot in the semi-finals. + Sports + Basketball + + + + The Crew League + Nick Cannon vs. Waka Flocka Flame + Team captain Nick Cannon, co-captain Hitman Holla and the N'Credible Crew battle it out with the defending Crew League champions Waka Flocka Flame and Brick Squad. + Sports + Basketball + + + + Verified Videos: After Hours + A late-night mix of the best raw and uncut hip-hop and R&B music videos. + Music + + + TVMA + + + + Verified Videos + AM + A morning mix of jams to start the day. + Music + + + TV14 + + + + Verified Videos + AM + A morning mix of jams to start the day. + Music + + + TV14 + + + + Verified Videos + AM + A morning mix of jams to start the day. + Music + + + TV14 + + + + The Best of Kevin Gates + REVOLT pays tribute to Kevin Gates with his latest and greatest music videos. + Specials + Music + + + + The Best of Jack Harlow + Paying tribute to Jack Harlow with his latest music videos. + Specials + Music + + + TV14 + + + + The Best of Nipsey Hussle + Music videos featuring rapper Nipsey Hussle. + + Nipsey Hussle + + Specials + Music + + + TV14 + + + + Verified Videos + A mix of the best hip-hop and R&B music videos, from the hottest new releases to favorite throwbacks. + Music + + + TV14 + + + + What's Good Africa + Kweku Smoke & Senyo Foli + Rapper Kweku Smoke, his manager, and producer Atown ASB discuss the. + Talk Shows + + + TV14 + + + + Internationally Known + Highlighting emerging artists and the top hits in Africa, Latin America, the U.K., and more. + Music + + + TV14 + + + + Black Girl Stuff + Usher; Ludacris; Omarion; Reginae Carter; Sex Expert Samia B + In the series premiere, the ladies get real with Usher, Ludacris, and Omarion; candid conversations with influencer Reginae Carter and sex expert Samia B. + Performing Arts + + + TV14 + + + + Verified Videos + A mix of the best hip-hop and R&B music videos, from the hottest new releases to favorite throwbacks. + Music + + + TV14 + + + + The Jason Lee Show + Jemele Hill + Journalist and sports broadcaster Jemele Hill joins Jason Lee to discuss her new book. + Talk Shows + + + TVMA + + + + Short & Fresh + HBCU Edition + Celebrating HBCUs and featuring alumni filmmakers pushing the culture forward through short films; featuring the short films:. + Performing Arts + + + TVMA + + + + Verified Videos + A mix of the best hip-hop and R&B music videos, from the hottest new releases to favorite throwbacks. + Music + + + TV14 + + + + Caresha Please + Latto + Yung Miami welcomes Latto to get into all the details about her relationship, sex advice, career talk and more. + Music + + + + Short & Fresh + HBCU Edition + Celebrating HBCUs and featuring alumni filmmakers pushing the culture forward through short films; featuring the short films:. + Performing Arts + + + TVMA + + + + Assets Over Liabilities + Jeezy + An educational take on industry powerhouses, Black entrepreneurs and prominent hip-hop artists. + Reality TV + Talk Shows + + + TV14 + + + + Bet on Black + Boss Ladies Rule + The judges hear pitches from three businesses run by Black female founders: Fourth Phase, 3rd Eye View, and Tubby's Taste; Eunique Jones Gibson, CEO at Culture Brands and The Happy Hues Company mentors the group. + Reality TV + Business + + + TV14 + + + + The Crew League + Nick Cannon vs. Waka Flocka Flame + Team captain Nick Cannon, co-captain Hitman Holla and the N'Credible Crew battle it out with the defending Crew League champions Waka Flocka Flame and Brick Squad. + Sports + Basketball + + + + The Crew League + Nick Cannon vs. GaTa (Semi-Finals) + With team captain Nick Cannon out of the line-up, co-captain Hitman Holla and the N'Credible Crew face off. + Sports + Basketball + + + + Untapped + Viewer-submitted music videos highlight untapped indie artists. + Specials + Music + + + TVMA + + + + Assets Over Liabilities + Jeezy + An educational take on industry powerhouses, Black entrepreneurs and prominent hip-hop artists. + Reality TV + Talk Shows + + + TV14 + + + + Bet on Black + Boss Ladies Rule + The judges hear pitches from three businesses run by Black female founders: Fourth Phase, 3rd Eye View, and Tubby's Taste; Eunique Jones Gibson, CEO at Culture Brands and The Happy Hues Company mentors the group. + Reality TV + Business + + + TV14 + + + + The Crew League + Nick Cannon vs. Waka Flocka Flame + Team captain Nick Cannon, co-captain Hitman Holla and the N'Credible Crew battle it out with the defending Crew League champions Waka Flocka Flame and Brick Squad. + Sports + Basketball + + + + The Crew League + Nick Cannon vs. GaTa (Semi-Finals) + With team captain Nick Cannon out of the line-up, co-captain Hitman Holla and the N'Credible Crew face off. + Sports + Basketball + + + + What's Good Africa + Kweku Smoke & Senyo Foli + Rapper Kweku Smoke, his manager, and producer Atown ASB discuss the. + Talk Shows + + + TV14 + + + + Internationally Known + Highlighting emerging artists and the top hits in Africa, Latin America, the U.K., and more. + Music + + + TV14 + + + + Verified Videos: After Hours + A late-night mix of the best raw and uncut hip-hop and R&B music videos. + Music + + + TVMA + + + + Big Facts + Kevin Gates + Kevin Gates joins Big Bank, DJ Scream, and Baby Jade to discuss his spiritual journey, what stopped him from committing suicide, and if he's dropping more music in the future. + Music + Talk Shows + + + TVMA + + + + Kingdom Culture With T.D. Jakes + Singing in the Dark + God is seeking a new song from you, one that reveals the intensity of your tone and the purity of your heart. Yes, life is challenging right now, but do you have faith enough to sing in the dark? + Religious + + + TV14 + + + + Verified Videos + AM + A morning mix of jams to start the day. + Music + + + TV14 + + + + Verified Videos + AM + A morning mix of jams to start the day. + Music + + + TV14 + + + + Verified Videos + AM + A morning mix of jams to start the day. + Music + + + TV14 + + + + The Best of SZA + SZA's latest and greatest music videos. + Specials + Music + + + TV14 + + + + Best of TDE + Check out videos from TDE, the label that brings you Kendrick Lamar, Jay Rock and more. + Music + + + + The Best of The Weeknd + The Weeknd's latest and greatest music videos. + Specials + Music + + + TV14 + + + + Verified Videos + A mix of the best hip-hop and R&B music videos, from the hottest new releases to favorite throwbacks. + Music + + + TV14 + + + + Verified Videos + A mix of the best hip-hop and R&B music videos, from the hottest new releases to favorite throwbacks. + Music + + + TV14 + + + + Black Girl Stuff + J. Alphonse Nicholson; Yung Joc; Shae Primus + The ladies welcome J. Alphonse Nicholson (Lil Murda) from Starz's hit series P-Valley and interview Yung Joc; plus a visit from Shae Primus, Atlanta's premier matchmaker, and a convo about sexing and sharing.Guests: Yung Joc, J. Alphonse Nicholson, Shae Primus.. + Performing Arts + + + TV14 + + + + Verified Videos + A mix of the best hip-hop and R&B music videos, from the hottest new releases to favorite throwbacks. + Music + + + TV14 + + + + The Jason Lee Show + Yung Miami + Rapper and media personality Yung Miami joins Jason Lee to discuss her show. + Talk Shows + + + TVMA + + + + Short & Fresh + Ep. 1 + Revolt shines a spotlight on rising filmmakers pushing the culture forward through short films; featuring the short films: Quarantine Therapy, Mickey Hardaway, and Haircut. + Performing Arts + + + TVMA + + + + Assets Over Liabilities + Jeezy + An educational take on industry powerhouses, Black entrepreneurs and prominent hip-hop artists. + Reality TV + Talk Shows + + + TV14 + + + + Bet on Black + Boss Ladies Rule + The judges hear pitches from three businesses run by Black female founders: Fourth Phase, 3rd Eye View, and Tubby's Taste; Eunique Jones Gibson, CEO at Culture Brands and The Happy Hues Company mentors the group. + Reality TV + Business + + + TV14 + + + + The Crew League + Nick Cannon vs. Waka Flocka Flame + Team captain Nick Cannon, co-captain Hitman Holla and the N'Credible Crew battle it out with the defending Crew League champions Waka Flocka Flame and Brick Squad. + Sports + Basketball + + + + The Crew League + Nick Cannon vs. GaTa (Semi-Finals) + With team captain Nick Cannon out of the line-up, co-captain Hitman Holla and the N'Credible Crew face off. + Sports + Basketball + + + + Short & Fresh + Ep. 1 + Revolt shines a spotlight on rising filmmakers pushing the culture forward through short films; featuring the short films: Quarantine Therapy, Mickey Hardaway, and Haircut. + Performing Arts + + + TVMA + + + + Black Girl Stuff + A lineup of influential Black women discuss important cultural topics. + Performing Arts + + + TV14 + + + + Tez on Ten: The Black Vote + Political analyst Tezlyn Figaro presents a no-holds-barred conversation about the state of American politics, what's at stake in the upcoming presidential election, and how it all impacts the Black community. + Political + + + + Internationally Known + Highlighting emerging artists and the top hits in Africa, Latin America, the U.K., and more. + Music + + + TV14 + + + + Verified Videos: After Hours + A late-night mix of the best raw and uncut hip-hop and R&B music videos. + Music + + + TVMA + + + + Black Girl Stuff + A lineup of influential Black women discuss important cultural topics. + Performing Arts + + + TV14 + + + + Tez on Ten: The Black Vote + Political analyst Tezlyn Figaro presents a no-holds-barred conversation about the state of American politics, what's at stake in the upcoming presidential election, and how it all impacts the Black community. + Political + + + + Internationally Known + Highlighting emerging artists and the top hits in Africa, Latin America, the U.K., and more. + Music + + + TV14 + + + + Verified Videos: After Hours + A late-night mix of the best raw and uncut hip-hop and R&B music videos. + Music + + + TVMA + + + + Verified Videos: After Hours + A late-night mix of the best raw and uncut hip-hop and R&B music videos. + Music + + + TVMA + + + + Big Facts + NLE Choppa + NLE Choppa joins Big Bank, DJ Scream, and Baby Jade to discuss the recent altercation in the airport, his new health journey, and why he named his new project Me vs Me. + Music + Talk Shows + + + TVMA + + + + Kingdom Culture With T.D. Jakes + Timing Is Everything + The day the seed is planted is not the day it can be reaped for a harvest; timing is everything; giving God room to finish what He has started is everything. + Religious + + + TV14 + + + + Verified Videos + AM + A morning mix of jams to start the day. + Music + + + TV14 + + + + Verified Videos + AM + A morning mix of jams to start the day. + Music + + + TV14 + + + + Verified Videos + AM + A morning mix of jams to start the day. + Music + + + TV14 + + + + The Best of Diddy + Paying tribute to Puff Daddy with his latest and greatest music video features and collaborations. + Specials + Reality TV + + + TV14 + + + + The Best of Latto + REVOLT pays tribute to Latto with her latest and greatest music videos. + Specials + Music + + + + The Best of Leikeli47 + Leikeli47's latest and greatest music videos. + Specials + Music + + + TV14 + + + + The Best of Megan Thee Stallion + REVOLT pays tribute to Megan Thee Stallion with her newest and greatest music videos. + Specials + Music + + + TV14 + + + + Black Girl Stuff + A lineup of influential Black women discuss important cultural topics. + Performing Arts + + + TV14 + + + + The Jason Lee Show + Amanda Seales + Comedian and media personality Amanda Seales joins Jason Lee to discuss growing up in SoCal, always feeling connected to her blackness, and her time on The Real. + Talk Shows + + + TVMA + + + + Black Girl Stuff + Idris Elba; Jamie Foxx; Jean Elie; Omeretta The Great + The ladies sit down with actors Idris Elba, Jamie Foxx, and Jean Elie to talk about their latest projects; Atlanta rapper Omeretta The Great stops in; plus a conversation about the high cost of being flewed in and beefing by association. + Performing Arts + + + TV14 + + + + Verified Videos + A mix of the best hip-hop and R&B music videos, from the hottest new releases to favorite throwbacks. + Music + + + TV14 + + + + The Jason Lee Show + Nick Cannon + TV host and media mogul Nick Cannon joins Jason Lee to discuss the 'Wild N Out' boot camp and other things. + Talk Shows + + + TVMA + + + + Short & Fresh + Ep. 2 + Shining a spotlight on rising filmmakers pushing the culture forward through the medium of short films; featuring the short films,. + Performing Arts + + + TVMA + + + + Black Girl Stuff + A lineup of influential Black women discuss important cultural topics. + Performing Arts + + + TV14 + + + + Trail Blazers Postgame + Highlights and analysis of Portland Trail Blazers NBA action. + + + Mariners All Access + An inside look at the Seattle Mariners, with interviews and team features. + + + Inside Kraken Hockey + A weekly magazine series focusing on the Seattle Kraken. (new). + + + Seattle Kraken Pregame + News and preview of the night's Seattle Kraken game. (live). + + + NHL Hockey + Calgary Flames at Seattle Kraken + Calgary Flames at Seattle Kraken. From Climate Pledge Arena. (live). + 2023 + Pro Sports + + + Seattle Kraken Postgame + Highlights and analysis of the night's Seattle Kraken game. (live). + + + Inside Kraken Hockey + A weekly magazine series focusing on the Seattle Kraken. + + + NHL Hockey + Calgary Flames at Seattle Kraken + Calgary Flames at Seattle Kraken. From Climate Pledge Arena. + 2023 + Pro Sports + + + Seattle Kraken Postgame + Highlights and analysis of the night's Seattle Kraken game. + + + Inside Kraken Hockey + A weekly magazine series focusing on the Seattle Kraken. + + + Poker Night in America + 11-05-2023 + High-stakes cash games featuring poker's biggest names in a loose atmosphere. (new). + 2023 + + TV-MA + + + + Friends in Wild Places + The Pennsylvania Sportsmen + TomBob Outdoors takes a trip back to the good ol' days of hunting television with a traditional Pennsylvania elk hunt featuring Bob Shields. (new). + 2019 + + + World Poker Tour + WPT Choctaw - Part 1 + Season 16 gets underway from Choctaw Casino in Durant, Okla. + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2018 + S16 E1 + + TV-PG + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + The Northwest Outdoorsmen + Columbia River Walleye Master + (new). + Sports + + + Fish Hunt Northwest + (new). + + + Northwest Fishing TV + (new). + + + A Fishing Story + Kelly Kowall + Kelly Kowall, the mother who started 'My Warrior's Place,' a charity for returning veterans and their families to take fishing trips for a day of relaxation. (new). + + Ronnie Green + + 2019 + Sports + + + Fairways of Life with Matt Adams + Author and Golf Channel host Matt Adams brings you inside the ropes for exclusive interviews with all of golf's stars; equipment updates; instruction for your game; the latest headlines and more. + + Matt Adams + + Talk & Interview + Sports + + + Safeway Foundation Battle at Bandon + + + Golf Life + A look at golf courses, training tips and mental aspects of the game. (new). + + + Endless Golf + Visits to golf destinations throughout the U.S. (new). + + + NHL Hockey + Calgary Flames at Seattle Kraken + Calgary Flames at Seattle Kraken. From Climate Pledge Arena. + 2023 + Pro Sports + + + Inside Kraken Hockey + A weekly magazine series focusing on the Seattle Kraken. + + + Portland Trail Blazers: The Trail + An all-access look at the Portland Trail Blazers under coach Chauncey Billups. + + + Trail Blazers Pregame + A Portland Trail Blazers preview. (live). + + + NBA Basketball + Memphis Grizzlies at Portland Trail Blazers + Memphis Grizzlies at Portland Trail Blazers. From Moda Center. (live). + 2023 + Pro Sports + + + Trail Blazers Postgame + Highlights and analysis of Portland Trail Blazers NBA action. (live). + + + Portland Trail Blazers: The Trail + An all-access look at the Portland Trail Blazers under coach Chauncey Billups. + + + NBA Basketball + Memphis Grizzlies at Portland Trail Blazers + Memphis Grizzlies at Portland Trail Blazers. From Moda Center. + 2023 + Pro Sports + + + Trail Blazers Postgame + Highlights and analysis of Portland Trail Blazers NBA action. + + + Portland Trail Blazers: The Trail + An all-access look at the Portland Trail Blazers under coach Chauncey Billups. + + + Poker Night in America + 11-05-2023 + High-stakes cash games featuring poker's biggest names in a loose atmosphere. + 2023 + + TV-MA + + + + Friends in Wild Places + The Pennsylvania Sportsmen + TomBob Outdoors takes a trip back to the good ol' days of hunting television with a traditional Pennsylvania elk hunt featuring Bob Shields. + 2019 + + + World Poker Tour + Baccarat Crystal WPT Tournament of Champions- Part 1 + Part 1 of the 2019 Baccarat Crystal WPT Tournament of Champions, from the Aria in Las Vegas. + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2019 + S17 E13 + + TV-PG + + + + World Poker Tour + Alpha 8 St. Kitts Part 4 + The final table dwindles at the $1.5 million WPT Alpha8 on the island of St. Kitts. Part 4 of 5. + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2014 + + TV-PG + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + True Crime 2023 + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + 2022 + + + Paid Programming + Paid Programming. + + TV-14 + + + + Northwest Fishing TV + + + Short List + Countdowns and how-to lists showcasing bass fishing's personalities, history and hottest trends. (new). + + + Pure Outdoor + One of Europe's toughest amateur cycling races has eight grueling stages. (new). + + + Invincible + Periods of unrivaled domination in sport, including chapters from sport's greatest careers and iconic dynasties. (new). + + TV-MA + + + + NBA Basketball + Memphis Grizzlies at Portland Trail Blazers + Memphis Grizzlies at Portland Trail Blazers. From Moda Center. + 2023 + Pro Sports + + + Trail Blazers Postgame + Highlights and analysis of Portland Trail Blazers NBA action. + + + NHL Hockey + Calgary Flames at Seattle Kraken + Calgary Flames at Seattle Kraken. From Climate Pledge Arena. + 2023 + Pro Sports + + + Inside Kraken Hockey + A weekly magazine series focusing on the Seattle Kraken. + + + NHL Hockey + Calgary Flames at Seattle Kraken + Calgary Flames at Seattle Kraken. From Climate Pledge Arena. + 2023 + Pro Sports + + + NHL Hockey + Calgary Flames at Seattle Kraken + Calgary Flames at Seattle Kraken. From Climate Pledge Arena. + 2023 + Pro Sports + + + Seahawks Press Pass + Reaction, updates and analysis following Seattle Seahawks action. (new). + + + Inside Kraken Hockey + A weekly magazine series focusing on the Seattle Kraken. + + + NHL Hockey + Calgary Flames at Seattle Kraken + Calgary Flames at Seattle Kraken. From Climate Pledge Arena. + 2023 + Pro Sports + + + Inside Kraken Hockey + A weekly magazine series focusing on the Seattle Kraken. + + + World Poker Tour + WPT Legends of Poker ' Part 2 + Part 2 of Legends of Poker Season XVI, from The Bicycle Casino in Los Angeles. (new). + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2018 + S16 E5 + + TV-PG + + + + UFA + Bare Knuckle Boxing 33 part 1 + (new). + + TV-14 + + + + Fight Sports: In 60 + Marco Huck vs. Hugo Hernan Garay + + + Fight Sports: In 60 + Firat Arslan vs. Yoan Pablo Hernandez + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Breaking Par + November 2023 + (new). + + Ryan Johnson + Felix Stone + + 2023 + Sports + + + Golf Life + A look at golf courses, training tips and mental aspects of the game. + + + Endless Golf + Visits to golf destinations throughout the U.S. + + + In Depth With Graham Bensinger + Extended and candid visits with notable sports figures. The host began his career in eighth grade. (new). + + Graham Bensinger + Graham Bensinger + + Talk & Interview + Sports + + + NHL Hockey + Calgary Flames at Seattle Kraken + Calgary Flames at Seattle Kraken. From Climate Pledge Arena. + 2023 + Pro Sports + + + Inside Kraken Hockey + A weekly magazine series focusing on the Seattle Kraken. + + + NHL Hockey + Calgary Flames at Seattle Kraken + Calgary Flames at Seattle Kraken. From Climate Pledge Arena. + 2023 + Pro Sports + + + Mariners All Access + An inside look at the Seattle Mariners, with interviews and team features. + + + Inside Kraken Hockey + A weekly magazine series focusing on the Seattle Kraken. + + + Seattle Kraken Pregame + News and preview of the night's Seattle Kraken game. (live). + + + NHL Hockey + Seattle Kraken at Arizona Coyotes + Seattle Kraken at Arizona Coyotes. From Mullett Arena. (live). + 2023 + Pro Sports + + + Seattle Kraken Postgame + Highlights and analysis of the night's Seattle Kraken game. (live). + + + Inside Kraken Hockey + A weekly magazine series focusing on the Seattle Kraken. + + + NHL Hockey + Seattle Kraken at Arizona Coyotes + Seattle Kraken at Arizona Coyotes. From Mullett Arena. + 2023 + Pro Sports + + + Seattle Kraken Postgame + Highlights and analysis of the night's Seattle Kraken game. + + + Inside Kraken Hockey + A weekly magazine series focusing on the Seattle Kraken. + + + UFA + Bare Knuckle Boxing 33 part 1 + + TV-14 + + + + World Poker Tour + Legends of Poker - Part 3 + Part 3 of Legends of Poker Season XVI, from The Bicycle Casino in Los Angeles. (new). + + Vincent Van Patten + Mike Sexton + Tony Dunst + Gary S. Scott + Frank Ishizaki + Shana Hiatt + Kimberly Lansing + Lynn Gilmartin + Joseph Grimm + + 2018 + S16 E6 + + TV-PG + + + + Fight Sports: Grand Sumo + Global sumo wrestling action. (new). + + + Fight Sports: World Championship Kickboxing + Kickboxing and Mui Thai fighting action. (new). + + + Fight Sports MMA + Mixed-martial-arts action. (new). + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + Paid Programming + Paid Programming. + + TV-14 + + + + The Immortals + The careers of sports' greatest icons are chronicled. (new). + 2019 + Documentary + Sports + + + Short List + Countdowns and how-to lists showcasing bass fishing's personalities, history and hottest trends. (repeat). + + + Pure Outdoor + One of Europe's toughest amateur cycling races has eight grueling stages. + + + Invincible + Periods of unrivaled domination in sport, including chapters from sport's greatest careers and iconic dynasties. + + TV-MA + + + + NHL Hockey + Seattle Kraken at Arizona Coyotes + Seattle Kraken at Arizona Coyotes. From Mullett Arena. + 2023 + Pro Sports + + + Seattle Kraken Postgame + Highlights and analysis of the night's Seattle Kraken game. + + + Inside Kraken Hockey + A weekly magazine series focusing on the Seattle Kraken. + + + Mariners All Access + An inside look at the Seattle Mariners, with interviews and team features. + + + NHL Hockey + Seattle Kraken at Arizona Coyotes + Seattle Kraken at Arizona Coyotes. From Mullett Arena. + 2023 + Pro Sports + + + SEC Now + News and information show hosted by Peter Burns, Dari Nowkhah or Alyssa Lang, joined by various network analysts, discussing all the SEC news of the day. + Sports + Talk Show + + + + Kentucky vs. Mississippi State University + Kentucky at Mississippi State + The Bulldogs host the Wildcats for an SEC game. The home team has won the last eight meetings. Kentucky senior running back Ray Davis has totaled 14 touchdowns, five receiving, after rushing for one in a 33-27 loss to then-No. 21 Tennessee last week. + Sports + Football + + + + SEC Football Final + Recaps the biggest storylines, highlights and scores of the day. + + Chris Doering + Ben Watson + Takeo Spikes + + Sports + Football + + + + SEC Football Final + Recaps the biggest storylines, highlights and scores of the day. + + Chris Doering + Ben Watson + Takeo Spikes + + Sports + Football + + + + SEC Football Final + Recaps the biggest storylines, highlights and scores of the day. + + Chris Doering + Ben Watson + Takeo Spikes + + Sports + Football + + + + SEC Football Final + Recaps the biggest storylines, highlights and scores of the day. + + Chris Doering + Ben Watson + Takeo Spikes + + Sports + Football + + + + SEC Football Final + Recaps the biggest storylines, highlights and scores of the day. + + Chris Doering + Ben Watson + Takeo Spikes + + Sports + Football + + + + SEC Football Final + Recaps the biggest storylines, highlights and scores of the day. + + Chris Doering + Ben Watson + Takeo Spikes + + Sports + Football + + + + SEC Football Final + Recaps the biggest storylines, highlights and scores of the day. + + Chris Doering + Ben Watson + Takeo Spikes + + Sports + Football + + + + SEC Football Final + Recaps the biggest storylines, highlights and scores of the day. + + Chris Doering + Ben Watson + Takeo Spikes + + Sports + Football + + + + Texas A&M vs. Ole Miss + Texas A&M at Ole Miss + The No. 10 Rebels (7-1, 4-1) put a four-game win streak on the line as they host the Aggies (5-3, 3-2) for an SEC affair. Ole Miss' Quinshon Judkins rushed for 205 yards and a touchdown in a 31-28 triumph at Texas A&M during his freshman 2022 season. + Sports + Football + + + TV14 + + + + SEC Football Final + Recaps the biggest storylines, highlights and scores of the day. + + Chris Doering + Ben Watson + Takeo Spikes + + Sports + Football + + + + SEC Football Final + Recaps the biggest storylines, highlights and scores of the day. + + Chris Doering + Ben Watson + Takeo Spikes + + Sports + Football + + + + SEC Football Final + Recaps the biggest storylines, highlights and scores of the day. + + Chris Doering + Ben Watson + Takeo Spikes + + Sports + Football + + + + SEC Football Final + Recaps the biggest storylines, highlights and scores of the day. + + Chris Doering + Ben Watson + Takeo Spikes + + Sports + Football + + + + SEC Football Final + Recaps the biggest storylines, highlights and scores of the day. + + Chris Doering + Ben Watson + Takeo Spikes + + Sports + Football + + + + Ole Miss vs. South Carolina + Ole Miss at South Carolina + From Carolina Volleyball Center in Columbia, S.C. + Sports + Volleyball + + + + Georgia vs. Arkansas + SEC Championship: Georgia vs. Arkansas + Women's college soccer action. + Sports + Soccer + + + + Auburn vs. Texas A&M + Auburn at Texas A&M + From Texas A&M Volleyball Facilities in College Station, Texas. + Sports + Volleyball + + + + Women's College Basketball + Teams TBA + Women's college basketball coverage. + Sports + Basketball + + + + Texas A&M vs. Ole Miss + Texas A&M at Ole Miss + The No. 10 Rebels (7-1, 4-1) put a four-game win streak on the line as they host the Aggies (5-3, 3-2) for an SEC affair. Ole Miss' Quinshon Judkins rushed for 205 yards and a touchdown in a 31-28 triumph at Texas A&M during his freshman 2022 season. + Sports + Football + + + TV14 + + + + Auburn vs. Vanderbilt + Auburn at Vanderbilt + The Tigers face the Commodores in Nashville, Tenn. The series is tied 21-21-1. The programs last met in 2016. Auburn avoided a five-game conference losing streak in a second consecutive season with a 27-13 victory over Mississippi State last week. + Sports + Football + + + + Auburn vs. Vanderbilt + Auburn at Vanderbilt + The Tigers face the Commodores in Nashville, Tenn. The series is tied 21-21-1. The programs last met in 2016. Auburn avoided a five-game conference losing streak in a second consecutive season with a 27-13 victory over Mississippi State last week. + Sports + Football + + + + Kentucky vs. Mississippi State University + Kentucky at Mississippi State + The Bulldogs host the Wildcats for an SEC game. The home team has won the last eight meetings. Kentucky senior running back Ray Davis has totaled 14 touchdowns, five receiving, after rushing for one in a 33-27 loss to then-No. 21 Tennessee last week. + Sports + Football + + + + Jacksonville State vs. South Carolina + Jacksonville State at South Carolina + A Gamecock showdown provides a test for South Carolina as it hosts Jacksonville State. South Carolina has dropped four in a row. Jacksonville State is battling atop the Conference USA table with fellow first-year members Liberty and New Mexico State. + Sports + Football + + + + SEC This Morning + Peter Burns and former Florida All-American Chris Doering delve into all things SEC. + Sports + Talk Show + + + + SEC Football Final + Recaps the biggest storylines, highlights and scores of the day. + + Chris Doering + Ben Watson + Takeo Spikes + + Sports + Football + + + + SEC This Morning + Peter Burns and former Florida All-American Chris Doering delve into all things SEC. + Sports + Talk Show + + + + The Paul Finebaum Show + Paul Finebaum shares compelling opinions on SEC football and interacts with passionate callers. + Sports + Talk Show + + + + Read & React + The hosts take a comprehensive deep dive into the key plays, players, units, and teams that changed the SEC games each weekend. + Sports + Miscellaneous + + + + New Mexico State vs. Kentucky + New Mexico State at Kentucky + The No. 16 Wildcats and Aggies tip off in a season opener. Last season, Kentucky went 22-12 and bowed out of the NCAA Tournament's second round. New Mexico State hopes to turn a new leaf in the program in its first year as a Conference USA member. + Sports + Basketball + + + + SEC Now + News and information show hosted by Peter Burns, Dari Nowkhah or Alyssa Lang, joined by various network analysts, discussing all the SEC news of the day. + Sports + Talk Show + + + + Read & React + The hosts take a comprehensive deep dive into the key plays, players, units, and teams that changed the SEC games each weekend. + Sports + Miscellaneous + + + + SEC Now + News and information show hosted by Peter Burns, Dari Nowkhah or Alyssa Lang, joined by various network analysts, discussing all the SEC news of the day. + Sports + Talk Show + + + + Read & React + The hosts take a comprehensive deep dive into the key plays, players, units, and teams that changed the SEC games each weekend. + Sports + Miscellaneous + + + + SEC Now + News and information show hosted by Peter Burns, Dari Nowkhah or Alyssa Lang, joined by various network analysts, discussing all the SEC news of the day. + Sports + Talk Show + + + + Read & React + The hosts take a comprehensive deep dive into the key plays, players, units, and teams that changed the SEC games each weekend. + Sports + Miscellaneous + + + + Arkansas vs. Florida + Arkansas at Florida + The Gators (5-3, 3-2 SEC) welcome the Razorbacks (2-6, 0-5) to the Swamp. Florida leads the series 10-2 after a 63-35 win in 2020. Arkansas rides a six-game slide after falling 7-3 to Mississippi State. Florida lost to No. 1 Georgia 43-20 on Oct. 28. + Sports + Football + + + + Read & React + The hosts take a comprehensive deep dive into the key plays, players, units, and teams that changed the SEC games each weekend. + Sports + Miscellaneous + + + + SEC Now + News and information show hosted by Peter Burns, Dari Nowkhah or Alyssa Lang, joined by various network analysts, discussing all the SEC news of the day. + Sports + Talk Show + + + + Read & React + The hosts take a comprehensive deep dive into the key plays, players, units, and teams that changed the SEC games each weekend. + Sports + Miscellaneous + + + + SEC Now + News and information show hosted by Peter Burns, Dari Nowkhah or Alyssa Lang, joined by various network analysts, discussing all the SEC news of the day. + Sports + Talk Show + + + + Read & React + The hosts take a comprehensive deep dive into the key plays, players, units, and teams that changed the SEC games each weekend. + Sports + Miscellaneous + + + + SEC Now + News and information show hosted by Peter Burns, Dari Nowkhah or Alyssa Lang, joined by various network analysts, discussing all the SEC news of the day. + Sports + Talk Show + + + + Read & React + The hosts take a comprehensive deep dive into the key plays, players, units, and teams that changed the SEC games each weekend. + Sports + Miscellaneous + + + + TrueSouth + John T. Edge travels around the region, introducing viewers to Southern tastemakers, food, culture and history as they intertwine in the beautiful yet complex South. + Travel + Food + + + + Connecticut vs. Tennessee + Connecticut at Tennessee + The No. 17 Volunteers (6-2) take a break from SEC competition to host the Huskies (1-7). The programs have never met. Tennessee comes off a 33-27 victory over rival Kentucky. UConn's last four games have been decided by seven or fewer points. + Sports + Football + + + + SEC in 60 + Every SEC football game of the week in 60 minutes. + Sports + + + + The Paul Finebaum Show + Paul Finebaum shares compelling opinions on SEC football and interacts with passionate callers. + Sports + Talk Show + + + + TrueSouth + John T. Edge travels around the region, introducing viewers to Southern tastemakers, food, culture and history as they intertwine in the beautiful yet complex South. + Travel + Food + + + + SEC Inside + LSU vs. Alabama + Each week, a half-hour episode will focus on a select team and explore previously unaired footage and sounds from game preparation, the sideline and following the final whistle. + Sports + Anthology + + + + SEC Now + News and information show hosted by Peter Burns, Dari Nowkhah or Alyssa Lang, joined by various network analysts, discussing all the SEC news of the day. + Sports + Talk Show + + + + TrueSouth + John T. Edge travels around the region, introducing viewers to Southern tastemakers, food, culture and history as they intertwine in the beautiful yet complex South. + Travel + Food + + + + SEC Now + News and information show hosted by Peter Burns, Dari Nowkhah or Alyssa Lang, joined by various network analysts, discussing all the SEC news of the day. + Sports + Talk Show + + + + Arkansas vs. Florida + Arkansas at Florida + The Gators (5-3, 3-2 SEC) welcome the Razorbacks (2-6, 0-5) to the Swamp. Florida leads the series 10-2 after a 63-35 win in 2020. Arkansas rides a six-game slide after falling 7-3 to Mississippi State. Florida lost to No. 1 Georgia 43-20 on Oct. 28. + Sports + Football + + + + Arkansas vs. Florida + Arkansas at Florida + The Gators (5-3, 3-2 SEC) welcome the Razorbacks (2-6, 0-5) to the Swamp. Florida leads the series 10-2 after a 63-35 win in 2020. Arkansas rides a six-game slide after falling 7-3 to Mississippi State. Florida lost to No. 1 Georgia 43-20 on Oct. 28. + Sports + Football + + + + TrueSouth + John T. Edge travels around the region, introducing viewers to Southern tastemakers, food, culture and history as they intertwine in the beautiful yet complex South. + Travel + Food + + + + Auburn vs. Vanderbilt + Auburn at Vanderbilt + The Tigers face the Commodores in Nashville, Tenn. The series is tied 21-21-1. The programs last met in 2016. Auburn avoided a five-game conference losing streak in a second consecutive season with a 27-13 victory over Mississippi State last week. + Sports + Football + + + + SEC in 60 + Every SEC football game of the week in 60 minutes. + Sports + + + + TrueSouth + John T. Edge travels around the region, introducing viewers to Southern tastemakers, food, culture and history as they intertwine in the beautiful yet complex South. + Travel + Food + + + + SEC Inside + LSU vs. Alabama + Each week, a half-hour episode will focus on a select team and explore previously unaired footage and sounds from game preparation, the sideline and following the final whistle. + Sports + Anthology + + + + SEC Now + News and information show hosted by Peter Burns, Dari Nowkhah or Alyssa Lang, joined by various network analysts, discussing all the SEC news of the day. + Sports + Talk Show + + + + SEC Now + News and information show hosted by Peter Burns, Dari Nowkhah or Alyssa Lang, joined by various network analysts, discussing all the SEC news of the day. + Sports + Talk Show + + + + SEC Now + News and information show hosted by Peter Burns, Dari Nowkhah or Alyssa Lang, joined by various network analysts, discussing all the SEC news of the day. + Sports + Talk Show + + + + SEC Now + News and information show hosted by Peter Burns, Dari Nowkhah or Alyssa Lang, joined by various network analysts, discussing all the SEC news of the day. + Sports + Talk Show + + + + TrueSouth + John T. Edge travels around the region, introducing viewers to Southern tastemakers, food, culture and history as they intertwine in the beautiful yet complex South. + Travel + Food + + + + Missouri vs. Georgia + Missouri at Georgia + The No. 2 Bulldogs (8-0, 5-0 SEC) seek their 26th straight win as the Tigers (7-1, 3-1) appear between the hedges. Georgia set a school record with its 24th consecutive SEC regular-season triumph, 43-20 over rival Florida in Jacksonville last week. + Sports + Football + + + + SEC Inside + LSU vs. Alabama + Each week, a half-hour episode will focus on a select team and explore previously unaired footage and sounds from game preparation, the sideline and following the final whistle. + Sports + Anthology + + + + The Paul Finebaum Show + Paul Finebaum shares compelling opinions on SEC football and interacts with passionate callers. + Sports + Talk Show + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Gifts From Mackenzie Childs + BRAND NEW AT SHOPHQ + Mackenzie-Childs offers an energetic, imaginative and bright assortment of core kitchen products, charming accents and decorative items that are a perfect addition to any home. + Shopping + + + + Gifts From Mackenzie Childs + BRAND NEW AT SHOPHQ + Mackenzie-Childs offers an energetic, imaginative and bright assortment of core kitchen products, charming accents and decorative items that are a perfect addition to any home. + Shopping + + + + Gifts From Mackenzie Childs + BRAND NEW AT SHOPHQ + Mackenzie-Childs offers an energetic, imaginative and bright assortment of core kitchen products, charming accents and decorative items that are a perfect addition to any home. + Shopping + + + + Peace Diamond Jewelry + BRAND NEW AT SHOPHQ + Embark on a journey of elegance and ethical excellence as we unveil the premiere of Peace Diamond Jewelry. Join us for an evening of luxury and conscience, where diamond creations meet a commitment to peace, sustainability, and responsible sourcing. + Local + + + + Gifts From Mackenzie Childs + BRAND NEW AT SHOPHQ + Mackenzie-Childs offers an energetic, imaginative and bright assortment of core kitchen products, charming accents and decorative items that are a perfect addition to any home. + Shopping + + + + Peace Diamond Jewelry + BRAND NEW AT SHOPHQ + Embark on a journey of elegance and ethical excellence as we unveil the premiere of Peace Diamond Jewelry. Join us for an evening of luxury and conscience, where diamond creations meet a commitment to peace, sustainability, and responsible sourcing. + Local + + + + Stefano Oro Italian Jewelry + 28 ANNIVERSARY + Art-inspired pieces from Arezzo, Italy will be a treasure you'll adore. Shop the rich, gorgeous, and meticulously handcrafted line of golden masterpieces designed for lasting radiance. + Shopping + + + + Kitchen Gadgets + HOME FOR THE HOLIDAYS + Kitchen Gadgets on ShopHQ brings you new and unique items that every cook needs to diminish the hassle of daily kitchen chores. Discover how easy it is to get great results in the kitchen with the right gadget! + Shopping + + + + Gifts From Mackenzie Childs + BRAND NEW AT SHOPHQ + Mackenzie-Childs offers an energetic, imaginative and bright assortment of core kitchen products, charming accents and decorative items that are a perfect addition to any home. + Shopping + + + + Gifts From Mackenzie Childs + BRAND NEW AT SHOPHQ + Mackenzie-Childs offers an energetic, imaginative and bright assortment of core kitchen products, charming accents and decorative items that are a perfect addition to any home. + Shopping + + + + Isomers Skincare Holiday Gifts + BRAND NEW AT SHOPHQ + Give the gift of anti-aging with Isomers Skincare! Enhance your quality of skin with Isomers nutrient-rich formulas. + Shopping + + + + Peace Diamond Jewelry + BRAND NEW AT SHOPHQ + Embark on a journey of elegance and ethical excellence as we unveil the premiere of Peace Diamond Jewelry. Join us for an evening of luxury and conscience, where diamond creations meet a commitment to peace, sustainability, and responsible sourcing. + Local + + + + Gifts From Mackenzie Childs + BRAND NEW AT SHOPHQ + Mackenzie-Childs offers an energetic, imaginative and bright assortment of core kitchen products, charming accents and decorative items that are a perfect addition to any home. + Shopping + + + + UltraCozy Luxury Recliner + BRAND NEW AT SHOPHQ + Get ready to kick back, relax, and shop the UltraCozy Luxury Recliner! + Shopping + + + + Peace Diamond Jewelry + BRAND NEW AT SHOPHQ + Embark on a journey of elegance and ethical excellence as we unveil the premiere of Peace Diamond Jewelry. Join us for an evening of luxury and conscience, where diamond creations meet a commitment to peace, sustainability, and responsible sourcing. + Local + + + + Gifts From Mackenzie Childs + BRAND NEW AT SHOPHQ + Mackenzie-Childs offers an energetic, imaginative and bright assortment of core kitchen products, charming accents and decorative items that are a perfect addition to any home. + Shopping + + + + Gifts From Mackenzie Childs + BRAND NEW AT SHOPHQ + Mackenzie-Childs offers an energetic, imaginative and bright assortment of core kitchen products, charming accents and decorative items that are a perfect addition to any home. + Shopping + + + + Gifts From Mackenzie Childs + BRAND NEW AT SHOPHQ + Mackenzie-Childs offers an energetic, imaginative and bright assortment of core kitchen products, charming accents and decorative items that are a perfect addition to any home. + Shopping + + + + Peace Diamond Jewelry + BRAND NEW AT SHOPHQ + Embark on a journey of elegance and ethical excellence as we unveil the premiere of Peace Diamond Jewelry. Join us for an evening of luxury and conscience, where diamond creations meet a commitment to peace, sustainability, and responsible sourcing. + Local + + + + Isomers Skincare Holiday Gifts + BRAND NEW AT SHOPHQ + Give the gift of anti-aging with Isomers Skincare! Enhance your quality of skin with Isomers nutrient-rich formulas. + Shopping + + + + Isomers Skincare Holiday Gifts + BRAND NEW AT SHOPHQ + Give the gift of anti-aging with Isomers Skincare! Enhance your quality of skin with Isomers nutrient-rich formulas. + Shopping + + + + Gifts From Mackenzie Childs + BRAND NEW AT SHOPHQ + Mackenzie-Childs offers an energetic, imaginative and bright assortment of core kitchen products, charming accents and decorative items that are a perfect addition to any home. + Shopping + + + + Gifts From Mackenzie Childs + BRAND NEW AT SHOPHQ + Mackenzie-Childs offers an energetic, imaginative and bright assortment of core kitchen products, charming accents and decorative items that are a perfect addition to any home. + Shopping + + + + Peace Diamond Jewelry + BRAND NEW AT SHOPHQ + Embark on a journey of elegance and ethical excellence as we unveil the premiere of Peace Diamond Jewelry. Join us for an evening of luxury and conscience, where diamond creations meet a commitment to peace, sustainability, and responsible sourcing. + Local + + + + RGMT Watches + BRAND NEW AT SHOPHQ + Shopping + + + + Vostok-Europe Watches + BRAND NEW AT SHOPHQ + Make the world your playground with the intriguing, Russian-inspired watch designs of Vostok-Europe. + Shopping + + + + Vaucanson & Schild Timepieces + BRAND NEW AT SHOPHQ + Shopping + + + + Swan & Edgar Watches + BRAND NEW AT SHOPHQ + Prepare to be enchanted by an evening of timeless elegance and precision as we introduce you to the exquisite world of Swan & Edgar Watches. Join us as we unveil the craftsmanship, innovation, and enduring beauty that define these timepieces. + Shopping + + + + UltraCozy Luxury Recliner + BRAND NEW AT SHOPHQ + Get ready to kick back, relax, and shop the UltraCozy Luxury Recliner! + Shopping + + + + Peace Diamonds Jewelry + BRAND NEW AT SHOPHQ + Embark on a journey of elegance and ethical excellence as we unveil the premiere of Peace Diamonds Jewelry. Join us for an evening of luxury and conscience, where diamond creations meet a commitment to peace, sustainability, and responsible sourcing. + Shopping + + + + RGMT Watches + BRAND NEW AT SHOPHQ + Shopping + + + + Gevril Timepieces + BRAND NEW AT SHOPHQ + Luxuriously handcrafted by skilled Swiss watchmakers. + Shopping + + + + Vostok-Europe Watches + BRAND NEW AT SHOPHQ + Make the world your playground with the intriguing, Russian-inspired watch designs of Vostok-Europe. + Shopping + + + + Vaucanson Timepieces + BRAND NEW AT SHOPHQ + Join us for an exclusive premiere event where we unveil the intricate craftsmanship, timeless design, and unparalleled beauty that define these exceptional watches. + Shopping + + + + Isomers Skincare Holiday Gifts + BRAND NEW AT SHOPHQ + Give the gift of anti-aging with Isomers Skincare! Enhance your quality of skin with Isomers nutrient-rich formulas. + Shopping + + + + Isomers Skincare Holiday Gifts + BRAND NEW AT SHOPHQ + Give the gift of anti-aging with Isomers Skincare! Enhance your quality of skin with Isomers nutrient-rich formulas. + Shopping + + + + Peace Diamond Jewelry + BRAND NEW AT SHOPHQ + Embark on a journey of elegance and ethical excellence as we unveil the premiere of Peace Diamond Jewelry. Join us for an evening of luxury and conscience, where diamond creations meet a commitment to peace, sustainability, and responsible sourcing. + Local + + + + Christopher & Banks Apparel & Access. + HOLIDAY FASHION FAVORITES + New to ShopHQ is Christopher & Banks, a nationally recognized women's apparel brand known for their unique prints, great fit and quality. + Local + + + + Christopher & Banks Apparel & Access. + HOLIDAY FASHION FAVORITES + New to ShopHQ is Christopher & Banks, a nationally recognized women's apparel brand known for their unique prints, great fit and quality. + Local + + + + Luxe Life: Designer Accessories + HOLIDAY FASHION FAVORITES + Discover ShopHQ's wide variety of luxury designer finds featuring designer accessories! + Shopping + + + + Fashion Must Haves + HOLIDAY FASHION FAVORITES + The title says it all. Tune in and discover new pieces you'll love adding to your closet! + Shopping + + + + Christopher & Banks Apparel & Access. + HOLIDAY FASHION FAVORITES + New to ShopHQ is Christopher & Banks, a nationally recognized women's apparel brand known for their unique prints, great fit and quality. + Local + + + + Christopher & Banks Apparel & Access. + HOLIDAY FASHION FAVORITES + New to ShopHQ is Christopher & Banks, a nationally recognized women's apparel brand known for their unique prints, great fit and quality. + Local + + + + Luxe Life: Designer Accessories + HOLIDAY FASHION FAVORITES + Discover ShopHQ's wide variety of luxury designer finds featuring designer accessories! + Shopping + + + + Fashion Must Haves + HOLIDAY FASHION FAVORITES + The title says it all. Tune in and discover new pieces you'll love adding to your closet! + Shopping + + + + Christopher & Banks Apparel & Access. + HOLIDAY FASHION FAVORITES + New to ShopHQ is Christopher & Banks, a nationally recognized women's apparel brand known for their unique prints, great fit and quality. + Local + + + + Anuschka Handbags + HOLIDAY FASHION FAVORITES + For the shopper who loves artistic, statement handbags. Anuschka utilizes a special technique of hand-painting their functional bags with powerful colors and hues one-by-one just for you. New to ShopHQ? + Shopping + + + + Anuschka Handbags + HOLIDAY FASHION FAVORITES + For the shopper who loves artistic, statement handbags. Anuschka utilizes a special technique of hand-painting their functional bags with powerful colors and hues one-by-one just for you. New to ShopHQ? + Shopping + + + + Christopher & Banks Apparel & Access. + HOLIDAY FASHION FAVORITES + New to ShopHQ is Christopher & Banks, a nationally recognized women's apparel brand known for their unique prints, great fit and quality. + Local + + + + Dr. Sevinor Skincare Solutions + HOLIDAY ALL STAR CELEBRATION + Dr. Sevinor's Skincare Solutions is based on 40 years of experience working under the skin. This proprietary line is a collection of quick and easy beauty treatments for women and men to help their skin look younger and overall improve skin health. + Shopping + + + + Anuschka Handbags + HOLIDAY ALL STAR CELEBRATION + For the shopper who loves artistic, statement handbags. Anuschka utilizes a special technique of hand-painting their functional bags with powerful colors and hues one-by-one just for you. New to ShopHQ? + Shopping + + + + Anuschka Handbags + HOLIDAY ALL STAR CELEBRATION + For the shopper who loves artistic, statement handbags. Anuschka utilizes a special technique of hand-painting their functional bags with powerful colors and hues one-by-one just for you. New to ShopHQ? + Shopping + + + + Anuschka Handbags + HOLIDAY FASHION FAVORITES + For the shopper who loves artistic, statement handbags. Anuschka utilizes a special technique of hand-painting their functional bags with powerful colors and hues one-by-one just for you. New to ShopHQ? + Shopping + + + + Christopher & Banks Apparel & Access. + New to ShopHQ is Christopher & Banks, a nationally recognized women's apparel brand known for their unique prints, great fit and quality. + Local + + + + Christopher & Banks Apparel & Access. + New to ShopHQ is Christopher & Banks, a nationally recognized women's apparel brand known for their unique prints, great fit and quality. + Local + + + + Anuschka Handbags + For the shopper who loves artistic, statement handbags. Anuschka utilizes a special technique of hand-painting their functional bags with powerful colors and hues one-by-one just for you. New to ShopHQ? + Shopping + + + + Dr. Sevinor Skincare Solutions + Dr. Sevinor's Skincare Solutions is based on 40 years of experience working under the skin and is a collection of quick and easy beauty treatments for women and men to help their skin look younger and overall improve skin health. + Shopping + + + + Fashion Must Haves + The title says it all. Tune in and discover new pieces you'll love adding to your closet! + Shopping + + + + Luxe Life: Designer Accessories + Discover ShopHQ's wide variety of luxury designer finds featuring designer accessories! + Shopping + + + + Christopher & Banks Apparel & Access. + New to ShopHQ is Christopher & Banks, a nationally recognized women's apparel brand known for their unique prints, great fit and quality. + Local + + + + Anuschka Handbags + For the shopper who loves artistic, statement handbags. Anuschka utilizes a special technique of hand-painting their functional bags with powerful colors and hues one-by-one just for you. New to ShopHQ? + Shopping + + + + Style Remix: All Star Edition + HOLIDAY ALL STAR CELEBRATION + Join us for a special edition of Style Remix! Discover your next favorite piece, right here on ShopHQ. + Shopping + + + + Style Remix: All Star Edition + HOLIDAY ALL STAR CELEBRATION + Join us for a special edition of Style Remix! Discover your next favorite piece, right here on ShopHQ. + Shopping + + + + Dr. Sevinor Skincare Solutions + HOLIDAY ALL STAR CELEBRATION + Dr. Sevinor's Skincare Solutions is based on 40 years of experience working under the skin. This proprietary line is a collection of quick and easy beauty treatments for women and men to help their skin look younger and overall improve skin health. + Shopping + + + + SeroVital Beauty Anti-Aging + HOLIDAY ALL STAR CELEBRATION + Join our program hosts as we introduce SeroVital: a patented, anti-aging supplement designed for anyone focused on supporting their vitality, wellness and beauty. + Shopping + + + + Anuschka Handbags + HOLIDAY ALL STAR CELEBRATION + For the shopper who loves artistic, statement handbags. Anuschka utilizes a special technique of hand-painting their functional bags with powerful colors and hues one-by-one just for you. New to ShopHQ? + Shopping + + + + Anuschka Handbags + HOLIDAY ALL STAR CELEBRATION + For the shopper who loves artistic, statement handbags. Anuschka utilizes a special technique of hand-painting their functional bags with powerful colors and hues one-by-one just for you. New to ShopHQ? + Shopping + + + + Dr. Sevinor Skincare Solutions + HOLIDAY ALL STAR CELEBRATION + Dr. Sevinor's Skincare Solutions is based on 40 years of experience working under the skin. This proprietary line is a collection of quick and easy beauty treatments for women and men to help their skin look younger and overall improve skin health. + Shopping + + + + SeroVital Beauty Anti-Aging + HOLIDAY ALL STAR CELEBRATION + Join our program hosts as we introduce SeroVital: a patented, anti-aging supplement designed for anyone focused on supporting their vitality, wellness and beauty. + Shopping + + + + Anuschka Handbags + HOLIDAY ALL STAR CELEBRATION + For the shopper who loves artistic, statement handbags. Anuschka utilizes a special technique of hand-painting their functional bags with powerful colors and hues one-by-one just for you. New to ShopHQ? + Shopping + + + + Anuschka Handbags + HOLIDAY ALL STAR CELEBRATION + For the shopper who loves artistic, statement handbags. Anuschka utilizes a special technique of hand-painting their functional bags with powerful colors and hues one-by-one just for you. New to ShopHQ? + Shopping + + + + Dr. Sevinor Skincare Solutions + HOLIDAY ALL STAR CELEBRATION + Dr. Sevinor's Skincare Solutions is based on 40 years of experience working under the skin. This proprietary line is a collection of quick and easy beauty treatments for women and men to help their skin look younger and overall improve skin health. + Shopping + + + + SeroVital Beauty Anti-Aging + HOLIDAY ALL STAR CELEBRATION + Join our program hosts as we introduce SeroVital: a patented, anti-aging supplement designed for anyone focused on supporting their vitality, wellness and beauty. + Shopping + + + + Anuschka Handbags + HOLIDAY ALL STAR CELEBRATION + For the shopper who loves artistic, statement handbags. Anuschka utilizes a special technique of hand-painting their functional bags with powerful colors and hues one-by-one just for you. New to ShopHQ? + Shopping + + + + Anuschka Handbags + HOLIDAY ALL STAR CELEBRATION + For the shopper who loves artistic, statement handbags. Anuschka utilizes a special technique of hand-painting their functional bags with powerful colors and hues one-by-one just for you. New to ShopHQ? + Shopping + + + + Dr. Sevinor Skincare Solutions + HOLIDAY ALL STAR CELEBRATION + Dr. Sevinor's Skincare Solutions is based on 40 years of experience working under the skin. This proprietary line is a collection of quick and easy beauty treatments for women and men to help their skin look younger and overall improve skin health. + Shopping + + + + SeroVital Beauty Anti-Aging + HOLIDAY ALL STAR CELEBRATION + Join our program hosts as we introduce SeroVital: a patented, anti-aging supplement designed for anyone focused on supporting their vitality, wellness and beauty. + Shopping + + + + Anuschka Handbags + HOLIDAY ALL STAR CELEBRATION + For the shopper who loves artistic, statement handbags. Anuschka utilizes a special technique of hand-painting their functional bags with powerful colors and hues one-by-one just for you. New to ShopHQ? + Shopping + + + + SeroVital Beauty Anti-Aging + HOLIDAY ALL STAR CELEBRATION + Join our program hosts as we introduce SeroVital: a patented, anti-aging supplement designed for anyone focused on supporting their vitality, wellness and beauty. + Shopping + + + + Dr. Sevinor Skincare Solutions + HOLIDAY ALL STAR CELEBRATION + Dr. Sevinor's Skincare Solutions is based on 40 years of experience working under the skin. This proprietary line is a collection of quick and easy beauty treatments for women and men to help their skin look younger and overall improve skin health. + Shopping + + + + Anuschka Handbags + HOLIDAY ALL STAR CELEBRATION + For the shopper who loves artistic, statement handbags. Anuschka utilizes a special technique of hand-painting their functional bags with powerful colors and hues one-by-one just for you. New to ShopHQ? + Shopping + + + + Anuschka Handbags + HOLIDAY ALL STAR CELEBRATION + For the shopper who loves artistic, statement handbags. Anuschka utilizes a special technique of hand-painting their functional bags with powerful colors and hues one-by-one just for you. New to ShopHQ? + Shopping + + + + Dr. Sevinor Skincare Solutions + HOLIDAY ALL STAR CELEBRATION + Dr. Sevinor's Skincare Solutions is based on 40 years of experience working under the skin. This proprietary line is a collection of quick and easy beauty treatments for women and men to help their skin look younger and overall improve skin health. + Shopping + + + + SeroVital Beauty Anti-Aging + HOLIDAY ALL STAR CELEBRATION + Join our program hosts as we introduce SeroVital: a patented, anti-aging supplement designed for anyone focused on supporting their vitality, wellness and beauty. + Shopping + + + + Dr. Sevinor Skincare Gifts + HOLIDAY ALL STAR CELEBRATION + Dr. Sevinor's Skincare Solutions is based on 40 years of experience working under the skin. This proprietary line is a collection of quick and easy beauty treatments for women and men to help their skin look younger and overall improve skin health. + Shopping + + + + Anuschka Handbags + HOLIDAY ALL STAR CELEBRATION + For the shopper who loves artistic, statement handbags. Anuschka utilizes a special technique of hand-painting their functional bags with powerful colors and hues one-by-one just for you. New to ShopHQ? + Shopping + + + + Anuschka Handbags + HOLIDAY ALL STAR CELEBRATION + For the shopper who loves artistic, statement handbags. Anuschka utilizes a special technique of hand-painting their functional bags with powerful colors and hues one-by-one just for you. New to ShopHQ? + Shopping + + + + Dallas Prince Jewelry Designs + 19 ANNIVERSARY + Be immersed in idyllic elegance with jewelry created by internationally-renowned and award-winning designer Dallas Prince. + Shopping + + + + Designer Fragrances + HOLIDAY ALL STAR CELEBRATION + Join our program hosts and explore the best deals on an assortment of designer fragrances. + Shopping + + + + Luxury Eyewear + HOLIDAY ALL STAR CELEBRATION + Peruse fabulous statement eyewear by the world's most couture fashion houses. Designs by Gucci, Saint Laurent, Alexander McQueen, Celine, Stella McCartney and Bottega Veneta. + Shopping + + + + Anuschka Handbags + HOLIDAY ALL STAR CELEBRATION + For the shopper who loves artistic, statement handbags. Anuschka utilizes a special technique of hand-painting their functional bags with powerful colors and hues one-by-one just for you. New to ShopHQ? + Shopping + + + + Anuschka Handbags + HOLIDAY ALL STAR CELEBRATION + For the shopper who loves artistic, statement handbags. Anuschka utilizes a special technique of hand-painting their functional bags with powerful colors and hues one-by-one just for you. New to ShopHQ? + Shopping + + + + Dallas Prince Jewelry Designs + 19 ANNIVERSARY + Be immersed in idyllic elegance with jewelry created by internationally-renowned and award-winning designer Dallas Prince. + Shopping + + + + Dallas Prince Jewelry Designs + 19 ANNIVERSARY + Be immersed in idyllic elegance with jewelry created by internationally-renowned and award-winning designer Dallas Prince. + Shopping + + + + Anuschka Handbags + HOLIDAY ALL STAR CELEBRATION + For the shopper who loves artistic, statement handbags. Anuschka utilizes a special technique of hand-painting their functional bags with powerful colors and hues one-by-one just for you. New to ShopHQ? + Shopping + + + + Menace II Society + Crime, street sense and the status quo roil the mind of a teenager (Tyrin Turner) in the Watts section of Los Angeles. + + Tyrin Turner + Jada Pinkett Smith + Vonte Sweet + + 1993 + Movies + Drama + + + TV14 + + + 3 + + + + Paid in Full + A dry cleaner's delivery boy becomes one of the most powerful drug dealers in 1980s Harlem. Based on a true story. + + Wood Harris + Mekhi Phifer + Kevin Carroll + + 2002 + Movies + Crime Story + + + TVPG + + + 2 + + + + New York Ninja + A sound technician in New York City turns to vigilantism after his pregnant wife is murdered. + + John Liu + Don + + 2021 + Movies + Action + + + + Free State of Jones + In Jones County, Miss., Newt Knight (Matthew McConaughey) joins forces with other farmers and a group of runaway slaves to lead a violent rebellion against the Confederacy. + + Matthew McConaughey + Gugu Mbatha-Raw + Mahershalalhashbaz Ali + + 2016 + Movies + History + + + TVPG + + + 2 + + + + Free State of Jones + In Jones County, Miss., Newt Knight (Matthew McConaughey) joins forces with other farmers and a group of runaway slaves to lead a violent rebellion against the Confederacy. + + Matthew McConaughey + Gugu Mbatha-Raw + Mahershalalhashbaz Ali + + 2016 + Movies + History + + + TVPG + + + 2 + + + + Loudmouth + Interviews and never-before-seen footage provide insight into the life of the Rev. Al Sharpton, the polarizing civil rights activist who spends decades fighting for social change. + 2022 + Movies + Documentary + + + + Basketball County: In the Water + Star athletes, local legends, historians, and experts chronicle the evolution of the game and examine why Prince George's County, Md., produces more professional basketball players than anywhere else in the world. + + Kevin Durant + Victor Oladipo + Walt Williams + + Sports + Basketball + + + TVMA + + + + NYC Point Gods + Point guards including Rafer Alston, Kenny Anderson, Mark Jackson, Stephon Marbury, Kenny Smith and Rod Strickland hone their craft and taste for showmanship on New York City's iconic playgrounds and in high school gyms in the 1980s and '90s. + Specials + Documentary + + + TVMA + + + + Kobe Bryant's Muse + An unprecedented level of access reveals the life and career of NBA player Kobe Bryant as he tries to cement his legacy and contemplates his life after sports. + + Kobe Bryant + + Specials + Documentary + + + TVMA + + + + Disgraced + An examination of the events surrounding the 2003 murder of Baylor University men's basketball star Patrick Dennehy. + 2017 + Movies + Documentary + + + + MVP + A recently retired NFL player develops a strong bond with a homeless veteran who suffers from post-traumatic stress disorder. + + Mo McRae + Nate Boyer + Dina Shihabi + + 2022 + Movies + Drama + + + TVG + + + + Small City + When a drug mule becomes sick in transit, one of the men tasked with her collection is left shaken. The man soon discovers the girl is to be sold to traffickers, and the unlikely duo are then forced to flee a hostile city. + + Edward Thompson + Isabella Nefar + Morgan Watkins + + 2021 + Movies + Thriller + + + + Lavell Crawford: Thee Lavell Crawford + Live from New Orleans, Lavell Crawford is back with a new comedy special, riffing on everything from white neighborhoods to getting blessed with impossibly good deals on chicken. + Specials + Comedy + + + + Heist 88 + A criminal mastermind decides to pull one last job before going to prison and recruits a group of young bank employees to steal millions in a daring and brazen assault on the U.S. banking system. + + Courtney B. Vance + Keith David + Keesha Sharp + + 2023 + Movies + Crime Story + + + + 1-800-Hot-Nite + With help from his two best friends, 13-year-old Tommy escapes from Child Protective Services to face the mean streets of Los Angeles. He soon finds solace with Ava, a phone sex operator who becomes the only adult he can confide in. + + Dallas Dupree Young + Gerrison Machado + Mylen Bradford + + 2022 + Movies + Drama + + + + The Crying Game + An IRA underling (Stephen Rea) meets the lover of a British soldier (Forest Whitaker) he has been ordered to execute. + + Stephen Rea + Miranda Richardson + Forest Whitaker + + 1992 + Movies + Thriller + + + TV14 + + + 4 + + + + The Wiz + Dorothy (Diana Ross) eases on down the road to see the Wiz (Richard Pryor) with Tinman, Scarecrow (Michael Jackson) and Cowardly Lion. + + Diana Ross + Michael Jackson + Richard Pryor + + 1978 + Movies + Children + + + TVG + + + 2 + + + + Hitsville: The Making of Motown + Motown Records becomes the most successful label of all time after its formation in 1958 Detroit amid racial tension and the burgeoning civil rights movement. + 2019 + Movies + Documentary + + + TV14 + + + + The Circus: Inside the Greatest Political Show on Earth + Inside the Greatest Political Show on Earth - 811 + A revealing look at the new era of presidential politics, revealing the intense, inspiring and infuriating stories behind the headlines; key characters and events are presented in real time as they are happening. + Documentary + Political + + + TV14 + + + + Burn Mother...ker, Burn! + A chronicle of how decades of troubled relations between the LAPD and the African-American community served as the prelude to the 1992 Los Angeles uprising. + 2017 + Movies + Documentary + + + + After Innocence + Filmmaker Jessica Sanders interviews seven men who were wrongfully imprisoned until DNA testing set them free. + 2005 + Movies + Documentary + + + 3 + + + + Big Game + The U.S. president (Samuel L. Jackson) must rely on a 13-year-old boy (Onni Tommila) to get him out alive after Air Force One is shot down over Finland as part of a psychopath's plot to hunt and kill the POTUS. + + Samuel L. Jackson + Onni Tommila + Ray Stevenson + + 2014 + Movies + Action + + + TVG + + + 2 + + + + Cypress Hill: Insane in the Brain + A smoke-filled journey across the lives and careers of the members of the groundbreaking, genre-defying hip-hop group Cypress Hill. + Specials + Music + + + + You're Watching Video Music Box + Specials + Documentary + + + TVMA + + + + Immanence + Radio astronomers discover a mysterious signal in the deep sea that could be contact with extraterrestrials. After several terrifying manifestations threaten their beliefs, they must fight to survive the ultimate evil. + + Michael Beach + Anthony Ruivivar + Summer Bellessa + + 2022 + Movies + Horror + + + TVG + + + + Event Horizon + A rescue party (Laurence Fishburne, Sam Neill, Kathleen Quinlan) encounters supernatural forces aboard a prototype spaceship that vanished seven years earlier. + + Laurence Fishburne + Sam Neill + Kathleen Quinlan + + 1997 + Movies + Sci-Fi + + + TV14 + + + 2 + + + + Whitney: Can I Be Me + Filmmaker Nick Broomfield goes in search of the forces that made and then destroyed singer Whitney Houston, who has been described as having one of the greatest voices of the last 50 years. + + Tony Anderson + Burt Bacharach + David Foster + + 2017 + Movies + Documentary + + + + Mary Lou Williams: The Lady Who Swings the Band + Mary Lou Williams becomes a successful jazz pianist, composer and arranger in the early 1900s. + + Delroy Lindo + Alfre Woodard + Wendell Pierce + + 2015 + Movies + Documentary + + + + Girlhood + Marieme joins an all-girl gang in the projects of Paris and is slowly turned out of her shell by her three sassy neighbors. As she falls further under their bravado and volatile energy, she begins making brave and foolish choices. + + Karidja Touré + Assa Sylla + Lindsay Karamoh + + 2014 + Movies + Drama + + + TV14 + + + + More Funny Women of a Certain Age + Caroline Rhea headlines a cast of women for a night of uninhibited stand-up comedy; featuring Carol Leifer, Tammy Pescatelli, Thea Vidale, Carole Montgomery, and Julia Scotti. + + Caroline Rhea + Carol Leifer + Tammy Pescatelli + + Specials + Comedy + + + TVMA + + + + Beverly Hills Cop III + A hip detective (Eddie Murphy) from Detroit tracks a crime ring to a Los Angeles fun park called WonderWorld. + + Eddie Murphy + Judge Reinhold + Héctor Elizondo + + 1994 + Movies + Comedy + + + TVPG + + + 2 + + + + Event Horizon + A rescue party (Laurence Fishburne, Sam Neill, Kathleen Quinlan) encounters supernatural forces aboard a prototype spaceship that vanished seven years earlier. + + Laurence Fishburne + Sam Neill + Kathleen Quinlan + + 1997 + Movies + Sci-Fi + + + TV14 + + + 2 + + + + Immanence + Radio astronomers discover a mysterious signal in the deep sea that could be contact with extraterrestrials. After several terrifying manifestations threaten their beliefs, they must fight to survive the ultimate evil. + + Michael Beach + Anthony Ruivivar + Summer Bellessa + + 2022 + Movies + Horror + + + TVG + + + + Vampire in Brooklyn + A Caribbean vampire (Eddie Murphy) seeks the half-vampire, half-human New York homicide detective (Angela Bassett) destined to be his bride. + + Eddie Murphy + Angela Bassett + Allen Payne + + 1995 + Movies + Comedy + + + TVPG + + + 2 + + + + B...A... + A gang initiation goes horribly wrong when four recruits break into a house of horror and a sadistic killer forces them to play deadly games for their lives. + + Teon Kelley + Tunde Laleye + Me'lisa Sellers + + 2022 + Movies + Horror + + + + The Watermelon Woman + An aspiring black lesbian filmmaker researches an obscure 1940s black actress billed as the Watermelon Woman. + + Cheryl Dunye + Guinevere Turner + Valarie Walker + + 1996 + Movies + Comedy + + + TVPG + + + 2 + + + + Grace Under Pressure + A burglar gets more than he bargained for when he stumbles into the apartment of singer Grace Jones and artist Jean-Paul Goude. + + Gloria Onitiri + Joshua McGuire + + 2019 + Movies + Comedy + Drama + + + + S.O.G.: The Book of Ward + Andre Ward, facing an all-too familiar series of obstacles, defies the odds and silences his critics with an undefeated boxing career, but walks away after choosing his role as a father and a husband over boxing. + 2023 + Movies + Documentary + + + TV14 + + + + The Resurgence: DeMarcus Cousins + A documentary following DeMarcus Cousins while he recovers from an injury that has been a career death sentence for some NBA players; featuring exclusive interviews with teammates, coaches and NBA insiders. + + DeMarcus Cousins + John Calipari + Mike Malone + + Sports + Documentary + + + TVMA + + + + Rolling Like Thunder + Stories of myth-like artists, remarkable romances and competitive battles reveal the risk behind freight train and graffiti culture. + Specials + Documentary + + + TVMA + + + + Brick Mansions + An undercover cop (Paul Walker) joins forces with an ex-con (David Belle) to rescue his kidnapped girlfriend and save Detroit from destruction. + + Paul Walker + David Belle + RZA + + 2014 + Movies + Action + + + TVPG + + + 2 + + + + Snipes + A teenager (Sam Jones III) must elude thugs who believe he is responsible for the disappearance of a rapper (Nelly) and an unfinished album. + + Sam Jones III + Zoe Saldana + Nelly + + 2001 + Movies + Thriller + + + 2 + + + + The Show: California Love + Behind the scenes of the Super Bowl Halftime Show featuring Dr. Dre, Snoop Dogg, Kendrick Lamar, Mary J. Blige and Eminem; revealing the personal meaning for those involved in making it happen. + Sports + Football + + + + Dance Flick + Two teens (Shoshana Bush, Damon Wayans Jr.) from opposite sides of the tracks come together through their passion for dancing and their desire to win the mother of all dance battles. + + Shoshana Bush + Damon Wayans Jr. + Essence Atkins + + 2009 + Movies + Comedy + + + TVPG + + + 2 + + + + Chocolate City + Michael (Robert Ri'chard) takes a job as an exotic dancer to make ends meet, and as the money rolls in, he has to deal with the attention of the female club goers while hiding his job from his mother (Vivica A. Fox) and girlfriend. + + Robert Ri'chard + Vivica A. Fox + DeRay Davis + + 2015 + Movies + Drama + + + TVPG + + + + Brick Mansions + An undercover cop (Paul Walker) joins forces with an ex-con (David Belle) to rescue his kidnapped girlfriend and save Detroit from destruction. + + Paul Walker + David Belle + RZA + + 2014 + Movies + Action + + + TVPG + + + 2 + + + + Snipes + A teenager (Sam Jones III) must elude thugs who believe he is responsible for the disappearance of a rapper (Nelly) and an unfinished album. + + Sam Jones III + Zoe Saldana + Nelly + + 2001 + Movies + Thriller + + + 2 + + + + Amistad + U.S. lawyers (Anthony Hopkins, Matthew McConaughey) defend Africans who revolted against their Spanish captors aboard a slave ship in 1839. + + Morgan Freeman + Anthony Hopkins + Matthew McConaughey + + 1997 + Movies + History + + + TVPG + + + 3 + + + + Free State of Jones + In Jones County, Miss., Newt Knight (Matthew McConaughey) joins forces with other farmers and a group of runaway slaves to lead a violent rebellion against the Confederacy. + + Matthew McConaughey + Gugu Mbatha-Raw + Mahershalalhashbaz Ali + + 2016 + Movies + History + + + TVPG + + + 2 + + + + The Circus: Inside the Greatest Political Show on Earth + Inside the Greatest Political Show on Earth - 811 + A revealing look at the new era of presidential politics, revealing the intense, inspiring and infuriating stories behind the headlines; key characters and events are presented in real time as they are happening. + Documentary + Political + + + TV14 + + + + Dance Flick + Two teens (Shoshana Bush, Damon Wayans Jr.) from opposite sides of the tracks come together through their passion for dancing and their desire to win the mother of all dance battles. + + Shoshana Bush + Damon Wayans Jr. + Essence Atkins + + 2009 + Movies + Comedy + + + TVPG + + + 2 + + + + Pariah: The Lives and Deaths of Sonny Liston + The life and suspicious death of boxer Sonny Liston. + + Sven Ruygrok + + 2019 + Movies + Documentary + + + TVMA + + + + Under the Volcano + Producer George Martin opens AIR Studios Montserrat, a state-of-the-art recording facility on an exotic Caribbean island. In the shadow of an active volcano, the studio attracts some of the biggest musical acts on the planet. + 2021 + Movies + Documentary + + + + Cypress Hill: Insane in the Brain + A smoke-filled journey across the lives and careers of the members of the groundbreaking, genre-defying hip-hop group Cypress Hill. + Specials + Music + + + + Kobe Bryant's Muse + An unprecedented level of access reveals the life and career of NBA player Kobe Bryant as he tries to cement his legacy and contemplates his life after sports. + + Kobe Bryant + + Specials + Documentary + + + TVMA + + + + Basketball County: In the Water + Star athletes, local legends, historians, and experts chronicle the evolution of the game and examine why Prince George's County, Md., produces more professional basketball players than anywhere else in the world. + + Kevin Durant + Victor Oladipo + Walt Williams + + Sports + Basketball + + + TVMA + + + + Loudmouth + Interviews and never-before-seen footage provide insight into the life of the Rev. Al Sharpton, the polarizing civil rights activist who spends decades fighting for social change. + 2022 + Movies + Documentary + + + + Small City + When a drug mule becomes sick in transit, one of the men tasked with her collection is left shaken. The man soon discovers the girl is to be sold to traffickers, and the unlikely duo are then forced to flee a hostile city. + + Edward Thompson + Isabella Nefar + Morgan Watkins + + 2021 + Movies + Thriller + + + + The Inspection + Based on the incredible true story of a gay Black man with few options who joins the Marines to prove himself to his estranged mother and triumph in a system that cast him aside, unexpectedly finding strength and camaraderie in this new community. + + Jeremy Pope + Raul Castillo + McCaul Lombardi + + 2022 + Movies + Drama + + + TVPG + + + 3 + + + + Breaking + Desperate for money and running out of options, Marine veteran Brian Brown-Easley holds several people hostage inside a bank, setting the stage for a tense confrontation with police. + + John Boyega + Michael K. Williams + Nicole Beharie + + 2022 + Movies + Thriller + + + 2 + + + + Burn Mother...ker, Burn! + A chronicle of how decades of troubled relations between the LAPD and the African-American community served as the prelude to the 1992 Los Angeles uprising. + 2017 + Movies + Documentary + + + + Gary Owen: Black Famous + This last year has been unlike any other: COVID, lockdowns, and for Gary, it has also included a divorce and family insanity unlike any other; up until now, Gary hasn't been able to speak about what really happened. + Specials + Comedy + + + + What on Earth? + Range of Nazi Evil + Satellite images capture dozens of perfectly straight parallel lines hidden in the dense Polish woodlands; experts investigate and uncover a massive WWII military complex once used as a notorious and deadly Nazi weapons training facility. + Science + Documentary + + + TVPG + + + + What on Earth? + Doomsday Lair of Greece + Satellite images capture bizarre structures fenced within a remote mountaintop complex on the Greek island of Kefalonia; experts investigate and discover a network of massive satellites linked to a hidden NATO doomsday communications bunker. + Science + Documentary + + + TVPG + + + + What on Earth? + Mystery of the Welsh Mine + Satellite images capture monumental ruins surrounded by bizarre feather-shaped structures on a Welsh mountaintop; experts investigate a hidden tunnel containing the remains of an abandoned slate mine with an exploitative and deadly past. + Science + Documentary + + + TVPG + + + + What on Earth? + Riddle of Sardinia Tower + Satellite images capture a triangular castle-like tower located on the Mediterranean island of Sardinia; experts investigate the relics of a declining ancient civilization that may have suffered a celestial catastrophe. + Science + Documentary + + + TVPG + + + + What on Earth? + Doomsday Lair of Greece + Satellite images capture bizarre structures fenced within a remote mountaintop complex on the Greek island of Kefalonia; experts investigate and discover a network of massive satellites linked to a hidden NATO doomsday communications bunker. + Science + Documentary + + + TVPG + + + + What on Earth? + Mystery of the Welsh Mine + Satellite images capture monumental ruins surrounded by bizarre feather-shaped structures on a Welsh mountaintop; experts investigate a hidden tunnel containing the remains of an abandoned slate mine with an exploitative and deadly past. + Science + Documentary + + + TVPG + + + + What on Earth? + Riddle of Sardinia Tower + Satellite images capture a triangular castle-like tower located on the Mediterranean island of Sardinia; experts investigate the relics of a declining ancient civilization that may have suffered a celestial catastrophe. + Science + Documentary + + + TVPG + + + + What on Earth? + Secret Soviet Spacecraft + Satellite images capture a bizarre industrial complex in the remote desert expanse of Kazakhstan; experts investigate and uncover a massive hangar containing the most expensive spacecraft in the history of Soviet-era space exploration. + Science + Documentary + + + TVPG + + + + What on Earth? + Range of Nazi Evil + Satellite images capture dozens of perfectly straight parallel lines hidden in the dense Polish woodlands; experts investigate and uncover a massive WWII military complex once used as a notorious and deadly Nazi weapons training facility. + Science + Documentary + + + TVPG + + + + What on Earth? + Legend of Moonshine Forest + Satellite images capture a gigantic oval among a bizarre grid pattern that's carved into the dense forests of New Jersey; experts investigate and reveal a landscape linked to infamous prohibition activity and a prolific WWI munitions factory. + Science + Documentary + + + TVPG + + + + What on Earth? + Nuclear Ghost Towns + Satellite images capture a mysterious collection of sprawling towns that appear to be completely unoccupied in Belarus; experts investigate and uncover a horrendous state-sanctioned cover-up responsible for claiming thousands of innocent lives. + Science + Documentary + + + TVPG + + + + Impossible Engineering + World's Fastest Car + An ambitious team of engineers is building the world's fastest car, and using cutting-edge rocket technology, this record-breaking vehicle will be able to accelerate from zero to 1,000 mph in just 20 seconds. + Computers & Technologies + Science + + + TVPG + + + + Impossible Engineering + World's Greatest Yacht + The Black Pearl is one of the largest and fastest sailing yachts in the world, and using cutting-edge innovations in shipbuilding and engineering, its crew puts this brand-new $200 million vessel through the gauntlet to test its unique capabilities. + Computers & Technologies + Science + + + TVPG + + + + Impossible Engineering + Himalayan Mega Train + To build the world's tallest railway, engineers brave a deadly Himalayan environment and its -40 degree temperatures; the cutting-edge train system they build connects one of the planet's most inaccessible cities to a world beyond the ice. + Computers & Technologies + Science + + + TVPG + + + + How It's Made + Decorative Sombreros, Salad Dressings, Cap Guns, Regenerative Medicine + Decorative sombreros; salad dressings; cap guns, regenerative medicine. + Science + Documentary + + + TVG + + + + How It's Made + Cheese Graters; Hot Sauce; Silver Jewelry + Cheese graters; hot sauce; silver jewelry; traditional Mexican chairs. + Science + Documentary + + + TVG + + + + How It's Made + Fishing Reels; Miniature Houses; Kitchen Mixers + Fishing reels; miniature houses; kitchen mixers. + Science + Documentary + + + TVG + + + + How It's Made + Manhole Covers; Range Hoods; Artificial Logs; Snowmobiles + Manhole covers; range hoods; artificial logs; snowmobiles. + Science + Documentary + + + TVG + + + + How It's Made + Tires; Cheesecake; Globes + Solid tires; cheesecake; canoe paddles; globes. + Science + Documentary + + + TVG + + + + How It's Made + Boomerangs; Barbecues; Strobe Lights + Boomerangs; barbecues; pinball machines; strobe lights. + Science + Documentary + + + TVG + + + + How It's Made + Wooden Bowls; Chainsaws; Stackable Potato Chips + Wooden bowls; chain saws; stackable potato chips; jet compressor blades. + Science + Documentary + + + TVG + + + + How It's Made + Steel Wool; Slot Machines + Steel wool; ranges; carved candles; slot machines. + Science + Documentary + + + TVG + + + + How It's Made + CCD Semiconductors; Airline Meals + CCD semiconductors; airline meals; paper cups; trumpets. + Science + Documentary + + + TVG + + + + How It's Made + Padlocks; Synthetic Leather + Padlocks; hair clippers; wooden shoes; synthetic leather. + Science + Documentary + + + TVG + + + + How It's Made + Racing Shells; Pedal Steel Guitars + Racing shells; stainless-steel sinks; leather; pedal steel guitars. + Science + Documentary + + + TVG + + + + How It's Made + Swords; Pontoons; Fuses + Swords; pontoons; grandfather clocks; fuses. + Science + Documentary + + + TVG + + + + How It's Made + Bumpers; Camera Filters; Candy Canes + Bumpers; lighting gels and camera filters; steam-powered models; candy canes. + Science + Documentary + + + TVG + + + + How It's Made + Outboard Motors; Cutlery; Tape Measures + Umbrellas; outboard motors; silver cutlery; tape measures. + Science + Documentary + + + TVG + + + + Forbidden History + The Lost Treasures of Petra + The historic city of Petra in southern Jordan may contain treasures hidden within its rose-colored stone walls. + History + + + TVPG + + + + Forbidden History + The Real Holy Grail + Exploring the many different interpretations of the legendary relic, the possibility of its actual existence, and where it might be located. + History + + + TVPG + + + + Forbidden History + Secrets of the Illuminati + Investigating whether the mysterious group known as the Illuminati is an actual secret society operating in the shadows or simply the invention of conspiracy theorists. + + Jamie Theakston + + History + + + TVPG + + + + Forbidden History + The Oracles of the Dead + Investigating the mysterious figures in Greek society known as oracles, who reputedly spoke the word of the gods. + History + + + TVPG + + + + Forbidden History + Top Secret Nazi UFOs + Investigating the claim that the Nazis created a flying saucer at a secluded research facility, and that the United States and Russia obtained the secret technology after World War II. + History + + + TVPG + + + + Lost City of the Monkey God + Explorer Steve Elkins and a team of archaeologists and anthropologists search for a lost Mayan City in the jungle. + Specials + Documentary + + + + Forbidden History + The Genius of Nikola Tesla + Enigmatic inventor Nikola Tesla, who was responsible for many electrical and radio advancements, dies in poverty and under FBI suspicion. + History + + + TVPG + + + + Lost City of the Monkey God + Explorer Steve Elkins and a team of archaeologists and anthropologists search for a lost Mayan City in the jungle. + Specials + Documentary + + + + Lost City of the Monkey God + Explorer Steve Elkins and a team of archaeologists and anthropologists search for a lost Mayan City in the jungle. + Specials + Documentary + + + + Forbidden History + The Genius of Nikola Tesla + Enigmatic inventor Nikola Tesla, who was responsible for many electrical and radio advancements, dies in poverty and under FBI suspicion. + History + + + TVPG + + + + Forbidden History + Top Secret Nazi UFOs + Investigating the claim that the Nazis created a flying saucer at a secluded research facility, and that the United States and Russia obtained the secret technology after World War II. + History + + + TVPG + + + + Forbidden History + The Lost Treasures of Petra + The historic city of Petra in southern Jordan may contain treasures hidden within its rose-colored stone walls. + History + + + TVPG + + + + Forbidden History + The Real Holy Grail + Exploring the many different interpretations of the legendary relic, the possibility of its actual existence, and where it might be located. + History + + + TVPG + + + + NASA's Unexplained Files + Mystery Space Squid + A NASA astronaut reports seeing a flying saucer in the skies above a U.S. Air Force test range; how the swirling gases of Saturn have formed a perfect hexagon that has hovered above the planet's pole for 30 years. + Documentary + Science + + + TVPG + + + + NASA's Unexplained Files + Pluto Under Pressure + Lost tapes show that Apollo astronauts heard unexplained transmissions on the far side of the moon; an amateur astronomer finds an odd disturbance in Martian atmosphere; an unidentified object in Earth orbit starts stalking Russian spacecraft. + Documentary + Science + + + TVPG + + + + How the Universe Works + Asteroid Apocalypse: The New Threat + If a massive asteroid collides with Earth, it could end life on the planet as one knows it; new discoveries reveal just how close civilization is to apocalypse and what it would take for the world's leading space agencies to stop it. + Science + Documentary + + + TVPG + + + + How the Universe Works + Asteroid Apocalypse: The New Threat + The threat of an apocalypse cause by a massive asteroid colliding with Earth and what the world's leading space agencies are doing to stop it. + Science + Documentary + + + TVPG + + + + Black Files Declassified + Secrets of Drone Warfare + Former CIA officer Mike Baker investigates a black file that may reveal the U.S. government's strategy to produce fully autonomous robots for warfare, and how mind-altering attacks may be evidence of active mind control programs across the globe. + History + Documentary + + + TVPG + + + + Black Files Declassified + Secrets of Drone Warfare + Former CIA officer Mike Baker investigates a black file that may reveal the U.S. government's strategy to produce fully autonomous robots for warfare, and how mind-altering attacks may be evidence of active mind control programs across the globe. + History + Documentary + + + TVPG + + + + Strange Evidence + Curse of the Dragon's Fire + A dark object is captured flying among skyscrapers in China and an explosion engulfs the side of a high-rise in flames at the same moment; experts investigate this astonishing evidence of terrifying, dragon-like creatures. + Science + + + TV14 + + + + Strange Evidence + Possessed by an Alien + When footage reveals a man's leg taking on a life of its own, it appears that something alien is trying to burst free; cutting-edge science investigates what explains this strange possession, and what it takes to exorcise the invader inside. + Science + + + TV14 + + + + Strange Evidence + UFO Over Missouri + A cube spins through the skies over Missouri, raising questions about its propulsion system. + Science + + + TVPG + + + + Expedition Unknown + Lost Gold of Jean Lafitte + Josh Gates investigates the legends swirling around the storied life and death of French pirate Jean Lafitte who is reputed to have buried treasure at sites in coastal Louisiana. + History + Documentary + + + TVPG + + + + Expedition Unknown + Secrets of The Nazca + Josh travels to Peru to investigate the giant geoglyphs drawn into the earth by the ancient Nazca tribes and while studying newly found lines joining a Nazca psychedelic ritual, Josh discovers the meaning behind the mysterious tracings. + History + Documentary + + + TVPG + + + + Expedition Unknown + Samurai Sword of Power + Josh searches for the missing, mystical Honjo sword in ancient shrines hidden in the mountains and underground tunnels of Japan. + History + Documentary + + + TVPG + + + + Expedition Unknown + Curse of the Golden Bell + The ancient cursed Golden Bell of King Dhammazedi. + History + Documentary + + + TVPG + + + + Expedition Unknown + The Quest for King Arthur + One of the greatest legends of all time, King Arthur; ruins of a fifth-century fort that once served as Arthur's administrative capital. + History + Documentary + + + TVPG + + + + Expedition Unknown + The Real Robin Hood + Josh travels the English countryside in search of the real Robin Hood. + History + Documentary + + + TVPG + + + + Expedition Unknown + Hunting Vampires + Josh explores the history of vampirism in Romania and Bulgaria. + History + Documentary + + + TVPG + + + + Expedition Unknown + Blackbeard's Hidden Gold + Josh dives for the lost treasure of the legendary pirate Blackbeard. + History + Documentary + + + TVPG + + + + Expedition Unknown + Finding Fenn's Fortune + A two-million-dollar treasure hidden deep in the Rocky Mountains. + History + Documentary + + + TVPG + + + + Expedition Unknown + Hunting Vampires + Josh explores the history of vampirism in Romania and Bulgaria. + History + Documentary + + + TVPG + + + + Expedition Unknown + Blackbeard's Hidden Gold + Josh dives for the lost treasure of the legendary pirate Blackbeard. + History + Documentary + + + TVPG + + + + Expedition Unknown + Finding Fenn's Fortune + A two-million-dollar treasure hidden deep in the Rocky Mountains. + History + Documentary + + + TVPG + + + + Expedition Unknown + The Real Robin Hood + Josh travels the English countryside in search of the real Robin Hood. + History + Documentary + + + TVPG + + + + Expedition Unknown + Secrets of The Nazca + Josh travels to Peru to investigate the giant geoglyphs drawn into the earth by the ancient Nazca tribes and while studying newly found lines joining a Nazca psychedelic ritual, Josh discovers the meaning behind the mysterious tracings. + History + Documentary + + + TVPG + + + + Expedition Unknown + Samurai Sword of Power + Josh searches for the missing, mystical Honjo sword in ancient shrines hidden in the mountains and underground tunnels of Japan. + History + Documentary + + + TVPG + + + + NASA's Unexplained Files + Return of the Moon Bugs + Apollo 12 astronauts bring back something alive from the moon; NASA tracks an asteroid heading towards Earth but make an incredible discovery. + Documentary + Science + + + TVPG + + + + NASA's Unexplained Files + Rise of the Ice Creatures + Neil Armstrong enters an unexplained spin; an Apollo 17 photo seems to show a US military outpost on the Moon; possible alien life swimming in the oceans of Jupiter's moons. + Documentary + Science + + + TVPG + + + + How the Universe Works + War of the Galaxies + Galaxies are locked in continual combat across the universe, and the Milky Way will face its biggest opponent ever, the Andromeda Galaxy, in a titanic and deadly struggle that could create a new and unrecognizable super galaxy. + Science + Documentary + + + TVPG + + + + How the Universe Works + Mission to a Comet + The Rosetta mission is a groundbreaking expedition to land on a comet for the very first time; special access reveals what this cutting-edge journey discovers and how these mysterious objects help create life on Earth. + Science + Documentary + + + TVPG + + + + Black Files Declassified + Mystery of Mission 7 + In 2013, the USS Jimmy Carter deployed on a classified mission that received a presidential citation of heroism. + History + Documentary + + + TVPG + + + + Black Files Declassified + Secrets of the Paranormal + Uncovered documents reveal a black file containing studies of werewolves, sprites and floating orbs; Mike Baker investigates how the U.S. government may have funded a classified program directly focused on the research of paranormal phenomena. + History + Documentary + + + TVPG + + + + Strange Evidence + Revenge of the Monster Wolf + Footage of a wolf-like creature in the remote wilderness of northern Canada could be evidence of a dire wolf, a prehistoric beast that went extinct at the end of the last Ice Age; experts use cutting-edge technology to investigate if it has returned. + Science + + + TV14 + + + + Strange Evidence + Alien in Paradise + A bizarre, tentacled black mass emerges from the seas on an island in the Caribbean, and on-lookers are horrified as it writhes ashore; experts use cutting-edge tech to investigate the origin of this alien invader. + Science + + + TV14 + + + + Strange Evidence + Lake of the Dead + Marine scientists discover a gruesome underwater death zone that seems to kill anything that dares to enter; apocalyptic skies appear during a deadly earthquake in Ecuador and residents fear it's the end of days. + Science + + + TVPG + + + + Strange Evidence + Ghost in the Abyss + A deep-ocean expedition discovers unnerving evidence of an alien-like monster stirring in the abyss; when an apocalyptic shockwave is caught on tape, investigators wonder if a meteor has hit a city; something bizarre in a Siberian ice river. + Science + + + TVPG + + + + Strange Evidence + America's Loch Ness Monster + A strange creature similar to the Loch Ness Monster is spotted in the United States; experts analyze evidence of a giant scaly egg, and some wonder if it belongs to a dragon; birds are suddenly vaporized by an invisible death ray. + Science + + + TVPG + + + + Strange Evidence + Freak of the Deep + Deep sea explorers discover an unknown monster thousands of feet beneath the ocean; killer fog threatens a town in the American Midwest; a truck spontaneously explodes on a busy freeway. + Science + + + TVPG + + + + Strange Evidence + Curse of the Mayan Treasure + An explorer searching for treasure at a Mayan sacrificial site is attacked by a mysterious underwater fog; thousands of fish spontaneously jump to their deaths; something alien appears over the skies of Lost Angeles. + Science + + + TVPG + + + + Strange Evidence + Gateway to Hell + A fire-breathing crater burns in the middle of a desert, and some believe it to be a gateway to hell; a deadly shark lurks in a golf course water hazard; a giant white blob threatens a town in California. + Science + + + TVPG + + + + Strange Evidence + Return of the Ice Monster + A giant creature in an armor of ice is spotted in the Alaskan wild, and some suspect it's a deadly mythical monster; a jet has a close encounter with an unknown object; evidence of a deadly lightning strike invites paranormal explanations. + Science + + + TVPG + + + + Strange Evidence + The Beast That Ate Jaws + When a mysterious predator eats a shark, experts wonder if a prehistoric monster is to blame; a sinister sight is caught on tape near Russia's Area 51 and the evidence might point to a cover-up. + Science + + + TVPG + + + + Strange Evidence + Doomsday at Yellowstone + Evidence of ghostly apparitions at a Civil War battlefield; when mysterious blue fires start near Yellowstone, experts worry if a supervolcano eruption is imminent; near the site of the Salem Witch Trials, an eerie spectacle stuns scientists. + Science + + + TV14 + + + + Strange Evidence + The Omen of Blood River + When a river of blood washes through a city's streets, some witnesses believe it's a warning of doomsday; a strange, perfect circle emerges in the clouds about California, with some experts speculating that it's evidence of alien activity. + Science + + + TVPG + + + + Strange Evidence + The Beast That Ate Jaws + When a mysterious predator eats a shark, experts wonder if a prehistoric monster is to blame; a sinister sight is caught on tape near Russia's Area 51 and the evidence might point to a cover-up. + Science + + + TVPG + + + + Strange Evidence + Doomsday at Yellowstone + Evidence of ghostly apparitions at a Civil War battlefield; when mysterious blue fires start near Yellowstone, experts worry if a supervolcano eruption is imminent; near the site of the Salem Witch Trials, an eerie spectacle stuns scientists. + Science + + + TV14 + + + + Strange Evidence + The Omen of Blood River + When a river of blood washes through a city's streets, some witnesses believe it's a warning of doomsday; a strange, perfect circle emerges in the clouds about California, with some experts speculating that it's evidence of alien activity. + Science + + + TVPG + + + + Strange Evidence + Return of the Ice Monster + A giant creature in an armor of ice is spotted in the Alaskan wild, and some suspect it's a deadly mythical monster; a jet has a close encounter with an unknown object; evidence of a deadly lightning strike invites paranormal explanations. + Science + + + TVPG + + + + Strange Evidence + America's Loch Ness Monster + A strange creature similar to the Loch Ness Monster is spotted in the United States; experts analyze evidence of a giant scaly egg, and some wonder if it belongs to a dragon; birds are suddenly vaporized by an invisible death ray. + Science + + + TVPG + + + + Strange Evidence + Freak of the Deep + Deep sea explorers discover an unknown monster thousands of feet beneath the ocean; killer fog threatens a town in the American Midwest; a truck spontaneously explodes on a busy freeway. + Science + + + TVPG + + + + NASA's Unexplained Files + Ghosts on a Comet + When a Chinese moon rover breaks down, a scientist at NASA points to a mysterious material that seemed to sabotage the Apollo missions decades earlier; the Rosetta spacecraft discovers a comet that appears to be singing. + Documentary + Science + + + TVPG + + + + NASA's Unexplained Files + The Moon that Disappeared + Recently discovered documents show NASA's secret plan B for failure of the first moon landing; a Soyuz capsule carrying NASA astronaut Peggy Whitson back to Earth goes missing; NASA's Cassini mission unravels a three hundred year old. + Documentary + Science + + + TVPG + + + + How the Universe Works + Birth of the Monster Black Holes + New discoveries reveal an astonishing supermassive black hole that was born during the earliest days of the cosmos, and finding out how this giant grew so large so quickly may help to explain the very formation of the universe itself. + Science + Documentary + + + TVPG + + + + How the Universe Works + Secrets of the Sun + A brand-new NASA mission to the sun reveals cutting-edge discoveries about Earth's star; as the Parker Solar Probe dives through the sun's atmosphere, its findings challenge everything known about this strange place. + Science + Documentary + + + TVPG + + + + Black Files Declassified + Secret World of Mind Control + Many U.S. government personnel have reported sustaining unexplained and debilitating neurological injuries while working abroad; Mike Baker investigates if these invisible, mind-altering attacks are evidence of active mind-control programs worldwide. + History + Documentary + + + TVPG + + + + Black Files Declassified + Presidential Power Secrets + Presidential Emergency Action Documents have the potential to grant the U.S. president unlimited authority; Mike Baker investigates how these files are among the most secretive documents in U.S. government and what might trigger their use. + History + Documentary + + + TVPG + + + + Strange Evidence + Mystery of the Face Parasite + A man sees a doctor complaining of agonizing facial pain, and when they investigate, they discover a strange parasitic species living deep in the man's nose; footage of the grisly encounter reveals what happened next. + Science + + + TV14 + + + + Strange Evidence + Haunting on Devil Road + Two young men capture a ghostly figure that begins chasing them on a deserted road in the mountains of Jordan; experts investigate and uncover local tales of black magic practitioners and demonic entities with supernatural powers. + Science + + + TV14 + + + + Strange Evidence + The Devil's Mutant + In Egypt, a freakish animal is caught on camera, and using cutting-edge tech, experts investigate if this strange beast could explain the secrets of a satanic deity that was once believed to have been worshiped here. + Science + + + TVPG + + + + Engineering Catastrophes + Texas Oil Port Inferno + A deadly explosion strikes a major crude oil port creating an inferno of epic proportions in Corpus Christi, Texas; experts use the latest science to investigate and uncover a failed dredging operation that ruptured a propane pipeline. + Science + Documentary + + + TVPG + + + + Engineering Catastrophes + NASA Under Pressure + When catastrophe strikes Skylab, life on Earth is threatened by a space station cratering toward the planet, and NASA experts use cutting-edge technology to reveal what went wrong and if disaster can be averted. + Science + Documentary + + + TVPG + + + + Engineering Catastrophes + Ghost Town from Hell + A detonated building mysteriously refuses to fall, an American ghost town with a deadly legacy, and wind turbines on the brink of disaster are engineering disasters in need of repair, and experts reveal what went wrong and if they can be fixed. + Science + Documentary + + + TVPG + + + + Engineering Catastrophes + Chicago's Tower of Terror + When the innovative design of an iconic Chicago skyscraper leads to tragedy, experts must apply cutting-edge tech and the latest engineering methods to fix an urgent, life-or-death problem. + Science + Documentary + + + TVPG + + + + Diamond Smackdown Deals + 2023-11-04 + Sparkling diamond deals features the captivating beauty of Polki diamonds in a fusion of classic and innovative patterns; This traditional Indian jewelry comes from Mughal era; The touch of heritage and signature craftsmanship collection now live. + Shopping + + + + Super Saturday Smackdown + 2023-11-04 + The week's biggest sale is live where prices are smacked down every minute on top selling products; Steal deals on jewelry, fashion, accessories, rings, promise rings, earrings, and more. + Shopping + Reality TV + + + + Super Saturday Smackdown + 2023-11-04 + The week's biggest sale is live where prices are smacked down every minute on top selling products; Steal deals on jewelry, fashion, accessories, rings, promise rings, earrings, and more. + Shopping + Reality TV + + + + Super Saturday Smackdown + 2023-11-04 + The week's biggest sale is live where prices are smacked down every minute on top selling products; Steal deals on jewelry, fashion, accessories, rings, promise rings, earrings, and more. + Shopping + Reality TV + + + + Super Saturday Smackdown + 2023-11-04 + The week's biggest sale is live where prices are smacked down every minute on top selling products; Steal deals on jewelry, fashion, accessories, rings, promise rings, earrings, and more. + Shopping + Reality TV + + + + TLV Deals Jewelry Collection + 2023-11-05 + Shop LC is offering some of the best deals on dazzling mix jewelry collection including gold, silver and gemstone jewelry; The sale is live so don't miss this incredible opportunity to get hands on exquisite jewelry sale. + Regular + + + + Precious Gemstone Deals + 2023-11-05 + It is the millennial deal to explore the collection of high quality precious gemstones collected around the globe; Precious and ornamental natural gems, gems for the Collection, jewelry and creations now live at the sale. + Shopping + + + + Night Owl Sale + 2023-11-05 + Delight in the splendor of affordable jewelry deals; Featuring an stunning assortment of rare, genuine gems, and an mix collection of statement jewelry; It is designed to be the perfect gift or personal indulgence. + Regular + + + + Night Owl Sale + 2023-11-05 + Delight in the splendor of affordable jewelry deals; Featuring an stunning assortment of rare, genuine gems, and an mix collection of statement jewelry; It is designed to be the perfect gift or personal indulgence. + Regular + + + + Night Owl Sale + 2023-11-05 + Delight in the splendor of affordable jewelry deals; Featuring an stunning assortment of rare, genuine gems, and an mix collection of statement jewelry; It is designed to be the perfect gift or personal indulgence. + Regular + + + + Night Owl Sale + 2023-11-05 + Delight in the splendor of affordable jewelry deals; Featuring an stunning assortment of rare, genuine gems, and an mix collection of statement jewelry; It is designed to be the perfect gift or personal indulgence. + Regular + + + + Home Essentials + 2023-11-05 + Easy ways to make one's home cozier and happier; Steal deals on everyday essential products like cleaners, tools, storage containers, innovative kitchen tools and more for a comfortable home life. + Regular + + + + Home Essentials + 2023-11-05 + Easy ways to make one's home cozier and happier; Steal deals on everyday essential products like cleaners, tools, storage containers, innovative kitchen tools and more for a comfortable home life. + Regular + + + + Trendy Accessories & Handbags + 2023-11-05 + Trendy fashion accessories and handbags add extra charm to individual style; It is the time to elevate personal style by getting hands on high end branded fashion accessories and handbags at never before price in magical sale hours. + Fashion + Reality TV + + + + Golden Deals + 2023-11-05 + Be bold in gold jewelry; Shop stylish, affordable, and expertly crafted gold jewelry collection at the best price in today's leading value deals; Exclusive gold sale on timeless pieces curated from on trend and classic theme to best suit the wearer. + Regular + + + + Golden Deals + 2023-11-05 + Be bold in gold jewelry; Shop stylish, affordable, and expertly crafted gold jewelry collection at the best price in today's leading value deals; Exclusive gold sale on timeless pieces curated from on trend and classic theme to best suit the wearer. + Regular + + + + Golden Deals + 2023-11-05 + Be bold in gold jewelry; Shop stylish, affordable, and expertly crafted gold jewelry collection at the best price in today's leading value deals; Exclusive gold sale on timeless pieces curated from on trend and classic theme to best suit the wearer. + Regular + + + + Giuseppe Perez Legacy Collection + 2023-11-05 + Shop LC Live from Italy presents an exquisite collection of Giuseppe Perez legacy jewelry designs; The collection crafted for those who appreciate timeless elegance in every piece; Get exquisite jewelry and enduring beauty at the best price. + Shopping + + + + Giuseppe Perez Legacy Collection + 2023-11-05 + Shop LC Live from Italy presents an exquisite collection of Giuseppe Perez legacy jewelry designs; The collection crafted for those who appreciate timeless elegance in every piece; Get exquisite jewelry and enduring beauty at the best price. + Shopping + + + + Giuseppe Perez Legacy Collection + 2023-11-05 + Shop LC Live from Italy presents an exquisite collection of Giuseppe Perez legacy jewelry designs; The collection crafted for those who appreciate timeless elegance in every piece; Get exquisite jewelry and enduring beauty at the best price. + Shopping + + + + Giuseppe Perez Legacy Collection + 2023-11-05 + Shop LC Live from Italy presents an exquisite collection of Giuseppe Perez legacy jewelry designs; The collection crafted for those who appreciate timeless elegance in every piece; Get exquisite jewelry and enduring beauty at the best price. + Shopping + + + + Rare Collector Gemstones + 2023-11-05 + The magic of rare gemstone collections from around the globe that display magnificent array of colors; Create one-of-a-kind jewelry pieces using high-quality loose gems, available at discounted rates; Explore deals on healing crystals. + Fashion + Reality TV + + + + Rare Collector Gemstones + 2023-11-05 + The magic of rare gemstone collections from around the globe that display magnificent array of colors; Create one-of-a-kind jewelry pieces using high-quality loose gems, available at discounted rates; Explore deals on healing crystals. + Fashion + Reality TV + + + + Precious Gemstone Deals + 2023-11-05 + It is the millennial deal to explore the collection of high quality precious gemstones collected around the globe; Precious and ornamental natural gems, gems for the Collection, jewelry and creations now live at the sale. + Shopping + + + + Precious Gemstone Deals + 2023-11-05 + It is the millennial deal to explore the collection of high quality precious gemstones collected around the globe; Precious and ornamental natural gems, gems for the Collection, jewelry and creations now live at the sale. + Shopping + + + + Marropino Morganite Jewelry + 2023-11-05 + It is a window to the subtle beauty of nature reflecting signature shades of pink to rare pinkish peach; The vermeil rose gold complements the morganite's soft pink tones, making it the perfect first choice for women's rings, earrings, and pendants. + Shopping + + + + Marropino Morganite Jewelry + 2023-11-05 + It is a window to the subtle beauty of nature reflecting signature shades of pink to rare pinkish peach; The vermeil rose gold complements the morganite's soft pink tones, making it the perfect first choice for women's rings, earrings, and pendants. + Shopping + + + + Marropino Morganite Jewelry + 2023-11-05 + It is a window to the subtle beauty of nature reflecting signature shades of pink to rare pinkish peach; The vermeil rose gold complements the morganite's soft pink tones, making it the perfect first choice for women's rings, earrings, and pendants. + Shopping + + + + Marropino Morganite Jewelry + 2023-11-05 + It is a window to the subtle beauty of nature reflecting signature shades of pink to rare pinkish peach; The vermeil rose gold complements the morganite's soft pink tones, making it the perfect first choice for women's rings, earrings, and pendants. + Shopping + + + + TLV Deals Jewelry Collection + 2023-11-06 + Shop LC is offering some of the best deals on dazzling mix jewelry collection including gold, silver and gemstone jewelry; The sale is live so don't miss this incredible opportunity to get hands on exquisite jewelry sale. + Regular + + + + Night Owl Jewelry Deals + 2023-11-06 + Delight in the splendor of affordable jewelry deals; Featuring an stunning assortment of rare, genuine gems, and an mix collection of statement jewelry; It is designed to be the perfect gift or personal indulgence. + Shopping + + + + Night Owl Jewelry Deals + 2023-11-06 + Delight in the splendor of affordable jewelry deals; Featuring an stunning assortment of rare, genuine gems, and an mix collection of statement jewelry; It is designed to be the perfect gift or personal indulgence. + Shopping + + + + Night Owl Jewelry Deals + 2023-11-06 + Delight in the splendor of affordable jewelry deals; Featuring an stunning assortment of rare, genuine gems, and an mix collection of statement jewelry; It is designed to be the perfect gift or personal indulgence. + Shopping + + + + Night Owl Jewelry Deals + 2023-11-06 + Delight in the splendor of affordable jewelry deals; Featuring an stunning assortment of rare, genuine gems, and an mix collection of statement jewelry; It is designed to be the perfect gift or personal indulgence. + Shopping + + + + Night Owl Jewelry Deals + 2023-11-06 + Delight in the splendor of affordable jewelry deals; Featuring an stunning assortment of rare, genuine gems, and an mix collection of statement jewelry; It is designed to be the perfect gift or personal indulgence. + Shopping + + + + Sunrise Rapid Jewelry Deals + 2023-11-06 + Sunrise super value jewelry hours are back; It is the time to get hands on high quality rare gemstone jewelry, beautifully hand crafted antique jewelry of gold and silver in flash sales at the best price. + Shopping + + + + Sunrise Deals + 2023-11-06 + Sunrise super value hours are back; It is the time to get hands on high quality essentials, accessories, beauty products, rare jewelry, household products and more at never before price; Sunrise summer hours are live now. + Regular + + + + Sunrise Deals + 2023-11-06 + Sunrise super value hours are back; It is the time to get hands on high quality essentials, accessories, beauty products, rare jewelry, household products and more at never before price; Sunrise summer hours are live now. + Regular + + + + Monday Morning Madness Jewelry Deals + 2023-11-06 + The latest designer and high end quality jewelry exclusively curated for Shop LC shoppers to enjoy; The Monday morning madness deal for all early bird shoppers to get hands on one of a kind rare jewelry collection. + Shopping + + + + Monday Morning Madness Jewelry Deals + 2023-11-06 + The latest designer and high end quality jewelry exclusively curated for Shop LC shoppers to enjoy; The Monday morning madness deal for all early bird shoppers to get hands on one of a kind rare jewelry collection. + Shopping + + + + Monday Morning Madness Jewelry Deals + 2023-11-06 + The latest designer and high end quality jewelry exclusively curated for Shop LC shoppers to enjoy; The Monday morning madness deal for all early bird shoppers to get hands on one of a kind rare jewelry collection. + Shopping + + + + Precious Gemstone Jewelry Deals + 2023-11-06 + Precious gemstone elegance for every special moment in dazzling deals; It's time to mark unforgettable moments with rare gemstone radiance at never before price; Limited-time offers on stunning gemstone jewelry. + Shopping + + + + Precious Gemstone Jewelry Deals + 2023-11-06 + Precious gemstone elegance for every special moment in dazzling deals; It's time to mark unforgettable moments with rare gemstone radiance at never before price; Limited-time offers on stunning gemstone jewelry. + Shopping + + + + Precious Gemstone Jewelry Deals + 2023-11-06 + Precious gemstone elegance for every special moment in dazzling deals; It's time to mark unforgettable moments with rare gemstone radiance at never before price; Limited-time offers on stunning gemstone jewelry. + Shopping + + + + Precious Gemstone Jewelry Deals + 2023-11-06 + Precious gemstone elegance for every special moment in dazzling deals; It's time to mark unforgettable moments with rare gemstone radiance at never before price; Limited-time offers on stunning gemstone jewelry. + Shopping + + + + Star Blue Sapphire Jewelry + 2023-11-06 + The elusive and earthy feel of star sapphires is a wonder to behold; The lovely blue star sapphire is widely used in making jewelry due to its exquisite property of displaying a starlike effect called asterism; Rare gemstone jewelry available now. + Fashion + Reality TV + + + + Star Blue Sapphire Jewelry + 2023-11-06 + The elusive and earthy feel of star sapphires is a wonder to behold; The lovely blue star sapphire is widely used in making jewelry due to its exquisite property of displaying a starlike effect called asterism; Rare gemstone jewelry available now. + Fashion + Reality TV + + + + Star Blue Sapphire Jewelry + 2023-11-06 + The elusive and earthy feel of star sapphires is a wonder to behold; The lovely blue star sapphire is widely used in making jewelry due to its exquisite property of displaying a starlike effect called asterism; Rare gemstone jewelry available now. + Fashion + Reality TV + + + + Star Blue Sapphire Jewelry + 2023-11-06 + The elusive and earthy feel of star sapphires is a wonder to behold; The lovely blue star sapphire is widely used in making jewelry due to its exquisite property of displaying a starlike effect called asterism; Rare gemstone jewelry available now. + Fashion + Reality TV + + + + Tony Thunder Jewelry Deals + 2023-11-06 + Tony Diniz, an entertainer and popular TV shopping host presents special deals on the topselling products on Shop LC; Best price deals on gemstones and luxury jewelry collections. + Shopping + + + + Tony Thunder Jewelry Deals + 2023-11-06 + Tony Diniz, an entertainer and popular TV shopping host presents special deals on the topselling products on Shop LC; Best price deals on gemstones and luxury jewelry collections. + Shopping + + + + Tony Thunder Jewelry Deals + 2023-11-06 + Tony Diniz, an entertainer and popular TV shopping host presents special deals on the topselling products on Shop LC; Best price deals on gemstones and luxury jewelry collections. + Shopping + + + + Precious Gemstone Jewelry Deals + 2023-11-06 + Precious gemstone elegance for every special moment in dazzling deals; It's time to mark unforgettable moments with rare gemstone radiance at never before price; Limited-time offers on stunning gemstone jewelry. + Shopping + + + + TLV Deals Lifestyle Collection + 2023-11-07 + Shop LC is offering some of the best deals on lifestyle collection; The sale is live so don't miss this incredible opportunity to get hands on trendy fashion and lifestyle essentials. + Shopping + + + + Night Owl Jewelry Deals Under $20 + 2023-11-07 + Delight in the splendor of affordable designer jewelry deals under $20; Featuring a stunning assortment of rare, genuine gemstone jewelry, and a mix collection of statement jewelry with traditional to contemporary designs. + Shopping + + + + Night Owl Jewelry Deals Under $20 + 2023-11-07 + Delight in the splendor of affordable designer jewelry deals under $20; Featuring a stunning assortment of rare, genuine gemstone jewelry, and a mix collection of statement jewelry with traditional to contemporary designs. + Shopping + + + + Night Owl Jewelry Deals Under $20 + 2023-11-07 + Delight in the splendor of affordable designer jewelry deals under $20; Featuring a stunning assortment of rare, genuine gemstone jewelry, and a mix collection of statement jewelry with traditional to contemporary designs. + Shopping + + + + Night Owl Jewelry Deals Under $20 + 2023-11-07 + Delight in the splendor of affordable designer jewelry deals under $20; Featuring a stunning assortment of rare, genuine gemstone jewelry, and a mix collection of statement jewelry with traditional to contemporary designs. + Shopping + + + + Night Owl Jewelry Deals Under $20 + 2023-11-07 + Delight in the splendor of affordable designer jewelry deals under $20; Featuring a stunning assortment of rare, genuine gemstone jewelry, and a mix collection of statement jewelry with traditional to contemporary designs. + Shopping + + + + Sunrise Rapid Jewelry Deals Under $20 + 2023-11-07 + Sunrise super value jewelry hours are back; It is the best hour to get hands on rare gemstone jewelry, beautifully hand crafted antique jewelry, and premium gold & silver collection in a flash sale of under $20. + Shopping + + + + Home Style Deals Under $20 + 2023-11-07 + The high quality home essentials meets economical under $20 prices only at the Shop LC's homestyle hours; The thoughtful collection gives decorative freedom in every room of home; Exclusive savings on décor items, accessories and essentials. + Fashion + Reality TV + + + + Home Style Deals Under $20 + 2023-11-07 + The high quality home essentials meets economical under $20 prices only at the Shop LC's homestyle hours; The thoughtful collection gives decorative freedom in every room of home; Exclusive savings on décor items, accessories and essentials. + Fashion + Reality TV + + + + Fashion & Accessories Under $20 + 2023-11-07 + Trendy fashion apparels and accessories add extra charm to individual style; The best hour to elevate personal style by owning fashion forward branded accessories and apparel of label quality under $20 deal at Shop LC's exclusive show. + Shopping + + + + Home Style Deals Under $20 + 2023-11-07 + The high quality home essentials meets economical under $20 prices only at the Shop LC's homestyle hours; The thoughtful collection gives decorative freedom in every room of home; Exclusive savings on décor items, accessories and essentials. + Fashion + Reality TV + + + + Home Style Deals Under $20 + 2023-11-07 + The high quality home essentials meets economical under $20 prices only at the Shop LC's homestyle hours; The thoughtful collection gives decorative freedom in every room of home; Exclusive savings on décor items, accessories and essentials. + Fashion + Reality TV + + + + Beauty Deals Under $20 + 2023-11-07 + Discover the best beauty ranges in the beauty hour under $20 exclusive at Shop LC; The high quality beauty products includes beauty enhancer tools, skincare products with incredible formulas, and more; It's time to pamper and glow skin effortlessly. + Shopping + + + + Beauty Deals Under $20 + 2023-11-07 + Discover the best beauty ranges in the beauty hour under $20 exclusive at Shop LC; The high quality beauty products includes beauty enhancer tools, skincare products with incredible formulas, and more; It's time to pamper and glow skin effortlessly. + Shopping + + + + Home Style Deals Under $20 + 2023-11-07 + The high quality home essentials meets economical under $20 prices only at the Shop LC's homestyle hours; The thoughtful collection gives decorative freedom in every room of home; Exclusive savings on décor items, accessories and essentials. + Fashion + Reality TV + + + + Home Style Deals Under $20 + 2023-11-07 + The high quality home essentials meets economical under $20 prices only at the Shop LC's homestyle hours; The thoughtful collection gives decorative freedom in every room of home; Exclusive savings on décor items, accessories and essentials. + Fashion + Reality TV + + + + Under $20 Deals + 2023-11-07 + Unbelievable savings, unforgettable finds; A treasure trove of affordable delights just under $20; It's time to grab delightful steals on beautiful jewelry, trendy new accessories, skincare products, home décor or more in exclusive deal hours. + Fashion + Reality TV + + + + Under $20 Deals + 2023-11-07 + Unbelievable savings, unforgettable finds; A treasure trove of affordable delights just under $20; It's time to grab delightful steals on beautiful jewelry, trendy new accessories, skincare products, home décor or more in exclusive deal hours. + Fashion + Reality TV + + + + Under $20 Deals + 2023-11-07 + Unbelievable savings, unforgettable finds; A treasure trove of affordable delights just under $20; It's time to grab delightful steals on beautiful jewelry, trendy new accessories, skincare products, home décor or more in exclusive deal hours. + Fashion + Reality TV + + + + Under $20 Deals + 2023-11-07 + Unbelievable savings, unforgettable finds; A treasure trove of affordable delights just under $20; It's time to grab delightful steals on beautiful jewelry, trendy new accessories, skincare products, home décor or more in exclusive deal hours. + Fashion + Reality TV + + + + Precious Gemstone Deals + 2023-11-07 + It is the millennial deal to explore the collection of high quality precious gemstones collected around the globe; Precious and ornamental natural gems, gems for the Collection, jewelry and creations now live at the sale. + Shopping + + + + Precious Gemstone Deals + 2023-11-07 + It is the millennial deal to explore the collection of high quality precious gemstones collected around the globe; Precious and ornamental natural gems, gems for the Collection, jewelry and creations now live at the sale. + Shopping + + + + Precious Gemstone Deals + 2023-11-07 + It is the millennial deal to explore the collection of high quality precious gemstones collected around the globe; Precious and ornamental natural gems, gems for the Collection, jewelry and creations now live at the sale. + Shopping + + + + Precious Gemstone Deals + 2023-11-07 + It is the millennial deal to explore the collection of high quality precious gemstones collected around the globe; Precious and ornamental natural gems, gems for the Collection, jewelry and creations now live at the sale. + Shopping + + + + TLV Deals Jewelry Collection + 2023-11-08 + Shop LC is offering some of the best deals on dazzling mix jewelry collection including gold, silver and gemstone jewelry; The sale is live so don't miss this incredible opportunity to get hands on exquisite jewelry sale. + Regular + + + + Night Owl Sale + 2023-11-08 + Delight in the splendor of affordable jewelry deals; Featuring an stunning assortment of rare, genuine gems, and an mix collection of statement jewelry; It is designed to be the perfect gift or personal indulgence. + Regular + + + + Night Owl Sale + 2023-11-08 + Delight in the splendor of affordable jewelry deals; Featuring an stunning assortment of rare, genuine gems, and an mix collection of statement jewelry; It is designed to be the perfect gift or personal indulgence. + Regular + + + + Night Owl Sale + 2023-11-08 + Delight in the splendor of affordable jewelry deals; Featuring an stunning assortment of rare, genuine gems, and an mix collection of statement jewelry; It is designed to be the perfect gift or personal indulgence. + Regular + + + + Night Owl Sale + 2023-11-08 + Delight in the splendor of affordable jewelry deals; Featuring an stunning assortment of rare, genuine gems, and an mix collection of statement jewelry; It is designed to be the perfect gift or personal indulgence. + Regular + + + + Night Owl Sale + 2023-11-08 + Delight in the splendor of affordable jewelry deals; Featuring an stunning assortment of rare, genuine gems, and an mix collection of statement jewelry; It is designed to be the perfect gift or personal indulgence. + Regular + + + + Sunrise Rapid Deals + 2023-11-08 + Sunrise super value jewelry hours are back; It is the time to get hands on high quality rare gemstone jewelry, beautifully hand crafted antique jewelry of gold and silver in flash sales at the best price. + Regular + + + + Sunrise Deals + 2023-11-08 + Sunrise super value hours are back; It is the time to get hands on high quality essentials, accessories, beauty products, rare jewelry, household products and more at never before price; Sunrise summer hours are live now. + Regular + + + + Sunrise Deals + 2023-11-08 + Sunrise super value hours are back; It is the time to get hands on high quality essentials, accessories, beauty products, rare jewelry, household products and more at never before price; Sunrise summer hours are live now. + Regular + + + + Precious Gemstone Deals + 2023-11-08 + It is the millennial deal to explore the collection of high quality precious gemstones collected around the globe; Precious and ornamental natural gems, gems for the Collection, jewelry and creations now live at the sale. + Shopping + + + + Precious Gemstone Deals + 2023-11-08 + It is the millennial deal to explore the collection of high quality precious gemstones collected around the globe; Precious and ornamental natural gems, gems for the Collection, jewelry and creations now live at the sale. + Shopping + + + + Precious Gemstone Deals + 2023-11-08 + It is the millennial deal to explore the collection of high quality precious gemstones collected around the globe; Precious and ornamental natural gems, gems for the Collection, jewelry and creations now live at the sale. + Shopping + + + + Bali Silver Legacy Deals + 2023-11-08 + Bali Legacy is influenced by the captivating culture and customs of the Balinese and Javanese people;The stunning Bali Silver jewelry collection beautifully captures the intricate artistry of the Bali natives, showcasing a range of exquisite designs. + Regular + + + + Bali Silver Legacy Deals + 2023-11-08 + Bali Legacy is influenced by the captivating culture and customs of the Balinese and Javanese people;The stunning Bali Silver jewelry collection beautifully captures the intricate artistry of the Bali natives, showcasing a range of exquisite designs. + Regular + + + + Bali Silver Legacy Deals + 2023-11-08 + Bali Legacy is influenced by the captivating culture and customs of the Balinese and Javanese people;The stunning Bali Silver jewelry collection beautifully captures the intricate artistry of the Bali natives, showcasing a range of exquisite designs. + Regular + + + + Bali Silver Legacy Deals + 2023-11-08 + Bali Legacy is influenced by the captivating culture and customs of the Balinese and Javanese people;The stunning Bali Silver jewelry collection beautifully captures the intricate artistry of the Bali natives, showcasing a range of exquisite designs. + Regular + + + + Red Rose Apatite Jewelry + 2023-11-08 + It is a pristine and rare variety of apatite; Rose apatite exhibits a stunning range of colors, including shades of pink and red; The red rose apatite adds charm and exclusivity to any jewelry piece; Add irresistible beauty to a jewelry collection. + Shopping + + + + Red Rose Apatite Jewelry + 2023-11-08 + It is a pristine and rare variety of apatite; Rose apatite exhibits a stunning range of colors, including shades of pink and red; The red rose apatite adds charm and exclusivity to any jewelry piece; Add irresistible beauty to a jewelry collection. + Shopping + + + + Diamond Smackdown Deals + 2023-11-04 + Sparkling diamond deals features the captivating beauty of Polki diamonds in a fusion of classic and innovative patterns; This traditional Indian jewelry comes from Mughal era; The touch of heritage and signature craftsmanship collection now live. + Shopping + + + + Super Saturday Smackdown + 2023-11-04 + The week's biggest sale is live where prices are smacked down every minute on top selling products; Steal deals on jewelry, fashion, accessories, rings, promise rings, earrings, and more. + Shopping + Reality TV + + + + Super Saturday Smackdown + 2023-11-04 + The week's biggest sale is live where prices are smacked down every minute on top selling products; Steal deals on jewelry, fashion, accessories, rings, promise rings, earrings, and more. + Shopping + Reality TV + + + + Super Saturday Smackdown + 2023-11-04 + The week's biggest sale is live where prices are smacked down every minute on top selling products; Steal deals on jewelry, fashion, accessories, rings, promise rings, earrings, and more. + Shopping + Reality TV + + + + Super Saturday Smackdown + 2023-11-04 + The week's biggest sale is live where prices are smacked down every minute on top selling products; Steal deals on jewelry, fashion, accessories, rings, promise rings, earrings, and more. + Shopping + Reality TV + + + + TLV Deals Jewelry Collection + 2023-11-05 + Shop LC is offering some of the best deals on dazzling mix jewelry collection including gold, silver and gemstone jewelry; The sale is live so don't miss this incredible opportunity to get hands on exquisite jewelry sale. + Regular + + + + Precious Gemstone Deals + 2023-11-05 + It is the millennial deal to explore the collection of high quality precious gemstones collected around the globe; Precious and ornamental natural gems, gems for the Collection, jewelry and creations now live at the sale. + Shopping + + + + Night Owl Sale + 2023-11-05 + Delight in the splendor of affordable jewelry deals; Featuring an stunning assortment of rare, genuine gems, and an mix collection of statement jewelry; It is designed to be the perfect gift or personal indulgence. + Regular + + + + Night Owl Sale + 2023-11-05 + Delight in the splendor of affordable jewelry deals; Featuring an stunning assortment of rare, genuine gems, and an mix collection of statement jewelry; It is designed to be the perfect gift or personal indulgence. + Regular + + + + Night Owl Sale + 2023-11-05 + Delight in the splendor of affordable jewelry deals; Featuring an stunning assortment of rare, genuine gems, and an mix collection of statement jewelry; It is designed to be the perfect gift or personal indulgence. + Regular + + + + Night Owl Sale + 2023-11-05 + Delight in the splendor of affordable jewelry deals; Featuring an stunning assortment of rare, genuine gems, and an mix collection of statement jewelry; It is designed to be the perfect gift or personal indulgence. + Regular + + + + Home Essentials + 2023-11-05 + Easy ways to make one's home cozier and happier; Steal deals on everyday essential products like cleaners, tools, storage containers, innovative kitchen tools and more for a comfortable home life. + Regular + + + + Home Essentials + 2023-11-05 + Easy ways to make one's home cozier and happier; Steal deals on everyday essential products like cleaners, tools, storage containers, innovative kitchen tools and more for a comfortable home life. + Regular + + + + Trendy Accessories & Handbags + 2023-11-05 + Trendy fashion accessories and handbags add extra charm to individual style; It is the time to elevate personal style by getting hands on high end branded fashion accessories and handbags at never before price in magical sale hours. + Fashion + Reality TV + + + + Golden Deals + 2023-11-05 + Be bold in gold jewelry; Shop stylish, affordable, and expertly crafted gold jewelry collection at the best price in today's leading value deals; Exclusive gold sale on timeless pieces curated from on trend and classic theme to best suit the wearer. + Regular + + + + Golden Deals + 2023-11-05 + Be bold in gold jewelry; Shop stylish, affordable, and expertly crafted gold jewelry collection at the best price in today's leading value deals; Exclusive gold sale on timeless pieces curated from on trend and classic theme to best suit the wearer. + Regular + + + + Golden Deals + 2023-11-05 + Be bold in gold jewelry; Shop stylish, affordable, and expertly crafted gold jewelry collection at the best price in today's leading value deals; Exclusive gold sale on timeless pieces curated from on trend and classic theme to best suit the wearer. + Regular + + + + Giuseppe Perez Legacy Collection + 2023-11-05 + Shop LC Live from Italy presents an exquisite collection of Giuseppe Perez legacy jewelry designs; The collection crafted for those who appreciate timeless elegance in every piece; Get exquisite jewelry and enduring beauty at the best price. + Shopping + + + + Giuseppe Perez Legacy Collection + 2023-11-05 + Shop LC Live from Italy presents an exquisite collection of Giuseppe Perez legacy jewelry designs; The collection crafted for those who appreciate timeless elegance in every piece; Get exquisite jewelry and enduring beauty at the best price. + Shopping + + + + Giuseppe Perez Legacy Collection + 2023-11-05 + Shop LC Live from Italy presents an exquisite collection of Giuseppe Perez legacy jewelry designs; The collection crafted for those who appreciate timeless elegance in every piece; Get exquisite jewelry and enduring beauty at the best price. + Shopping + + + + Giuseppe Perez Legacy Collection + 2023-11-05 + Shop LC Live from Italy presents an exquisite collection of Giuseppe Perez legacy jewelry designs; The collection crafted for those who appreciate timeless elegance in every piece; Get exquisite jewelry and enduring beauty at the best price. + Shopping + + + + Rare Collector Gemstones + 2023-11-05 + The magic of rare gemstone collections from around the globe that display magnificent array of colors; Create one-of-a-kind jewelry pieces using high-quality loose gems, available at discounted rates; Explore deals on healing crystals. + Fashion + Reality TV + + + + Rare Collector Gemstones + 2023-11-05 + The magic of rare gemstone collections from around the globe that display magnificent array of colors; Create one-of-a-kind jewelry pieces using high-quality loose gems, available at discounted rates; Explore deals on healing crystals. + Fashion + Reality TV + + + + Precious Gemstone Deals + 2023-11-05 + It is the millennial deal to explore the collection of high quality precious gemstones collected around the globe; Precious and ornamental natural gems, gems for the Collection, jewelry and creations now live at the sale. + Shopping + + + + Precious Gemstone Deals + 2023-11-05 + It is the millennial deal to explore the collection of high quality precious gemstones collected around the globe; Precious and ornamental natural gems, gems for the Collection, jewelry and creations now live at the sale. + Shopping + + + + Marropino Morganite Jewelry + 2023-11-05 + It is a window to the subtle beauty of nature reflecting signature shades of pink to rare pinkish peach; The vermeil rose gold complements the morganite's soft pink tones, making it the perfect first choice for women's rings, earrings, and pendants. + Shopping + + + + Marropino Morganite Jewelry + 2023-11-05 + It is a window to the subtle beauty of nature reflecting signature shades of pink to rare pinkish peach; The vermeil rose gold complements the morganite's soft pink tones, making it the perfect first choice for women's rings, earrings, and pendants. + Shopping + + + + Marropino Morganite Jewelry + 2023-11-05 + It is a window to the subtle beauty of nature reflecting signature shades of pink to rare pinkish peach; The vermeil rose gold complements the morganite's soft pink tones, making it the perfect first choice for women's rings, earrings, and pendants. + Shopping + + + + Marropino Morganite Jewelry + 2023-11-05 + It is a window to the subtle beauty of nature reflecting signature shades of pink to rare pinkish peach; The vermeil rose gold complements the morganite's soft pink tones, making it the perfect first choice for women's rings, earrings, and pendants. + Shopping + + + + TLV Deals Jewelry Collection + 2023-11-06 + Shop LC is offering some of the best deals on dazzling mix jewelry collection including gold, silver and gemstone jewelry; The sale is live so don't miss this incredible opportunity to get hands on exquisite jewelry sale. + Regular + + + + Night Owl Jewelry Deals + 2023-11-06 + Delight in the splendor of affordable jewelry deals; Featuring an stunning assortment of rare, genuine gems, and an mix collection of statement jewelry; It is designed to be the perfect gift or personal indulgence. + Shopping + + + + Night Owl Jewelry Deals + 2023-11-06 + Delight in the splendor of affordable jewelry deals; Featuring an stunning assortment of rare, genuine gems, and an mix collection of statement jewelry; It is designed to be the perfect gift or personal indulgence. + Shopping + + + + Night Owl Jewelry Deals + 2023-11-06 + Delight in the splendor of affordable jewelry deals; Featuring an stunning assortment of rare, genuine gems, and an mix collection of statement jewelry; It is designed to be the perfect gift or personal indulgence. + Shopping + + + + Night Owl Jewelry Deals + 2023-11-06 + Delight in the splendor of affordable jewelry deals; Featuring an stunning assortment of rare, genuine gems, and an mix collection of statement jewelry; It is designed to be the perfect gift or personal indulgence. + Shopping + + + + Night Owl Jewelry Deals + 2023-11-06 + Delight in the splendor of affordable jewelry deals; Featuring an stunning assortment of rare, genuine gems, and an mix collection of statement jewelry; It is designed to be the perfect gift or personal indulgence. + Shopping + + + + Sunrise Rapid Jewelry Deals + 2023-11-06 + Sunrise super value jewelry hours are back; It is the time to get hands on high quality rare gemstone jewelry, beautifully hand crafted antique jewelry of gold and silver in flash sales at the best price. + Shopping + + + + Sunrise Deals + 2023-11-06 + Sunrise super value hours are back; It is the time to get hands on high quality essentials, accessories, beauty products, rare jewelry, household products and more at never before price; Sunrise summer hours are live now. + Regular + + + + Richard French Live + Regular + + + + Animal Rescue + Puppies stuck in a rock formation; a bunny with a large tumor; pet alert signs. + Reality TV + Animals + + + TVG + + + + Missing + Missing persons cases come from all over the United States. + Instructional + + + TVG + + + + Monday Morning Madness Jewelry Deals + 2023-11-06 + The latest designer and high end quality jewelry exclusively curated for Shop LC shoppers to enjoy; The Monday morning madness deal for all early bird shoppers to get hands on one of a kind rare jewelry collection. + Shopping + + + + Monday Morning Madness Jewelry Deals + 2023-11-06 + The latest designer and high end quality jewelry exclusively curated for Shop LC shoppers to enjoy; The Monday morning madness deal for all early bird shoppers to get hands on one of a kind rare jewelry collection. + Shopping + + + + Precious Gemstone Jewelry Deals + 2023-11-06 + Precious gemstone elegance for every special moment in dazzling deals; It's time to mark unforgettable moments with rare gemstone radiance at never before price; Limited-time offers on stunning gemstone jewelry. + Shopping + + + + Precious Gemstone Jewelry Deals + 2023-11-06 + Precious gemstone elegance for every special moment in dazzling deals; It's time to mark unforgettable moments with rare gemstone radiance at never before price; Limited-time offers on stunning gemstone jewelry. + Shopping + + + + Precious Gemstone Jewelry Deals + 2023-11-06 + Precious gemstone elegance for every special moment in dazzling deals; It's time to mark unforgettable moments with rare gemstone radiance at never before price; Limited-time offers on stunning gemstone jewelry. + Shopping + + + + Precious Gemstone Jewelry Deals + 2023-11-06 + Precious gemstone elegance for every special moment in dazzling deals; It's time to mark unforgettable moments with rare gemstone radiance at never before price; Limited-time offers on stunning gemstone jewelry. + Shopping + + + + Star Blue Sapphire Jewelry + 2023-11-06 + The elusive and earthy feel of star sapphires is a wonder to behold; The lovely blue star sapphire is widely used in making jewelry due to its exquisite property of displaying a starlike effect called asterism; Rare gemstone jewelry available now. + Fashion + Reality TV + + + + Star Blue Sapphire Jewelry + 2023-11-06 + The elusive and earthy feel of star sapphires is a wonder to behold; The lovely blue star sapphire is widely used in making jewelry due to its exquisite property of displaying a starlike effect called asterism; Rare gemstone jewelry available now. + Fashion + Reality TV + + + + Star Blue Sapphire Jewelry + 2023-11-06 + The elusive and earthy feel of star sapphires is a wonder to behold; The lovely blue star sapphire is widely used in making jewelry due to its exquisite property of displaying a starlike effect called asterism; Rare gemstone jewelry available now. + Fashion + Reality TV + + + + Star Blue Sapphire Jewelry + 2023-11-06 + The elusive and earthy feel of star sapphires is a wonder to behold; The lovely blue star sapphire is widely used in making jewelry due to its exquisite property of displaying a starlike effect called asterism; Rare gemstone jewelry available now. + Fashion + Reality TV + + + + Tony Thunder Jewelry Deals + 2023-11-06 + Tony Diniz, an entertainer and popular TV shopping host presents special deals on the topselling products on Shop LC; Best price deals on gemstones and luxury jewelry collections. + Shopping + + + + Tony Thunder Jewelry Deals + 2023-11-06 + Tony Diniz, an entertainer and popular TV shopping host presents special deals on the topselling products on Shop LC; Best price deals on gemstones and luxury jewelry collections. + Shopping + + + + Tony Thunder Jewelry Deals + 2023-11-06 + Tony Diniz, an entertainer and popular TV shopping host presents special deals on the topselling products on Shop LC; Best price deals on gemstones and luxury jewelry collections. + Shopping + + + + Precious Gemstone Jewelry Deals + 2023-11-06 + Precious gemstone elegance for every special moment in dazzling deals; It's time to mark unforgettable moments with rare gemstone radiance at never before price; Limited-time offers on stunning gemstone jewelry. + Shopping + + + + TLV Deals Lifestyle Collection + 2023-11-07 + Shop LC is offering some of the best deals on lifestyle collection; The sale is live so don't miss this incredible opportunity to get hands on trendy fashion and lifestyle essentials. + Shopping + + + + Night Owl Jewelry Deals Under $20 + 2023-11-07 + Delight in the splendor of affordable designer jewelry deals under $20; Featuring a stunning assortment of rare, genuine gemstone jewelry, and a mix collection of statement jewelry with traditional to contemporary designs. + Shopping + + + + Night Owl Jewelry Deals Under $20 + 2023-11-07 + Delight in the splendor of affordable designer jewelry deals under $20; Featuring a stunning assortment of rare, genuine gemstone jewelry, and a mix collection of statement jewelry with traditional to contemporary designs. + Shopping + + + + Night Owl Jewelry Deals Under $20 + 2023-11-07 + Delight in the splendor of affordable designer jewelry deals under $20; Featuring a stunning assortment of rare, genuine gemstone jewelry, and a mix collection of statement jewelry with traditional to contemporary designs. + Shopping + + + + Night Owl Jewelry Deals Under $20 + 2023-11-07 + Delight in the splendor of affordable designer jewelry deals under $20; Featuring a stunning assortment of rare, genuine gemstone jewelry, and a mix collection of statement jewelry with traditional to contemporary designs. + Shopping + + + + Night Owl Jewelry Deals Under $20 + 2023-11-07 + Delight in the splendor of affordable designer jewelry deals under $20; Featuring a stunning assortment of rare, genuine gemstone jewelry, and a mix collection of statement jewelry with traditional to contemporary designs. + Shopping + + + + Sunrise Rapid Jewelry Deals Under $20 + 2023-11-07 + Sunrise super value jewelry hours are back; It is the best hour to get hands on rare gemstone jewelry, beautifully hand crafted antique jewelry, and premium gold & silver collection in a flash sale of under $20. + Shopping + + + + Home Style Deals Under $20 + 2023-11-07 + The high quality home essentials meets economical under $20 prices only at the Shop LC's homestyle hours; The thoughtful collection gives decorative freedom in every room of home; Exclusive savings on décor items, accessories and essentials. + Fashion + Reality TV + + + + Richard French Live + Regular + + + + Dog Tales + Sri Lankan veterinarians learn new techniques; the American cocker spaniel. + News Magazine + Animals + + + TVG + + + + DragonFlyTV + Learning about G-forces. + Children + Instructional + + + TVG + + + + Home Style Deals Under $20 + 2023-11-07 + The high quality home essentials meets economical under $20 prices only at the Shop LC's homestyle hours; The thoughtful collection gives decorative freedom in every room of home; Exclusive savings on décor items, accessories and essentials. + Fashion + Reality TV + + + + Home Style Deals Under $20 + 2023-11-07 + The high quality home essentials meets economical under $20 prices only at the Shop LC's homestyle hours; The thoughtful collection gives decorative freedom in every room of home; Exclusive savings on décor items, accessories and essentials. + Fashion + Reality TV + + + + Beauty Deals Under $20 + 2023-11-07 + Discover the best beauty ranges in the beauty hour under $20 exclusive at Shop LC; The high quality beauty products includes beauty enhancer tools, skincare products with incredible formulas, and more; It's time to pamper and glow skin effortlessly. + Shopping + + + + Beauty Deals Under $20 + 2023-11-07 + Discover the best beauty ranges in the beauty hour under $20 exclusive at Shop LC; The high quality beauty products includes beauty enhancer tools, skincare products with incredible formulas, and more; It's time to pamper and glow skin effortlessly. + Shopping + + + + Home Style Deals Under $20 + 2023-11-07 + The high quality home essentials meets economical under $20 prices only at the Shop LC's homestyle hours; The thoughtful collection gives decorative freedom in every room of home; Exclusive savings on décor items, accessories and essentials. + Fashion + Reality TV + + + + Home Style Deals Under $20 + 2023-11-07 + The high quality home essentials meets economical under $20 prices only at the Shop LC's homestyle hours; The thoughtful collection gives decorative freedom in every room of home; Exclusive savings on décor items, accessories and essentials. + Fashion + Reality TV + + + + Under $20 Deals + 2023-11-07 + Unbelievable savings, unforgettable finds; A treasure trove of affordable delights just under $20; It's time to grab delightful steals on beautiful jewelry, trendy new accessories, skincare products, home décor or more in exclusive deal hours. + Fashion + Reality TV + + + + Under $20 Deals + 2023-11-07 + Unbelievable savings, unforgettable finds; A treasure trove of affordable delights just under $20; It's time to grab delightful steals on beautiful jewelry, trendy new accessories, skincare products, home décor or more in exclusive deal hours. + Fashion + Reality TV + + + + Under $20 Deals + 2023-11-07 + Unbelievable savings, unforgettable finds; A treasure trove of affordable delights just under $20; It's time to grab delightful steals on beautiful jewelry, trendy new accessories, skincare products, home décor or more in exclusive deal hours. + Fashion + Reality TV + + + + Under $20 Deals + 2023-11-07 + Unbelievable savings, unforgettable finds; A treasure trove of affordable delights just under $20; It's time to grab delightful steals on beautiful jewelry, trendy new accessories, skincare products, home décor or more in exclusive deal hours. + Fashion + Reality TV + + + + Precious Gemstone Deals + 2023-11-07 + It is the millennial deal to explore the collection of high quality precious gemstones collected around the globe; Precious and ornamental natural gems, gems for the Collection, jewelry and creations now live at the sale. + Shopping + + + + Precious Gemstone Deals + 2023-11-07 + It is the millennial deal to explore the collection of high quality precious gemstones collected around the globe; Precious and ornamental natural gems, gems for the Collection, jewelry and creations now live at the sale. + Shopping + + + + Precious Gemstone Deals + 2023-11-07 + It is the millennial deal to explore the collection of high quality precious gemstones collected around the globe; Precious and ornamental natural gems, gems for the Collection, jewelry and creations now live at the sale. + Shopping + + + + Precious Gemstone Deals + 2023-11-07 + It is the millennial deal to explore the collection of high quality precious gemstones collected around the globe; Precious and ornamental natural gems, gems for the Collection, jewelry and creations now live at the sale. + Shopping + + + + TLV Deals Jewelry Collection + 2023-11-08 + Shop LC is offering some of the best deals on dazzling mix jewelry collection including gold, silver and gemstone jewelry; The sale is live so don't miss this incredible opportunity to get hands on exquisite jewelry sale. + Regular + + + + Night Owl Sale + 2023-11-08 + Delight in the splendor of affordable jewelry deals; Featuring an stunning assortment of rare, genuine gems, and an mix collection of statement jewelry; It is designed to be the perfect gift or personal indulgence. + Regular + + + + Night Owl Sale + 2023-11-08 + Delight in the splendor of affordable jewelry deals; Featuring an stunning assortment of rare, genuine gems, and an mix collection of statement jewelry; It is designed to be the perfect gift or personal indulgence. + Regular + + + + Night Owl Sale + 2023-11-08 + Delight in the splendor of affordable jewelry deals; Featuring an stunning assortment of rare, genuine gems, and an mix collection of statement jewelry; It is designed to be the perfect gift or personal indulgence. + Regular + + + + Night Owl Sale + 2023-11-08 + Delight in the splendor of affordable jewelry deals; Featuring an stunning assortment of rare, genuine gems, and an mix collection of statement jewelry; It is designed to be the perfect gift or personal indulgence. + Regular + + + + Night Owl Sale + 2023-11-08 + Delight in the splendor of affordable jewelry deals; Featuring an stunning assortment of rare, genuine gems, and an mix collection of statement jewelry; It is designed to be the perfect gift or personal indulgence. + Regular + + + + Sunrise Rapid Deals + 2023-11-08 + Sunrise super value jewelry hours are back; It is the time to get hands on high quality rare gemstone jewelry, beautifully hand crafted antique jewelry of gold and silver in flash sales at the best price. + Regular + + + + Sunrise Deals + 2023-11-08 + Sunrise super value hours are back; It is the time to get hands on high quality essentials, accessories, beauty products, rare jewelry, household products and more at never before price; Sunrise summer hours are live now. + Regular + + + + Richard French Live + Regular + + + + Biz Kid$ + The Value of Money + The importance of the value of money. + Children + Instructional + + + TVG + + + + Science Now + Rubik's cube; fruit bat sonar; robots. + Science + Instructional + + + TVG + + + + Precious Gemstone Deals + 2023-11-08 + It is the millennial deal to explore the collection of high quality precious gemstones collected around the globe; Precious and ornamental natural gems, gems for the Collection, jewelry and creations now live at the sale. + Shopping + + + + Precious Gemstone Deals + 2023-11-08 + It is the millennial deal to explore the collection of high quality precious gemstones collected around the globe; Precious and ornamental natural gems, gems for the Collection, jewelry and creations now live at the sale. + Shopping + + + + Bali Silver Legacy Deals + 2023-11-08 + Bali Legacy is influenced by the captivating culture and customs of the Balinese and Javanese people;The stunning Bali Silver jewelry collection beautifully captures the intricate artistry of the Bali natives, showcasing a range of exquisite designs. + Regular + + + + Bali Silver Legacy Deals + 2023-11-08 + Bali Legacy is influenced by the captivating culture and customs of the Balinese and Javanese people;The stunning Bali Silver jewelry collection beautifully captures the intricate artistry of the Bali natives, showcasing a range of exquisite designs. + Regular + + + + Bali Silver Legacy Deals + 2023-11-08 + Bali Legacy is influenced by the captivating culture and customs of the Balinese and Javanese people;The stunning Bali Silver jewelry collection beautifully captures the intricate artistry of the Bali natives, showcasing a range of exquisite designs. + Regular + + + + Bali Silver Legacy Deals + 2023-11-08 + Bali Legacy is influenced by the captivating culture and customs of the Balinese and Javanese people;The stunning Bali Silver jewelry collection beautifully captures the intricate artistry of the Bali natives, showcasing a range of exquisite designs. + Regular + + + + Red Rose Apatite Jewelry + 2023-11-08 + It is a pristine and rare variety of apatite; Rose apatite exhibits a stunning range of colors, including shades of pink and red; The red rose apatite adds charm and exclusivity to any jewelry piece; Add irresistible beauty to a jewelry collection. + Shopping + + + + Red Rose Apatite Jewelry + 2023-11-08 + It is a pristine and rare variety of apatite; Rose apatite exhibits a stunning range of colors, including shades of pink and red; The red rose apatite adds charm and exclusivity to any jewelry piece; Add irresistible beauty to a jewelry collection. + Shopping + + + + Fellow Travelers + You're Wonderful + In 1950s Washington, Hawkins Fuller is at the State Department enjoying clandestine sex with men and avoiding entanglements; everything changes when Hawk begins an affair with Tim Laughlin; in 1986, Hawk decides he must see Tim. + + Matt Bomer + Jonathan Bailey + Noah J. Ricketts + + Drama + + + + The Collective + A group of righteous assassins takes aim at a human trafficking ring that's backed by a network of untouchable billionaires. With their backs against the wall, they have no choice but to put their mission in the hands of a rookie assassin. + + Lucas Till + Ruby Rose + Mercedes Varnado + + 2023 + Movies + Action + + + + Wrong Turn + Despite warnings to stick to the Appalachian Trail, hikers stray off course and cross into land inhabited by a hidden community of mountain dwellers who use deadly means to protect their way of life. + + Charlotte Vega + Matthew Modine + Adain Bradley + + 2021 + Movies + Horror + + + TVPG + + + + Pearl + Trapped on an isolated farm, Pearl must tend to her ailing father under the watch of her mother. Lusting for the glamorous life she's seen in movies, Pearl's temptations and repressions collide. + + Mia Goth + David Corenswet + Tandi Wright + + 2022 + Movies + Horror + + + TVPG + + + 3 + + + + Billions + Admirals Fund + Trust is built and broken as fate hangs in the balance for all when Chuck, Axe and Prince have the ultimate showdown. + + Paul Giamatti + Maggie Siff + Corey Stoll + + Drama + + + TVMA + + + + Billions + Admirals Fund + Trust is built and broken as fate hangs in the balance for all when Chuck, Axe and Prince have the ultimate showdown. + + Paul Giamatti + Maggie Siff + Corey Stoll + + Drama + + + TVMA + + + + Fellow Travelers + You're Wonderful + In 1950s Washington, Hawkins Fuller is at the State Department enjoying clandestine sex with men and avoiding entanglements; everything changes when Hawk begins an affair with Tim Laughlin; in 1986, Hawk decides he must see Tim. + + Matt Bomer + Jonathan Bailey + Noah J. Ricketts + + Drama + + + + The Crying Game + An IRA underling (Stephen Rea) meets the lover of a British soldier (Forest Whitaker) he has been ordered to execute. + + Stephen Rea + Miranda Richardson + Forest Whitaker + + 1992 + Movies + Thriller + + + TV14 + + + 4 + + + + Beverly Hills Cop + A hip Detroit detective (Eddie Murphy) drives out to Los Angeles and shows local police (Judge Reinhold, John Ashton) how to catch a killer. + + Eddie Murphy + Judge Reinhold + John Ashton + + 1984 + Movies + Comedy + + + TVG + + + 3 + + + + Beverly Hills Cop II + A clever detective (Eddie Murphy) from Detroit shows Los Angeles how to stop a hit woman's (Brigitte Nielsen) so-called Alphabet Crimes. + + Eddie Murphy + Judge Reinhold + Brigitte Nielsen + + 1987 + Movies + Comedy + + + TVG + + + 2 + + + + Beverly Hills Cop III + A hip detective (Eddie Murphy) from Detroit tracks a crime ring to a Los Angeles fun park called WonderWorld. + + Eddie Murphy + Judge Reinhold + Héctor Elizondo + + 1994 + Movies + Comedy + + + TVPG + + + 2 + + + + Rambo: First Blood Part II + A former Green Beret (Sylvester Stallone) goes on a reconnaissance mission to spring MIAs from a Viet Cong prison. + + Sylvester Stallone + Richard Crenna + Julia Nickson + + 1985 + Movies + Action + + + TVPG + + + 2 + + + + Rambo III + Loner Rambo (Sylvester Stallone) leaves a Buddhist monastery to free his Green Beret mentor (Richard Crenna) from Soviets in Afghanistan. + + Sylvester Stallone + Richard Crenna + Marc de Jonge + + 1988 + Movies + Action + + + TVPG + + + 2 + + + + No Country for Old Men + An aging lawman (Tommy Lee Jones) reflects on his past and laments a changing world while trying to find and protect a hunter who took the cash from a drug deal gone bad. + + Tommy Lee Jones + Javier Bardem + Josh Brolin + + 2007 + Movies + Thriller + + + TVPG + + + 3 + + + + The Caine Mutiny Court-Martial + A lawyer reluctantly defends an officer of the Navy who took control of the Caine from its captain while caught in a violent sea storm. As the court-martial proceeds, however, he increasingly questions if it was truly a mutiny. + + Kiefer Sutherland + Jason Clarke + Jake Lacy + + 2023 + Movies + Drama + + + + Fellow Travelers + You're Wonderful + In 1950s Washington, Hawkins Fuller is at the State Department enjoying clandestine sex with men and avoiding entanglements; everything changes when Hawk begins an affair with Tim Laughlin; in 1986, Hawk decides he must see Tim. + + Matt Bomer + Jonathan Bailey + Noah J. Ricketts + + Drama + + + + The Circus: Inside the Greatest Political Show on Earth + Inside the Greatest Political Show on Earth - 811 + A revealing look at the new era of presidential politics, revealing the intense, inspiring and infuriating stories behind the headlines; key characters and events are presented in real time as they are happening. + Documentary + Political + + + TV14 + + + + The Circus: Inside the Greatest Political Show on Earth + Inside the Greatest Political Show on Earth - 811 + A revealing look at the new era of presidential politics, revealing the intense, inspiring and infuriating stories behind the headlines; key characters and events are presented in real time as they are happening. + Documentary + Political + + + TV14 + + + + Mayor of Kingstown + The Mayor of Kingstown + Brothers Mitch and Mike McLusky navigate Kingstown, home to multiple prisons, as they act as the liaisons between prisoners and the community; when a young guard, Sam, is set up to deliver a letter for a prisoner, Mike works to get him off the hook. + + Jeremy Renner + Dianne Wiest + Kyle Chandler + + Drama + + + + Fellow Travelers + Bulletproof + Hawk distances himself from Tim when the State Department begins investigations; Mary comes under suspicion; Marcus loses his job after a dispute with Roy Cohn; Hawk draws closer to Lucy. + + Matt Bomer + Jonathan Bailey + Noah J. Ricketts + + Drama + + + + Fellow Travelers + Bulletproof + Hawk distances himself from Tim when the State Department begins investigations; Mary comes under suspicion; Marcus loses his job after a dispute with Roy Cohn; Hawk draws closer to Lucy. + + Matt Bomer + Jonathan Bailey + Noah J. Ricketts + + Drama + + + + The Godfather + Crime boss Vito Corleone (Marlon Brando) and his sons (Al Pacino, James Caan) rule their New York empire with Mafia justice. + + Marlon Brando + Al Pacino + James Caan + + 1972 + Movies + Crime Story + + + TVPG + + + 4 + + + + The Godfather + Crime boss Vito Corleone (Marlon Brando) and his sons (Al Pacino, James Caan) rule their New York empire with Mafia justice. + + Marlon Brando + Al Pacino + James Caan + + 1972 + Movies + Crime Story + + + TVPG + + + 4 + + + + Fellow Travelers + Bulletproof + Hawk distances himself from Tim when the State Department begins investigations; Mary comes under suspicion; Marcus loses his job after a dispute with Roy Cohn; Hawk draws closer to Lucy. + + Matt Bomer + Jonathan Bailey + Noah J. Ricketts + + Drama + + + + The Circus: Inside the Greatest Political Show on Earth + Inside the Greatest Political Show on Earth - 811 + A revealing look at the new era of presidential politics, revealing the intense, inspiring and infuriating stories behind the headlines; key characters and events are presented in real time as they are happening. + Documentary + Political + + + TV14 + + + + First Blood + Green Beret veteran Rambo (Sylvester Stallone) takes on a Pacific Northwest sheriff (Brian Dennehy) and the National Guard. + + Sylvester Stallone + Richard Crenna + Brian Dennehy + + 1982 + Movies + Action + + + TVPG + + + 3 + + + + The Circus: Inside the Greatest Political Show on Earth + Inside the Greatest Political Show on Earth - 811 + A revealing look at the new era of presidential politics, revealing the intense, inspiring and infuriating stories behind the headlines; key characters and events are presented in real time as they are happening. + Documentary + Political + + + TV14 + + + + Rambo: First Blood Part II + A former Green Beret (Sylvester Stallone) goes on a reconnaissance mission to spring MIAs from a Viet Cong prison. + + Sylvester Stallone + Richard Crenna + Julia Nickson + + 1985 + Movies + Action + + + TVPG + + + 2 + + + + The Brothers Grimm + Itinerant con men (Matt Damon, Heath Ledger) become caught in a real fairy tale after several maidens disappear in an enchanted forest. + + Matt Damon + Heath Ledger + Peter Stormare + + 2005 + Movies + Fantasy + + + TVG + + + 2 + + + + The Godfather + Crime boss Vito Corleone (Marlon Brando) and his sons (Al Pacino, James Caan) rule their New York empire with Mafia justice. + + Marlon Brando + Al Pacino + James Caan + + 1972 + Movies + Crime Story + + + TVPG + + + 4 + + + + The Godfather, Part II + Michael Corleone (Al Pacino) rules his father's criminal empire, while flashbacks recall young Vito's (Robert De Niro) climb to power. + + Al Pacino + Robert Duvall + Diane Keaton + + 1974 + Movies + Crime Story + + + TV14 + + + 4 + + + + Mario Puzo's The Godfather, Coda: The Death of Michael Corleone + Dignified Michael Corleone (Al Pacino) joins his wild nephew in a Sicilian vendetta involving the Vatican. + + Al Pacino + Diane Keaton + Talia Shire + + 1990 + Movies + Crime Story + + + TVPG + + + 3 + + + + The Circus: Inside the Greatest Political Show on Earth + Inside the Greatest Political Show on Earth - 811 + A revealing look at the new era of presidential politics, revealing the intense, inspiring and infuriating stories behind the headlines; key characters and events are presented in real time as they are happening. + Documentary + Political + + + TV14 + + + + Romeo & Juliet + Twentieth-century teenagers (Leonardo DiCaprio, Claire Danes) fall in love, despite feuding families, in an update of the classic tragedy. + + Leonardo DiCaprio + Claire Danes + Brian Dennehy + + 1996 + Movies + Romance + + + TVPG + + + 3 + + + + Fellow Travelers + Bulletproof + Hawk distances himself from Tim when the State Department begins investigations; Mary comes under suspicion; Marcus loses his job after a dispute with Roy Cohn; Hawk draws closer to Lucy. + + Matt Bomer + Jonathan Bailey + Noah J. Ricketts + + Drama + + + + Why Women Kill + The Unguarded Moment + Alma, now very comfortable with her position in the Garden Club, decides to run for the vacated presidency; with Isabel's demise, Rita is freed from jail, and Bertram grows more guilt-ridden and depressed, while Vern pursues the truth. + + Allison Tolman + Lana Parrilla + B.K. Cannon + + Regular + + + TVMA + + + + Becky + Spunky and rebellious Becky tries to reconnect with her father during a weekend getaway at a lakefront house. But the trip soon takes a turn for the worse when convicts on the run, led by the merciless Dominick, suddenly invade the home. + + Kevin James + Lulu Wilson + Joel McHale + + 2020 + Movies + Action + + + + The Wrath of Becky + When a violent group known as the Noble Men breaks into Becky's house and takes her beloved dog, she must return to her old ways to protect herself and her loved ones. + + Lulu Wilson + Seann William Scott + Denise Burse + + 2023 + Movies + Thriller + + + + The Wrath of Becky + When a violent group known as the Noble Men breaks into Becky's house and takes her beloved dog, she must return to her old ways to protect herself and her loved ones. + + Lulu Wilson + Seann William Scott + Denise Burse + + 2023 + Movies + Thriller + + + + Fellow Travelers + Bulletproof + Hawk distances himself from Tim when the State Department begins investigations; Mary comes under suspicion; Marcus loses his job after a dispute with Roy Cohn; Hawk draws closer to Lucy. + + Matt Bomer + Jonathan Bailey + Noah J. Ricketts + + Drama + + + + The Circus: Inside the Greatest Political Show on Earth + Inside the Greatest Political Show on Earth - 811 + A revealing look at the new era of presidential politics, revealing the intense, inspiring and infuriating stories behind the headlines; key characters and events are presented in real time as they are happening. + Documentary + Political + + + TV14 + + + + Buddy Games: Spring Awakening + Faced with their biggest challenge yet, the gang sets out to honor a lost pal, only to find themselves in the middle of where it all began -- spring break. They soon learn their old school ways of partying can hardly compete with today's generation. + + Dan Bakkedahl + Kevin Dillon + Josh Duhamel + + 2023 + Movies + Comedy + + + TVPG + + + + Stillwater + An Oklahoma man travels to Marseille, France, to prove that his estranged daughter is innocent of murder. Confronted with language barriers, cultural differences and a complicated legal system, he soon makes it his personal mission to exonerate her. + + Matt Damon + Camille Cottin + Abigail Breslin + + 2021 + Movies + Drama + + + 2 + + + + The Kite Runner + After many years living in the U.S., an Afghan novelist (Khalid Abdalla) returns to his Taliban-controlled homeland to learn the fate of the son of his murdered friend. + + Khalid Abdalla + Homayoun Ershadi + Zekeria Ebrahimi + + 2007 + Movies + Drama + + + TVPG + + + 2 + + + + The Perks of Being a Wallflower + Friends (Emma Watson, Ezra Miller) try to help an introverted teenager (Logan Lerman) become more sociable. + + Logan Lerman + Emma Watson + Ezra Miller + + 2012 + Movies + Romance + + + TVG + + + 3 + + + + Birthmarked + In 1977, two respected scientists quit their jobs to conduct an experiment about human identity. They aim to raise three children contrarily to their genetic predispositions to prove the ultimate power of nurture over nature. + + Matthew Goode + Toni Collette + Michael Smiley + + 2018 + Movies + Comedy + + + TVPG + + + + Mean Girls + Attending high school for the first time, a teenager (Lindsay Lohan) becomes friends with three popular but manipulative students. + + Lindsay Lohan + Rachel McAdams + Tina Fey + + 2004 + Movies + Comedy + + + TVG + + + 3 + + + + Vamps + Bloodsucking party girls (Alicia Silverstone, Krysten Ritter) find their destinies at stake when one falls for the son of a vampire hunter and the other encounters a long-ago love. + + Alicia Silverstone + Krysten Ritter + Dan Stevens + + 2012 + Movies + Comedy + + + + Train to Busan + A man (Gong Yoo), his estranged daughter and other passengers become trapped on a speeding train during a zombie outbreak in South Korea. + + Gong Yoo + Jung Yu-mi + Ma Dong-seok + + 2016 + Movies + Horror + + + TVPG + + + 3 + + + + Heist 88 + A criminal mastermind decides to pull one last job before going to prison and recruits a group of young bank employees to steal millions in a daring and brazen assault on the U.S. banking system. + + Courtney B. Vance + Keith David + Keesha Sharp + + 2023 + Movies + Crime Story + + + + Menace II Society + Crime, street sense and the status quo roil the mind of a teenager (Tyrin Turner) in the Watts section of Los Angeles. + + Tyrin Turner + Jada Pinkett Smith + Vonte Sweet + + 1993 + Movies + Drama + + + TV14 + + + 3 + + + + Paid in Full + A dry cleaner's delivery boy becomes one of the most powerful drug dealers in 1980s Harlem. Based on a true story. + + Wood Harris + Mekhi Phifer + Kevin Carroll + + 2002 + Movies + Crime Story + + + TVPG + + + 2 + + + + Reservoir Dogs + Thieves (Harvey Keitel, Tim Roth, Michael Madsen) ponder the identity of the traitor in their midst in the violent aftermath of a failed jewelry heist. + + Harvey Keitel + Tim Roth + Michael Madsen + + 1992 + Movies + Crime Story + + + TVPG + + + 3 + + + + Reservoir Dogs + Thieves (Harvey Keitel, Tim Roth, Michael Madsen) ponder the identity of the traitor in their midst in the violent aftermath of a failed jewelry heist. + + Harvey Keitel + Tim Roth + Michael Madsen + + 1992 + Movies + Crime Story + + + TVPG + + + 3 + + + + The Crying Game + An IRA underling (Stephen Rea) meets the lover of a British soldier (Forest Whitaker) he has been ordered to execute. + + Stephen Rea + Miranda Richardson + Forest Whitaker + + 1992 + Movies + Thriller + + + TV14 + + + 4 + + + + X + A group of actors sets out to make an adult film in rural Texas under the noses of their reclusive hosts, but when the elderly couple catches their young guests in the act, the cast finds themselves in a desperate fight for their lives. + + Mia Goth + Jenna Ortega + Martin Henderson + + 2022 + Movies + Horror + + + TV14 + + + 3 + + + + The Wiz + Dorothy (Diana Ross) eases on down the road to see the Wiz (Richard Pryor) with Tinman, Scarecrow (Michael Jackson) and Cowardly Lion. + + Diana Ross + Michael Jackson + Richard Pryor + + 1978 + Movies + Children + + + TVG + + + 2 + + + + The First Wives Club + Three 50-ish college friends (Goldie Hawn, Bette Midler, Diane Keaton) plot revenge after their husbands dump them for younger women. + + Goldie Hawn + Bette Midler + Diane Keaton + + 1996 + Movies + Comedy + + + TVG + + + 3 + + + + Moonstruck + An Italian-American widow (Cher), engaged to a reticent suitor, falls in love with his brother (Nicolas Cage). + + Cher + Nicolas Cage + Vincent Gardenia + + 1987 + Movies + Romance + + + TVG + + + 3 + + + + How to Lose a Guy in 10 Days + A columnist (Kate Hudson) tries to make a man (Matthew McConaughey) dump her, but he bets his boss that she will fall in love. + + Kate Hudson + Matthew McConaughey + Adam Goldberg + + 2003 + Movies + Romance + + + TVG + + + 2 + + + + Scream + Twenty-five years after a streak of brutal murders shocked the quiet town of Woodsboro, Calif., a new killer dons the Ghostface mask and begins targeting a group of teenagers to resurrect secrets from the town's deadly past. + + Neve Campbell + Courteney Cox + David Arquette + + 2022 + Movies + Horror + + + TVPG + + + 2 + + + + Scream VI + Four survivors of the Ghostface murders leave Woodsboro behind for a fresh start in New York City. However, they soon find themselves in a fight for their lives when a new killer embarks on a bloody rampage. + + Melissa Barrera + Jenna Ortega + Courteney Cox + + 2023 + Movies + Hallowe'en + Horror + + + TVPG + + + 2 + + + + The Yards + A friend's (Joaquin Phoenix) lure of easy money draws an ex-con (Mark Wahlberg) into the corrupt world of his uncle's subway-train business. + + Mark Wahlberg + Joaquin Phoenix + Charlize Theron + + 2000 + Movies + Crime Story + + + TVG + + + 2 + + + + Scream VI + Four survivors of the Ghostface murders leave Woodsboro behind for a fresh start in New York City. However, they soon find themselves in a fight for their lives when a new killer embarks on a bloody rampage. + + Melissa Barrera + Jenna Ortega + Courteney Cox + + 2023 + Movies + Hallowe'en + Horror + + + TVPG + + + 2 + + + + X + A group of actors sets out to make an adult film in rural Texas under the noses of their reclusive hosts, but when the elderly couple catches their young guests in the act, the cast finds themselves in a desperate fight for their lives. + + Mia Goth + Jenna Ortega + Martin Henderson + + 2022 + Movies + Horror + + + TV14 + + + 3 + + + + Fellow Travelers + You're Wonderful + In 1950s Washington, Hawkins Fuller is at the State Department enjoying clandestine sex with men and avoiding entanglements; everything changes when Hawk begins an affair with Tim Laughlin; in 1986, Hawk decides he must see Tim. + + Matt Bomer + Jonathan Bailey + Noah J. Ricketts + + Drama + + + + There Will Be Blood + Daniel Plainview (Daniel Day-Lewis) becomes a self-made oil tycoon, but he deviates into moral bankruptcy as his material fortune grows. + + Daniel Day-Lewis + Paul Dano + Kevin J. O'Connor + + 2007 + Movies + Drama + + + TVPG + + + 4 + + + + There Will Be Blood + Daniel Plainview (Daniel Day-Lewis) becomes a self-made oil tycoon, but he deviates into moral bankruptcy as his material fortune grows. + + Daniel Day-Lewis + Paul Dano + Kevin J. O'Connor + + 2007 + Movies + Drama + + + TVPG + + + 4 + + + + Married to the Mob + An FBI agent (Matthew Modine) gets close to a gangster's widow (Michelle Pfeiffer) in order to nab a crime boss (Dean Stockwell). + + Michelle Pfeiffer + Matthew Modine + Dean Stockwell + + 1988 + Movies + Comedy + + + TVG + + + 3 + + + + The Last Airbender + A being (Noah Ringer) with the ability to manipulate the four elements joins forces with a waterbender (Nicola Peltz) and her brother to restore balance to their war-torn world. + + Noah Ringer + Dev Patel + Nicola Peltz + + 2010 + Movies + Fantasy + + + TVG + + + 1 + + + + How to Lose a Guy in 10 Days + A columnist (Kate Hudson) tries to make a man (Matthew McConaughey) dump her, but he bets his boss that she will fall in love. + + Kate Hudson + Matthew McConaughey + Adam Goldberg + + 2003 + Movies + Romance + + + TVG + + + 2 + + + + The DUFF + A high-school senior (Mae Whitman) sets out to reinvent herself and revolutionize the student body's social order after learning that a judgmental classmate has given her an embarrassing nickname. + + Mae Whitman + Robbie Amell + Bella Thorne + + 2015 + Movies + Romance + + + TVG + + + 2 + + + + 13 Minutes + The largest tornado on record threatens to ravage a small town, leaving residents with only 13 minutes to find shelter, search for loved ones and fight for their lives. + + Amy Smart + Thora Birch + Peter Facinelli + + 2021 + Movies + Thriller + + + + Free State of Jones + In Jones County, Miss., Newt Knight (Matthew McConaughey) joins forces with other farmers and a group of runaway slaves to lead a violent rebellion against the Confederacy. + + Matthew McConaughey + Gugu Mbatha-Raw + Mahershalalhashbaz Ali + + 2016 + Movies + History + + + TVPG + + + 2 + + + + Bandit + After escaping from a Michigan prison, a charming career criminal assumes a new identity in Canada and goes on to rob a record 59 banks and jewellery stores while being hunted by a police task force. + + Josh Duhamel + Elisha Cuthbert + Mel Gibson + + 2022 + Movies + Action + + + + The Circus: Inside the Greatest Political Show on Earth + This Thing of His + Exploring the legal threats facing former president Donald Trump as he seeks a return to the White House; former Mueller team prosecutor Andrew Weissmann joins as guest host. + Documentary + Political + + + TVMA + + + + Billions + Admirals Fund + Trust is built and broken as fate hangs in the balance for all when Chuck, Axe and Prince have the ultimate showdown. + + Paul Giamatti + Maggie Siff + Corey Stoll + + Drama + + + TVMA + + + + Everything Everywhere All at Once + When an interdimensional rupture unravels reality, an unlikely hero must channel her newfound powers to fight bizarre and bewildering dangers from the multiverse as the fate of the world hangs in the balance. + + Michelle Yeoh + Stephanie Hsu + Ke Huy Quan + + 2022 + Movies + Comedy + + + TVPG + + + 3 + + + + Bridge of Spies + During the Cold War, a CIA operative (Scott Shepherd) recruits New York lawyer James Donovan (Tom Hanks) to negotiate a prisoner exchange for captured U.S. pilot Francis Gary Powers (Austin Stowell). + + Tom Hanks + Mark Rylance + Alan Alda + + 2015 + Movies + History + + + TVG + + + 3 + + + + Fellow Travelers + Bulletproof + Hawk distances himself from Tim when the State Department begins investigations; Mary comes under suspicion; Marcus loses his job after a dispute with Roy Cohn; Hawk draws closer to Lucy. + + Matt Bomer + Jonathan Bailey + Noah J. Ricketts + + Drama + + + + The Circus: Inside the Greatest Political Show on Earth + Inside the Greatest Political Show on Earth - 811 + A revealing look at the new era of presidential politics, revealing the intense, inspiring and infuriating stories behind the headlines; key characters and events are presented in real time as they are happening. + Documentary + Political + + + TV14 + + + + Wrong Turn + Despite warnings to stick to the Appalachian Trail, hikers stray off course and cross into land inhabited by a hidden community of mountain dwellers who use deadly means to protect their way of life. + + Charlotte Vega + Matthew Modine + Adain Bradley + + 2021 + Movies + Horror + + + TVPG + + + + The Wrath of Becky + When a violent group known as the Noble Men breaks into Becky's house and takes her beloved dog, she must return to her old ways to protect herself and her loved ones. + + Lulu Wilson + Seann William Scott + Denise Burse + + 2023 + Movies + Thriller + + + + Sicko + Filmmaker Michael Moore diagnoses the malady afflicting America's health-care system and talks about why millions of Americans are still without adequate health coverage and treatment. + 2007 + Movies + Documentary + + + TVG + + + 3 + + + + The Integrity of Joseph Chambers + Fearing the apocalypse, an insurance salesman embarks on a solo hunting experiment, only to face a traumatic incident. + + Clayne Crawford + Jordana Brewster + Colt Crawford + + 2022 + Movies + Drama + + + + True Grit + A teenage girl (Hailee Steinfeld) enlists the aid of a boozy, trigger-happy lawman (Jeff Bridges) to hunt down her father's killer (Josh Brolin). + + Jeff Bridges + Matt Damon + Josh Brolin + + 2010 + Movies + Western + + + TVPG + + + 3 + + + + Need for Speed + Determined to take down his treacherous rival (Dominic Cooper), a street-car racer (Aaron Paul) runs through a cross-country net of cops and bounty hunters to enter the most prestigious race in the underground racing circuit. + + Aaron Paul + Dominic Cooper + Imogen Poots + + 2014 + Movies + Action + + + TVG + + + 2 + + + + Rambo: First Blood Part II + A former Green Beret (Sylvester Stallone) goes on a reconnaissance mission to spring MIAs from a Viet Cong prison. + + Sylvester Stallone + Richard Crenna + Julia Nickson + + 1985 + Movies + Action + + + TVPG + + + 2 + + + + Rambo III + Loner Rambo (Sylvester Stallone) leaves a Buddhist monastery to free his Green Beret mentor (Richard Crenna) from Soviets in Afghanistan. + + Sylvester Stallone + Richard Crenna + Marc de Jonge + + 1988 + Movies + Action + + + TVPG + + + 2 + + + + Fear the Night + When masked intruders attack eight women at a remote farmhouse, Tess, a military veteran, leads them in a final stand as they fight back to save themselves and survive the night. + + Maggie Q + Kat Foster + Travis Hammer + + 2023 + Movies + Action + + + + The Collective + A group of righteous assassins takes aim at a human trafficking ring that's backed by a network of untouchable billionaires. With their backs against the wall, they have no choice but to put their mission in the hands of a rookie assassin. + + Lucas Till + Ruby Rose + Mercedes Varnado + + 2023 + Movies + Action + + + + Bodies Bodies Bodies + When a group of 20-somethings gets stuck at a remote mansion during a hurricane, a party game gone very, very wrong ends with a dead body on the ground and fake friends at every turn as they try to find the killer among them. + + Amandla Stenberg + Maria Bakalova + Myha'la Herrold + + 2022 + Movies + Horror + + + TVPG + + + 3 + + + + Wall Street + Oliver Stone's tale of the career of an ambitious stockbroker and his involvement with a ruthless corporate raider. + + Michael Douglas + Charlie Sheen + Martin Sheen + + 1987 + Movies + Drama + + + TVG + + + 3 + + + + Fellow Travelers + Bulletproof + Hawk distances himself from Tim when the State Department begins investigations; Mary comes under suspicion; Marcus loses his job after a dispute with Roy Cohn; Hawk draws closer to Lucy. + + Matt Bomer + Jonathan Bailey + Noah J. Ricketts + + Drama + + + + The Circus: Inside the Greatest Political Show on Earth + Inside the Greatest Political Show on Earth - 811 + A revealing look at the new era of presidential politics, revealing the intense, inspiring and infuriating stories behind the headlines; key characters and events are presented in real time as they are happening. + Documentary + Political + + + TV14 + + + + Tijuana Jackson: Purpose Over Prison + Upon his release, an ex-convict sets out to fulfill his dream of becoming a world-renowned motivational speaker. + + Romany Malco + Regina Hall + Alkoya Brunson + + 2020 + Movies + Comedy + + + + Tijuana Jackson: Purpose Over Prison + Upon his release, an ex-convict sets out to fulfill his dream of becoming a world-renowned motivational speaker. + + Romany Malco + Regina Hall + Alkoya Brunson + + 2020 + Movies + Comedy + + + + The Boys in the Band + Based on the play by Mart Crowley. Tempers flare at a homosexual birthday party when a straight invitee arrives. + + Cliff Gorman + Leonard Frey + Peter White + + 1970 + Movies + Drama + + + 3 + + + + Small Town Wisconsin + After losing a custody battle, a desperate father steals his son away for one last weekend to the city of their dreams -- Milwaukee. + + David Sullivan + Bill Heck + Kristen Johnston + + 2020 + Movies + Comedy + Drama + + + + The Mighty + Friendship develops as a physically handicapped youngster (Kieran Culkin) teaches a fellow outcast (Elden Henson) how to read. + + Sharon Stone + Elden Henson + Kieran Culkin + + 1998 + Movies + Drama + + + TVG + + + 3 + + + + Akeelah and the Bee + Akeelah (Keke Palmer), an 11-year-old girl living in South Los Angeles, discovers she has a talent for spelling, which she hopes will take her to the National Spelling Bee. + + Laurence Fishburne + Angela Bassett + Keke Palmer + + 2006 + Movies + Children + + + TVG + + + 3 + + + + Chocolat + The mayor opposes a single mother (Juliette Binoche) who is opening a chocolate shop in his 1950s French village across from a church during Lent. + + Juliette Binoche + Johnny Depp + Lena Olin + + 2000 + Movies + Drama + + + TVG + + + 3 + + + + Follow Her + A struggling actress responds to a mysterious classified ad and soon finds herself trapped in her new boss's twisted revenge fantasy. + + Luke Cook + Dani Barker + Eliana Jones + + 2022 + Movies + Drama + + + + Unfaithful + A man (Richard Gere) becomes increasingly distraught after he discovers his wife (Diane Lane) is having an affair with a Frenchman (Olivier Martinez). + + Richard Gere + Diane Lane + Olivier Martinez + + 2002 + Movies + Drama + + + TVPG + + + 3 + + + + Punch + Jim is a promising teenage boxer who's training under the watchful eye of his demanding and alcoholic father. When Jim develops a relationship with a male classmate, they must navigate isolation, homophobia, and the brutality of small-town life. + + Tim Roth + Jordan Oosterhof + Conan Hayes + + 2022 + Movies + Drama + + + + The Counselor + A successful lawyer (Michael Fassbender) gets in over his head when he decides to dabble in the drug trade. + + Michael Fassbender + Penélope Cruz + Cameron Diaz + + 2013 + Movies + Thriller + + + TVPG + + + 2 + + + + Beverly Hills Cop + A hip Detroit detective (Eddie Murphy) drives out to Los Angeles and shows local police (Judge Reinhold, John Ashton) how to catch a killer. + + Eddie Murphy + Judge Reinhold + John Ashton + + 1984 + Movies + Comedy + + + TVG + + + 3 + + + + Beverly Hills Cop II + A clever detective (Eddie Murphy) from Detroit shows Los Angeles how to stop a hit woman's (Brigitte Nielsen) so-called Alphabet Crimes. + + Eddie Murphy + Judge Reinhold + Brigitte Nielsen + + 1987 + Movies + Comedy + + + TVG + + + 2 + + + + Beverly Hills Cop III + A hip detective (Eddie Murphy) from Detroit tracks a crime ring to a Los Angeles fun park called WonderWorld. + + Eddie Murphy + Judge Reinhold + Héctor Elizondo + + 1994 + Movies + Comedy + + + TVPG + + + 2 + + + + An Erotic Con + A beautiful drifter begins to consume every part of a lonely man's life. + 2022 + Movies + Adult + + + + An Erotic Con + A beautiful drifter begins to consume every part of a lonely man's life. + 2022 + Movies + Adult + + + + No Country for Old Men + An aging lawman (Tommy Lee Jones) reflects on his past and laments a changing world while trying to find and protect a hunter who took the cash from a drug deal gone bad. + + Tommy Lee Jones + Javier Bardem + Josh Brolin + + 2007 + Movies + Thriller + + + TVPG + + + 3 + + + + The Fabelmans + Young Sammy Fabelman falls in love with movies after his parents take him to see. + + Michelle Williams + Paul Dano + Seth Rogen + + 2022 + Movies + Drama + + + TVG + + + 3 + + + + The Brothers Grimm + Itinerant con men (Matt Damon, Heath Ledger) become caught in a real fairy tale after several maidens disappear in an enchanted forest. + + Matt Damon + Heath Ledger + Peter Stormare + + 2005 + Movies + Fantasy + + + TVG + + + 2 + + + + The Whale + A reclusive English teacher, living alone in the wake of a tragedy, attempts to reconnect with his teenage daughter for one last chance at redemption. + + Brendan Fraser + Sadie Sink + Hong Chau + + 2022 + Movies + Drama + + + TVPG + + + 2 + + + + The DUFF + A high-school senior (Mae Whitman) sets out to reinvent herself and revolutionize the student body's social order after learning that a judgmental classmate has given her an embarrassing nickname. + + Mae Whitman + Robbie Amell + Bella Thorne + + 2015 + Movies + Romance + + + TVG + + + 2 + + + + Buddy Games: Spring Awakening + Faced with their biggest challenge yet, the gang sets out to honor a lost pal, only to find themselves in the middle of where it all began -- spring break. They soon learn their old school ways of partying can hardly compete with today's generation. + + Dan Bakkedahl + Kevin Dillon + Josh Duhamel + + 2023 + Movies + Comedy + + + TVPG + + + + The Godfather, Part II + Michael Corleone (Al Pacino) rules his father's criminal empire, while flashbacks recall young Vito's (Robert De Niro) climb to power. + + Al Pacino + Robert Duvall + Diane Keaton + + 1974 + Movies + Crime Story + + + TV14 + + + 4 + + + + Mario Puzo's The Godfather, Coda: The Death of Michael Corleone + Dignified Michael Corleone (Al Pacino) joins his wild nephew in a Sicilian vendetta involving the Vatican. + + Al Pacino + Diane Keaton + Talia Shire + + 1990 + Movies + Crime Story + + + TVPG + + + 3 + + + + Homefront + A former DEA agent (Jason Statham) returns to action to save his daughter and his new town from a drug-dealing sociopath (James Franco). + + Jason Statham + James Franco + Winona Ryder + + 2013 + Movies + Action + + + TVPG + + + 2 + + + + No Country for Old Men + An aging lawman (Tommy Lee Jones) reflects on his past and laments a changing world while trying to find and protect a hunter who took the cash from a drug deal gone bad. + + Tommy Lee Jones + Javier Bardem + Josh Brolin + + 2007 + Movies + Thriller + + + TVPG + + + 3 + + + + Stillwater + An Oklahoma man travels to Marseille, France, to prove that his estranged daughter is innocent of murder. Confronted with language barriers, cultural differences and a complicated legal system, he soon makes it his personal mission to exonerate her. + + Matt Damon + Camille Cottin + Abigail Breslin + + 2021 + Movies + Drama + + + 2 + + + + Sabotage + Members of an elite DEA task force are eliminated one by one following their successful robbery of a powerful drug cartel's safe house. + + Arnold Schwarzenegger + Sam Worthington + Olivia Williams + + 2014 + Movies + Action + + + TV14 + + + 3 + + + + Sabotage + Members of an elite DEA task force are eliminated one by one following their successful robbery of a powerful drug cartel's safe house. + + Arnold Schwarzenegger + Sam Worthington + Olivia Williams + + 2014 + Movies + Action + + + TV14 + + + 3 + + + + Raze + A woman (Zoe Bell) is abducted and brought to an underground lair, where she is forced to fight other innocent victims for the amusement of unseen spectators. + + Zoe Bell + Rachel Nichols + Rebecca Marshall + + 2013 + Movies + Action + + + TV14 + + + + Beowulf + After destroying the demon Grendel, a mighty warrior (Ray Winstone) faces an even-more-potent enemy in the form of its seductive, vengeful mother (Angelina Jolie). + + Ray Winstone + Anthony Hopkins + Angelina Jolie + + 2007 + Movies + Animated + + + TVPG + + + 2 + + + + Phantasm + Two brothers (Michael Baldwin, Bill Thornbury) find out more about a cemetery Tall Man and his fatal flying silver sphere. + + A. Michael Baldwin + Bill Thornbury + Reggie Bannister + + 1979 + Movies + Horror + + + TVPG + + + 2 + + + + You're Killing Me + Eden attends a coveted heaven and hell party, hoping to get a letter of recommendation to an elite university, but she finds herself in a fight for her life. + + McKaley Miller + Dermot Mulroney + Anne Heche + + 2023 + Movies + Horror + + + + Bloodsport + An American major (Jean-Claude Van Damme) flies to Hong Kong for an outlawed martial-arts contest called the Kumite. + + Jean-Claude Van Damme + Donald Gibb + Leah Ayres + + 1988 + Movies + Action + + + TVPG + + + 2 + + + + Mario Puzo's The Godfather, Coda: The Death of Michael Corleone + Dignified Michael Corleone (Al Pacino) joins his wild nephew in a Sicilian vendetta involving the Vatican. + + Al Pacino + Diane Keaton + Talia Shire + + 1990 + Movies + Crime Story + + + TVPG + + + 3 + + + + Dead for a Dollar + Veteran bounty hunter Max Borlund heads deep into Mexican territory to find Rachel Kidd, the wife of a wealthy businessman. After learning she actually fled from the abusive marriage, he must decide whether to finish the job or stand aside. + + Christoph Waltz + Willem Dafoe + Rachel Brosnahan + + 2022 + Movies + Thriller + + + + Pearl + Trapped on an isolated farm, Pearl must tend to her ailing father under the watch of her mother. Lusting for the glamorous life she's seen in movies, Pearl's temptations and repressions collide. + + Mia Goth + David Corenswet + Tandi Wright + + 2022 + Movies + Horror + + + TVPG + + + 3 + + + + Scream + Twenty-five years after a streak of brutal murders shocked the quiet town of Woodsboro, Calif., a new killer dons the Ghostface mask and begins targeting a group of teenagers to resurrect secrets from the town's deadly past. + + Neve Campbell + Courteney Cox + David Arquette + + 2022 + Movies + Horror + + + TVPG + + + 2 + + + + The Collective + A group of righteous assassins takes aim at a human trafficking ring that's backed by a network of untouchable billionaires. With their backs against the wall, they have no choice but to put their mission in the hands of a rookie assassin. + + Lucas Till + Ruby Rose + Mercedes Varnado + + 2023 + Movies + Action + + + + Need for Speed + Determined to take down his treacherous rival (Dominic Cooper), a street-car racer (Aaron Paul) runs through a cross-country net of cops and bounty hunters to enter the most prestigious race in the underground racing circuit. + + Aaron Paul + Dominic Cooper + Imogen Poots + + 2014 + Movies + Action + + + TVG + + + 2 + + + + Menace II Society + Crime, street sense and the status quo roil the mind of a teenager (Tyrin Turner) in the Watts section of Los Angeles. + + Tyrin Turner + Jada Pinkett Smith + Vonte Sweet + + 1993 + Movies + Drama + + + TV14 + + + 3 + + + + Menace II Society + Crime, street sense and the status quo roil the mind of a teenager (Tyrin Turner) in the Watts section of Los Angeles. + + Tyrin Turner + Jada Pinkett Smith + Vonte Sweet + + 1993 + Movies + Drama + + + TV14 + + + 3 + + + + Boogie Nights + A producer (Burt Reynolds) guides a young man (Mark Wahlberg) to success in the 1970s porn industry, but greed and egotism lead to his downfall in the '80s. + + Mark Wahlberg + Burt Reynolds + Julianne Moore + + 1997 + Movies + Drama + + + TV14 + + + 3 + + + + American Graffiti + Four teens in 1962 California get a final, nostalgic glimpse of innocence before facing their postgraduation lives. + + Richard Dreyfuss + Ron Howard + Paul Le Mat + + 1973 + Movies + Comedy + Drama + + + TVG + + + 4 + + + + More American Graffiti + A couple (Ron Howard, Cindy Williams) and their high-school friends do their own things on four mid-1960s New Year's Eves. + + Candy Clark + Ron Howard + Cindy Williams + + 1979 + Movies + Comedy + Drama + + + TVG + + + 2 + + + + Confess, Fletch + While investigating a case of stolen paintings, the roguishly charming and endlessly troublesome Fletch becomes the prime suspect in a murder. To prove his innocence, he must sift through a long list of suspects -- including his own girlfriend. + + Jon Hamm + Kyle MacLachlan + Marcia Gay Harden + + 2022 + Movies + Comedy + + + TVPG + + + 3 + + + + Beverly Hills Cop + A hip Detroit detective (Eddie Murphy) drives out to Los Angeles and shows local police (Judge Reinhold, John Ashton) how to catch a killer. + + Eddie Murphy + Judge Reinhold + John Ashton + + 1984 + Movies + Comedy + + + TVG + + + 3 + + + + Hoosiers + A college basketball coach (Gene Hackman) leaves the Navy in 1951 and becomes coach of an underdog Indiana high-school team. + + Gene Hackman + Barbara Hershey + Dennis Hopper + + 1986 + Movies + Drama + + + TVG + + + 3 + + + + The Last Airbender + A being (Noah Ringer) with the ability to manipulate the four elements joins forces with a waterbender (Nicola Peltz) and her brother to restore balance to their war-torn world. + + Noah Ringer + Dev Patel + Nicola Peltz + + 2010 + Movies + Fantasy + + + TVG + + + 1 + + + + First Blood + Green Beret veteran Rambo (Sylvester Stallone) takes on a Pacific Northwest sheriff (Brian Dennehy) and the National Guard. + + Sylvester Stallone + Richard Crenna + Brian Dennehy + + 1982 + Movies + Action + + + TVPG + + + 3 + + + + Agent Game + A CIA officer becomes the target of a rendition operation after being the scapegoat for the death of an interrogation subject. + + Mel Gibson + Adan Canto + Jason Isaacs + + 2022 + Movies + Action + + + + The Contractor + When his new assignment goes awry, an elite soldier finds himself hunted and on the run, caught in a dangerous conspiracy and fighting to stay alive long enough to get home and uncover the true motives of those who betrayed him. + + Chris Pine + Ben Foster + Gillian Jacobs + + 2022 + Movies + Action + + + 2 + + + + The Counselor + A successful lawyer (Michael Fassbender) gets in over his head when he decides to dabble in the drug trade. + + Michael Fassbender + Penélope Cruz + Cameron Diaz + + 2013 + Movies + Thriller + + + TVPG + + + 2 + + + + Boxing + ShoBox: The New Generation + Featuring a trio of undefeated, up-and-coming prospects, including welterweight Jaron Ennis, super lightweight Kenneth Sims Jr. and super bantamweight Arnold Khegai, all in separate bouts. + Sports + Boxing + + + TVPG + + + + Scream VI + Four survivors of the Ghostface murders leave Woodsboro behind for a fresh start in New York City. However, they soon find themselves in a fight for their lives when a new killer embarks on a bloody rampage. + + Melissa Barrera + Jenna Ortega + Courteney Cox + + 2023 + Movies + Hallowe'en + Horror + + + TVPG + + + 2 + + + + Scream VI + Four survivors of the Ghostface murders leave Woodsboro behind for a fresh start in New York City. However, they soon find themselves in a fight for their lives when a new killer embarks on a bloody rampage. + + Melissa Barrera + Jenna Ortega + Courteney Cox + + 2023 + Movies + Hallowe'en + Horror + + + TVPG + + + 2 + + + + Train to Busan + A man (Gong Yoo), his estranged daughter and other passengers become trapped on a speeding train during a zombie outbreak in South Korea. + + Gong Yoo + Jung Yu-mi + Ma Dong-seok + + 2016 + Movies + Horror + + + TVPG + + + 3 + + + + The Ring Two + A female journalist (Naomi Watts) must prevent evil Samara from taking possession of her son's (David Dorfman) soul. + + Naomi Watts + Simon Baker + David Dorfman + + 2005 + Movies + Horror + + + TVPG + + + 2 + + + + Avarice + A woman must rely on her gifted archery skills to save her kidnapped husband and daughter from a team of mercenaries. + + Gillian Alexy + Luke Ford + Ryan Panizza + + 2022 + Movies + Action + + + + Snag + After learning the woman he once loved is being held captive by ruthless gangsters, a lone wolf seeks out allies and storms into a world of violence to rescue her. + + Ben Milliken + Jaime Camil + Jonny Beauchamp + + 2023 + Movies + Action + + + TVPG + + + + Aeon Flux + In the last city on Earth, underground rebels dispatch their top assassin (Charlize Theron) to kill a government leader. + + Charlize Theron + Marton Csokas + Jonny Lee Miller + + 2005 + Movies + Sci-Fi + + + TVPG + + + 2 + + + + Everything Everywhere All at Once + When an interdimensional rupture unravels reality, an unlikely hero must channel her newfound powers to fight bizarre and bewildering dangers from the multiverse as the fate of the world hangs in the balance. + + Michelle Yeoh + Stephanie Hsu + Ke Huy Quan + + 2022 + Movies + Comedy + + + TVPG + + + 3 + + + + Bodies Bodies Bodies + When a group of 20-somethings gets stuck at a remote mansion during a hurricane, a party game gone very, very wrong ends with a dead body on the ground and fake friends at every turn as they try to find the killer among them. + + Amandla Stenberg + Maria Bakalova + Myha'la Herrold + + 2022 + Movies + Horror + + + TVPG + + + 3 + + + + Buddy Games: Spring Awakening + Faced with their biggest challenge yet, the gang sets out to honor a lost pal, only to find themselves in the middle of where it all began -- spring break. They soon learn their old school ways of partying can hardly compete with today's generation. + + Dan Bakkedahl + Kevin Dillon + Josh Duhamel + + 2023 + Movies + Comedy + + + TVPG + + + + Who Killed Cooper Dunn? + A weekend camping trip among six old friends in Minnesota's Boundry Waters turns tragic after one of them mysteriously dies, triggering further turmoil as they attempt to unmask the killer. + + Tyler Ritter + Carlena Britch + Mike Foy + + 2022 + Movies + Mystery + + + + Wild Men + Armed with a bow and animal skins, Martin sets off for the forest in a misguided attempt to overcome his midlife crisis. However, a chance meeting with a fugitive leads to a twisted trip through the fjords with police and drug runners not far behind. + + Rasmus Bjerg + Zaki Youssef + Bjørn Sundquist + + 2021 + Movies + Comedy + + + + Summer of Sam + Working-class people (John Leguizamo, Adrien Brody, Mira Sorvino) live in terror as the Son of Sam killer, David Berkowitz, rampages in the Bronx. + + John Leguizamo + Adrien Brody + Mira Sorvino + + 1999 + Movies + Drama + + + TVPG + + + 3 + + + + Boxing + 2012: Delvin Rodriguez vs. Austin Trout + From June 2, 2012. + Sports + Boxing + + + TV14 + + + + Pleasure + Bella Cherry arrives in Los Angeles with dreams of becoming an adult film star, but she soon learns that fame won't come easy as she harnesses her ambition and cunning to rise to the top of this mesmerizing and singular world. + + Sofia Kappel + Revika Anne Reustle + Jason Toler + + 2021 + Movies + Drama + + + + Pleasure + Bella Cherry arrives in Los Angeles with dreams of becoming an adult film star, but she soon learns that fame won't come easy as she harnesses her ambition and cunning to rise to the top of this mesmerizing and singular world. + + Sofia Kappel + Revika Anne Reustle + Jason Toler + + 2021 + Movies + Drama + + + + From Friendship to Lust + Best friends Sarah and Ted encounter a new world of swinging couples and bisexual pleasures when they move to Los Angeles. + + Codey Steele + Emma Starletto + Joanna Angel + + 2020 + Movies + Adult + + + + Bull + Ten years after he was last seen, a vicious mob enforcer returns home to find his son and methodically track down the gang that double-crossed him. His quest for revenge soon leads to a savage showdown between his wife and her mob boss father. + + Neil Maskell + David Hayman + Tamzin Outhwaite + + 2021 + Movies + Thriller + + + + Rose: A Love Story + A stranger disturbs the delicate sanctuary inhabited by Rose and her husband as she suffers from a harrowing illness. + + Sophie Rundle + Matt Stokoe + Nathan McMullen + + 2020 + Movies + Horror + + + + Margaux + As seniors celebrate their final college days at a smart house, its highly advanced AI system, Margaux, begins to take on a deadly presence. A weekend of partying soon turns into a dystopian nightmare as they realize Margaux plans to eliminate them. + + Madison Pettis + Vanessa Morgan + Lochlyn Munro + + 2022 + Movies + Horror + + + + Downeast + A dive into the often ignored seedy underbelly of Maine combining crime, revenge and the hope for a new life. + + Greg Finley + Dylan Silver + Judson Mills + + 2021 + Movies + Drama + + + + Bandit + After escaping from a Michigan prison, a charming career criminal assumes a new identity in Canada and goes on to rob a record 59 banks and jewellery stores while being hunted by a police task force. + + Josh Duhamel + Elisha Cuthbert + Mel Gibson + + 2022 + Movies + Action + + + + 2nd Chance + Richard Davis invents a concealable bulletproof vest and shoots himself 196 times over the course of his career to prove the effectiveness of his vests. + 2022 + Movies + Documentary + + + + Attica + During the summer of 1971, tensions between inmates and guards at the Attica Correctional Facility are at an all-time high. On the morning of Sept. 9, it all comes to a head as Attica becomes the stage for one of the largest U.S. prison riots ever. + 2021 + Movies + Documentary + + + 3 + + + + Bonded By Ball: Inside the OBL + Real Hoopers + Meeting the competitors in Houston and the DMV; with the competition heating up, regional winners are crowned as hoopers battle for the throne. + Sports + Basketball + + + + Bonded By Ball: Inside the OBL + The Mountaintop + The Ones Basketball League tour arrives in NYC, where hoopers from all walks of life reveal who and what they're playing for; Tracy shares his motivation for starting a sports league from scratch. + Sports + Basketball + + + + Amistad + U.S. lawyers (Anthony Hopkins, Matthew McConaughey) defend Africans who revolted against their Spanish captors aboard a slave ship in 1839. + + Morgan Freeman + Anthony Hopkins + Matthew McConaughey + + 1997 + Movies + History + + + TVPG + + + 3 + + + + Ladybugs + Rodney Dangerfield as the coach of a girls soccer team who enlists the aid of a male ringer. Julie: Jackee. Matthew/Martha: Jonathan Brandis. Bess: Ilene Graff. Kimberly: Vinessa Shaw. Dave: Tom Parks. Glynnis: Jeannetta Arnette. Directed by Sidney J. Furie. (repeat). + + Rodney Dangerfield + Jonathan Brandis + Ilene Graff + Vinessa Shaw + Tom Parks + Jeannetta Arnette + Richard Gibbs + Sidney J. Furie + Andre Morgan + Curtis Burch + + 1992 + Drama + Comedy + + + TV-PG + + + 3.6/10 + + + + Hoosiers + A disgraced basketball coach takes a job at a small Indiana high-school and leads the small squad on an improbable run for a state championship. Meanwhile, he helps the town drunk, a former basketball player, redeem himself. (repeat). + + Gene Hackman + Dennis Hopper + Barbara Hershey + Sheb Wooley + Fern Persons + Chelcie Ross + Jerry Goldsmith + David Anspaugh + John Daly + Alvin Sargent + + 1986 + Drama + Family + + + TV-PG + + + 7.6/10 + + + + Senior Moments + Season 2, Episode 1 + A retiree unexpectedly finds love when his driver's license is revoked. (repeat). + 2017 + Reality + Comedy + S2 E1 + + TV-14 + + + + Without a Paddle + Three pals answer the call of the wild in this raucous, fish-out-of-water comedy. (repeat). + + Seth Green + Matthew Lillard + Dax Shepard + Burt Reynolds + Ethan Suplee + Abraham Benrubi + Christophe Beck + Steven Brill + Donald De Line + Jay Leggett + + 2004 + Comedy + Action & Adventure + + + TV-14 + + + 2.9/10 + + + + Hitsville: The Making of Motown + The story of Motown, from its birth in Detroit in 1958 until its relocation to L.A. in the early 1970s. The film tracks the unique system that founder Berry Gordy assembled that enabled Motown to become the most successful record label of all time. (repeat). + + Ian Arber + Benjamin Turner + Gabe Turner + Leo Pearlman + + 2019 + Documentary + Music + + TV-14 + + + + Mistletoe Ranch + Up-and-coming photographer Aimée strives to make it in the photography world. She finds herself squandering her talents as her demanding boss's assistant. A letter from her estranged family suddenly brings Aimée back to her rural childhood home, where she encounters more than she had ever hoped to expect amidst the holiday season. (repeat). + + Rhiannon Bannenberg + Steve Jaggi + Claire J. Harris + + 2022 + Drama + Action & Adventure + + TV-G + + + + Genie's Tail, A + A young boy's puppy unearths a genie's lamp housing two Genie brothers. When the boy wishes one of the Genies into the puppy, magical mayhem ensues. (repeat). + + Brent Huff + + 2022 + Comedy + + TV-PG + + + + Spotlights: A Showtime Short Film Series + Sweetheart Dancers + A couple is determined to rewrite the rules of Native American culture. (repeat). + + Kelly Fulton + + 2022 + S1 E17 + + TV-PG + + + + Love Means Zero + Featuring the life and work of American tennis coach Nick Bollettieri. (repeat). + + Andre Agassi + John F. Bassett + Bud Collins + Barbara Feltus + Andres Gomez + Jonathan Sadoff + Jason Kohn + Amanda Branson Gill + + 2018 + Documentary + + TV-PG + + + + The Monster Squad + Kids protect their town against a ghoulish invasion in this creature-feature spoof. Andre Gower. Patrick: Robby Kiger. Del: Stephen Macht. Dracula: Duncan Regehr. Fred Dekker directed. (repeat). + + Andre Gower + Robby Kiger + Stephen Macht + Duncan Regehr + Tom Noonan + Brent Chalem + Bruce Broughton + Fred Dekker + Keith Barish + Fred Dekker + + 1987 + Drama + Horror + Fantasy + Comedy + Action & Adventure + Science Fiction + + + TV-14 + + + 6.1/10 + + + + Erin's Guide to Kissing Girls + Erin and Liz are two middle school students whose friendship gets tested when Liz is accepted to private school and Erin falls hard for the new girl in class. (repeat). + + Julianna Notten + + 2022 + Comedy + + + TV-14 + + + + The Newton Boys + Matthew McConaughey and Ethan Hawke head the cast of this true-life crime story about four brothers in 1920s Texas who team up with an explosives expert and embark on a bank-robbing spree that spanned more than 5 years. Skeet Ulrich, Ethan Hawke, Vincent D'Onofrio, Chloe Webb, Julianna Margulies, Dwight Yoakam. (repeat). + + Matthew McConaughey + Skeet Ulrich + Ethan Hawke + Vincent D'Onofrio + Chloe Webb + Julianna Margulies + Alan Silvestri + Richard Linklater + John Sloss + Richard Linklater + + 1998 + Drama + Action & Adventure + + + TV-14 + + + 5.7/10 + + + + Akeelah and the Bee + In this winning and inspiring family drama, young Keke Palmer, in her first big-screen starring role, makes acting look as easy as A, B, C. Palmer is outstanding as an underachieving 11-year-old from inner-city L.A. who develops a talent for spelling and strives to make it to the National Championship. Laurence Fishburne costars as her demanding coach. Written and directed by Doug Atchison. (repeat). + + Keke Palmer + Laurence Fishburne + Angela Bassett + Curtis Armstrong + J.R. Villarreal + Erica Hubbard + Doug Atchison + Sid Ganis + Doug Atchison + + 2006 + Drama + Family + + + TV-PG + + + 7.2/10 + + + + The Last Airbender + In this thrilling fantasy adventure, a 12-year-old boy capable of manipulating fire, water, air and earth must use his powers to bring peace to warring nations after being in a state of suspended animation for over a century. (repeat). + + Noah Ringer + Dev Patel + Nicola Peltz + Jackson Rathbone + Jessica Jade Andres + Shaun Toub + James Newton Howard + M. Night Shyamalan + M. Night Shyamalan + + 2010 + Fantasy + Family + Action & Adventure + Science Fiction + + + TV-PG + + + + Close + Two thirteen year-olds have always been incredibly close but they drift apart after the intimacy of their relationship is questioned by schoolmates. An emotionally transformative and unforgettable portrait of the intersection of friendship and love, identity and independence, and heartbreak and healing. (repeat). + 2023 + Drama + + + Chocolat + An enthralling and bittersweet treat about a mysterious woman who opens a sweets shop in a French town in the late 1950s. She causes a bit of a stir, but before long, her magical concoctions have the locals eating out of her hand. (repeat). + + Juliette Binoche + Johnny Depp + Carrie-Anne Moss + Judi Dench + Alfred Molina + Lena Olin + Rachel Portman + Lasse Hallstrom + Alan C. Blomquist + Robert Nelson Jacobs + + 2000 + Drama + Comedy + + + 6.4/10 + + + + Mansfield Park + Frances O'Connor stars in this updated version of Jane Austen's novel about an independent woman. Writer-director Patricia Rozema imbues the story with a modern sensibility, making strong points about the expectations of 19th-century women to marry and look pretty. Embeth Davidtz, Jonny Lee Miller. (repeat). + + Frances O'Connor + Embeth Davidtz + Jonny Lee Miller + Alessandro Nivola + Harold Pinter + Lindsay Duncan + Lesley Barber + Patricia Rozema + David Aukin + Patricia Rozema + + 1999 + Drama + + + 7.1/10 + + + + Home for the Holidays + A single woman, who is newly unemployed, dreads the annual Thanksgiving visit with her loving, but overbearing family. (repeat). + + Holly Hunter + Robert Downey Jr. + Anne Bancroft + Charles Durning + Dylan McDermott + Geraldine Chaplin + Chris Newman + Jodie Foster + Susan Lyall + W.D. Richter + + 1995 + Drama + Comedy + + + TV-PG + + + 5.6/10 + + + + Poppy + Nineteen-year-old Poppy Simpson refuses to be defined by Down syndrome and is determined to take charge of her own life. (repeat). + 2023 + Drama + + TV-14 + + + + Paradise Hills + Generations into the future, a strict binary divides society into two distinct classes. A superior teen girl rebels against her arranged marriage to a fellow superior, falling for an inferior instead. When her mother learns of the secret romance, she sends her daughter to a finishing school for rebellious young women. (repeat). + + Julia Stresen-Reuter Ramirez + Ted Stresen-Reuter + Erica Bertamini Hoashi + Lesley Grant + Lucas Vidal + Alice Waddington + Nuria Valls + + 2019 + Drama + Fantasy + Suspense + Science Fiction + + + TV-14 + + + 4.9/10 + + + + The Monster Squad + Kids protect their town against a ghoulish invasion in this creature-feature spoof. Andre Gower. Patrick: Robby Kiger. Del: Stephen Macht. Dracula: Duncan Regehr. Fred Dekker directed. (repeat). + + Andre Gower + Robby Kiger + Stephen Macht + Duncan Regehr + Tom Noonan + Brent Chalem + Bruce Broughton + Fred Dekker + Keith Barish + Fred Dekker + + 1987 + Drama + Horror + Fantasy + Comedy + Action & Adventure + Science Fiction + + + TV-14 + + + 6.1/10 + + + + Elizabeth: A Portrait in Part(s) + A documentary on the life of Queen Elizabeth II, the longest-lived, longest reigning British monarch and longest serving female head of state in history. (repeat). + + Roger Michell + + 2022 + Documentary + + + TV-14 + + + 6.4/10 + + + + Wonderful Time of the Year, A + The Marsh family is getting together for their first Christmas Eve after three years of pandemic lockdown. (repeat). + 2022 + Comedy + + TV-PG + + + + The Real Charlie Chaplin + A raw and striking portrait of noteworthy silent film actor Charlie Chaplin. Never-before-seen clips from Chaplin's candid interview with Life Magazine in 1966 sheds light on the actor's upbringing and unexpected foray into the entertainment industry. The interview, woven together with clips from Chaplin's films, provides a meditation on Chaplin's impact on Hollywood from the actor's own perspective. (repeat). + + Jeff Rawle + Anne Rosenfeld + Paul Ryan + Dominic Marsh + Eben Young + Haley Flaherty + Robert Honstein + James Spinney + Peter Middleton + James Bierman + Oliver Kindeberg + + 2021 + Documentary + + TV-PG + + + 6.6/10 + + + + Queen Bees + This comedy film follows a strong-willed and independent senior who moves temporarily into Pine Grove Senior Community, a local retirement community whilst her house undergoes repairs. But as her eyes are opened to making new friends, hobbies, and perhaps even romance, she encounters some residents that remind her of high school cliques all over again. (repeat). + + Ellen Burstyn + James Caan + Ann-Margret + Jane Curtin + Loretta Devine + Christopher Lloyd + Walter Murphy + Michael Lembeck + Harrison Powell + Donald Martin + + 2021 + Drama + Comedy + + + 5.2/10 + + + + Getting Even With Dad + An estranged son tries to blackmail his ex-con father into spending time with him. (repeat). + + Macaulay Culkin + Ted Danson + Glenne Headly + Saul Rubinek + Gailard Sartain + Sam McMurray + Miles Goodman + Howard Deutch + Pierce Gardner + + 1994 + Family + Comedy + + + TV-PG + + + 3.1/10 + + + + Sisters with Transistors + This music documentary spotlights the overlooked history of the first generation of female pioneers and innovators in electronic music. By using archival footage and audio, it explores how they embraced synthesizers and sampling — while struggling in a male-dominated space and a generally sexist era — and made a memorable impact on popular culture. (repeat). + + Lisa Rovner + Anna Vaney + + 2020 + Documentary + Music + + + TV-PG + + + 8.2/10 + + + + Hit the Road + A chaotic family is on a road trip across a rugged landscape. In the back seat, the dad has a broken leg, the mom tries to laugh when she's not holding back tears, and the younger child keeps exploding into car karaoke. Only the older brother is quiet. (repeat). + + Panah Panahi + Mastaneh Mohajer + Panah Panahi + + 2021 + Travel + Drama + Family + Comedy + + + TV-14 + + + + Queen Bees + This comedy film follows a strong-willed and independent senior who moves temporarily into Pine Grove Senior Community, a local retirement community whilst her house undergoes repairs. But as her eyes are opened to making new friends, hobbies, and perhaps even romance, she encounters some residents that remind her of high school cliques all over again. (repeat). + + Ellen Burstyn + James Caan + Ann-Margret + Jane Curtin + Loretta Devine + Christopher Lloyd + Walter Murphy + Michael Lembeck + Harrison Powell + Donald Martin + + 2021 + Drama + Comedy + + + 5.2/10 + + + + The Kite Runner + In this moving adaptation of Khaled Hosseini's popular novel, an Afghani writer living in America who is haunted by the past returns to his homeland to help the son of a childhood friend. Khalid Abdalla, Homayoun Ershadi. Directed by Marc Forster. (repeat). + + Saïd Taghmaoui + Sayed Jafar + Masihullah Gharibzada + Saeed Meeran Farhad + Peg McKibbin + Maimoona Ghizal + Alberto Iglesias + Marc Forster + Rebecca Yeldham + E. Bennett Walsh + David Benioff + + 2007 + Drama + + + 6.1/10 + + + + Proof + This adaptation of David Auburn's Pulitzer Prize-winning play about sisters coping with the death of their mentally unstable math-genius father features superb performances by Gwyneth Paltrow, Hope Davis and Anthony Hopkins. Jake Gyllenhaal. Directed by John Madden ("Shakespeare in Love"). (repeat). + + Gwyneth Paltrow + Anthony Hopkins + Jake Gyllenhaal + Hope Davis + Roshan Seth + Danny McCarthy + Stephen Warbeck + John Madden + James D. Stern + John N. Hart Jr. + David Auburn + + 2005 + Drama + + + 6.4/10 + + + + Mrs. Brown + Judi Dench received an Oscar nod for her stirring portrayal of the widowed Queen Victoria in this drama. The downtrodden queen's spirits are lifted when she meets a Scottish servant (Billy Connolly) who eventually breaks through her emotional barrier, forming a loving relationship that has the whole nation whispering of scandalous affairs. John Madden, Gerald Butler, Antony Sher, Richard Pasco. (repeat). + + Judi Dench + Billy Connolly + Geoffrey Palmer + Antony Sher + Richard Pasco + David Westhead + Stephen Warbeck + John Madden + Andrea Calderwood + Jeremy Brock + + 1997 + Drama + + 7.1/10 + + + + Senior Moments + Season 2, Episode 1 + A retiree unexpectedly finds love when his driver's license is revoked. (repeat). + 2017 + Reality + Comedy + S2 E1 + + TV-14 + + + + Hit the Road + A chaotic family is on a road trip across a rugged landscape. In the back seat, the dad has a broken leg, the mom tries to laugh when she's not holding back tears, and the younger child keeps exploding into car karaoke. Only the older brother is quiet. (repeat). + + Panah Panahi + Mastaneh Mohajer + Panah Panahi + + 2021 + Travel + Drama + Family + Comedy + + + TV-14 + + + + Sisters with Transistors + This music documentary spotlights the overlooked history of the first generation of female pioneers and innovators in electronic music. By using archival footage and audio, it explores how they embraced synthesizers and sampling — while struggling in a male-dominated space and a generally sexist era — and made a memorable impact on popular culture. (repeat). + + Lisa Rovner + Anna Vaney + + 2020 + Documentary + Music + + + TV-PG + + + 8.2/10 + + + + Mistletoe Ranch + Up-and-coming photographer Aimée strives to make it in the photography world. She finds herself squandering her talents as her demanding boss's assistant. A letter from her estranged family suddenly brings Aimée back to her rural childhood home, where she encounters more than she had ever hoped to expect amidst the holiday season. (repeat). + + Rhiannon Bannenberg + Steve Jaggi + Claire J. Harris + + 2022 + Drama + Action & Adventure + + TV-G + + + + Stand and Deliver + Teacher Jaime Escalante's unconventional methods inspire unmotivated students at a Los Angeles barrio high school. Fact-based. (repeat). + + Edward James Olmos + Lou Diamond Phillips + Vanessa Marquez + Andy Garcia + Virginia Paris + Carmen Argenziano + Craig Safan + Ramon Menendez + Lindsay Law + Ramón Menéndez + + 1988 + Drama + + + TV-PG + + + 7.7/10 + + + + Saving Flora + A circus Elephant named Flora who can no longer perform her tricks is scheduled to be euthanized. However, the night before, Dawn, the circus owner's 14-year-old daughter, escapes from the circus together with Flora to take her away from danger. Dawn's mission is to take Flora to the elephant preserve where she will be safe from any harm. To achieve it, they will need to make it through kilometers of woods, an enraged river, and two elephant hunters. (repeat). + + Jenna Ortega + David Arquette + Martin Martinez + Tom Arnold + Rhea Perlman + Leonor Varela + Robert Rettberg + Mark Taylor + Mark Drury + Brad Billington + David Moss + + 2018 + Drama + Family + Action & Adventure + + + TV-PG + + + -0.1/10 + + + + Arctic Tale + Stunning cinematography and two fun subjects, a polar bear and a walrus, mark this appealing nature study, which also offers an environmental message. Husband-and-wife co-directors Adam Ravetch and Sarah Robertson spent six years filming the project. Hip-hop superstar Queen Latifah provides a lively narration. One of the three screenwriters is Kristin Gore, daughter of former vice president Al Gore. The production is from National Geographic Films ("March of the Penguins.") (repeat). + + Joby Talbot + Adam Ravetch + Sarah Robertson + Adam Leipzig + Linda Woolverton + + 2007 + Documentary + Action & Adventure + + + 6.4/10 + + + + Baby Boom + A successful Manhattan yuppie becomes the custodian for a one-year old. Though she plans to give the child up for adoption, she grows to love motherhood, leading to an unexpected career change. (repeat). + + Harold Ramis + Sam Shepard + James Spader + Sam Wanamaker + Pat Hingle + Britt Leach + Bill Conti + Charles Shyer + Nancy Meyers + Charles Shyer + + 1987 + Drama + Family + Comedy + + + TV-PG + + + 5.3/10 + + + + Mistletoe Ranch + Up-and-coming photographer Aimée strives to make it in the photography world. She finds herself squandering her talents as her demanding boss's assistant. A letter from her estranged family suddenly brings Aimée back to her rural childhood home, where she encounters more than she had ever hoped to expect amidst the holiday season. (repeat). + + Rhiannon Bannenberg + Steve Jaggi + Claire J. Harris + + 2022 + Drama + Action & Adventure + + TV-G + + + + Marcel: The Shell with Shoes On + The animated film follows the life of a young mollusk named Marcel as he discovers the world anew. When a documentary filmmaker shares an online snippet of Marcel, the shy shell goes viral. Soon, Marcel goes on a life-changing adventure to find his lost family. (repeat). + + Dean Fleischer-Camp + Isabella Rossellini + Joe Gabler + Shari Finkelstein + Samuel Painter + Blake Hottle + Disasterpeace + Dean Fleischer-Camp + William Byerley + Dean Fleischer-Camp + + 2021 + Drama + Comedy + + + + Hoosiers + A disgraced basketball coach takes a job at a small Indiana high-school and leads the small squad on an improbable run for a state championship. Meanwhile, he helps the town drunk, a former basketball player, redeem himself. (repeat). + + Gene Hackman + Dennis Hopper + Barbara Hershey + Sheb Wooley + Fern Persons + Chelcie Ross + Jerry Goldsmith + David Anspaugh + John Daly + Alvin Sargent + + 1986 + Drama + Family + + + TV-PG + + + 7.6/10 + + + + Baby Boom + A successful Manhattan yuppie becomes the custodian for a one-year old. Though she plans to give the child up for adoption, she grows to love motherhood, leading to an unexpected career change. (repeat). + + Harold Ramis + Sam Shepard + James Spader + Sam Wanamaker + Pat Hingle + Britt Leach + Bill Conti + Charles Shyer + Nancy Meyers + Charles Shyer + + 1987 + Drama + Family + Comedy + + + TV-PG + + + 5.3/10 + + + + Moonstruck + A Brooklyn widow, engaged to a mama's boy, falls in love with her fiancé's brother. (repeat). + + Cher + Nicolas Cage + Olympia Dukakis + Vincent Gardenia + Danny Aiello + Julie Bovasso + Dick Hyman + Norman Jewison + Norman Jewison + John Patrick Shanley + + 1987 + Drama + Comedy + + + TV-PG + + + 8.3/10 + + + + Stand and Deliver + Teacher Jaime Escalante's unconventional methods inspire unmotivated students at a Los Angeles barrio high school. Fact-based. (repeat). + + Edward James Olmos + Lou Diamond Phillips + Vanessa Marquez + Andy Garcia + Virginia Paris + Carmen Argenziano + Craig Safan + Ramon Menendez + Lindsay Law + Ramón Menéndez + + 1988 + Drama + + + TV-PG + + + 7.7/10 + + + + Hoosiers + A disgraced basketball coach takes a job at a small Indiana high-school and leads the small squad on an improbable run for a state championship. Meanwhile, he helps the town drunk, a former basketball player, redeem himself. (repeat). + + Gene Hackman + Dennis Hopper + Barbara Hershey + Sheb Wooley + Fern Persons + Chelcie Ross + Jerry Goldsmith + David Anspaugh + John Daly + Alvin Sargent + + 1986 + Drama + Family + + + TV-PG + + + 7.6/10 + + + + Arctic Tale + Stunning cinematography and two fun subjects, a polar bear and a walrus, mark this appealing nature study, which also offers an environmental message. Husband-and-wife co-directors Adam Ravetch and Sarah Robertson spent six years filming the project. Hip-hop superstar Queen Latifah provides a lively narration. One of the three screenwriters is Kristin Gore, daughter of former vice president Al Gore. The production is from National Geographic Films ("March of the Penguins.") (repeat). + + Joby Talbot + Adam Ravetch + Sarah Robertson + Adam Leipzig + Linda Woolverton + + 2007 + Documentary + Action & Adventure + + + 6.4/10 + + + + Saving Flora + A circus Elephant named Flora who can no longer perform her tricks is scheduled to be euthanized. However, the night before, Dawn, the circus owner's 14-year-old daughter, escapes from the circus together with Flora to take her away from danger. Dawn's mission is to take Flora to the elephant preserve where she will be safe from any harm. To achieve it, they will need to make it through kilometers of woods, an enraged river, and two elephant hunters. (repeat). + + Jenna Ortega + David Arquette + Martin Martinez + Tom Arnold + Rhea Perlman + Leonor Varela + Robert Rettberg + Mark Taylor + Mark Drury + Brad Billington + David Moss + + 2018 + Drama + Family + Action & Adventure + + + TV-PG + + + -0.1/10 + + + + Queen Bees + This comedy film follows a strong-willed and independent senior who moves temporarily into Pine Grove Senior Community, a local retirement community whilst her house undergoes repairs. But as her eyes are opened to making new friends, hobbies, and perhaps even romance, she encounters some residents that remind her of high school cliques all over again. (repeat). + + Ellen Burstyn + James Caan + Ann-Margret + Jane Curtin + Loretta Devine + Christopher Lloyd + Walter Murphy + Michael Lembeck + Harrison Powell + Donald Martin + + 2021 + Drama + Comedy + + + 5.2/10 + + + + The Mighty + A moving coming-of-age tale about two mismatched teens---one (Elden Henson) a slow-witted giant, the other (Kieran Culkin) a bright boy with a degenerative disease. The smaller boy tutors his large friend, who in turn protects the little guy. Sharon Stone, Gena Rowlands, Harry Dean Stanton, Gillian Anderson, James Gandolfini. (repeat). + + Sharon Stone + Gena Rowlands + Harry Dean Stanton + Gillian Anderson + James Gandolfini + Kieran Culkin + Trevor Jones + Peter Chelsom + Simon Fields + Charles Leavitt + + 1998 + Drama + Comedy + Science Fiction + + + Spotlights: A Showtime Short Film Series + Raspberry + In "Raspberry," a son struggles to say goodbye to his dead father. (repeat). + + Kelly Fulton + + 2022 + S1 E14 + + TV-PG + + + + The Pink Panther + Hapless, hopeless and frenetically bumbling Inspector Jacques Clouseau rides again in this priceless gem about a murder investigation involving a famous soccer coach and the search for a one-of-a-kind diamond called the "Pink Panther." (repeat). + + Steve Martin + Beyoncé Knowles + Kevin Kline + Emily Mortimer + Kristin Chenoweth + Jean Reno + Christophe Beck + Blake Edwards + Martin Jurow + Tom Pollock + Len Blum + + 2006 + Drama + Comedy + Action & Adventure + + + TV-PG + + + 3.8/10 + + + + Mansfield Park + Frances O'Connor stars in this updated version of Jane Austen's novel about an independent woman. Writer-director Patricia Rozema imbues the story with a modern sensibility, making strong points about the expectations of 19th-century women to marry and look pretty. Embeth Davidtz, Jonny Lee Miller. (repeat). + + Frances O'Connor + Embeth Davidtz + Jonny Lee Miller + Alessandro Nivola + Harold Pinter + Lindsay Duncan + Lesley Barber + Patricia Rozema + David Aukin + Patricia Rozema + + 1999 + Drama + + + 7.1/10 + + + + Monster Trucks + A teenager befriends an otherworldly creature, which is able to crawl inside his pickup truck and act as a supercharged engine. Soon enough, the duo must stop an oil company from wreaking havoc on their town in this charming family adventure. (repeat). + + Jane Levy + Lucas Till + Thomas Lennon + Holt McCallany + Barry Pepper + Aliyah O'Brien + David Sardy + Chris Wedge + Mary Parent + Mary Parent + Jonathan Aibel + + 2016 + Comedy + Action & Adventure + Science Fiction + + + 4.1/10 + + + + The Mighty + A moving coming-of-age tale about two mismatched teens---one (Elden Henson) a slow-witted giant, the other (Kieran Culkin) a bright boy with a degenerative disease. The smaller boy tutors his large friend, who in turn protects the little guy. Sharon Stone, Gena Rowlands, Harry Dean Stanton, Gillian Anderson, James Gandolfini. (repeat). + + Sharon Stone + Gena Rowlands + Harry Dean Stanton + Gillian Anderson + James Gandolfini + Kieran Culkin + Trevor Jones + Peter Chelsom + Simon Fields + Charles Leavitt + + 1998 + Drama + Comedy + Science Fiction + + + The Fabelmans + Inspired by true events, the narrative follows Sammy Fabelman on a journey of self-discovery. At the age of seven, Sammy lives a simple life with his parents Burt and Mitzi. After finding out an unsettling family secret, Sammy falls in love with cinema and its power to tell stories. (repeat). + + Michelle Williams + Paul Dano + Seth Rogen + Gabriel Labelle + Mateo Zoryon Francis-DeFord + Keeley Karsten + John Williams + Steven Spielberg + Josh McLaglen + Steven Spielberg + + 2023 + Drama + Comedy + + + 8.4/10 + + + + The Godfather, Part II + Michael Corleone (Al Pacino) rules his father's criminal empire, while flashbacks recall young Vito's (Robert De Niro) climb to power. + + Al Pacino + Robert Duvall + Diane Keaton + + 1974 + Movies + Crime Story + + + TV14 + + + 4 + + + + Mario Puzo's The Godfather, Coda: The Death of Michael Corleone + Dignified Michael Corleone (Al Pacino) joins his wild nephew in a Sicilian vendetta involving the Vatican. + + Al Pacino + Diane Keaton + Talia Shire + + 1990 + Movies + Crime Story + + + TVPG + + + 3 + + + + Mario Puzo's The Godfather, Coda: The Death of Michael Corleone + Dignified Michael Corleone (Al Pacino) joins his wild nephew in a Sicilian vendetta involving the Vatican. + + Al Pacino + Diane Keaton + Talia Shire + + 1990 + Movies + Crime Story + + + TVPG + + + 3 + + + + The Woman in Red + A married San Francisco public-relations agent (Gene Wilder) sees an ad-campaign model (Kelly LeBrock) and becomes obsessed with her. + + Gene Wilder + Kelly LeBrock + Charles Grodin + + 1984 + Movies + Comedy + + + TVG + + + 2 + + + + A Love Song + Faye is a lone traveler who bides her time fishing, birding and stargazing at a rural Colorado campground as she awaits the arrival of Lito, a figure from her past who's navigating his own tentative and nomadic journey across the rugged West. + + Dale Dickey + Wes Studi + Michelle Wilson + + 2022 + Movies + Drama + + + + Mafia Mamma + A mild-mannered suburban mom unexpectedly inherits her late grandfather's mafia empire in Italy. Guided by the firm's trusted consigliere, she hilariously defies everyone's expectations as she finds herself stuck in the middle of a deadly mob war. + + Toni Collette + Monica Bellucci + Sophia Nomvete + + 2023 + Movies + Action + + + 1 + + + + The Curious Case of Benjamin Button + Benjamin Button (Brad Pitt) is born an old man in 1918 New Orleans and ages in reverse and, in so doing, becomes intimately familiar with the natures of love and death. + + Brad Pitt + Cate Blanchett + Taraji P. Henson + + 2008 + Movies + Fantasy + + + TVG + + + 3 + + + + The Fabelmans + Young Sammy Fabelman falls in love with movies after his parents take him to see. + + Michelle Williams + Paul Dano + Seth Rogen + + 2022 + Movies + Drama + + + TVG + + + 3 + + + + There Will Be Blood + Daniel Plainview (Daniel Day-Lewis) becomes a self-made oil tycoon, but he deviates into moral bankruptcy as his material fortune grows. + + Daniel Day-Lewis + Paul Dano + Kevin J. O'Connor + + 2007 + Movies + Drama + + + TVPG + + + 4 + + + + Sweeney Todd: The Demon Barber of Fleet Street + After serving time for a crime he did not commit, a vengeful barber (Johnny Depp) and his accomplice (Helena Bonham Carter) carve up unlucky customers and bake them in meat pies. + + Johnny Depp + Helena Bonham Carter + Alan Rickman + + 2007 + Movies + Musical + + + TVPG + + + 3 + + + + Scream VI + Four survivors of the Ghostface murders leave Woodsboro behind for a fresh start in New York City. However, they soon find themselves in a fight for their lives when a new killer embarks on a bloody rampage. + + Melissa Barrera + Jenna Ortega + Courteney Cox + + 2023 + Movies + Hallowe'en + Horror + + + TVPG + + + 2 + + + + Mafia Mamma + A mild-mannered suburban mom unexpectedly inherits her late grandfather's mafia empire in Italy. Guided by the firm's trusted consigliere, she hilariously defies everyone's expectations as she finds herself stuck in the middle of a deadly mob war. + + Toni Collette + Monica Bellucci + Sophia Nomvete + + 2023 + Movies + Action + + + 1 + + + + Failure to Launch + The parents of a young man (Matthew McConaughey) who still lives at home hire a beautiful woman (Sarah Jessica Parker) to entice him to finally leave the nest. + + Matthew McConaughey + Sarah Jessica Parker + Zooey Deschanel + + 2006 + Movies + Romance + + + TVG + + + 2 + + + + In & Out + An actor's (Matt Dillon) comment stirs media speculation about his prim Midwestern teacher's (Kevin Kline) sexuality. + + Kevin Kline + Joan Cusack + Matt Dillon + + 1997 + Movies + Comedy + + + TVG + + + 2 + + + + In & Out + An actor's (Matt Dillon) comment stirs media speculation about his prim Midwestern teacher's (Kevin Kline) sexuality. + + Kevin Kline + Joan Cusack + Matt Dillon + + 1997 + Movies + Comedy + + + TVG + + + 2 + + + + Into the Wild + Following his graduation from college, Christopher McCandless (Emile Hirsch) gives up his savings and possessions and makes an ill-fated trek to the Alaskan wilderness. + + Emile Hirsch + Marcia Gay Harden + William Hurt + + 2007 + Movies + Drama + + + TVG + + + 3 + + + + Homefront + A former DEA agent (Jason Statham) returns to action to save his daughter and his new town from a drug-dealing sociopath (James Franco). + + Jason Statham + James Franco + Winona Ryder + + 2013 + Movies + Action + + + TVPG + + + 2 + + + + The Integrity of Joseph Chambers + Fearing the apocalypse, an insurance salesman embarks on a solo hunting experiment, only to face a traumatic incident. + + Clayne Crawford + Jordana Brewster + Colt Crawford + + 2022 + Movies + Drama + + + + Mansfield Park + Sent to live with relatives by her impoverished parents, a girl grows up, becomes a writer and falls in love. + + Embeth Davidtz + Jonny Lee Miller + Alessandro Nivola + + 1999 + Movies + History + + + TVG + + + 3 + + + + In the Bedroom + A tragedy involving a doctor (Tom Wilkinson), his wife (Sissy Spacek) and their college-age son (Nick Stahl) reveals the chasm in the relationship. + + Sissy Spacek + Tom Wilkinson + Nick Stahl + + 2001 + Movies + Drama + + + TV14 + + + 3 + + + + What If + A medical-school dropout (Daniel Radcliffe) tries to hide his attraction to his new friend (Zoe Kazan), a bubbly artist who already has a boyfriend. + + Daniel Radcliffe + Zoe Kazan + Megan Park + + 2013 + Movies + Romance + + + TVG + + + 2 + + + + Amistad + U.S. lawyers (Anthony Hopkins, Matthew McConaughey) defend Africans who revolted against their Spanish captors aboard a slave ship in 1839. + + Morgan Freeman + Anthony Hopkins + Matthew McConaughey + + 1997 + Movies + History + + + TVPG + + + 3 + + + + Inside Llewyn Davis + In 1960s New York, a struggling folk singer (Oscar Isaac) with genuine talent sets his sights on stardom, but success proves elusive. + + Oscar Isaac + Carey Mulligan + John Goodman + + 2013 + Movies + Drama + + + TVG + + + 3 + + + + Boyhood + A youngster (Ellar Coltrane) makes the long journey to adulthood over the span of 12 years, as he, his sister (Lorelei Linklater) and his mother (Patricia Arquette) move around Texas. + + Ellar Coltrane + Patricia Arquette + Ethan Hawke + + 2014 + Movies + Drama + + + TVG + + + 4 + + + + The Perks of Being a Wallflower + Friends (Emma Watson, Ezra Miller) try to help an introverted teenager (Logan Lerman) become more sociable. + + Logan Lerman + Emma Watson + Ezra Miller + + 2012 + Movies + Romance + + + TVG + + + 3 + + + + The DUFF + A high-school senior (Mae Whitman) sets out to reinvent herself and revolutionize the student body's social order after learning that a judgmental classmate has given her an embarrassing nickname. + + Mae Whitman + Robbie Amell + Bella Thorne + + 2015 + Movies + Romance + + + TVG + + + 2 + + + + When Harry Met Sally... + Two Manhattan careerists (Billy Crystal, Meg Ryan) first hate, then like and eventually love each other over the course of 12 years. + + Billy Crystal + Meg Ryan + Carrie Fisher + + 1989 + Movies + Romance + + + TVG + + + 4 + + + + When Harry Met Sally... + Two Manhattan careerists (Billy Crystal, Meg Ryan) first hate, then like and eventually love each other over the course of 12 years. + + Billy Crystal + Meg Ryan + Carrie Fisher + + 1989 + Movies + Romance + + + TVG + + + 4 + + + + The Woman in Red + A married San Francisco public-relations agent (Gene Wilder) sees an ad-campaign model (Kelly LeBrock) and becomes obsessed with her. + + Gene Wilder + Kelly LeBrock + Charles Grodin + + 1984 + Movies + Comedy + + + TVG + + + 2 + + + + Mystic Pizza + Three teenage girls (Julia Roberts, Annabeth Gish, Lili Taylor) come of age one summer working in a pizza parlor in Mystic, Conn. + + Julia Roberts + Annabeth Gish + Lili Taylor + + 1988 + Movies + Romance + + + TVG + + + 3 + + + + Cool World + A cartoonist (Gabriel Byrne) is seduced by Holli Would (Kim Basinger), a curvy doodle who wants to be human. + + Kim Basinger + Gabriel Byrne + Brad Pitt + + 1992 + Movies + Fantasy + + + TVPG + + + 2 + + + + The SpongeBob SquarePants Movie + SpongeBob (Tom Kenny) and Patrick (Bill Fagerbakke) head for Shell City to retrieve King Neptune's stolen crown and save the life of Mr. Krabs (Clancy Brown). + + Tom Kenny + Bill Fagerbakke + Clancy Brown + + 2004 + Movies + Animated + + + TVG + + + 3 + + + + All Up in the Biz + Celebrity interviews and rare archival footage provide insight into the life and legacy of hip-hop icon Biz Markie. + 2023 + Movies + Documentary + + + TVMA + + + + The Queen + Queen Elizabeth II (Helen Mirren) and Prime Minister Tony Blair (Michael Sheen) try to reach a compromise in determining the royal family's public reaction to Princess Diana's death. + + Helen Mirren + Michael Sheen + James Cromwell + + 2006 + Movies + Drama + + + TVG + + + 3 + + + + Semper Fi + Cal is a dedicated cop who also serves as a sergeant in the Marine Corps Reserve. When his reckless half brother lands in jail for accidentally killing a man, Cal and his buddies hatch a plan to break him out of prison -- no matter what the cost. + + Jai Courtney + Nat Wolff + Finn Wittrock + + 2019 + Movies + Thriller + + + TVPG + + + + Sleeping With the Enemy + The battered wife (Julia Roberts) of a yuppie neat-freak (Patrick Bergin) fakes her death at sea and flees from Cape Cod to Iowa. + + Julia Roberts + Patrick Bergin + Kevin C. Anderson + + 1991 + Movies + Thriller + + + TVPG + + + 2 + + + + Bandit + After escaping from a Michigan prison, a charming career criminal assumes a new identity in Canada and goes on to rob a record 59 banks and jewellery stores while being hunted by a police task force. + + Josh Duhamel + Elisha Cuthbert + Mel Gibson + + 2022 + Movies + Action + + + + Stillwater + An Oklahoma man travels to Marseille, France, to prove that his estranged daughter is innocent of murder. Confronted with language barriers, cultural differences and a complicated legal system, he soon makes it his personal mission to exonerate her. + + Matt Damon + Camille Cottin + Abigail Breslin + + 2021 + Movies + Drama + + + 2 + + + + True Grit + A teenage girl (Hailee Steinfeld) enlists the aid of a boozy, trigger-happy lawman (Jeff Bridges) to hunt down her father's killer (Josh Brolin). + + Jeff Bridges + Matt Damon + Josh Brolin + + 2010 + Movies + Western + + + TVPG + + + 3 + + + + Fellow Travelers + Bulletproof + Hawk distances himself from Tim when the State Department begins investigations; Mary comes under suspicion; Marcus loses his job after a dispute with Roy Cohn; Hawk draws closer to Lucy. + + Matt Bomer + Jonathan Bailey + Noah J. Ricketts + + Drama + + + + The Inspection + Based on the incredible true story of a gay Black man with few options who joins the Marines to prove himself to his estranged mother and triumph in a system that cast him aside, unexpectedly finding strength and camaraderie in this new community. + + Jeremy Pope + Raul Castillo + McCaul Lombardi + + 2022 + Movies + Drama + + + TVPG + + + 3 + + + + Bridge of Spies + During the Cold War, a CIA operative (Scott Shepherd) recruits New York lawyer James Donovan (Tom Hanks) to negotiate a prisoner exchange for captured U.S. pilot Francis Gary Powers (Austin Stowell). + + Tom Hanks + Mark Rylance + Alan Alda + + 2015 + Movies + History + + + TVG + + + 3 + + + + Bridge of Spies + During the Cold War, a CIA operative (Scott Shepherd) recruits New York lawyer James Donovan (Tom Hanks) to negotiate a prisoner exchange for captured U.S. pilot Francis Gary Powers (Austin Stowell). + + Tom Hanks + Mark Rylance + Alan Alda + + 2015 + Movies + History + + + TVG + + + 3 + + + + Fellow Travelers + Bulletproof + Hawk distances himself from Tim when the State Department begins investigations; Mary comes under suspicion; Marcus loses his job after a dispute with Roy Cohn; Hawk draws closer to Lucy. + + Matt Bomer + Jonathan Bailey + Noah J. Ricketts + + Drama + + + + Eyes Wide Shut + A doctor (Tom Cruise) explores his relationship with his wife (Nicole Kidman) by delving into a sensual underworld. + + Tom Cruise + Nicole Kidman + Sydney Pollack + + 1999 + Movies + Drama + + + TVPG + + + 3 + + + + The Whale + A reclusive English teacher, living alone in the wake of a tragedy, attempts to reconnect with his teenage daughter for one last chance at redemption. + + Brendan Fraser + Sadie Sink + Hong Chau + + 2022 + Movies + Drama + + + TVPG + + + 2 + + + + Columbus + When a renowned architecture scholar suddenly becomes ill, his estranged son finds himself stranded in Columbus, Ind. He soon strikes up a friendship with a young architecture enthusiast who has her own conflicted emotions. + + John Cho + Haley Lu Richardson + Rory Culkin + + 2017 + Movies + Drama + + + + Saving Flora + After learning that an aging circus elephant is scheduled to be euthanized, the circus owner's daughter decides to kidnap her and relocate her to an elephant preserve. + + Jenna Ortega + David Arquette + Tom Arnold + + 2018 + Movies + Children + + + + Boys and Girls + Two longtime friends (Freddie Prinze Jr., Claire Forlani), each with a string of failed romances, wonder if they should date each other. + + Freddie Prinze Jr. + Claire Forlani + Jason Biggs + + 2000 + Movies + Romance + + + TVG + + + 1 + + + + A Love Song + Faye is a lone traveler who bides her time fishing, birding and stargazing at a rural Colorado campground as she awaits the arrival of Lito, a figure from her past who's navigating his own tentative and nomadic journey across the rugged West. + + Dale Dickey + Wes Studi + Michelle Wilson + + 2022 + Movies + Drama + + + + Unfaithful + A man (Richard Gere) becomes increasingly distraught after he discovers his wife (Diane Lane) is having an affair with a Frenchman (Olivier Martinez). + + Richard Gere + Diane Lane + Olivier Martinez + + 2002 + Movies + Drama + + + TVPG + + + 3 + + + + Need for Speed + Determined to take down his treacherous rival (Dominic Cooper), a street-car racer (Aaron Paul) runs through a cross-country net of cops and bounty hunters to enter the most prestigious race in the underground racing circuit. + + Aaron Paul + Dominic Cooper + Imogen Poots + + 2014 + Movies + Action + + + TVG + + + 2 + + + + Brick Mansions + An undercover cop (Paul Walker) joins forces with an ex-con (David Belle) to rescue his kidnapped girlfriend and save Detroit from destruction. + + Paul Walker + David Belle + RZA + + 2014 + Movies + Action + + + TVPG + + + 2 + + + + Ten Steps to Disaster + Mount St. Helens + On May 18, 1980, Washington state's Mount St. Helens erupts; revisiting the destructive volcanic event and revealing ten failures that escalated the catastrophe, including ignored warnings, inadequate safety zones and poor rescue planning. + Documentary + + + TV14 + + + + Volcanoes: Dual Destruction + The eruption of Guatemala's Fuego volcano kills hundreds as a pyroclastic flow roars down its slopes; the eruption of Hawaii's Kilauea volcano is a slow-motion disaster, starting with small earthquakes before bursting into residential neighborhoods. + Specials + Documentary + + + TVPG + + + + Yellowstone Supervolcano + A supervolcano brewing beneath Yellowstone National Park could be the worst natural disaster in history. + Specials + Science + + + TVPG + + + + Air Disasters + Who's Flying the Plane? + Aviation disasters that resulted from problems with autopilots and computerized systems. + Documentary + Drama + + + TVG + + + + Air Disasters + Fire on Board + A Swissair passenger jet catches fire midflight and crashes into the Atlantic, leading to one of the largest investigations in aviation history. + Documentary + + + TV14 + + + + Air Disasters + Lost + An American Airlines Flight en route to Cali, Colombia loses their exact position and flies into a mountain. + Documentary + + + TV14 + + + + Air Disasters + Kathmandu Descent + A challenging descent in the Himalayas turns tragic when the pilots miscalculate their approach to a Kathmandu airport. + Documentary + + + TV14 + + + + Air Disasters + Impossible Pitch + Investigating why a cargo jet took a nosedive into the Swedish Arctic at speeds nearing 600 mph. + Documentary + + + TV14 + + + + Air Disasters + Runaway Train + A freight train carrying an excess of cargo loses its brakes while descending a mountain causing it to gain speed and derail into a neighborhood killing several people. + Documentary + Drama + + + TVG + + + + Air Disasters + Collision Course + A passenger ferry sinks after crashing into rocks off the coast of a Greek island, killing 82, and leading to a shocking investigation. + Documentary + + + TV14 + + + + Air Disasters + Head-On Collision + With its conductors sound asleep, a freight train fails to stop and collides with an oncoming train, resulting in tragedy. + Documentary + Drama + + + TVG + + + + Aerial America + Tennessee + From battlefields where hundreds died to Beale Street where musical legends were born. + Documentary + + + TVG + + + + Aerial America + Hawaii + The stories and sights of Hawaii's major islands. + Documentary + + + TVG + + + + Aerial America + Nebraska + Soaring above the Cornhusker State's vast farms, towering spires, desolate badlands, and gleaming cities. + Documentary + + + TVG + + + + Aerial America + Wisconsin + Tour the Wisconsin State Capitol and Milwaukee City Hall, once the tallest building in the world. + Documentary + + + TVG + + + + Aerial America + Puerto Rico & US Virgin Islands + A tour over two U.S. territories: Puerto Rico and the U.S. Virgin Islands. + Documentary + + + TVG + + + + Aerial America + Washington D.C + The unique landscape, history and colorful story of the Nation's Capital. + Documentary + + + TVG + + + + Aerial America + Massachusetts + The Bay State; Martha's Vineyard; Bambino's Curse. + Documentary + + + TVG + + + + Aerial America + Georgia + The Empire State of the South; ancient Moundbuilders to the Cherokee Indians. + Documentary + + + TVG + + + + Aerial America + Washington + Home to some of America's highest mountains; Mount St. Helens. + Documentary + + + TVG + + + + Aerial America + New Hampshire + Ancestral home of the Abenaki Indians; Henry David Thoreau's first book; Mount Monadnock. + Documentary + + + TVG + + + + Air Disasters + Ripped Apart + Design innovations evolve as a result of terrible air disasters due to pressurization failure or explosive decompression. + Documentary + Drama + + + TVG + + + + Air Disasters + Power Play + History's most terrifying air disasters, and the investigations that followed, are revisited and reexamined. + Documentary + + + TV14 + + + + Air Disasters + Controversial Crashes + Seeing how international investigative teams must overcome differences to solve controversial plane crashes. + Documentary + + + TV14 + + + + Ice Airport Alaska + Snow Bomb + Record-breaking snow in Anchorage could shut the airport. A novice pilot tests his nerve landing on a frozen lake. USAF aircrews battle the toughest Arctic survival training, and a unique aircraft workshop Alaska-proofs a vintag. + Documentary + + + TVPG + + + + Ice Airport Alaska + Ice Warriors + Hurricane Hunters fly into a storm to save lives in Alaska's bush. A rookie chopper pilot faces dangerous winds, snowstorms threaten vital combat training for USAF in the Arctic Circle. + Documentary + + + TVG + + + + On the Fly: Adventures at Altitude + Walking On Air + A family of wing walkers puts their daughter's boyfriend to the test, a real life superhero shows that you don't need a plane to fly, and a group of animal-lovers race against time to fly stray dogs to new families on the mainland. + Documentary + + + TVPG + + + + Air Disasters + Into the Eye of the Storm + On 15 September 1989, a National Oceanic and Atmospheric Administration aircraft tasked with intercepting Hurricane Hugo over the Caribbean islands is jolted by strong winds, causing an engine to catch fire and fail. + Documentary + + + TV14 + + + + Air Disasters + Death of the President + Polish Air Force Flight 101, carrying the President of Poland Lech Kaczynski, his wife Maria Kaczynska and other top officials, crashes in a wooded area while on final approach to Smolensk North Airport in heavy fog and low visibility. + Documentary + + + TV14 + + + + Air Disasters + Deadly Mission + A new investigation sheds light on the controversial 1961 plane crash that killed U.N. Secretary-General Dag Hammarskjöld. + Documentary + + + TV14 + + + + Air Disasters + Deadly Silence + Investigators try to figure out why a private Learjet carrying golf legend Payne Stewart went rogue before crashing in a South Dakota hayfield. + Documentary + + + TV14 + + + + Air Disasters + Kobe Bryant + When basketball legend Kobe Bryant is killed in a helicopter crash in Calabasas, investigators examine the data, the wreckage, and the pilot's actions for clues. + Documentary + + + TV14 + + + + Air Disasters + Accident or Assassination + A plane carrying Mexico's interior minister crashes into Mexico City's financial district. + Documentary + + + TV14 + + + + Air Disasters + A Wounded Bird + A blade on the left-side propeller of Atlantic Southeast Airlines Flight breaks off; the imbalance of the rotating propeller causes the engine to partly tear itself from its mounting. + Documentary + + + TV14 + + + + Air Disasters + Fanning the Flames + A complex recovery operation is launched to find out if a 747 which disappeared into the Indian Ocean was carrying illegal weapons. + Documentary + + + TV14 + + + + Air Disasters + Southern Storm + Pilots of Southern Airways Flight 242 must try to land on a Georgia highway after the engines die and the windshield shatters. + Documentary + + + TV14 + + + + Air Disasters + Explosive Evidence + A bomb explodes on Air India Flight 182 en route from Canada to India causing it to disintegrate over the coast of Ireland. + Documentary + + + TV14 + + + + Air Disasters + Mixed Signals + Conflicting alarms confuse pilots of Birgenair Flight 301 before it crashes into the ocean with no survivors. + Documentary + + + TV14 + + + + Air Disasters + Phantom Strike + In September 2006, a brand-new Legacy business jet collides with a Boeing 737 over the Amazon Rain Forest. + Documentary + + + TV14 + + + + Air Disasters + Cockpit Catastrophe + After pilots miraculously land an out-of-control plane in Portugal, investigators must determine how the freshly serviced aircraft was released with a fatal flaw. + Documentary + + + TV14 + + + + Air Disasters + Radio Silence + The business jet carrying PGA golfer Payne Stewart and former Alabama football quarterback crashes; how loss of pressurization and structural failure led to this crash and the deadliest aviation accidents in both Greek and Taiwanese history. + Documentary + + + TV14 + + + + Air Disasters + Dream Flight Disaster + When a British tycoon and his family die in a 2017 Australian seaplane crash, investigators spend over two years searching for the reason behind the tragedy. + Documentary + + + TV14 + + + + Air Disasters + Pilot vs. Plane + Air France Flight 296 fails to regain altitude after performing a flyby during an air show at Mulhouse-Habsheim Airport. + Documentary + + + TV14 + + + + Air Disasters + System Breakdown + Five aviation disasters and the changes they have forced air-traffic controllers to make. + Documentary + + + TV14 + + + + Air Disasters + The Final Blow + An Air Inter flight crashes into the Vosges Mountains while attempting to land killing most of the 96 passengers. + Documentary + + + TV14 + + + + Air Disasters + Flying Blind + A cleaning crew makes a careless error while cleaning a Boeing 757, affecting the plane's computer system and causing it to crash into the Pacific Ocean. + Documentary + + + TV14 + + + + Air Disasters + Cleared for Disaster + An air traffic controller's mistake causes a Boeing 737 to land on a runway already occupied by another aircraft. + Documentary + + + TV14 + + + + Air Disasters + Target Is Destroyed + During the Cold War, Korean Air Lines Flight 007 is shot down by a fighter jet when it violates Soviet airspace. + Documentary + + + TV14 + + + + Air Disasters + Borderline Tactics + When a DC-8 cargo jet crashes on approach to a U.S. naval base in Guantanamo, investigators wonder if Cuba played a role. + Documentary + + + TV14 + + + + Air Disasters + Deadly Pitch + An anonymous tip helps uncover the cause of a cargo plane crash in Miami. + Documentary + + + TV14 + + + + Air Disasters + Kid in the Cockpit + A pilot's decision to let his 15-year-old son fly has disastrous consequences on a commercial flight. + Documentary + + + TV14 + + + + Ice Airport Alaska + Ice Warriors + Hurricane Hunters fly into a storm to save lives in Alaska's bush. A rookie chopper pilot faces dangerous winds, snowstorms threaten vital combat training for USAF in the Arctic Circle. + Documentary + + + TVG + + + + Air Disasters + Titanic in the Sky + On 4 November 2010, shortly after takeoff from Singapore, the number-two engine on Qantas Flight 32 partially disintegrates, causing serious damage to its left wing. + Documentary + + + TV14 + + + + Air Disasters + Concorde: Up in Flames + On 25 July 2000, a Concorde operating as Air France Flight 4590 stalls and crashes into a hotel in Gonesse shortly after takeoff from Charles de Gaulle Airport, killing all of the 109 people on board and 4 on the ground. + Documentary + + + TV14 + + + + Air Disasters + Racing the Storm + An MD-82 crash lands in Arkansas during a severe thunderstorm, but investigators believe weather was not the main reason for the accident. + Documentary + + + TV14 + + + + Air Disasters + Control Catastrophe + Documentary + + + TV14 + + + + Air Disasters + Delivery to Disaster + History's most terrifying air disasters, and the investigations that followed, are revisited and reexamined. + Documentary + + + TV14 + + + + Air Disasters + Panic on the Runway + On August 22nd, 1985, 55 people died aboard British Airtours flight 28M when its engine catches fire as it accelerates. + Documentary + + + TV14 + + + + Air Disasters + Design Flaws + When former race car driver Niki Lauda's planes nosedives into a Thai jungle, a one-in-a-million failure reveals a weak spot in every Boeing 767. Radio silence between pilots and air traffic controllers send investigators hunting for answers. + Documentary + + + TV14 + + + + Air Warriors + C-17 + The inside story of the massive military transport aircraft, the C-17. + History + Documentary + + + TVPG + + + + Air Warriors + Chinook + The 50-year evolution of the Army's top transport helicopter, the CH-47 Chinook. + History + Documentary + + + TVPG + + + + Air Warriors + F-22 Raptor + The inside story of the ultimate stealth fighter, the F-22 Raptor, and its predecessors. + History + Documentary + + + TVPG + + + + Air Warriors + P-38 Lightning + Innovative engineering allows the P-38 Lightning to fly faster and climb higher than any other WWII warplane; a twin-propeller fighter with heavy armaments packed into its nose, the P-38 becomes one of America's premiere combat planes during the war. + History + Documentary + + + TVPG + + + + Inside the Factory + Sweets + Gregg Wallace lends a hand unloading a tanker of sugar, and follows its path through a factory to learn how the workers transform it into sweets. + Documentary + + + + Inside the Factory + Cheese + Gregg Wallace goes to a cheese factory that produces 3000 tons of spreadable cheese every year; he follows the production of jalapeno chili-flavored cheese, from a 28,000 liter delivery of milk to 5400 squeezy tubes. + Documentary + + + + Inside the Factory + Cornish Pasties + An all-access tour of the Ginsters bakery in Cornwall reveals the many steps and strict rules to mass-producing a popular British treat, the Cornish pasty. + Documentary + + + + Mighty Cruise Ships + Azamara Journey + Azamara Journey travels the rivers of Southeast Asia, delivering passengers to exotic cities and hidden treasures that larger cruise ships cannot reach. + Travel + Documentary + + + TVG + + + + Mighty Cruise Ships + Koningsdam + Set a course for breathtaking sights on Koningsdam's 15-day voyage from Amsterdam to the northern tip of Norway. + Travel + Documentary + + + TVG + + + + Mighty Cruise Ships + Viking Long Ship Gefjon + Take a river tour through some of Europe's greatest cities--Budapest, Vienna, and Amsterdam--on Viking Longship Gefjon. + Travel + Documentary + + + TVG + + + + Mighty Cruise Ships + Roald Amundsen + The world's latest, most-advanced expedition cruise ship Roald Amundsen whisks passengers on an adventurous voyage to Antarctica. + Travel + Documentary + + + TVG + + + + Mighty Cruise Ships + Viking Sea + The new Viking Sea cruise ship whisks guests away on a journey across the Arctic Circle and into the heart of Norway. + Travel + Documentary + + + TVG + + + + Mighty Cruise Ships + Stella Australis + The only cruise ship designed specifically to navigate the treasures and dangers at the southern tip of South America. + Travel + Documentary + + + TVG + + + + Mighty Cruise Ships + Marco Polo + This 50-year-old ocean liner offers off-season Baltic tours, battling unpredictable weather to deliver one-of-a-kind experiences. + Travel + Documentary + + + TVG + + + + Mighty Cruise Ships + Le Soléal + New luxury liner Le Soleal navigates the uncharted waters of Indonesia to give her passengers one-of-a-kind encounters at exotic destinations. + Travel + Documentary + + + TVG + + + + Mighty Cruise Ships + Regal Princess + Follow mega cruiser Regal Princess as she whisks guests to Germany, Russia, and Scandinavia in style. + Travel + Documentary + + + TVG + + + + On the Fly: Adventures at Altitude + Walking On Air + A family of wing walkers puts their daughter's boyfriend to the test, a real life superhero shows that you don't need a plane to fly, and a group of animal-lovers race against time to fly stray dogs to new families on the mainland. + Documentary + + + TVPG + + + + Air Disasters + Afghan Nightmare + When a cargo plane crashes at a U.S. airfield in Afghanistan, investigators reach a conclusion that ultimately proves incorrect. + Documentary + + + TV14 + + + + Air Disasters + Soccer Tragedy + A plane carrying a Brazilian soccer team crashes just ten miles from the airport in 2016. + Documentary + + + TV14 + + + + Air Disasters + Slam Dunk + A quick trip from Washington D.C. to Ohio in 1994 turns deadly when pilots of a twin-engine turboprop attempt a risky landing. + Documentary + + + TV14 + + + + Air Disasters + Communication Breakdown + A look at three deadly air disasters that were caused by misunderstandings between pilots and air traffic controllers. + + Joanne Boland + Christian Lloyd + Joel Rinzler + + Documentary + + + TV14 + + + + Air Disasters + Fatal Friction + Human flaws cause three plane crashes in England, Colorado and Minnesota. + Documentary + + + TV14 + + + + Air Disasters + Deadly Myth + The crash of a commuter flight to Detroit leads investigators to a cause the industry has known about for years. + Documentary + + + TV14 + + + + Air Disasters + The Turning Point + A Boeing 767 crashes miles from a South Korean runway; the investigation leads to contradicting stories between the surviving pilot and air traffic control. + Documentary + + + TV14 + + + + Mighty Cruise Ships + Marina + Visit Stonehenge, kiss the Blarney Stone and hunt for Nessie on a magical tour of the British Isles, aboard Marina. + Travel + Documentary + + + TVG + + + + Mighty Cruise Ships + Viking Star + We follow passengers and crew aboard Viking Star during its two-week tour from Barcelona to its home port in Bergen, Norway. + Travel + Documentary + + + TVG + + + + Mighty Ships + Norwegian Breakaway: The Build + Follow the building of the Norwegian Breakaway at Germany's Meyer-Werft shipyard; it is the largest ship they've ever built and they have only 18 months to finish it. + Science + + + TVG + + + + Mighty Ships + Norwegian Breakaway: The Voyage + The Norwegian Breakaway cruise ship sets sail on her first voyage, and her captain faces a tough decision when a North Atlantic tempest forms. + Science + + + TVG + + + + Inside the Factory + Cherry Bakewells + Gregg Wallace visits a cherry bakewell factory where they produce 250,000 little tarts every day. + Documentary + + + + Inside the Factory + Pasta + Gregg Wallace is in Italy, hitching a lift on a train carrying over a thousand tons of wheat to the largest dried pasta factory in the world. + Documentary + + + + Inside the Factory + Pizza + Gregg Wallace travels to an enormous pizza factory in the center of Italy, which produces 400,000 frozen pizzas each day. + Documentary + + + + Mighty Planes + Skibirds + The LC-130 Hercules Skibirds carry supplies, fuel and crew to remote science camps in Greenland and Antarctica. + Documentary + + + TVPG + + + + Mighty Planes + Antonov 124 + The world's largest serially manufactured cargo plane, the Antonov 124, was built to move Soviet military vehicles and equipment. + Documentary + + + TVG + + + + Mighty Planes + Orbis + The ORBIS McDonnell Douglas DC-10, the world's only flying eye-hospital, includes an operating room and a classroom. + Documentary + + + TVPG + + + + Mighty Planes + Sofia 747SP + SOFIA, the largest airborne observatory in the world, boasts a 17-ton telescope capable of making observations impossible for ground-based telescopes. + Documentary + + + TVPG + + + + Ice Airport Alaska + Ice Warriors + Hurricane Hunters fly into a storm to save lives in Alaska's bush. A rookie chopper pilot faces dangerous winds, snowstorms threaten vital combat training for USAF in the Arctic Circle. + Documentary + + + TVG + + + + Ice Airport Alaska + Arctic Guardians + A suspected toxic leak grounds a 737 at Anchorage International, engine trouble endangers the mid-air refuelling of the USAF's most advanced fighter jets in Alaska, and a discovery at airport customs busts a potential smuggling. + Documentary + + + TVPG + + + + Preachers, Patriots & Providence + The story of America's birth, emphasizing the role of Christianity in its founding. + Specials + Religious + + + TVG + + + + Family Worship Center Wednesday Night Service + Religious + + + + FWC Music + Live gospel music recorded in Family Worship Center Church featuring Jimmy Swaggart and other singers. + Music + Performing Arts + + + TVG + + + + Crossfire Service + Biblical topics for teenagers and young adults. + Music + + + TVG + + + + Jimmy Swaggart Crusade Classics + Music and preaching filmed around the world. + Religious + + + TVG + + + + Jimmy Swaggart Crusade Classics + Music and preaching filmed around the world. + Religious + + + TVG + + + + FWC Music + Live gospel music recorded in Family Worship Center Church featuring Jimmy Swaggart and other singers. + Music + Performing Arts + + + TVG + + + + FWC Music + Live gospel music recorded in Family Worship Center Church featuring Jimmy Swaggart and other singers. + Music + Performing Arts + + + TVG + + + + Jimmy Swaggart + Religious + + + TVG + + + + FWC Music + Live gospel music recorded in Family Worship Center Church featuring Jimmy Swaggart and other singers. + Music + Performing Arts + + + TVG + + + + Family Worship Center - Associate Pastors + The church service of Jimmy Swaggart Ministries. + Religious + + + TVG + + + + The Message of the Cross + Biblical teaching by Rev. Jimmy Swaggart, with a panel of pastors, professors, and other church leaders. + Religious + + + TVG + + + + Preachers, Patriots & Providence + The story of America's birth, emphasizing the role of Christianity in its founding. + Specials + Religious + + + TVG + + + + A Study in the Word + Host Jimmy Swaggart, with the help of associate pastors, discusses the biblical genealogy, prophecy, history and end-time events in a detailed verse-by-verse format. + Religious + + + + Family Worship Center Sunday Live Service + Music and preaching. + Religious + + + TVG + + + + FWC Music + Live gospel music recorded in Family Worship Center Church featuring Jimmy Swaggart and other singers. + Music + Performing Arts + + + TVG + + + + Generation of the Cross + Gabriel Swaggart hosts a talk show for teenagers and young adults. + Religious + + + TVG + + + + Family Worship Center Sunday Live Service + Music and preaching. + Religious + + + TVG + + + + FWC Music + Live gospel music recorded in Family Worship Center Church featuring Jimmy Swaggart and other singers. + Music + Performing Arts + + + TVG + + + + Crossfire Service + Biblical topics for teenagers and young adults. + Music + + + TVG + + + + Family Worship Center Sunday Live Service + Music and preaching. + Religious + + + TVG + + + + FWC Music + Live gospel music recorded in Family Worship Center Church featuring Jimmy Swaggart and other singers. + Music + Performing Arts + + + TVG + + + + The Story Behind the Song + The Stories That Inspired the authors of the Great Gospel hymns. + Religious + + + TVG + + + + Family Worship Center Sunday Live Service + Music and preaching. + Religious + + + TVG + + + + FWC Music + Live gospel music recorded in Family Worship Center Church featuring Jimmy Swaggart and other singers. + Music + Performing Arts + + + TVG + + + + Jimmy Swaggart Crusade Classics + Music and preaching filmed around the world. + Religious + + + TVG + + + + FWC Music + Live gospel music recorded in Family Worship Center Church featuring Jimmy Swaggart and other singers. + Music + Performing Arts + + + TVG + + + + Jimmy Swaggart + Religious + + + TVG + + + + FWC Music + Live gospel music recorded in Family Worship Center Church featuring Jimmy Swaggart and other singers. + Music + Performing Arts + + + TVG + + + + A Study in the Word + Host Jimmy Swaggart, with the help of associate pastors, discusses the biblical genealogy, prophecy, history and end-time events in a detailed verse-by-verse format. + Religious + + + + FWC Music + Live gospel music recorded in Family Worship Center Church featuring Jimmy Swaggart and other singers. + Music + Performing Arts + + + TVG + + + + The Message of the Cross + Biblical teaching by Rev. Jimmy Swaggart, with a panel of pastors, professors, and other church leaders. + Religious + + + TVG + + + + FWC Music + Live gospel music recorded in Family Worship Center Church featuring Jimmy Swaggart and other singers. + Music + Performing Arts + + + TVG + + + + Insight + News and current events from a biblical perspective, hosted by John Rosenstern. + Religious + + + TVG + + + + Frances and Friends + Current events from a biblical perspective. Hosted by Frances Swaggart. + Talk Shows + Religious + + + TVG + + + + FWC Music + Live gospel music recorded in Family Worship Center Church featuring Jimmy Swaggart and other singers. + Music + Performing Arts + + + TVG + + + + A Study in the Word + Host Jimmy Swaggart, with the help of associate pastors, discusses the biblical genealogy, prophecy, history and end-time events in a detailed verse-by-verse format. + Religious + + + + Jimmy Swaggart Crusade Classics + Music and preaching filmed around the world. + Religious + + + TVG + + + + FWC Music + Live gospel music recorded in Family Worship Center Church featuring Jimmy Swaggart and other singers. + Music + Performing Arts + + + TVG + + + + Jimmy Swaggart + Religious + + + TVG + + + + Insight + News and current events from a biblical perspective, hosted by John Rosenstern. + Religious + + + TVG + + + + A Study in the Word + Host Jimmy Swaggart, with the help of associate pastors, discusses the biblical genealogy, prophecy, history and end-time events in a detailed verse-by-verse format. + Religious + + + + Frances and Friends + Current events from a biblical perspective. Hosted by Frances Swaggart. + Talk Shows + Religious + + + TVG + + + + The Message of the Cross + Biblical teaching by Rev. Jimmy Swaggart, with a panel of pastors, professors, and other church leaders. + Religious + + + TVG + + + + Donnie Swaggart + The preaching ministry of Donnie Swaggart, recorded at Family Worship Center Church in Baton Rouge, LA. + Religious + + + TVG + + + + FWC Music + Live gospel music recorded in Family Worship Center Church featuring Jimmy Swaggart and other singers. + Music + Performing Arts + + + TVG + + + + Gabriel Swaggart + The preaching ministry if Gabriel Swaggart, pastor of Crossfire Youth Ministries, Family Worship Center, Baton Rouge. + Religious + + + + FWC Music + Live gospel music recorded in Family Worship Center Church featuring Jimmy Swaggart and other singers. + Music + Performing Arts + + + TVG + + + + Family Worship Center - Associate Pastors + The church service of Jimmy Swaggart Ministries. + Religious + + + TVG + + + + FWC Music + Live gospel music recorded in Family Worship Center Church featuring Jimmy Swaggart and other singers. + Music + Performing Arts + + + TVG + + + + A Study in the Word + Host Jimmy Swaggart, with the help of associate pastors, discusses the biblical genealogy, prophecy, history and end-time events in a detailed verse-by-verse format. + Religious + + + + FWC Music + Live gospel music recorded in Family Worship Center Church featuring Jimmy Swaggart and other singers. + Music + Performing Arts + + + TVG + + + + The Message of the Cross + Biblical teaching by Rev. Jimmy Swaggart, with a panel of pastors, professors, and other church leaders. + Religious + + + TVG + + + + FWC Music + Live gospel music recorded in Family Worship Center Church featuring Jimmy Swaggart and other singers. + Music + Performing Arts + + + TVG + + + + Insight + News and current events from a biblical perspective, hosted by John Rosenstern. + Religious + + + TVG + + + + Frances and Friends + Current events from a biblical perspective. Hosted by Frances Swaggart. + Talk Shows + Religious + + + TVG + + + + FWC Music + Live gospel music recorded in Family Worship Center Church featuring Jimmy Swaggart and other singers. + Music + Performing Arts + + + TVG + + + + A Study in the Word + Host Jimmy Swaggart, with the help of associate pastors, discusses the biblical genealogy, prophecy, history and end-time events in a detailed verse-by-verse format. + Religious + + + + Family Worship Center - Associate Pastors + The church service of Jimmy Swaggart Ministries. + Religious + + + TVG + + + + FWC Music + Live gospel music recorded in Family Worship Center Church featuring Jimmy Swaggart and other singers. + Music + Performing Arts + + + TVG + + + + Gabriel Swaggart + The preaching ministry if Gabriel Swaggart, pastor of Crossfire Youth Ministries, Family Worship Center, Baton Rouge. + Religious + + + + Insight + News and current events from a biblical perspective, hosted by John Rosenstern. + Religious + + + TVG + + + + A Study in the Word + Host Jimmy Swaggart, with the help of associate pastors, discusses the biblical genealogy, prophecy, history and end-time events in a detailed verse-by-verse format. + Religious + + + + Frances and Friends + Current events from a biblical perspective. Hosted by Frances Swaggart. + Talk Shows + Religious + + + TVG + + + + The Message of the Cross + Biblical teaching by Rev. Jimmy Swaggart, with a panel of pastors, professors, and other church leaders. + Religious + + + TVG + + + + Jimmy Swaggart + Religious + + + TVG + + + + FWC Music + Live gospel music recorded in Family Worship Center Church featuring Jimmy Swaggart and other singers. + Music + Performing Arts + + + TVG + + + + Jimmy Swaggart Crusade Classics + Music and preaching filmed around the world. + Religious + + + TVG + + + + FWC Music + Live gospel music recorded in Family Worship Center Church featuring Jimmy Swaggart and other singers. + Music + Performing Arts + + + TVG + + + + Jimmy Swaggart + Religious + + + TVG + + + + FWC Music + Live gospel music recorded in Family Worship Center Church featuring Jimmy Swaggart and other singers. + Music + Performing Arts + + + TVG + + + + A Study in the Word + Host Jimmy Swaggart, with the help of associate pastors, discusses the biblical genealogy, prophecy, history and end-time events in a detailed verse-by-verse format. + Religious + + + + FWC Music + Live gospel music recorded in Family Worship Center Church featuring Jimmy Swaggart and other singers. + Music + Performing Arts + + + TVG + + + + The Message of the Cross + Biblical teaching by Rev. Jimmy Swaggart, with a panel of pastors, professors, and other church leaders. + Religious + + + TVG + + + + FWC Music + Live gospel music recorded in Family Worship Center Church featuring Jimmy Swaggart and other singers. + Music + Performing Arts + + + TVG + + + + Insight + News and current events from a biblical perspective, hosted by John Rosenstern. + Religious + + + TVG + + + + Frances and Friends + Current events from a biblical perspective. Hosted by Frances Swaggart. + Talk Shows + Religious + + + TVG + + + + FWC Music + Live gospel music recorded in Family Worship Center Church featuring Jimmy Swaggart and other singers. + Music + Performing Arts + + + TVG + + + + A Study in the Word + Host Jimmy Swaggart, with the help of associate pastors, discusses the biblical genealogy, prophecy, history and end-time events in a detailed verse-by-verse format. + Religious + + + + Jimmy Swaggart Crusade Classics + Music and preaching filmed around the world. + Religious + + + TVG + + + + The Story Behind the Song + The Stories That Inspired the authors of the Great Gospel hymns. + Religious + + + TVG + + + + FWC Music + Live gospel music recorded in Family Worship Center Church featuring Jimmy Swaggart and other singers. + Music + Performing Arts + + + TVG + + + + Jimmy Swaggart + Religious + + + TVG + + + + Insight + News and current events from a biblical perspective, hosted by John Rosenstern. + Religious + + + TVG + + + + A Study in the Word + Host Jimmy Swaggart, with the help of associate pastors, discusses the biblical genealogy, prophecy, history and end-time events in a detailed verse-by-verse format. + Religious + + + + First Daughter + A Secret Service agent who once guarded the President of the United States is demoted to the less challenging assignment of overseeing security for his daughter, only to have it become the most dangerous mission of her life when the teen is kidnapped. (repeat). + + Mariel Hemingway + Doug Savant + Monica Keena + Gregory Harrison + Diamond Dallas Page + Alan Dale + Louis Febre + Armand Mastroianni + Michael O. Gallant + Carey Hayes + + 1999 + Comedy + Action & Adventure + + + TV-14 + + + + Air Force One + The President is held hostage on Air Force One by a crew of Russian terrorists. Using his strength and guile, the Commander-in-Chief must spring into action and fight off his attackers. (repeat). + + Gary Oldman + Harrison Ford + Glenn Close + Wendy Crewson + Paul Guilfoyle + William H. Macy + Jerry Goldsmith + Wolfgang Petersen + Armyan Bernstein + Andrew W. Marlowe + + 1997 + Drama + Suspense + Action & Adventure + + + 6.1/10 + + + + First Daughter + A Secret Service agent who once guarded the President of the United States is demoted to the less challenging assignment of overseeing security for his daughter, only to have it become the most dangerous mission of her life when the teen is kidnapped. + + Mariel Hemingway + Doug Savant + Monica Keena + Gregory Harrison + Diamond Dallas Page + Alan Dale + Louis Febre + Armand Mastroianni + Michael O. Gallant + Carey Hayes + + 1999 + Comedy + Action & Adventure + + + TV-14 + + + + First Daughter + A Secret Service agent who once guarded the President of the United States is demoted to the less challenging assignment of overseeing security for his daughter, only to have it become the most dangerous mission of her life when the teen is kidnapped. (repeat). + + Mariel Hemingway + Doug Savant + Monica Keena + Gregory Harrison + Diamond Dallas Page + Alan Dale + Louis Febre + Armand Mastroianni + Michael O. Gallant + Carey Hayes + + 1999 + Comedy + Action & Adventure + + + TV-14 + + + + First Shot + A Secret Service agent (Mariel Hemingway) springs into action to protect the President from a murderous American rebel group. Grant Coleman: Doug Savant. President Jonathan Hayes: Gregory Harrison. Jess Hayes: Jenna Leigh Green. A follow-up to the cable films "First Daughter" and "First Target." (repeat). + + Mariel Hemingway + Gregory Harrison + Doug Savant + Jenna Leigh Green + Sebastian Spence + Dean Wray + Armand Mastroianni + Justis Greene + Carey Hayes + + 2002 + Suspense + Action & Adventure + + TV-14 + + + + Fail Safe + When a misguided transmission sends a squadron of bombers hurtling towards Russia, fully prepared to drop their atomic weaponry on Moscow, an Air Force commander desperately tries to establish radio contact with the planes, but once the pilots have passed the "fail safe" point, they've been instructed to disregard any reversal of orders. (repeat). + + Edward Binns + Fritz Weaver + Larry Hagman + William Hansen + Russell Hardie + Russell Collins + Sidney Lumet + Max E. Youngstein + Walter Bernstein + + 1964 + Drama + Suspense + + + TV-PG + + + 7.5/10 + + + + Random Hearts + Harrison Ford and Kristin Scott Thomas light up this poignant tearjerker about two people whose grief brings them together. He's a detective, she's a congresswoman, and together, they struggle with the news that their late spouses were having an affair. Sydney Pollack, Bonnie Hunt, Charles S. Dutton, Peter Coyote. (repeat). + + Harrison Ford + Kristin Scott Thomas + Charles Dutton + Bonnie Hunt + Dennis Haysbert + Sydney Pollack + Dave Grusin + Sydney Pollack + Bill Cobbs + Marykay Powell + Warren Adler + + 1999 + Drama + + + TV-PG + + + 3.8/10 + + + + Hard Times + A Depression-era melodrama about street fighters and the gamblers who back them. (repeat). + + Charles Bronson + James Coburn + Jill Ireland + Strother Martin + Maggie Blye + Michael McGuire + Barry de Vorzon + Walter Hill + Paul Maslansky + Walter Hill + + 1975 + Drama + Action & Adventure + + + TV-PG + + + 6.9/10 + + + + Until Death + A heroin-addicted cop (Jean-Claude Van Damme) seeks redemption---and revenge against a drug lord---after waking from a coma. Selina Giles, Mark Dymond. Directed by Simon Fellows. (repeat). + + Jean-Claude Van Damme + Selina Giles + Stephen Rea + Mark Dymond + William Ash + Stephen Lord + Mark Sayfritz + Simon Fellows + René Besson + Dan Harris + + 2007 + Drama + Suspense + Action & Adventure + + + + Nowhere to Run + A convict on the run meets a young boy whose mother takes him in. A growing romance is put to the test by a land developer who won't take no for an answer. (repeat). + + Jean-Claude Van Damme + Rosanna Arquette + Kieran Culkin + Ted Levine + Edward Blatchford + Anthony Starke + Mark Isham + Robert Harmon + Craig Baumgarten + Joe Eszterhas + + 1993 + Drama + Suspense + Action & Adventure + + + TV-PG + + + 4.1/10 + + + + Dead Man Down + In this relentlessly tense crime drama, a mob enforcer takes on a New York crime boss in order to avenge the murder of his wife and child, and in the process he falls under the spell of a gorgeous blackmailer with a bitter agenda. (repeat). + + Colin Farrell + Noomi Rapace + Terrence Howard + Dominic Cooper + Isabelle Huppert + Armand Assante + Jacob Groth + Niels Arden Oplev + J.H. Wyman + Neal H. Moritz + J.H. Wyman + + 2013 + Drama + Suspense + Action & Adventure + + + TV-14 + + + 3.9/10 + + + + Angel of Death + Zoe Bell plays an assassin for a crime family who suffers a head injury that causes her to change course and target the people who ordered the hits. Lucy Lawless, Doug Jones, Jake Abel. (repeat). + + Zoe Bell + Lucy Lawless + Doug Jones + Jake Abel + Ted Raimi + Vail Bloom + Paul Etheredge-Ouzts + Paul Etheredge + John Norris + Ed Brubaker + + 2009 + Drama + Suspense + Action & Adventure + + + + Today You Die + Steven Seagal is back with a vengeance in this slam-bang thriller about an ex-con who is trying to go straight but is used as a pawn in a robbery. After having a supernatural experience in jail, he escapes to seek revenge on those who set him up. Anthony "Treach" Criss, Lawrence Turner, Jerry Trimble, Kevin Tighe. Directed by Don E. FauntLeRoy. (repeat). + + Steven Seagal + Anthony "Treach" Criss + Lawrence Turner + Jerry Trimble + Kevin Tighe + Erik Betts + Steve Edwards + Don E. Fauntleroy + Don E. FauntLeRoy + Randall Emmett + Danny Lerner + + 2005 + Drama + Action & Adventure + + + TV-14 + + + + Urban Justice + Steven Seagal stars in this no-holds-barred action thriller about a former government special ops agent who takes on violent street gangs as he tries to solve the murder of his cop son. (repeat). + + Steven Seagal + Eddie Griffin + Carmen Serano + Cory Hart + Liezl Carstens + Kirk B.R. Woller + Peter Meisner + Don E. FauntLeRoy + William B. Steakley + Steven Seagal + + 2007 + Suspense + Action & Adventure + + TV-14 + + + + The Foreigner + Lame action thriller starring Steven Seagal as a mercenary agent who takes on a bevy of baddies when he is hired to transport a mysterious package from France to Germany. Max Ryan, Harry Van Gorkum, Jeffrey Pierce, Anna-Louise Plowman. (repeat). + + Steven Seagal + Max Ryan + Harry Van Gorkum + Jeffrey Pierce + Anna-Louise Plowman + Sherman Augustus + David Wurst + Michael Oblowitz + Michael Winnick + Kazimierz Kowalski + Darren O. Campbell + + 2003 + Drama + Suspense + Action & Adventure + + + TV-14 + + + + Urban Justice + Steven Seagal stars in this no-holds-barred action thriller about a former government special ops agent who takes on violent street gangs as he tries to solve the murder of his cop son. (repeat). + + Steven Seagal + Eddie Griffin + Carmen Serano + Cory Hart + Liezl Carstens + Kirk B.R. Woller + Peter Meisner + Don E. FauntLeRoy + William B. Steakley + Steven Seagal + + 2007 + Suspense + Action & Adventure + + TV-14 + + + + The Foreigner + Lame action thriller starring Steven Seagal as a mercenary agent who takes on a bevy of baddies when he is hired to transport a mysterious package from France to Germany. Max Ryan, Harry Van Gorkum, Jeffrey Pierce, Anna-Louise Plowman. (repeat). + + Steven Seagal + Max Ryan + Harry Van Gorkum + Jeffrey Pierce + Anna-Louise Plowman + Sherman Augustus + David Wurst + Michael Oblowitz + Michael Winnick + Kazimierz Kowalski + Darren O. Campbell + + 2003 + Drama + Suspense + Action & Adventure + + + TV-14 + + + + Striking Distance + After being forced to testify against his own partner, a street cop finds himself demoted to the river-rescue patrol, where the same serial killer who haunted his former beat comes back to haunt him. (repeat). + + Bob Gould + Jeffrey J. Stephan + Erik Jensen + Sigrid Adrienne + Jack Pashkin + Lawrence A. Mandley + Brad Fiedel + Rowdy Herrington + Hunt Lowry + Rowdy Herrington + + 1993 + Drama + Suspense + Action & Adventure + + + 3.6/10 + + + + Absence of Malice + A reporter publishes a story that implicates a businessman in the disappearance of a labor leader. When the business man confronts her, they go looking for the truth together, and begin an affair. (repeat). + + Sally Field + Paul Newman + Bob Balaban + Luther Adler + Melinda Dillon + Barry Primus + Dave Grusin + Sydney Pollack + Terence Marsh + Kurt Luedtke + + 1981 + Drama + + + TV-14 + + + 6.4/10 + + + + Breakout + A bush pilot is hired to help a framed American escape from a Mexican prison. The American's captors aren't letting him go without a fight. Suggested by the book "Ten Second Jailbreak" by Warren Hinckle, William Turner and Eliot Asinof. (repeat). + + Charles Bronson + Robert Duvall + Jill Ireland + John Huston + Randy Quaid + Sheree North + Jerry Goldsmith + Tom Gries + Ronald L. Buck + Howard B. Kreitsek + + 1975 + Drama + Action & Adventure + + + TV-PG + + + 4.4/10 + + + + Company of Heroes + In this World War II drama, a group of U.S. soldiers get trapped in enemy territory during the Battle of the Bulge, and embark on a clandestine mission into Nazi Germany to capture a scientist who holds the details about a superbomb that could decimate Allied forces. (repeat). + + Tom Sizemore + Neal McDonough + Chad Michael Collins + Jürgen Prochnow + Dimitri Diatchenko + Vinnie Jones + Frederik Wiedmann + Don Michael Paul + Phillip Roth + David Reed + + 2013 + Drama + Action & Adventure + + + + The Shadow Riders + After starring in "The Sacketts", Tom Selleck and Sam Elliott team up again but this time as Mac and Dal Traven, in a movie based on a classic Louis L'Amour novel. They are brothers, who meet up at the end of the Civil War fighting on opposite sides. They go home only to find their family in dire need and their sisters and brother kidnapped by ruthless raiders. They set out to rescue their family. (repeat). + + Tom Selleck + Sam Elliott + Ben Johnson + Katharine Ross + Geoffrey Lewis + Jeff Osterhage + Jerrold Immel + Andrew V. McLaglen + Vern Nobles, Sr. + Jim Byrnes + + 1982 + + + TV-PG + + + + Murphy's Romance + A widowed small-town pharmacist develops a reticent affection for a spunky divorcé, but soon her ex-husband returns and moves back in with her, claiming things will be different. Based on the novella by Max Schott. (repeat). + + James Garner + Sally Field + Corey Haim + Brian Kerwin + Dennis Burkley + Georgann Johnson + Martin Ritt + Laura Ziskin + Harriet Frank, Jr. + + 1985 + Drama + Comedy + + + TV-PG + + + + Operation Mad Ball + A soldier plots to keep the site of an off-limits bash secret from a promotion-mad office. One of the best service comedies. (repeat). + + Jack Lemmon + Ernie Kovacs + Kathryn Grant + Arthur O'Connell + Mickey Rooney + Dick York + George Duning + Richard Quine + Jed Harris + Arthur Carter + + 1957 + Comedy + + TV-PG + + + + The Wackiest Ship in the Army + Tale of a secret mission to send an Australian spy to a remote Pacific island to keep track of the Japanese fleet during World War II. The decrepit ship and her inexperienced crew make for tough sailing for the lieutenant tasked with the assignment. (repeat). + + Jack Lemmon + Ricky Nelson + John Lund + Chips Rafferty + Tom Tully + Joby Baker + George Duning + Richard Murphy + Fred Kohlmar + Richard Murphy + + 1960 + Comedy + + TV-PG + + + + Okinawa + Standard war yarn about the gun crew of a destroyer off the strategic North Pacific island in World War II. Pat O'Brien, Cameron Mitchell, Richard Denning. Leigh Jason directed. (repeat). + + Pat O'Brien + Cameron Mitchell + Richard Denning + Rhys Williams + James Dobson + Richard Benedict + Leigh Jason + Wallace MacDonald + Leonard B. Stern + + 1952 + Drama + + + Eight Iron Men + In World War II, a front-line infantry squad tries to aid a buddy trapped in a shell hole. Collucci: Bonar Colleano. Mooney: Lee Marvin. Carter: Arthur Franz. Coke: Richard Kiley. Muller: Dick Moore. Verbose. Directed by Edward Dmytryk. (repeat). + + Bonar Colleano + Arthur Franz + Richard Kiley + Nick Dennis + James Griffith + Dickie Moore + Leith Stevens + Edward Dmytryk + Stanley Kramer + Harry Brown + + 1952 + Drama + + + TV-PG + + + + From Here to Eternity + Best Picture winner is a portrait of life on a Honolulu Army post just before the attack on Pearl Harbor, and focuses on two rebellious privates and a tough but fair-minded sergeant who's swept into a torrid affair with his CO's wife. (repeat). + + Burt Lancaster + Montgomery Clift + Deborah Kerr + Frank Sinatra + Donna Reed + Ernest Borgnine + James Jones + Fred Zinnemann + Buddy Adler + Daniel Taradash + + 1953 + Drama + + + TV-PG + + + 8.5/10 + + + + Eight Iron Men + In World War II, a front-line infantry squad tries to aid a buddy trapped in a shell hole. Collucci: Bonar Colleano. Mooney: Lee Marvin. Carter: Arthur Franz. Coke: Richard Kiley. Muller: Dick Moore. Verbose. Directed by Edward Dmytryk. (repeat). + + Bonar Colleano + Arthur Franz + Richard Kiley + Nick Dennis + James Griffith + Dickie Moore + Leith Stevens + Edward Dmytryk + Stanley Kramer + Harry Brown + + 1952 + Drama + + + TV-PG + + + + From Here to Eternity + Best Picture winner is a portrait of life on a Honolulu Army post just before the attack on Pearl Harbor, and focuses on two rebellious privates and a tough but fair-minded sergeant who's swept into a torrid affair with his CO's wife. (repeat). + + Burt Lancaster + Montgomery Clift + Deborah Kerr + Frank Sinatra + Donna Reed + Ernest Borgnine + James Jones + Fred Zinnemann + Buddy Adler + Daniel Taradash + + 1953 + Drama + + + TV-PG + + + 8.5/10 + + + + Buck and the Preacher + A con-man preacher joins forces with a wagon master during the post Civil War era to help freed slaves in the chaotic American Southwest. (repeat). + + Sidney Poitier + Harry Belafonte + Ruby Dee + Cameron Mitchell + Denny Miller + Nita Talbot + Benny Carter + Sidney Poitier + Joseph Sargent + Joel Glickman + Ernest Kinoy + + 1972 + Drama + Action & Adventure + + + TV-PG + + + + Arizona Raiders + Post-Civil War yarn about captured outlaws forced to help round up their former saddle pals. Audie Murphy, Gloria Talbott. Brady: Michael Dante. Willie: Ben Cooper. Andrews: Buster Crabbe. Danny: Ray Stricklyn. Directed by William Witney. (repeat). + + Audie Murphy + Gloria Talbott + Michael Dante + Ben Cooper + Buster Crabbe + Ray Stricklyn + Dick LaSalle + William Witney + Grant Whytock + Willard Willingham + + 1965 + Action & Adventure + + TV-PG + + + + Mackenna's Gold + Violence explodes in this adventure set in the Southwest of 1874. Gregory Peck, Omar Sharif, Telly Savalas, Camilla Sparv. Sanchez: Keenan Wynn. Hesh-de: Julie Newmar. Hachita: Ted Cassidy. Prairie Dog: Eduardo Ciannelli. Cameos by Edward G. Robinson, Lee J. Cobb, Raymond Massey, Eli Wallach, Burgess Meredith and Anthony Quayle. Good cast. (repeat). + + Gregory Peck + Omar Sharif + Telly Savalas + Camilla Sparv + Keenan Wynn + Julie Newmar + Quincy Jones + J. Lee Thompson + Carl Foreman + Carl Foreman + + 1969 + Action & Adventure + + + TV-PG + + + + The Texican + A lawman is falsely accused of a crime, flees to Mexico and then returns to avenge his brother's death. Audie Murphy, Broderick Crawford, Diana Lorys, Luz Marquez, Antonia Casas, Molino Rojo, Aldo Sambrell, Antonio Peral, Helga Genth, Jorge Rigaud, Luis Induni, Martha May. Filmed in Spain. Good cast. Lesley Selander directed. (repeat). + + Audie Murphy + Broderick Crawford + Diana Lorys + Luz Marquez + Aldo Sambrell + Antonio Casas + Nico Fidenco + Lesley Selander + Bruce Balaban + John C. Champion + + 1966 + Action & Adventure + + + TV-PG + + + + The Man From Laramie + A cowboy is obsessed with finding the man who sold automatic rifles to the Apaches, resulting in the death of his brother. (repeat). + + James Stewart + Arthur Kennedy + Donald Crisp + Alex Nicol + Cathy O'Donnell + Aline MacMahon + George Duning + Anthony Mann + William Goetz + Frank Burt + + 1955 + Drama + Action & Adventure + + + TV-14 + + + + The Bridge on the River Kwai + David Lean's epic won seven Oscars, including Best Picture and Best Actor for Alec Guinness as the leader of British POWs forced to build a railroad bridge in World War II Indochina. Filmed in Ceylon (Sri Lanka). Oscar-winning screenplay by Carl Foreman. (repeat). + + William Holden + Alec Guinness + Jack Hawkins + Sessue Hayakawa + James Donald + Geoffrey Horne + Malcolm Arnold + David Lean + Alec Guinness + Sam Spiegel + Calder Willingham + + 1957 + Action & Adventure + + + TV-PG + + + 8.7/10 + + + + The Guns of Fort Petticoat + A Cavalryman goes AWOL after refusing to take part in the massacre of Cheyenne Indians. He trains a motley crew of women to defend themselves in the event of retaliation by American Indians. (repeat). + + Audie Murphy + Kathryn Grant + Hope Emerson + Jeff Donnell + Jeanette Nolan + Sean McClory + George Marshall + Audie Murphy + Walter Doniger + + 1957 + + TV-PG + + + + Major Dundee + When Apaches massacre a U.S. cavalry troop in New Mexico, Major Dundee assembles an army of cutthroats, renegades and Confederate prisoners led by his hated counterpart, Capt. Tyreen, to avenge the attack. + 1965 + + + The Mountain Road + Responsibility vs. conscience in the war-torn China of 1944. James Stewart. Sue-Mei: Lisa Lu. Collins: Glenn Corbett. Michaelson: Henry (Harry) Morgan. General Kwan: Frank Silvera. Niergaard: James Best. Miller: Rudy Bond. Ballo: Frank Maxwell. Prince: Mike Kellin. Loomis: Alan Baxter. Uneven dramatically. Daniel Mann directed. (repeat). + + James Stewart + Lisa Lu + Glenn Corbett + Frank Silvera + James Best + Rudy Bond + Jerome Moross + Daniel Mann + William Goetz + Alfred Hayes + + 1960 + Drama + + TV-PG + + + + Gardens of Stone + Stateside-set Vietnam drama about a disillusioned noncom and his gung-ho subordinate stationed at Arlington Cemetery. Based on the novel by Nicholas Proffitt. (repeat). + + James Caan + D.B. Sweeney + Anjelica Huston + James Earl Jones + Mary Stuart Masterson + Dean Stockwell + Carmine Coppola + Francis Ford Coppola + Francis Ford Coppola + Ronald Bass + + 1987 + Drama + + + TV-PG + + + + The Mountain Road + Responsibility vs. conscience in the war-torn China of 1944. James Stewart. Sue-Mei: Lisa Lu. Collins: Glenn Corbett. Michaelson: Henry (Harry) Morgan. General Kwan: Frank Silvera. Niergaard: James Best. Miller: Rudy Bond. Ballo: Frank Maxwell. Prince: Mike Kellin. Loomis: Alan Baxter. Uneven dramatically. Daniel Mann directed. (repeat). + + James Stewart + Lisa Lu + Glenn Corbett + Frank Silvera + James Best + Rudy Bond + Jerome Moross + Daniel Mann + William Goetz + Alfred Hayes + + 1960 + Drama + + TV-PG + + + + Gardens of Stone + Stateside-set Vietnam drama about a disillusioned noncom and his gung-ho subordinate stationed at Arlington Cemetery. Based on the novel by Nicholas Proffitt. (repeat). + + James Caan + D.B. Sweeney + Anjelica Huston + James Earl Jones + Mary Stuart Masterson + Dean Stockwell + Carmine Coppola + Francis Ford Coppola + Francis Ford Coppola + Ronald Bass + + 1987 + Drama + + + TV-PG + + + + Blue Thunder + A super-duper helicopter is the real star of this thriller set in and above Los Angeles. (repeat). + + Roy Scheider + Daniel Stern + Malcolm McDowell + Warren Oates + Candy Clark + Paul Roebling + Arthur B. Rubinstein + John Badham + Gordon Carroll + Don Jakoby + + 1983 + Drama + Suspense + Action & Adventure + Science Fiction + + + TV-14 + + + 6.6/10 + + + + Against All Odds + An ex-football player is hired by a nightclub owner to find his girlfriend in Mexico but the when he locates her, they become romantically involved. (repeat). + + Jophery Brown + Billy Burton + Carl Ciarfalio + Bud Davis + Buddy Joe Hooker + Tom Kelly + Michel Colombier + Taylor Hackford + David Fincher + Jerry Bick + Eric Hughes + + 1984 + Drama + Action & Adventure + + + TV-14 + + + 4.2/10 + + + + Cleaner + Samuel L. Jackson turns in an arresting performance as an ex-cop who becomes a "crime-scene cleaner," a contract worker who tidies up after messy murders. After one such clean-up he finds himself knee-deep in police and political corruption, and his investigation uncovers dirty dealings with dirty cops. But his probe could also lead to revelations about a stain on his own record as an officer. Directed by Renny Harlin. (repeat). + + Ed Harris + Samuel L. Jackson + Eva Mendes + Robert Forster + Keke Palmer + Christa Campbell + Richard Gibbs + Renny Harlin + Paul Green + Matthew Aldrich + + 2007 + Drama + Suspense + + + TV-14 + + + 4.9/10 + + + + Takers + In this intense crime thriller, a Los Angeles detective attempts to foil a multimillion-dollar bank heist being planned by a group of criminal experts who are hoping this will be their last job. (repeat). + + Hayden Christensen + Idris Elba + Matt Dillon + Paul Walker + Zoe Saldana + Chris Brown + Paul Haslinger + John Luessenhop + Will Packer + Peter Allen + + 2010 + Drama + Action & Adventure + + + TV-14 + + + 4.5/10 + + + + Harry Brown + In this gritty drama, former military man Harry Brown (Michael Caine) becomes an unlikely vigilante after the elderly man's best friend is murdered and the police are unable to stop the drug dealers and gangsters from terrorizing his community. Directed by Daniel Barber. (repeat). + + Michael Caine + Emily Mortimer + Charlie Creed-Miles + David Bradley + Iain Glen + Sean Harris + Martin Phipps + Daniel Barber + Kris Thykier + Gary Young + + 2009 + Drama + Comedy + Suspense + Action & Adventure + + + 5.5/10 + + + + The Final Countdown + Kirk Douglas skippers a nuclear aircraft carrier that's time-warped to Pearl Harbor. Martin Sheen, Katharine Ross, James Farentino, Charles Durning. Thurman: Ron O'Neal. Simura: Soon-Teck Oh. Black Cloud: Victor Mohica. Perry: James C. Lawrence. Directed by Don Taylor. (repeat). + + Kirk Douglas + Martin Sheen + Katharine Ross + James Farentino + Ron O'Neal + Charles Durning + John Scott + Don Taylor + Peter Vincent Douglas + Peter Powell + + 1980 + Science Fiction + + + 5.1/10 + + + + The Heroes of Telemark + In Nazi-occupied Norway, scientists have made significant strides in the development of the first atomic bomb. After British commandos are killed in transit, it's up to the Norwegian resistance to destroy the Nazis' production plant. + + Kirk Douglas + Richard Harris + Michael Redgrave + Ulla Jacobsson + David Weston + Sebastian Breaks + Malcolm Arnold + Anthony Mann + Benjamin Fisz + Ivan Moffat + + 1966 + Drama + Action & Adventure + + TV-PG + + + + Sahara + During World War II, an American tank crew battles against Nazis, desert sands and lack of water. (repeat). + + Humphrey Bogart + Lloyd Bridges + Dan Duryea + Rex Ingram + J. Carrol Naish + Richard Nugent + Miklós Rózsa + Zoltan Korda + Harry Joe Brown + James O'Hanlon + + 1943 + Drama + Action & Adventure + + + TV-PG + + + + Access SportsNet: Lakers + In-depth coverage featuring highlights, analysis, reaction and interviews on all things pertaining to the Los Angeles Lakers. + Sports + Basketball + + + + Backstage: Lakers + Week 1 + As the season nears, an exclusive ride along with Rob Pelinka; behind-the-scenes with LeBron James at media day; head coach Darvin Ham mic'd up for first day of practice. + Sports + Basketball + + + + Los Angeles Lakers vs. Orlando Magic + Los Angeles Lakers at Orlando Magic + From Amway Center in Orlando, Fla. + Sports + Basketball + + + + Access SportsNet: Lakers + In-depth coverage featuring highlights, analysis, reaction and interviews on all things pertaining to the Los Angeles Lakers. + Sports + Basketball + + + + Benny vs. The Penny + It's host Ben Maller versus a flipped coin, to see which one picks more NFL games correctly. + Sports + Football + + + TVG + + + + Los Angeles Lakers vs. Orlando Magic + Los Angeles Lakers at Orlando Magic + From Amway Center in Orlando, Fla. + Sports + Basketball + + + + Access SportsNet: Lakers + In-depth coverage featuring highlights, analysis, reaction and interviews on all things pertaining to the Los Angeles Lakers. + Sports + Basketball + + + + Backstage: Lakers + Week 1 + As the season nears, an exclusive ride along with Rob Pelinka; behind-the-scenes with LeBron James at media day; head coach Darvin Ham mic'd up for first day of practice. + Sports + Basketball + + + + Rare Silver Coin Set + Add the First Day of Issue 2023 Morgan and Peace Dollars graded in perfect Mint State and Proof 70 condition to your collection. With Mint State mintages of only 275,000 examples and 400,00 for Proof, these coins are incredible absolute rarities! + Paid Program + + + + Reduce swelling in your legs, ankles and feet + LegXercise is the easy-to-use, automatic leg mover that uses continuous movement to soothe pain and promote healthy circulation the natural drug-free way! It's Walking Simulator Technology moves your feet back and forth along its motion track. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigate Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Rare Silver Coin Set + Add the First Day of Issue 2023 Morgan and Peace Dollars graded in perfect Mint State and Proof 70 condition to your collection. With Mint State mintages of only 275,000 examples and 400,00 for Proof, these coins are incredible absolute rarities! + Paid Program + + + + Reduce swelling in your legs, ankles and feet + LegXercise is the easy-to-use, automatic leg mover that uses continuous movement to soothe pain and promote healthy circulation the natural drug-free way! It's Walking Simulator Technology moves your feet back and forth along its motion track. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigate Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Access SportsNet: Lakers + In-depth coverage featuring highlights, analysis, reaction and interviews on all things pertaining to the Los Angeles Lakers. + Sports + Basketball + + + + Benny vs. The Penny + It's host Ben Maller versus a flipped coin, to see which one picks more NFL games correctly. + Sports + Football + + + TVG + + + + Beyond the Sport + After being separated for the past seven years, relief pitcher Brusdar Graterol and his mother Ysmalia finally reunite in Los Angeles. + Sports + Talk Show + + + + Benny vs. The Penny + It's host Ben Maller versus a flipped coin, to see which one picks more NFL games correctly. + Sports + Football + + + TVG + + + + Backstage: Lakers + Week 1 + As the season nears, an exclusive ride along with Rob Pelinka; behind-the-scenes with LeBron James at media day; head coach Darvin Ham mic'd up for first day of practice. + Sports + Basketball + + + + Los Angeles Lakers vs. Orlando Magic + Los Angeles Lakers at Orlando Magic + From Amway Center in Orlando, Fla. + Sports + Basketball + + + + Access SportsNet: Lakers + In-depth coverage featuring highlights, analysis, reaction and interviews on all things pertaining to the Los Angeles Lakers. + Sports + Basketball + + + + Los Angeles Lakers vs. Orlando Magic + Los Angeles Lakers at Orlando Magic + From Amway Center in Orlando, Fla. + Sports + Basketball + + + + Access SportsNet: Lakers + In-depth coverage featuring highlights, analysis, reaction and interviews on all things pertaining to the Los Angeles Lakers. + Sports + Basketball + + + + Backstage: Lakers + Week 1 + As the season nears, an exclusive ride along with Rob Pelinka; behind-the-scenes with LeBron James at media day; head coach Darvin Ham mic'd up for first day of practice. + Sports + Basketball + + + + Backstage: Lakers + Week 1 + As the season nears, an exclusive ride along with Rob Pelinka; behind-the-scenes with LeBron James at media day; head coach Darvin Ham mic'd up for first day of practice. + Sports + Basketball + + + + Access SportsNet: Lakers + Lakers List Ep. # 1 + The Spectrum SportsNet team compiles and compares their lists for the most underrated Lakers in franchise history. + Sports + Basketball + + + + Access SportsNet: Lakers + Lakers List Ep. # 2 + Opponents that the Lakers and their fans really disliked… and still do to this day. The Spectrum SportsNet team compares their lists for the top villains the Lakers have ever faced. + Sports + Basketball + + + + Lakers Compacto + Lakers at Orlando Magic + Enhanced Lakers game compacted into fast-paced, one-hour presentation. + Sports + Basketball + + + + Beyond the Sport + A look back at some of the most memorable off-the-field moments and excursions during 2023 Dodger road trips. + Sports + Talk Show + + + + Beyond the Sport + After being separated for the past seven years, relief pitcher Brusdar Graterol and his mother Ysmalia finally reunite in Los Angeles. + Sports + Talk Show + + + + Backstage: Lakers + Week 1 + As the season nears, an exclusive ride along with Rob Pelinka; behind-the-scenes with LeBron James at media day; head coach Darvin Ham mic'd up for first day of practice. + Sports + Basketball + + + + Backstage: Lakers + Week 1 + As the season nears, an exclusive ride along with Rob Pelinka; behind-the-scenes with LeBron James at media day; head coach Darvin Ham mic'd up for first day of practice. + Sports + Basketball + + + + Los Angeles Lakers vs. Orlando Magic + Los Angeles Lakers at Orlando Magic + From Amway Center in Orlando, Fla. + Sports + Basketball + + + + Backstage: Lakers + Week 1 + As the season nears, an exclusive ride along with Rob Pelinka; behind-the-scenes with LeBron James at media day; head coach Darvin Ham mic'd up for first day of practice. + Sports + Basketball + + + + Backstage: Lakers + Week 1 + As the season nears, an exclusive ride along with Rob Pelinka; behind-the-scenes with LeBron James at media day; head coach Darvin Ham mic'd up for first day of practice. + Sports + Basketball + + + + Lakers Compacto + Lakers at Orlando Magic + Enhanced Lakers game compacted into fast-paced, one-hour presentation. + Sports + Basketball + + + + Beyond the Sport + A look back at some of the most memorable off-the-field moments and excursions during 2023 Dodger road trips. + Sports + Talk Show + + + + Beyond the Sport + After being separated for the past seven years, relief pitcher Brusdar Graterol and his mother Ysmalia finally reunite in Los Angeles. + Sports + Talk Show + + + + Access SportsNet: Lakers + Lakers List Ep. # 1 + The Spectrum SportsNet team compiles and compares their lists for the most underrated Lakers in franchise history. + Sports + Basketball + + + + Access SportsNet: Lakers + Lakers List Ep. # 2 + Opponents that the Lakers and their fans really disliked… and still do to this day. The Spectrum SportsNet team compares their lists for the top villains the Lakers have ever faced. + Sports + Basketball + + + + Reduce swelling in your legs, ankles and feet + LegXercise is the easy-to-use, automatic leg mover that uses continuous movement to soothe pain and promote healthy circulation the natural drug-free way! It's Walking Simulator Technology moves your feet back and forth along its motion track. + Paid Program + + + + Inogen Portable Oxygen - Oxygen Therapy that Moves with You + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigate Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Reduce swelling in your legs, ankles and feet + LegXercise is the easy-to-use, automatic leg mover that uses continuous movement to soothe pain and promote healthy circulation the natural drug-free way! It's Walking Simulator Technology moves your feet back and forth along its motion track. + Paid Program + + + + KILL COVID-19 WITH CLEANBOSS! + Bye Bye Bacteria! Farewell to Germs, COVID-19, Grease & Grime in your home with CleanBoss! Wipe away the worst messes in your home and keep your children & pets safe. Bad viruses, bacteria, fungus mold & allergens don't stand a chance with CleanBoss! + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Follow The Money + News and information on odds, point spreads, money lines and over/unders. + News + + + + Beyond the Sport + A look back at some of the most memorable off-the-field moments and excursions during 2023 Dodger road trips. + Sports + Talk Show + + + + Beyond the Sport + After being separated for the past seven years, relief pitcher Brusdar Graterol and his mother Ysmalia finally reunite in Los Angeles. + Sports + Talk Show + + + + Los Angeles Lakers vs. Orlando Magic + Los Angeles Lakers at Orlando Magic + From Amway Center in Orlando, Fla. + Sports + Basketball + + + + Access SportsNet: Lakers + Lakers List Ep. # 1 + The Spectrum SportsNet team compiles and compares their lists for the most underrated Lakers in franchise history. + Sports + Basketball + + + + Access SportsNet: Lakers + Lakers List Ep. # 2 + Opponents that the Lakers and their fans really disliked… and still do to this day. The Spectrum SportsNet team compares their lists for the top villains the Lakers have ever faced. + Sports + Basketball + + + + Backstage: Lakers + Week 1 + As the season nears, an exclusive ride along with Rob Pelinka; behind-the-scenes with LeBron James at media day; head coach Darvin Ham mic'd up for first day of practice. + Sports + Basketball + + + + Backstage: Lakers + Week 1 + As the season nears, an exclusive ride along with Rob Pelinka; behind-the-scenes with LeBron James at media day; head coach Darvin Ham mic'd up for first day of practice. + Sports + Basketball + + + + Lakers Compacto + Lakers at Orlando Magic + Enhanced Lakers game compacted into fast-paced, one-hour presentation. + Sports + Basketball + + + + Backstage: Lakers + Week 1 + As the season nears, an exclusive ride along with Rob Pelinka; behind-the-scenes with LeBron James at media day; head coach Darvin Ham mic'd up for first day of practice. + Sports + Basketball + + + + Access SportsNet: Lakers + In-depth coverage featuring highlights, analysis, reaction and interviews on all things pertaining to the Los Angeles Lakers. + Sports + Basketball + + + + Los Angeles Lakers vs. Miami Heat + Los Angeles Lakers at Miami Heat + LeBron James' Lakers continue a four-game road trip by facing the Heat. Miami is 4-2 against Los Angeles since James led the Lakers to the 2020 NBA title. Bam Adebayo (MIA) averaged 26.5 points and 13.5 rebounds against Los Angeles last season. + Sports + Basketball + + + + Access SportsNet: Lakers + In-depth coverage featuring highlights, analysis, reaction and interviews on all things pertaining to the Los Angeles Lakers. + Sports + Basketball + + + + Los Angeles Lakers vs. Miami Heat + Los Angeles Lakers at Miami Heat + LeBron James' Lakers continue a four-game road trip by facing the Heat. Miami is 4-2 against Los Angeles since James led the Lakers to the 2020 NBA title. Bam Adebayo (MIA) averaged 26.5 points and 13.5 rebounds against Los Angeles last season. + Sports + Basketball + + + + Access SportsNet: Lakers + In-depth coverage featuring highlights, analysis, reaction and interviews on all things pertaining to the Los Angeles Lakers. + Sports + Basketball + + + + Los Angeles Lakers vs. Miami Heat + Los Angeles Lakers at Miami Heat + LeBron James' Lakers continue a four-game road trip by facing the Heat. Miami is 4-2 against Los Angeles since James led the Lakers to the 2020 NBA title. Bam Adebayo (MIA) averaged 26.5 points and 13.5 rebounds against Los Angeles last season. + Sports + Basketball + + + + Access SportsNet: Lakers + In-depth coverage featuring highlights, analysis, reaction and interviews on all things pertaining to the Los Angeles Lakers. + Sports + Basketball + + + + Emeril Forever Pans + Replace your everyday non-stick pans with Emeril Forever Pans! Where the non-stick coating will stay as non-stick as the first day you use it! Learn how you can also receive a FREE Smokeless Grill with this exclusive offer! + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigate Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Reduce swelling in your legs, ankles and feet + LegXercise is the easy-to-use, automatic leg mover that uses continuous movement to soothe pain and promote healthy circulation the natural drug-free way! It's Walking Simulator Technology moves your feet back and forth along its motion track. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigate Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Inogen Portable Oxygen - Oxygen Therapy that Moves with You + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Follow The Money + News and information on odds, point spreads, money lines and over/unders. + News + + + + Los Angeles Lakers vs. Miami Heat + Los Angeles Lakers at Miami Heat + LeBron James' Lakers continue a four-game road trip by facing the Heat. Miami is 4-2 against Los Angeles since James led the Lakers to the 2020 NBA title. Bam Adebayo (MIA) averaged 26.5 points and 13.5 rebounds against Los Angeles last season. + Sports + Basketball + + + + Access SportsNet: Lakers + In-depth coverage featuring highlights, analysis, reaction and interviews on all things pertaining to the Los Angeles Lakers. + Sports + Basketball + + + + Los Angeles Lakers vs. Miami Heat + Los Angeles Lakers at Miami Heat + LeBron James' Lakers continue a four-game road trip by facing the Heat. Miami is 4-2 against Los Angeles since James led the Lakers to the 2020 NBA title. Bam Adebayo (MIA) averaged 26.5 points and 13.5 rebounds against Los Angeles last season. + Sports + Basketball + + + + Access SportsNet: Lakers + In-depth coverage featuring highlights, analysis, reaction and interviews on all things pertaining to the Los Angeles Lakers. + Sports + Basketball + + + + Beyond the Sport + Clayton Kershaw and his wife Ellen host Kershaw's Dodger teammates and Hollywood A-listers at their annual Ping Pong 4 Purpose charity event at Dodger Stadium. + Sports + Talk Show + + + + Beyond the Sport + Celebrating Hispanic Heritage Month with a look back at Fernando Valenzuela's legendary Dodger career and his recent jersey retirement ceremony. + Sports + Talk Show + + + + Beyond the Sport + A look back at some of the most memorable off-the-field moments and excursions during 2023 Dodger road trips. + Sports + Talk Show + + + + Beyond the Sport + After being separated for the past seven years, relief pitcher Brusdar Graterol and his mother Ysmalia finally reunite in Los Angeles. + Sports + Talk Show + + + + Lakers Compacto + Lakers at Miami Heat + Enhanced Lakers game compacted into fast-paced, one-hour presentation. + Sports + Basketball + + + + Backstage: Lakers + Week 1 + As the season nears, an exclusive ride along with Rob Pelinka; behind-the-scenes with LeBron James at media day; head coach Darvin Ham mic'd up for first day of practice. + Sports + Basketball + + + + Backstage: Lakers + Week 1 + As the season nears, an exclusive ride along with Rob Pelinka; behind-the-scenes with LeBron James at media day; head coach Darvin Ham mic'd up for first day of practice. + Sports + Basketball + + + + Access SportsNet: Lakers + In-depth coverage featuring highlights, analysis, reaction and interviews on all things pertaining to the Los Angeles Lakers. + Sports + Basketball + + + + Access SportsNet: Lakers + In-depth coverage featuring highlights, analysis, reaction and interviews on all things pertaining to the Los Angeles Lakers. + Sports + Basketball + + + + Lakers Compacto + Lakers at Miami Heat + Enhanced Lakers game compacted into fast-paced, one-hour presentation. + Sports + Basketball + + + + Backstage: Lakers + Week 1 + As the season nears, an exclusive ride along with Rob Pelinka; behind-the-scenes with LeBron James at media day; head coach Darvin Ham mic'd up for first day of practice. + Sports + Basketball + + + + Access SportsNet: Lakers + Lakers List Ep. # 2 + Opponents that the Lakers and their fans really disliked… and still do to this day. The Spectrum SportsNet team compares their lists for the top villains the Lakers have ever faced. + Sports + Basketball + + + + Access SportsNet: Lakers + In-depth coverage featuring highlights, analysis, reaction and interviews on all things pertaining to the Los Angeles Lakers. + Sports + Basketball + + + + Access SportsNet: Lakers + In-depth coverage featuring highlights, analysis, reaction and interviews on all things pertaining to the Los Angeles Lakers. + Sports + Basketball + + + + Access SportsNet: Lakers + In-depth coverage featuring highlights, analysis, reaction and interviews on all things pertaining to the Los Angeles Lakers. + Sports + Basketball + + + + Reduce swelling in your legs, ankles and feet + LegXercise is the easy-to-use, automatic leg mover that uses continuous movement to soothe pain and promote healthy circulation the natural drug-free way! It's Walking Simulator Technology moves your feet back and forth along its motion track. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Inogen Portable Oxygen - Oxygen Therapy that Moves with You + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigate Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Follow The Money + News and information on odds, point spreads, money lines and over/unders. + News + + + + Access SportsNet: Lakers + In-depth coverage featuring highlights, analysis, reaction and interviews on all things pertaining to the Los Angeles Lakers. + Sports + Basketball + + + + Access SportsNet: Lakers + In-depth coverage featuring highlights, analysis, reaction and interviews on all things pertaining to the Los Angeles Lakers. + Sports + Basketball + + + + Los Angeles Lakers vs. Miami Heat + Los Angeles Lakers at Miami Heat + LeBron James' Lakers continue a four-game road trip by facing the Heat. Miami is 4-2 against Los Angeles since James led the Lakers to the 2020 NBA title. Bam Adebayo (MIA) averaged 26.5 points and 13.5 rebounds against Los Angeles last season. + Sports + Basketball + + + + Backstage: Lakers + Week 1 + As the season nears, an exclusive ride along with Rob Pelinka; behind-the-scenes with LeBron James at media day; head coach Darvin Ham mic'd up for first day of practice. + Sports + Basketball + + + + Backstage: Lakers + Week 1 + As the season nears, an exclusive ride along with Rob Pelinka; behind-the-scenes with LeBron James at media day; head coach Darvin Ham mic'd up for first day of practice. + Sports + Basketball + + + + Access SportsNet: Lakers + Lakers List Ep. # 1 + The Spectrum SportsNet team compiles and compares their lists for the most underrated Lakers in franchise history. + Sports + Basketball + + + + Access SportsNet: Lakers + Lakers List Ep. # 2 + Opponents that the Lakers and their fans really disliked… and still do to this day. The Spectrum SportsNet team compares their lists for the top villains the Lakers have ever faced. + Sports + Basketball + + + + Lakers Compacto + Lakers at Miami Heat + Enhanced Lakers game compacted into fast-paced, one-hour presentation. + Sports + Basketball + + + + Orel Hershiser: Legends of Dodger Baseball Ceremony + Sports + Baseball + + + TVG + + + + Fernando Valenzuela Jersey Retirement Ceremony + Sports + Baseball + + + + Access SportsNet: Dodgers + Best of Breakdowns + The best analytical breakdowns from the Sportsnet LA analysts from throughout the season, including highlight worthy defensive plays, top offensive moments, and the best pitching performances. + Sports + Baseball + + + + Access SportsNet: Dodgers + Best of the Best + Breaking down the best moments from 2023 Dodgers best players, including Mookie Betts, Freddie Freeman, James Outman and more. + Sports + Baseball + + + + Access SportsNet: Dodgers + Celebrating Clayton + A Clayton Kershaw career appreciation, looking back at highlights and most important pitches from one of the greatest players to every wear Dodger blue. + Sports + Baseball + + + + Backstage: Dodgers + 2023 Week 18 + Walker Buehler takes one step closer toward a late-season return following Tommy John surgery in August 2022. Starting pitcher and noted feline enthusiast Tony Gonsolin visits The Cat Cafe during the team's San Diego road trip. + Sports + Baseball + + + + Backstage: Dodgers + 2023 Week 20 + Mookie Betts returns to Boston, where he won a World Series and was named the American League's Most Valuable Player, for the first time since being traded to the Dodgers in 2020. Justin Turner reunites with former Dodgers' teammates. + Sports + Baseball + + + + Backstage: Dodgers + 2023 Week 21 + More than 40 years after Fernandomania swept the nation, the former Cy Young Award winner and World Series champion has his number retired at Dodger Stadium. The Dodgers host members of El Segundo's Little League World Series Champion baseball team. + Sports + Baseball + + + + Backstage: Dodgers + 2023 Week 22 + Dodger players gather to conduct their annual fantasy football draft. Pitcher Ryan Pepiot is mic'd up during pregame warm-ups and discusses his role in the starting rotation. + Sports + Baseball + + + + Backstage: Dodgers + 2023 Week 23 + Relief pitcher Brusdar Graterol visits the world-famous Pike Place Market in Seattle. Whirlwind Major League debut of hard-throwing Dodger prospect Kyle Hurt. Dodgers' team celebrates capturing the National League West division title. + Sports + Baseball + + + + Backstage: Dodgers + 2023 Week 24 + After being separated for the past seven years, relief pitcher Brusdar Graterol and his mother Ysmalia reunite. World Series hero Kirk Gibson returns as a member of the Tigers broadcast team and details his battle with Parkinson's disease. + Sports + Baseball + + + + Backstage: Dodgers + 2023 Week 25 + The homecoming of Miguel Rojas to Miami, where he overcame hardships to become a starting shortstop and how his family's love of music influenced him off the field. + Sports + Baseball + + + + Connected With... + F. Freeman & J. Heyward + Freddie Freeman and Jason Heyward share entertaining stories about their time coming up together in the minor leagues and discuss reuniting as teammates on the Dodgers. + Sports + + + TVG + + + + Dodgermentary: 1988 NLCS + Considered one of the best postseason series in MLB history, the 1988 NLCS supplied all the Hollywood drama fans could ask for. From Mike Scioscia's dramatic game-tying home run in Game 4 to Orel Hershiser pitching a complete game shutout. + Sports + Baseball + + + + Dodgermentary: 1988 Regular Season + The Dodgers' historic 1988 regular season, when Kirk Gibson made an immediate impact in spring training, the contentious games against the New York Mets, and Orel Hershiser broke the MLB record for consecutive scoreless innings pitched. + Sports + Baseball + + + + Backstage: Dodgers + Best of Clayton Kershaw + An in-depth look at Clayton Kershaw on and off the diamond throughout his career, including Kershaw's 2014 no-hitter and his MLB goodwill tour of Cuba. + Sports + Baseball + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Rare Silver Coin Set + Add the First Day of Issue 2023 Morgan and Peace Dollars graded in perfect Mint State and Proof 70 condition to your collection. With Mint State mintages of only 275,000 examples and 400,00 for Proof, these coins are incredible absolute rarities! + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigate Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigate Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Talkin' Blue + 1981 Playoffs + Tommy Lasorda, Ron Cey and Steve Yeager reunite to look back at the 1981 playoff run that ended in the NLCS where the Dodgers topped the Expos in 5 games. + Sports + Baseball + + + + Talkin' Blue + 1981 World Series + Tommy Lasorda, Ron Cey and Steve Yeager reunite to look back at the Dodgers' World Series title in 1981. The Dodgers won four consecutive games after dropping the first two games against the New York Yankees. + Sports + Baseball + + + + Talkin' Blue + 1988 NLCS + Orel Hershiser, Tommy Lasorda and Mickey Hatcher reunite to look back at the 1988 NLCS, where the Dodgers topped the favored Mets in 7 games. + Sports + Baseball + + + + Talkin' Blue + 1988 World Series + Sports + Baseball + + + + Access SportsNet: Dodgers + Best of the Best + Breaking down the best moments from 2023 Dodgers best players, including Mookie Betts, Freddie Freeman, James Outman and more. + Sports + Baseball + + + + Access SportsNet: Dodgers + Celebrating Clayton + A Clayton Kershaw career appreciation, looking back at highlights and most important pitches from one of the greatest players to every wear Dodger blue. + Sports + Baseball + + + + Access SportsNet: Dodgers + Best of Breakdowns + The best analytical breakdowns from the Sportsnet LA analysts from throughout the season, including highlight worthy defensive plays, top offensive moments, and the best pitching performances. + Sports + Baseball + + + + Access SportsNet: Dodgers + Sounds of the Season + The best plays, moments, milestones and comebacks of the 2023 season for the N.L. West Champs, as called on Sportsnet LA. + Sports + Baseball + + + + Dodgers Squeeze Play + Diamondbacks @ Dodgers + From April 1, 2023. + Sports + Baseball + + + + Dodgers Squeeze Play + Rockies @ Dodgers + From April 3, 2023. + Sports + Baseball + + + + Dodgers Squeeze Play + Dodgers at Diamondbacks + From April 6, 2023. + Sports + Baseball + + + + Dodgers Squeeze Play + Dodgers @ Giants + From April 12, 2023. + Sports + Baseball + + + + Dodgers Squeeze Play + Cubs @ Dodgers + From April 15, 2023. + Sports + Baseball + + + + Dodgers Squeeze Play + Mets @ Dodgers + From April 18, 2023. + Sports + Baseball + + + + Dodgers Squeeze Play + Dodgers @ Cubs + From April 20, 2023. + Sports + Baseball + + + + Dodgers Squeeze Play + Dodgers @ Cubs + From April 22, 2023. + Sports + Baseball + + + + Dodgers Squeeze Play + Dodgers @ Cubs + From Apr. 23, 2023. + Sports + Baseball + + + + Dodgers Squeeze Play + Dodgers @ Pirates + From April 25, 2023. + Sports + Baseball + + + + Dodgers Squeeze Play + Cardinals @ Dodgers + From April 29, 2023. + Sports + Baseball + + + + Dodgers Squeeze Play + Cardinals @ Dodgers + From April 30, 2023. + Sports + Baseball + + + + Dodgers Stories: 6 Decades In LA + Celebrates the boys in blue and their fans. Combining archival photos and films with new interviews, this local special features a variety of Dodgers players and people who worked behind-the-scenes to bring the team to Los Angeles. + Specials + Documentary + + + + Access SportsNet: Dodgers + Celebrating Clayton + A Clayton Kershaw career appreciation, looking back at highlights and most important pitches from one of the greatest players to every wear Dodger blue. + Sports + Baseball + + + + Access SportsNet: Dodgers + Best of the Best + Breaking down the best moments from 2023 Dodgers best players, including Mookie Betts, Freddie Freeman, James Outman and more. + Sports + Baseball + + + + Dodgers Dugout + Remembering Tommy Lasorda + Dodgers Dugout has Dodgers fans covered with a one-on-one interview with manager Dave Roberts, access footage and highlights from on and off the diamond. + Sports + Baseball + + + + Dodgermentary: Welcome to Dodgertown + Specials + Sports + + + + Farewell to Vin + Vin Scully is celebrated by current and former players, managers, broadcasters, celebrities and Los Angeles sports personalities, such as Hank Aaron, Kirk Gibson, Al Michaels, Bryan Cranston and Magic Johnson. + Sports + Baseball + + + + Vin Scully Appreciation Ceremony + The Dodgers honor Hall of Fame broadcaster Vin Scully before he calls his final homestand at Dodger Stadium on Sept. 23, 2016. Scully and his family are joined by former Dodgers and the current team to commemorate his memorable career. + Sports + Baseball + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigate Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigate Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Dodgers Squeeze Play + Cardinals @ Dodgers + From April 30, 2023. + Sports + Baseball + + + + Dodgers Squeeze Play + Phillies @ Dodgers + From May 1, 2023. + Sports + Baseball + + + + Fernandomania + For the 40th anniversary of Fernando Valenzuela's rookie year and the Dodgers' 1981 World Series championship, the Dodgers recount the year through archival footage, photos and new interviews with players and broadcasters who experienced it. + Sports + Baseball + + + + The Early Line + Sports + Baseball + + + + Dodgers Rewind + 2023: Cardinals @ Dodgers + From April 30, 2023. + Sports + Baseball + + + + Dodgers Rewind + 2023: Phillies @ Dodgers + From May 1, 2023. + Sports + Baseball + + + + Dodgers Rewind + 2023: Phillies @ Dodgers + From May 3, 2023. + Sports + Baseball + + + + Access SportsNet: Dodgers + Best of the Best + Breaking down the best moments from 2023 Dodgers best players, including Mookie Betts, Freddie Freeman, James Outman and more. + Sports + Baseball + + + + Access SportsNet: Dodgers + Celebrating Clayton + A Clayton Kershaw career appreciation, looking back at highlights and most important pitches from one of the greatest players to every wear Dodger blue. + Sports + Baseball + + + + Backstage: Dodgers + 2023 Week 24 + After being separated for the past seven years, relief pitcher Brusdar Graterol and his mother Ysmalia reunite. World Series hero Kirk Gibson returns as a member of the Tigers broadcast team and details his battle with Parkinson's disease. + Sports + Baseball + + + + Backstage: Dodgers + 2023 Week 25 + The homecoming of Miguel Rojas to Miami, where he overcame hardships to become a starting shortstop and how his family's love of music influenced him off the field. + Sports + Baseball + + + + Access SportsNet: Dodgers + Sounds of the Season + The best plays, moments, milestones and comebacks of the 2023 season for the N.L. West Champs, as called on Sportsnet LA. + Sports + Baseball + + + + Access SportsNet: Dodgers + Best of Breakdowns + The best analytical breakdowns from the Sportsnet LA analysts from throughout the season, including highlight worthy defensive plays, top offensive moments, and the best pitching performances. + Sports + Baseball + + + + Dodgers Squeeze Play + Cardinals @ Dodgers + From April 30, 2023. + Sports + Baseball + + + + Dodgers Squeeze Play + Phillies @ Dodgers + From May 1, 2023. + Sports + Baseball + + + + Dodgers Squeeze Play + Phillies @ Dodgers + From May 3, 2023. + Sports + Baseball + + + + H2O X5 - Super Powerful 5-In-1 Multi-Use Steam Cleaner + Kills 990f Bacteria, Viruses, and Germs with Steam! The 5-in-1 Lightweight, Fast, Powerful, And Completely Chemical Free Steam Cleaner! Lift and remove dirt and stains all around the home! + Paid Program + + + + Inogen Portable Oxygen - Oxygen Therapy that Moves with You + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Under Eye Bags? SOLUTION! + Plexaderm helps reduce Under Eye Bags, Dark Circles, and Wrinkles in just 10 minutes! + Paid Program + Lifestyle + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Under Eye Bags? SOLUTION! + Plexaderm helps reduce Under Eye Bags, Dark Circles, and Wrinkles in just 10 minutes! + Paid Program + Lifestyle + + + + Dodgers Squeeze Play + Dodgers @ Padres + From May 6, 2023. + Sports + Baseball + + + + Dodgers Squeeze Play + Dodgers @ Brewers + From May 9, 2023. + Sports + Baseball + + + + Backstage: Dodgers + 2023 Week 1 + Behind-the-scenes access to the Dodgers season. + Sports + Baseball + + + + The Early Line + Sports + Baseball + + + + Dodgers Rewind + 2023: Dodgers @ Padres + From May 6, 2023. + Sports + Baseball + + + + Dodgers Rewind + 2023: Dodgers @ Brewers + From May 9, 2023. + Sports + Baseball + + + + Access SportsNet: Dodgers + Comprehensive coverage on everything Dodgers with in-depth access and analysis on the latest team news. + Sports + Baseball + + + + Access SportsNet: Dodgers + Comprehensive coverage on everything Dodgers with in-depth access and analysis on the latest team news. + Sports + Baseball + + + + Access SportsNet: Dodgers + Celebrating Clayton + A Clayton Kershaw career appreciation, looking back at highlights and most important pitches from one of the greatest players to every wear Dodger blue. + Sports + Baseball + + + + Access SportsNet: Dodgers + Best of the Best + Breaking down the best moments from 2023 Dodgers best players, including Mookie Betts, Freddie Freeman, James Outman and more. + Sports + Baseball + + + + Access SportsNet: Dodgers + Best of Breakdowns + The best analytical breakdowns from the Sportsnet LA analysts from throughout the season, including highlight worthy defensive plays, top offensive moments, and the best pitching performances. + Sports + Baseball + + + + Orel Hershiser: Legends of Dodger Baseball Ceremony + Sports + Baseball + + + TVG + + + + Access SportsNet: Dodgers + Sounds of the Season + The best plays, moments, milestones and comebacks of the 2023 season for the N.L. West Champs, as called on Sportsnet LA. + Sports + Baseball + + + + Connected With... + F. Freeman & J. Heyward + Freddie Freeman and Jason Heyward share entertaining stories about their time coming up together in the minor leagues and discuss reuniting as teammates on the Dodgers. + Sports + + + TVG + + + + Access SportsNet: Dodgers + Comprehensive coverage on everything Dodgers with in-depth access and analysis on the latest team news. + Sports + Baseball + + + + Access SportsNet: Dodgers + Comprehensive coverage on everything Dodgers with in-depth access and analysis on the latest team news. + Sports + Baseball + + + + Access SportsNet: Dodgers + Comprehensive coverage on everything Dodgers with in-depth access and analysis on the latest team news. + Sports + Baseball + + + + Access SportsNet: Dodgers + Comprehensive coverage on everything Dodgers with in-depth access and analysis on the latest team news. + Sports + Baseball + + + + Under Eye Bags? SOLUTION! + Plexaderm helps reduce Under Eye Bags, Dark Circles, and Wrinkles in just 10 minutes! + Paid Program + Lifestyle + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigate Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Under Eye Bags? SOLUTION! + Plexaderm helps reduce Under Eye Bags, Dark Circles, and Wrinkles in just 10 minutes! + Paid Program + Lifestyle + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigate Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigate Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + KILL COVID-19 WITH CLEANBOSS! + Bye Bye Bacteria! Farewell to Germs, COVID-19, Grease & Grime in your home with CleanBoss! Wipe away the worst messes in your home and keep your children & pets safe. Bad viruses, bacteria, fungus mold & allergens don't stand a chance with CleanBoss! + Paid Program + + + + Access SportsNet: Dodgers + Comprehensive coverage on everything Dodgers with in-depth access and analysis on the latest team news. + Sports + Baseball + + + + Access SportsNet: Dodgers + Comprehensive coverage on everything Dodgers with in-depth access and analysis on the latest team news. + Sports + Baseball + + + + Access SportsNet: Dodgers + Comprehensive coverage on everything Dodgers with in-depth access and analysis on the latest team news. + Sports + Baseball + + + + The Early Line + Sports + Baseball + + + + Dodgers Rewind + 2023: Dodgers @ Brewers + From May 10, 2023. + Sports + Baseball + + + + Dodgers Rewind + 2023: Padres @ Dodgers + From May 12, 2023. + Sports + Baseball + + + + Women's College Volleyball + 2023: Colorado State at Wyoming + From Oct. 3, 2023. + Sports + Volleyball + + + + San Diego State vs. Fresno State + San Diego State at Fresno State + Women's college volleyball action. + Sports + Volleyball + + + + Air Force vs. New Mexico + Air Force at New Mexico + Women's college volleyball action. + Sports + Volleyball + + + + Sports Stars of Tomorrow + Profiles of the top rookie, college and high-school talent in sports; current athletes share their experiences, advice and personal impressions of the road to stardom. + Sports + Anthology + + + + Florida Gators Basketball Preview Show + Preview of the 2023-2024 Florida Gators men's basketball team and upcoming season. + Sports + Basketball + + + + Collegiate Summer Baseball + 2023 NECBL All-Star Game + From July 23, 2023. + Sports + Baseball + + + + Texas High School Football Classics + 1995: 5A Division I, Final - Converse Judson vs. Odessa Permian + From Dec. 16, 1995. + Sports + Football + + + + High School Football + 2022 MHSAA Division 8 Championship: Ubly vs. Ottawa Lake Whiteford + From Nov. 25, 2022. + Sports + Football + + + + High School Football + 2022 MHSAA Division 2 Championship: Grand Rapids Forest Hills Central vs. Warren De La Salle Collegi + From Nov. 25, 2022. + Sports + Football + + + + High School Football + 2022 MHSAA Division 6 Championship: Negaunee vs. Grand Rapids West Catholic + From Nov. 25, 2022. + Sports + Football + + + + Florida Gators Basketball Preview Show + Preview of the 2023-2024 Florida Gators men's basketball team and upcoming season. + Sports + Basketball + + + + Tennessee: The Josh Heupel Show + Local + + + + Gamecock Football With Coach Shane Beamer + A weekly conversation with South Carolina football coach Shane Beamer. + + Shane Beamer + + Sports + Football + + + + 18 Holes With Natalie Gulbis and Jimmy Hanlin + Virginia Tech + Jimmy Hanlin and Natalie Gulbis showcase the best golf destinations. + Sports + Golf + + + + Air Force vs. Utah State + Air Force at Utah State + Women's college volleyball action. + Sports + Volleyball + + + + High School Football + 2022 MHSAA Division 8 Championship: Ubly vs. Ottawa Lake Whiteford + From Nov. 25, 2022. + Sports + Football + + + + High School Football + 2022 MHSAA Division 2 Championship: Grand Rapids Forest Hills Central vs. Warren De La Salle Collegi + From Nov. 25, 2022. + Sports + Football + + + + High School Football + 2022 MHSAA Division 6 Championship: Negaunee vs. Grand Rapids West Catholic + From Nov. 25, 2022. + Sports + Football + + + + High School Football + 2022 MHSAA Division 6 Championship: Negaunee vs. Grand Rapids West Catholic + From Nov. 25, 2022. + Sports + Football + + + + Florida Gators Basketball Preview Show + Preview of the 2023-2024 Florida Gators men's basketball team and upcoming season. + Sports + Basketball + + + + Tennessee: The Josh Heupel Show + Local + + + + Gamecock Football With Coach Shane Beamer + A weekly conversation with South Carolina football coach Shane Beamer. + + Shane Beamer + + Sports + Football + + + + 18 Holes With Natalie Gulbis and Jimmy Hanlin + Virginia Tech + Jimmy Hanlin and Natalie Gulbis showcase the best golf destinations. + Sports + Golf + + + + Air Force vs. Utah State + Air Force at Utah State + Women's college volleyball action. + Sports + Volleyball + + + + College Wrestling + 2023: NCWA Championship + Classic college wrestling events. + Sports + Wrestling + + + + College Wrestling + 2023: NCAA Division III Championship + Classic college wrestling events. + Sports + Wrestling + + + + College Wrestling + 2023: NCAA Division II Championship Finals + Classic college wrestling events. + Sports + Wrestling + + + + College Wrestling + 2023: NAIA Finals + Classic college wrestling events. + Sports + Wrestling + + + + Women's College Wrestling + 2023: NAIA and NCAA Women's Finals + Sports + Wrestling + + + + Tennessee: The Josh Heupel Show + Local + + + + Gamecock Football With Coach Shane Beamer + A weekly conversation with South Carolina football coach Shane Beamer. + + Shane Beamer + + Sports + Football + + + + Inside Michigan Football + Providing fans with a behind-the-scenes, inside look at the University of Michigan football program. + Sports + Football + + + + College Wrestling + 2023: NCWA Championship + Classic college wrestling events. + Sports + Wrestling + + + + College Wrestling + 2023: NCAA Division III Championship + Classic college wrestling events. + Sports + Wrestling + + + + College Wrestling + 2023: NCAA Division II Championship Finals + Classic college wrestling events. + Sports + Wrestling + + + + College Wrestling + 2023: NAIA Finals + Classic college wrestling events. + Sports + Wrestling + + + + College Wrestling + 2023: NAIA Finals + Classic college wrestling events. + Sports + Wrestling + + + + Women's College Wrestling + 2023: NAIA and NCAA Women's Finals + Sports + Wrestling + + + + Tennessee: The Josh Heupel Show + Local + + + + Gamecock Football With Coach Shane Beamer + A weekly conversation with South Carolina football coach Shane Beamer. + + Shane Beamer + + Sports + Football + + + + Inside Michigan Football + Providing fans with a behind-the-scenes, inside look at the University of Michigan football program. + Sports + Football + + + + High School Football + 2023: Rock Creek at St. Edward + From Sep. 2, 2023. + Sports + Football + + + + High School Football + 2023: St. Edward at Massillon + From Sep. 15, 2023. + Sports + Football + + + + High School Football + 2023: River Rouge at St. Edward + From Sep. 23, 2023. + Sports + Football + + + + Inside Michigan Football + Providing fans with a behind-the-scenes, inside look at the University of Michigan football program. + Sports + Football + + + + Sports Stars of Tomorrow + Profiles of the top rookie, college and high-school talent in sports; current athletes share their experiences, advice and personal impressions of the road to stardom. + Sports + Anthology + + + + Florida Football With Billy Napler + Sports + Football + + + + 18 Holes With Natalie Gulbis and Jimmy Hanlin + Virginia Tech + Jimmy Hanlin and Natalie Gulbis showcase the best golf destinations. + Sports + Golf + + + + Tennessee: The Josh Heupel Show + Local + + + + High School Football + 2023: Rock Creek at St. Edward + From Sep. 2, 2023. + Sports + Football + + + + High School Football + 2023: St. Edward at Massillon + From Sep. 15, 2023. + Sports + Football + + + + High School Football + 2023: River Rouge at St. Edward + From Sep. 23, 2023. + Sports + Football + + + + High School Football + 2023: River Rouge at St. Edward + From Sep. 23, 2023. + Sports + Football + + + + Inside Michigan Football + Providing fans with a behind-the-scenes, inside look at the University of Michigan football program. + Sports + Football + + + + Sports Stars of Tomorrow + Profiles of the top rookie, college and high-school talent in sports; current athletes share their experiences, advice and personal impressions of the road to stardom. + Sports + Anthology + + + + Florida Football With Billy Napler + Sports + Football + + + + 18 Holes With Natalie Gulbis and Jimmy Hanlin + Virginia Tech + Jimmy Hanlin and Natalie Gulbis showcase the best golf destinations. + Sports + Golf + + + + Tennessee: The Josh Heupel Show + Local + + + + Women's College Soccer + 2023: New Mexico at Fresno State + From Sep. 24, 2023. + Sports + Soccer + + + + Women's College Soccer + 2023: Colorado State at Utah State + From Sep. 28, 2023. + Sports + Soccer + + + + Women's College Soccer + 2023: Utah State at New Mexico + From Oct. 5, 2023. + Sports + Soccer + + + + Boise State vs. New Mexico + Boise State at New Mexico + Women's college soccer action. + Sports + Soccer + + + + San Jose State vs. Boise State + San Jose State at Boise State + Women's college soccer action. + Sports + Soccer + + + + New Mexico vs. UNLV + New Mexico at UNLV + Women's college soccer action. + Sports + Soccer + + + + Women's College Soccer + 2023: New Mexico at Fresno State + From Sep. 24, 2023. + Sports + Soccer + + + + High School Scoreboard Live + Highlights, analysis and scores from high school football games across Texas. + Sports + Football + + + + The Big Ten Show + Sports + Football + + + + Women's College Wrestling + NAIA and NCAA Women's Finals + Sports + Wrestling + + + + Girls High School Volleyball + 2022 IHSAA Class 2A: Linton-Stockton vs. Wapahani + From Nov. 5, 2022. + Sports + Volleyball + + + + Girls High School Volleyball + 2022 IHSAA Class 3A: Providence vs. Bellmont + From Nov. 5, 2022. + Sports + Volleyball + + + + Girls High School Volleyball + 2022 IHSAA Class 4A: Yorktown vs. Hamilton Southeastern + From Nov. 5, 2022. + Sports + Volleyball + + + + Set Apart + The story of former NFL quarterback Trent Dilfer who took over as the head coach of the Lipscomb Academy high school football team in 2019 and set out to turn the program around. + Sports + Football + + + + Texas High School Football Classics + 1998: Duncanville vs. Converse Judson + From Dec. 11, 1998. + Sports + Football + + + + High School Football + 2022 UIL 5A Division II: Dallas South Oak Cliff vs. Port Neches-Groves + From Dec. 16, 2022. + Sports + Football + + + + High School Football + 2022 UIL 6A Division II: DeSoto vs. Austin Vandegrift + From Dec. 17, 2022. + Sports + Football + + + + High School Football + 2022 UIL 6A Division I: Duncanville vs. Galena Park North Shore + From Dec. 17, 2022. + Sports + Football + + + + High School Scoreboard Live + Highlights, analysis and scores from high school football games across Texas. + Sports + Football + + + + Perfect Game TV + Perfect Game TV is the only nationally syndicated baseball/softball series in the country that goes beyond the diamond to follow the finest elite baseball events all season long. + Sports + Baseball + + + + Texas High School Football Classics + 1998: Duncanville vs. Converse Judson + From Dec. 11, 1998. + Sports + Football + + + + High School Football + 2022 UIL 5A Division II: Dallas South Oak Cliff vs. Port Neches-Groves + From Dec. 16, 2022. + Sports + Football + + + + High School Football + 2022 UIL 6A Division II: DeSoto vs. Austin Vandegrift + From Dec. 17, 2022. + Sports + Football + + + + High School Football + 2022 UIL 6A Division II: DeSoto vs. Austin Vandegrift + From Dec. 17, 2022. + Sports + Football + + + + High School Football + 2022 UIL 6A Division I: Duncanville vs. Galena Park North Shore + From Dec. 17, 2022. + Sports + Football + + + + Collegiate Summer Baseball + 2023 New England Collegiate All Star Game + Coverage of amateur baseball leagues featuring college players. + Sports + Baseball + + + + High School Baseball + IHSAA 2A Tournament: Illiana Christian vs. Covenant Christian + Final. + Sports + Baseball + + + + High School Baseball + IHSAA 3A Tournament: Andrean vs. Silver Creek + Final. + Sports + Baseball + + + + High School Baseball + IHSAA 1A Tournament: Lafayette Central Catholic vs. Barr-Reeve + Final. + Sports + Baseball + + + + High School Scoreboard Live + Highlights, analysis and scores from high school football games across Texas. + Sports + Football + + + + High School Spotlight + Stories of high school teams and student-athletes from across Texas. + Sports + Football + + + + Ford High School Player of the Week + Sports + Football + + + + Sports Stars of Tomorrow + Profiles of the top rookie, college and high-school talent in sports; current athletes share their experiences, advice and personal impressions of the road to stardom. + Sports + Anthology + + + + 18 Holes With Natalie Gulbis and Jimmy Hanlin + University of Dayton + Jimmy Hanlin and Natalie Gulbis showcase the best golf destinations. + Sports + Golf + + + + Girls High School Volleyball + CIF-Southern Section Division 1 Tournament, Final: Teams TBA + Sports + Volleyball + + + + High School Baseball + IHSAA 2A Tournament: Illiana Christian vs. Covenant Christian + Final. + Sports + Baseball + + + + High School Baseball + IHSAA 3A Tournament: Andrean vs. Silver Creek + Final. + Sports + Baseball + + + + High School Baseball + IHSAA 3A Tournament: Andrean vs. Silver Creek + Final. + Sports + Baseball + + + + High School Baseball + IHSAA 1A Tournament: Lafayette Central Catholic vs. Barr-Reeve + Final. + Sports + Baseball + + + + Perfect Game TV + Perfect Game TV is the only nationally syndicated baseball/softball series in the country that goes beyond the diamond to follow the finest elite baseball events all season long. + Sports + Baseball + + + + High School Softball + WIAA Division 5 Championship, Pacelli vs. Oakfield + Sports + Softball + + + + High School Softball + WIAA Division 4 Championship, Iola-Scandinavia vs. Waterloo + Sports + Softball + + + + High School Softball + WIAA Division 3 Championship, Brodhead vs. Mayville + Sports + Softball + + + + High School Softball + WIAA Division 2 Championship: Freedom vs. New London + Sports + Softball + + + + High School Spotlight + Stories of high school teams and student-athletes from across Texas. + Sports + Football + + + + Ford High School Player of the Week + Sports + Football + + + + Sports Stars of Tomorrow + Profiles of the top rookie, college and high-school talent in sports; current athletes share their experiences, advice and personal impressions of the road to stardom. + Sports + Anthology + + + + 18 Holes With Natalie Gulbis and Jimmy Hanlin + University of Dayton + Jimmy Hanlin and Natalie Gulbis showcase the best golf destinations. + Sports + Golf + + + + High School Softball + WIAA Division 1 Championship, Kaukauna vs. Superior + Sports + Softball + + + + High School Softball + WIAA Division 5 Championship, Pacelli vs. Oakfield + Sports + Softball + + + + High School Softball + WIAA Division 4 Championship, Iola-Scandinavia vs. Waterloo + Sports + Softball + + + + High School Scoreboard Live + Highlights, analysis and scores from high school football games across Texas. + Sports + Football + + + + Ford High School Player of the Week + Sports + Football + + + + High School Softball + WIAA Division 3 Championship, Brodhead vs. Mayville + Sports + Softball + + + + High School Softball + WIAA Division 3 Championship, Brodhead vs. Mayville + Sports + Softball + + + + High School Softball + WIAA Division 2 Championship: Freedom vs. New London + Sports + Softball + + + + High School Softball + WIAA Division 1 Championship, Kaukauna vs. Superior + Sports + Softball + + + + High School Football + 2022 UIL 1A Six-Man Division II: Benjamin vs. Loraine + From Dec. 14, 2022. + Sports + Football + + + + High School Football + 2022 UIL 1A Six-Man Division I: Westbrook vs. Abbott + From Dec. 14, 2022. + Sports + Football + + + + High School Football + 2022 UIL 2A Division II: Albany vs. Mart + From Dec. 14, 2022. + Sports + Football + + + + High School Football + 2022 UIL 2A Division I: Hawley vs. Refugio + From Dec. 15, 2022. + Sports + Football + + + + Ford High School Player of the Week + Sports + Football + + + + Sports Stars of Tomorrow + Profiles of the top rookie, college and high-school talent in sports; current athletes share their experiences, advice and personal impressions of the road to stardom. + Sports + Anthology + + + + High School Scoreboard Live + Highlights, analysis and scores from high school football games across Texas. + Sports + Football + + + + High School Spotlight + Stories of high school teams and student-athletes from across Texas. + Sports + Football + + + + Perfect Game TV + Sports + Golf + + + + Girls High School Volleyball + CIF-SS Division I Tournament, Championship: Mater Dei vs. Mira Costa + Sports + Volleyball + + + + Sports Stars of Tomorrow + Profiles of the top rookie, college and high-school talent in sports; current athletes share their experiences, advice and personal impressions of the road to stardom. + Sports + Anthology + + + + Saint Mary's (Calif.) vs. Pacific + WCC Tournament: Saint Mary's (Calif.) vs. Pacific + The No. 7 Gaels challenge the No. 6 Tigers in the second round of the West Coast Conference Tournament. Taycee Wedin contributed 25 points as Saint Mary's blew out Loyola Marymount 74-43 in the first round. Pacific beat Saint Mary's 68-53 on Feb. 25. + Sports + Basketball + + + + BYU vs. San Francisco + WCC Tournament: BYU vs. San Francisco + Quarterfinal. + Sports + Basketball + + + + Pacific vs. San Diego. + WCC Tournament: Pacific vs. San Diego + Quarterfinal. + Sports + Basketball + + + + Texas High School Football Classics + 2013: 3A Division II, Final - Fairfield vs. Argyle + From Dec. 20, 2013. + Sports + Football + + + + Girls High School Volleyball + CIF-SS Division I Tournament, Championship: Mater Dei vs. Mira Costa + Sports + Volleyball + + + + Massachusetts vs. Clarkson + Holiday Face-Off: Massachusetts vs. Clarkson + From Fiserv Forum in Milwaukee. + Sports + Hockey + + + + University of Wisconsin (Madison) vs. Lake Superior State + Holiday Face-Off: Wisconsin vs. Lake Superior State + From Fiserv Forum in Milwaukee. + Sports + Hockey + + + + Set Apart + The story of former NFL quarterback Trent Dilfer who took over as the head coach of the Lipscomb Academy high school football team in 2019 and set out to turn the program around. + Sports + Football + + + + High School Football + CIF-SS Round 1: Valencia at Servite + Action from high school football. + Sports + Football + + + + Sports Stars of Tomorrow + Profiles of the top rookie, college and high-school talent in sports; current athletes share their experiences, advice and personal impressions of the road to stardom. + Sports + Anthology + + + + Girls High School Volleyball + CIF-SS Division I Tournament, Championship: Mater Dei vs. Mira Costa + Sports + Volleyball + + + + Massachusetts vs. Clarkson + Holiday Face-Off: Massachusetts vs. Clarkson + From Fiserv Forum in Milwaukee. + Sports + Hockey + + + + University of Wisconsin (Madison) vs. Lake Superior State + Holiday Face-Off: Wisconsin vs. Lake Superior State + From Fiserv Forum in Milwaukee. + Sports + Hockey + + + + High School Football + CIF-SS Round 1: Valencia at Servite + Action from high school football. + Sports + Football + + + + High School Football + CIF-SS Round 1: Valencia at Servite + Action from high school football. + Sports + Football + + + + High School Scoreboard Live + Highlights, analysis and scores from high school football games across Texas. + Sports + Football + + + + Girls High School Volleyball + CIF-SS Division I Tournament, Championship: Mater Dei vs. Mira Costa + Sports + Volleyball + + + + Girls High School Volleyball + IHSAA Class A Championship: Tecumseh vs. Fort Wayne Blackhawk Christian + Sports + Volleyball + + + + Girls High School Volleyball + IHSAA Class 2A Championship: Linton-Stockton vs. Wapahani + Sports + Volleyball + + + + Girls High School Volleyball + IHSAA Class 3A Championship: Providence vs. Bellmont + Sports + Volleyball + + + + Girls High School Volleyball + IHSAA Class 4A Championship: Yorktown vs. Hamilton Southeastern + Sports + Volleyball + + + + High School Spotlight + Stories of high school teams and student-athletes from across Texas. + Sports + Football + + + + Ford High School Player of the Week + Sports + Football + + + + High School Football + CIF-SS Round 1: Valencia at Servite + Action from high school football. + Sports + Football + + + + Sports Stars of Tomorrow + Profiles of the top rookie, college and high-school talent in sports; current athletes share their experiences, advice and personal impressions of the road to stardom. + Sports + Anthology + + + + Girls High School Volleyball + IHSAA Class A Championship: Tecumseh vs. Fort Wayne Blackhawk Christian + Sports + Volleyball + + + + Girls High School Volleyball + IHSAA Class 2A Championship: Linton-Stockton vs. Wapahani + Sports + Volleyball + + + + Girls High School Volleyball + IHSAA Class 3A Championship: Providence vs. Bellmont + Sports + Volleyball + + + + Girls High School Volleyball + IHSAA Class 4A Championship: Yorktown vs. Hamilton Southeastern + Sports + Volleyball + + + + Girls High School Volleyball + IHSAA Class 4A Championship: Yorktown vs. Hamilton Southeastern + Sports + Volleyball + + + + High School Spotlight + Stories of high school teams and student-athletes from across Texas. + Sports + Football + + + + Ford High School Player of the Week + Sports + Football + + + + High School Football + CIF-SS Round 1: Valencia at Servite + Action from high school football. + Sports + Football + + + + Sports Stars of Tomorrow + Profiles of the top rookie, college and high-school talent in sports; current athletes share their experiences, advice and personal impressions of the road to stardom. + Sports + Anthology + + + + Eastern Kentucky vs. Northern Kentucky + Eastern Kentucky at Northern Kentucky + From BB&T Arena in Highland Heights, Ky. + Sports + Basketball + + + + Wisconsin-Milwaukee vs. Northern Kentucky + Wisconsin-Milwaukee at Northern Kentucky + From BB&T Arena in Highland Heights, Ky. + Sports + Basketball + + + + Kent State vs. Northern Kentucky + Kent State at Northern Kentucky + From BB&T Arena in Highland Heights, Ky. + Sports + Basketball + + + + Youngstown State vs. Northern Kentucky + Youngstown State at Northern Kentucky + From BB&T Arena in Highland Heights, Ky. + Sports + Basketball + + + + Wisconsin-Milwaukee vs. Northern Kentucky + Wisconsin-Milwaukee at Northern Kentucky + From BB&T Arena in Highland Heights, Ky. + Sports + Basketball + + + + High School Football + CIF-SS Round 1: Valencia at Servite + Action from high school football. + Sports + Football + + + + High School Scoreboard Live + Highlights, analysis and scores from high school football games across Texas. + Sports + Football + + + + Eastern Kentucky vs. Northern Kentucky + Eastern Kentucky at Northern Kentucky + From BB&T Arena in Highland Heights, Ky. + Sports + Basketball + + + + Wisconsin-Milwaukee vs. Northern Kentucky + Wisconsin-Milwaukee at Northern Kentucky + From BB&T Arena in Highland Heights, Ky. + Sports + Basketball + + + + Kent State vs. Northern Kentucky + Kent State at Northern Kentucky + From BB&T Arena in Highland Heights, Ky. + Sports + Basketball + + + + Kent State vs. Northern Kentucky + Kent State at Northern Kentucky + From BB&T Arena in Highland Heights, Ky. + Sports + Basketball + + + + Youngstown State vs. Northern Kentucky + Youngstown State at Northern Kentucky + From BB&T Arena in Highland Heights, Ky. + Sports + Basketball + + + + Wisconsin-Milwaukee vs. Northern Kentucky + Wisconsin-Milwaukee at Northern Kentucky + From BB&T Arena in Highland Heights, Ky. + Sports + Basketball + + + + High School Football + MHSAA 8 Player Final, Divlsion 1: Martin vs. Merrill + Action from high school football. + Sports + Football + + + + High School Football + MHSAA 8 Player Final, Divlsion 2: Mendon vs. Powers North Central + Action from high school football. + Sports + Football + + + + High School Football + CIF-SS Round 1: Valencia at Servite + Action from high school football. + Sports + Football + + + + High School Scoreboard Live + Highlights, analysis and scores from high school football games across Texas. + Sports + Football + + + + Girls High School Volleyball + CIF-SS Division I Tournament, Championship: Mater Dei vs. Mira Costa + Sports + Volleyball + + + + High School Football + MHSAA 8 Player Final, Divlsion 1: Martin vs. Merrill + Action from high school football. + Sports + Football + + + + Rizzoli & Isles + 5:26 + When an old watch is found in a dead woman's stomach, figuring out its significance becomes the key to protecting Jane and the people she loves. + + Angie Harmon + Sasha Alexander + Lorraine Bracco + + Drama + + + TV14 + + + + The Closer + War Zone + After returning home from duty in Afghanistan, three soldiers are gunned down outside a club; Brenda's investigation puts her on a collision course with Maj. Edward Dorset. + + Kyra Sedgwick + J.K. Simmons + Corey Reynolds + + Drama + + + TV14 + + + + The Closer + Last Woman Standing + Brenda's squad investigates the murder of an aspiring actress who used an online dating service; Brenda prepares for an interview with the mayor. + + Kyra Sedgwick + J.K. Simmons + Corey Reynolds + + Drama + + + TV14 + + + + CSI: Cyber + L0M1S + The cyber team investigates when nine planes from the same airport undergo a coordinated Wi-Fi attack. + + Patricia Arquette + James Van Der Beek + Peter MacNicol + + Drama + + + TVPG + + + + CSI: Cyber + Click Your Poison + When a man dies after taking medication purchased through a hacked ad on a website, Ryan and the team investigate. + + Patricia Arquette + James Van Der Beek + Peter MacNicol + + Drama + + + TV14 + + + + Rizzoli & Isles + Can I Get a Witness? + A witness agrees to testify against a gang member after a community activist is gunned down; TV host Bill O'Reilly criticizes the police department. + + Angie Harmon + Sasha Alexander + Lorraine Bracco + + Drama + + + TV14 + + + + In Plain Sight + The Rolling Stones + A witness is forced to enter the program after being mistaken for his twin. + + Mary McCormack + Frederick Weller + Nichole Hiltz + + Drama + + + TVPG + + + + Saving Grace + A Survivor Lives Here + Grace is called to the crime scene where there is blood everywhere but no body; Ham and his wife separate; a ketchup and mustard incident becomes a running joke around the squad room. + + Holly Hunter + Leon Rippy + Kenny Johnson + + Drama + + + TVMA + + + + Cold Case + Triple Threat + Lilly and the team re-examine the 1989 death of a young Russian opera singer who defected to the U.S. with her family before the fall of the Berlin Wall. + + Kathryn Morris + Danny Pino + John Finn + + Drama + + + TVPG + + + + Cold Case + Pin Up Girl + A crime scene photo provided by a fan offers new evidence in the 1953 murder of a famous pinup girl. + + Kathryn Morris + Danny Pino + John Finn + + Drama + + + TV14 + + + + Unforgettable + Bigtime + Carrie and Al's first case with the NYPD's Major Crimes Section -- a high-profile kidnapping -- hits close to home. + + Poppy Montgomery + Dylan Walsh + Jane Curtin + + Drama + + + TV14 + + + + The Good Wife + Unplugged + The firm takes the case of a woman whose husband is in a coma; Alicia makes a move to ensure that the firm chooses her over Cary. + + Julianna Margulies + Christine Baranski + Josh Charles + + Drama + Legal + + + TVPG + + + + Ghost Whisperer + Big Chills + Melinda reconnects with old high-school friends after one of their classmates dies mysteriously. + + Jennifer Love Hewitt + David Conrad + Camryn Manheim + + Drama + + + TVPG + + + + Beauty and the Beast + Once Upon a Time in the City of New York + Catherine Chandler is attacked and left to die, but her life is saved by a mysterious man-beast who lives in a subterranean world. + + Linda Hamilton + Ron Perlman + Roy Dotrice + + Drama + + + TVPG + + + + Tails of Valor + The Mane of the House + A miniature horse works as a service animal for a diabetic dog trainer; a dog gives his handler new hope. + Reality TV + Animals + + + TVG + + + + Recipe Rehab + Fried Rice & Spring Rolls + Chefs Richard and Vikki re-create fried rice and spring rolls with less calories and fat for the Pei family. + Food + Instructional + + + TVG + + + + Touched by an Angel + Band of Angels + A young man faces a dismal future after he kills the only person who ever had any faith in him, until the angels intervene. + + Roma Downey + Della Reese + John Dye + + Drama + + + TVPG + + + + Elizabeth Stanton's Great Big World + Medieval Adventure + Elizabeth and her celebrity friends step back in time to the Middle Ages, get trained in battle by a fearless knight, meet mighty steeds and participate in a royal Spanish festival and tournament.Guests: Jennifer Veal, Lucas Cruikshank.. + Travel + Instructional + + + TVG + + + + Elizabeth Stanton's Great Big World + High-Flying Adventures + Elizabeth and her celebrity friends get a real bird's-eye view from seats of a seaplane, an F-16 fighter jet and Goodyear's Spirit of America.Guests: Rob Pinkston, Jennifer Veal, Lucas Cruikshank.. + Travel + Instructional + + + TVG + + + + Murder, She Wrote + Lovers and Other Killers + Jessica sets out to prove her secretary isn't a murder suspect. + + Angela Lansbury + + Drama + + + TVG + + + + Murder, She Wrote + Hit, Run and Homicide + Jessica helps clear her neighbor (Van Johnson), an eccentric suspected of murdering with one of his inventions. + + Angela Lansbury + + Drama + + + TVG + + + + Providence + The Good Doctor + Syd counsels a ballerina whose ankle risks permanent injury; Robbie takes pity on his jailed tormentor. + + Melina Kanakaredes + Mike Farrell + Paula Cale + + Drama + + + TVPG + + + + Medium + How to Make a Killing in Big Business + Allison must decide if she should violate the contract she signed at her new job; Ariel realizes that the medication she is taking may stop her from being able to save a life. + + Patricia Arquette + Jake Weber + Miguel Sandoval + + Drama + + + TV14 + + + + Crossing Jordan + John Doe + Bug uses forensic science to trace a vagrant's final steps and find his killer; Garret investigates the shooting death of a detective. + + Jill Hennessy + Miguel Ferrer + Ken Howard + + Drama + + + TV14 + + + + Covert Affairs + Into the White + Annie must determine Teo's true allegiances; Joan begins a round of interviews. + + Piper Perabo + Christopher Gorham + Peter Gallagher + + Drama + + + TV14 + + + + Cold Case + 8 Years + Lilly reopens a 1988 case involving four high-school friends who are brought in for questioning when another is found dead. + + Kathryn Morris + Danny Pino + John Finn + + Drama + + + TVPG + + + + Unforgettable + We Can Be Heroes + Major Crimes determines that the kidnapping of a prominent scientist's son was not a crime of opportunity but rather a calculated scheme for revenge. + + Poppy Montgomery + Dylan Walsh + James Hiroyuki Liao + + Drama + + + TV14 + + + + Rizzoli & Isles + Hide and Seek + When Maura is abducted, Jane and the team are determined to bring her home; Maura discovers a conspiracy. + + Angie Harmon + Sasha Alexander + Lorraine Bracco + + Drama + + + TV14 + + + + The Closer + Executive Order + After two paramedics are murdered, the LAPD and the FBI investigate a case that could be the precursor to a terrorist attack. + + Kyra Sedgwick + J.K. Simmons + Corey Reynolds + + Drama + + + TV14 + + + + The Closer + Old Money + After one of Brenda's detectives is ambushed on the street, the investigation turns into a race to clear the detective's name over allegations of witness tampering. + + Kyra Sedgwick + J.K. Simmons + Corey Reynolds + + Drama + + + TV14 + + + + CSI: Cyber + Ghost in the Machine + The cyber team investigates when a killer hacks into a popular online game and tricks people into delivering illegal weapons. + + Patricia Arquette + James Van Der Beek + Peter MacNicol + + Drama + + + TV14 + + + + CSI: Cyber + Bit by Bit + A jewelry store robbery-homicide takes place during a power outage in Detroit -- and it's revealed that jewels were not the motivation for the crime. + + Patricia Arquette + James Van Der Beek + Peter MacNicol + + Drama + + + TV14 + + + + Rizzoli & Isles + He Ain't Heavy, He's My Brother + A bank manager is shot during a robbery; Jane's brother may face more trouble as his relationship with Maura begins to grow. + + Angie Harmon + Sasha Alexander + Lorraine Bracco + + Drama + + + TV14 + + + + In Plain Sight + Girls, Interrupted + Mary takes a WITSEC-mandated road trip; Marshall and Stan deal with a rock star witness. + + Mary McCormack + Frederick Weller + Nichole Hiltz + + Drama + + + TVPG + + + + Saving Grace + A Little Hometown Love + The squads evidence supervisor is found dead in a bathroom stall at the local cop hang-out; Ham's brother comes to visit before being deployed; Grace and Leon dream about each other. + + Holly Hunter + Leon Rippy + Kenny Johnson + + Drama + + + TVMA + + + + Cold Case + Street Money + The team reopens the murder case of a young politician who promised to get rid of drug dealers preying on kids in the neighborhood he grew up in. + + Kathryn Morris + Danny Pino + John Finn + + Drama + + + TV14 + + + + Unforgettable + Incognito + Carrie goes under cover with a team of bank robbers to pursue a lead on the gang's notorious and elusive leader. + + Poppy Montgomery + Dylan Walsh + Jane Curtin + + Drama + + + TV14 + + + + The Good Wife + Hybristophilia + Eli works on getting Peter's charges dropped; Alicia defends a client accused of killing his wife; Cary looks for a way to get back at Alicia. + + Julianna Margulies + Christine Baranski + Josh Charles + + Drama + Legal + + + TVPG + + + + Ghost Whisperer + Ghost in the Machine + Melinda tracks down a ghost who is targeting girls on a social-networking Web site. + + Jennifer Love Hewitt + David Conrad + Camryn Manheim + + Drama + + + TVPG + + + + Beauty and the Beast + Terrible Savior + Catherine fears that Vincent might be the animalistic vigilante who is killing thugs on the New York subway system. + + Linda Hamilton + Ron Perlman + Roy Dotrice + + Drama + + + TVPG + + + + Dr. Quinn, Medicine Woman + Return Engagement + Torn between two lovers, Mike is forced to make a difficult choice; Horace and Myra experience some tension. + + Jane Seymour + Joe Lando + Chad Allen + + Drama + + + TVG + + + + Touched by an Angel + The Sign of the Dove + Andrew and Adam, another angel of death, fight to save the life of an old friend by preventing his neighbor from committing suicide. + + Roma Downey + Della Reese + John Dye + + Drama + + + TVG + + + + Any Day Now + Music From My Life + Mary Elizabeth's sister Teresa moves to Birmingham for a fresh start; Rene's mother finds out her ex-boyfriend wiped out her bank account. + + Annie Potts + Mae Middleton + Lorraine Toussaint + + Drama + + + TVPG + + + + Murder, She Wrote + We're Off to Kill the Wizard + Murder ends a tycoon's (James Coco) plan to have Jessica design a house of horrors for one of his theme parks. + + Angela Lansbury + + Drama + + + TVG + + + + Murder, She Wrote + Death Takes a Curtain Call + A friend (Hurd Hatfield) asks Jessica to help two Soviet dancers defect, unaware one (George de la Pena) is a murder suspect. + + Angela Lansbury + + Drama + + + TVG + + + + Providence + Rescue Me + Syd takes pity on a poor, severely disfigured boy who is an illegal immigrant. + + Melina Kanakaredes + Mike Farrell + Paula Cale + + Drama + + + TVPG + + + + Medium + The Man in the Mirror + When Allison suddenly goes into a coma, her spirit ends up in the body of a middle-aged man (Jeffrey Tambor) who insists on living with Joe and the children. + + Patricia Arquette + Jake Weber + Miguel Sandoval + + Drama + + + TV14 + + + + Crossing Jordan + Conspiracy + Jordan investigates when a man (guest star Clayton Rohner) claims his murdered friend was the victim of a government conspiracy. + + Jill Hennessy + Miguel Ferrer + Ken Howard + + Drama + + + TV14 + + + + Covert Affairs + Rock a My Soul + Annie and Auggie realize their work relationship is strained by their romance; Arther and Henry nearly come to blows. + + Piper Perabo + Christopher Gorham + Peter Gallagher + + Drama + + + TV14 + + + + Cold Case + Detention + Lilly and the team reopen the case of a 1994 teen suicide when a small piece of a note appears. + + Kathryn Morris + Danny Pino + John Finn + + Drama + + + TVPG + + + + Unforgettable + Breathing Space + Suspects are plentiful in the case of a murdered aerospace engineer; the Major Crimes team learns that the victim was working on a billionaire's top-secret space mission. + + Poppy Montgomery + Dylan Walsh + James Hiroyuki Liao + + Drama + + + TV14 + + + + Rizzoli & Isles + Murderjuana + A security guard foils a robbery when he kills one of the robbers; Jane and Maura work together to search for the robber's accomplice; Jane continues her quest to protect Maura and Angela. + + Angie Harmon + Sasha Alexander + Lorraine Bracco + + Drama + + + TV14 + + + + The Closer + High Crimes + The Chief of Police assigns Major Crimes a case involving the armed robbery of several medical marijuana dispensaries; Brenda is tested on her readiness to move up in the department. + + Kyra Sedgwick + J.K. Simmons + Corey Reynolds + + Drama + + + TV14 + + + + The Closer + Living Proof: Part One + The squad's holiday plans are jeopardized when a feud leads to a stabbing on Christmas Eve and the accidental death of a patriarch; Brenda's parents plan to make a special announcement. + + Kyra Sedgwick + J.K. Simmons + Corey Reynolds + + Drama + + + TV14 + + + + Major Crimes + White Lies Part 1 + While trying to clear up loose ends from an investigation of a gang of white supremacists, the detectives audit the trial of a serial killer; Rusty's psychologist faces an unexpected confrontation that jeopardizes his life. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Major Crimes + White Lies Part 2 + The Major Crimes unit continues to investigate the conspiracy behind Dwight Darnell's murders; Sharon Raydor seeks penance after being disturbed by her own reaction to the case. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Rizzoli & Isles + Seventeen Ain't So Sweet + A former classmate is found dead at Jane's high school reunion; Korsak gets a visit from his ex-wife; Jane's old flame returns. + + Angie Harmon + Sasha Alexander + Lorraine Bracco + + Drama + + + TV14 + + + + In Plain Sight + Provo-Cation + Mary helps protect a guilt-ridden Army veteran; Mary's ex returns. + + Mary McCormack + Frederick Weller + Nichole Hiltz + + Drama + + + TVPG + + + + Saving Grace + It's a Fierce, White Hot Mighty Love + A mother goes missing; Clay joins the OCPD Explorers program against his father's wishes and confronts Ham about his affair with Grace; Butch becomes the target of a stalker. + + Holly Hunter + Leon Rippy + Kenny Johnson + + Drama + + + TVMA + + + + Cold Case + Wings + Rush reopens the case of a stewardess murdered in 1960 while trying to organize a union. + + Kathryn Morris + Danny Pino + John Finn + + Drama + + + TV14 + + + + Unforgettable + Day of the Jackie + As Carrie and Al investigate the murder of a businessman, they realize his death was collateral damage in an assassination plot. + + Poppy Montgomery + Dylan Walsh + Jane Curtin + + Drama + + + TV14 + + + + The Good Wife + Running + Alicia must decide if she will stand by Peter during his new political campaign or pursue a relationship with Will. + + Julianna Margulies + Christine Baranski + Josh Charles + + Drama + Legal + + + TVPG + + + + Ghost Whisperer + Save Our Souls + While on a romantic getaway with Jim, Melinda stumbles upon an angry ghost who haunts a newlywed couple. + + Jennifer Love Hewitt + David Conrad + Camryn Manheim + + Drama + + + TVPG + + + + Beauty and the Beast + Siege + Catherine falls in love with a powerful man; Vincent comes to the aid of elderly apartment residents being terrorized by thugs. + + Linda Hamilton + Ron Perlman + Roy Dotrice + + Drama + + + TVPG + + + + Dr. Quinn, Medicine Woman + The Train + Dr. Mike and Sully (Jane Seymour, Joe Lando) disagree over the changes the railroad will bring to Colorado Springs. With Chad Allen and Erika Flores. + + Jane Seymour + Joe Lando + Chad Allen + + Drama + + + TVG + + + + Touched by an Angel + The Face of God + The angels, including a new angel (Valerie Bertinelli), help a genetic scientist who is set on cloning a child from the DNA of Albert Einstein. + + Roma Downey + Della Reese + John Dye + + Drama + + + TVPG + + + + Any Day Now + It's About the Heart + Rene prepares to meet Bill's children with some help from Mary Elizabeth; Mary Elizabeth and Colliar argue over his birthday party. + + Annie Potts + Mae Middleton + Lorraine Toussaint + + Drama + + + TV14 + + + + Murder, She Wrote + Death Casts a Spell + A hypnotist (Jose Ferrer) is murdered before a host of would-be witnesses who all were in a deep trance at the time. + + Angela Lansbury + + Drama + + + TVG + + + + Murder, She Wrote + Capitol Offense + Jessica is asked to complete the last weeks of an expired congressman's term, and discovers politics is murder. + + Angela Lansbury + + Drama + + + TVG + + + + Providence + The Thanksgiving Story + Near Thanksgiving Day, Syd shelters a lost Chinese girl who got separated from her parents, who are illegal immigrants. + + Melina Kanakaredes + Mike Farrell + Paula Cale + + Drama + Christmas + + + TVPG + + + + Medium + The First Bite Is the Deepest + Allison starts having dreams about a young woman (Rumer Willis) who was once a kidnap victim rescued by Cynthia Keener (Anjelica Huston). + + Patricia Arquette + Jake Weber + Miguel Sandoval + + Drama + + + TVPG + + + + Crossing Jordan + Cruel & Unusual + Jordan reunites with a past love while investigating a woman's alleged suicide; a grieving mother forces Lily to reexamine a past decision. Wallace Shawn and Susan Gibney guest star. + + Jill Hennessy + Miguel Ferrer + Ken Howard + + Drama + + + TV14 + + + + Covert Affairs + Here Comes Your Man + Annie is sent to Vienna, and must cut all communication with Auggie; Joan and Arthur decide to bring in reinforcements. + + Piper Perabo + Christopher Gorham + Peter Gallagher + + Drama + + + TV14 + + + + Cold Case + Debut + When a frazzled mother bursts into the Philadelphia Police Department claiming to know who might have killed her daughter at a 1968 debutante ball, Lilly reopens the case. + + Kathryn Morris + Danny Pino + John Finn + + Drama + + + TVPG + + + + Unforgettable + Shelter From the Storm + Carrie, Al and a captured criminal hole up in an abandoned precinct as a sinister storm approaches, with their captive's violent crew hot on their tail. + + Poppy Montgomery + Dylan Walsh + James Hiroyuki Liao + + Drama + + + TV14 + + + + Rizzoli & Isles + Scared to Death + A woman is found murdered in a grisly scene, leading the team to uncover a game in which people pay to experience terror. + + Angie Harmon + Sasha Alexander + Lorraine Bracco + + Drama + + + TV14 + + + + The Closer + Living Proof: Part Two + A refugee family's blood feud results in another victim; Brenda and her team must continue their investigation on Christmas day; Brenda's attention is diverted when her parents' RV is robbed. + + Kyra Sedgwick + J.K. Simmons + Corey Reynolds + + Drama + + + TV14 + + + + The Closer + An Ugly Game + The arrest of a crack addict exposes a questionable rehab facility and leads Brenda's squad on a race to find a missing woman; Gabriel questions Brenda's judgment; Fritz reveals some ugly truths about his past. + + Kyra Sedgwick + J.K. Simmons + Corey Reynolds + + Drama + + + TV14 + + + + Major Crimes + White Lies Part 3 + The Major Crimes unit gets closer to the elusive mastermind behind the Dwight Darnell murders; Buzz and Rusty's investigation into the murder of Buzz's father comes to an end. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Major Crimes + Heart Failure + Capt. Sharon Raydor and the Major Crimes division investigate the murder of a young woman found in the Los Angeles River; the team's case is impeded by a secretive private investigator and Deputy Chief Winnie Davis, who regards Sharon as competition. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Rizzoli & Isles + Don't Stop Dancing, Girl + The mother of a performer is stabbed to death at a dance competition; Korsak's stepson is accused of shooting a police officer. + + Angie Harmon + Sasha Alexander + Lorraine Bracco + + Drama + + + TV14 + + + + In Plain Sight + A Womb With a View + Mary protects a courtesan from the gangster father of her baby. + + Mary McCormack + Frederick Weller + Nichole Hiltz + + Drama + + + TVPG + + + + Saving Grace + Do You Love Him? + A large stash of money is found in Grace's car when the door is knocked off by a drunken driver; Ham's little brother disappears in Afghanistan. + + Holly Hunter + Leon Rippy + Kenny Johnson + + Drama + + + TV14 + + + + Cold Case + Lotto Fever + Rush and the team reopen the case of an auto mechanic who was murdered after winning $8 million in the state lottery; Valens discovers there might be a problem with his relationship with Frankie. + + Kathryn Morris + Danny Pino + John Finn + + Drama + + + TV14 + + + + Unforgettable + Memory Kings + Carrie must track down people who share her ability when the scientist who helped her understand her skill is murdered. + + Poppy Montgomery + Dylan Walsh + Jane Curtin + + Drama + + + TV14 + + + + The Good Wife + Taking Control + Alicia has to choose between her marriage to Peter and pursuing a future with Will; a judge appoints Alicia to represent a man accused of murdering his business partner. + + Julianna Margulies + Christine Baranski + Josh Charles + + Drama + Legal + + + TV14 + + + + Ghost Whisperer + Bloodline + Melinda investigates the sudden death of a high-school athlete whose ghost is following a family that is not her own. + + Jennifer Love Hewitt + David Conrad + Camryn Manheim + + Drama + + + TVPG + + + + Beauty and the Beast + No Way Down + Catherine's search for a witness leads her into a gang war; Vincent must come to her rescue. + + Linda Hamilton + Ron Perlman + Roy Dotrice + + Drama + + + TVPG + + + + Dr. Quinn, Medicine Woman + Fathers and Sons + Loren plans a trip to Bolivia to prove he is not getting old; Brian seeks to prove his courage by camping out alone. + + Jane Seymour + Joe Lando + Chad Allen + + Drama + + + TVG + + + + Touched by an Angel + Netherlands + Satan puts Monica to the test after a tragic building explosion claims the lives of many innocents and causes her to question her dedication to God's work. + + Roma Downey + Della Reese + John Dye + + Drama + + + TVPG + + + + Any Day Now + You Promise? I Promise + Rene represents a man who is to be sterilized against his will; young Rene and M.E. attend a segregated concert. + + Annie Potts + Mae Middleton + Lorraine Toussaint + + Drama + + + TV14 + + + + Murder, She Wrote + Broadway Malady + A Broadway legend's (Vivian Blaine) life is threatened after her daughter (Lorna Luft) is seriously injured in a mugging. + + Angela Lansbury + + Drama + + + TVG + + + + Murder, She Wrote + Murder to a Jazz Beat + A talk-show host (Clive Revill) and a cab driver (Garrett Morris) help Jessica solve the murder of a New Orleans jazz musician. + + Angela Lansbury + + Drama + + + TVG + + + + Providence + Big Night + Memories Syd would rather forget come flooding back when she tries to help an elderly patient survive long enough to reconcile with her daughter. + + Melina Kanakaredes + Mike Farrell + Paula Cale + + Drama + + + TVPG + + + + Medium + The Talented Ms. Boddicker + Allison dreams about a quirky bank teller with a psychic ability; Joe's new job puts a strain on the family. + + Patricia Arquette + Jake Weber + Miguel Sandoval + + Drama + + + TVPG + + + + Crossing Jordan + Fire and Ice + A teenage girl is killed in a drug-lab explosion, and her vengeful mother snatches the prosecution's lead witness; Peter sees a psychiatrist (Wallace Shawn). + + Jill Hennessy + Miguel Ferrer + Ken Howard + + Drama + + + TV14 + + + + Covert Affairs + Space (I Believe In) + Annie infiltrates an FBI investigation; Henry offers Annie the opportunity of a lifetime. + + Piper Perabo + Christopher Gorham + Peter Gallagher + + Drama + + + TV14 + + + + Cold Case + Dog Day Afternoons + Several banks are robbed, surfacing clues that might help Lilly and the team solve a bank teller's 2000 murder. + + Kathryn Morris + Danny Pino + John Finn + + Drama + + + TV14 + + + + Shining Vale + Chapter 12: Smile + In the midst of having scary new dreams about the house, Pat finally comes clean to Terry and must deal with the consequences. + + Courteney Cox + Greg Kinnear + Sherilyn Fenn + + Comedy + + + TVMA + + + + Power Book IV: Force + No Loose Ends + Tommy and Diamond suspect a snitch and put their inner circle to the test; Mireya gives Tommy a key piece of information; the war between Miguel and Mirkovic comes to a head. + + Joseph Sikora + Kristopher Lofton Lofton + Anthony Fleming + + Drama + + + TVMA + + + + Hightown + Behind Every Skirt + It's the day before Thanksgiving on the Cape; things are looking up for Ray and looking grim for Jackie; Frankie is filled with anxiety over his business with Jorge. + + Monica Raymund + James Badge Dale + Riley Voelkel + + Drama + + + TVMA + + + + Power Book IV: Force + No Loose Ends + Tommy and Diamond suspect a snitch and put their inner circle to the test; Mireya gives Tommy a key piece of information; the war between Miguel and Mirkovic comes to a head. + + Joseph Sikora + Kristopher Lofton Lofton + Anthony Fleming + + Drama + + + TVMA + + + + Shining Vale + Chapter 12: Smile + In the midst of having scary new dreams about the house, Pat finally comes clean to Terry and must deal with the consequences. + + Courteney Cox + Greg Kinnear + Sherilyn Fenn + + Comedy + + + TVMA + + + + Once Upon a Time... In Hollywood + Actor Rick Dalton and his longtime stunt double struggle to find work in a Hollywood they don't recognize anymore. Rick also happens to live next door to Roman Polanski and Sharon Tate -- a couple whose futures will be altered by the Manson Family. + + Leonardo DiCaprio + Brad Pitt + Margot Robbie + + 2019 + Movies + Comedy + + + TVPG + + + 3 + + + + Alice, Darling + Pushed to the breaking point, a woman enjoys some much-needed time away from her psychologically abusive boyfriend. However, when his vengeance is unleashed, it tests her strength, her courage, and the bonds of deep-rooted friendships. + + Anna Kendrick + Tiio Horn + Charlie Carrick + + 2022 + Movies + Thriller + + + + Alice, Darling + Pushed to the breaking point, a woman enjoys some much-needed time away from her psychologically abusive boyfriend. However, when his vengeance is unleashed, it tests her strength, her courage, and the bonds of deep-rooted friendships. + + Anna Kendrick + Tiio Horn + Charlie Carrick + + 2022 + Movies + Thriller + + + + Mr. & Mrs. Smith + A husband (Brad Pitt) and wife (Angelina Jolie) are unaware that each is an international assassin who has just been assigned to kill the other. + + Brad Pitt + Angelina Jolie + Vince Vaughn + + 2005 + Movies + Action + + + TVPG + + + 2 + + + + Ghostbusters: Afterlife + When a single mother and her two children move to a new town, they soon discover they have a connection to the original Ghostbusters and the secret legacy their grandfather left behind. + + Carrie Coon + Finn Wolfhard + Mckenna Grace + + 2021 + Movies + Comedy + + + 2 + + + + Spider-Man: No Way Home + When Peter Parker asks for help from Doctor Strange, the stakes become even more dangerous, forcing him to discover what it truly means to be Spider-Man. + + Tom Holland + Zendaya + Benedict Cumberbatch + + 2021 + Movies + Action + + + TVG + + + 3 + + + + About My Father + Encouraged by his fiancee, a man and his father spend the weekend with her wealthy and exceedingly eccentric family. The gathering soon develops into a culture clash, allowing father and son to discover the true meaning of family. + + Sebastian Maniscalco + Robert De Niro + Leslie Bibb + + 2023 + Movies + Comedy + + + TVG + + + 2 + + + + Mr. & Mrs. Smith + A husband (Brad Pitt) and wife (Angelina Jolie) are unaware that each is an international assassin who has just been assigned to kill the other. + + Brad Pitt + Angelina Jolie + Vince Vaughn + + 2005 + Movies + Action + + + TVPG + + + 2 + + + + Power Book IV: Force + No Loose Ends + Tommy and Diamond suspect a snitch and put their inner circle to the test; Mireya gives Tommy a key piece of information; the war between Miguel and Mirkovic comes to a head. + + Joseph Sikora + Kristopher Lofton Lofton + Anthony Fleming + + Drama + + + TVMA + + + + Shining Vale + Chapter 12: Smile + In the midst of having scary new dreams about the house, Pat finally comes clean to Terry and must deal with the consequences. + + Courteney Cox + Greg Kinnear + Sherilyn Fenn + + Comedy + + + TVMA + + + + Stealth + Three naval pilots (Josh Lucas, Jessica Biel, Jamie Foxx) must stop a fighter jet controlled by artificial intelligence that has run amok. + + Josh Lucas + Jessica Biel + Jamie Foxx + + 2005 + Movies + Action + + + TVG + + + 2 + + + + Snakes on a Plane + An FBI agent (Samuel L. Jackson) must contend with a swarm of deadly serpents that have been released aboard an airliner to kill the witness he is escorting to trial. + + Samuel L. Jackson + Kenan Thompson + Julianna Margulies + + 2006 + Movies + Thriller + + + TVPG + + + 2 + + + + Power Book IV: Force + No Loose Ends + Tommy and Diamond suspect a snitch and put their inner circle to the test; Mireya gives Tommy a key piece of information; the war between Miguel and Mirkovic comes to a head. + + Joseph Sikora + Kristopher Lofton Lofton + Anthony Fleming + + Drama + + + TVMA + + + + Shining Vale + Chapter 12: Smile + In the midst of having scary new dreams about the house, Pat finally comes clean to Terry and must deal with the consequences. + + Courteney Cox + Greg Kinnear + Sherilyn Fenn + + Comedy + + + TVMA + + + + Stealth + Three naval pilots (Josh Lucas, Jessica Biel, Jamie Foxx) must stop a fighter jet controlled by artificial intelligence that has run amok. + + Josh Lucas + Jessica Biel + Jamie Foxx + + 2005 + Movies + Action + + + TVG + + + 2 + + + + Shining Vale + Chapter 12: Smile + In the midst of having scary new dreams about the house, Pat finally comes clean to Terry and must deal with the consequences. + + Courteney Cox + Greg Kinnear + Sherilyn Fenn + + Comedy + + + TVMA + + + + Power Book IV: Force + No Loose Ends + Tommy and Diamond suspect a snitch and put their inner circle to the test; Mireya gives Tommy a key piece of information; the war between Miguel and Mirkovic comes to a head. + + Joseph Sikora + Kristopher Lofton Lofton + Anthony Fleming + + Drama + + + TVMA + + + + Wild Card + A bodyguard (Jason Statham) goes after the sadistic thug who beat his friend, only to find that the object of his wrath is the son of a powerful mob boss. + + Jason Statham + Sofía Vergara + Stanley Tucci + + 2015 + Movies + Action + + + TVPG + + + 2 + + + + Wild Card + A bodyguard (Jason Statham) goes after the sadistic thug who beat his friend, only to find that the object of his wrath is the son of a powerful mob boss. + + Jason Statham + Sofía Vergara + Stanley Tucci + + 2015 + Movies + Action + + + TVPG + + + 2 + + + + Power Book IV: Force + No Loose Ends + Tommy and Diamond suspect a snitch and put their inner circle to the test; Mireya gives Tommy a key piece of information; the war between Miguel and Mirkovic comes to a head. + + Joseph Sikora + Kristopher Lofton Lofton + Anthony Fleming + + Drama + + + TVMA + + + + Shining Vale + Chapter 12: Smile + In the midst of having scary new dreams about the house, Pat finally comes clean to Terry and must deal with the consequences. + + Courteney Cox + Greg Kinnear + Sherilyn Fenn + + Comedy + + + TVMA + + + + Iron Man 3 + After a malevolent enemy reduces his world to rubble, Tony Stark (Robert Downey Jr.) must rely on instinct and ingenuity to protect those he loves as he searches for a way to avenge his losses. + + Robert Downey Jr. + Gwyneth Paltrow + Don Cheadle + + 2013 + Movies + Action + + + TVG + + + 3 + + + + Absolutely Anything + Eccentric aliens give a man (Simon Pegg) the power to do anything he wants to determine if Earth is worth saving. + + Simon Pegg + Kate Beckinsale + Sanjeev Bhaskar + + 2015 + Movies + Comedy + + + TVG + + + + Superfly + Cocaine kingpin Youngblood Priest realizes that it's time to get out of the game after surviving a violent attack. Hoping for one last score, Priest must now outmaneuver the cartel and two corrupt police officers to find his path to freedom. + + Trevor Jackson + Jason Mitchell + Michael Kenneth Williams + + 2018 + Movies + Thriller + + + TVPG + + + 2 + + + + Irish Jam + An American con artist (Eddie Griffin) wins a poetry contest staged by residents of a financially strapped Irish town. + + Eddie Griffin + Anna Friel + Kevin McNally + + 2006 + Movies + Comedy + + + + Shining Vale + Chapter 12: Smile + In the midst of having scary new dreams about the house, Pat finally comes clean to Terry and must deal with the consequences. + + Courteney Cox + Greg Kinnear + Sherilyn Fenn + + Comedy + + + TVMA + + + + Power Book IV: Force + No Loose Ends + Tommy and Diamond suspect a snitch and put their inner circle to the test; Mireya gives Tommy a key piece of information; the war between Miguel and Mirkovic comes to a head. + + Joseph Sikora + Kristopher Lofton Lofton + Anthony Fleming + + Drama + + + TVMA + + + + Fall + Stranded 2,000 feet at the top of a remote, abandoned radio tower, two expert climbers are put to the ultimate test as they desperately fight to survive the elements, a lack of supplies, and vertigo-inducing heights. + + Grace Fulton + Virginia Gardner + Jeffrey Dean Morgan + + 2022 + Movies + Thriller + + + 2 + + + + Plane + Pilot Brodie Torrance saves passengers from a lightning strike by making a risky landing on a war-torn island. When dangerous rebels take the passengers hostage, Torrance seeks help from an accused murderer who was being transported by the FBI. + + Gerard Butler + Mike Colter + Yoson An + + 2023 + Movies + Action + + + TVPG + + + 2 + + + + Charlie's Angels + A brilliant scientist invents Calisto -- a sustainable energy source that will revolutionize the way people use power. But when Calisto falls into the wrong hands, the Angels must retrieve it before it can be used as a weapon of mass destruction. + + Kristen Stewart + Naomi Scott + Ella Balinska + + 2019 + Movies + Action + + + TVG + + + + Shining Vale + Chapter 12: Smile + In the midst of having scary new dreams about the house, Pat finally comes clean to Terry and must deal with the consequences. + + Courteney Cox + Greg Kinnear + Sherilyn Fenn + + Comedy + + + TVMA + + + + Power Book IV: Force + No Loose Ends + Tommy and Diamond suspect a snitch and put their inner circle to the test; Mireya gives Tommy a key piece of information; the war between Miguel and Mirkovic comes to a head. + + Joseph Sikora + Kristopher Lofton Lofton + Anthony Fleming + + Drama + + + TVMA + + + + Irish Jam + An American con artist (Eddie Griffin) wins a poetry contest staged by residents of a financially strapped Irish town. + + Eddie Griffin + Anna Friel + Kevin McNally + + 2006 + Movies + Comedy + + + + Iron Man 3 + After a malevolent enemy reduces his world to rubble, Tony Stark (Robert Downey Jr.) must rely on instinct and ingenuity to protect those he loves as he searches for a way to avenge his losses. + + Robert Downey Jr. + Gwyneth Paltrow + Don Cheadle + + 2013 + Movies + Action + + + TVG + + + 3 + + + + Superfly + Cocaine kingpin Youngblood Priest realizes that it's time to get out of the game after surviving a violent attack. Hoping for one last score, Priest must now outmaneuver the cartel and two corrupt police officers to find his path to freedom. + + Trevor Jackson + Jason Mitchell + Michael K. Williams + + 2018 + Movies + Thriller + + + TVPG + + + 2 + + + + Superfly + Cocaine kingpin Youngblood Priest realizes that it's time to get out of the game after surviving a violent attack. Hoping for one last score, Priest must now outmaneuver the cartel and two corrupt police officers to find his path to freedom. + + Trevor Jackson + Jason Mitchell + Michael K. Williams + + 2018 + Movies + Thriller + + + TVPG + + + 2 + + + + The Contractor + Framed for murder, a former assassin (Wesley Snipes) goes on the run to prove his innocence. + + Wesley Snipes + Elizabeth Bennett + Charles Dance + + 2007 + Movies + Action + + + TVPG + + + 3 + + + + It Only Takes a Night + After one of them experiences a brutal breakup, four friends go on a wild night out. Meant to be a distraction, the night turns into a life-altering series of events none of them will ever forget. + + Eliza Taylor + Arielle Carver-O'Neill + Sana'a Shaik + + 2023 + Movies + Romance + + + + Johnny Cash: The Redemption of an American Icon + Depression and drug addiction leave Johnny Cash stumbling at the height of his career, but he rediscovers his faith. Featuring never-before-heard conversations with the Man in Black and interviews with country music stars. + Movies + Documentary + + + TVPG + + + + Keep Watching + Home intruders force members of a family to play a terrifying game of life or death. As the mysterious rules become clear, they soon learn that their nightmare is streaming live to viewers all around the world. + + Bella Thorne + Natalie Martinez + Chandler Riggs + + 2017 + Movies + Horror + + + 2 + + + + Charlie's Angels + A brilliant scientist invents Calisto -- a sustainable energy source that will revolutionize the way people use power. But when Calisto falls into the wrong hands, the Angels must retrieve it before it can be used as a weapon of mass destruction. + + Kristen Stewart + Naomi Scott + Ella Balinska + + 2019 + Movies + Action + + + TVG + + + + Roll Bounce + The closure of their favorite rink forces a roller-skater (Bow Wow) and his friends to gather at an uptown establishment. + + Bow Wow + Chi McBride + Mike Epps + + 2005 + Movies + Romance + + + TVG + + + 2 + + + + The Grudge + An American exchange student (Sarah Michelle Gellar) and her boyfriend (Jason Behr) encounter vengeful spirits that haunt a house in Tokyo. + + Sarah Michelle Gellar + Jason Behr + William Mapother + + 2004 + Movies + Horror + + + 2 + + + + Hide and Seek + Strange events plague a widowed psychologist (Robert De Niro) and his daughter (Dakota Fanning) who claims her imaginary friend is real. + + Robert De Niro + Dakota Fanning + Famke Janssen + + 2005 + Movies + Thriller + + + TVPG + + + 2 + + + + Guardians of the Galaxy + A space adventurer (Chris Pratt) becomes the quarry of bounty hunters after he steals an orb coveted by a treacherous villain, but after he discovers the orb's true power, he must find a way to unite four ragtag rivals to save the universe. + + Chris Pratt + Zoe Saldana + Dave Bautista + + 2014 + Movies + Sci-Fi + + + TVG + + + 3 + + + + Roll Bounce + The closure of their favorite rink forces a roller-skater (Bow Wow) and his friends to gather at an uptown establishment. + + Bow Wow + Chi McBride + Mike Epps + + 2005 + Movies + Romance + + + TVG + + + 2 + + + + Me, Myself & Irene + Nice-guy Charlie and aggressive Hank, the two personalities of a Rhode Island state trooper (Jim Carrey), fight over the same woman (Renée Zellweger). + + Jim Carrey + Renée Zellweger + Chris Cooper + + 2000 + Movies + Comedy + + + TVPG + + + 1 + + + + SAS: Red Notice + A groom's wedding plans are disrupted when a small army of well-trained criminals, led by Laszlo Antonov, hijack the Eurostar deep beneath the English Channel. + + Sam Heughan + Ruby Rose + Hannah John-Kamen + + 2021 + Movies + Action + + + + The Contractor + Framed for murder, a former assassin (Wesley Snipes) goes on the run to prove his innocence. + + Wesley Snipes + Elizabeth Bennett + Charles Dance + + 2007 + Movies + Action + + + TVPG + + + 3 + + + + The Outfit + An expert tailor must outwit a dangerous group of mobsters to survive a fateful night. + + Mark Rylance + Dylan O'Brien + Zoey Deutch + + 2022 + Movies + Thriller + + + TVPG + + + 3 + + + + The Outfit + An expert tailor must outwit a dangerous group of mobsters to survive a fateful night. + + Mark Rylance + Dylan O'Brien + Zoey Deutch + + 2022 + Movies + Thriller + + + TVPG + + + 3 + + + + When We Speak + Three female whistleblowers share their motivations, experiences and fallout of their own cases, including British intelligence employee Katharine Gun, Oxfam aid worker Helen Evans and Hollywood actress Rose McGowan. + 2022 + Movies + Documentary + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Playing It Cool + A lovestruck man (Chris Evans) enters into a platonic relationship with a woman (Michelle Monaghan) who's already engaged to someone else. + + Chris Evans + Michelle Monaghan + Aubrey Plaza + + 2014 + Movies + Romance + + + TVG + + + + The Craft: Legacy + An eclectic foursome of aspiring teenage witches get more than they bargained for as they lean into their newfound powers. + + Cailee Spaeny + Gideon Adlon + Lovie Simone + + 2020 + Movies + Fantasy + + + TVG + + + 2 + + + + Jumanji: The Next Level + When Spencer goes back into the fantastical world of Jumanji, pals Martha, Fridge and Bethany re-enter the game to bring him home. But everything about Jumanji is about to change, as they soon discover more obstacles and more danger to overcome. + + Dwayne Johnson + Kevin Hart + Jack Black + + 2019 + Movies + Adventure + + + TVG + + + 2 + + + + Four Kids and It + Four kids on holiday in Cornwall meet a magical creature on the beach with the power to grant wishes. + + Matthew Goode + Paula Patton + Michael Caine + + 2020 + Movies + Fantasy + + + TVG + + + + Tyler Perry's Good Deeds + Romantic sparks fly between a wealthy businessman (Tyler Perry) and a struggling single mother (Thandie Newton) who works as a cleaner in his office building. + + Tyler Perry + Thandiwe Newton + Gabrielle Union + + 2012 + Movies + Drama + + + TVG + + + 2 + + + + Prey for the Devil + Thrust onto the spiritual frontline, a young nun finds herself in a battle for the soul of a girl who's possessed by the same demon that tormented her own mother years earlier. + + Jacqueline Byers + Colin Salmon + Christian Navarro + + 2022 + Movies + Horror + + + TVPG + + + 1 + + + + Jumanji: The Next Level + When Spencer goes back into the fantastical world of Jumanji, pals Martha, Fridge and Bethany re-enter the game to bring him home. But everything about Jumanji is about to change, as they soon discover more obstacles and more danger to overcome. + + Dwayne Johnson + Kevin Hart + Jack Black + + 2019 + Movies + Adventure + + + TVG + + + 2 + + + + A Snowy Day in Oakland + A beautiful psychologist ends a stalled romance with her high-profile psychiatrist boyfriend and business partner, opening her own practice across the bay in Oakland. + + Keith David + Nicole Ari Parker + Sean Maguire + + 2023 + Movies + Comedy + + + + Sisu + During the last days of World War II, a solitary prospector crosses paths with Nazis on a scorched-Earth retreat in northern Finland. When the soldiers decide to steal his gold, they quickly discover they just tangled with no ordinary miner. + + Jorma Tommila + Aksel Hennie + Jack Doolan + + 2022 + Movies + Action + + + TVPG + + + 3 + + + + Fair Game + Valerie Plame's (Naomi Watts) life becomes front-page news when someone leaks her status as a covert CIA operative after her husband, Joseph Wilson (Sean Penn), wrote a controversial article for The New York Times. + + Naomi Watts + Sean Penn + Sam Shepard + + 2010 + Movies + Thriller + + + TVG + + + 3 + + + + A Private War + Celebrated war correspondent Marie Colvin charges into danger, constantly testing the limits between bravery and bravado. + + Rosamund Pike + Jamie Dornan + Tom Hollander + + 2018 + Movies + Drama + + + TVPG + + + 3 + + + + Prey for the Devil + Thrust onto the spiritual frontline, a young nun finds herself in a battle for the soul of a girl who's possessed by the same demon that tormented her own mother years earlier. + + Jacqueline Byers + Colin Salmon + Christian Navarro + + 2022 + Movies + Horror + + + TVPG + + + 1 + + + + Prey for the Devil + Thrust onto the spiritual frontline, a young nun finds herself in a battle for the soul of a girl who's possessed by the same demon that tormented her own mother years earlier. + + Jacqueline Byers + Colin Salmon + Christian Navarro + + 2022 + Movies + Horror + + + TVPG + + + 1 + + + + CBGB + Though originally conceived as a country and bluegrass venue, Hilly Kristal's (Alan Rickman) New York club becomes the birthplace of underground and punk music, and helps launch the careers of such bands as Blondie, the Ramones and the Police. + + Alan Rickman + Malin Akerman + Ashley Greene + + 2013 + Movies + Docu-Drama + + + TV14 + + + + Signs of Love + Frankie, a young man from north Philly, dreams of a better life. When he meets Jane, a deaf girl from a well-off family, he sees hope for love and life but only if he can escape the hardship of the streets and the influence of his sister. + + Hopper Penn + Dylan Penn + Zoë Bleu + + 2022 + Movies + Drama + + + + Collection + A grieving father grapples with his choices in the unforgiving, manipulative world of debt collectors when his new girlfriend turns out to be his firm's next mark. He must decide what is more valuable: true love and happiness or his biggest hit yet. + + Alex Pettyfer + Shakira Barrera + Mike Vogel + + 2021 + Movies + Thriller + + + + Two for the Money + A former college athlete (Matthew McConaughey) joins forces with a sports consultant (Al Pacino) to handicap football games for high-rolling gamblers. + + Al Pacino + Matthew McConaughey + Rene Russo + + 2005 + Movies + Drama + + + TVG + + + 2 + + + + CBGB + Though originally conceived as a country and bluegrass venue, Hilly Kristal's (Alan Rickman) New York club becomes the birthplace of underground and punk music, and helps launch the careers of such bands as Blondie, the Ramones and the Police. + + Alan Rickman + Malin Akerman + Ashley Greene + + 2013 + Movies + Docu-Drama + + + TV14 + + + + Cherry + A young woman has 24 hours to make the most important decision of her life: whether or not to keep an unplanned pregnancy. + + Alex Trewhitt + Hannah Alline + Angela Nicholas + + 2022 + Movies + Comedy + Drama + + + + Grace of Monaco + Despite her husband's (Tim Roth) misgivings, Grace Kelly (Nicole Kidman) considers returning to Hollywood to star in. + + Nicole Kidman + Tim Roth + Frank Langella + + 2014 + Movies + Drama + + + TVG + + + + Money Monster + After losing money on a stock tip, a disgruntled investor (Jack O'Connell) holds a Wall Street guru (George Clooney) and a producer (Julia Roberts) hostage on live television. + + George Clooney + Julia Roberts + Jack O'Connell + + 2016 + Movies + Thriller + + + TVPG + + + 2 + + + + Prey for the Devil + Thrust onto the spiritual frontline, a young nun finds herself in a battle for the soul of a girl who's possessed by the same demon that tormented her own mother years earlier. + + Jacqueline Byers + Colin Salmon + Christian Navarro + + 2022 + Movies + Horror + + + TVPG + + + 1 + + + + Collection + A grieving father grapples with his choices in the unforgiving, manipulative world of debt collectors when his new girlfriend turns out to be his firm's next mark. He must decide what is more valuable: true love and happiness or his biggest hit yet. + + Alex Pettyfer + Shakira Barrera + Mike Vogel + + 2021 + Movies + Thriller + + + + Signs of Love + Frankie, a young man from north Philly, dreams of a better life. When he meets Jane, a deaf girl from a well-off family, he sees hope for love and life but only if he can escape the hardship of the streets and the influence of his sister. + + Hopper Penn + Dylan Penn + Zoë Bleu + + 2022 + Movies + Drama + + + + Grace of Monaco + Despite her husband's (Tim Roth) misgivings, Grace Kelly (Nicole Kidman) considers returning to Hollywood to star in. + + Nicole Kidman + Tim Roth + Frank Langella + + 2014 + Movies + Drama + + + TVG + + + + Two for the Money + A former college athlete (Matthew McConaughey) joins forces with a sports consultant (Al Pacino) to handicap football games for high-rolling gamblers. + + Al Pacino + Matthew McConaughey + Rene Russo + + 2005 + Movies + Drama + + + TVG + + + 2 + + + + Money Monster + After losing money on a stock tip, a disgruntled investor (Jack O'Connell) holds a Wall Street guru (George Clooney) and a producer (Julia Roberts) hostage on live television. + + George Clooney + Julia Roberts + Jack O'Connell + + 2016 + Movies + Thriller + + + TVPG + + + 2 + + + + Money Monster + After losing money on a stock tip, a disgruntled investor (Jack O'Connell) holds a Wall Street guru (George Clooney) and a producer (Julia Roberts) hostage on live television. + + George Clooney + Julia Roberts + Jack O'Connell + + 2016 + Movies + Thriller + + + TVPG + + + 2 + + + + Abracadabra + A housewife has to deal with her husband after he is possessed by a ghost. + + Maribel Verdú + Antonio de la Torre + Priscilla Delgado + + 2017 + Movies + Fantasy + + + + League of Gods + King Zhou (Tony Leung Ka Fai) slowly turns into a tyrant due to the influence of Daji (Fan Bingbing), a vixen spirit disguised as one of his concubines. + + Jet Li + Tony Leung Ka Fai + Louis Koo + + 2016 + Movies + Fantasy + + + TV14 + + + + All Is True + After the renowned Globe Theatre burns to the ground, William Shakespeare returns to Stratford, where he must face a neglected family and a painful past. + + Kenneth Branagh + Judi Dench + Lydia Wilson + + 2018 + Movies + History + + + TVG + + + 2 + + + + After the Wedding + Seeking funds for her orphanage in India, Isabel travels to New York to meet Theresa, a wealthy benefactor. An invitation to attend a wedding ignites a series of events in which the past collides with the present as mysteries unravel. + + Julianne Moore + Michelle Williams + Billy Crudup + + 2019 + Movies + Drama + + + TVG + + + + The Outfit + An expert tailor must outwit a dangerous group of mobsters to survive a fateful night. + + Mark Rylance + Dylan O'Brien + Zoey Deutch + + 2022 + Movies + Thriller + + + TVPG + + + 3 + + + + Abracadabra + A housewife has to deal with her husband after he is possessed by a ghost. + + Maribel Verdú + Antonio de la Torre + Priscilla Delgado + + 2017 + Movies + Fantasy + + + + 21 Grams + The lives of a terminally ill professor (Sean Penn) and an ex-convict (Benicio del Toro) intersect with a woman (Naomi Watts) who lost her family in a car accident. + + Sean Penn + Benicio del Toro + Naomi Watts + + 2003 + Movies + Drama + + + TVPG + + + 3 + + + + Papillon + The epic story of Henri. + + Charlie Hunnam + Rami Malek + Roland Møller + + 2017 + Movies + Adventure + + + TVPG + + + 2 + + + + All Is True + After the renowned Globe Theatre burns to the ground, William Shakespeare returns to Stratford, where he must face a neglected family and a painful past. + + Kenneth Branagh + Judi Dench + Lydia Wilson + + 2018 + Movies + History + + + TVG + + + 2 + + + + The Outfit + An expert tailor must outwit a dangerous group of mobsters to survive a fateful night. + + Mark Rylance + Dylan O'Brien + Zoey Deutch + + 2022 + Movies + Thriller + + + TVPG + + + 3 + + + + 21 Grams + The lives of a terminally ill professor (Sean Penn) and an ex-convict (Benicio del Toro) intersect with a woman (Naomi Watts) who lost her family in a car accident. + + Sean Penn + Benicio del Toro + Naomi Watts + + 2003 + Movies + Drama + + + TVPG + + + 3 + + + + Gaslit + Will + Martha Mitchell struggles to balance the demands of a reelection campaign with that of her marriage; John Dean's ambition is tested as he finds himself drawn unknowingly into a conspiracy inside Nixon's campaign. + + Julia Roberts + Sean Penn + Dan Stevens + + Drama + + + TVMA + + + + Gaslit + California + Martha and John rekindle their love and their power-couple working relationship at a campaign event in California, overshadowed by G. Gordon Liddy and his team bungling the break-in at the Watergate. + + Julia Roberts + Sean Penn + Dan Stevens + + Drama + + + TVMA + + + + Transpecos + For three U.S. Border Patrol agents, the contents of one car reveal an insidious plot within their own ranks; the next 24 hours may cost them their lives. + + Gabriel Luna + Johnny Simmons + Clifton Collins Jr. + + 2016 + Movies + Thriller + + + TV14 + + + + Transpecos + For three U.S. Border Patrol agents, the contents of one car reveal an insidious plot within their own ranks; the next 24 hours may cost them their lives. + + Gabriel Luna + Johnny Simmons + Clifton Collins Jr. + + 2016 + Movies + Thriller + + + TV14 + + + + The Broken Hearts Gallery + Dumped by her boyfriend, a New York art gallery assistant creates an exhibit for souvenirs from past relationships. + + Geraldine Viswanathan + Dacre Montgomery + Utkarsh Ambudkar + + 2020 + Movies + Romance + + + TVG + + + 2 + + + + Making Monsters + A social media prankster and his fiancée's weekend turns into the ultimate video prank where the stakes are life and death. + + Jonathan Craig + Alana Elmer + Peter Higginson + + 2019 + Movies + Horror + + + + Beautiful Boy + Parents (Michael Sheen, Maria Bello) try to cope with the knowledge that their son at college went on a deadly shooting spree, then killed himself. + + Michael Sheen + Maria Bello + Alan Tudyk + + 2010 + Movies + Drama + + + TVG + + + 3 + + + + The Song of Names + A child befriends a Polish violin prodigy whose parents leave him in his family's care. The two boys become like brothers until the musician disappears. Forty years later, he gets his first clue as to what happened to his childhood best friend. + + Tim Roth + Clive Owen + Catherine McCormack + + 2019 + Movies + Drama + + + TVG + + + + The Broken Hearts Gallery + Dumped by her boyfriend, a New York art gallery assistant creates an exhibit for souvenirs from past relationships. + + Geraldine Viswanathan + Dacre Montgomery + Utkarsh Ambudkar + + 2020 + Movies + Romance + + + TVG + + + 2 + + + + Waitress + A pregnant waitress (Keri Russell) is caught between her controlling husband (Jeremy Sisto) and the new town doctor (Nathan Fillion), with whom she is having a steamy affair. + + Keri Russell + Nathan Fillion + Cheryl Hines + + 2007 + Movies + Romance + + + TVG + + + 2 + + + + The Hit + A struggling writer unwittingly agrees to become a hit man so he can pay for his dog's life-saving surgery. + + Reggie Currelley + Alexandre Chen + Hana Wu + + 2022 + Movies + Action + + + + A Midnight Clear + A young GI (Ethan Hawke) and his squad have a strange encounter with Germans in the Ardennes forest, December 1944. + + Ethan Hawke + Peter Berg + Kevin Dillon + + 1992 + Movies + War + + + 3 + + + + The Song of Names + A child befriends a Polish violin prodigy whose parents leave him in his family's care. The two boys become like brothers until the musician disappears. Forty years later, he gets his first clue as to what happened to his childhood best friend. + + Tim Roth + Clive Owen + Catherine McCormack + + 2019 + Movies + Drama + + + TVG + + + + Sleuth + An aging writer (Michael Caine) hatches an elaborate scheme for revenge against the young man (Jude Law) who stole his wife. + + Michael Caine + Jude Law + Harold Pinter + + 2007 + Movies + Thriller + + + TV14 + + + 2 + + + + Making Monsters + A social media prankster and his fiancée's weekend turns into the ultimate video prank where the stakes are life and death. + + Jonathan Craig + Alana Elmer + Peter Higginson + + 2019 + Movies + Horror + + + + Waitress + A pregnant waitress (Keri Russell) is caught between her controlling husband (Jeremy Sisto) and the new town doctor (Nathan Fillion), with whom she is having a steamy affair. + + Keri Russell + Nathan Fillion + Cheryl Hines + + 2007 + Movies + Romance + + + TVG + + + 2 + + + + Beautiful Boy + Parents (Michael Sheen, Maria Bello) try to cope with the knowledge that their son at college went on a deadly shooting spree, then killed himself. + + Michael Sheen + Maria Bello + Alan Tudyk + + 2010 + Movies + Drama + + + TVG + + + 3 + + + + Sleuth + An aging writer (Michael Caine) hatches an elaborate scheme for revenge against the young man (Jude Law) who stole his wife. + + Michael Caine + Jude Law + Harold Pinter + + 2007 + Movies + Thriller + + + TV14 + + + 2 + + + + Sleuth + An aging writer (Michael Caine) hatches an elaborate scheme for revenge against the young man (Jude Law) who stole his wife. + + Michael Caine + Jude Law + Harold Pinter + + 2007 + Movies + Thriller + + + TV14 + + + 2 + + + + The Wicker Tree + A Christian singer (Brittania Nicol) and her boyfriend (Henry Garrett) learn the real meaning of sacrifice when they run afoul of pagans in a Scottish village. + + Graham McTavish + Brittania Nicol + Henry Garrett + + 2010 + Movies + Horror + + + TVPG + + + 2 + + + + Surviving Sex Trafficking + Filmmaker Sadhvi Siddhali Shree examines the ongoing struggles of sex trafficking survivors who are fighting to break free of the past, heal their bodies and reconnect with a safer world of hope. + 2021 + Movies + Documentary + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Land of Mine + A group of German POWs are forced to dig up millions of land mines with their bare hands. + + Roland Møller + Mikkel Boe Følsgaard + Laura Bro + + 2015 + Movies + War + + + TVPG + + + 3 + + + + A Midnight Clear + A young GI (Ethan Hawke) and his squad have a strange encounter with Germans in the Ardennes forest, December 1944. + + Ethan Hawke + Peter Berg + Kevin Dillon + + 1992 + Movies + War + + + 3 + + + + Journey to the West: The Demons Strike Back + A monk (Kris Wu) and his disciples encounter a spider demon and other fantastic creatures on their travels. + + Kris Wu + Lin Gengxin + Yao Chen + + 2017 + Movies + Fantasy + + + TVG + + + 2 + + + + Our Little Sister + After the death of their estranged father, three siblings (Haruka Ayase, Masami Nagasawa, Kaho) invite their half sister (Suzu Hirose) to live with them. + + Haruka Ayase + Masami Nagasawa + Kaho + + 2015 + Movies + Drama + + + TVG + + + 3 + + + + Mr. Jones + Welsh journalist Gareth Jones risks his life to expose the truth about the devastating famine in the Soviet Union in the early 1930s. + + James Norton + Vanessa Kirby + Peter Sarsgaard + + 2019 + Movies + History + + + TVG + + + + Redeeming Love + After meeting Michael and experiencing love for the first time, Angel, facing demons that seem unbeatable, learns that she has the power to choose the life she wants. + + Abigail Cowen + Tom Lewis + Logan Marshall-Green + + 2022 + Movies + Romance + + + TVG + + + 1 + + + + Journey to the West: The Demons Strike Back + A monk (Kris Wu) and his disciples encounter a spider demon and other fantastic creatures on their travels. + + Kris Wu + Lin Gengxin + Yao Chen + + 2017 + Movies + Fantasy + + + TVG + + + 2 + + + + The Wicker Tree + A Christian singer (Brittania Nicol) and her boyfriend (Henry Garrett) learn the real meaning of sacrifice when they run afoul of pagans in a Scottish village. + + Graham McTavish + Brittania Nicol + Henry Garrett + + 2010 + Movies + Horror + + + TVPG + + + 2 + + + + Chef + In this warmhearted ensemble comedy, an out-of-work L.A. chef opens a food truck in a bid to realize his culinary potential and reconnect with his estranged family. + + Jon Favreau + Sofía Vergara + John Leguizamo + Bobby Cannavale + Dustin Hoffman + Scarlett Johansson + Jon Favreau + Caradog W. James + Sergey Bespalov + Jon Favreau + + 2014 + Drama + Food & Cooking + Comedy + Action & Adventure + + + 6.8/10 + + + + I Could Never Be Your Woman + A mother falls for a younger man while her teenage daughter falls in love for the very first time. + + Michelle Pfeiffer + Paul Rudd + Stacey Dash + Sarah Alexander + Jon Lovitz + Fred Willard + Mike Hedges + Amy Heckerling + Walter Josten + Amy Heckerling + + 2007 + Comedy + + -0.1/10 + + + + Aloha + In this hilarious romantic comedy, a military-defense contractor is rehired by his former boss to oversee the launch of a satellite in Hawaii. He reconnects with an old flame while there, but finds himself increasingly drawn to an Air Force pilot assigned to watch over him. + + Bradley Cooper + Emma Stone + Rachel McAdams + Danny McBride + John Krasinski + Bill Murray + Jonsi & Alex + Cameron Crowe + Tim Maltby + Scott Rudin + Cameron Crowe + + 2015 + Drama + Comedy + + + + Super Troopers + "Police Academy" meets "Animal House" in this raucous romp written by and starring the Broken Lizard comedy troupe. Jay Chandrasekhar, Kevin Heffernan, Paul Soter, Steve Lemme and Erik Stolhanske play Vermont state police officers battling crime and sparring with the local cops, who are trying to get them ousted. Lynda Carter, Daniel von Bargen. Chandrasekhar also directed. + + Brian Cox + Daniel Von Bargen + Marisa Coughlan + Lynda Carter + Amy de Lucia + John Bedford Lloyd + 38 Special + Jay Chandrasekhar + Peter E. Lengyel + Broken Lizard + + 2001 + Comedy + + + 4.8/10 + + + + Death of a Telemarketer + A smooth-talking telemarketer finds himself at the mercy of the man he tried to swindle. + + Lamorne Morris + Jackie Earle Haley + Haley Joel Osment + Alisha Wainwright + Woody McClain + Matt McGorry + Timo Chen + Khaled Ridgeway + Bille Woodruff + Khaled Ridgeway + + 2022 + Drama + Comedy + Suspense + + + + The In-Law Gang + After getting married to the seemingly perfect man, a woman then finds out that her in-laws are a nightmare. When she later discovers that her husband is cheating, and tired of being constantly disrespected by her new family, she devises a plan to make life horrible for her in-laws and unfaithful spouse. + + Clifton Powell + Alfred E. Rutherford + Kim Rosen + Dwayne Boyd + Nashawn Kearse + Jessie Jalee + J. Jesses Smith + Jessie Jalee + Jessie Jalee + + 2023 + Drama + Comedy + Action & Adventure + + TV-MA + + + + BASEketball + Two irreverent losers combine basketball and baseball to invent a new gross-out sport. Their outrageous creation quickly moves from their driveway to sold-out stadiums across the nation, attracting unwanted attention from ruthless corporate interests that control professional sports. Trey Parker, Matt Stone, Yasmine Bleeth, Jenny McCarthy, Robert Vaughn, Ernest Borgnine, Dian Bachar. + + Trey Parker + Matt Stone + Yasmine Bleeth + Jenny McCarthy + Robert Vaughn + Ernest Borgnine + Ira Newborn + David Zucker + Cleve Landsberg + Robert LoCash + + 1998 + Comedy + + + 3.8/10 + + + + I Could Never Be Your Woman + A mother falls for a younger man while her teenage daughter falls in love for the very first time. + + Michelle Pfeiffer + Paul Rudd + Stacey Dash + Sarah Alexander + Jon Lovitz + Fred Willard + Mike Hedges + Amy Heckerling + Walter Josten + Amy Heckerling + + 2007 + Comedy + + -0.1/10 + + + + Death of a Telemarketer + A smooth-talking telemarketer finds himself at the mercy of the man he tried to swindle. + + Lamorne Morris + Jackie Earle Haley + Haley Joel Osment + Alisha Wainwright + Woody McClain + Matt McGorry + Timo Chen + Khaled Ridgeway + Bille Woodruff + Khaled Ridgeway + + 2022 + Drama + Comedy + Suspense + + + + Jack and Jill vs. the World + An ad exec and a free spirit form a romance in New York City. Freddie Prinze Jr., Taryn Manning. (new). + + Freddie Prinze Jr. + Taryn Manning + Vanessa Parise + Kelly Rowan + Peter Stebbings + Hannah Lochner + Jeremy Parise + Vanessa Parise + Roger Spottiswoode + Vanessa Parise + + 2007 + Drama + Comedy + + -0.1/10 + + + + Super Troopers + "Police Academy" meets "Animal House" in this raucous romp written by and starring the Broken Lizard comedy troupe. Jay Chandrasekhar, Kevin Heffernan, Paul Soter, Steve Lemme and Erik Stolhanske play Vermont state police officers battling crime and sparring with the local cops, who are trying to get them ousted. Lynda Carter, Daniel von Bargen. Chandrasekhar also directed. + + Brian Cox + Daniel Von Bargen + Marisa Coughlan + Lynda Carter + Amy de Lucia + John Bedford Lloyd + 38 Special + Jay Chandrasekhar + Peter E. Lengyel + Broken Lizard + + 2001 + Comedy + + + 4.8/10 + + + + BASEketball + Two irreverent losers combine basketball and baseball to invent a new gross-out sport. Their outrageous creation quickly moves from their driveway to sold-out stadiums across the nation, attracting unwanted attention from ruthless corporate interests that control professional sports. Trey Parker, Matt Stone, Yasmine Bleeth, Jenny McCarthy, Robert Vaughn, Ernest Borgnine, Dian Bachar. + + Trey Parker + Matt Stone + Yasmine Bleeth + Jenny McCarthy + Robert Vaughn + Ernest Borgnine + Ira Newborn + David Zucker + Cleve Landsberg + Robert LoCash + + 1998 + Comedy + + + 3.8/10 + + + + Mortdecai + In this delightfully whimsical action comedy, a roguish art dealer seeks a stolen painting that could hold the code to a forgotten Nazi bank account filled with riches. + + Johnny Depp + Gwyneth Paltrow + Ewan McGregor + Olivia Munn + Jeff Goldblum + Paul Bettany + Mark Ronson + David Koepp + Johnny Depp + Patrick McCormick + Eric Aronson + + 2015 + Drama + Comedy + Action & Adventure + + + 2.7/10 + + + + The In-Law Gang + After getting married to the seemingly perfect man, a woman then finds out that her in-laws are a nightmare. When she later discovers that her husband is cheating, and tired of being constantly disrespected by her new family, she devises a plan to make life horrible for her in-laws and unfaithful spouse. + + Clifton Powell + Alfred E. Rutherford + Kim Rosen + Dwayne Boyd + Nashawn Kearse + Jessie Jalee + J. Jesses Smith + Jessie Jalee + Jessie Jalee + + 2023 + Drama + Comedy + Action & Adventure + + TV-MA + + + + Death of a Telemarketer + A smooth-talking telemarketer finds himself at the mercy of the man he tried to swindle. + + Lamorne Morris + Jackie Earle Haley + Haley Joel Osment + Alisha Wainwright + Woody McClain + Matt McGorry + Timo Chen + Khaled Ridgeway + Bille Woodruff + Khaled Ridgeway + + 2022 + Drama + Comedy + Suspense + + + + Super Troopers + "Police Academy" meets "Animal House" in this raucous romp written by and starring the Broken Lizard comedy troupe. Jay Chandrasekhar, Kevin Heffernan, Paul Soter, Steve Lemme and Erik Stolhanske play Vermont state police officers battling crime and sparring with the local cops, who are trying to get them ousted. Lynda Carter, Daniel von Bargen. Chandrasekhar also directed. + + Brian Cox + Daniel Von Bargen + Marisa Coughlan + Lynda Carter + Amy de Lucia + John Bedford Lloyd + 38 Special + Jay Chandrasekhar + Peter E. Lengyel + Broken Lizard + + 2001 + Comedy + + + 4.8/10 + + + + Mortdecai + In this delightfully whimsical action comedy, a roguish art dealer seeks a stolen painting that could hold the code to a forgotten Nazi bank account filled with riches. + + Johnny Depp + Gwyneth Paltrow + Ewan McGregor + Olivia Munn + Jeff Goldblum + Paul Bettany + Mark Ronson + David Koepp + Johnny Depp + Patrick McCormick + Eric Aronson + + 2015 + Drama + Comedy + Action & Adventure + + + 2.7/10 + + + + The In-Law Gang + After getting married to the seemingly perfect man, a woman then finds out that her in-laws are a nightmare. When she later discovers that her husband is cheating, and tired of being constantly disrespected by her new family, she devises a plan to make life horrible for her in-laws and unfaithful spouse. + + Clifton Powell + Alfred E. Rutherford + Kim Rosen + Dwayne Boyd + Nashawn Kearse + Jessie Jalee + J. Jesses Smith + Jessie Jalee + Jessie Jalee + + 2023 + Drama + Comedy + Action & Adventure + + TV-MA + + + + Lake Placid + When people begin to disappear at a secluded lake in the Maine wilderness in this pulse-pounding thriller, an investigative team discovers that a ferocious giant crocodile is the culprit. + + Bill Pullman + Bridget Fonda + Oliver Platt + Brendan Gleeson + Betty White + David Lewis + John Ottman + Steve Miner + Bill Pullman + Peter Bogart + David E. Kelley + + 1999 + Horror + Comedy + Suspense + Action & Adventure + Science Fiction + + + 3.4/10 + + + + Right to Offend: The Black Comedy Revolution + Part 1: The Revolutionaries + Chronicles how the pioneers of Black comedy turned the stand-up stage into one of the most important platforms for social discourse in America. This episode explores how Dick Gregory, Richard Pryor, Moms Mabley, and Redd Foxx, among others, used "offensive" humor to break racial and cultural barriers during the civil rights and counterculture eras. Their defiance in the face of insurmountable challenges set the foundation for the freedoms that black comedians enjoy today. (repeat). + 2021 + Documentary + Comedy + S1 E1 + + TV-MA + + + + Right to Offend: The Black Comedy Revolution + Part 2: The Contemporaries + Explores the new breed of Black comedian that surfaced after the Civil Rights movement and the significant challenges they still faced. Starting in the 1980s, some black comedians enjoyed unprecedented success while many of them still remained on the sidelines. Political upheaval in the 21st century mobilized a diverse cast of young black comedians like never before. (repeat). + 2021 + Documentary + Comedy + S1 E2 + + TV-MA + + + + The Wedding Date + Debra Messing is absolutely engaging in this smart and witty romantic comedy as a neurotic, single New Yorker who hires a polished male escort (Dermot Mulroney) for her sister's nuptials in England after she learns that the best man is her ex-fiancé. Holland Taylor, Jeremy Sheffield, Amy Adams, Jack Davenport, Peter Egan, Sarah Parish, Jolyon James. + + Debra Messing + Dermot Mulroney + Amy Adams + Jack Davenport + Sarah Parish + Jeremy Sheffield + Blake Neely + Clare Kilner + Paul Brooks + Dana Fox + + 2005 + Comedy + + + 3.2/10 + + + + Home Alone 3 + Four bumbling spies rent a house in a quiet neighborhood after losing a priceless microchip that made its way into the hands of a feisty 8-year-old named Alex. Home with the chicken pox, Alex single-handedly schemes and sets traps to catch the thieves and return the computer chip to its rightful owner. Alex D. Linz, Olek Krupa, Rya Kihlstedt, Lenny Von Dohlen. + + Alex D. Linz + Olek Krupa + Rya Kihlstedt + Lenny Von Dohlen + David Thornton + Haviland Morris + Nick Glennie-Smith + Raja Gosnell + Hilton A. Green + Philip Pfeiffer + + 1997 + Family + Comedy + + + + The Nut Job + In this sidesplitting caper comedy for the entire family, a maverick squirrel assembles a crew for a heist in a nut shop so that he and his friends will have enough food to survive the winter. + + Paul Intson + Peter Lepeniotis + Graham Moloy + Lorne Cameron + + 2014 + Comedy + Action & Adventure + Kids + + + 3.7/10 + + + + A Snowy Day in Oakland + A Snowy Day in Oakland - A magical urban tale about a beautiful psychologist from San Francisco who decides to end a stalled romance with her longtime, high-profile, psychiatrist, boyfriend/business partner. She moves on with her life by opening her own private practice in a vacant, street-front office space in the middle of a small, commercial block located across the bay in Oakland, turning the predominately African-American and psychologically ignored neighborhood on its emotional ear. + + Kim Bass + + 2023 + Family + Comedy + + + El Jeremías + In this charming coming-of-age story set in Sonora, Mexico, a family are thrown into upheaval when the 8-year-old son is identified as a budding genius. + + Martín Castro + Karem Momo + Paulo Galindo + Isela Vega + Marcela Sotomayor + Daniel Giménez Cacho + Camilo Froideval + Anwar Safa + Alejandro Safa + Ana Sofía Clerici + + 2016 + Drama + Family + Comedy + Kids + + + + Worth Winning + A self-centered TV weatherman in Philadelphia makes a wager with his friends that he can become engaged to three women they can choose within the span of three months. + + Mark Harmon + Madeleine Stowe + Lesley Ann Warren + Maria Holvoe + Mark Blum + Andrea Martin + Patrick Williams + Will Mackenzie + Gil Friesen + Josann McGibbon + + 1989 + Comedy + + + The Wedding Date + Debra Messing is absolutely engaging in this smart and witty romantic comedy as a neurotic, single New Yorker who hires a polished male escort (Dermot Mulroney) for her sister's nuptials in England after she learns that the best man is her ex-fiancé. Holland Taylor, Jeremy Sheffield, Amy Adams, Jack Davenport, Peter Egan, Sarah Parish, Jolyon James. + + Debra Messing + Dermot Mulroney + Amy Adams + Jack Davenport + Sarah Parish + Jeremy Sheffield + Blake Neely + Clare Kilner + Paul Brooks + Dana Fox + + 2005 + Comedy + + + 3.2/10 + + + + Christmas in Paradise + Three sisters locate their estranged father in a house in the Caribbean. As they enjoy the Christmas sunshine, they work to figure out why he ran away in the first place. + + Kelsey Grammer + Elizabeth Hurley + Billy Ray Cyrus + Nathalie Cox + Naomi Frederick + Victoria Ekanoye + Michael Richard Plowman + Philippe Martinez + Barry Brooker + Megan Brown Martinez + + 2022 + Drama + Family + Comedy + + + + Traci Townsend + A smart, sexy and successful advice columnist can't understand why she's still single. So she sets out to interview her former lovers to find out why they never proposed to her. Jazsmin Lewis stars in this clever romantic comedy. Richard T. Jones, Mari Marrow, Victor Williams, Aaron D. Spears. Directed by Craig Ross Jr. + + Jazsmin Lewis + Richard T. Jones + Mari Marrow + Victor Williams + Aaron D. Spears + Marlon Young + Geno Young + Craig Ross Jr. + Cheryl Bedford + Bobby Thompson + + 2006 + Comedy + + + TV-MA + + + + Right to Offend: The Black Comedy Revolution + Part 1: The Revolutionaries + Chronicles how the pioneers of Black comedy turned the stand-up stage into one of the most important platforms for social discourse in America. This episode explores how Dick Gregory, Richard Pryor, Moms Mabley, and Redd Foxx, among others, used "offensive" humor to break racial and cultural barriers during the civil rights and counterculture eras. Their defiance in the face of insurmountable challenges set the foundation for the freedoms that black comedians enjoy today. (repeat). + 2021 + Documentary + Comedy + S1 E1 + + TV-MA + + + + Right to Offend: The Black Comedy Revolution + Part 2: The Contemporaries + Explores the new breed of Black comedian that surfaced after the Civil Rights movement and the significant challenges they still faced. Starting in the 1980s, some black comedians enjoyed unprecedented success while many of them still remained on the sidelines. Political upheaval in the 21st century mobilized a diverse cast of young black comedians like never before. (repeat). + 2021 + Documentary + Comedy + S1 E2 + + TV-MA + + + + A Snowy Day in Oakland + A Snowy Day in Oakland - A magical urban tale about a beautiful psychologist from San Francisco who decides to end a stalled romance with her longtime, high-profile, psychiatrist, boyfriend/business partner. She moves on with her life by opening her own private practice in a vacant, street-front office space in the middle of a small, commercial block located across the bay in Oakland, turning the predominately African-American and psychologically ignored neighborhood on its emotional ear. + + Kim Bass + + 2023 + Family + Comedy + + + Operation Fortune: Ruse de guerre + Special agent Orson Fortune and his team of operatives recruit one of Hollywood's biggest movie stars to help them on an undercover mission when the sale of a deadly new weapons technology threatens to disrupt the world order. + + Aubrey Plaza + Cary Elwes + Jason Statham + Josh Hartnett + Hugh Grant + Eddie Marsan + Christopher Benstead + Guy Ritchie + Guy Ritchie + Ivan Atkinson + + 2023 + Comedy + Suspense + Action & Adventure + + + 5.1/10 + + + + Greed + A retail billionaire's 60th birthday party is celebrated in an exclusive hotel on the Greek island of Mykonos. + 2020 + + + Are You There God? It's Me, Margaret + A plucky eleven-year-old named Margaret finds her life on the cusp of change as her family uproots from the heart of the city to a quiet suburban neighborhood. Margaret must then navigate the ups and downs of adolescence, including new friends, new feelings, and, ultimately, a new sense of self. Based on the novel of the same name by Judy Blume. + + Abby Ryder Fortson + Rachel McAdams + Kathy Bates + Benny Safdie + Elle Graham + Amari Alexis Price + Kelly Fremon + Richard Sakai + + 2023 + Drama + Comedy + + + 8.4/10 + + + + Jack and Jill vs. the World + An ad exec and a free spirit form a romance in New York City. Freddie Prinze Jr., Taryn Manning. + + Freddie Prinze Jr. + Taryn Manning + Vanessa Parise + Kelly Rowan + Peter Stebbings + Hannah Lochner + Jeremy Parise + Vanessa Parise + Roger Spottiswoode + Vanessa Parise + + 2007 + Drama + Comedy + + -0.1/10 + + + + The Great Gilly Hopkins + A smart-mouthed 12-year-old girl bounces around between foster homes, causing trouble at each stop with her unruly behavior. A kindhearted woman eventually takes her in and becomes the mother she's never had in this emotional comedy-drama. + + Sophie Nélisse + Kathy Bates + Octavia Spencer + Glenn Close + Julia Stiles + Billy Magnussen + Stephen Herek + John Paterson + David Paterson + + 2016 + Drama + Comedy + + + 4.7/10 + + + + Little Women + Four sisters learn about love, life, and loss as they grow through their young womanhood against the backdrop of post-Civil War America. At the heart of the family is the headstrong Jo who aspires, above all else, to forge her own path. Based on the novel by Louisa May Alcott. + + Saoirse Ronan + Florence Pugh + Eliza Scanlen + Timothée Chalamet + Tracy Letts + Bob Odenkirk + Alexandre Desplat + Greta Gerwig + Meryl Streep + Denise Di Novi + Greta Gerwig + + 2019 + Drama + Fantasy + + + 9.1/10 + + + + Are You There God? It's Me, Margaret + A plucky eleven-year-old named Margaret finds her life on the cusp of change as her family uproots from the heart of the city to a quiet suburban neighborhood. Margaret must then navigate the ups and downs of adolescence, including new friends, new feelings, and, ultimately, a new sense of self. Based on the novel of the same name by Judy Blume. + + Abby Ryder Fortson + Rachel McAdams + Kathy Bates + Benny Safdie + Elle Graham + Amari Alexis Price + Kelly Fremon + Richard Sakai + + 2023 + Drama + Comedy + + + 8.4/10 + + + + Making Babies + After trying and failing for years to get pregnant naturally, married couple John and Katie Kelly explore all the pricey, painful and pseudoscience ways to conceive. The various fertility treatments put a strain on their marriage, cause them to struggle with their identities and make them question whether they're meant to have kids. + + Eliza Coupe + Steve Howey + Bob Stephenson + Elizabeth Rodriguez + Glenne Headly + Jennifer Lafleur + Keegan DeWitt + Josh F. Huber + Josh Huber + Ian Christian Blanche + Josh Huber + + 2018 + Drama + Family + Comedy + + + TV-MA + + + 3.7/10 + + + + Disaster Movie + Riotous and outlandish spoof of disaster flicks following a group of attractive young people looking for a safe haven while dodging a deluge of natural and unnatural calamities. Carmen Electra, Matt Lanter. Among the films targeted: "Iron Man," "The Incredible Hulk," "Hancock," "Enchanted," "Juno," "Sex and the City" and "Cloverfield." The movie also lampoons pop figures such as Amy Winehouse and Hannah Montana. Produced, written and directed by Jason Friedberg and Aaron Seltzer. + + Matt Lanter + Kim Kardashian + Vanessa Lachey + Carmen Electra + Nicole Parker + Crista Flanagan + Chris Lennertz + Aaron Seltzer + Jason Friedberg + Aaron Seltzer + + 2008 + Comedy + Science Fiction + + + 1.5/10 + + + + Greed + A retail billionaire's 60th birthday party is celebrated in an exclusive hotel on the Greek island of Mykonos. + 2020 + + + Operation Fortune: Ruse de guerre + Special agent Orson Fortune and his team of operatives recruit one of Hollywood's biggest movie stars to help them on an undercover mission when the sale of a deadly new weapons technology threatens to disrupt the world order. + + Aubrey Plaza + Cary Elwes + Jason Statham + Josh Hartnett + Hugh Grant + Eddie Marsan + Christopher Benstead + Guy Ritchie + Guy Ritchie + Ivan Atkinson + + 2023 + Comedy + Suspense + Action & Adventure + + + 5.1/10 + + + + Shining Vale + Chapter 12: Smile + While having scary new dreams about the house, Pat finally comes clean to Terry, and has to deal with the consequences. (repeat). + + Rob Morrow + Courteney Cox + Alysia Reiner + Mira Sorvino + Catriona McKenzie + Liz Friedlander + Courteney Cox + + 2023 + Horror + Comedy + + S1 + 1 E12 + + TV-MA + + + 6.1/10 + + + + Are You There God? It's Me, Margaret + A plucky eleven-year-old named Margaret finds her life on the cusp of change as her family uproots from the heart of the city to a quiet suburban neighborhood. Margaret must then navigate the ups and downs of adolescence, including new friends, new feelings, and, ultimately, a new sense of self. Based on the novel of the same name by Judy Blume. + + Abby Ryder Fortson + Rachel McAdams + Kathy Bates + Benny Safdie + Elle Graham + Amari Alexis Price + Kelly Fremon + Richard Sakai + + 2023 + Drama + Comedy + + + 8.4/10 + + + + Little Women + Four sisters learn about love, life, and loss as they grow through their young womanhood against the backdrop of post-Civil War America. At the heart of the family is the headstrong Jo who aspires, above all else, to forge her own path. Based on the novel by Louisa May Alcott. + + Saoirse Ronan + Florence Pugh + Eliza Scanlen + Timothée Chalamet + Tracy Letts + Bob Odenkirk + Alexandre Desplat + Greta Gerwig + Meryl Streep + Denise Di Novi + Greta Gerwig + + 2019 + Drama + Fantasy + + + 9.1/10 + + + + Cherry + A driftless young woman discovers she's 11 weeks pregnant and has only 24 hours to make a consequential decision. This charming and meditative film examines how softly life moves, even in our most urgent moments. + + Hannah Alline + Angela Nicholas + Alex Trewhitt + Candice Heiden + Robert Ramirez + Luc Walpoth + Sophie Galibert + Arthur Cohen + + 2022 + Drama + Comedy + + TV-MA + + + + Shining Vale + Chapter 12: Smile + While having scary new dreams about the house, Pat finally comes clean to Terry, and has to deal with the consequences. (repeat). + + Rob Morrow + Courteney Cox + Alysia Reiner + Mira Sorvino + Catriona McKenzie + Liz Friedlander + Courteney Cox + + 2023 + Horror + Comedy + + S1 + 1 E12 + + TV-MA + + + 6.1/10 + + + + Weird Science + A pair of high-school geeks who are hapless with members of the opposite sex create what they believe is the ideal woman using a computer, and then a lightning storm brings that woman to life. + + Anthony Michael Hall + Ilan Mitchell-Smith + Kelly LeBrock + Bill Paxton + Suzanne Snyder + Judie Aronson + Ira Newborn + John Hughes + Joel Silver + John Hughes + + 1985 + Fantasy + Comedy + Science Fiction + + + 4.6/10 + + + + Transmitter Test + + TV-Y + + + + I Think I Love My Wife + Chris Rock co-wrote, directed and stars in this hilarious romantic comedy about a married man whose incessant fantasies about cheating are put to the test when he runs into a friend's beautiful ex-girlfriend. + + Chris Rock + Kerry Washington + Gina Torres + Steve Buscemi + Edward Herrmann + Welker White + Marcus Miller + Chris Rock + Lisa Stewart + Louis C.K. + + 2007 + Drama + Comedy + + + 4.9/10 + + + + The Wedding Ringer + In this endearing, laugh-a-minute comedy, a socially awkward guy hires a professional best man to make his wedding a success. In time, their arrangement turns into a real friendship. + + Kevin Hart + Josh Gad + Affion Crockett + Jorge Garcia + Dan Gill + Corey Holcomb + Christopher Lennertz + Jeremy Garelick + Will Packer + Jay Lavender + + 2015 + Drama + Comedy + + + 3.5/10 + + + + About a Boy + An irresponsible, commitment-phobic bachelor overcomes his overgrown-adolescent ways when he befriends the awkward son of a troubled single mother in this charming adaptation of the novel by Nick Hornby ("High Fidelity"). + + Hugh Grant + Nicholas Hoult + Toni Collette + Rachel Weisz + Natalia Tena + Victoria Smurfit + Badly Drawn Boy + Chris Weitz + Paul Weitz + Robert De Niro + Chris Weitz + + 2002 + Drama + Comedy + + + 7.5/10 + + + + The Groomsmen + Edward Burns, who wrote, directed and starred in "The Brothers McMullen," does the same for this wildly engaging character study. Burns plays a soon-to-be-married man who weighs the "I do's" and "I don'ts" of his upcoming wedding with his closest compadres during a long boys' weekend in Long Island. The film is an insightful and revealing portrait of friendship and loyalty. Jay Mohr, Matthew Lillard, Brittany Murphy, John Leguizamo, Donal Logue, Jessica Capshaw. + + Edward Burns + Brittany Murphy + John Leguizamo + Jay Mohr + Matthew Lillard + Donal Logue + P.T. Walkley + Edward Burns + Philippe Martinez + Edward Burns + + 2006 + Drama + Comedy + + + 5.7/10 + + + + Weird Science + A pair of high-school geeks who are hapless with members of the opposite sex create what they believe is the ideal woman using a computer, and then a lightning storm brings that woman to life. + + Anthony Michael Hall + Ilan Mitchell-Smith + Kelly LeBrock + Bill Paxton + Suzanne Snyder + Judie Aronson + Ira Newborn + John Hughes + Joel Silver + John Hughes + + 1985 + Fantasy + Comedy + Science Fiction + + + 4.6/10 + + + + Shining Vale + Chapter 12: Smile + While having scary new dreams about the house, Pat finally comes clean to Terry, and has to deal with the consequences. (repeat). + + Rob Morrow + Courteney Cox + Alysia Reiner + Mira Sorvino + Catriona McKenzie + Liz Friedlander + Courteney Cox + + 2023 + Horror + Comedy + + S1 + 1 E12 + + TV-MA + + + 6.1/10 + + + + I Think I Love My Wife + Chris Rock co-wrote, directed and stars in this hilarious romantic comedy about a married man whose incessant fantasies about cheating are put to the test when he runs into a friend's beautiful ex-girlfriend. + + Chris Rock + Kerry Washington + Gina Torres + Steve Buscemi + Edward Herrmann + Welker White + Marcus Miller + Chris Rock + Lisa Stewart + Louis C.K. + + 2007 + Drama + Comedy + + + 4.9/10 + + + + The Wedding Ringer + In this endearing, laugh-a-minute comedy, a socially awkward guy hires a professional best man to make his wedding a success. In time, their arrangement turns into a real friendship. + + Kevin Hart + Josh Gad + Affion Crockett + Jorge Garcia + Dan Gill + Corey Holcomb + Christopher Lennertz + Jeremy Garelick + Will Packer + Jay Lavender + + 2015 + Drama + Comedy + + + 3.5/10 + + + + Only the Lonely + A cop pursues romance despite his domineering mother. + + Kieran Culkin + Allen Hamilton + Michael Nash + Clarke P.Devereux + Maurice Jarre + Chris Columbus + Tarquin Gotch + Chris Columbus + + 1991 + Drama + Comedy + + + 4.7/10 + + + + Weird Science + A pair of high-school geeks who are hapless with members of the opposite sex create what they believe is the ideal woman using a computer, and then a lightning storm brings that woman to life. + + Anthony Michael Hall + Ilan Mitchell-Smith + Kelly LeBrock + Bill Paxton + Suzanne Snyder + Judie Aronson + Ira Newborn + John Hughes + Joel Silver + John Hughes + + 1985 + Fantasy + Comedy + Science Fiction + + + 4.6/10 + + + + John Wick: Chapter 4 + With the price on his head ever increasing, legendary hit man John Wick takes his fight against the High Table global as he seeks out the most powerful players in the underworld, from New York to Paris to Japan to Berlin. + + Keanu Reeves + Donnie Yen + Bill Skarsgård + + 2023 + Movies + Action + + + TVPG + + + 3 + + + + The Commando + James Baker is an elite DEA agent who returns home after his family discovers a stash of cash worth $3 million. They soon face the danger and threat of a money-hungry criminal and his deadly crew as they kidnap Baker's two daughters. + + Michael Jai White + Mickey Rourke + Brendan Fehr + + 2022 + Movies + Action + + + + The November Man + An ex-CIA agent (Pierce Brosnan) comes out of retirement to protect a valuable witness (Olga Kurylenko) and soon learns that now he is the target of his former friend and protege (Luke Bracey). + + Pierce Brosnan + Luke Bracey + Olga Kurylenko + + 2014 + Movies + Action + + + TVPG + + + 2 + + + + The November Man + An ex-CIA agent (Pierce Brosnan) comes out of retirement to protect a valuable witness (Olga Kurylenko) and soon learns that now he is the target of his former friend and protege (Luke Bracey). + + Pierce Brosnan + Luke Bracey + Olga Kurylenko + + 2014 + Movies + Action + + + TVPG + + + 2 + + + + The Wicker Tree + A Christian singer (Brittania Nicol) and her boyfriend (Henry Garrett) learn the real meaning of sacrifice when they run afoul of pagans in a Scottish village. + + Graham McTavish + Brittania Nicol + Henry Garrett + + 2010 + Movies + Horror + + + TVPG + + + 2 + + + + T2 Trainspotting + Mark Renton (Ewan McGregor) reunites with old buddies Spud (Ewen Bremner), Sick Boy (Jonny Lee Miller) and Begbie (Robert Carlyle) after returning to the only place that he can ever call home. + + Ewan McGregor + Jonny Lee Miller + Robert Carlyle + + 2017 + Movies + Comedy + Drama + + + TVPG + + + 3 + + + + X-Men: First Class + Charles Xavier (James McAvoy) and Erik Lehnsherr (Michael Fassbender) work with other mutants to prevent a nuclear nightmare, but a situation soon tears the close friends apart. + + James McAvoy + Michael Fassbender + Rose Byrne + + 2011 + Movies + Action + + + TVG + + + 3 + + + + Charlie's Angels + A brilliant scientist invents Calisto -- a sustainable energy source that will revolutionize the way people use power. But when Calisto falls into the wrong hands, the Angels must retrieve it before it can be used as a weapon of mass destruction. + + Kristen Stewart + Naomi Scott + Ella Balinska + + 2019 + Movies + Action + + + TVG + + + + Passengers + Awakened from their hibernation pods 90 years early, two space travelers (Jennifer Lawrence, Chris Pratt) enjoy the pleasures of a budding romance until they discover that their ship is in imminent danger. + + Jennifer Lawrence + Chris Pratt + Michael Sheen + + 2016 + Movies + Sci-Fi + + + TVG + + + 2 + + + + Asher + A Mossad agent turned gun-for-hire meets a woman who makes him want to change his life, but he needs to make one last hit to get out. + + Ron Perlman + Famke Janssen + Peter Facinelli + + 2018 + Movies + Action + + + TVPG + + + + Tyler Perry's Daddy's Little Girls + An unexpected romance blooms between a struggling mechanic (Idris Elba) and the attorney (Gabrielle Union) who is representing him in a custody battle for his young daughters. + + Gabrielle Union + Idris Elba + Louis Gossett Jr. + + 2007 + Movies + Romance + + + TVG + + + 2 + + + + Replicas + A brilliant neuroscientist secretly tries to clone and create replicas of his family after a tragic car crash. + + Keanu Reeves + Thomas Middleditch + Alice Eve + + 2018 + Movies + Sci-Fi + + + TVG + + + 1 + + + + Passengers + Awakened from their hibernation pods 90 years early, two space travelers (Jennifer Lawrence, Chris Pratt) enjoy the pleasures of a budding romance until they discover that their ship is in imminent danger. + + Jennifer Lawrence + Chris Pratt + Michael Sheen + + 2016 + Movies + Sci-Fi + + + TVG + + + 2 + + + + The Man Who Invented Christmas + Using real-life inspiration and his vivid imagination, author Charles Dickens brings Ebenezer Scrooge, Tiny Tim and other classic characters to life in. + + Dan Stevens + Christopher Plummer + Jonathan Pryce + + 2017 + Movies + Christmas + History + + + TVG + + + 2 + + + + Tyler Perry's Daddy's Little Girls + An unexpected romance blooms between a struggling mechanic (Idris Elba) and the attorney (Gabrielle Union) who is representing him in a custody battle for his young daughters. + + Gabrielle Union + Idris Elba + Louis Gossett Jr. + + 2007 + Movies + Romance + + + TVG + + + 2 + + + + Power Book IV: Force + No Loose Ends + Tommy and Diamond suspect a snitch and put their inner circle to the test; Mireya gives Tommy a key piece of information; the war between Miguel and Mirkovic comes to a head. + + Joseph Sikora + Kristopher Lofton Lofton + Anthony Fleming + + Drama + + + TVMA + + + + Shining Vale + Chapter 12: Smile + In the midst of having scary new dreams about the house, Pat finally comes clean to Terry and must deal with the consequences. + + Courteney Cox + Greg Kinnear + Sherilyn Fenn + + Comedy + + + TVMA + + + + The Banger Sisters + Two former groupies (Goldie Hawn, Susan Sarandon), one with a family, the other with a wild temperament, reunite after two decades. + + Goldie Hawn + Susan Sarandon + Geoffrey Rush + + 2002 + Movies + Comedy + + + TVG + + + 2 + + + + The Banger Sisters + Two former groupies (Goldie Hawn, Susan Sarandon), one with a family, the other with a wild temperament, reunite after two decades. + + Goldie Hawn + Susan Sarandon + Geoffrey Rush + + 2002 + Movies + Comedy + + + TVG + + + 2 + + + + Power Book IV: Force + No Loose Ends + Tommy and Diamond suspect a snitch and put their inner circle to the test; Mireya gives Tommy a key piece of information; the war between Miguel and Mirkovic comes to a head. + + Joseph Sikora + Kristopher Lofton Lofton + Anthony Fleming + + Drama + + + TVMA + + + + Shining Vale + Chapter 12: Smile + In the midst of having scary new dreams about the house, Pat finally comes clean to Terry and must deal with the consequences. + + Courteney Cox + Greg Kinnear + Sherilyn Fenn + + Comedy + + + TVMA + + + + Prey for the Devil + Thrust onto the spiritual frontline, a young nun finds herself in a battle for the soul of a girl who's possessed by the same demon that tormented her own mother years earlier. + + Jacqueline Byers + Colin Salmon + Christian Navarro + + 2022 + Movies + Horror + + + TVPG + + + 1 + + + + Mortdecai + Armed with only his good looks and special charm, an art dealer (Johnny Depp) travels the world to find a stolen painting that is rumored to contain the code to a bank account filled with Nazi gold. + + Johnny Depp + Gwyneth Paltrow + Ewan McGregor + + 2015 + Movies + Comedy + + + TVG + + + 1 + + + + Roman J. Israel, Esq. + Roman J. Israel is an idealistic defense attorney who joins another law firm after the death of his boss and mentor. Israel's legacy of activism soon gets put to the test when he takes on the case of Langston Bailey, a young man accused of murder. + + Denzel Washington + Colin Farrell + Carmen Ejogo + + 2017 + Movies + Thriller + + + TVG + + + 2 + + + + The Road + A father (Viggo Mortensen) and his son (Kodi Smit-McPhee) try to keep the dream of civilization alive as they wander through a post-apocalyptic landscape. + + Viggo Mortensen + Kodi Smit-McPhee + Charlize Theron + + 2009 + Movies + Drama + + + TVPG + + + 3 + + + + The Perfect Guy + A California lobbyist (Sanaa Lathan) must turn the tables on her ex-beau (Michael Ealy) when he becomes a violent stalker. + + Sanaa Lathan + Michael Ealy + Morris Chestnut + + 2015 + Movies + Thriller + + + TVPG + + + 1 + + + + Power Book IV: Force + No Loose Ends + Tommy and Diamond suspect a snitch and put their inner circle to the test; Mireya gives Tommy a key piece of information; the war between Miguel and Mirkovic comes to a head. + + Joseph Sikora + Kristopher Lofton Lofton + Anthony Fleming + + Drama + + + TVMA + + + + Shining Vale + Chapter 12: Smile + In the midst of having scary new dreams about the house, Pat finally comes clean to Terry and must deal with the consequences. + + Courteney Cox + Greg Kinnear + Sherilyn Fenn + + Comedy + + + TVMA + + + + John Wick: Chapter 4 + With the price on his head ever increasing, legendary hit man John Wick takes his fight against the High Table global as he seeks out the most powerful players in the underworld, from New York to Paris to Japan to Berlin. + + Keanu Reeves + Donnie Yen + Bill Skarsgård + + 2023 + Movies + Action + + + TVPG + + + 3 + + + + Meet the Blacks + A Chicago man (Mike Epps) moves his family to Beverly Hills, Calif., on the same day when all crime becomes legal for a 12-hour period. + + Mike Epps + Gary Owen + Zulay Henao + + 2016 + Movies + Comedy + + + 1 + + + + The Infiltrator + In 1986, federal agent Robert Mazur (Bryan Cranston) poses as a money-laundering businessman to infiltrate the trafficking network of Colombian drug kingpin Pablo Escobar. + + Bryan Cranston + Diane Kruger + John Leguizamo + + 2016 + Movies + Thriller + + + TVPG + + + 3 + + + + Power Book IV: Force + No Loose Ends + Tommy and Diamond suspect a snitch and put their inner circle to the test; Mireya gives Tommy a key piece of information; the war between Miguel and Mirkovic comes to a head. + + Joseph Sikora + Kris D. Lofton + Anthony Fleming + + Drama + + + TVMA + + + + Shining Vale + Chapter 12: Smile + In the midst of having scary new dreams about the house, Pat finally comes clean to Terry and must deal with the consequences. + + Courteney Cox + Greg Kinnear + Sherilyn Fenn + + Comedy + + + TVMA + + + + John Wick: Chapter 4 + With the price on his head ever increasing, legendary hit man John Wick takes his fight against the High Table global as he seeks out the most powerful players in the underworld, from New York to Paris to Japan to Berlin. + + Keanu Reeves + Donnie Yen + Bill Skarsgård + + 2023 + Movies + Action + + + TVPG + + + 3 + + + + John Wick: Chapter 4 + With the price on his head ever increasing, legendary hit man John Wick takes his fight against the High Table global as he seeks out the most powerful players in the underworld, from New York to Paris to Japan to Berlin. + + Keanu Reeves + Donnie Yen + Bill Skarsgård + + 2023 + Movies + Action + + + TVPG + + + 3 + + + + The Perfect Guy + A California lobbyist (Sanaa Lathan) must turn the tables on her ex-beau (Michael Ealy) when he becomes a violent stalker. + + Sanaa Lathan + Michael Ealy + Morris Chestnut + + 2015 + Movies + Thriller + + + TVPG + + + 1 + + + + The International + An Interpol agent (Clive Owen) and a New York prosecutor (Naomi Watts) join forces to shut down a powerful bank's funding of terrorism. + + Clive Owen + Naomi Watts + Armin Mueller-Stahl + + 2009 + Movies + Thriller + + + TVPG + + + 2 + + + + Shining Vale + Chapter 12: Smile + In the midst of having scary new dreams about the house, Pat finally comes clean to Terry and must deal with the consequences. + + Courteney Cox + Greg Kinnear + Sherilyn Fenn + + Comedy + + + TVMA + + + + Life + Terror strikes when astronauts (Jake Gyllenhaal, Rebecca Ferguson, Ryan Reynolds) aboard the International Space Station discover a rapidly evolving life-form from Mars that threatens Earth. + + Jake Gyllenhaal + Rebecca Ferguson + Ryan Reynolds + + 2017 + Movies + Sci-Fi + + + TVPG + + + 2 + + + + Alice, Darling + Pushed to the breaking point, a woman enjoys some much-needed time away from her psychologically abusive boyfriend. However, when his vengeance is unleashed, it tests her strength, her courage, and the bonds of deep-rooted friendships. + + Anna Kendrick + Tiio Horn + Charlie Carrick + + 2022 + Movies + Thriller + + + + Shining Vale + Chapter 12: Smile + In the midst of having scary new dreams about the house, Pat finally comes clean to Terry and must deal with the consequences. + + Courteney Cox + Greg Kinnear + Sherilyn Fenn + + Comedy + + + TVMA + + + + Power Book IV: Force + No Loose Ends + Tommy and Diamond suspect a snitch and put their inner circle to the test; Mireya gives Tommy a key piece of information; the war between Miguel and Mirkovic comes to a head. + + Joseph Sikora + Kris D. Lofton + Anthony Fleming + + Drama + + + TVMA + + + + Fury + During World War II, a battle-hardened Army sergeant (Brad Pitt) leads the crew of a Sherman tank on a deadly mission behind enemy lines to strike at the heart of Nazi Germany. + + Brad Pitt + Shia LaBeouf + Logan Lerman + + 2014 + Movies + War + + + TVPG + + + 3 + + + + Resident Evil: The Final Chapter + Alice (Milla Jovovich) travels to the Hive in Raccoon City to prevent the evil Umbrella Corp. from wiping out the last remaining survivors of the zombie apocalypse. + + Milla Jovovich + Iain Glen + Ali Larter + + 2016 + Movies + Horror + + + TVPG + + + 2 + + + + Fantasy Island + The enigmatic Mr. Roarke makes the secret dreams of his guests come true at a luxurious tropical resort. But when the fantasies turn into nightmares, the visitors must soon solve the island's mystery in order to escape with their lives. + + Michael Peña + Maggie Q + Lucy Hale + + 2020 + Movies + Horror + + + TVPG + + + 1 + + + + Shining Vale + Chapter 12: Smile + In the midst of having scary new dreams about the house, Pat finally comes clean to Terry and must deal with the consequences. + + Courteney Cox + Greg Kinnear + Sherilyn Fenn + + Comedy + + + TVMA + + + + Power Book IV: Force + No Loose Ends + Tommy and Diamond suspect a snitch and put their inner circle to the test; Mireya gives Tommy a key piece of information; the war between Miguel and Mirkovic comes to a head. + + Joseph Sikora + Kris D. Lofton + Anthony Fleming + + Drama + + + TVMA + + + + Fury + During World War II, a battle-hardened Army sergeant (Brad Pitt) leads the crew of a Sherman tank on a deadly mission behind enemy lines to strike at the heart of Nazi Germany. + + Brad Pitt + Shia LaBeouf + Logan Lerman + + 2014 + Movies + War + + + TVPG + + + 3 + + + + About My Father + Encouraged by his fiancee, a man and his father spend the weekend with her wealthy and exceedingly eccentric family. The gathering soon develops into a culture clash, allowing father and son to discover the true meaning of family. + + Sebastian Maniscalco + Robert De Niro + Leslie Bibb + + 2023 + Movies + Comedy + + + TVG + + + 2 + + + + Parkland + Chaotic events take place at Parkland Hospital in Dallas after the attack that assassinated President John F. Kennedy. + + Badgett Dale + Zac Efron + Marcia Gay Harden + + 2013 + Movies + History + + + TVG + + + 2 + + + + Alice, Darling + Pushed to the breaking point, a woman enjoys some much-needed time away from her psychologically abusive boyfriend. However, when his vengeance is unleashed, it tests her strength, her courage, and the bonds of deep-rooted friendships. + + Anna Kendrick + Tiio Horn + Charlie Carrick + + 2022 + Movies + Thriller + + + + Alice, Darling + Pushed to the breaking point, a woman enjoys some much-needed time away from her psychologically abusive boyfriend. However, when his vengeance is unleashed, it tests her strength, her courage, and the bonds of deep-rooted friendships. + + Anna Kendrick + Tiio Horn + Charlie Carrick + + 2022 + Movies + Thriller + + + + Flatliners + Five medical students trigger near-death experiences to gain insight into the mystery of what lies beyond the confines of life. As their experiments become more perilous, each must face the paranormal consequences of journeying to the other side. + + Diego Luna + Nina Dobrev + James Norton + + 2017 + Movies + Thriller + + + TVPG + + + 1 + + + + Power Book IV: Force + No Loose Ends + Tommy and Diamond suspect a snitch and put their inner circle to the test; Mireya gives Tommy a key piece of information; the war between Miguel and Mirkovic comes to a head. + + Joseph Sikora + Kris D. Lofton + Anthony Fleming + + Drama + + + TVMA + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Beirut + In 1980s Beirut, Mason Skiles is a former U.S. diplomat who returns to service to save a colleague from the group that is possibly responsible for his own family's death. + + Jon Hamm + Rosamund Pike + Dean Norris + + 2018 + Movies + Thriller + + + TV14 + + + 3 + + + + Power Book IV: Force + No Loose Ends + Tommy and Diamond suspect a snitch and put their inner circle to the test; Mireya gives Tommy a key piece of information; the war between Miguel and Mirkovic comes to a head. + + Joseph Sikora + Kris D. Lofton + Anthony Fleming + + Drama + + + TVMA + + + + Survive + Jane and Paul are the only survivors of a plane crash that isolates them on a remote snow-covered mountain. They will have to find a way to get back to society, while Jane struggles with her own personal demons and Paul tries to keep her safe. + + Sophie Turner + Corey Hawkins + Makgotso M + + 2022 + Movies + Drama + + + + Billy Lynn's Long Halftime Walk + A young soldier (Joe Alwyn) hailed as a hero experiences a cavalcade of emotions and events on his last day home before returning back to the war in Iraq in 2005. + + Joe Alwyn + Kristen Stewart + Chris Tucker + + 2016 + Movies + Comedy + Drama + + + TVPG + + + 2 + + + + The Package + Assassins dog the trail of a mob enforcer (Steve Austin) who's been entrusted to deliver a special parcel to an international crime lord known as the German (Dolph Lundgren). + + Steve Austin + Dolph Lundgren + Michael Daingerfield + + 2013 + Movies + Action + + + TVPG + + + + Iron Man 3 + After a malevolent enemy reduces his world to rubble, Tony Stark (Robert Downey Jr.) must rely on instinct and ingenuity to protect those he loves as he searches for a way to avenge his losses. + + Robert Downey Jr. + Gwyneth Paltrow + Don Cheadle + + 2013 + Movies + Action + + + TVG + + + 3 + + + + Mr. & Mrs. Smith + A husband (Brad Pitt) and wife (Angelina Jolie) are unaware that each is an international assassin who has just been assigned to kill the other. + + Brad Pitt + Angelina Jolie + Vince Vaughn + + 2005 + Movies + Action + + + TVPG + + + 2 + + + + Super Troopers + Five state troopers (Jay Chandrasekhar, Kevin Heffernan, Steve Lemme) try to stop a group of drug dealers in order to save their careers. + + Jay Chandrasekhar + Kevin Heffernan + Steve Lemme + + 2001 + Movies + Comedy + + + TVPG + + + 2 + + + + Bad Boys for Life + Old-school, wisecracking cops Mike Lowrey and Marcus Burnett team up with a special new tactical squad to take down the vengeful head of a drug cartel. + + Will Smith + Martin Lawrence + Vanessa Hudgens + + 2020 + Movies + Action + + + TVPG + + + 2 + + + + Among the Beasts + The daughter of a criminal enlists a former Marine who must overcome his demons to find her kidnapped cousin. + + Tory Kittles + Libe Barer + Sarunas J. Jackson + + 2023 + Movies + Thriller + + + + Universal Soldier: The Return + Former soldier Luc Deveraux (Jean-Claude Van Damme), now a government adviser, must help stop new soldiers being controlled by a supercomputer gone haywire. + + Jean-Claude Van Damme + Michael Jai White + Heidi Schanz + + 1999 + Movies + Sci-Fi + + + TVPG + + + 1 + + + + Conan the Barbarian + Pit fighter Conan (Arnold Schwarzenegger) sets out with a Mongol and a queen (Sandahl Bergman) to take his father's sword from a snake king (James Earl Jones). + + Arnold Schwarzenegger + James Earl Jones + Sandahl Bergman + + 1982 + Movies + Adventure + + + TVPG + + + 3 + + + + Conan the Barbarian + Pit fighter Conan (Arnold Schwarzenegger) sets out with a Mongol and a queen (Sandahl Bergman) to take his father's sword from a snake king (James Earl Jones). + + Arnold Schwarzenegger + James Earl Jones + Sandahl Bergman + + 1982 + Movies + Adventure + + + TVPG + + + 3 + + + + Conan the Destroyer + An evil queen wants Conan (Arnold Schwarzenegger) to fetch a jewel-encrusted horn that can awaken the dead. + + Arnold Schwarzenegger + Grace Jones + Wilt Chamberlain + + 1984 + Movies + Adventure + + + TVG + + + 2 + + + + Fear + A deranged suitor (Mark Wahlberg) torments family and friends of a teen girl (Reese Witherspoon) with whom he is obsessed. + + Mark Wahlberg + Reese Witherspoon + William Petersen + + 1996 + Movies + Thriller + + + TVPG + + + 2 + + + + I Don't Know How She Does It + A new account in New York requiring a lot of travel threatens to derail a Boston-based financial executive's (Sarah Jessica Parker) attempt to juggle work and family. + + Sarah Jessica Parker + Pierce Brosnan + Greg Kinnear + + 2011 + Movies + Comedy + + + TVG + + + 1 + + + + Little Sorcerer + A girl and her friends set off on a journey to find a magic potion that will help a prince who's trapped in a mouse's body. + + Geri Courtney-Austein + Ashley Bornancin + Tony Azzolino + + 2021 + Movies + Animated + + + + Pillars of the Sky + No one listens to a cavalry sergeant (Jeff Chandler) who warns against building a road and fort on Indian land. + + Jeff Chandler + Dorothy Malone + Ward Bond + + 1956 + Movies + Western + + + 2 + + + + Kingdom of Heaven + During the Crusades, a young blacksmith (Orlando Bloom) rises to knighthood and protects Jerusalem from invading forces. + + Orlando Bloom + Eva Green + Jeremy Irons + + 2005 + Movies + History + + + TVPG + + + 3 + + + + Maleficent + Maleficent (Angelina Jolie) rises to protect her peaceful forest kingdom from invaders, but a terrible betrayal turns her pure heart to stone and twists her into a creature bent on revenge. + + Angelina Jolie + Elle Fanning + Sharlto Copley + + 2014 + Movies + Fantasy + + + TVG + + + 2 + + + + Fear + A deranged suitor (Mark Wahlberg) torments family and friends of a teen girl (Reese Witherspoon) with whom he is obsessed. + + Mark Wahlberg + Reese Witherspoon + William Petersen + + 1996 + Movies + Thriller + + + TVPG + + + 2 + + + + 30 Minutes or Less + A pizza deliverer (Jesse Eisenberg) pulls in his estranged pal (Aziz Ansari) to help when a pair of wanna-be criminal masterminds strap a bomb to his chest and force him to rob a bank. + + Jesse Eisenberg + Danny McBride + Aziz Ansari + + 2011 + Movies + Comedy + + + TVPG + + + 2 + + + + Conan the Barbarian + Pit fighter Conan (Arnold Schwarzenegger) sets out with a Mongol and a queen (Sandahl Bergman) to take his father's sword from a snake king (James Earl Jones). + + Arnold Schwarzenegger + James Earl Jones + Sandahl Bergman + + 1982 + Movies + Adventure + + + TVPG + + + 3 + + + + Conan the Destroyer + An evil queen wants Conan (Arnold Schwarzenegger) to fetch a jewel-encrusted horn that can awaken the dead. + + Arnold Schwarzenegger + Grace Jones + Wilt Chamberlain + + 1984 + Movies + Adventure + + + TVG + + + 2 + + + + Maleficent + Maleficent (Angelina Jolie) rises to protect her peaceful forest kingdom from invaders, but a terrible betrayal turns her pure heart to stone and twists her into a creature bent on revenge. + + Angelina Jolie + Elle Fanning + Sharlto Copley + + 2014 + Movies + Fantasy + + + TVG + + + 2 + + + + Pride + In the 1970s an aficionado (Terrence Howard) and a janitor (Bernie Mac) renovate an abandoned pool and establish a swim team in one of Philadelphia's roughest neighborhoods. + + Terrence Howard + Bernie Mac + Kevin Phillips + + 2007 + Movies + Drama + + + 2 + + + + Pride + In the 1970s an aficionado (Terrence Howard) and a janitor (Bernie Mac) renovate an abandoned pool and establish a swim team in one of Philadelphia's roughest neighborhoods. + + Terrence Howard + Bernie Mac + Kevin Phillips + + 2007 + Movies + Drama + + + 2 + + + + The Unbearable Weight of Massive Talent + Facing financial ruin, actor Nick Cage accepts $1 million to attend a wealthy fan's birthday party. Taking on the role of a lifetime, he soon finds himself channeling his most iconic and beloved characters to save himself and his loved ones. + + Nicolas Cage + Pedro Pascal + Tiffany Haddish + + 2022 + Movies + Comedy + + + TVPG + + + 3 + + + + Jockey + An aging jockey contemplates his legacy and aims for a final championship when a rookie rider arrives, claiming to be his son. + + Clifton Collins Jr. + Molly Parker + Moises Arias + + 2021 + Movies + Drama + + + 3 + + + + Angel Eyes + A Chicago policewoman (Jennifer Lopez) with memories of child abuse meets a man (Jim Caviezel) who saw his family die in a car accident. + + Jennifer Lopez + Jim Caviezel + Sonia Braga + + 2001 + Movies + Drama + + + TVPG + + + 2 + + + + Measure of Revenge + When Lillian Cooper's famous son dies suddenly from a supposed overdose, she conducts her own investigation. With the help of a drug dealer, Lillian pursues answers, justice and revenge. + + Melissa Leo + Bella Thorne + Jake Weary + + 2022 + Movies + Thriller + + + + Welcome Home + A couple's attempt at reconciling their relationship at a rental house in Italy is interrupted by the owner's evil plans. + + Aaron Paul + Emily Ratajkowski + Riccardo Scamarcio + + 2018 + Movies + Thriller + + + TVPG + + + + Yakari, a Spectacular Journey + A Native American boy sets off for the unknown to follow the trail of Little Thunder, a mustang. Along the way, he has a magical encounter with the Great Eagle, who gives him the gift of speaking to animals. + + Cosima Henman + Nick Karry + Tom Zahner + + 2020 + Movies + Animated + + + + Replicas + A brilliant neuroscientist secretly tries to clone and create replicas of his family after a tragic car crash. + + Keanu Reeves + Thomas Middleditch + Alice Eve + + 2018 + Movies + Sci-Fi + + + TVG + + + 1 + + + + White Boy Rick + In 1980s Detroit, Rick Wershe Jr. agrees to become an undercover drug informant in exchange for keeping his father out of prison. When young Rick gets in too deep, he finds himself seduced by the lure of easy money and becomes a drug dealer himself. + + Matthew McConaughey + Richie Merritt + Bel Powley + + 2018 + Movies + Crime Story + + + TV14 + + + 2 + + + + Jockey + An aging jockey contemplates his legacy and aims for a final championship when a rookie rider arrives, claiming to be his son. + + Clifton Collins Jr. + Molly Parker + Moises Arias + + 2021 + Movies + Drama + + + 3 + + + + Paper Soldiers + A rookie thief receives on-the-job training from a crew of bungling burglars. + + Kevin Hart + Beanie Sigel + Jason Cerbone + + 2002 + Movies + Comedy + + + TVPG + + + + The Unbearable Weight of Massive Talent + Facing financial ruin, actor Nick Cage accepts $1 million to attend a wealthy fan's birthday party. Taking on the role of a lifetime, he soon finds himself channeling his most iconic and beloved characters to save himself and his loved ones. + + Nicolas Cage + Pedro Pascal + Tiffany Haddish + + 2022 + Movies + Comedy + + + TVPG + + + 3 + + + + Replicas + A brilliant neuroscientist secretly tries to clone and create replicas of his family after a tragic car crash. + + Keanu Reeves + Thomas Middleditch + Alice Eve + + 2018 + Movies + Sci-Fi + + + TVG + + + 1 + + + + Angel Eyes + A Chicago policewoman (Jennifer Lopez) with memories of child abuse meets a man (Jim Caviezel) who saw his family die in a car accident. + + Jennifer Lopez + Jim Caviezel + Sonia Braga + + 2001 + Movies + Drama + + + TVPG + + + 2 + + + + The Strangers: Prey at Night + A road trip to visit relatives takes a dangerous turn when a family arrives at a secluded mobile home park that's mysteriously deserted -- until three masked psychopaths show up to satisfy their thirst for blood. + + Christina Hendricks + Martin Henderson + Bailee Madison + + 2018 + Movies + Horror + + + TVPG + + + 2 + + + + The Strangers: Prey at Night + A road trip to visit relatives takes a dangerous turn when a family arrives at a secluded mobile home park that's mysteriously deserted -- until three masked psychopaths show up to satisfy their thirst for blood. + + Christina Hendricks + Martin Henderson + Bailee Madison + + 2018 + Movies + Horror + + + TVPG + + + 2 + + + + Welcome Home + A couple's attempt at reconciling their relationship at a rental house in Italy is interrupted by the owner's evil plans. + + Aaron Paul + Emily Ratajkowski + Riccardo Scamarcio + + 2018 + Movies + Thriller + + + TVPG + + + + City of Lies + Disgraced LAPD detective Russell Poole teams with journalist Jack Jackson to uncover the truth behind the murders of Tupac Shakur and The Notorious B.I.G. + + Johnny Depp + Forest Whitaker + Rockmond Dunbar + + 2018 + Movies + Mystery + + + 2 + + + + ECCO + A former covert assassin seeks redemption by hunting the people responsible for his sinful past. + + Lathrop Walker + Tabitha Bastien + Helena Grace Donald + + 2019 + Movies + Thriller + + + + She Ball + On a mission to save his Inglewood, Calif., community center, a man enlists a talented basketball player to help him win the grand prize in a street ball tournament. Together, they challenge politicians, gangs and stereotypes to save their community. + + Nick Cannon + Chris Brown + Birdman + + 2020 + Movies + Drama + + + + RENO 911!: Miami + Attending a police convention in Florida, bumbling Nevada officers (Thomas Lennon, Ben Garant, Kerri Kenney) must save the day when terrorists launch an attack. + + Thomas Lennon + Robert Ben Garant + Kerri Kenny-Silver + + 2007 + Movies + Comedy + + + TVPG + + + 2 + + + + Jockey + An aging jockey contemplates his legacy and aims for a final championship when a rookie rider arrives, claiming to be his son. + + Clifton Collins Jr. + Molly Parker + Moises Arias + + 2021 + Movies + Drama + + + 3 + + + + Clerks III + After suffering a massive heart attack, Randal enlists friends and fellow clerks Dante, Elias, Jay and Silent Bob to help him make a movie about life at the Quick Stop. + + Brian O'Halloran + Jeff Anderson + Rosario Dawson + + 2022 + Movies + Comedy + + + 2 + + + + I Spy + A special agent (Owen Wilson) and a boxing champion (Eddie Murphy) travel to Budapest, Hungary, to locate an arms dealer and a stealth bomber. + + Eddie Murphy + Owen Wilson + Famke Janssen + + 2002 + Movies + Comedy + + + TVG + + + 2 + + + + City of Lies + Disgraced LAPD detective Russell Poole teams with journalist Jack Jackson to uncover the truth behind the murders of Tupac Shakur and The Notorious B.I.G. + + Johnny Depp + Forest Whitaker + Rockmond Dunbar + + 2018 + Movies + Mystery + + + 2 + + + + Proud Mary + Mary is a professional assassin who works for a ruthless gangster and his organized crime family in Boston. Her desire to save a 12-year-old boy from the streets soon causes an all-out turf war that forces her to take down whoever stands in her way. + + Taraji P. Henson + Billy Brown + Jahi Di'Allo Winston + + 2018 + Movies + Action + + + TVPG + + + 1 + + + + RENO 911!: Miami + Attending a police convention in Florida, bumbling Nevada officers (Thomas Lennon, Ben Garant, Kerri Kenney) must save the day when terrorists launch an attack. + + Thomas Lennon + Robert Ben Garant + Kerri Kenny-Silver + + 2007 + Movies + Comedy + + + TVPG + + + 2 + + + + Clerks III + After suffering a massive heart attack, Randal enlists friends and fellow clerks Dante, Elias, Jay and Silent Bob to help him make a movie about life at the Quick Stop. + + Brian O'Halloran + Jeff Anderson + Rosario Dawson + + 2022 + Movies + Comedy + + + 2 + + + + I Spy + A special agent (Owen Wilson) and a boxing champion (Eddie Murphy) travel to Budapest, Hungary, to locate an arms dealer and a stealth bomber. + + Eddie Murphy + Owen Wilson + Famke Janssen + + 2002 + Movies + Comedy + + + TVG + + + 2 + + + + X-Men: The Last Stand + An all-out war looms when the discovery of a cure for mutations draws a line between the followers (Hugh Jackman, Halle Berry, Famke Janssen, Anna Paquin, Rebecca Romijn) of Charles Xavier (Patrick Stewart) and those of Magneto (Ian McKellen). + + Hugh Jackman + Patrick Stewart + Ian McKellen + + 2006 + Movies + Action + + + TVG + + + 2 + + + + X-Men: The Last Stand + An all-out war looms when the discovery of a cure for mutations draws a line between the followers (Hugh Jackman, Halle Berry, Famke Janssen, Anna Paquin, Rebecca Romijn) of Charles Xavier (Patrick Stewart) and those of Magneto (Ian McKellen). + + Hugh Jackman + Patrick Stewart + Ian McKellen + + 2006 + Movies + Action + + + TVG + + + 2 + + + + She Ball + On a mission to save his Inglewood, Calif., community center, a man enlists a talented basketball player to help him win the grand prize in a street ball tournament. Together, they challenge politicians, gangs and stereotypes to save their community. + + Nick Cannon + Chris Brown + Birdman + + 2020 + Movies + Drama + + + + Local Programming + Sign off. + Specials + + + TVG + + + + To Decadence With Love, Thanks for Everything! + Two drag queens prepare for Southern Decadence, the annual New Orleans event that celebrates the LGBTQ community. + 2020 + Movies + Documentary + + + + Measure of Revenge + When Lillian Cooper's famous son dies suddenly from a supposed overdose, she conducts her own investigation. With the help of a drug dealer, Lillian pursues answers, justice and revenge. + + Melissa Leo + Bella Thorne + Jake Weary + + 2022 + Movies + Thriller + + + + Supercool + Lifelong friends Neil and Gilbert's undeniable bond gets pushed to its limits when Neil makes a wish that comes true. + + Jake Short + Miles J. Harvey + Damon Wayans Jr. + + 2021 + Movies + Comedy + + + + X-Men: The Last Stand + An all-out war looms when the discovery of a cure for mutations draws a line between the followers (Hugh Jackman, Halle Berry, Famke Janssen, Anna Paquin, Rebecca Romijn) of Charles Xavier (Patrick Stewart) and those of Magneto (Ian McKellen). + + Hugh Jackman + Patrick Stewart + Ian McKellen + + 2006 + Movies + Action + + + TVG + + + 2 + + + + Cordelia + Cordelia meets her mysterious London neighbor, Frank, for the first time and quickly becomes suspicious of his motives. She begins to unravel and sink back into past traumas with Frank around, making her paranoid and dangerous. + + Antonia Campbell-Hughes + Johnny Flynn + Michael Gambon + + 2019 + Movies + Thriller + + + + Measure of Revenge + When Lillian Cooper's famous son dies suddenly from a supposed overdose, she conducts her own investigation. With the help of a drug dealer, Lillian pursues answers, justice and revenge. + + Melissa Leo + Bella Thorne + Jake Weary + + 2022 + Movies + Thriller + + + + I Don't Know How She Does It + A new account in New York requiring a lot of travel threatens to derail a Boston-based financial executive's (Sarah Jessica Parker) attempt to juggle work and family. + + Sarah Jessica Parker + Pierce Brosnan + Greg Kinnear + + 2011 + Movies + Comedy + + + TVG + + + 1 + + + + Rough Night + Jess is an engaged politician who reunites with three of her college friends for a wild bachelorette weekend in Miami. The night of hard partying soon lands them in hot water when a male stripper accidentally dies at their beach house. + + Scarlett Johansson + Jillian Bell + Zoë Kravitz + + 2017 + Movies + Comedy + + + TVPG + + + 2 + + + + X-Men: The Last Stand + An all-out war looms when the discovery of a cure for mutations draws a line between the followers (Hugh Jackman, Halle Berry, Famke Janssen, Anna Paquin, Rebecca Romijn) of Charles Xavier (Patrick Stewart) and those of Magneto (Ian McKellen). + + Hugh Jackman + Patrick Stewart + Ian McKellen + + 2006 + Movies + Action + + + TVG + + + 2 + + + + X-Men + Professor Xavier (Patrick Stewart) leads Wolverine (Hugh Jackman) and other superheroes against Magneto (Ian McKellen), a mutant who would rule humanity. + + Hugh Jackman + Patrick Stewart + Ian McKellen + + 2000 + Movies + Action + + + TVG + + + 3 + + + + The Siege + An FBI agent (Denzel Washington), a Middle East specialist (Annette Bening) and a power-mad general (Bruce Willis) try to thwart terrorists in New York. + + Denzel Washington + Annette Bening + Bruce Willis + + 1998 + Movies + Thriller + + + TVPG + + + 2 + + + + The Spirit + A ghostlike crime fighter (Gabriel Macht) faces a villain known as the Octopus (Samuel L. Jackson), whose aim is to destroy Central City while searching for the secret to immortality. + + Gabriel Macht + Samuel L. Jackson + Sarah Paulson + + 2008 + Movies + Action + + + TVPG + + + 1 + + + + ECCO + A former covert assassin seeks redemption by hunting the people responsible for his sinful past. + + Lathrop Walker + Tabitha Bastien + Helena Grace Donald + + 2019 + Movies + Thriller + + + + ECCO + A former covert assassin seeks redemption by hunting the people responsible for his sinful past. + + Lathrop Walker + Tabitha Bastien + Helena Grace Donald + + 2019 + Movies + Thriller + + + + Aliens vs. Predator: Requiem + Residents (Steven Pasquale, Reiko Aylesworth, John Ortiz) of a Colorado town become caught up in a longstanding war between two deadly alien races. + + Steven Pasquale + Reiko Aylesworth + John Ortiz + + 2007 + Movies + Sci-Fi + + + TVPG + + + 2 + + + + Exit the Dragon, Enter the Tiger + A fighter (Bruce Li) finds drug smugglers behind the death of Bruce Lee. + + Bruce Li + Lung Fei + Ma Chi Chiang + + 1976 + Movies + Action + + + 1 + + + + Independence Day + A fighter pilot (Will Smith), a computer whiz (Jeff Goldblum) and others fight back after 15-mile-wide alien ships zap Earth's major cities. + + Will Smith + Bill Pullman + Jeff Goldblum + + 1996 + Movies + Sci-Fi + + + TVPG + + + 3 + + + + I Spy + A special agent (Owen Wilson) and a boxing champion (Eddie Murphy) travel to Budapest, Hungary, to locate an arms dealer and a stealth bomber. + + Eddie Murphy + Owen Wilson + Famke Janssen + + 2002 + Movies + Comedy + + + TVG + + + 2 + + + + Guardians of the Galaxy + A space adventurer (Chris Pratt) becomes the quarry of bounty hunters after he steals an orb coveted by a treacherous villain, but after he discovers the orb's true power, he must find a way to unite four ragtag rivals to save the universe. + + Chris Pratt + Zoe Saldana + Dave Bautista + + 2014 + Movies + Sci-Fi + + + TVG + + + 3 + + + + Speed 2: Cruise Control + A vacationing couple (Sandra Bullock, Jason Patric) save the day when a madman (Willem Dafoe) commandeers their cruise ship. + + Sandra Bullock + Jason Patric + Willem Dafoe + + 1997 + Movies + Action + + + TVG + + + 1 + + + + Independence Day + A fighter pilot (Will Smith), a computer whiz (Jeff Goldblum) and others fight back after 15-mile-wide alien ships zap Earth's major cities. + + Will Smith + Bill Pullman + Jeff Goldblum + + 1996 + Movies + Sci-Fi + + + TVPG + + + 3 + + + + I Spy + A special agent (Owen Wilson) and a boxing champion (Eddie Murphy) travel to Budapest, Hungary, to locate an arms dealer and a stealth bomber. + + Eddie Murphy + Owen Wilson + Famke Janssen + + 2002 + Movies + Comedy + + + TVG + + + 2 + + + + Guardians of the Galaxy + A space adventurer (Chris Pratt) becomes the quarry of bounty hunters after he steals an orb coveted by a treacherous villain, but after he discovers the orb's true power, he must find a way to unite four ragtag rivals to save the universe. + + Chris Pratt + Zoe Saldana + Dave Bautista + + 2014 + Movies + Sci-Fi + + + TVG + + + 3 + + + + Man of Tai Chi + A young martial artist's amazing skills in tai chi grant him entry into an underworld fight club. + + Tiger Chen + Keanu Reeves + Karen Mok + + 2013 + Movies + Martial Arts + + + TVPG + + + + Speed 2: Cruise Control + A vacationing couple (Sandra Bullock, Jason Patric) save the day when a madman (Willem Dafoe) commandeers their cruise ship. + + Sandra Bullock + Jason Patric + Willem Dafoe + + 1997 + Movies + Action + + + TVG + + + 1 + + + + Speed 2: Cruise Control + A vacationing couple (Sandra Bullock, Jason Patric) save the day when a madman (Willem Dafoe) commandeers their cruise ship. + + Sandra Bullock + Jason Patric + Willem Dafoe + + 1997 + Movies + Action + + + TVG + + + 1 + + + + Zombieland: Double Tap + Post-apocalyptic warriors Tallahassee, Columbus, Wichita and Little Rock must rely on their wits and weapons more than ever as they find themselves in a relentless battle against smarter, faster and seemingly indestructible zombies. + + Woody Harrelson + Jesse Eisenberg + Emma Stone + + 2019 + Movies + Comedy + + + TVPG + + + 2 + + + + Independence Day + A fighter pilot (Will Smith), a computer whiz (Jeff Goldblum) and others fight back after 15-mile-wide alien ships zap Earth's major cities. + + Will Smith + Bill Pullman + Jeff Goldblum + + 1996 + Movies + Sci-Fi + + + TVPG + + + 3 + + + + Black Ops + Trapped on a never-ending stairwell, members of a black ops team confront a mysterious and terrifying evil while trying to climb to the top. + + Shayne Ward + Bentley Kalu + Samantha Schnitzler + + 2019 + Movies + Action + + + + The Pledge + A detective (Jack Nicholson) about to retire promises a woman that he will catch her daughter's murderer. + + Jack Nicholson + Robin Wright + Aaron Eckhart + + 2001 + Movies + Mystery + + + TVPG + + + 3 + + + + Zombieland: Double Tap + Post-apocalyptic warriors Tallahassee, Columbus, Wichita and Little Rock must rely on their wits and weapons more than ever as they find themselves in a relentless battle against smarter, faster and seemingly indestructible zombies. + + Woody Harrelson + Jesse Eisenberg + Emma Stone + + 2019 + Movies + Comedy + + + TVPG + + + 2 + + + + Next Day Air + A courier (Donald Faison) lands in the middle of a drug deal gone awry when he accidentally delivers a box of cocaine to the wrong address. + + Donald Faison + Mike Epps + Wood Harris + + 2009 + Movies + Comedy + Drama + + + TVPG + + + 1 + + + + Planet of the Apes + An astronaut (Charlton Heston) and his team crash on a world ruled by intelligent, talking simians who treat humans like animals. + + Charlton Heston + Roddy McDowall + Kim Hunter + + 1968 + Movies + Sci-Fi + + + TVG + + + 4 + + + + Officer Down + A cop's (Stephen Dorff) shady past comes back to haunt him as he investigates a series of assaults against women at a strip club. + + Stephen Dorff + James Woods + Stephen Lang + + 2013 + Movies + Crime Story + + + TVPG + + + + Zombieland: Double Tap + Post-apocalyptic warriors Tallahassee, Columbus, Wichita and Little Rock must rely on their wits and weapons more than ever as they find themselves in a relentless battle against smarter, faster and seemingly indestructible zombies. + + Woody Harrelson + Jesse Eisenberg + Emma Stone + + 2019 + Movies + Comedy + + + TVPG + + + 2 + + + + Silent Trigger + A hired assassin (Dolph Lundgren) believes that his partner (Gina Bellman) in a failed mission has orders to kill him. + + Dolph Lundgren + Gina Bellman + Conrad Dunn + + 1996 + Movies + Thriller + + + 2 + + + + The Warrior's Way + Refusing to kill an infant from an enemy clan, a master swordsman (Jang Dong-gun) takes the child and flees to an American frontier town. + + Jang Dong-gun + Geoffrey Rush + Kate Bosworth + + 2010 + Movies + Action + + + TVPG + + + 2 + + + + Black Ops + Trapped on a never-ending stairwell, members of a black ops team confront a mysterious and terrifying evil while trying to climb to the top. + + Shayne Ward + Bentley Kalu + Samantha Schnitzler + + 2019 + Movies + Action + + + + Next Day Air + A courier (Donald Faison) lands in the middle of a drug deal gone awry when he accidentally delivers a box of cocaine to the wrong address. + + Donald Faison + Mike Epps + Wood Harris + + 2009 + Movies + Comedy + Drama + + + TVPG + + + 1 + + + + Duplicity + Spies (Julia Roberts, Clive Owen) for rival corporations carry on a clandestine love affair while trying to find the formula for a product that will earn a fortune for the company that patents it first. + + Julia Roberts + Clive Owen + Tom Wilkinson + + 2009 + Movies + Thriller + + + TVG + + + 3 + + + + Duplicity + Spies (Julia Roberts, Clive Owen) for rival corporations carry on a clandestine love affair while trying to find the formula for a product that will earn a fortune for the company that patents it first. + + Julia Roberts + Clive Owen + Tom Wilkinson + + 2009 + Movies + Thriller + + + TVG + + + 3 + + + + The Pledge + A detective (Jack Nicholson) about to retire promises a woman that he will catch her daughter's murderer. + + Jack Nicholson + Robin Wright + Aaron Eckhart + + 2001 + Movies + Mystery + + + TVPG + + + 3 + + + + The Jackal + A jailed IRA operative (Richard Gere) helps the FBI track a masterful assassin (Bruce Willis) about to perform a political killing. + + Bruce Willis + Richard Gere + Sidney Poitier + + 1997 + Movies + Thriller + + + TVPG + + + 2 + + + + Black Cop + After being profiled and attacked by his fellow officers, a black policeman goes after revenge. + + Ronnie Rowe + Sophia Walker + Sebastien Labelle + + 2017 + Movies + Drama + + + + Courage Under Fire + A troubled officer (Denzel Washington) reviews the Medal of Honor candidacy of a female helicopter pilot (Meg Ryan) killed during the Gulf War. + + Denzel Washington + Meg Ryan + Lou Diamond Phillips + + 1996 + Movies + Action + + + TVPG + + + 3 + + + + Duplicity + Spies (Julia Roberts, Clive Owen) for rival corporations carry on a clandestine love affair while trying to find the formula for a product that will earn a fortune for the company that patents it first. + + Julia Roberts + Clive Owen + Tom Wilkinson + + 2009 + Movies + Thriller + + + TVG + + + 3 + + + + The Spirit + A ghostlike crime fighter (Gabriel Macht) faces a villain known as the Octopus (Samuel L. Jackson), whose aim is to destroy Central City while searching for the secret to immortality. + + Gabriel Macht + Samuel L. Jackson + Sarah Paulson + + 2008 + Movies + Action + + + TVPG + + + 1 + + + + Fire With Fire + A firefighter does something unexpected after a man that he has been ordered to testify against threatens him. + + Josh Duhamel + Rosario Dawson + Bruce Willis + + 2012 + Movies + Action + + + TVPG + + + + Black Cop + After being profiled and attacked by his fellow officers, a black policeman goes after revenge. + + Ronnie Rowe + Sophia Walker + Sebastien Labelle + + 2017 + Movies + Drama + + + + Courage Under Fire + A troubled officer (Denzel Washington) reviews the Medal of Honor candidacy of a female helicopter pilot (Meg Ryan) killed during the Gulf War. + + Denzel Washington + Meg Ryan + Lou Diamond Phillips + + 1996 + Movies + Action + + + TVPG + + + 3 + + + + The Quest + Sold into the underworld of gambling and kickboxing, a street criminal (Jean-Claude Van Damme) vies with the world's best fighters in an ancient Tibetan competition. + + Jean-Claude Van Damme + Roger Moore + James Remar + + 1996 + Movies + Action + + + TVPG + + + 2 + + + + The Jackal + A jailed IRA operative (Richard Gere) helps the FBI track a masterful assassin (Bruce Willis) about to perform a political killing. + + Bruce Willis + Richard Gere + Sidney Poitier + + 1997 + Movies + Thriller + + + TVPG + + + 2 + + + + Curve + A young woman becomes trapped in her wrecked car after a hitchhiker causes an accident. + + Julianne Hough + Teddy Sears + Madalyn Horcher + + 2015 + Movies + Horror + + + TVPG + + + + Curve + A young woman becomes trapped in her wrecked car after a hitchhiker causes an accident. + + Julianne Hough + Teddy Sears + Madalyn Horcher + + 2015 + Movies + Horror + + + TVPG + + + + Exit the Dragon, Enter the Tiger + A fighter (Bruce Li) finds drug smugglers behind the death of Bruce Lee. + + Bruce Li + Lung Fei + Ma Chi Chiang + + 1976 + Movies + Action + + + 1 + + + + 30 Minutes or Less + A pizza deliverer (Jesse Eisenberg) pulls in his estranged pal (Aziz Ansari) to help when a pair of wanna-be criminal masterminds strap a bomb to his chest and force him to rob a bank. + + Jesse Eisenberg + Danny McBride + Aziz Ansari + + 2011 + Movies + Comedy + + + TVPG + + + 2 + + + + Local Programming + Sign off. + Specials + + + TVG + + + + X-Men: First Class + Charles Xavier (James McAvoy) and Erik Lehnsherr (Michael Fassbender) work with other mutants to prevent a nuclear nightmare, but a situation soon tears the close friends apart. + + James McAvoy + Michael Fassbender + Rose Byrne + + 2011 + Movies + Action + + + TVG + + + 3 + + + + The Spirit + A ghostlike crime fighter (Gabriel Macht) faces a villain known as the Octopus (Samuel L. Jackson), whose aim is to destroy Central City while searching for the secret to immortality. + + Gabriel Macht + Samuel L. Jackson + Sarah Paulson + + 2008 + Movies + Action + + + TVPG + + + 1 + + + + A Day in the Life + A man (Sticky Fingaz) gets caught in a war between crime families while trying to leave his gangster lifestyle. + + Kirk + + 2009 + Movies + Musical + + + + 30 Minutes or Less + A pizza deliverer (Jesse Eisenberg) pulls in his estranged pal (Aziz Ansari) to help when a pair of wanna-be criminal masterminds strap a bomb to his chest and force him to rob a bank. + + Jesse Eisenberg + Danny McBride + Aziz Ansari + + 2011 + Movies + Comedy + + + TVPG + + + 2 + + + + Vacancy + While stranded at a remote motel, a couple (Luke Wilson, Kate Beckinsale) discover hidden cameras in their room and learn they are to be the stars of a snuff film. + + Luke Wilson + Kate Beckinsale + Frank Whaley + + 2007 + Movies + Thriller + + + TVPG + + + 2 + + + + X-Men: First Class + Charles Xavier (James McAvoy) and Erik Lehnsherr (Michael Fassbender) work with other mutants to prevent a nuclear nightmare, but a situation soon tears the close friends apart. + + James McAvoy + Michael Fassbender + Rose Byrne + + 2011 + Movies + Action + + + TVG + + + 3 + + + + Shark Night + A weekend of fun turns into a blood-soaked nightmare when college students (Sara Paxton, Dustin Milligan, Chris Carmack) discover they are stranded amid a school of hungry sharks. + + Sara Paxton + Dustin Milligan + Chris Carmack + + 2011 + Movies + Horror + + + TV14 + + + 1 + + + + Curve + A young woman becomes trapped in her wrecked car after a hitchhiker causes an accident. + + Julianne Hough + Teddy Sears + Madalyn Horcher + + 2015 + Movies + Horror + + + TVPG + + + + A Day in the Life + A man (Sticky Fingaz) gets caught in a war between crime families while trying to leave his gangster lifestyle. + + Kirk + + 2009 + Movies + Musical + + + + Light It Up + After an accidental shooting at an inner-city high school, a group of teens holds a wounded police officer (Forest Whitaker) hostage. + + Usher + Forest Whitaker + Rosario Dawson + + 1999 + Movies + Drama + + + TVPG + + + 2 + + + + 22 Jump Street + Officers Jenko (Channing Tatum) and Schmidt (Jonah Hill) begin to question their partnership after each infiltrates different cliques while undercover at a local college. + + Jonah Hill + Channing Tatum + Peter Stormare + + 2014 + Movies + Comedy + + + TVPG + + + 3 + + + + She Ball + On a mission to save his Inglewood, Calif., community center, a man enlists a talented basketball player to help him win the grand prize in a street ball tournament. Together, they challenge politicians, gangs and stereotypes to save their community. + + Nick Cannon + Chris Brown + Birdman + + 2020 + Movies + Drama + + + + Fantasy Island + The enigmatic Mr. Roarke makes the secret dreams of his guests come true at a luxurious tropical resort. But when the fantasies turn into nightmares, the visitors must soon solve the island's mystery in order to escape with their lives. + + Michael Peña + Maggie Q + Lucy Hale + + 2020 + Movies + Horror + + + TVPG + + + 1 + + + + Fantasy Island + The enigmatic Mr. Roarke makes the secret dreams of his guests come true at a luxurious tropical resort. But when the fantasies turn into nightmares, the visitors must soon solve the island's mystery in order to escape with their lives. + + Michael Peña + Maggie Q + Lucy Hale + + 2020 + Movies + Horror + + + TVPG + + + 1 + + + + Cookie's Fortune + Female relatives (Glenn Close, Julianne Moore) scheme to avoid scandal at an eccentric's death, wrongly blamed on a caretaker. + + Glenn Close + Julianne Moore + Liv Tyler + + 1999 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + CB4 + Three middle-class pals (Chris Rock, Allen Payne, Deezer D) try to be cell-block types and tap into the rap market but cross a drug-dealing club owner. + + Chris Rock + Allen Payne + Deezer D + + 1993 + Movies + Comedy + + + TVPG + + + 2 + + + + The Curse of La Patasola + A weekend camping trip turns into a fight for survival when two couples encounter La Patasola, a legendary, vampire-like creature from Amazonian folklore. + + Luciana Faulhaber + Patrick Walker + Najah Bradley + + 2022 + Movies + Horror + + + + Fantasy Island + The enigmatic Mr. Roarke makes the secret dreams of his guests come true at a luxurious tropical resort. But when the fantasies turn into nightmares, the visitors must soon solve the island's mystery in order to escape with their lives. + + Michael Peña + Maggie Q + Lucy Hale + + 2020 + Movies + Horror + + + TVPG + + + 1 + + + + The House Next Door: Meet the Blacks 2 + Author Carl Black's life takes an unexpected turn when he meets the eccentric new homeowner next door. Convinced that the man is a vampire, Carl and his oddball neighbors join forces to save themselves from the bloodsucking undead. + + Mike Epps + Katt Williams + Bresha Webb + + 2021 + Movies + Comedy + + + TVPG + + + 1 + + + + Tahara + Two best friends attend the funeral of a Hebrew school classmate who died by suicide and accidentally damage their friendship beyond repair. + + Madeline Grey DeFreece + Rachel Sennott + Daniel Taveras + + 2020 + Movies + Drama + + + + I'm Charlie Walker + Trucking and construction entrepreneur Charlie Walker fights institutional racism while cleaning up a massive oil spill off the coast of San Francisco in 1971. + + Mike Colter + Dylan Baker + Safiya Fredericks + + 2022 + Movies + Drama + + + + Rapture-Palooza + Left behind after the Rapture, a young woman (Anna Kendrick) and her boyfriend (John Francis Daley) set out to prevent the Antichrist (Craig Robinson) from taking her as his unholy bride. + + Craig Robinson + Anna Kendrick + John Francis Daley + + 2013 + Movies + Comedy + + + TVPG + + + 2 + + + + Mo' Better Blues + Music comes first for a Manhattan jazzman (Denzel Washington) with one too many lovers and a manager (Spike Lee) who gambles. + + Denzel Washington + Spike Lee + Wesley Snipes + + 1990 + Movies + Drama + + + TVG + + + 2 + + + + The Curse of La Patasola + A weekend camping trip turns into a fight for survival when two couples encounter La Patasola, a legendary, vampire-like creature from Amazonian folklore. + + Luciana Faulhaber + Patrick Walker + Najah Bradley + + 2022 + Movies + Horror + + + + Cookie's Fortune + Female relatives (Glenn Close, Julianne Moore) scheme to avoid scandal at an eccentric's death, wrongly blamed on a caretaker. + + Glenn Close + Julianne Moore + Liv Tyler + + 1999 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Rapture-Palooza + Left behind after the Rapture, a young woman (Anna Kendrick) and her boyfriend (John Francis Daley) set out to prevent the Antichrist (Craig Robinson) from taking her as his unholy bride. + + Craig Robinson + Anna Kendrick + John Francis Daley + + 2013 + Movies + Comedy + + + TVPG + + + 2 + + + + The House Next Door: Meet the Blacks 2 + Author Carl Black's life takes an unexpected turn when he meets the eccentric new homeowner next door. Convinced that the man is a vampire, Carl and his oddball neighbors join forces to save themselves from the bloodsucking undead. + + Mike Epps + Katt Williams + Bresha Webb + + 2021 + Movies + Comedy + + + TVPG + + + 1 + + + + Fantasy Island + The enigmatic Mr. Roarke makes the secret dreams of his guests come true at a luxurious tropical resort. But when the fantasies turn into nightmares, the visitors must soon solve the island's mystery in order to escape with their lives. + + Michael Peña + Maggie Q + Lucy Hale + + 2020 + Movies + Horror + + + TVPG + + + 1 + + + + Fantasy Island + The enigmatic Mr. Roarke makes the secret dreams of his guests come true at a luxurious tropical resort. But when the fantasies turn into nightmares, the visitors must soon solve the island's mystery in order to escape with their lives. + + Michael Peña + Maggie Q + Lucy Hale + + 2020 + Movies + Horror + + + TVPG + + + 1 + + + + The Siege + An FBI agent (Denzel Washington), a Middle East specialist (Annette Bening) and a power-mad general (Bruce Willis) try to thwart terrorists in New York. + + Denzel Washington + Annette Bening + Bruce Willis + + 1998 + Movies + Thriller + + + TVPG + + + 2 + + + + Drop Squad + A group dedicated to restoring African-Americans' sense of pride goes after an adman whose campaigns are demeaning. + + Eriq La Salle + Vondie Curtis Hall + Ving Rhames + + 1994 + Movies + Drama + + + 2 + + + + She Ball + On a mission to save his Inglewood, Calif., community center, a man enlists a talented basketball player to help him win the grand prize in a street ball tournament. Together, they challenge politicians, gangs and stereotypes to save their community. + + Nick Cannon + Chris Brown + Birdman + + 2020 + Movies + Drama + + + + The House Next Door: Meet the Blacks 2 + Author Carl Black's life takes an unexpected turn when he meets the eccentric new homeowner next door. Convinced that the man is a vampire, Carl and his oddball neighbors join forces to save themselves from the bloodsucking undead. + + Mike Epps + Katt Williams + Bresha Webb + + 2021 + Movies + Comedy + + + TVPG + + + 1 + + + + Rapture-Palooza + Left behind after the Rapture, a young woman (Anna Kendrick) and her boyfriend (John Francis Daley) set out to prevent the Antichrist (Craig Robinson) from taking her as his unholy bride. + + Craig Robinson + Anna Kendrick + John Francis Daley + + 2013 + Movies + Comedy + + + TVPG + + + 2 + + + + The Siege + An FBI agent (Denzel Washington), a Middle East specialist (Annette Bening) and a power-mad general (Bruce Willis) try to thwart terrorists in New York. + + Denzel Washington + Annette Bening + Bruce Willis + + 1998 + Movies + Thriller + + + TVPG + + + 2 + + + + The Equalizer + A former commando (Denzel Washington) comes out of retirement and puts his special skills to work to rescue a girl (Chloë Grace Moretz) who is under the control of ruthless Russian mobsters. + + Denzel Washington + Marton Csokas + Chloë Grace Moretz + + 2014 + Movies + Action + + + TV14 + + + 2 + + + + Ambitions + Friends & Lovers + Fish-out-of-water attorneys Amara and Titus Hughes adjust to new personal and professional challenges following their move to Atlanta, namely the ruthless Stephanie Carlisle Lancaster. + + Robin Givens + Essence Atkins + Brian White + + Drama + + + TV14 + + + + Ambitions + Woman to Woman + Amara puts Stephanie on notice; Atlanta's first lady learns a shocking secret from a rival's past; Bella makes a bold play to get what she wants; Rondell meets an intriguing ally in her fight to save her restaurant. + + Robin Givens + Essence Atkins + Brian White + + Drama + + + TV14 + + + + Ambitions + Welcome to Birmingham + Stephanie continues her quest to repay Amara; Rondell falls out of favor with Senior, and Bella develops a new strategy. + + Robin Givens + Essence Atkins + Brian White + + Drama + + + TV14 + + + + She Ball + On a mission to save his Inglewood, Calif., community center, a man enlists a talented basketball player to help him win the grand prize in a street ball tournament. Together, they challenge politicians, gangs and stereotypes to save their community. + + Nick Cannon + Chris Brown + Birdman + + 2020 + Movies + Drama + + + + Drop Squad + A group dedicated to restoring African-Americans' sense of pride goes after an adman whose campaigns are demeaning. + + Eriq La Salle + Vondie Curtis Hall + Ving Rhames + + 1994 + Movies + Drama + + + 2 + + + + The Equalizer + A former commando (Denzel Washington) comes out of retirement and puts his special skills to work to rescue a girl (Chloë Grace Moretz) who is under the control of ruthless Russian mobsters. + + Denzel Washington + Marton Csokas + Chloë Grace Moretz + + 2014 + Movies + Action + + + TV14 + + + 2 + + + + The Siege + An FBI agent (Denzel Washington), a Middle East specialist (Annette Bening) and a power-mad general (Bruce Willis) try to thwart terrorists in New York. + + Denzel Washington + Annette Bening + Bruce Willis + + 1998 + Movies + Thriller + + + TVPG + + + 2 + + + + She Ball + On a mission to save his Inglewood, Calif., community center, a man enlists a talented basketball player to help him win the grand prize in a street ball tournament. Together, they challenge politicians, gangs and stereotypes to save their community. + + Nick Cannon + Chris Brown + Birdman + + 2020 + Movies + Drama + + + + She Ball + On a mission to save his Inglewood, Calif., community center, a man enlists a talented basketball player to help him win the grand prize in a street ball tournament. Together, they challenge politicians, gangs and stereotypes to save their community. + + Nick Cannon + Chris Brown + Birdman + + 2020 + Movies + Drama + + + + The Accidental President + Filmmaker James Fletcher examines the circumstances surrounding Donald Trump's rise to the presidency. + 2020 + Movies + Documentary + + + + 18 1/2 + In 1974, a White House transcriber is thrust into the Watergate scandal when she obtains the only copy of the infamous 18 1/2-minute gap in Nixon's tapes. + + Willa Fitzgerald + John Magaro + Vondie Curtis Hall + + 2021 + Movies + Thriller + + + + The Equalizer + A former commando (Denzel Washington) comes out of retirement and puts his special skills to work to rescue a girl (Chloë Grace Moretz) who is under the control of ruthless Russian mobsters. + + Denzel Washington + Marton Csokas + Chloë Grace Moretz + + 2014 + Movies + Action + + + TV14 + + + 2 + + + + When the Bough Breaks + Hired by a professional couple (Morris Chestnut, Regina Hall) to be a surrogate mother, a psychotic young woman (Jaz Sinclair) starts to develop a dangerous fixation with the husband. + + Morris Chestnut + Regina Hall + Romany Malco + + 2016 + Movies + Drama + + + TVPG + + + 1 + + + + Jean of the Joneses + Chaos ensues after the estranged patriarch of the Jones family dies on the doorstep. When the paramedic who answers the 911 call tries to win over acerbic Jean Jones, his attempts are disrupted by old conflicts that come to a boil at the funeral. + + Sherri Shepherd + Taylour Paige + Erica Ash + + 2016 + Movies + Comedy + + + TV14 + + + + 18 1/2 + In 1974, a White House transcriber is thrust into the Watergate scandal when she obtains the only copy of the infamous 18 1/2-minute gap in Nixon's tapes. + + Willa Fitzgerald + John Magaro + Vondie Curtis Hall + + 2021 + Movies + Thriller + + + + The Accidental President + Filmmaker James Fletcher examines the circumstances surrounding Donald Trump's rise to the presidency. + 2020 + Movies + Documentary + + + + Ambitions + Reap What You Sew + Stephanie and Evan join forces for their own self-interest while Titus embarks on a mission that could jeopardize his entire career. + + Robin Givens + Essence Atkins + Brian White + + Drama + + + TV14 + + + + Ambitions + Killing Me Softly + A newcomer to Atlanta carries out a nefarious plan; Stephanie deals from the bottom of the deck to get what she wants. + + Robin Givens + Essence Atkins + Brian White + + Drama + + + TV14 + + + + Ambitions + What About Your Friends + Stephanie is a force to be reckoned with at a Women's Empowerment Summit; Bella forges an alliance with Rod. + + Robin Givens + Essence Atkins + Brian White + + Drama + + + TV14 + + + + Ambitions + Poison and Wine + Stephanie makes an accusation and vows to get revenge; Bella navigates Rod and Evan; Amara forms an unlikely partnership that compels Titus to make questionable moves. + + Robin Givens + Essence Atkins + Brian White + + Drama + + + TV14 + + + + Eve's Bayou + Tragedy strikes a prosperous Louisiana family in 1962 after a girl (Jurnee Smollett) catches her father (Samuel L. Jackson) with another woman. + + Jurnee Smollett + Meagan Good + Samuel L. Jackson + + 1997 + Movies + Drama + + + TVPG + + + 3 + + + + 18 1/2 + In 1974, a White House transcriber is thrust into the Watergate scandal when she obtains the only copy of the infamous 18 1/2-minute gap in Nixon's tapes. + + Willa Fitzgerald + John Magaro + Vondie Curtis Hall + + 2021 + Movies + Thriller + + + + Jean of the Joneses + Chaos ensues after the estranged patriarch of the Jones family dies on the doorstep. When the paramedic who answers the 911 call tries to win over acerbic Jean Jones, his attempts are disrupted by old conflicts that come to a boil at the funeral. + + Sherri Shepherd + Taylour Paige + Erica Ash + + 2016 + Movies + Comedy + + + TV14 + + + + Brown Sugar + A producer (Taye Diggs) for a record company falls for his longtime friend (Sanaa Lathan) shortly after proposing to his girlfriend. + + Taye Diggs + Sanaa Lathan + Mos Def + + 2002 + Movies + Drama + + + TVG + + + 2 + + + + When the Bough Breaks + Hired by a professional couple (Morris Chestnut, Regina Hall) to be a surrogate mother, a psychotic young woman (Jaz Sinclair) starts to develop a dangerous fixation with the husband. + + Morris Chestnut + Regina Hall + Romany Malco + + 2016 + Movies + Drama + + + TVPG + + + 1 + + + + When the Bough Breaks + Hired by a professional couple (Morris Chestnut, Regina Hall) to be a surrogate mother, a psychotic young woman (Jaz Sinclair) starts to develop a dangerous fixation with the husband. + + Morris Chestnut + Regina Hall + Romany Malco + + 2016 + Movies + Drama + + + TVPG + + + 1 + + + + Ambitions + Killing Me Softly + A newcomer to Atlanta carries out a nefarious plan; Stephanie deals from the bottom of the deck to get what she wants. + + Robin Givens + Essence Atkins + Brian White + + Drama + + + TV14 + + + + Ambitions + What About Your Friends + Stephanie is a force to be reckoned with at a Women's Empowerment Summit; Bella forges an alliance with Rod. + + Robin Givens + Essence Atkins + Brian White + + Drama + + + TV14 + + + + Ambitions + Poison and Wine + Stephanie makes an accusation and vows to get revenge; Bella navigates Rod and Evan; Amara forms an unlikely partnership that compels Titus to make questionable moves. + + Robin Givens + Essence Atkins + Brian White + + Drama + + + TV14 + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Trois 2: Pandora's Box + A married psychologist (Monica Calhoun) has an affair with a mysterious man (Michael Jai White) who is really after her large inheritance. + + Monica Calhoun + Michael Jai White + Kristoff St. John + + 2002 + Movies + Thriller + + + TV14 + + + 2 + + + + Trois 3: The Escort + A high-priced escort upsets a powerful businesswoman when he falls for a call girl who works for the same madam. + + Brian White + Patrice Fisher + Isaiah Washington + + 2004 + Movies + Drama + + + + Eve's Bayou + Tragedy strikes a prosperous Louisiana family in 1962 after a girl (Jurnee Smollett) catches her father (Samuel L. Jackson) with another woman. + + Jurnee Smollett + Meagan Good + Samuel L. Jackson + + 1997 + Movies + Drama + + + TVPG + + + 3 + + + + What's Cooking? + Jewish, Latin, Asian and black families that reside on the same street deal with similar troubles on Thanksgiving. + + Alfre Woodard + Dennis Haysbert + Ann Weldon + + 2000 + Movies + Drama + + + TVG + + + 3 + + + + Pride + In the 1970s an aficionado (Terrence Howard) and a janitor (Bernie Mac) renovate an abandoned pool and establish a swim team in one of Philadelphia's roughest neighborhoods. + + Terrence Howard + Bernie Mac + Kevin Phillips + + 2007 + Movies + Drama + + + 2 + + + + Ambitions + Backstabbers + Stephanie and Irene conspire against Rondell; Titus takes matters into his own hands. + + Robin Givens + Essence Atkins + Brian White + + Drama + + + TV14 + + + + Ambitions + Giving Up + Stephanie finds a way to keep her enemies at bay; the highly anticipated anniversary celebration at Thelma's Place ends sooner than expected. + + Robin Givens + Essence Atkins + Brian White + + Drama + + + TV14 + + + + Ambitions + Ex-Factor + The Barnes have a big surprise for the Carlisles, forcing Stephanie and Evan to fight fire with fire; Amara receives backlash at work for her prior indiscretions. + + Robin Givens + Essence Atkins + Brian White + + Drama + + + TV14 + + + + Ambitions + A Change Is Gonna Come + Stephanie plays the ultimate trump card with Amara; Bella takes another chance on love, only to wake up to a nightmare; Rondell and Evan are blind-sided. + + Robin Givens + Essence Atkins + Brian White + + Drama + + + TV14 + + + + Incarnation + Young couple Brad and Jess move to Los Angeles in search of a better life. When they stumble upon a hidden real estate gem, the pair are elated. However, their ideal home hides a secret far more sinister than they ever could have imagined. + + Taye Diggs + Jessica Uberuaga + Michael Madsen + + 2022 + Movies + Horror + + + + What's Cooking? + Jewish, Latin, Asian and black families that reside on the same street deal with similar troubles on Thanksgiving. + + Alfre Woodard + Dennis Haysbert + Ann Weldon + + 2000 + Movies + Drama + + + TVG + + + 3 + + + + Revenge of the Nerds + College freshmen Skolnick (Robert Carradine) and Gilbert (Anthony Edwards) form their own fraternity for computer-whiz misfits. + + Robert Carradine + Anthony Edwards + Ted McGinley + + 1984 + Movies + Comedy + + + TVPG + + + 2 + + + + Revenge of the Nerds II: Nerds in Paradise + Skolnick (Robert Carradine), Poindexter (Timothy Busfield) and Booger (Curtis Armstrong) attend a big fraternity convention in Fort Lauderdale, Fla. + + Robert Carradine + Curtis Armstrong + Timothy Busfield + + 1987 + Movies + Comedy + + + TVG + + + 2 + + + + Rough Night + Jess is an engaged politician who reunites with three of her college friends for a wild bachelorette weekend in Miami. The night of hard partying soon lands them in hot water when a male stripper accidentally dies at their beach house. + + Scarlett Johansson + Jillian Bell + Zoë Kravitz + + 2017 + Movies + Comedy + + + TVPG + + + 2 + + + + Pineapple Express + A stoner (Seth Rogen) who witnessed a murder flees with his dealer (James Franco) when a drug lord and crooked cop trace a rare strain of marijuana back to them. + + Seth Rogen + James Franco + Gary Cole + + 2008 + Movies + Comedy + + + TVPG + + + 2 + + + + Pineapple Express + A stoner (Seth Rogen) who witnessed a murder flees with his dealer (James Franco) when a drug lord and crooked cop trace a rare strain of marijuana back to them. + + Seth Rogen + James Franco + Gary Cole + + 2008 + Movies + Comedy + + + TVPG + + + 2 + + + + The Secret of My Success + A would-be yuppie (Michael J. Fox) from Kansas sorts mail in Manhattan but pretends to be a corporate executive. + + Michael J. Fox + Helen Slater + Richard Jordan + + 1987 + Movies + Comedy + + + TVG + + + 2 + + + + Crooked Arrows + A coach (Brandon Routh) teaches the members of his Native American lacrosse team the meaning of tribal pride, as they compete against their privileged rivals in a prep-school league. + + Brandon Routh + Crystal Allen + Chelsea Ricketts + + 2012 + Movies + Drama + + + TVG + + + 2 + + + + The Groomsmen + Respective problems trouble family and friends (Jay Mohr, Donal Logue) as they gather to celebrate the impending wedding of the groom (Edward Burns). + + Edward Burns + Brittany Murphy + John Leguizamo + + 2006 + Movies + Comedy + + + 2 + + + + Pineapple Express + A stoner (Seth Rogen) who witnessed a murder flees with his dealer (James Franco) when a drug lord and crooked cop trace a rare strain of marijuana back to them. + + Seth Rogen + James Franco + Gary Cole + + 2008 + Movies + Comedy + + + TVPG + + + 2 + + + + Tempted + In order to test his wife's (Saffron Burrows) fidelity, a construction magnate (Burt Reynolds) hires a hunky carpenter (Peter Facinelli) to seduce her. + + Burt Reynolds + Saffron Burrows + Peter Facinelli + + 2001 + Movies + Thriller + + + 2 + + + + Spread + After his latest conquest turns sour, a sexual con artist (Ashton Kutcher) engages in a game of one-upmanship with a waitress (Margarita Levieva) who shares his ambitions. + + Ashton Kutcher + Anne Heche + Margarita Levieva + + 2009 + Movies + Comedy + Drama + + + TVPG + + + 2 + + + + The Groomsmen + Respective problems trouble family and friends (Jay Mohr, Donal Logue) as they gather to celebrate the impending wedding of the groom (Edward Burns). + + Edward Burns + Brittany Murphy + John Leguizamo + + 2006 + Movies + Comedy + + + 2 + + + + Rough Night + Jess is an engaged politician who reunites with three of her college friends for a wild bachelorette weekend in Miami. The night of hard partying soon lands them in hot water when a male stripper accidentally dies at their beach house. + + Scarlett Johansson + Jillian Bell + Zoë Kravitz + + 2017 + Movies + Comedy + + + TVPG + + + 2 + + + + Tempted + In order to test his wife's (Saffron Burrows) fidelity, a construction magnate (Burt Reynolds) hires a hunky carpenter (Peter Facinelli) to seduce her. + + Burt Reynolds + Saffron Burrows + Peter Facinelli + + 2001 + Movies + Thriller + + + 2 + + + + The Girl With the Dragon Tattoo + A disgraced journalist (Daniel Craig) and an investigator (Rooney Mara) for a security firm probe a 40-year-old murder. + + Daniel Craig + Rooney Mara + Christopher Plummer + + 2011 + Movies + Thriller + + + TVPG + + + 3 + + + + Spread + After his latest conquest turns sour, a sexual con artist (Ashton Kutcher) engages in a game of one-upmanship with a waitress (Margarita Levieva) who shares his ambitions. + + Ashton Kutcher + Anne Heche + Margarita Levieva + + 2009 + Movies + Comedy + Drama + + + TVPG + + + 2 + + + + The Rebound + A newly single woman (Catherine Zeta-Jones) becomes involved with the much-younger man (Justin Bartha) she hired to take care of her children. + + Catherine Zeta-Jones + Justin Bartha + Kelly Gould + + 2009 + Movies + Romance + + + TVG + + + 2 + + + + Death Sentence + A suburban businessman (Kevin Bacon) becomes a vigilante after thugs kill his son during a gas station robbery. + + Kevin Bacon + Garrett Hedlund + Kelly Preston + + 2007 + Movies + Thriller + + + TV14 + + + 2 + + + + Death Sentence + A suburban businessman (Kevin Bacon) becomes a vigilante after thugs kill his son during a gas station robbery. + + Kevin Bacon + Garrett Hedlund + Kelly Preston + + 2007 + Movies + Thriller + + + TV14 + + + 2 + + + + The 2nd + A Secret Service agent must save his son and the daughter of a Supreme Court justice from armed terrorists. + + Ryan Phillippe + Casper Van Dien + Jack Griffo + + 2020 + Movies + Action + + + TVPG + + + + Return to Lonesome Dove + The Vision + After fulfilling Gus' last request to be buried in Texas, Woodrow Call (Jon Voight) heads back to Montana with a herd of mustangs for Hat Creek Cattle Co. + + Jon Voight + Barbara Hershey + Ricky Schroder + + Miniseries + + + TVPG + + + + Return to Lonesome Dove + The Forge + Having escaped from the Kiowas, Call (Jon Voight) comes to a Cheyenne camp, where he takes a wife; a prairie fire destroys Clara's ranch; with a range war looming, Call refuses Dunnegan's request to join the Montana Cattleman's Alliance. + + Jon Voight + Barbara Hershey + Ricky Schroder + + Miniseries + + + TVPG + + + + A Midnight Clear + A young GI (Ethan Hawke) and his squad have a strange encounter with Germans in the Ardennes forest, December 1944. + + Ethan Hawke + Peter Berg + Kevin Dillon + + 1992 + Movies + War + + + 3 + + + + Made of Honor + A commitment-shy guy (Patrick Dempsey) realizes he is in love with his best friend (Michelle Monaghan) and accepts a spot in her bridal party in the hope of stopping her wedding. + + Patrick Dempsey + Michelle Monaghan + Kevin McKidd + + 2008 + Movies + Comedy + + + TVG + + + 2 + + + + Death Sentence + A suburban businessman (Kevin Bacon) becomes a vigilante after thugs kill his son during a gas station robbery. + + Kevin Bacon + Garrett Hedlund + Kelly Preston + + 2007 + Movies + Thriller + + + TV14 + + + 2 + + + + Night at the Museum: Battle of the Smithsonian + Larry Daley (Ben Stiller) joins forces with Teddy Roosevelt (Robin Williams), Amelia Earhart (Amy Adams) and others to prevent four of history's worst villains from conquering the world. + + Ben Stiller + Robin Williams + Amy Adams + + 2009 + Movies + Children + + + TVG + + + 2 + + + + A Midnight Clear + A young GI (Ethan Hawke) and his squad have a strange encounter with Germans in the Ardennes forest, December 1944. + + Ethan Hawke + Peter Berg + Kevin Dillon + + 1992 + Movies + War + + + 3 + + + + The 2nd + A Secret Service agent must save his son and the daughter of a Supreme Court justice from armed terrorists. + + Ryan Phillippe + Casper Van Dien + Jack Griffo + + 2020 + Movies + Action + + + TVPG + + + + Made of Honor + A commitment-shy guy (Patrick Dempsey) realizes he is in love with his best friend (Michelle Monaghan) and accepts a spot in her bridal party in the hope of stopping her wedding. + + Patrick Dempsey + Michelle Monaghan + Kevin McKidd + + 2008 + Movies + Comedy + + + TVG + + + 2 + + + + Night at the Museum: Battle of the Smithsonian + Larry Daley (Ben Stiller) joins forces with Teddy Roosevelt (Robin Williams), Amelia Earhart (Amy Adams) and others to prevent four of history's worst villains from conquering the world. + + Ben Stiller + Robin Williams + Amy Adams + + 2009 + Movies + Children + + + TVG + + + 2 + + + + Return to Lonesome Dove + The Vision + After fulfilling Gus' last request to be buried in Texas, Woodrow Call (Jon Voight) heads back to Montana with a herd of mustangs for Hat Creek Cattle Co. + + Jon Voight + Barbara Hershey + Ricky Schroder + + Miniseries + + + TVPG + + + + Return to Lonesome Dove + The Forge + Having escaped from the Kiowas, Call (Jon Voight) comes to a Cheyenne camp, where he takes a wife; a prairie fire destroys Clara's ranch; with a range war looming, Call refuses Dunnegan's request to join the Montana Cattleman's Alliance. + + Jon Voight + Barbara Hershey + Ricky Schroder + + Miniseries + + + TVPG + + + + No Good Deed + An unsuspecting Atlanta woman (Taraji P. Henson) lets in a charming stranger (Idris Elba) to use her phone and soon believes the adage. + + Idris Elba + Taraji P. Henson + Leslie Bibb + + 2014 + Movies + Thriller + + + TVPG + + + 1 + + + + No Good Deed + An unsuspecting Atlanta woman (Taraji P. Henson) lets in a charming stranger (Idris Elba) to use her phone and soon believes the adage. + + Idris Elba + Taraji P. Henson + Leslie Bibb + + 2014 + Movies + Thriller + + + TVPG + + + 1 + + + + Underworld: Blood Wars + With help from her only two allies, death dealer Selene (Kate Beckinsale) embarks on a quest to end the eternal war between vampires and Lycans, even if it means making the ultimate sacrifice. + + Kate Beckinsale + Theo James + Tobias Menzies + + 2016 + Movies + Fantasy + + + TVPG + + + 2 + + + + Rolling Kansas + Three brothers, a gas-station attendant (Charlie Finn) and a narcoleptic nurse (Ryan McDow) embark on a road trip to find a marijuana forest. + + Charlie Finn + Sam Huntington + Ryan McDow + + 2003 + Movies + Comedy + + + 3 + + + + Loving Jezebel + Theodorus Melville, who's spent his whole life with other men's women, now finds one of those men wants to kill him. + + Hill Harper + Nicole Ari Parker + Laurel Holloman + + 1999 + Movies + Romance + + + 2 + + + + No Good Deed + An unsuspecting Atlanta woman (Taraji P. Henson) lets in a charming stranger (Idris Elba) to use her phone and soon believes the adage. + + Idris Elba + Taraji P. Henson + Leslie Bibb + + 2014 + Movies + Thriller + + + TVPG + + + 1 + + + + Independence Day + A fighter pilot (Will Smith), a computer whiz (Jeff Goldblum) and others fight back after 15-mile-wide alien ships zap Earth's major cities. + + Will Smith + Bill Pullman + Jeff Goldblum + + 1996 + Movies + Sci-Fi + + + TVPG + + + 3 + + + + Destination Wedding + Wedding guests Frank and Lindsay discover that they have a lot in common -- they don't like the bride, the groom, the ceremony, themselves or each other. + + Keanu Reeves + Winona Ryder + DJ Dallenbach + + 2018 + Movies + Romance + + + TVPG + + + 2 + + + + Rolling Kansas + Three brothers, a gas-station attendant (Charlie Finn) and a narcoleptic nurse (Ryan McDow) embark on a road trip to find a marijuana forest. + + Charlie Finn + Sam Huntington + Ryan McDow + + 2003 + Movies + Comedy + + + 3 + + + + The Pledge + A detective (Jack Nicholson) about to retire promises a woman that he will catch her daughter's murderer. + + Jack Nicholson + Robin Wright + Aaron Eckhart + + 2001 + Movies + Mystery + + + TVPG + + + 3 + + + + Ali + Muhammad Ali (Will Smith) battles Sonny Liston, Joe Frazier and George Foreman and raises controversy outside the ring. + + Will Smith + Jamie Foxx + Jon Voight + + 2001 + Movies + History + + + TVG + + + 3 + + + + Destination Wedding + Wedding guests Frank and Lindsay discover that they have a lot in common -- they don't like the bride, the groom, the ceremony, themselves or each other. + + Keanu Reeves + Winona Ryder + DJ Dallenbach + + 2018 + Movies + Romance + + + TVPG + + + 2 + + + + Happythankyoumoreplease + Young New Yorkers (Malin Akerman, Tony Hale, Zoe Kazan) try to navigate a rocky course of careers and personal relationships. + + Malin Akerman + Tony Hale + Zoe Kazan + + 2010 + Movies + Comedy + Drama + + + TVG + + + 2 + + + + Independence Day + A fighter pilot (Will Smith), a computer whiz (Jeff Goldblum) and others fight back after 15-mile-wide alien ships zap Earth's major cities. + + Will Smith + Bill Pullman + Jeff Goldblum + + 1996 + Movies + Sci-Fi + + + TVPG + + + 3 + + + + Ali + Muhammad Ali (Will Smith) battles Sonny Liston, Joe Frazier and George Foreman and raises controversy outside the ring. + + Will Smith + Jamie Foxx + Jon Voight + + 2001 + Movies + History + + + TVG + + + 3 + + + + Ali + Muhammad Ali (Will Smith) battles Sonny Liston, Joe Frazier and George Foreman and raises controversy outside the ring. + + Will Smith + Jamie Foxx + Jon Voight + + 2001 + Movies + History + + + TVG + + + 3 + + + + Never Been Kissed + A former high-school nerd, now a reporter (Drew Barrymore), gets a second chance when she goes under cover for a story on cool teens. + + Drew Barrymore + David Arquette + Michael Vartan + + 1999 + Movies + Romance + + + TVG + + + 2 + + + + Local Programming + Sign off. + Specials + + + TVG + + + + The Star Packer + Marshal John Travers investigates the murder of a town's sheriff, makes it his mission to restore order to the town and bring down a bandit called the Shadow. + + John Wayne + Verna Hillie + George + + 1934 + Movies + Western + + + TVG + + + 1 + + + + Heart and Souls + Four guardian angels watch over a banker (Robert Downey Jr.) from boyhood after meeting him by accident in 1959 San Francisco. + + Robert Downey Jr. + Charles Grodin + Alfre Woodard + + 1993 + Movies + Fantasy + + + TVG + + + 2 + + + + Spread + After his latest conquest turns sour, a sexual con artist (Ashton Kutcher) engages in a game of one-upmanship with a waitress (Margarita Levieva) who shares his ambitions. + + Ashton Kutcher + Anne Heche + Margarita Levieva + + 2009 + Movies + Comedy + Drama + + + TVPG + + + 2 + + + + Happythankyoumoreplease + Young New Yorkers (Malin Akerman, Tony Hale, Zoe Kazan) try to navigate a rocky course of careers and personal relationships. + + Malin Akerman + Tony Hale + Zoe Kazan + + 2010 + Movies + Comedy + Drama + + + TVG + + + 2 + + + + Hitman + An assassin's (Timothy Olyphant) growing attachment to a traumatized young woman poses a threat to his life, as great as that of the Interpol and Russian agents on his trail. + + Timothy Olyphant + Dougray Scott + Olga Kurylenko + + 2007 + Movies + Action + + + TVPG + + + 2 + + + + Revenge of the Nerds + College freshmen Skolnick (Robert Carradine) and Gilbert (Anthony Edwards) form their own fraternity for computer-whiz misfits. + + Robert Carradine + Anthony Edwards + Ted McGinley + + 1984 + Movies + Comedy + + + TVPG + + + 2 + + + + The Green Hornet + The heir (Seth Rogen) to a newspaper fortune joins forces with a resourceful company employee (Jay Chou) to bring a powerful Los Angeles crime lord to justice. + + Seth Rogen + Jay Chou + Cameron Diaz + + 2011 + Movies + Action + + + TVG + + + 2 + + + + Heart and Souls + Four guardian angels watch over a banker (Robert Downey Jr.) from boyhood after meeting him by accident in 1959 San Francisco. + + Robert Downey Jr. + Charles Grodin + Alfre Woodard + + 1993 + Movies + Fantasy + + + TVG + + + 2 + + + + Never Been Kissed + A former high-school nerd, now a reporter (Drew Barrymore), gets a second chance when she goes under cover for a story on cool teens. + + Drew Barrymore + David Arquette + Michael Vartan + + 1999 + Movies + Romance + + + TVG + + + 2 + + + + A Dog and Pony Show + Dede, a famous performing circus dog, gets left behind when her show leaves town. When she is adopted by a lonely boy on a farm, the vain dog has to learn to get along with the other animals. + + Mae Whitman + Mira Sorvino + Ralph Macchio + + 2018 + Movies + Children + + + + Whale Rider + A Maori girl (Keisha Castle-Hughes) defies her grandfather (Rawiri Paratene) and 1,000 years of tradition to prove she can lead their tribe. + + Keisha Castle-Hughes + Rawiri Paratene + Vicky Haughton + + 2002 + Movies + Children + + + TVG + + + 3 + + + + The Derby Stallion + Patrick becomes friends with Houston Jones and the pretty new girl, Jill, but faces a tough challenge in Randy, the town bully who has won the race for five years straight. + + Sarah Blackman + Preston Brant + K.C. Clyde + + 2005 + Movies + Drama + + + + The Hurricane Heist + The rural town of New Hope, Ala., has a pair of super-sized problems heading its way: There's a hurricane bearing down on the Gulf coastline, and there's a team of 30 well-armed mercenaries intent on looting the local treasury facility. + + Toby Kebbell + Maggie Grace + Ryan Kwanten + + 2018 + Movies + Action + + + TVG + + + 1 + + + + The Hurricane Heist + The rural town of New Hope, Ala., has a pair of super-sized problems heading its way: There's a hurricane bearing down on the Gulf coastline, and there's a team of 30 well-armed mercenaries intent on looting the local treasury facility. + + Toby Kebbell + Maggie Grace + Ryan Kwanten + + 2018 + Movies + Action + + + TVG + + + 1 + + + + Cheaper by the Dozen + While his wife (Bonnie Hunt) is away on business, a college football coach (Steve Martin) must handle the chaos surrounding his 12 children. + + Steve Martin + Bonnie Hunt + Piper Perabo + + 2003 + Movies + Comedy + + + TVG + + + 2 + + + + Harry and the Hendersons + The Hendersons (John Lithgow, Melinda Dillon, Margaret Langrick) run over Bigfoot with their station wagon and bring him home to Seattle. + + John Lithgow + Melinda Dillon + Margaret Langrick + + 1987 + Movies + Children + + + TVG + + + 3 + + + + A Horse Tale + Michael, an uptight accountant from a big city, reluctantly takes a job to help a family save its stable before the bank takes it. As he searches for ways to save the farm, he discovers something unexpected. + + Charisma Carpenter + Patrick Muldoon + Dominique Swain + + 2015 + Movies + Children + + + + Thumbelina + Born of a flower and growing to only a couple of inches tall, poor Thumbelina is worried she'll never meet someone her own size, until she happens to catch the eye of Prince Cornelius of the Fairies. + + Jodi Benson + Kenneth Mars + Charo + + 1994 + Movies + Animated + + + TVG + + + 2 + + + + Cheaper by the Dozen + While his wife (Bonnie Hunt) is away on business, a college football coach (Steve Martin) must handle the chaos surrounding his 12 children. + + Steve Martin + Bonnie Hunt + Piper Perabo + + 2003 + Movies + Comedy + + + TVG + + + 2 + + + + Heart and Souls + Four guardian angels watch over a banker (Robert Downey Jr.) from boyhood after meeting him by accident in 1959 San Francisco. + + Robert Downey Jr. + Charles Grodin + Alfre Woodard + + 1993 + Movies + Fantasy + + + TVG + + + 2 + + + + The Hurricane Heist + The rural town of New Hope, Ala., has a pair of super-sized problems heading its way: There's a hurricane bearing down on the Gulf coastline, and there's a team of 30 well-armed mercenaries intent on looting the local treasury facility. + + Toby Kebbell + Maggie Grace + Ryan Kwanten + + 2018 + Movies + Action + + + TVG + + + 1 + + + + Josie and the Pussycats + In a plot to take over the world, a music mogul tries to use the band (Rachael Leigh Cook, Tara Reid, Rosario Dawson) to brainwash America's youth. + + Rachael Leigh Cook + Tara Reid + Rosario Dawson + + 2001 + Movies + Comedy + + + TVG + + + 2 + + + + Mighty Mighty Monsters: Halloween Havoc + Vlad , Frankie and Gunnar, expelled from Monster Academy for a prank gone wrong, attend a human immersion program at a normal middle school in hopes of returning to their monster school. + + Reece Thompson + Vincent Tong + Travis Turner + + Specials + Animated + + + + Harry and the Hendersons + The Hendersons (John Lithgow, Melinda Dillon, Margaret Langrick) run over Bigfoot with their station wagon and bring him home to Seattle. + + John Lithgow + Melinda Dillon + Margaret Langrick + + 1987 + Movies + Children + + + TVG + + + 3 + + + + Cheaper by the Dozen + While his wife (Bonnie Hunt) is away on business, a college football coach (Steve Martin) must handle the chaos surrounding his 12 children. + + Steve Martin + Bonnie Hunt + Piper Perabo + + 2003 + Movies + Comedy + + + TVG + + + 2 + + + + Josie and the Pussycats + In a plot to take over the world, a music mogul tries to use the band (Rachael Leigh Cook, Tara Reid, Rosario Dawson) to brainwash America's youth. + + Rachael Leigh Cook + Tara Reid + Rosario Dawson + + 2001 + Movies + Comedy + + + TVG + + + 2 + + + + The Hurricane Heist + The rural town of New Hope, Ala., has a pair of super-sized problems heading its way: There's a hurricane bearing down on the Gulf coastline, and there's a team of 30 well-armed mercenaries intent on looting the local treasury facility. + + Toby Kebbell + Maggie Grace + Ryan Kwanten + + 2018 + Movies + Action + + + TVG + + + 1 + + + + Heart and Souls + Four guardian angels watch over a banker (Robert Downey Jr.) from boyhood after meeting him by accident in 1959 San Francisco. + + Robert Downey Jr. + Charles Grodin + Alfre Woodard + + 1993 + Movies + Fantasy + + + TVG + + + 2 + + + + Harry and the Hendersons + The Hendersons (John Lithgow, Melinda Dillon, Margaret Langrick) run over Bigfoot with their station wagon and bring him home to Seattle. + + John Lithgow + Melinda Dillon + Margaret Langrick + + 1987 + Movies + Children + + + TVG + + + 3 + + + + A Christmas Number One + Two worlds collide when a music manager of a boy band and the guitarist in a death metal group connect over a Christmas hit they both desperately need. + + Freida Pinto + Iwan Rheon + Helena Zengel + + 2021 + Movies + Christmas + Comedy + + + + Henchmen + With dreams of being a supervillain, a wide-eyed comic book fanboy joins the Union of Evil and becomes a hardened henchman's apprentice. + + Thomas Middleditch + James Marsden + Jane Krakowski + + 2018 + Movies + Animated + + + TVG + + + + Ghosthunters on Icy Trails + An unlikely trio of allies against the supernatural: a little boy who scares at everything, a professional ghost hunter, and the slimy spirit Hugo. Together they take on the ghouls that threaten to send their town into an ice age. + + Milo Parker + Anke Engelke + Bastian Pastewka + + 2015 + Movies + Children + + + + Dreambuilders + A young girl misuses her newfound ability to create and control other people's dreams to teach her bothersome stepsister a lesson. + + Emilie Kroyer Koppel + Caroline Vedel + Rasmus Botoft + + 2020 + Movies + Animated + + + + Josie and the Pussycats + In a plot to take over the world, a music mogul tries to use the band (Rachael Leigh Cook, Tara Reid, Rosario Dawson) to brainwash America's youth. + + Rachael Leigh Cook + Tara Reid + Rosario Dawson + + 2001 + Movies + Comedy + + + TVG + + + 2 + + + + Cinderella + A cruel stepmother (Cate Blanchett) reduces her dead husband's only child (Lily James) to the role of scullery maid, but a kindly beggar woman and some helpful mice bring about a change in the young woman's fortunes. + + Cate Blanchett + Lily James + Richard Madden + + 2015 + Movies + Children + + + TVG + + + 3 + + + + FernGully: The Last Rainforest + A lumberjack helps a tribe of rain-forest elves protect their kingdom from an evil spirit and greedy clear-cutters. + + Tim Curry + Samantha Mathis + Christian Slater + + 1992 + Movies + Animated + + + TVG + + + 3 + + + + Camp Arrowhead + A teen joins the archery team at summer camp while coming to terms with the loss of her mother. + + Tori Keeth + Chloe Lukasiak + Mariette Hartley + + 2020 + Movies + Drama + + + TVPG + + + + Henchmen + With dreams of being a supervillain, a wide-eyed comic book fanboy joins the Union of Evil and becomes a hardened henchman's apprentice. + + Thomas Middleditch + James Marsden + Jane Krakowski + + 2018 + Movies + Animated + + + TVG + + + + Cinderella + A cruel stepmother (Cate Blanchett) reduces her dead husband's only child (Lily James) to the role of scullery maid, but a kindly beggar woman and some helpful mice bring about a change in the young woman's fortunes. + + Cate Blanchett + Lily James + Richard Madden + + 2015 + Movies + Children + + + TVG + + + 3 + + + + Cowgirls 'N Angels: Dakota's Summer + After receiving some unexpected news about herself, a teenager experiences a challenging and exciting time on the rodeo circuit. + + Haley Ramm + Keith Carradine + Jade Pettyjohn + + 2014 + Movies + Children + + + + Camp Arrowhead + A teen joins the archery team at summer camp while coming to terms with the loss of her mother. + + Tori Keeth + Chloe Lukasiak + Mariette Hartley + + 2020 + Movies + Drama + + + TVPG + + + + Then Came You + A lonely widow develops an unlikely friendship with an engaged innkeeper in Scotland. + + Kathie Lee Gifford + Craig Ferguson + Ford Kiernan + + 2020 + Movies + Romance + + + + A Christmas Number One + Two worlds collide when a music manager of a boy band and the guitarist in a death metal group connect over a Christmas hit they both desperately need. + + Freida Pinto + Iwan Rheon + Helena Zengel + + 2021 + Movies + Christmas + Comedy + + + + Cowgirls 'N Angels: Dakota's Summer + After receiving some unexpected news about herself, a teenager experiences a challenging and exciting time on the rodeo circuit. + + Haley Ramm + Keith Carradine + Jade Pettyjohn + + 2014 + Movies + Children + + + + Then Came You + A lonely widow develops an unlikely friendship with an engaged innkeeper in Scotland. + + Kathie Lee Gifford + Craig Ferguson + Ford Kiernan + + 2020 + Movies + Romance + + + + All Saints + Pastor Michael Spurlock receives an assignment to close a country church and sell the prime piece of land where it sits. He soon has a change of heart when the church starts to welcome refugees from Burma who know how to farm. + + John Corbett + Cara Buono + Myles Moore + + 2017 + Movies + Drama + + + TVPG + + + 3 + + + + Cinderella + A cruel stepmother (Cate Blanchett) reduces her dead husband's only child (Lily James) to the role of scullery maid, but a kindly beggar woman and some helpful mice bring about a change in the young woman's fortunes. + + Cate Blanchett + Lily James + Richard Madden + + 2015 + Movies + Children + + + TVG + + + 3 + + + + Must Be Santa + An angel (Deanna Milligan) must convince a new recruit (Arnold Pinnock) that he should be Santa, to the dismay of her boss, the North Pole's CEO (Dabney Coleman). + + Arnold Pinnock + Deanna Milligan + Dabney Coleman + + 1999 + Movies + Christmas + Fantasy + + + + Camp Arrowhead + A teen joins the archery team at summer camp while coming to terms with the loss of her mother. + + Tori Keeth + Chloe Lukasiak + Mariette Hartley + + 2020 + Movies + Drama + + + TVPG + + + + Titan A.E. + After an alien race destroys Earth, teens follow a map to a mysterious. + + Matt Damon + Drew Barrymore + Bill Pullman + + 2000 + Movies + Animated + + + TVG + + + 3 + + + + Crooked Arrows + A coach (Brandon Routh) teaches the members of his Native American lacrosse team the meaning of tribal pride, as they compete against their privileged rivals in a prep-school league. + + Brandon Routh + Crystal Allen + Chelsea Ricketts + + 2012 + Movies + Drama + + + TVG + + + 2 + + + + Cop and a Half + Teaming with a crusty detective (Burt Reynolds) is a dream come true for an 8-year-old murder witness (Norman D. Golden II). + + Burt Reynolds + Norman Golden II + Ruby Dee + + 1993 + Movies + Comedy + + + TVG + + + 2 + + + + Saving Santa + A stable elf is the only one who can stop an invasion of the North Pole by using Santa's sleigh and a time globe to go back in time to save Santa. + + Martin Freeman + Tim Curry + Noel Clarke + + 2013 + Movies + Christmas + Animated + + + TVG + + + + A Christmas in Vermont + A businesswoman is sent to shut down one of her company's holdings, but instead of closing down the iconic firm, she unexpectedly falls in love and learns valuable lessons beyond the bottom line. + + Abigail Hawk + Chevy Chase + David O'Donnell + + 2016 + Movies + Christmas + Comedy + + + TVPG + + + + Titan A.E. + After an alien race destroys Earth, teens follow a map to a mysterious. + + Matt Damon + Drew Barrymore + Bill Pullman + + 2000 + Movies + Animated + + + TVG + + + 3 + + + + Crooked Arrows + A coach (Brandon Routh) teaches the members of his Native American lacrosse team the meaning of tribal pride, as they compete against their privileged rivals in a prep-school league. + + Brandon Routh + Crystal Allen + Chelsea Ricketts + + 2012 + Movies + Drama + + + TVG + + + 2 + + + + All Saints + Pastor Michael Spurlock receives an assignment to close a country church and sell the prime piece of land where it sits. He soon has a change of heart when the church starts to welcome refugees from Burma who know how to farm. + + John Corbett + Cara Buono + Myles Moore + + 2017 + Movies + Drama + + + TVPG + + + 3 + + + + Big Fat Liar + A teenager (Frankie Muniz) travels to Los Angeles after a sleazy Hollywood producer (Paul Giamatti) turns his school story into a movie. + + Frankie Muniz + Paul Giamatti + Amanda Bynes + + 2002 + Movies + Children + + + TVG + + + 2 + + + + Big Fat Liar + A teenager (Frankie Muniz) travels to Los Angeles after a sleazy Hollywood producer (Paul Giamatti) turns his school story into a movie. + + Frankie Muniz + Paul Giamatti + Amanda Bynes + + 2002 + Movies + Children + + + TVG + + + 2 + + + + War Room + Encouraged by her newest client (Karen Abercrombie), a woman (Priscilla Shirer) turns to prayer to save her failing marriage. + + Priscilla C. Shirer + T.C. Stallings + Karen Abercrombie + + 2015 + Movies + Drama + + + TVG + + + 2 + + + + Pit Pony + The Light to the Future + Willie (Alex Wrathell) and his pony train for the horse pull; Nellie (Jennie Raymond) tries to decide whether to marry Ned Hall (Shaun Smyth). + + Alex Wrathell + Jennie Raymond + Shaun Smyth + + Drama + + + TVG + + + + Pit Pony + Best Laid Plans + Wedding preparations test the MacLean resolve; Willie is unhappy because Ned now has no time for him. + + Alex Wrathell + Jennie Raymond + Shaun Smyth + + Drama + + + TVG + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Maiden + In 1989 Tracy Edwards leads the first all-female crew in the Whitbread Round the World Race, a grueling yachting competition that covers 33,000 miles and lasts nine months. + 2018 + Movies + Documentary + + + TVG + + + + Big Fat Liar + A teenager (Frankie Muniz) travels to Los Angeles after a sleazy Hollywood producer (Paul Giamatti) turns his school story into a movie. + + Frankie Muniz + Paul Giamatti + Amanda Bynes + + 2002 + Movies + Children + + + TVG + + + 2 + + + + Jane and Emma + Jane is a black woman who walks hundreds of miles to meet Joseph Smith, a revered cleric who inspires people in the Deep South. When Smith lands in trouble with local hooligans, Jane offers comfort and companionship to his wife in her darkest hour. + + Danielle Deadwyler + Emily Goss + Brad Schmidt + + 2018 + Movies + Drama + + + + War Room + Encouraged by her newest client (Karen Abercrombie), a woman (Priscilla Shirer) turns to prayer to save her failing marriage. + + Priscilla C. Shirer + T.C. Stallings + Karen Abercrombie + + 2015 + Movies + Drama + + + TVG + + + 2 + + + + Pit Pony + The Light to the Future + Willie (Alex Wrathell) and his pony train for the horse pull; Nellie (Jennie Raymond) tries to decide whether to marry Ned Hall (Shaun Smyth). + + Alex Wrathell + Jennie Raymond + Shaun Smyth + + Drama + + + TVG + + + + Pit Pony + Best Laid Plans + Wedding preparations test the MacLean resolve; Willie is unhappy because Ned now has no time for him. + + Alex Wrathell + Jennie Raymond + Shaun Smyth + + Drama + + + TVG + + + + Big Fat Liar + A teenager (Frankie Muniz) travels to Los Angeles after a sleazy Hollywood producer (Paul Giamatti) turns his school story into a movie. + + Frankie Muniz + Paul Giamatti + Amanda Bynes + + 2002 + Movies + Children + + + TVG + + + 2 + + + + Jane and Emma + Jane is a black woman who walks hundreds of miles to meet Joseph Smith, a revered cleric who inspires people in the Deep South. When Smith lands in trouble with local hooligans, Jane offers comfort and companionship to his wife in her darkest hour. + + Danielle Deadwyler + Emily Goss + Brad Schmidt + + 2018 + Movies + Drama + + + + Battle for Terra + An alien creature (Evan Rachel Wood) joins forces with a human pilot (Luke Wilson) to find her kidnapped father and save her world from colonization by invading Earthlings. + + Evan Rachel Wood + Brian Cox + Luke Wilson + + 2007 + Movies + Animated + + + TVG + + + 2 + + + + Monsters at Large + Alex decides to end his kid brother's nightmares by forming a task force to take care of imaginary monsters. When their business becomes a hit, nothing can go wrong... until one of the monsters turns out to be real, and really big! + + Mischa Barton + Stephen Tobolowsky + Austin St. John + + 2018 + Movies + Comedy + + + TVG + + + + Maiden + In 1989 Tracy Edwards leads the first all-female crew in the Whitbread Round the World Race, a grueling yachting competition that covers 33,000 miles and lasts nine months. + 2018 + Movies + Documentary + + + TVG + + + + Self/less + A rich cancer patient (Ben Kingsley) undergoes a radical procedure that transfers his consciousness into the body of a healthy young man (Ryan Reynolds), but when he delves into his new body's origin, he learns that some will kill to keep it secret. + + Ryan Reynolds + Natalie Martinez + Matthew Goode + + 2015 + Movies + Sci-Fi + + + TVG + + + 2 + + + + The Son of No One + A rookie police officer (Channing Tatum) who once killed a pair of junkies in his youth remains haunted by the incident. + + Channing Tatum + Al Pacino + Juliette Binoche + + 2011 + Movies + Crime Story + + + TVPG + + + 1 + + + + City of Lies + Disgraced LAPD detective Russell Poole teams with journalist Jack Jackson to uncover the truth behind the murders of Tupac Shakur and The Notorious B.I.G. + + Johnny Depp + Forest Whitaker + Rockmond Dunbar + + 2018 + Movies + Mystery + + + 2 + + + + A Day in the Life + A man (Sticky Fingaz) gets caught in a war between crime families while trying to leave his gangster lifestyle. + + Kirk + + 2009 + Movies + Musical + + + + A Day in the Life + A man (Sticky Fingaz) gets caught in a war between crime families while trying to leave his gangster lifestyle. + + Kirk + + 2009 + Movies + Musical + + + + Out of Season + A drifter (Jordan Frieda) gets mixed up with shady characters embroiled in devious plots in a seaside town. + + Dennis Hopper + Gina Gershon + Jordan Frieda + + 2004 + Movies + Thriller + + + 1 + + + + Psycho + A woman (Anne Heche) steals cash at work, hits the road and stays at a desolate motel run by mad, mother-fixated Norman Bates (Vince Vaughn). + + Vince Vaughn + Anne Heche + Julianne Moore + + 1998 + Movies + Thriller + + + TVPG + + + 2 + + + + The Son of No One + A rookie police officer (Channing Tatum) who once killed a pair of junkies in his youth remains haunted by the incident. + + Channing Tatum + Al Pacino + Juliette Binoche + + 2011 + Movies + Crime Story + + + TVPG + + + 1 + + + + Allure + An unlikely relationship forms between Laura, an emotionally damaged house cleaner, and Eva, a talented 16- year-old pianist who is frustrated with her disciplined life. + + Evan Rachel Wood + Julia Sarah Stone + Denis O'Hare + + 2017 + Movies + Drama + + + TV14 + + + + The Show + A man goes on a mission to locate a stolen artifact for a client, which leads him to a haunted town full of vampires, sleeping beauties and Voodoo gangsters. + + Ellie Bamber + Tom Burke + Darrell D'Silva + + 2020 + Movies + Fantasy + + + + The Black Dahlia + In 1940s Los Angeles two cops (Josh Hartnett, Aaron Eckhart) enter a world of greed, obsession and corruption as they probe the grisly murder of a Hollywood starlet. + + Josh Hartnett + Scarlett Johansson + Aaron Eckhart + + 2006 + Movies + Mystery + + + TVPG + + + 2 + + + + Out of Season + A drifter (Jordan Frieda) gets mixed up with shady characters embroiled in devious plots in a seaside town. + + Dennis Hopper + Gina Gershon + Jordan Frieda + + 2004 + Movies + Thriller + + + 1 + + + + Allure + An unlikely relationship forms between Laura, an emotionally damaged house cleaner, and Eva, a talented 16- year-old pianist who is frustrated with her disciplined life. + + Evan Rachel Wood + Julia Sarah Stone + Denis O'Hare + + 2017 + Movies + Drama + + + TV14 + + + + City of Lies + Disgraced LAPD detective Russell Poole teams with journalist Jack Jackson to uncover the truth behind the murders of Tupac Shakur and The Notorious B.I.G. + + Johnny Depp + Forest Whitaker + Rockmond Dunbar + + 2018 + Movies + Mystery + + + 2 + + + + On Sacred Ground + A journalist and an oil company executive find themselves on opposite sides during the construction of the contentious Dakota Access Pipeline running through the Standing Rock Indian Reservation in North Dakota. + + David Arquette + William Mapother + Amy Smart + + 2023 + Movies + Drama + + + + Psycho + A woman (Anne Heche) steals cash at work, hits the road and stays at a desolate motel run by mad, mother-fixated Norman Bates (Vince Vaughn). + + Vince Vaughn + Anne Heche + Julianne Moore + + 1998 + Movies + Thriller + + + TVPG + + + 2 + + + + The Black Dahlia + In 1940s Los Angeles two cops (Josh Hartnett, Aaron Eckhart) enter a world of greed, obsession and corruption as they probe the grisly murder of a Hollywood starlet. + + Josh Hartnett + Scarlett Johansson + Aaron Eckhart + + 2006 + Movies + Mystery + + + TVPG + + + 2 + + + + S.M.A.R.T. Chase + A private security agent gets ambushed while trying to transport a valuable Chinese antique out of Shanghai. With help from his team, he must now battle his way through a gang of thugs to reclaim the prized possession -- and his reputation. + + Orlando Bloom + Simon Yam + Lynn Hung + + 2017 + Movies + Action + + + TVG + + + + S.M.A.R.T. Chase + A private security agent gets ambushed while trying to transport a valuable Chinese antique out of Shanghai. With help from his team, he must now battle his way through a gang of thugs to reclaim the prized possession -- and his reputation. + + Orlando Bloom + Simon Yam + Lynn Hung + + 2017 + Movies + Action + + + TVG + + + + The Last Deal + When new laws make cannabis legal, there are limited dispensary licenses available and black market marijuana dealer Vince may go out of business. He's desperate to make one final score, but borrows money from the wrong people. + + Anthony Molinari + Sala Baker + Gigi Gustin + + 2023 + Movies + Action + + + + The Show + A man goes on a mission to locate a stolen artifact for a client, which leads him to a haunted town full of vampires, sleeping beauties and Voodoo gangsters. + + Ellie Bamber + Tom Burke + Darrell D'Silva + + 2020 + Movies + Fantasy + + + + The Black Dahlia + In 1940s Los Angeles two cops (Josh Hartnett, Aaron Eckhart) enter a world of greed, obsession and corruption as they probe the grisly murder of a Hollywood starlet. + + Josh Hartnett + Scarlett Johansson + Aaron Eckhart + + 2006 + Movies + Mystery + + + TVPG + + + 2 + + + + Wild Indian + Makwa, a young Anishinaabe boy, likes to escape his troubled life by playing with his friend Ted-O. One day, Makwa shockingly murders a schoolmate, and the two boys cover it up. Now as adults, the two men must come to terms with what happened. + + Michael Greyeyes + Evan Assante + Kody Burns + + 2021 + Movies + Thriller + + + + On Sacred Ground + A journalist and an oil company executive find themselves on opposite sides during the construction of the contentious Dakota Access Pipeline running through the Standing Rock Indian Reservation in North Dakota. + + David Arquette + William Mapother + Amy Smart + + 2023 + Movies + Drama + + + + S.M.A.R.T. Chase + A private security agent gets ambushed while trying to transport a valuable Chinese antique out of Shanghai. With help from his team, he must now battle his way through a gang of thugs to reclaim the prized possession -- and his reputation. + + Orlando Bloom + Simon Yam + Lynn Hung + + 2017 + Movies + Action + + + TVG + + + + The Fan + A knife salesman (Robert De Niro) kills to help his favorite San Francisco Giant (Wesley Snipes), then kidnaps the athlete's son when he seems ungrateful. + + Robert De Niro + Wesley Snipes + Ellen Barkin + + 1996 + Movies + Thriller + + + TVPG + + + 1 + + + + Wild Indian + Makwa, a young Anishinaabe boy, likes to escape his troubled life by playing with his friend Ted-O. One day, Makwa shockingly murders a schoolmate, and the two boys cover it up. Now as adults, the two men must come to terms with what happened. + + Michael Greyeyes + Evan Assante + Kody Burns + + 2021 + Movies + Thriller + + + + Volcano + A Los Angeles emergency official (Tommy Lee Jones) takes charge when earthquakes and erupting lava ravage the city. + + Tommy Lee Jones + Anne Heche + Gaby Hoffmann + + 1997 + Movies + Action + + + TVPG + + + 2 + + + + The Last Deal + When new laws make cannabis legal, there are limited dispensary licenses available and black market marijuana dealer Vince may go out of business. He's desperate to make one final score, but borrows money from the wrong people. + + Anthony Molinari + Sala Baker + Gigi Gustin + + 2023 + Movies + Action + + + + Cordelia + Cordelia meets her mysterious London neighbor, Frank, for the first time and quickly becomes suspicious of his motives. She begins to unravel and sink back into past traumas with Frank around, making her paranoid and dangerous. + + Antonia Campbell-Hughes + Johnny Flynn + Michael Gambon + + 2019 + Movies + Thriller + + + + The Fan + A knife salesman (Robert De Niro) kills to help his favorite San Francisco Giant (Wesley Snipes), then kidnaps the athlete's son when he seems ungrateful. + + Robert De Niro + Wesley Snipes + Ellen Barkin + + 1996 + Movies + Thriller + + + TVPG + + + 1 + + + + Volcano + A Los Angeles emergency official (Tommy Lee Jones) takes charge when earthquakes and erupting lava ravage the city. + + Tommy Lee Jones + Anne Heche + Gaby Hoffmann + + 1997 + Movies + Action + + + TVPG + + + 2 + + + + The Burnt Orange Heresy + Charismatic art critic James Figueras and his American lover travel to the lavish and opulent Lake Como estate of powerful art collector, Joseph Cassidy. + + Claes Bang + Elizabeth Debicki + Mick Jagger + + 2019 + Movies + Thriller + + + TVPG + + + + The Burnt Orange Heresy + Charismatic art critic James Figueras and his American lover travel to the lavish and opulent Lake Como estate of powerful art collector, Joseph Cassidy. + + Claes Bang + Elizabeth Debicki + Mick Jagger + + 2019 + Movies + Thriller + + + TVPG + + + + The Girl With the Dragon Tattoo + A disgraced journalist (Daniel Craig) and an investigator (Rooney Mara) for a security firm probe a 40-year-old murder. + + Daniel Craig + Rooney Mara + Christopher Plummer + + 2011 + Movies + Thriller + + + TVPG + + + 3 + + + + Pacific Heights + San Francisco yuppies (Melanie Griffith, Matthew Modine) restore a costly Victorian, then rent a studio to a landlord's nightmare (Michael Keaton). + + Melanie Griffith + Matthew Modine + Michael Keaton + + 1990 + Movies + Thriller + + + TVPG + + + 3 + + + + House of 9 + Trapped in a deserted house, nine people must play a deadly game of survival. + + Dennis Hopper + Kelly Brook + Hippolyte Girardot + + 2005 + Movies + Thriller + + + TVPG + + + + Unleashed + Enslaved by a loan shark, a violent fighter escapes and meets a blind man who teaches him about humanity. + + Jet Li + Bob Hoskins + Morgan Freeman + + 2005 + Movies + Action + + + TVPG + + + 2 + + + + The Burnt Orange Heresy + Charismatic art critic James Figueras and his American lover travel to the lavish and opulent Lake Como estate of powerful art collector, Joseph Cassidy. + + Claes Bang + Elizabeth Debicki + Mick Jagger + + 2019 + Movies + Thriller + + + TVPG + + + + Slender Man + Terror strikes when four teenage girls in a small town perform a ritual to debunk the lore of a tall, thin, horrifying figure known as the Slender Man. They soon fear that the legend is true when one of them suddenly goes missing. + + Joey King + Julia Goldani Telles + Jaz Sinclair + + 2018 + Movies + Horror + + + TV14 + + + 1 + + + + The Girl With the Dragon Tattoo + A disgraced journalist (Daniel Craig) and an investigator (Rooney Mara) for a security firm probe a 40-year-old murder. + + Daniel Craig + Rooney Mara + Christopher Plummer + + 2011 + Movies + Thriller + + + TVPG + + + 3 + + + + House of 9 + Trapped in a deserted house, nine people must play a deadly game of survival. + + Dennis Hopper + Kelly Brook + Hippolyte Girardot + + 2005 + Movies + Thriller + + + TVPG + + + + Pacific Heights + San Francisco yuppies (Melanie Griffith, Matthew Modine) restore a costly Victorian, then rent a studio to a landlord's nightmare (Michael Keaton). + + Melanie Griffith + Matthew Modine + Michael Keaton + + 1990 + Movies + Thriller + + + TVPG + + + 3 + + + + Unleashed + Enslaved by a loan shark, a violent fighter escapes and meets a blind man who teaches him about humanity. + + Jet Li + Bob Hoskins + Morgan Freeman + + 2005 + Movies + Action + + + TVPG + + + 2 + + + + The Girl With the Dragon Tattoo + A disgraced journalist (Daniel Craig) and an investigator (Rooney Mara) for a security firm probe a 40-year-old murder. + + Daniel Craig + Rooney Mara + Christopher Plummer + + 2011 + Movies + Thriller + + + TVPG + + + 3 + + + + Slender Man + Terror strikes when four teenage girls in a small town perform a ritual to debunk the lore of a tall, thin, horrifying figure known as the Slender Man. They soon fear that the legend is true when one of them suddenly goes missing. + + Joey King + Julia Goldani Telles + Jaz Sinclair + + 2018 + Movies + Horror + + + TV14 + + + 1 + + + + Slender Man + Terror strikes when four teenage girls in a small town perform a ritual to debunk the lore of a tall, thin, horrifying figure known as the Slender Man. They soon fear that the legend is true when one of them suddenly goes missing. + + Joey King + Julia Goldani Telles + Jaz Sinclair + + 2018 + Movies + Horror + + + TV14 + + + 1 + + + + Silent Trigger + A hired assassin (Dolph Lundgren) believes that his partner (Gina Bellman) in a failed mission has orders to kill him. + + Dolph Lundgren + Gina Bellman + Conrad Dunn + + 1996 + Movies + Thriller + + + 2 + + + + Terror by Night + Sherlock Holmes (Basil Rathbone) and Dr. Watson (Nigel Bruce) guard the Star of Rhodesia diamond on a London-to-Edinburgh train. + + Basil Rathbone + Nigel Bruce + Alan Mowbray + + 1946 + Movies + Mystery + + + TVG + + + 2 + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Death Race 3: Inferno + Only one victory away from winning his freedom, legendary driver Carl Lucas (Luke Goss) enters the first Death Race to take place in the brutal Kalahari Desert. + + Luke Goss + Ving Rhames + Danny Trejo + + 2012 + Movies + Action + + + TVPG + + + + The Flock + An agent (Richard Gere) and his female protege (Claire Danes) seek a missing girl who may be connected to a paroled sex offender. + + Richard Gere + Claire Danes + Kadee Strickland + + 2007 + Movies + Crime Story + + + TV14 + + + 2 + + + + Slender Man + Terror strikes when four teenage girls in a small town perform a ritual to debunk the lore of a tall, thin, horrifying figure known as the Slender Man. They soon fear that the legend is true when one of them suddenly goes missing. + + Joey King + Julia Goldani Telles + Jaz Sinclair + + 2018 + Movies + Horror + + + TV14 + + + 1 + + + + The New Daughter + A single father (Kevin Costner) is puzzled by his daughter's (Ivana Baquero) weird behavior, which begins soon after he moves his family to a secluded woodland home. + + Kevin Costner + Ivana Baquero + Gattlin Griffith + + 2009 + Movies + Horror + + + TVPG + + + 1 + + + + ECCO + A former covert assassin seeks redemption by hunting the people responsible for his sinful past. + + Lathrop Walker + Tabitha Bastien + Helena Grace Donald + + 2019 + Movies + Thriller + + + + Death Race 3: Inferno + Only one victory away from winning his freedom, legendary driver Carl Lucas (Luke Goss) enters the first Death Race to take place in the brutal Kalahari Desert. + + Luke Goss + Ving Rhames + Danny Trejo + + 2012 + Movies + Action + + + TVPG + + + + Border Run + An American reporter searches for her missing brother amid the violence and human smuggling across the U.S.-Mexico border. + + Sharon Stone + Billy Zane + Rosemberg Salgado + + 2012 + Movies + Thriller + + + TV14 + + + + The Flock + An agent (Richard Gere) and his female protege (Claire Danes) seek a missing girl who may be connected to a paroled sex offender. + + Richard Gere + Claire Danes + Kadee Strickland + + 2007 + Movies + Crime Story + + + TV14 + + + 2 + + + + Out of Liberty + In the winter of 1839, a jailer is tasked with overseeing Missouri's most wanted men as they await trial. + + Jasen Wade + Brandon Ray Olive + Casey Elliott + + 2019 + Movies + Western + + + + Gunsmoke + A gunslinger (Audie Murphy) protects his interest in a Montana cattleman's (Paul Kelly) ranch and daughter (Susan Cabot). + + Audie Murphy + Susan Cabot + Paul Kelly + + 1953 + Movies + Western + + + TVG + + + 2 + + + + The Navajo Kid + The murder of his foster father sets a young man on a dual mission to find the killer and his real father's identity. + + Bob Steele + Syd Saylor + Edward Cassidy + + 1946 + Movies + Western + + + 2 + + + + The Kid From Texas + Rancher Jameson (Shepperd Strudwick) gives outlaw Billy the Kid (Audie Murphy) a job as a hired hand, but trouble follows Billy everywhere, and, when thugs working for a rival rancher kill Jameson, the young gunslinger decides ton revenge. + + Audie Murphy + Gale Storm + Albert Dekker + + 1950 + Movies + Western + + + 2 + + + + Cowgirls 'n Angels + A girl (Bailee Madison) joins rodeo trick-riders and embarks on a tour with them in the hope that she will find her long-lost father along the way. + + Bailee Madison + James Cromwell + Jackson Rathbone + + 2012 + Movies + Children + + + TVG + + + + Cowgirls 'n Angels + A girl (Bailee Madison) joins rodeo trick-riders and embarks on a tour with them in the hope that she will find her long-lost father along the way. + + Bailee Madison + James Cromwell + Jackson Rathbone + + 2012 + Movies + Children + + + TVG + + + + Man Without a Star + A cowboy (Kirk Douglas) and his young partner work for a cattlewoman (Jeanne Crain) and get involved in a dispute over whether to divide property by barbed wire. + + Kirk Douglas + Jeanne Crain + Claire Trevor + + 1955 + Movies + Western + + + TVG + + + 3 + + + + The Red Stallion + A boy (Ted Donaldson) and his grandmother (Jane Darwell) try to save their ranch with help from his dog and his racehorse. + + Ted Donaldson + Jane Darwell + Robert Paige + + 1947 + Movies + Adventure + + + 1 + + + + Frontier Fugitives + The Texas Rangers (Tex Ritter, Dave O'Brien, Guy Wilkerson) find a trapper was not killed by Indians after all. + + Tex Ritter + David O'Brien + Guy Wilkerson + + 1945 + Movies + Western + + + 1 + + + + Six Black Horses + A widow (Joan O'Brien) crosses the desert with a drifter (Audie Murphy) and the gunman (Dan Duryea) who killed her husband. + + Audie Murphy + Dan Duryea + Joan O'Brien + + 1962 + Movies + Western + + + 2 + + + + Hombre + An Apache-raised white man (Paul Newman) rises as the leader of stagecoach passengers stopped by outlaws. + + Paul Newman + Fredric March + Richard Boone + + 1967 + Movies + Western + + + TVG + + + 3 + + + + The Gambler + An Old West poker player (Kenny Rogers) acquires a sidekick (Bruce Boxleitner) and sets out to help the son he never knew. + + Kenny Rogers + Bruce Boxleitner + Christine Belford + + 1980 + Movies + Western + + + 2 + + + + Man Without a Star + A cowboy (Kirk Douglas) and his young partner work for a cattlewoman (Jeanne Crain) and get involved in a dispute over whether to divide property by barbed wire. + + Kirk Douglas + Jeanne Crain + Claire Trevor + + 1955 + Movies + Western + + + TVG + + + 3 + + + + Gold + A woman joins a group of German gold-seekers who are unprepared for what awaits them in the unforgiving wilderness. + + Nina Hoss + Peter Kurth + Uwe Bohm + + 2013 + Movies + Drama + + + + Six Black Horses + A widow (Joan O'Brien) crosses the desert with a drifter (Audie Murphy) and the gunman (Dan Duryea) who killed her husband. + + Audie Murphy + Dan Duryea + Joan O'Brien + + 1962 + Movies + Western + + + 2 + + + + The Kid From Texas + Rancher Jameson (Shepperd Strudwick) gives outlaw Billy the Kid (Audie Murphy) a job as a hired hand, but trouble follows Billy everywhere, and, when thugs working for a rival rancher kill Jameson, the young gunslinger decides ton revenge. + + Audie Murphy + Gale Storm + Albert Dekker + + 1950 + Movies + Western + + + 2 + + + + Hombre + An Apache-raised white man (Paul Newman) rises as the leader of stagecoach passengers stopped by outlaws. + + Paul Newman + Fredric March + Richard Boone + + 1967 + Movies + Western + + + TVG + + + 3 + + + + Man Without a Star + A cowboy (Kirk Douglas) and his young partner work for a cattlewoman (Jeanne Crain) and get involved in a dispute over whether to divide property by barbed wire. + + Kirk Douglas + Jeanne Crain + Claire Trevor + + 1955 + Movies + Western + + + TVG + + + 3 + + + + Lawman + The Jury + Dan decides to bring down a crooked female saloon keeper. + + John Russell + Peter Brown + Bek Nelson + + Regular + + + + Tales of Wells Fargo + Shotgun Messenger + Hardie gives a job to the son of a former employee who was fired. + + Dale Robertson + + Regular + + + TVPG + + + + The Rifleman + Eight Hours to Die + Mark is kidnapped by a man who blames Lucas for his own son's death. + + Chuck Connors + Johnny Crawford + Paul Fix + + Drama + + + TVG + + + + Laramie + The Lawbreakers + Jess takes on an undercover job for the sheriff, acting as a guide for an outlaw who's searching for money stolen in an earlier robbery. + + John Smith + Robert Fuller + Hoagy Carmichael + + Drama + + + TVPG + + + + Six Black Horses + A widow (Joan O'Brien) crosses the desert with a drifter (Audie Murphy) and the gunman (Dan Duryea) who killed her husband. + + Audie Murphy + Dan Duryea + Joan O'Brien + + 1962 + Movies + Western + + + 2 + + + + Flaming Bullets + The Texas Rangers try to capture a gang of outlaws who have been spreading terror throughout the territory. + + Tex Ritter + David O'Brien + Guy Wilkerson + + 1945 + Movies + Western + + + 1 + + + + Hombre + An Apache-raised white man (Paul Newman) rises as the leader of stagecoach passengers stopped by outlaws. + + Paul Newman + Fredric March + Richard Boone + + 1967 + Movies + Western + + + TVG + + + 3 + + + + Hombre + An Apache-raised white man (Paul Newman) rises as the leader of stagecoach passengers stopped by outlaws. + + Paul Newman + Fredric March + Richard Boone + + 1967 + Movies + Western + + + TVG + + + 3 + + + + Dead Man's Walk + Two young Texas Rangers forge a lifelong friendship in novelist Larry McMurtry's prequel to. + + David Arquette + Jonny Lee Miller + Patricia Childress + + Miniseries + + + TVPG + + + + Dead Man's Walk + The surviving Rangers are captured by Capt. Salazar, who takes them on a deadly trek to a Mexican leper colony. + + David Arquette + Jonny Lee Miller + Patricia Childress + + Miniseries + + + TVPG + + + + Dead Man's Walk + The surviving Rangers are captured by Capt. Salazar, who takes them on a deadly trek to a Mexican leper colony. + + David Arquette + Jonny Lee Miller + Patricia Childress + + Miniseries + + + TVPG + + + + Lawman + The Escape of Joe Killmer + Marshal Dan Troop knows that he will be walking into a deadly ambush unless a frightened woman talks. + + John Russell + Peter Brown + Peggy Castle + + Regular + + + TVPG + + + + The Deputy + The Border Between + Clay takes a job in a mine, hoping to rescue a girl kidnapped by the mine's owner. + + Henry Fonda + Allen Case + + Drama + + + + Tales of Wells Fargo + Treasure Coach + Stagecoach passengers refuse to take the next stage when an outlaw gang threatens to attack. + + Dale Robertson + + Regular + + + TVPG + + + + The Rifleman + Death Trap + A former gunfighter becomes a doctor hoping to make up for his past. + + Chuck Connors + Johnny Crawford + Paul Fix + + Drama + + + TVG + + + + Wanted: Dead or Alive + The Favor + Josh escorts a murder suspect on a three-day journey through hazardous conditions. + + Steve McQueen + + Regular + + + TVPG + + + + Streets of Laredo + Ex-Texas Ranger Capt. Woodrow Call is hired by a railroad company to track down an elusive Mexican bandit. + Miniseries + + + + Streets of Laredo + Ex-Texas Ranger Capt. Woodrow Call is hired by a railroad company to track down an elusive Mexican bandit. + Miniseries + + + + Streets of Laredo + Ex-Texas Ranger Capt. Woodrow Call is hired by a railroad company to track down an elusive Mexican bandit. + Miniseries + + + + The Deputy + The Border Between + Clay takes a job in a mine, hoping to rescue a girl kidnapped by the mine's owner. + + Henry Fonda + Allen Case + + Drama + + + + Wanted: Dead or Alive + The Favor + Josh escorts a murder suspect on a three-day journey through hazardous conditions. + + Steve McQueen + + Regular + + + TVPG + + + + Wagon Train + The Donna Fuller Story + After Charlie and a winemaker rescue a group of teetotal travelers from a runaway wagon, one of them falls in love with the winemaker and must reconcile her lifestyle with his profession. + + John McIntire + Frank McGrath + Terry Wilson + + Regular + + + TVG + + + + Laramie + Stage Stop + Drifter Jess Harper arrives in Laramie searching for a man, but gunfire sends him out into the countryside, where he meets rancher Slim Sherman and his brother, Andy. + + John Smith + Robert Fuller + Hoagy Carmichael + + Drama + + + TVPG + + + + The Virginian + To Bear Witness + Trampas' investigation of a doctor's (Malachi Throne) possible involvement in a murder makes the Shiloh ranchhand the victim of insults, a drugging and a beating; guests Joanna Moore, William Windom. + + James Drury + Doug McClure + Lee J. Cobb + + Drama + + + TVPG + + + + The Rifleman + Death Trap + A former gunfighter becomes a doctor hoping to make up for his past. + + Chuck Connors + Johnny Crawford + Paul Fix + + Drama + + + TVG + + + + Tales of Wells Fargo + Treasure Coach + Stagecoach passengers refuse to take the next stage when an outlaw gang threatens to attack. + + Dale Robertson + + Regular + + + TVPG + + + + Lawman + The Escape of Joe Killmer + Marshal Dan Troop knows that he will be walking into a deadly ambush unless a frightened woman talks. + + John Russell + Peter Brown + Peggy Castle + + Regular + + + TVPG + + + + Lawman + Old Stefano + Marshal Dan Troop risks his life to save a sheepherder from a crazed rancher. + + John Russell + Peter Brown + Peggy Castle + + Regular + + + TVPG + + + + Showdown + A sheriff (Rock Hudson) tracks a train robber (Dean Martin) who used to be his friend, until a woman (Susan Clark) came between them. + + Dean Martin + Rock Hudson + Susan Clark + + 1973 + Movies + Western + + + TVG + + + 2 + + + + Bandolero! + Two outlaw brothers (James Stewart, Dean Martin) head for Mexico with one's gang and a Mexican hostage (Raquel Welch), followed by a posse. + + James Stewart + Dean Martin + Raquel Welch + + 1968 + Movies + Western + + + TVG + + + 3 + + + + The Hawk of Powder River + Vivian moonlights as. + + Eddie Dean + Jennifer Holt + Roscoe Ates + + 1948 + Movies + Western + + + 1 + + + + Jericho + A charismatic preacher rescues a mysterious gunman who tries to find the answers to his lost identity. + + Mark Valley + Leon Coffee + R. Lee Ermey + + 2000 + Movies + Western + + + TVG + + + 2 + + + + Jericho + A charismatic preacher rescues a mysterious gunman who tries to find the answers to his lost identity. + + Mark Valley + Leon Coffee + R. Lee Ermey + + 2000 + Movies + Western + + + TVG + + + 2 + + + + Showdown + A sheriff (Rock Hudson) tracks a train robber (Dean Martin) who used to be his friend, until a woman (Susan Clark) came between them. + + Dean Martin + Rock Hudson + Susan Clark + + 1973 + Movies + Western + + + TVG + + + 2 + + + + Kansas Raiders + Jesse James (Audie Murphy), brother Frank, Kit Dalton and the Younger brothers join Quantrill's (Brian Donlevy) raiders. + + Audie Murphy + Brian Donlevy + Marguerite Chapman + + 1950 + Movies + Western + + + TVG + + + 2 + + + + Bandolero! + Two outlaw brothers (James Stewart, Dean Martin) head for Mexico with one's gang and a Mexican hostage (Raquel Welch), followed by a posse. + + James Stewart + Dean Martin + Raquel Welch + + 1968 + Movies + Western + + + TVG + + + 3 + + + + Lawman + Old Stefano + Marshal Dan Troop risks his life to save a sheepherder from a crazed rancher. + + John Russell + Peter Brown + Peggy Castle + + Regular + + + TVPG + + + + The Deputy + Final Payment + An injured businessman vows revenge on the children of his enemy. + + Henry Fonda + Allen Case + Read Morgan + + Drama + + + + Tales of Wells Fargo + Death Raffle + An ex-convict is tempted to rejoin his old outlaw gang. + + Dale Robertson + + Regular + + + TVPG + + + + The Rifleman + The Queue + A Chinese man and his son plan to settle in North Fork. + + Chuck Connors + Johnny Crawford + Paul Fix + + Drama + + + TVG + + + + Wanted: Dead or Alive + Ricochet + A woman conspires to kill her missing spouse. + + Steve McQueen + + Regular + + + TVPG + + + + Showdown + A sheriff (Rock Hudson) tracks a train robber (Dean Martin) who used to be his friend, until a woman (Susan Clark) came between them. + + Dean Martin + Rock Hudson + Susan Clark + + 1973 + Movies + Western + + + TVG + + + 2 + + + + Kansas Raiders + Jesse James (Audie Murphy), brother Frank, Kit Dalton and the Younger brothers join Quantrill's (Brian Donlevy) raiders. + + Audie Murphy + Brian Donlevy + Marguerite Chapman + + 1950 + Movies + Western + + + TVG + + + 2 + + + + Gunsmoke + A gunslinger (Audie Murphy) protects his interest in a Montana cattleman's (Paul Kelly) ranch and daughter (Susan Cabot). + + Audie Murphy + Susan Cabot + Paul Kelly + + 1953 + Movies + Western + + + TVG + + + 2 + + + + The Deputy + Final Payment + An injured businessman vows revenge on the children of his enemy. + + Henry Fonda + Allen Case + Read Morgan + + Drama + + + + Wanted: Dead or Alive + Ricochet + A woman conspires to kill her missing spouse. + + Steve McQueen + + Regular + + + TVPG + + + + Wagon Train + The Sam Darland Story + The wagon train finds Sam Darland and a number of orphan boys in an old ghost town. + + John McIntire + Frank McGrath + Terry Wilson + + Regular + + + TVG + + + + Laramie + Glory Road + A down-on-his-luck drifter with ties to Jess arrives at the Sherman station with a lady preacher; though Jess tries to avoid the man, events force Jess to become involved. + + John Smith + Robert Fuller + Hoagy Carmichael + + Drama + + + TVPG + + + + The Virginian + Barren Ground + The Virginian faces mixed reactions from the father (Jay C. Flippen), sister (Collin Wilcox) and vengeful brother (Bryon Mabe) of a young outlaw he was forced to kill in self-defense. + + James Drury + Doug McClure + Lee J. Cobb + + Drama + + + TVPG + + + + The Rifleman + The Queue + A Chinese man and his son plan to settle in North Fork. + + Chuck Connors + Johnny Crawford + Paul Fix + + Drama + + + TVG + + + + Tales of Wells Fargo + Death Raffle + An ex-convict is tempted to rejoin his old outlaw gang. + + Dale Robertson + + Regular + + + TVPG + + + + Lawman + The Robbery + Marshal Dan Troop is stymied by a stubborn army lieutenant when he tries to track a murderer. + + John Russell + Peter Brown + Peggy Castle + + Regular + + + TVPG + + + + Lawman + Firehouse Lil + After curvaceous Lily Merrill is made fire chief, fires and bank robberies come to a halt. + + John Russell + Peter Brown + Peggy Castle + + Regular + + + TVPG + + + + The Kid From Texas + Rancher Jameson (Shepperd Strudwick) gives outlaw Billy the Kid (Audie Murphy) a job as a hired hand, but trouble follows Billy everywhere, and, when thugs working for a rival rancher kill Jameson, the young gunslinger decides ton revenge. + + Audie Murphy + Gale Storm + Albert Dekker + + 1950 + Movies + Western + + + 2 + + + + The Gambler + An Old West poker player (Kenny Rogers) acquires a sidekick (Bruce Boxleitner) and sets out to help the son he never knew. + + Kenny Rogers + Bruce Boxleitner + Christine Belford + + 1980 + Movies + Western + + + 2 + + + + The Gambler II + The Adventure Continues + Brady Hawkes, Billy Montana and Jeremiah Hawkes are on a train bound for a huge gambling event when the train is taken over by a gang of vicious killers in search of money. + + Kenny Rogers + Bruce Boxleitner + Linda Evans + + Miniseries + + + + The Gambler II + The Adventure Continues + Brady Hawkes, Billy Montana and Jeremiah Hawkes are on a train bound for a huge gambling event when the train is taken over by a gang of vicious killers in search of money. + + Kenny Rogers + Bruce Boxleitner + Linda Evans + + Miniseries + + + + The Gambler II + The Adventure Continues + Brady Hawkes, Billy Montana and Jeremiah Hawkes are on a train bound for a huge gambling event when the train is taken over by a gang of vicious killers in search of money. + + Kenny Rogers + Bruce Boxleitner + Linda Evans + + Miniseries + + + + Jericho + A charismatic preacher rescues a mysterious gunman who tries to find the answers to his lost identity. + + Mark Valley + Leon Coffee + R. Lee Ermey + + 2000 + Movies + Western + + + TVG + + + 2 + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Wagon Train + The Abel Weatherly Story + Bill and Charlie help a tormented sea captain search for a sailor he thinks is still alive. + + John McIntire + Frank McGrath + Terry Wilson + + Regular + + + TVG + + + + The Kid From Texas + Rancher Jameson (Shepperd Strudwick) gives outlaw Billy the Kid (Audie Murphy) a job as a hired hand, but trouble follows Billy everywhere, and, when thugs working for a rival rancher kill Jameson, the young gunslinger decides ton revenge. + + Audie Murphy + Gale Storm + Albert Dekker + + 1950 + Movies + Western + + + 2 + + + + Lawman + The Robbery + Marshal Dan Troop is stymied by a stubborn army lieutenant when he tries to track a murderer. + + John Russell + Peter Brown + Peggy Castle + + Regular + + + TVPG + + + + The Deputy + Dark Reward + State bankers offer rewards for dead bank robbers, which prompts an enterprising gang to stage a robbery. + + Henry Fonda + Allen Case + Read Morgan + + Drama + + + + Tales of Wells Fargo + Tanoa + Hardie negotiates a new stagecoach route with a local Indian chief. + + Dale Robertson + + Regular + + + TVPG + + + + The Rifleman + The Vaqueros + Lucas subdues a gang of bandits singlehandedly. + + Chuck Connors + Johnny Crawford + Paul Fix + + Drama + + + TVG + + + + Wanted: Dead or Alive + Sheriff of Red Rock + Josh brings in a killer suspect and winds up in jail himself. + + Steve McQueen + + Regular + + + TVPG + + + + Gunsmoke + A gunslinger (Audie Murphy) protects his interest in a Montana cattleman's (Paul Kelly) ranch and daughter (Susan Cabot). + + Audie Murphy + Susan Cabot + Paul Kelly + + 1953 + Movies + Western + + + TVG + + + 2 + + + + One Foot in Hell + A deputy sheriff (Alan Ladd) plots revenge after his pregnant wife dies for lack of medicine he could not afford. + + Alan Ladd + Don Murray + Dan O'Herlihy + + 1960 + Movies + Western + + + 2 + + + + Desolation Canyon + A sheriff (Patrick Duffy) and a retired gunman (Stacy Keach) form a posse to track down a band of violent outlaws. + + Patrick Duffy + Stacey Keach + David Rees Snell + + 2006 + Movies + Western + + + TVPG + + + 2 + + + + The Deputy + Dark Reward + State bankers offer rewards for dead bank robbers, which prompts an enterprising gang to stage a robbery. + + Henry Fonda + Allen Case + Read Morgan + + Drama + + + + Wanted: Dead or Alive + Sheriff of Red Rock + Josh brings in a killer suspect and winds up in jail himself. + + Steve McQueen + + Regular + + + TVPG + + + + Wagon Train + The Abel Weatherly Story + Bill and Charlie help a tormented sea captain search for a sailor he thinks is still alive. + + John McIntire + Frank McGrath + Terry Wilson + + Regular + + + TVG + + + + Laramie + Circle of Fire + Martha Chambers takes refuge from vengeful Indians at the Sherman ranch after she kills the son of a Pawnee chief in a moment of blind terror. + + John Smith + Robert Fuller + Hoagy Carmichael + + Drama + + + TVPG + + + + The Virginian + Execution at Triste + After a fortuneteller predicts death, Trampas and two other Shiloh hands face a gunslinger as they pass through a doomed town after delivering cattle to an Army base; guests Robert Lansing, Sharon Farrell. + + James Drury + Doug McClure + Lee J. Cobb + + Drama + + + TVPG + + + + The Rifleman + The Vaqueros + Lucas subdues a gang of bandits singlehandedly. + + Chuck Connors + Johnny Crawford + Paul Fix + + Drama + + + TVG + + + + Tales of Wells Fargo + Tanoa + Hardie negotiates a new stagecoach route with a local Indian chief. + + Dale Robertson + + Regular + + + TVPG + + + + Plane + Pilot Brodie Torrance saves passengers from a lightning strike by making a risky landing on a war-torn island. When dangerous rebels take the passengers hostage, Torrance seeks help from an accused murderer who was being transported by the FBI. + + Gerard Butler + Mike Colter + Yoson An + + 2023 + Movies + Action + + + TVPG + + + 2 + + + + The Perfect Guy + A California lobbyist (Sanaa Lathan) must turn the tables on her ex-beau (Michael Ealy) when he becomes a violent stalker. + + Sanaa Lathan + Michael Ealy + Morris Chestnut + + 2015 + Movies + Thriller + + + TVPG + + + 1 + + + + Supercool + Lifelong friends Neil and Gilbert's undeniable bond gets pushed to its limits when Neil makes a wish that comes true. + + Jake Short + Miles J. Harvey + Damon Wayans Jr. + + 2021 + Movies + Comedy + + + + The Wedding Ringer + A socially awkward groom (Josh Gad) begins an unexpected bromance with the guy (Kevin Hart) he hired to pose as his best man at his upcoming nuptials. + + Kevin Hart + Josh Gad + Affion Crockett + + 2015 + Movies + Comedy + + + TVPG + + + 2 + + + + No Good Deed + An unsuspecting Atlanta woman (Taraji P. Henson) lets in a charming stranger (Idris Elba) to use her phone and soon believes the adage. + + Idris Elba + Taraji P. Henson + Leslie Bibb + + 2014 + Movies + Thriller + + + TVPG + + + 1 + + + + No Good Deed + An unsuspecting Atlanta woman (Taraji P. Henson) lets in a charming stranger (Idris Elba) to use her phone and soon believes the adage. + + Idris Elba + Taraji P. Henson + Leslie Bibb + + 2014 + Movies + Thriller + + + TVPG + + + 1 + + + + Power Book IV: Force + No Loose Ends + Tommy and Diamond suspect a snitch and put their inner circle to the test; Mireya gives Tommy a key piece of information; the war between Miguel and Mirkovic comes to a head. + + Joseph Sikora + Kristopher Lofton Lofton + Anthony Fleming + + Drama + + + TVMA + + + + Summoning Sylvia + Larry and his three best friends spend the weekend at a haunted house where a woman named Sylvia murdered her son. As they hold a high-spirited seance to summon the sinister Sylvia, they wind up welcoming more guests than they bargained for. + + Travis Coles + Michael Urie + Frankie Grande + + 2023 + Movies + Comedy + + + + The Last Shift + Calling it quits after 38 years, an aging fast-food worker trains his young replacement on the graveyard shift at Oscar's Chicken and Fish. + + Richard Jenkins + Shane Paul McGhie + Ed O'Neill + + 2020 + Movies + Comedy + Drama + + + TVG + + + 2 + + + + The Perfect Guy + A California lobbyist (Sanaa Lathan) must turn the tables on her ex-beau (Michael Ealy) when he becomes a violent stalker. + + Sanaa Lathan + Michael Ealy + Morris Chestnut + + 2015 + Movies + Thriller + + + TVPG + + + 1 + + + + Momma Said Come Home for Christmas + A family matriarch calls all of her children home for Christmas but this will be one bumpy holiday when lovers unite and family members clash. + + K.D. Aubert + Jo Marie Payton + Shanti Lowry + + 2023 + Movies + Christmas + Comedy + + + TVG + + + + No Good Deed + An unsuspecting Atlanta woman (Taraji P. Henson) lets in a charming stranger (Idris Elba) to use her phone and soon believes the adage. + + Idris Elba + Taraji P. Henson + Leslie Bibb + + 2014 + Movies + Thriller + + + TVPG + + + 1 + + + + Clockers + A Brooklyn man confesses to a drug dealer's murder, but a veteran detective (Harvey Keitel) instead harasses the suspect's crack-dealer brother. + + Harvey Keitel + John Turturro + Delroy Lindo + + 1995 + Movies + Drama + + + TVPG + + + 2 + + + + Power Book IV: Force + No Loose Ends + Tommy and Diamond suspect a snitch and put their inner circle to the test; Mireya gives Tommy a key piece of information; the war between Miguel and Mirkovic comes to a head. + + Joseph Sikora + Kristopher Lofton Lofton + Anthony Fleming + + Drama + + + TVMA + + + + The Wedding Ringer + A socially awkward groom (Josh Gad) begins an unexpected bromance with the guy (Kevin Hart) he hired to pose as his best man at his upcoming nuptials. + + Kevin Hart + Josh Gad + Affion Crockett + + 2015 + Movies + Comedy + + + TVPG + + + 2 + + + + The Perfect Guy + A California lobbyist (Sanaa Lathan) must turn the tables on her ex-beau (Michael Ealy) when he becomes a violent stalker. + + Sanaa Lathan + Michael Ealy + Morris Chestnut + + 2015 + Movies + Thriller + + + TVPG + + + 1 + + + + Clockers + A Brooklyn man confesses to a drug dealer's murder, but a veteran detective (Harvey Keitel) instead harasses the suspect's crack-dealer brother. + + Harvey Keitel + John Turturro + Delroy Lindo + + 1995 + Movies + Drama + + + TVPG + + + 2 + + + + No Good Deed + An unsuspecting Atlanta woman (Taraji P. Henson) lets in a charming stranger (Idris Elba) to use her phone and soon believes the adage. + + Idris Elba + Taraji P. Henson + Leslie Bibb + + 2014 + Movies + Thriller + + + TVPG + + + 1 + + + + Power Book IV: Force + No Loose Ends + Tommy and Diamond suspect a snitch and put their inner circle to the test; Mireya gives Tommy a key piece of information; the war between Miguel and Mirkovic comes to a head. + + Joseph Sikora + Kristopher Lofton Lofton + Anthony Fleming + + Drama + + + TVMA + + + + The Last Shift + Calling it quits after 38 years, an aging fast-food worker trains his young replacement on the graveyard shift at Oscar's Chicken and Fish. + + Richard Jenkins + Shane Paul McGhie + Ed O'Neill + + 2020 + Movies + Comedy + Drama + + + TVG + + + 2 + + + + Rebound + Suspended after a public outburst, a college basketball coach (Martin Lawrence) accepts a short-term job with a team of middle schoolers. + + Martin Lawrence + Wendy Raquel Robinson + Breckin Meyer + + 2005 + Movies + Children + + + TVG + + + 2 + + + + Rebound + Suspended after a public outburst, a college basketball coach (Martin Lawrence) accepts a short-term job with a team of middle schoolers. + + Martin Lawrence + Wendy Raquel Robinson + Breckin Meyer + + 2005 + Movies + Children + + + TVG + + + 2 + + + + War Room + Encouraged by her newest client (Karen Abercrombie), a woman (Priscilla Shirer) turns to prayer to save her failing marriage. + + Priscilla C. Shirer + T.C. Stallings + Karen Abercrombie + + 2015 + Movies + Drama + + + TVG + + + 2 + + + + Half Sisters + Two half-sisters who hate each other become trapped in a farmhouse as they search for their $1 million inheritance check, all while two murderous intruders terrorize them from the outside. + + Kristy Dinsmore + Sydney Winbush + Darielle Mason + + 2023 + Movies + Drama + + + + G + A hip-hop magnate (Richard T. Jones) tries to win back a former love (Chenoa Maxwell) who is now married to a stockbroker (Blair Underwood). + + Richard T. Jones + Blair Underwood + Chenoa Maxwell + + 2002 + Movies + Drama + + + TV14 + + + 2 + + + + Flatliners + Five medical students trigger near-death experiences to gain insight into the mystery of what lies beyond the confines of life. As their experiments become more perilous, each must face the paranormal consequences of journeying to the other side. + + Diego Luna + Nina Dobrev + James Norton + + 2017 + Movies + Thriller + + + TVPG + + + 1 + + + + Clockers + A Brooklyn man confesses to a drug dealer's murder, but a veteran detective (Harvey Keitel) instead harasses the suspect's crack-dealer brother. + + Harvey Keitel + John Turturro + Delroy Lindo + + 1995 + Movies + Drama + + + TVPG + + + 2 + + + + Rebound + Suspended after a public outburst, a college basketball coach (Martin Lawrence) accepts a short-term job with a team of middle schoolers. + + Martin Lawrence + Wendy Raquel Robinson + Breckin Meyer + + 2005 + Movies + Children + + + TVG + + + 2 + + + + Luv + Accompanied by his young nephew (Michael Rainey Jr.), an ex-convict (Common) tries to raise money through a drug deal. + + Common + Michael Rainey Jr. + Charles S. Dutton + + 2012 + Movies + Drama + + + TVPG + + + 2 + + + + Undercover Brother + A low-rent private detective (Eddie Griffin) poses as a preppy nerd in order to foil a plot by conspirators. + + Eddie Griffin + Chris Kattan + Denise Richards + + 2002 + Movies + Comedy + + + TVG + + + 3 + + + + Undercover Brother 2 + Determined to prove himself as more than just Undercover Brother's brother, Lionel uses his own unique brand of funk and disguise to save the world. + + Michael Jai White + Barry Bostwick + Laila Odom + + 2019 + Movies + Comedy + + + + When the Game Stands Tall + After completing a record-breaking streak of 151 consecutive victories, high-school football coach Bob Ladouceur (Jim Caviezel) and his players face their most-challenging season yet. + + Jim Caviezel + Michael Chiklis + Alexander Ludwig + + 2014 + Movies + Docu-Drama + + + TVG + + + 2 + + + + Rebound + Suspended after a public outburst, a college basketball coach (Martin Lawrence) accepts a short-term job with a team of middle schoolers. + + Martin Lawrence + Wendy Raquel Robinson + Breckin Meyer + + 2005 + Movies + Children + + + TVG + + + 2 + + + + Undercover Brother + A low-rent private detective (Eddie Griffin) poses as a preppy nerd in order to foil a plot by conspirators. + + Eddie Griffin + Chris Kattan + Denise Richards + + 2002 + Movies + Comedy + + + TVG + + + 3 + + + + Undercover Brother 2 + Determined to prove himself as more than just Undercover Brother's brother, Lionel uses his own unique brand of funk and disguise to save the world. + + Michael Jai White + Barry Bostwick + Laila Odom + + 2019 + Movies + Comedy + + + + Luv + Accompanied by his young nephew (Michael Rainey Jr.), an ex-convict (Common) tries to raise money through a drug deal. + + Common + Michael Rainey Jr. + Charles S. Dutton + + 2012 + Movies + Drama + + + TVPG + + + 2 + + + + Luv + Accompanied by his young nephew (Michael Rainey Jr.), an ex-convict (Common) tries to raise money through a drug deal. + + Common + Michael Rainey Jr. + Charles S. Dutton + + 2012 + Movies + Drama + + + TVPG + + + 2 + + + + Jane + Olivia is a teen struggling with a recent loss of a friend. After getting deferred from her dream school, she spirals out of control and launches a social media-fueled rampage against those who stand in the way of her success. + + Madelaine Petsch + Melissa Leo + Chloe Bailey + + 2022 + Movies + Thriller + + + + Tyler Perry's Daddy's Little Girls + An unexpected romance blooms between a struggling mechanic (Idris Elba) and the attorney (Gabrielle Union) who is representing him in a custody battle for his young daughters. + + Gabrielle Union + Idris Elba + Louis Gossett Jr. + + 2007 + Movies + Romance + + + TVG + + + 2 + + + + Bloodshot + Killed in action, soldier Ray Garrison gets a new lease on life when the RST Corp. brings him back from the dead. But when the company decides to manipulate his mind and memories, Ray must embark on a mission to find out what's real and what's not. + + Vin Diesel + Guy Pearce + Eiza González + + 2020 + Movies + Action + + + TVPG + + + 2 + + + + CB4 + Three middle-class pals (Chris Rock, Allen Payne, Deezer D) try to be cell-block types and tap into the rap market but cross a drug-dealing club owner. + + Chris Rock + Allen Payne + Deezer D + + 1993 + Movies + Comedy + + + TVPG + + + 2 + + + + Undercover Brother + A low-rent private detective (Eddie Griffin) poses as a preppy nerd in order to foil a plot by conspirators. + + Eddie Griffin + Chris Kattan + Denise Richards + + 2002 + Movies + Comedy + + + TVG + + + 3 + + + + Undercover Brother 2 + Determined to prove himself as more than just Undercover Brother's brother, Lionel uses his own unique brand of funk and disguise to save the world. + + Michael Jai White + Barry Bostwick + Laila Odom + + 2019 + Movies + Comedy + + + + Tyler Perry's Daddy's Little Girls + An unexpected romance blooms between a struggling mechanic (Idris Elba) and the attorney (Gabrielle Union) who is representing him in a custody battle for his young daughters. + + Gabrielle Union + Idris Elba + Louis Gossett Jr. + + 2007 + Movies + Romance + + + TVG + + + 2 + + + + Single Not Searching + A journey of self-discovery as a woman and her friends leave Atlanta to head to the motherland for the first time in their lives. + + Osas Ighodaro + Brély Evans + LisaRaye + + 2022 + Movies + Romance + + + + Antwone Fisher + A Navy psychiatrist (Denzel Washington) inspires a temperamental sailor (Derek Luke), abused by foster parents, to find his birth mother. + + Derek Luke + Joy Bryant + Denzel Washington + + 2002 + Movies + Drama + + + TVPG + + + 3 + + + + Bloodshot + Killed in action, soldier Ray Garrison gets a new lease on life when the RST Corp. brings him back from the dead. But when the company decides to manipulate his mind and memories, Ray must embark on a mission to find out what's real and what's not. + + Vin Diesel + Guy Pearce + Eiza González + + 2020 + Movies + Action + + + TVPG + + + 2 + + + + Tyler Perry's Daddy's Little Girls + An unexpected romance blooms between a struggling mechanic (Idris Elba) and the attorney (Gabrielle Union) who is representing him in a custody battle for his young daughters. + + Gabrielle Union + Idris Elba + Louis Gossett Jr. + + 2007 + Movies + Romance + + + TVG + + + 2 + + + + Annie + A plucky youngster (Quvenzhané Wallis) escapes the clutches of her calculating foster mother and charms her way into the heart of a hard-nosed tycoon (Jamie Foxx), who's running for mayor. + + Jamie Foxx + Quvenzhané Wallis + Rose Byrne + + 2014 + Movies + Children + + + TVG + + + 1 + + + + Single Not Searching + A journey of self-discovery as a woman and her friends leave Atlanta to head to the motherland for the first time in their lives. + + Osas Ighodaro + Brély Evans + LisaRaye + + 2022 + Movies + Romance + + + + The Devil You Know + A man grapples with the limits of loyalty after learning his brother may have been involved in a horrific crime. He and his family, increasingly weary of the justice system's failings, soon end up in the crosshairs of a seasoned but jaded detective. + + Omar Epps + Michael Ealy + William Catlett + + 2022 + Movies + Thriller + + + TVMA + + + + The Devil You Know + A man grapples with the limits of loyalty after learning his brother may have been involved in a horrific crime. He and his family, increasingly weary of the justice system's failings, soon end up in the crosshairs of a seasoned but jaded detective. + + Omar Epps + Michael Ealy + William Catlett + + 2022 + Movies + Thriller + + + TVMA + + + + Bull + In a near-abandoned subdivision west of Houston, a wayward teen runs headlong into her equally willful and unforgiving neighbor, an aging bullfighter who's seen his best days in the arena; it's a collision that will change them both. + + Rob Morgan + Yolonda Ross + Amber Havard + + 2019 + Movies + Drama + + + + Local Programming + Sign off. + Specials + + + TVG + + + + Saturday Church + A shy, effeminate14-year-old being raised by his strict aunt finds escape in a rich fantasy life of music, dance and a lively transgender youth community. + + Luka Kain + Margot Bingham + Regina Taylor + + 2017 + Movies + Drama + + + + The Pay Day + A broke and frustrated IT technician decides to embark on a one woman heist to steal valuable data worth millions on the black market. + + Simon Callow + Ellen Thomas + Rae Lim + + 2022 + Movies + Comedy + + + + Corsicana + A former slave turned U.S. marshal tracks an outlaw gang of killers to the oil-rich town of Corsicana, Texas. + + Isaiah Washington + Lew Temple + Noel G. + + 2022 + Movies + Western + + + + Death of a Telemarketer + A smooth-talking telemarketer finds himself at the mercy of the man he tried to swindle to win a sales contest at work. + + Lamorne Morris + Jackie Earle Haley + Haley Joel Osment + + 2020 + Movies + Thriller + + + + Antwone Fisher + A Navy psychiatrist (Denzel Washington) inspires a temperamental sailor (Derek Luke), abused by foster parents, to find his birth mother. + + Derek Luke + Joy Bryant + Denzel Washington + + 2002 + Movies + Drama + + + TVPG + + + 3 + + + + The Devil You Know + A man grapples with the limits of loyalty after learning his brother may have been involved in a horrific crime. He and his family, increasingly weary of the justice system's failings, soon end up in the crosshairs of a seasoned but jaded detective. + + Omar Epps + Michael Ealy + William Catlett + + 2022 + Movies + Thriller + + + TVMA + + + + Pimp + A pimp in the ghettos of the Bronx, N.Y., dreams of a better life for herself and her girlfriend. She soon gets caught in a fierce battle when she comes face to face with a rival who runs an even more dangerous game. + + Keke Palmer + Haley Ramm + Aunjanue Ellis + + 2018 + Movies + Crime Story + + + + The Fan + A knife salesman (Robert De Niro) kills to help his favorite San Francisco Giant (Wesley Snipes), then kidnaps the athlete's son when he seems ungrateful. + + Robert De Niro + Wesley Snipes + Ellen Barkin + + 1996 + Movies + Thriller + + + TVPG + + + 1 + + + + Death of a Telemarketer + A smooth-talking telemarketer finds himself at the mercy of the man he tried to swindle to win a sales contest at work. + + Lamorne Morris + Jackie Earle Haley + Haley Joel Osment + + 2020 + Movies + Thriller + + + + Ice Age: The Meltdown + Manny (Ray Romano), Sid (John Leguizamo) and Diego (Denis Leary) reunite to warn their friends about the danger to their homes posed by swiftly melting ice. + + Ray Romano + John Leguizamo + Denis Leary + + 2006 + Movies + Animated + + + TVG + + + 2 + + + + Dudley Do-Right + Canadian Mountie Dudley Do-Right (Brendan Fraser) must stop villain Snidely Whiplash (Alfred Molina) and his scheme to take over the town of Semi-Happy Valley. + + Brendan Fraser + Sarah Jessica Parker + Alfred Molina + + 1999 + Movies + Children + + + TVG + + + 2 + + + + Gold Diggers: The Secret of Bear Mountain + A bored big-city teen (Christina Ricci) hunts for gold with the local bad girl (Anna Chlumsky) in a small Pacific Northwest town circa 1980. + + Christina Ricci + Anna Chlumsky + Polly Draper + + 1995 + Movies + Children + + + TVG + + + 2 + + + + Battle for Terra + An alien creature (Evan Rachel Wood) joins forces with a human pilot (Luke Wilson) to find her kidnapped father and save her world from colonization by invading Earthlings. + + Evan Rachel Wood + Brian Cox + Luke Wilson + + 2007 + Movies + Animated + + + TVG + + + 2 + + + + Toys + Childish toy-factory heirs (Robin Williams, Joan Cusack) oppose their Army-general uncle's (Michael Gambon) sinister production of war toys. + + Robin Williams + Michael Gambon + Joan Cusack + + 1992 + Movies + Comedy + Drama + + + TVG + + + 2 + + + + Toys + Childish toy-factory heirs (Robin Williams, Joan Cusack) oppose their Army-general uncle's (Michael Gambon) sinister production of war toys. + + Robin Williams + Michael Gambon + Joan Cusack + + 1992 + Movies + Comedy + Drama + + + TVG + + + 2 + + + + Dr. Dolittle + A 20th-century San Francisco doctor (Eddie Murphy) rediscovers his ability to communicate with animals. + + Eddie Murphy + Ossie Davis + Oliver Platt + + 1998 + Movies + Comedy + + + TVG + + + 2 + + + + Dr. Dolittle 2 + To save an endangered species, a veterinarian who can talk to animals (Eddie Murphy) must reintroduce a performing bear to the wild. + + Eddie Murphy + Kristen Wilson + Jeffrey Jones + + 2001 + Movies + Children + + + TVG + + + 2 + + + + Alpha and Omega 3: The Great Wolf Games + Coach Humphrey must assemble a ragtag team of underdogs after an unexpected accident puts many of the alpha wolves out of commission. + + Benjamin Diskin + Kate Higgins + Liza West + + 2014 + Movies + Animated + + + TVG + + + + Alpha and Omega: The Legend of the Saw Tooth Cave + When Runt sneaks off to explore a haunted cave, he finds a wolf who has been driven from her pack and tries to help her. + + Debi Derryberry + Benjamin Diskin + Kate Higgins + + 2014 + Movies + Animated + + + TVG + + + + Alpha and Omega: Family Vacation + Kate and Humphrey take their pups to Alfred Creek Falls for a vacation, where they find themselves embroiled in a cross-country chase after mad wolf trappers spot them. + + Kate Higgins + Benjamin Diskin + Debi Derryberry + + 2015 + Movies + Animated + + + TVG + + + + Alpha & Omega: The Big Fureeze + Wolf pups Stinky, Claudette and Runt venture out into a blizzard to save their parents. They're joined by a sleepy bear cub and a feisty porcupine. + + Kate Higgins + Benjamin Diskin + Hunter Swam + + 2016 + Movies + Christmas + Animated + + + TVG + + + + Alpha and Omega: Dino Digs + After Kate, Humphrey, and their three pups are forced to relocate their den, they discover Amy, a friendly raptor who came to life after being uncovered during a big dig. + + Benjamin Diskin + Lindsay Torrance + Kate Higgins + + 2016 + Movies + Animated + + + TVG + + + + Alpha and Omega: Journey to Bear Kingdom + Stinky, Runt and Claudette spring into action when rogue wolves threaten the royal bears. With courage, wits and help from their wild friends, the alpha and omega wolves rise to protect the queen and princess and save their forest home. + + Kate Higgins + Benjamin Diskin + Hunter Swan + + 2017 + Movies + Animated + + + TVG + + + + Dr. Dolittle + A 20th-century San Francisco doctor (Eddie Murphy) rediscovers his ability to communicate with animals. + + Eddie Murphy + Ossie Davis + Oliver Platt + + 1998 + Movies + Comedy + + + TVG + + + 2 + + + + Dr. Dolittle 2 + To save an endangered species, a veterinarian who can talk to animals (Eddie Murphy) must reintroduce a performing bear to the wild. + + Eddie Murphy + Kristen Wilson + Jeffrey Jones + + 2001 + Movies + Children + + + TVG + + + 2 + + + + Big Miracle + A reporter (John Krasinski) in small-town Alaska and his former lover (Drew Barrymore), an environmentalist, try to form an international coalition to rescue three ice-trapped whales. + + John Krasinski + Drew Barrymore + Kristen Bell + + 2012 + Movies + Adventure + + + TVG + + + 3 + + + + Toys + Childish toy-factory heirs (Robin Williams, Joan Cusack) oppose their Army-general uncle's (Michael Gambon) sinister production of war toys. + + Robin Williams + Michael Gambon + Joan Cusack + + 1992 + Movies + Comedy + Drama + + + TVG + + + 2 + + + + Playmobil: The Movie + Magically transported to the fantastical world of Playmobil, a teen joins forces with a bumbling secret agent and an adventurous truck driver to save her captive brother from an evil emperor. + + Anya Taylor-Joy + Gabriel Bateman + Jim Gaffigan + + 2019 + Movies + Children + + + TVG + + + 1 + + + + Annie + A plucky youngster (Quvenzhané Wallis) escapes the clutches of her calculating foster mother and charms her way into the heart of a hard-nosed tycoon (Jamie Foxx), who's running for mayor. + + Jamie Foxx + Quvenzhané Wallis + Rose Byrne + + 2014 + Movies + Children + + + TVG + + + 1 + + + + Big Miracle + A reporter (John Krasinski) in small-town Alaska and his former lover (Drew Barrymore), an environmentalist, try to form an international coalition to rescue three ice-trapped whales. + + John Krasinski + Drew Barrymore + Kristen Bell + + 2012 + Movies + Adventure + + + TVG + + + 3 + + + + Dr. Dolittle + A 20th-century San Francisco doctor (Eddie Murphy) rediscovers his ability to communicate with animals. + + Eddie Murphy + Ossie Davis + Oliver Platt + + 1998 + Movies + Comedy + + + TVG + + + 2 + + + + Dr. Dolittle 2 + To save an endangered species, a veterinarian who can talk to animals (Eddie Murphy) must reintroduce a performing bear to the wild. + + Eddie Murphy + Kristen Wilson + Jeffrey Jones + + 2001 + Movies + Children + + + TVG + + + 2 + + + + Dr. Dolittle 2 + To save an endangered species, a veterinarian who can talk to animals (Eddie Murphy) must reintroduce a performing bear to the wild. + + Eddie Murphy + Kristen Wilson + Jeffrey Jones + + 2001 + Movies + Children + + + TVG + + + 2 + + + + A Beautiful Day in the Neighborhood + Lloyd Vogel is an investigative journalist who receives an assignment to profile Fred Rogers, aka Mr. Rogers. Fred's empathy, kindness and decency soon chips away at Vogel's jaded outlook on life, forcing him to reconcile with his painful past. + + Tom Hanks + Matthew Rhys + Susan Kelechi Watson + + 2019 + Movies + Drama + + + TVG + + + 3 + + + + Elephant Kingdom + A brave elephant asks a courageous troop of young elephants to help him rescue his wife from a human. + + Cary Elwes + Alexa PenaVega + Patrick Warburton + + 2016 + Movies + Animated + + + + Four Kids and It + Four kids on holiday in Cornwall meet a magical creature on the beach with the power to grant wishes. + + Matthew Goode + Paula Patton + Michael Caine + + 2020 + Movies + Fantasy + + + TVG + + + + Annie + A plucky youngster (Quvenzhané Wallis) escapes the clutches of her calculating foster mother and charms her way into the heart of a hard-nosed tycoon (Jamie Foxx), who's running for mayor. + + Jamie Foxx + Quvenzhané Wallis + Rose Byrne + + 2014 + Movies + Children + + + TVG + + + 1 + + + + A Beautiful Day in the Neighborhood + Lloyd Vogel is an investigative journalist who receives an assignment to profile Fred Rogers, aka Mr. Rogers. Fred's empathy, kindness and decency soon chips away at Vogel's jaded outlook on life, forcing him to reconcile with his painful past. + + Tom Hanks + Matthew Rhys + Susan Kelechi Watson + + 2019 + Movies + Drama + + + TVG + + + 3 + + + + The Borrowers + A scientist (Stephen Fry) tries to capture members of a miniature family who live beneath the floorboards of a house. + + Stephen Fry + Victoria Wood + Christopher Eccleston + + 2011 + Movies + Fantasy + + + TVPG + + + + ParaNorman + A ghoul-whispering youngster (Kodi Smit-McPhee) battles zombies, ghosts, witches and ignorant adults to save his town from an ancient curse. + + Kodi Smit-McPhee + Tucker Albrizzi + Anna Kendrick + + 2012 + Movies + Animated + + + TVG + + + 3 + + + + Four Kids and It + Four kids on holiday in Cornwall meet a magical creature on the beach with the power to grant wishes. + + Matthew Goode + Paula Patton + Michael Caine + + 2020 + Movies + Fantasy + + + TVG + + + + A Beautiful Day in the Neighborhood + Lloyd Vogel is an investigative journalist who receives an assignment to profile Fred Rogers, aka Mr. Rogers. Fred's empathy, kindness and decency soon chips away at Vogel's jaded outlook on life, forcing him to reconcile with his painful past. + + Tom Hanks + Matthew Rhys + Susan Kelechi Watson + + 2019 + Movies + Drama + + + TVG + + + 3 + + + + Earth to Echo + Youngsters investigate the source of strange, encoded messages on their cell phones and discover a stranded mechanical alien who desperately needs their help. + + Brian + + 2014 + Movies + Children + + + TVG + + + 2 + + + + A Cowgirl's Story + Cowgirls in high school have to run their homes while their parents are deployed. + + Bailee Madison + Chloe Lukasiak + Pat Boone + + 2017 + Movies + Adventure + + + + The Borrowers + A scientist (Stephen Fry) tries to capture members of a miniature family who live beneath the floorboards of a house. + + Stephen Fry + Victoria Wood + Christopher Eccleston + + 2011 + Movies + Fantasy + + + TVPG + + + + Four Kids and It + Four kids on holiday in Cornwall meet a magical creature on the beach with the power to grant wishes. + + Matthew Goode + Paula Patton + Michael Caine + + 2020 + Movies + Fantasy + + + TVG + + + + ParaNorman + A ghoul-whispering youngster (Kodi Smit-McPhee) battles zombies, ghosts, witches and ignorant adults to save his town from an ancient curse. + + Kodi Smit-McPhee + Tucker Albrizzi + Anna Kendrick + + 2012 + Movies + Animated + + + TVG + + + 3 + + + + ParaNorman + A ghoul-whispering youngster (Kodi Smit-McPhee) battles zombies, ghosts, witches and ignorant adults to save his town from an ancient curse. + + Kodi Smit-McPhee + Tucker Albrizzi + Anna Kendrick + + 2012 + Movies + Animated + + + TVG + + + 3 + + + + A Very Barry Christmas + Barry Buckley and Santa unwittingly trade lives in a Christmas mix-up. + Specials + Animated + + + TVPG + + + + This Beautiful Fantastic + A reclusive young woman who dreams of becoming a children's author finds an unlikely mentor in the rich curmudgeon who lives next door. + + Jessica Brown Findlay + Tom Wilkinson + Andrew Scott + + 2016 + Movies + Comedy + Drama + + + TVG + + + + Home Alone + Accidentally left by his Paris-bound family, an 8-year-old (Macaulay Culkin) makes mincemeat of two burglars (Joe Pesci, Daniel Stern) in the house. + + Macaulay Culkin + Joe Pesci + Daniel Stern + + 1990 + Movies + Christmas + Children + + + TVG + + + 3 + + + + Home Alone 2: Lost in New York + Once again left behind by his family, the boy hero (Macaulay Culkin) lands in Manhattan and battles two burglars (Joe Pesci, Daniel Stern) he faced before. + + Macaulay Culkin + Joe Pesci + Daniel Stern + + 1992 + Movies + Christmas + Children + + + TVG + + + 2 + + + + Home Alone 3 + A clever boy (Alex D. Linz) stymies spies (Olek Krupa, Rya Kihlstedt) seeking a toy car with a top-secret computer chip hidden inside. + + Alex D. Linz + Olek Krupa + Rya Kihlstedt + + 1997 + Movies + Children + + + TVG + + + 1 + + + + Charlie's Christmas Wish + A Christmas wish is granted. + + Diane Ladd + Lindsey McKeon + Vernon Wells + + 2020 + Movies + Christmas + Drama + + + TVG + + + + This Beautiful Fantastic + A reclusive young woman who dreams of becoming a children's author finds an unlikely mentor in the rich curmudgeon who lives next door. + + Jessica Brown Findlay + Tom Wilkinson + Andrew Scott + + 2016 + Movies + Comedy + Drama + + + TVG + + + + Judy Moody and the NOT Bummer Summer + A feisty third-grader (Jordana Beatty) must think of new ways to have fun after her original plans for an awesome summer go awry. + + Jordana Beatty + Heather Graham + Parris Mosteller + + 2011 + Movies + Children + + + TVG + + + 2 + + + + Home Alone + Accidentally left by his Paris-bound family, an 8-year-old (Macaulay Culkin) makes mincemeat of two burglars (Joe Pesci, Daniel Stern) in the house. + + Macaulay Culkin + Joe Pesci + Daniel Stern + + 1990 + Movies + Christmas + Children + + + TVG + + + 3 + + + + Home Alone 2: Lost in New York + Once again left behind by his family, the boy hero (Macaulay Culkin) lands in Manhattan and battles two burglars (Joe Pesci, Daniel Stern) he faced before. + + Macaulay Culkin + Joe Pesci + Daniel Stern + + 1992 + Movies + Christmas + Children + + + TVG + + + 2 + + + + Home Alone 3 + A clever boy (Alex D. Linz) stymies spies (Olek Krupa, Rya Kihlstedt) seeking a toy car with a top-secret computer chip hidden inside. + + Alex D. Linz + Olek Krupa + Rya Kihlstedt + + 1997 + Movies + Children + + + TVG + + + 1 + + + + A Simple Wish + A bumbling fairy godfather (Martin Short) tries to grant a girl's (Mara Wilson) wish that her cabby father (Robert Pastorelli) land a Broadway role. + + Martin Short + Mara Wilson + Robert Pastorelli + + 1997 + Movies + Children + + + TVG + + + 2 + + + + According to Greta + A rebellious and suicidal teen (Hilary Duff) gets sent for the summer to her grandparents, where her life takes an unexpected turn. + + Hilary Duff + Melissa Leo + Ellen Burstyn + + 2009 + Movies + Drama + + + TVG + + + + This Beautiful Fantastic + A reclusive young woman who dreams of becoming a children's author finds an unlikely mentor in the rich curmudgeon who lives next door. + + Jessica Brown Findlay + Tom Wilkinson + Andrew Scott + + 2016 + Movies + Comedy + Drama + + + TVG + + + + Playmobil: The Movie + Magically transported to the fantastical world of Playmobil, a teen joins forces with a bumbling secret agent and an adventurous truck driver to save her captive brother from an evil emperor. + + Anya Taylor-Joy + Gabriel Bateman + Jim Gaffigan + + 2019 + Movies + Children + + + TVG + + + 1 + + + + Playmobil: The Movie + Magically transported to the fantastical world of Playmobil, a teen joins forces with a bumbling secret agent and an adventurous truck driver to save her captive brother from an evil emperor. + + Anya Taylor-Joy + Gabriel Bateman + Jim Gaffigan + + 2019 + Movies + Children + + + TVG + + + 1 + + + + Toys + Childish toy-factory heirs (Robin Williams, Joan Cusack) oppose their Army-general uncle's (Michael Gambon) sinister production of war toys. + + Robin Williams + Michael Gambon + Joan Cusack + + 1992 + Movies + Comedy + Drama + + + TVG + + + 2 + + + + Local Programming + Sign off. + Specials + + + TVG + + + + FernGully: The Last Rainforest + A lumberjack helps a tribe of rain-forest elves protect their kingdom from an evil spirit and greedy clear-cutters. + + Tim Curry + Samantha Mathis + Christian Slater + + 1992 + Movies + Animated + + + TVG + + + 3 + + + + The Adventures of Rocky and Bullwinkle + A flying squirrel and a moose confront their adversaries Boris (Jason Alexander) and Natasha (Rene Russo). + + Rene Russo + Jason Alexander + Piper Perabo + + 2000 + Movies + Children + + + TVG + + + 1 + + + + Ace & the Christmas Miracle + A clumsy con man meets a beautiful woman who hires him to kidnap Ace, a talking and wisecracking racehorse. + + Jon Lovitz + Brande Roderick + James Chalke + + 2021 + Movies + Christmas + Comedy + + + + Ice Age: The Meltdown + Manny (Ray Romano), Sid (John Leguizamo) and Diego (Denis Leary) reunite to warn their friends about the danger to their homes posed by swiftly melting ice. + + Ray Romano + John Leguizamo + Denis Leary + + 2006 + Movies + Animated + + + TVG + + + 2 + + + + Beautiful + An impoverished young woman (Minnie Driver) sacrifices everything in her quest for a beauty pageant title. + + Minnie Driver + Joey Lauren Adams + Hallie Kate Eisenberg + + 2000 + Movies + Comedy + Drama + + + TVPG + + + 1 + + + + Toys + Childish toy-factory heirs (Robin Williams, Joan Cusack) oppose their Army-general uncle's (Michael Gambon) sinister production of war toys. + + Robin Williams + Michael Gambon + Joan Cusack + + 1992 + Movies + Comedy + Drama + + + TVG + + + 2 + + + + FernGully: The Last Rainforest + A lumberjack helps a tribe of rain-forest elves protect their kingdom from an evil spirit and greedy clear-cutters. + + Tim Curry + Samantha Mathis + Christian Slater + + 1992 + Movies + Animated + + + TVG + + + 3 + + + + The Adventures of Rocky and Bullwinkle + A flying squirrel and a moose confront their adversaries Boris (Jason Alexander) and Natasha (Rene Russo). + + Rene Russo + Jason Alexander + Piper Perabo + + 2000 + Movies + Children + + + TVG + + + 1 + + + + Playmobil: The Movie + Magically transported to the fantastical world of Playmobil, a teen joins forces with a bumbling secret agent and an adventurous truck driver to save her captive brother from an evil emperor. + + Anya Taylor-Joy + Gabriel Bateman + Jim Gaffigan + + 2019 + Movies + Children + + + TVG + + + 1 + + + + STARZ On Demand + Performing Arts + + + TVG + + + + STARZ On Demand + Performing Arts + + + TVG + + + + STARZ On Demand + Performing Arts + + + TVG + + + + STARZ On Demand + Performing Arts + + + TVG + + + + STARZ On Demand + Performing Arts + + + TVG + + + + STARZ On Demand + Performing Arts + + + TVG + + + + STARZ On Demand + Performing Arts + + + TVG + + + + STARZ On Demand + Performing Arts + + + TVG + + + + STARZ On Demand + Performing Arts + + + TVG + + + + STARZ On Demand + Performing Arts + + + TVG + + + + STARZ On Demand + Performing Arts + + + TVG + + + + STARZ On Demand + Performing Arts + + + TVG + + + + STARZ On Demand + Performing Arts + + + TVG + + + + STARZ On Demand + Performing Arts + + + TVG + + + + STARZ On Demand + Performing Arts + + + TVG + + + + STARZ On Demand + Performing Arts + + + TVG + + + + STARZ On Demand + Performing Arts + + + TVG + + + + STARZ On Demand + Performing Arts + + + TVG + + + + STARZ On Demand + Performing Arts + + + TVG + + + + STARZ On Demand + Performing Arts + + + TVG + + + + STARZ On Demand + Performing Arts + + + TVG + + + + STARZ On Demand + Performing Arts + + + TVG + + + + STARZ On Demand + Performing Arts + + + TVG + + + + STARZ On Demand + Performing Arts + + + TVG + + + + STARZ On Demand + Performing Arts + + + TVG + + + + STARZ On Demand + Performing Arts + + + TVG + + + + STARZ On Demand + Performing Arts + + + TVG + + + + Star Trek: The Motion Picture + Adm. Kirk (William Shatner), Mr. Spock (Leonard Nimoy), Dr. McCoy (DeForest Kelley) and crew embark in the overhauled Enterprise to find an intelligent entity called VGER. + + William Shatner + Leonard Nimoy + DeForest Kelley + + 1979 + Movies + Sci-Fi + + + TVG + + + 2 + + + + Star Trek II: The Wrath of Khan + Kirk (William Shatner), Spock (Leonard Nimoy) and the Enterprise crew battle an old foe (Ricardo Montalban) who blames Kirk for the death of his wife. + + William Shatner + Leonard Nimoy + Ricardo Montalban + + 1982 + Movies + Sci-Fi + + + TVG + + + 3 + + + + Star Trek III: The Search for Spock + Kirk (William Shatner) and the crew steal the old Enterprise and head for Vulcan to reunite the mind and body of Mr. Spock. + + William Shatner + DeForest Kelley + James Doohan + + 1984 + Movies + Sci-Fi + + + TVG + + + 3 + + + + Star Trek III: The Search for Spock + Kirk (William Shatner) and the crew steal the old Enterprise and head for Vulcan to reunite the mind and body of Mr. Spock. + + William Shatner + DeForest Kelley + James Doohan + + 1984 + Movies + Sci-Fi + + + TVG + + + 3 + + + + The Fifth Element + A New York City cabdriver (Bruce Willis) tries to save 2259 Earth from impact with an onrushing anti-life force. + + Bruce Willis + Gary Oldman + Ian Holm + + 1997 + Movies + Sci-Fi + + + TVG + + + 3 + + + + Red Dawn + Colorado teens (Patrick Swayze, C. Thomas Howell, Lea Thompson) fight back after Soviet-led paratroops drop into town for World War III. + + Patrick Swayze + C. Thomas Howell + Lea Thompson + + 1984 + Movies + Action + + + TVPG + + + 2 + + + + Star Trek: The Motion Picture + Adm. Kirk (William Shatner), Mr. Spock (Leonard Nimoy), Dr. McCoy (DeForest Kelley) and crew embark in the overhauled Enterprise to find an intelligent entity called VGER. + + William Shatner + Leonard Nimoy + DeForest Kelley + + 1979 + Movies + Sci-Fi + + + TVG + + + 2 + + + + Star Trek II: The Wrath of Khan + Kirk (William Shatner), Spock (Leonard Nimoy) and the Enterprise crew battle an old foe (Ricardo Montalban) who blames Kirk for the death of his wife. + + William Shatner + Leonard Nimoy + Ricardo Montalban + + 1982 + Movies + Sci-Fi + + + TVG + + + 3 + + + + Star Trek III: The Search for Spock + Kirk (William Shatner) and the crew steal the old Enterprise and head for Vulcan to reunite the mind and body of Mr. Spock. + + William Shatner + DeForest Kelley + James Doohan + + 1984 + Movies + Sci-Fi + + + TVG + + + 3 + + + + Red Dawn + Colorado teens (Patrick Swayze, C. Thomas Howell, Lea Thompson) fight back after Soviet-led paratroops drop into town for World War III. + + Patrick Swayze + C. Thomas Howell + Lea Thompson + + 1984 + Movies + Action + + + TVPG + + + 2 + + + + A Few Good Men + Navy lawyers (Tom Cruise, Demi Moore) defend two Marines accused of killing a private at the naval station at Guantanamo Bay, Cuba. + + Tom Cruise + Jack Nicholson + Demi Moore + + 1992 + Movies + Drama + + + TVG + + + 3 + + + + Con Air + A wrongly convicted parolee (Nicolas Cage) on a flight with a group of vicious prisoners tries to stop their violent hijacking. + + Nicolas Cage + John Cusack + John Malkovich + + 1997 + Movies + Action + + + TVPG + + + 2 + + + + Con Air + A wrongly convicted parolee (Nicolas Cage) on a flight with a group of vicious prisoners tries to stop their violent hijacking. + + Nicolas Cage + John Cusack + John Malkovich + + 1997 + Movies + Action + + + TVPG + + + 2 + + + + Con Air + A wrongly convicted parolee (Nicolas Cage) on a flight with a group of vicious prisoners tries to stop their violent hijacking. + + Nicolas Cage + John Cusack + John Malkovich + + 1997 + Movies + Action + + + TVPG + + + 2 + + + + A Few Good Men + Navy lawyers (Tom Cruise, Demi Moore) defend two Marines accused of killing a private at the naval station at Guantanamo Bay, Cuba. + + Tom Cruise + Jack Nicholson + Demi Moore + + 1992 + Movies + Drama + + + TVG + + + 3 + + + + The Andy Griffith Show + The Shoplifters + Barney disguises himself as a dummy in an attempt to solve a series of thefts in a Mayberry department store. + + Andy Griffith + Ron Howard + Don Knotts + + Sitcom + + + TVG + + + + The Andy Griffith Show + Andy's Vacation + Andy goes on vacation, leaving Barney and Gomer in charge of Mayberry. However, Andy cannot enjoy his rest as Barney and various townspeople interrupt his peace. + + Andy Griffith + Ron Howard + Don Knotts + + Sitcom + + + TVG + + + + The Andy Griffith Show + Andy Saves Gomer + Gomer believes that Andy has saved his life after Andy wakes him to put out a small fire at the filling station. Indebted, Gomer dedicates himself to repaying Andy in return. + + Andy Griffith + Ron Howard + Don Knotts + + Sitcom + + + TVG + + + + The Andy Griffith Show + Bargain Day + Aunt Bee buys a side of beef from a discount butcher shop to save money. When she gets home, she discovers that her bargain freezer does not work. + + Andy Griffith + Ron Howard + Frances Bavier + + Sitcom + + + TVG + + + + The Andy Griffith Show + Divorce, Mountain Style + Charlene Darling-Wash wants to perform a mountain ritual to divorce Dud Wash and marry Andy. When Barney discovers a way to counteract the ritual with another ritual, Andy decides to fight fire with fire. + + Andy Griffith + Ron Howard + Don Knotts + + Sitcom + + + TVG + + + + The Andy Griffith Show + A Deal Is a Deal + Opie and his friends become involved in a scheme selling worthless salve. Barney and Gomer disguise themselves and head to Mount Pilot to fool two salve cons into buying all their salve back. + + Andy Griffith + Ron Howard + Don Knotts + + Sitcom + + + TVG + + + + The Andy Griffith Show + Fun Girls + Two fun-loving girls from Mount Pilot interrupt Andy and Barney, who are working late doing inventory. They end up in hot water when Helen and Thelma Lou see them with the other girls. + + Andy Griffith + Ron Howard + Don Knotts + + Sitcom + + + TVPG + + + + The Andy Griffith Show + Return of Malcolm Merriweather + Aunt Bee feels unneeded when Malcom Merriweather returns to Mayberry and gets enlisted to help at the Taylor House to give Aunt Bee a break from work. + + Andy Griffith + Ron Howard + Don Knotts + + Sitcom + + + TVG + + + + The Andy Griffith Show + The Rumor + Barney sees Andy and Helen sneaking a kiss in the jewelry store and tells everyone they are engaged. Aunt Bee redecorates Andy's room to make it more appropriate for a bride and throws a surprise party for them. + + Andy Griffith + Ron Howard + Don Knotts + + Sitcom + + + TVG + + + + The Andy Griffith Show + Barney and Thelma Lou, Phfftt + Thelma Lou uses Gomer and flirts with him to make Barney jealous after he says that he has her in his hip pocket. Things escalate when she slips and kisses Gomer on the cheek. + + Andy Griffith + Ron Howard + Don Knotts + + Sitcom + + + TVG + + + + Law & Order: Criminal Intent + Great Barrier + Goren has to interrogate his chameleonlike nemesis, Nicole Wallace, when she becomes a suspect in the slaying of a jewelry thief. + + Vincent D'Onofrio + Kathryn Erbe + Courtney B. Vance + + Docu-Series + Drama + + + TV14 + + + + Law & Order: Criminal Intent + Eosphoros + When a well-known atheist is kidnapped and murdered, Goren and Eames have no shortage of suspects, but the trail is hard to follow after two of the kidnappers are also found dead. + + Vincent D'Onofrio + Kathryn Erbe + Courtney B. Vance + + Docu-Series + Drama + + + TV14 + + + + Law & Order: Criminal Intent + In the Dark + Goren and Eames search abandoned subway tunnels for the killer of homeless men, whose bodies were sold to medical labs, then they learn that each victim had been issued a credit card just before his death. + + Vincent D'Onofrio + Kathryn Erbe + Courtney B. Vance + + Docu-Series + Drama + + + TV14 + + + + Law & Order: Criminal Intent + Magnificat + When a car bomb kills three young boys and injures their mother, the investigation reveals the woman's postpartum depression and questionable behavior by the father. + + Vincent D'Onofrio + Kathryn Erbe + Courtney B. Vance + + Docu-Series + Drama + + + TV14 + + + + Law & Order: Criminal Intent + Silver Lining + The murder of an antiques appraiser puts Goren and Eames on the trail of a highly organized, proficient thief, who taunts them as they try to link him to a long list of stolen valuables. + + Vincent D'Onofrio + Kathryn Erbe + Courtney B. Vance + + Docu-Series + Drama + + + TV14 + + + + Law & Order: Criminal Intent + Inert Dwarf + Radiation poisoning kills a tormented scientist, leading Goren and Eames to investigate the victim's collaborator, a famous physicist with a trophy wife. + + Vincent D'Onofrio + Kathryn Erbe + Courtney B. Vance + + Docu-Series + Drama + + + TV14 + + + + Blue Bloods + Firewall + A cyber-attack on the NYPD forces Danny and Baez to release an evasive suspect; Baez questions her place within the NYPD; Eddie is torn over a workplace dilemma; Jamie wrestles with a family secret. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + Old Friends + An illegal drug shipment arriving in New York City must be found before the narcotics flood the streets; Jamie helps a neighbor handle a gambling debt; Frank receives pushback from Mayor Chase over his handling of a brawl. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + On the Arm + Danny pursues a con artist pretending to be the legendary singer Jimmy Buffett; Frank investigates an impressive police captain who is using her badge to get free wares from local stores. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + The Reagan Way + Frank is at odds with his friend Archbishop Kearns when he says the NYPD arrested the wrong man for a murder; Eddie tries to get justice for a sexual assault survivor; Jamie and his nephew, Joe Hill, butt heads over fair police practices. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + Cold Comfort + Frank contends with a potentially dirty cop within his ranks; Eddie and Badillo track down the culprits behind the theft of valuable, rare works from a celebrated bookstore; Erin snoops into the background of a new woman in Anthony's life. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + Allegiance + Erin's nephew, police officer Joe Hill, becomes aware of witness tampering in a trial; Baez forces Danny to help her find the killer of her favorite TV personality; Eddie questions her decision to become a police sergeant. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + Where We Stand + Frank contends with public outcry to defund the NYPD School Safety Division, after a physical altercation between a school officer and a student goes viral; Danny and Baez help a father track down his missing ex-wife and daughter. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + Guilt + Frank, Baker, Garrett and Gormley experience guilt when an officer they briefly worked with is shot after Frank reassigned her for not meshing with their team; Anthony is offered a promotion that strains his relationship with Erin. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + Hidden Motive + Frank is blindsided when Mayor Chase bypasses him with a request for Jamie to head his security detail; Danny and Baez investigate the murder of a wealthy college student; Anthony fears money woes are leading his sibling down the wrong path. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + Long Lost + A local celebrity asks Frank to make an exception to the NYPD age limit; an encounter with an old rival leads Erin to look into an alleged wrongful conviction; Jamie is torn over whether to report a sergeant; Danny and Baez look for an abducted kid. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Columbo + Lovely but Lethal + A cosmetics manufacturer is suspected of murdering an employee (Martin Sheen) who stole a wrinkle-removing formula. + + Peter Falk + + Drama + + + TVG + + + + Columbo + Double Exposure + A motivational researcher blackmails to further his career, kills a man, then frames the victim's wife. + + Peter Falk + + Drama + + + TVG + + + + Gilligan's Island + `V' for Vitamins + The Professor diagnoses the Skipper as suffering from a vitamin deficiency. + + Bob Denver + Alan Hale Jr. + Jim Backus + + Sitcom + + + TVG + + + + Gilligan's Island + Mr. & Mrs. ??? + The Howells discover that they are not legally married after learning that the minister who married them is a fraud. As the Skipper prepares to marry them in the lagoon, a fight causes them to call off the wedding. + + Bob Denver + Alan Hale Jr. + Jim Backus + + Sitcom + + + TVG + + + + Gilligan's Island + Meet the Meteor + A large meteorite lands on the island and threatens all living things. + + Bob Denver + Alan Hale Jr. + Jim Backus + + Sitcom + + + TVG + + + + Gilligan's Island + Up at Bat + Gilligan emerges from an unexplored cave with a bat bite on his neck. + + Bob Denver + Alan Hale Jr. + Jim Backus + + Sitcom + + + TVG + + + + Gilligan's Island + Gilligan vs. Gilligan + A spy identical to Gilligan questions the castaways about their shipwreck. + + Bob Denver + Alan Hale Jr. + Jim Backus + + Sitcom + + + TVG + + + + Gilligan's Island + Pass the Vegetables Please + Gilligan fishes a crate of vegetable seeds out of the lagoon. + + Bob Denver + Alan Hale Jr. + Jim Backus + + Sitcom + + + TVG + + + + Gilligan's Island + The Producer + A Hollywood producer makes an emergency landing on the island just as Ginger hears that he is on a worldwide talent search. + + Bob Denver + Alan Hale Jr. + Jim Backus + + Sitcom + + + TVG + + + + Gilligan's Island + Voodoo + While exploring an island cave, Gilligan discovers the relics of an ancient civilization. + + Bob Denver + Alan Hale Jr. + Jim Backus + + Sitcom + + + TVG + + + + Gilligan's Island + Where There's a Will + Mr. Howell revises his will, leaving each castaway a valuable piece of his estate. + + Bob Denver + Alan Hale Jr. + Jim Backus + + Sitcom + + + TVG + + + + Law & Order: Criminal Intent + The View From Up Here + The association president of a chic condominium tower is found murdered with an electrical saw, prompting an investigation in which Detective Eames is used as a decoy. + + Vincent D'Onofrio + Kathryn Erbe + Courtney B. Vance + + Docu-Series + Drama + + + TV14 + + + + Law & Order: Criminal Intent + Gone + Goren matches wits with a murderous chess grand master (Robert Carradine) when a newly engaged woman is found dead in a garbage bin. + + Vincent D'Onofrio + Kathryn Erbe + Courtney B. Vance + + Docu-Series + Drama + + + TV14 + + + + Law & Order: Criminal Intent + Collective + The accidental shooting death of a toy collector leads detectives to a death-obsessed group and a conniving woman (Kim Director) who trolls its events in search of lonely men. + + Vincent D'Onofrio + Kathryn Erbe + Courtney B. Vance + + Docu-Series + Drama + + + TV14 + + + + Law & Order: Criminal Intent + Stress Position + The murder of a corrections officer leads the Major Case Squad to a corrupt ring of abusive guards in a Brooklyn prison, and the key to exposing the activity lies with a prison nurse who is dating Detective Mike Logan (Chris Noth). + + Vincent D'Onofrio + Kathryn Erbe + Courtney B. Vance + + Docu-Series + Drama + + + TV14 + + + + Law & Order: Criminal Intent + Sex Club + When the new owner of an infamous playboy's (Peter Bogdanovich) address book is found murdered, detectives suspect a U.S. senatorial candidate, whose infidelity is documented in the book. + + Vincent D'Onofrio + Kathryn Erbe + Courtney B. Vance + + Docu-Series + Drama + + + TV14 + + + + Law & Order: Criminal Intent + Death Roe + When a promising chef disappears and a restaurant critic is murdered, Goran and Eames investigate the dead man's life, searching for a clue that will lead them to his murderer. + + Vincent D'Onofrio + Kathryn Erbe + Courtney B. Vance + + Docu-Series + Drama + + + TV14 + + + + Law & Order: Criminal Intent + Ex Stasis + When a recipient of an organ transplant is murdered, the seemingly altruistic donor becomes the detectives' prime suspect. + + Vincent D'Onofrio + Kathryn Erbe + Courtney B. Vance + + Docu-Series + Drama + + + TV14 + + + + NCIS + Dead Reckoning + Gibbs reluctantly works with Trent Kort (David Dayan Fisher) to put away one of the department's most-wanted criminals. + + Mark Harmon + Michael Weatherly + Cote de Pablo + + Drama + + + TV14 + + + + NCIS + Toxic + When Abby is asked to take over for a government scientist who has gone missing, the team fears that she will meet the same fate as her predecessor. + + Mark Harmon + Michael Weatherly + Cote de Pablo + + Drama + + + TVPG + + + + NCIS + Legend + The murder of a Marine brings McGee and Gibbs to Los Angeles for a joint investigation with the NCIS office of special projects; Tony looks into Ziva's personal life. + + Mark Harmon + Michael Weatherly + Cote de Pablo + + Drama + + + TV14 + + + + NCIS + Legend + Tony questions Ziva's loyalty to NCIS; Special Agent Callen (Chris O'Donnell) goes under cover; Nate Getz (Peter Cambor) discovers the truth about Special Agent Macy and Gibbs' relationship. + + Mark Harmon + Michael Weatherly + Cote de Pablo + + Drama + + + TV14 + + + + NCIS + Semper Fidelis + Gibbs and the team must work with ICE and FBI agents when a security breach results in the death of an ICE agent; Tony comes face to face with Michael Rivkin (Merik Tadros). + + Mark Harmon + Michael Weatherly + Cote de Pablo + + Drama + + + TV14 + + + + NCIS + Aliyah + Ziva has a tense reunion with her father, the head of Mossad; Gibbs is forced to make a shocking decision. + + Mark Harmon + Michael Weatherly + Cote de Pablo + + Drama + + + TV14 + + + + NCIS + Truth or Consequences + With the weight of the past on their minds, Gibbs and the team go back to work, with DiNozzo and McGee beginning a search for Ziva's replacement. + + Mark Harmon + Michael Weatherly + Cote de Pablo + + Drama + + + TV14 + + + + NCIS + Reunion + An investigation into the bizarre death of a Marine and two friends seems linked to Gibbs' past. + + Mark Harmon + Michael Weatherly + Cote de Pablo + + Drama + + + TV14 + + + + NCIS + The Inside Man + The team takes a second look into a lieutenant's death after the blogger who accused them of a cover-up turns up dead. + + Mark Harmon + Michael Weatherly + Cote de Pablo + + Drama + + + TV14 + + + + Columbo + Publish or Perish + An enraged publisher hires a gunman to kill an author who intends to sign a contract with a competitor. + + Peter Falk + + Drama + + + TVG + + + + Columbo + Mind Over Mayhem + A prodigy and his robot help investigate the murder of a professor who threatened to disgrace a colleague's scientist son. + + Peter Falk + + Drama + + + TVG + + + + The Andy Griffith Show + Back to Nature + Andy, Barney, and Gomer take Opie and a couple of his friends on a camping trip. When Opie leaves early in the morning to pick berries, Barney and Gomer go looking for him but end up getting lost in the woods. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVPG + + + + The Andy Griffith Show + Gomer Pyle USMC + Gomer enlists and joins the Marines to test himself as a man, with Andy driving him to the base for his first day at boot camp. When Andy learns that the sergeant plans to get Gomer home, he tries to prevent Gomer from getting kicked out. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVPG + + + + The Andy Griffith Show + Opie Loves Helen + Opie has a crush on his teacher, who is also Andy's girlfriend. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVPG + + + + The Andy Griffith Show + Barney's Physical + Barney needs help to pass a civil service physical, or he will lose his job. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVG + + + + The Andy Griffith Show + Family Visit + Andy's patience is tried when the Taylors are visited by relatives. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVPG + + + + The Andy Griffith Show + The Education of Ernest T. Bass + Ernest T. Bass returns to Mayberry to get his diploma and falls in love with Helen, the town's elementary school teacher and Andy's girlfriend. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVPG + + + + The Andy Griffith Show + Aunt Bee's Romance + Aunt Bee's former beau, Roger Hanover, pays her a visit and begins courting her again. Andy and Opie soon become annoyed at Roger's bad jokes and gags. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVG + + + + The Andy Griffith Show + Barney's Bloodhound + Barney tries to train Blue, a bloodhound, to track criminals. His plan backfires when he leads Blue to a criminal and the dog starts obeying him instead of Barney. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVPG + + + + The Andy Griffith Show + Man in the Middle + Barney and Thelma Lou have an argument. When Andy tries to console Barney, it leads to a parade of other arguments among Andy, Barney, Thelma Lou and Helen. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVPG + + + + The Andy Griffith Show + Barney's Uniform + Barney starts wearing his uniform all the time after a tough guy threatens to beat him up if he catches Barney out of uniform. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVPG + + + + The Andy Griffith Show + Opie's Fortune + Opie finds a purse containing $50, but Andy tells him that the money will only be his if no one claims it within a week. Soon, Opie gets the money but has to return it. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVPG + + + + The Andy Griffith Show + Goodbye, Sheriff Taylor + Andy lets Barney take over as sheriff for a day when he goes to Raleigh to attend a job interview. By the time he returns, Barney has turned the whole town upside down. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVPG + + + + The Andy Griffith Show + The Pageant + Aunt Bee gets the leading role in Mayberry's Centennial Pageant when Clara is suddenly called out of town. However, Aunt Bee is a terrible actress, causing her to get kicked out at her first rehearsal. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVPG + + + + The Andy Griffith Show + The Darling Baby + The Darling family returns to Mayberry to look for a husband for Charlene's newborn daughter. Things get complicated when they choose Opie and refuse to take no for an answer. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVPG + + + + The Andy Griffith Show + Andy and Helen Have Their Day + Andy and Helen take a day off to go on a picnic, but are constantly interrupted by Barney, Goober and other people. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVPG + + + + The Andy Griffith Show + Three Wishes for Opie + Barney buys a fortune-telling game and mistakenly summons the 200-year-old spirit of a count who offers to grant Opie three wishes. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVPG + + + + The Andy Griffith Show + Otis Sues the County + Otis slips in the sheriff's office and a crooked lawyer convinces him to sue the county so it will be forced to upgrade the jail. Thinking Andy and Barney will be happy, Otis agrees. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVPG + + + + Law & Order + Home Sweet + An 8-year-old girl dies in the explosion of an Upper East Side brownstone; detectives determine faulty wiring is to blame, but with little evidence it is difficult to prove the case. + + Jesse L. Martin + Milena Govich + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + Fear America + A young Middle Eastern man dies in an apparent hate-crime, but the suspect hires a high-powered lawyer who tries to have the case thrown out. + + Jesse L. Martin + Milena Govich + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + Public Service Homicide + A man (A.J. Handegard) dies after being identified on a newsmagazine program that had been luring suspected pedophiles by having staff members pose as young girls. + + Jesse L. Martin + Milena Govich + S. Epatha Merkerson + + Drama + + + TV14 + + + + Rututiando + Este programa brinda recomendaciones de destino turístico y ecoturístico de forma alternativa, junto a un artista o personalidad del espectáculo dominicano e internacional que disfruta de los mejores lugares. + Travel + + + + La hora de Carlos Gutiérrez + Programa donde se transmite información de actualidad sobre deportes, política y economía. + News + + + + Geronimo Show + Performing Arts + + + + Inmigración en Progreso + Performing Arts + + + + El exprimidor + Programa radial que informa sobre actualidad y política de Argentina y el mundo. + News + Political + + + + El exprimidor + Programa radial que informa sobre actualidad y política de Argentina y el mundo. + News + Political + + + + El exprimidor + Programa radial que informa sobre actualidad y política de Argentina y el mundo. + News + Political + + + + Tu país al día + Las noticias más importantes de República Dominicana y Estados Unidos. + News Magazine + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Misa San Antonio de Padua + Oficio Religioso. + Religious + + + + Super Music Tv + Music + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Super Deportes Especial + Sports + + + + La Respuesta Con Vincho Castillo + Variety + + + + Adelina + Performing Arts + + + + Noticias en portada + Noticiero destinado a la comunidad latina en Estados Unidos. + News + + + + Box Play List + Regular + + + + La hora de Carlos Gutiérrez + Programa donde se transmite información de actualidad sobre deportes, política y economía. + News + + + + Rututiando + Este programa brinda recomendaciones de destino turístico y ecoturístico de forma alternativa, junto a un artista o personalidad del espectáculo dominicano e internacional que disfruta de los mejores lugares. + Travel + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + El Kan TV + Programa de entretenimiento con arte, cultura, entrevistas, música y mucho más. + Performing Arts + + + TV14 + + + + 33 en las redes + El humor es una de las mejores armas contra el aburrimiento. Este programa hace una selección de los videos más divertidos y virales. + Comedy + + + + Luz y sombra + Programa de investigación que va al fondo de las denuncias. Un espacio que saca la verdad a la luz. + Documentary + + + + Box Play List + Regular + + + + Domingo Explosivo + Specials + + + + El exprimidor + Programa radial que informa sobre actualidad y política de Argentina y el mundo. + News + Political + + + + El exprimidor + Programa radial que informa sobre actualidad y política de Argentina y el mundo. + News + Political + + + + El exprimidor + Programa radial que informa sobre actualidad y política de Argentina y el mundo. + News + Political + + + + El exprimidor + Programa radial que informa sobre actualidad y política de Argentina y el mundo. + News + Political + + + + Hoy mismo + Emisión vespertina para mantener informado al público de todo el acontecer nacional. + News + + + + Abriendo la mañana + Programa que informa a la audiencia sobre política, economía y otros asuntos actuales de interés. + News Magazine + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Salud para todos + Los mejores especialistas responden todas las inquietudes que surgen alrededor de la salud y el cuidado personal, al igual que las consultas en relación con la naturaleza y los animales en el hogar. + Health + Lifestyle + + + + La Cocina de Wandy + Food + + + + Súper Poder + Performing Arts + + + + Super Noticias 1ra. emisión + La información más destacada y las últimas novedades de la actualidad. + News + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Entre debates TV + Talk Shows + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + El exprimidor + Programa radial que informa sobre actualidad y política de Argentina y el mundo. + News + Political + + + + Pulso Político + Políticos y analistas hablan sobre diferentes temas importantes de Ecuador. + Political + + + + Super Noticias 2da. emisión + La información más destacada y las últimas novedades de la actualidad. + News + + + + Entre Lideres + Performing Arts + + + + Opción New York + Performing Arts + + + + Súper Poder + Performing Arts + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + El exprimidor + Programa radial que informa sobre actualidad y política de Argentina y el mundo. + News + Political + + + + Hoy mismo + Emisión vespertina para mantener informado al público de todo el acontecer nacional. + News + + + + Abriendo la mañana + Programa que informa a la audiencia sobre política, economía y otros asuntos actuales de interés. + News Magazine + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Salud para todos + Los mejores especialistas responden todas las inquietudes que surgen alrededor de la salud y el cuidado personal, al igual que las consultas en relación con la naturaleza y los animales en el hogar. + Health + Lifestyle + + + + La Cocina de Wandy + Food + + + + Súper Poder + Performing Arts + + + + Super Noticias 1ra. emisión + La información más destacada y las últimas novedades de la actualidad. + News + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Inmigración en Progreso + Performing Arts + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + El exprimidor + Programa radial que informa sobre actualidad y política de Argentina y el mundo. + News + Political + + + + Pulso Político + Políticos y analistas hablan sobre diferentes temas importantes de Ecuador. + Political + + + + Super Noticias 2da. emisión + La información más destacada y las últimas novedades de la actualidad. + News + + + + Entre Lideres + Performing Arts + + + + Opción New York + Performing Arts + + + + Súper Poder + Performing Arts + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + El exprimidor + Programa radial que informa sobre actualidad y política de Argentina y el mundo. + News + Political + + + + Hoy mismo + Emisión vespertina para mantener informado al público de todo el acontecer nacional. + News + + + + Abriendo la mañana + Programa que informa a la audiencia sobre política, economía y otros asuntos actuales de interés. + News Magazine + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Salud para todos + Los mejores especialistas responden todas las inquietudes que surgen alrededor de la salud y el cuidado personal, al igual que las consultas en relación con la naturaleza y los animales en el hogar. + Health + Lifestyle + + + + La Cocina de Wandy + Food + + + + Súper Poder + Performing Arts + + + + Super Noticias 1ra. emisión + La información más destacada y las últimas novedades de la actualidad. + News + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Entre debates TV + Talk Shows + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + El exprimidor + Programa radial que informa sobre actualidad y política de Argentina y el mundo. + News + Political + + + + Pulso Político + Políticos y analistas hablan sobre diferentes temas importantes de Ecuador. + Political + + + + The Lord of the Rings: The Return of the King + Frodo (Elijah Wood) and Sam march toward Mount Doom to destroy the ring, while Gandalf (Ian McKellen) and warriors prepare for a final confrontation with Sauron and his allies. + + Elijah Wood + Ian McKellen + Liv Tyler + + 2003 + Movies + Fantasy + + + TVG + + + 3 + + + + The Lord of the Rings: The Return of the King + Frodo (Elijah Wood) and Sam march toward Mount Doom to destroy the ring, while Gandalf (Ian McKellen) and warriors prepare for a final confrontation with Sauron and his allies. + + Elijah Wood + Ian McKellen + Liv Tyler + + 2003 + Movies + Fantasy + + + TVG + + + 3 + + + + Dolittle + Dr. John Dolittle lives in solitude with an array of exotic animals that he speaks to daily. But when young Queen Victoria becomes gravely ill, the eccentric doctor and his furry pals embark on an epic adventure to a mythical island to find the cure. + + Robert Downey Jr. + Antonio Banderas + Michael Sheen + + 2020 + Movies + Children + + + TVG + + + 1 + + + + Vampire Academy + At a secret boarding school, a half-human/half-vampire teenager (Zoey Deutch) trains to become a guardian for her best friend -- a vampire princess (Lucy Fry). + + Zoey Deutch + Lucy Fry + Danila Kozlovsky + + 2014 + Movies + Fantasy + + + TVG + + + 1 + + + + Primal + Hunter and collector Frank Walsh sails to America with a priceless white jaguar and a dangerous political assassin. When the prisoner manages to break free, Walsh must utilize his expert skills to capture the dangerous killer -- not dead, but alive. + + Nicolas Cage + Famke Janssen + Kevin Durand + + 2019 + Movies + Action + + + TVPG + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + The Twilight Zone + Caesar and Me + A down-at-the heels ventriloquist is the victim of both his gangster-like dummy and a strangely evil little girl. + + Jackie Cooper + Stafford Repp + Sarah Selby + + Sci-Fi + + + TVPG + + + + The Twilight Zone + The Brain Center at Whipple's + A man resolves to make his plant the most automated manufacturing establishment in the world. + + Richard Deacon + Shawn Michaels + Burt Conroy + + Sci-Fi + + + TVPG + + + + Vampire Academy + At a secret boarding school, a half-human/half-vampire teenager (Zoey Deutch) trains to become a guardian for her best friend -- a vampire princess (Lucy Fry). + + Zoey Deutch + Lucy Fry + Danila Kozlovsky + + 2014 + Movies + Fantasy + + + TVG + + + 1 + + + + The Lord of the Rings: The Two Towers + Now divided, members of a fellowship take different paths to destroy the ring and defeat evil Sauron and his pawns. + + Elijah Wood + Ian McKellen + Liv Tyler + + 2002 + Movies + Fantasy + + + TVG + + + 3 + + + + The Lord of the Rings: The Return of the King + Frodo (Elijah Wood) and Sam march toward Mount Doom to destroy the ring, while Gandalf (Ian McKellen) and warriors prepare for a final confrontation with Sauron and his allies. + + Elijah Wood + Ian McKellen + Liv Tyler + + 2003 + Movies + Fantasy + + + TVG + + + 3 + + + + Wanted + After his estranged father is murdered, an office drone (James McAvoy) joins secret assassins who take their orders from Fate itself. + + James McAvoy + Morgan Freeman + Angelina Jolie + + 2008 + Movies + Action + + + TVPG + + + 3 + + + + 2 Fast 2 Furious + A former policeman (Paul Walker) and his friend (Tyrese) work with a U.S. Customs agent (Eva Mendes) to indict a launderer in Miami. + + Paul Walker + Tyrese Gibson + Eva Mendes + + 2003 + Movies + Action + + + TVPG + + + 2 + + + + 2 Fast 2 Furious + A former policeman (Paul Walker) and his friend (Tyrese) work with a U.S. Customs agent (Eva Mendes) to indict a launderer in Miami. + + Paul Walker + Tyrese Gibson + Eva Mendes + + 2003 + Movies + Action + + + TVPG + + + 2 + + + + Primal + Hunter and collector Frank Walsh sails to America with a priceless white jaguar and a dangerous political assassin. When the prisoner manages to break free, Walsh must utilize his expert skills to capture the dangerous killer -- not dead, but alive. + + Nicolas Cage + Famke Janssen + Kevin Durand + + 2019 + Movies + Action + + + TVPG + + + + Friday the 13th + While searching for his missing sister, a young man (Jared Padalecki) and a group of student revelers encounter a hockey-masked killer and his razor-sharp machete at the ruins of Camp Crystal Lake. + + Jared Padalecki + Danielle Panabaker + Amanda Righetti + + 2009 + Movies + Horror + + + TVPG + + + 1 + + + + Killer High + Sabrina's perfectly planned high school reunion goes south when a monster keeps killing all the guests. + + Kacey Rohl + Humberly González + Asha Bromfield + + 2018 + Movies + Horror + + + TV14 + + + + Eureka + Pilot + U.S. Marshal Jack Carter becomes stranded in a town populated with many of the world's geniuses. + + Colin Ferguson + Salli Richardson-Whitfield + Joe Morton + + Drama + Sci-Fi + + + TV14 + + + + Eureka + Many Happy Returns + A recently deceased woman shows up at Carter's office; a ghost-like figure appears in Allison's home. + + Colin Ferguson + Salli Richardson-Whitfield + Joe Morton + + Drama + Sci-Fi + + + TVPG + + + + Eureka + Before I Forget + When a world-famous scientist visits Eureka, Carter and Henry realize that they cannot account for blocks of time. + + Colin Ferguson + Salli Richardson-Whitfield + Joe Morton + + Drama + Sci-Fi + + + TVPG + + + + Eureka + Alienated + Carter investigates Spencer's alleged abduction; Eureka's funding may be in jeopardy. + + Colin Ferguson + Salli Richardson-Whitfield + Joe Morton + + Drama + Sci-Fi + + + TV14 + + + + Friday the 13th + While searching for his missing sister, a young man (Jared Padalecki) and a group of student revelers encounter a hockey-masked killer and his razor-sharp machete at the ruins of Camp Crystal Lake. + + Jared Padalecki + Danielle Panabaker + Amanda Righetti + + 2009 + Movies + Horror + + + TVPG + + + 1 + + + + The 5th Wave + With help from a mysterious young man (Alex Roe), a desperate teenager (Chloë Grace Moretz) tries to find her younger brother (Zackary Arthur) as a series of deadly alien attacks decimate the Earth. + + Chloë Grace Moretz + Nick Robinson + Ron Livingston + + 2016 + Movies + Sci-Fi + + + TVG + + + 2 + + + + Wanted + After his estranged father is murdered, an office drone (James McAvoy) joins secret assassins who take their orders from Fate itself. + + James McAvoy + Morgan Freeman + Angelina Jolie + + 2008 + Movies + Action + + + TVPG + + + 3 + + + + 2 Fast 2 Furious + A former policeman (Paul Walker) and his friend (Tyrese) work with a U.S. Customs agent (Eva Mendes) to indict a launderer in Miami. + + Paul Walker + Tyrese Gibson + Eva Mendes + + 2003 + Movies + Action + + + TVPG + + + 2 + + + + The Hunt + In the shadow of a dark internet conspiracy theory, some ruthless elitists gather at a remote location to hunt humans for sport. But their master plan is about to be derailed when one of the hunted, Crystal, turns the tables on her pursuers. + + Ike Barinholtz + Betty Gilpin + Emma Roberts + + 2020 + Movies + Thriller + + + TVPG + + + 2 + + + + Legion + A battle for the future of mankind unfolds when the archangel Michael (Paul Bettany) arrives at a roadside diner to protect a waitress whose unborn child is humanity's last hope. + + Paul Bettany + Lucas Black + Dennis Quaid + + 2010 + Movies + Horror + + + TVPG + + + 1 + + + + SurrealEstate + Art & Science + Luke must improvise when a client's home traps her inside; August pays a visit to his past. + + Tim Rozon + Sarah Levy + Adam Korson + + Sci-Fi + + + TV14 + + + + The 5th Wave + With help from a mysterious young man (Alex Roe), a desperate teenager (Chloë Grace Moretz) tries to find her younger brother (Zackary Arthur) as a series of deadly alien attacks decimate the Earth. + + Chloë Grace Moretz + Nick Robinson + Ron Livingston + + 2016 + Movies + Sci-Fi + + + TVG + + + 2 + + + + The Twilight Zone + Once Upon a Time + A janitor mischievously puts on a helmet which really is a time machine. + + Buster Keaton + Gil Lamb + James Flavin + + Sci-Fi + + + TVPG + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + Men's Health-All-Natural Secret for prostate health + Prosvent is a doctor formulated blend of rejuvenating herbs and nutrients that help protect overall prostate health. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Eureka + Invincible + A researcher taps into the power of a dangerous artifact, intensifying Stark's obsession. + + Colin Ferguson + Salli Richardson-Whitfield + Joe Morton + + Drama + Sci-Fi + + + TVPG + + + + Eureka + Dr. Nobel + Stark, Henry, Fargo, Carter and Allison enlist the help of an aging scientist to stop a catastrophe. + + Colin Ferguson + Salli Richardson-Whitfield + Joe Morton + + Drama + Sci-Fi + + + TVPG + + + + Eureka + Blink + A mysterious death may have ties to a project at Global; Zoe meets a boy at school. + + Colin Ferguson + Salli Richardson-Whitfield + Joe Morton + + Drama + Sci-Fi + + + TV14 + + + + Eureka + Right as Raynes + Problems arise when a young computer programmer, Callister Raynes, returns to Eureka. + + Colin Ferguson + Salli Richardson-Whitfield + Joe Morton + + Drama + Sci-Fi + + + TV14 + + + + Hell Fest + A serial killer in costume murders visitors at a Halloween theme park, unbeknownst to bystanders who think it's part of the fun. + + Amy Forsyth + Reign Edwards + Bex Taylor-Klaus + + 2018 + Movies + Hallowe'en + Horror + + + TVPG + + + 2 + + + + Santa's Slay + After a millennium of spreading Christmas cheer, Santa Claus (Bill Goldberg) reverts to his demonic self and gives the gift of fear. + + Bill Goldberg + Douglas Smith + Emilie de Ravin + + 2005 + Movies + Christmas + Comedy + + + TVPG + + + 1 + + + + After Earth + With his father (Will Smith) trapped in the wreckage of their spacecraft, a youth (Jaden Smith) treks across Earth's now-hostile terrain to recover their rescue beacon and signal for help. + + Jaden Smith + Will Smith + Sophie Okonedo + + 2013 + Movies + Sci-Fi + + + TVG + + + 1 + + + + Legion + A battle for the future of mankind unfolds when the archangel Michael (Paul Bettany) arrives at a roadside diner to protect a waitress whose unborn child is humanity's last hope. + + Paul Bettany + Lucas Black + Dennis Quaid + + 2010 + Movies + Horror + + + TVPG + + + 1 + + + + The Hunt + In the shadow of a dark internet conspiracy theory, some ruthless elitists gather at a remote location to hunt humans for sport. But their master plan is about to be derailed when one of the hunted, Crystal, turns the tables on her pursuers. + + Ike Barinholtz + Betty Gilpin + Emma Roberts + + 2020 + Movies + Thriller + + + TVPG + + + 2 + + + + Hellboy + Legendary half-demon Hellboy encounters an ancient resurrected sorceress who's out to avenge a past betrayal. Caught in a clash between the supernatural and the human, Hellboy becomes hell-bent on stopping her without triggering the end of the world. + + David Harbour + Milla Jovovich + Ian McShane + + 2019 + Movies + Action + + + TVPG + + + 1 + + + + Hellboy + Legendary half-demon Hellboy encounters an ancient resurrected sorceress who's out to avenge a past betrayal. Caught in a clash between the supernatural and the human, Hellboy becomes hell-bent on stopping her without triggering the end of the world. + + David Harbour + Milla Jovovich + Ian McShane + + 2019 + Movies + Action + + + TVPG + + + 1 + + + + Transformers: The Last Knight + As war with the Transformers rages on, inventor Cade Yeager forms an unlikely alliance with Bumblebee, an English lord and an Oxford professor to save the planet. + + Mark Wahlberg + Anthony Hopkins + Josh Duhamel + + 2017 + Movies + Action + + + TVG + + + 2 + + + + The Mist + Trapped townspeople (Thomas Jane, Marcia Gay Harden, Laurie Holden) face monsters inside and out after a supernatural fog engulfs their Maine community. + + Thomas Jane + Marcia Gay Harden + Laurie Holden + + 2007 + Movies + Horror + + + TVPG + + + 2 + + + + Hell Fest + A serial killer in costume murders visitors at a Halloween theme park, unbeknownst to bystanders who think it's part of the fun. + + Amy Forsyth + Reign Edwards + Bex Taylor-Klaus + + 2018 + Movies + Hallowe'en + Horror + + + TVPG + + + 2 + + + + Santa's Slay + After a millennium of spreading Christmas cheer, Santa Claus (Bill Goldberg) reverts to his demonic self and gives the gift of fear. + + Bill Goldberg + Douglas Smith + Emilie de Ravin + + 2005 + Movies + Christmas + Comedy + + + TVPG + + + 1 + + + + The Price We Pay + After a pawn shop robbery goes wrong, two criminals take refuge at a remote farmhouse to let the heat die down and find something much more menacing. + + Emile Hirsch + Gigi Zumbado + Eleanor Burke + + 2022 + Movies + Action + + + + After Earth + With his father (Will Smith) trapped in the wreckage of their spacecraft, a youth (Jaden Smith) treks across Earth's now-hostile terrain to recover their rescue beacon and signal for help. + + Jaden Smith + Will Smith + Sophie Okonedo + + 2013 + Movies + Sci-Fi + + + TVG + + + 1 + + + + Jeepers Creepers 3 + A sergeant and his task force embark on a mission to destroy the Creeper on its last day of feeding. The Creeper soon fights back when they get close to discovering its mysterious and dark origins. + + Jonathan Breck + Stan Shaw + Gina Philips + + 2017 + Movies + Horror + + + TVPG + + + + The Mist + Trapped townspeople (Thomas Jane, Marcia Gay Harden, Laurie Holden) face monsters inside and out after a supernatural fog engulfs their Maine community. + + Thomas Jane + Marcia Gay Harden + Laurie Holden + + 2007 + Movies + Horror + + + TVPG + + + 2 + + + + Huckabee + No agenda news, positive entertainment and everyday stories that inspire. + Talk Shows + Religious + + + TVPG + + + + The Story Behind the Story With Mike Rowe + Broadswords In A Pit + True stories about famous people, based on Mike Rowe's wildly popular podcast The Way I Heard It. + Performing Arts + History + + + TVG + + + + The Rosenberg Report + As editor in chief of the daily digital sites All Israel News and All Arab News, New York Times bestselling author Joel C. Rosenberg is a respected geo-political expert on the Middle East; a close-up view of current events and issues. + News + Religious + + + TVG + + + + Michael Youssef + Defending A Lion: Part 4 + Timely Biblical messages from Leading The Way with Dr. Michael Youssef. + Religious + + + TVG + + + + Huckabee + No agenda news, positive entertainment and everyday stories that inspire. + Talk Shows + Religious + + + TVPG + + + + The Story Behind the Story With Mike Rowe + Broadswords In A Pit + True stories about famous people, based on Mike Rowe's wildly popular podcast The Way I Heard It. + Performing Arts + History + + + TVG + + + + The Rosenberg Report + As editor in chief of the daily digital sites All Israel News and All Arab News, New York Times bestselling author Joel C. Rosenberg is a respected geo-political expert on the Middle East; a close-up view of current events and issues. + News + Religious + + + TVG + + + + Jordan Rubin: Brain Boost Collagen + Jordan Rubin, health expert and New York Times' best-selling author, explains why collagen is a superfood and key to healthy living. + Specials + Health + + + + Harvest Crusade 2022 # 1 + As life becomes increasingly unpredictable and chaotic, many people are searching for answers. Here's the good news: when things are very dark, God has a history of doing great things. God has a message of hope and healing. + + Jay Haizlip + Pastor Greg Laurie + Crowder + + Specials + Religious + + + TVG + + + + Harvest Crusade 2022 # 1 + As life becomes increasingly unpredictable and chaotic, many people are searching for answers. Here's the good news: when things are very dark, God has a history of doing great things. God has a message of hope and healing. + + Jay Haizlip + Pastor Greg Laurie + Crowder + + Specials + Religious + + + TVG + + + + Vinia + Israel's Blessing to Your Health + Regular + + + + Praise + October 20, 2023 - Dr. Phil and Robin McGraw + Matt and Laurie Crouch host Dr. Phil and Robin McGraw. + Religious + + + TVG + + + + Jordan Rubin: SuperFruits / SuperVeggies + Sheila Walsh hosts Jordan Rubin and Todd Vincent from Nashville. + Specials + + + TVG + + + + Harvest With Pastor Greg Laurie + Pastor and evangelist Greg Laurie teaches the simple and life-changing message of the Gospel. + Religious + + + TVG + + + + Jordan Rubin: Multi Collagen Protein + Matt and Laurie Crouch with Tom Newman host Jordan Rubin and Josh Axe. + + Matt Crouch + Laurie Crouch + Jordan Rubin + + Specials + Religious + + + TVG + + + + Harvest With Pastor Greg Laurie + Pastor and evangelist Greg Laurie teaches the simple and life-changing message of the Gospel. + Religious + + + TVG + + + + Allen Jackson Ministries + Experience the Power of the Spirit Part 1 + From World Outreach Church in Murfreesboro, Tenn., pastor Allen Jackson mentors and challenges individuals with a biblical message that helps them become more fully devoted followers of Jesus Christ. + Religious + + + TVG + + + + Jordan Rubin: SuperFruits / SuperVeggies + Sheila Walsh hosts Jordan Rubin and Todd Vincent from Nashville. + Specials + + + TVG + + + + Vinia + Israel's Blessing to Your Health + Regular + + + + From His Heart With Jeff Schreve + Jesus on Prayer + Luke 11:1-13; prayer is critical to leading a victorious Christian life, and it's critical for one to see God do great and mighty things in and through everyone; Pastor Jeff Schreve shares five aspects of prayer. + Religious + + + + Live With Passion! + Father Cedric Pisegna is a Catholic priest with a program to inspire others and encourage them to live with passion. + Religious + + + + Dr. Tony Evans + The Frequency of Heaven + Dr. Tony Evans discusses practical issues of today. + Religious + + + TVG + + + + Steven Furtick + It's Your Door Part 3 + Pastor Steven delivers a walkthrough to the ups and downs of life. + Religious + + + TVG + + + + Touching Lives With James Merritt + As God Sees Fit + Touching Lives is the international broadcast ministry of Dr. James Merritt. + Religious + + + TVG + + + + Kingdom Connection Jentezen Franklin + The reality of a relationship with God. + Religious + + + TVG + + + + Turning Point With Dr. David Jeremiah + Salvation in the Tribulation + David Jeremiah looks at the Tribulation. + Religious + + + TVG + + + + Robert Jeffress + The Seventh Commandment - Keep Marriage Holy + The teaching ministry of Dr. Robert Jeffress. + Religious + + + TVG + + + + Winning Walk + Anxiety + The international teaching ministry of the Rev. Dr. Ed Young, senior pastor of Second Baptist Church in Houston, proclaims the truth of God's word to people throughout the world. + Religious + + + TVG + + + + Hagee Ministries + The mission of John Hagee Ministries is to take the Gospel to all the world and to all generations. + Religious + + + TVG + + + + Rick Warren + Set Free From Me Part 3 + Pastor Rick shares biblical truth and practical tools for living the full life God desires for everyone. + + Rick Warren + + Religious + + + TVG + + + + Allen Jackson Ministries + Experience the Power of the Spirit Part 1 + From World Outreach Church in Murfreesboro, Tenn., pastor Allen Jackson mentors and challenges individuals with a biblical message that helps them become more fully devoted followers of Jesus Christ. + Religious + + + TVG + + + + Joel Osteen + Joel and Victoria Osteen's message of unconditional love and unending hope reaches everyone across the world. + Religious + + + TVPG + + + + PowerPoint With Jack Graham + Glorifing God and making an eternal difference in this generation. + + Dr. Jack Graham + + Religious + + + TVG + + + + It is Written with John Bradshaw + Jesus and Racism + A New Testament story shows how God feels about racism and demonstrates that love and unity can be accomplished when the Holy Spirit is allowed to change hearts. + Religious + + + TVG + + + + Hour Of Power with Bobby Schuller + Exciting interviews, inspiring music, and encouraging messages filled with spiritual principles and practices to help people live lives of meaning. + Religious + + + TVG + + + + Frankie Mazzapica + How Long Will I Struggle? + Frankie Mazzapica shares an encouraging message from Celebration Church in The Woodlands, Texas. + Religious + + + TVG + + + + Life Today With James Robison + Max Lucado: Wrestling With God + The author ofGuests: Max Lucado.. + Talk Shows + Religious + + + TVG + + + + David Holland: Christmas Grace + Matt and Laurie discuss David Holland's book,. + Religious + + + TVG + + + + Greg Ford: The Power of One + The Frenemy Test + Greg Ford teaches people to live powerful lives by learning and living God's word. + Religious + + + TVG + + + + Michael Youssef + Defending A Lion: Part 4 + Timely Biblical messages from Leading The Way with Dr. Michael Youssef. + Religious + + + TVG + + + + Kerry Shook Ministries + Power to Change + Pastor Kerry reviews the Beatitudes to share Jesus' pathway for positive change. + Religious + + + TVG + + + + 18 Minutes With Jesus by Robert Jeffress + Straight Talk About Your Worship + Did you know you can read Jesus's Sermon on the Mount in about 18 minutes? Yet packed into this short talk are more life-changing teachings than anywhere else in Scripture. Jesus dives past the surface into the heart of what we need and desire. + Religious + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + Keys to Breakthrough + God's promises are for everyone; discovering one's own role in pursuing God's best. + Religious + + + TVG + + + + Hagee Ministries + The mission of John Hagee Ministries is to take the Gospel to all the world and to all generations. + Religious + + + TVG + + + + Pastor Robert Morris Ministries + Passing the Prophetic Test + Pastor Robert explains that when God gives us a prophetic word, it is submitted, tested, and held by the Word of God. + Religious + + + TVG + + + + Joel Osteen + Joel and Victoria Osteen's message of unconditional love and unending hope reaches everyone across the world. + Religious + + + TVPG + + + + Turning Point With Dr. David Jeremiah + Salvation in the Tribulation + David Jeremiah looks at the Tribulation. + Religious + + + TVG + + + + Huckabee + No agenda news, positive entertainment and everyday stories that inspire. + Talk Shows + Religious + + + TVPG + + + + The Eric Metaxas Radio Show + Offering compelling perspective on American culture, political life, and stories making news around the corner and across the globe. + + Matt Crouch + Laurie Crouch + Phil Robertson + + Political + Performing Arts + + + TVG + + + + Creflo Dollar + The Stance of the Believer Part 2 + Dr. Creflo Dollar ministers to people from all backgrounds with hopes for change; Creflo helps viewers find ways to renew their faith, mind, and spirit; Creflo and his wife Taffi share their vision for everyone to understand God's love and promises. + Religious + + + TVG + + + + Praise + Cece Winans: Believe for It + Singer-author CeCe Winans'. + Religious + + + TVG + + + + Praise + October 24, 2023 - Joyce Meyer + Matt and Laurie Crouch host Joyce Meyer. + + Joyce Meyer + + Religious + + + TVG + + + + Vinia: A Miracle Superfood From The Holyland + Matt Crouch tours the BioHarvest facility with CEO Ilan Sobel to learn about the physical benefits of Vinia. + Specials + Religious + + + TVY7 + + + + Jordan Rubin: Brain Boost Collagen + Jordan Rubin, health expert and New York Times' best-selling author, explains why collagen is a superfood and key to healthy living. + Specials + Health + + + + Praise + Jonathan Cahn: The Return of the Gods + TBN's flagship program features in-depth interviews with pastors, authors, musicians, athletes and politicians. + Religious + + + TVG + + + + D. James Kennedy Ministries Presents: Truths That Transform + Topical discussions, feature stories, incisive commentary, and timely excerpts from the powerful messages of D. James Kennedy. + Religious + + + + Vinia: A Miracle Superfood From The Holyland + Matt Crouch tours the BioHarvest facility with CEO Ilan Sobel to learn about the physical benefits of Vinia. + Specials + Religious + + + TVY7 + + + + Jordan Rubin: SuperFruits / SuperVeggies + Sheila Walsh hosts Jordan Rubin and Todd Vincent from Nashville. + Specials + + + TVG + + + + Allen Jackson Ministries + Experience the Power of the Spirit Part 2 + From World Outreach Church in Murfreesboro, Tenn., pastor Allen Jackson mentors and challenges individuals with a biblical message that helps them become more fully devoted followers of Jesus Christ. + Religious + + + TVG + + + + Steven Furtick + God's Got Your Back Part 1B + From Elevation Church in Charlotte, N.C., Pastor Steven Furtick offers inspirational messages through his sermons. + Religious + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + The Journey to Spiritual Maturity + Going further on one's journey with God; Joyce shares truths about going deeper and growing up in one's walk with the Lord. + Religious + + + TVG + + + + Andrew Wommack: Gospel Truth + Living in the Balance of Grace and Faith + Wommack covers the truth of grace through faith and the rest of God, and how believers move into that, leaving the stress and the struggle to perform behind. + Religious + + + TVG + + + + Turning Point With Dr. David Jeremiah + The Great Disappearance Interview with Dr. David Jeremiah + Dr. Jeremiah and Sheila Walsh discuss the rapture.Guests: Sheila Walsh.. + Religious + + + TVG + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + TVG + + + + Robert Jeffress + Food for Thought + A study of the Lord's Prayer; God's invitation to pray. + Religious + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + The Journey to Spiritual Maturity + Going further on one's journey with God; Joyce shares truths about going deeper and growing up in one's walk with the Lord. + Religious + + + TVG + + + + Creflo Dollar + Dr. Creflo Dollar ministers to people from all backgrounds with hopes for change; Creflo helps viewers find ways to renew their faith, mind, and spirit; Creflo and his wife Taffi share their vision for everyone to understand God's love and promises. + Religious + + + TVG + + + + Hagee Ministries + The mission of John Hagee Ministries is to take the Gospel to all the world and to all generations. + Religious + + + TVG + + + + Joel Osteen + Joel and Victoria Osteen's message of unconditional love and unending hope reaches everyone across the world. + Religious + + + TVPG + + + + Allen Jackson Ministries + From World Outreach Church in Murfreesboro, Tenn., pastor Allen Jackson mentors and challenges individuals with a biblical message that helps them become more fully devoted followers of Jesus Christ. + Religious + + + + Steven Furtick + From Elevation Church in Charlotte, N.C., Pastor Steven Furtick offers inspirational messages through his sermons. + Religious + + + TVG + + + + Kingdom Connection Jentezen Franklin + The reality of a relationship with God. + Religious + + + TVG + + + + Robert Jeffress + The teaching ministry of Dr. Robert Jeffress. + Religious + + + TVG + + + + Pastor Robert Morris Ministries + The Ten Financial Commandments + Pastor Robert concludes. + Religious + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + Author and Bible teacher Joyce Meyer shares encouragement to help people enjoy daily life. + Religious + + + TVG + + + + Better Together + Discussing faith, family, friends and more, while building a community of women committed to living life together and making the world a better place. + Religious + Talk Shows + + + TVG + + + + Andrew Wommack: Gospel Truth + Living in the Balance of Grace and Faith + Wommack covers the truth of grace through faith and the rest of God, and how believers move into that, leaving the stress and the struggle to perform behind. + Religious + + + TVG + + + + The 700 Club + News and commentary, interviews, feature stories and Christian ministry. + Talk Shows + Religious + + + + Turning Point With Dr. David Jeremiah + The Great Disappearance Interview with Dr. David Jeremiah + Dr. Jeremiah and Sheila Walsh discuss the rapture.Guests: Sheila Walsh.. + Religious + + + TVG + + + + Steven Furtick + From Elevation Church in Charlotte, N.C., Pastor Steven Furtick offers inspirational messages through his sermons. + Religious + + + TVG + + + + The Ramsey Show + Every weekday on The Ramsey Show on TBN you can get the very best of Dave Ramsey as he helps people from all walks of life get out of debt, manage their money, build wealth, navigate relationships, guide their careers, and a lot more. + Religious + Business + + + TVG + + + + New Season with Samuel Rodriguez + Pastor Sam aims to usher in a. + Religious + + + TVG + + + + Jewish Voice with Jonathan Bernis + Exploring the Jewish roots of Christian faith; learning how bible prophecy and today's world events surrounding Israel are connected. + Religious + Talk Shows + + + TVG + + + + The Potter's Touch + Worship In The Wilderness Part 2 + God wants you to come back to Him. + Religious + + + TVG + + + + Centerpoint + With a nightly lineup of news and investigative professionals, along with a roundtable of seasoned experts and respected Christian leaders, Centerpoint will equip viewers with understanding on the issues of the day, and how they impact you. + Religious + News + + + TVPG + + + + Praise + TBN's flagship program features in-depth interviews with pastors, authors, musicians, athletes and politicians. + Religious + + + TVG + + + + Takeaways With Kirk Cameron + Family, Adoption and Foster Care + Kirk Cameron is joined by Steven Curtis Chapman to discuss his incredible music career and his family's adoption journey. Then, Tori Hope Petersen will share her powerful testimony and story growing up in foster care. + + Steven Curtis Chapman + Tori Hope Petersen + + Religious + + + TVG + + + + The Daniel Dilemma with Chris Hodges + The Priority of Love + In our changing and conflicting culture, how can we live with conviction, compassion, and influence? How do we stand firm and love well at the same time? Find out. + + Chris Hodges + + Religious + + + TVPG + + + + Centerpoint + With a nightly lineup of news and investigative professionals, along with a roundtable of seasoned experts and respected Christian leaders, Centerpoint will equip viewers with understanding on the issues of the day, and how they impact you. + Religious + News + + + TVPG + + + + Praise + TBN's flagship program features in-depth interviews with pastors, authors, musicians, athletes and politicians. + Religious + + + TVG + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + TVG + + + + Takeaways With Kirk Cameron + Family, Adoption and Foster Care + Kirk Cameron is joined by Steven Curtis Chapman to discuss his incredible music career and his family's adoption journey. Then, Tori Hope Petersen will share her powerful testimony and story growing up in foster care. + + Steven Curtis Chapman + Tori Hope Petersen + + Religious + + + TVG + + + + Takeaways With Kirk Cameron + Family, Adoption and Foster Care + Kirk Cameron is joined by Steven Curtis Chapman to discuss his incredible music career and his family's adoption journey. Then, Tori Hope Petersen will share her powerful testimony and story growing up in foster care. + + Steven Curtis Chapman + Tori Hope Petersen + + Religious + + + TVG + + + + The Daniel Dilemma with Chris Hodges + The Priority of Love + In our changing and conflicting culture, how can we live with conviction, compassion, and influence? How do we stand firm and love well at the same time? Find out. + + Chris Hodges + + Religious + + + TVPG + + + + Walter Wangerin Jr: The Book of God + Matt and Laurie Crouch host Walter Wangerin Jr. in Chicago. + + Laurie Crouch + Walter Wangerin Jr. + + Specials + Religious + + + TVG + + + + Vinia + Israel's Blessing to Your Health + Regular + + + + Harvest Crusade 2023 + At SoCal Harvest 2022, November 5 and 6, God has a message of hope and healing for those who are anxious about what the future holds for this crazy mixed-up world. Join us at Angel Stadium of Anaheim for an amazing weekend. + Specials + Religious + + + TVG + + + + Vinia: A Miracle Superfood From The Holyland + Matt Crouch tours the BioHarvest facility with CEO Ilan Sobel to learn about the physical benefits of Vinia. + Specials + Religious + + + TVY7 + + + + Praise + TBN's flagship program features in-depth interviews with pastors, authors, musicians, athletes and politicians. + Religious + + + TVG + + + + Allen Jackson Ministries + Let's Get Started Part 1 + From World Outreach Church in Murfreesboro, Tenn., pastor Allen Jackson mentors and challenges individuals with a biblical message that helps them become more fully devoted followers of Jesus Christ. + Religious + + + TVG + + + + Steven Furtick + God's Got Your Back Part 2B + Steven Furtick focuses on the strength of God in everyday struggles. + Religious + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + The Journey to Spiritual Maturity + Joyce shares how the Holy Spirit helps believers. + Religious + + + TVG + + + + Andrew Wommack: Gospel Truth + Living in the Balance of Grace and Faith + Wommack covers the truth of grace through faith and the rest of God, and how believers move into that, leaving the stress and the struggle to perform behind. + Religious + + + TVG + + + + Turning Point With Dr. David Jeremiah + A Great Day + Learning about Christ's return. + Religious + + + TVG + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + + Robert Jeffress + Our Greatest Need - Part 1 + Exploring Jesus' blueprint for praying. + Religious + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + The Journey to Spiritual Maturity + Joyce shares how the Holy Spirit helps believers. + Religious + + + TVG + + + + Creflo Dollar + 10 Signs of Emotional Maturity + Dr. Creflo Dollar ministers to people from all backgrounds with hopes for change; Creflo helps viewers find ways to renew their faith, mind, and spirit; Creflo and his wife Taffi share their vision for everyone to understand God's love and promises. + Religious + + + TVG + + + + Hagee Ministries + The Meek With a Good Appetite + The mission of John Hagee Ministries is to take the Gospel to all the world and to all generations. + Religious + + + TVG + + + + Joel Osteen + Continual Joy + Joel and Victoria Osteen's message of unconditional love and unending hope reaches everyone across the world. + Religious + + + TVPG + + + + Allen Jackson Ministries + Let's Get Started Part 1 + From World Outreach Church in Murfreesboro, Tenn., pastor Allen Jackson mentors and challenges individuals with a biblical message that helps them become more fully devoted followers of Jesus Christ. + Religious + + + TVG + + + + Steven Furtick + God's Got Your Back Part 2B + Steven Furtick focuses on the strength of God in everyday struggles. + Religious + + + TVG + + + + Kingdom Connection Jentezen Franklin + The reality of a relationship with God. + Religious + + + TVG + + + + Robert Jeffress + The Third Commandment - Revere God's Name + The teaching ministry of Dr. Robert Jeffress. + Religious + + + TVG + + + + Pastor Robert Morris Ministries + Relevant Fisherman + Pastor Robert begins the. + Religious + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + The Journey to Spiritual Maturity + Joyce shares how the Holy Spirit helps believers. + Religious + + + TVG + + + + Better Together + Do We Have Free Will? + Jamie Ivey, Irene Rollins, Lisa Whittle, Donna Pisani, and Sharon Hodde Miller explain the difference between conviction and condemnation in this transparent conversation about the power of free will. + + Irene Rollins + Lisa Whittle + Donna Pisani + + Religious + Talk Shows + + + TVPG + + + + Andrew Wommack: Gospel Truth + Living in the Balance of Grace and Faith + Wommack covers the truth of grace through faith and the rest of God, and how believers move into that, leaving the stress and the struggle to perform behind. + Religious + + + TVG + + + + The 700 Club + News and commentary, interviews, feature stories and Christian ministry. + Talk Shows + Religious + + + + Turning Point With Dr. David Jeremiah + A Great Day + Learning about Christ's return. + Religious + + + TVG + + + + Steven Furtick + God's Got Your Back Part 2B + Steven Furtick focuses on the strength of God in everyday struggles. + Religious + + + TVG + + + + The Ramsey Show + Every weekday on The Ramsey Show on TBN you can get the very best of Dave Ramsey as he helps people from all walks of life get out of debt, manage their money, build wealth, navigate relationships, guide their careers, and a lot more. + Religious + Business + + + TVG + + + + Harvest With Pastor Greg Laurie + Pastor and evangelist Greg Laurie teaches the simple and life-changing message of the Gospel. + Religious + + + TVG + + + + Dr. Tony Evans + The Frequency of Heaven + Dr. Tony Evans discusses practical issues of today. + Religious + + + TVG + + + + The Potter's Touch + The Struggle To Relevance + Through struggle, service, surrender, and submission, Christians can grab onto God's promises and purpose. + Religious + + + TVG + + + + Centerpoint + With a nightly lineup of news and investigative professionals, along with a roundtable of seasoned experts and respected Christian leaders, Centerpoint will equip viewers with understanding on the issues of the day, and how they impact you. + Religious + News + + + TVPG + + + + Heroes Of The Faith With Erick Stakelbeck + Specials + Religious + + + + Joyce Meyer Enjoying Everyday Life + The Journey to Spiritual Maturity + Joyce shares how the Holy Spirit helps believers. + Religious + + + TVG + + + + Living Proof With Beth Moore + The Present Part 1 + God has a present for one. + Religious + + + TVG + + + + Better Together + How Jesus Gave Thanks + Sharing lessons learned from the life of Jesus; even before the Last Supper on his way to the cross, Jesus never missed an opportunity to give thanks. + + Robyn Wilkerson + Jamie Ivey + Toni Collier + + Religious + Talk Shows + + + TVPG + + + + Centerpoint + With a nightly lineup of news and investigative professionals, along with a roundtable of seasoned experts and respected Christian leaders, Centerpoint will equip viewers with understanding on the issues of the day, and how they impact you. + Religious + News + + + TVPG + + + + Heroes Of The Faith With Erick Stakelbeck + Specials + Religious + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + + Michael Youssef + Defending A Lion: Part 4 + Timely Biblical messages from Leading The Way with Dr. Michael Youssef. + Religious + + + TVG + + + + Sekulow + ACLJ Case Update + Jay Sekulow speaks about the protection of religious freedoms in America. + Religious + News + + + TVG + + + + Christine Caine + Traveling the world and inspiring audiences by teaching the Gospel. + Religious + + + TVG + + + + Jewish Voice with Jonathan Bernis + Exploring the Jewish roots of Christian faith; learning how bible prophecy and today's world events surrounding Israel are connected. + Religious + Talk Shows + + + TVG + + + + Jordan Rubin: SuperFruits / SuperVeggies + Sheila Walsh hosts Jordan Rubin and Todd Vincent from Nashville. + Specials + + + TVG + + + + Harvest Crusade 2023 + At SoCal Harvest 2022, November 5 and 6, God has a message of hope and healing for those who are anxious about what the future holds for this crazy mixed-up world. Join us at Angel Stadium of Anaheim for an amazing weekend. + Specials + Religious + + + TVG + + + + Christine Caine + Traveling the world and inspiring audiences by teaching the Gospel. + Religious + + + TVG + + + + Jordan Rubin: Brain Boost Collagen + Jordan Rubin, health expert and New York Times' best-selling author, explains why collagen is a superfood and key to healthy living. + Specials + Health + + + + Allen Jackson Ministries + Let's Get Started Part 2 + From World Outreach Church in Murfreesboro, Tenn., pastor Allen Jackson mentors and challenges individuals with a biblical message that helps them become more fully devoted followers of Jesus Christ. + Religious + + + TVG + + + + Steven Furtick + God's Got Your Back Part 2C + Pastor Steven Furtick shares that God is fighting for followers, even if they don't see it. + Religious + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + Claiming What Is Rightfully Yours + There are many promises in the Bible; Joyce shares how to receive one's God-given inheritance. + Religious + + + TVG + + + + Andrew Wommack: Gospel Truth + Living in the Balance of Grace and Faith + Wommack covers the truth of grace through faith and the rest of God, and how believers move into that, leaving the stress and the struggle to perform behind. + Religious + + + TVG + + + + Turning Point With Dr. David Jeremiah + At Any Moment + The rapture of the church. + Religious + + + TVG + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + TVG + + + + Robert Jeffress + Our Greatest Need - Part 2 + Exploring Jesus' blueprint for praying. + Religious + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + Claiming What Is Rightfully Yours + There are many promises in the Bible; Joyce shares how to receive one's God-given inheritance. + Religious + + + TVG + + + + Creflo Dollar + How To Mature Through Pressure + Dr. Creflo Dollar ministers to people from all backgrounds with hopes for change; Creflo helps viewers find ways to renew their faith, mind, and spirit; Creflo and his wife Taffi share their vision for everyone to understand God's love and promises. + Religious + + + TVG + + + + Hagee Ministries + Rock Solid Answer + The mission of John Hagee Ministries is to take the Gospel to all the world and to all generations. + Religious + + + TVG + + + + Joel Osteen + Look Again + Joel reminds people not to give up on their dreams. + Religious + + + TVPG + + + + Allen Jackson Ministries + Let's Get Started Part 2 + From World Outreach Church in Murfreesboro, Tenn., pastor Allen Jackson mentors and challenges individuals with a biblical message that helps them become more fully devoted followers of Jesus Christ. + Religious + + + TVG + + + + Steven Furtick + God's Got Your Back Part 2C + Pastor Steven Furtick shares that God is fighting for followers, even if they don't see it. + Religious + + + TVG + + + + Kingdom Connection Jentezen Franklin + Israel In Prophecy Part 1 + The reality of a relationship with God. + Religious + + + TVG + + + + Robert Jeffress + The Fourth Commandment - Value God's Day + The teaching ministry of Dr. Robert Jeffress. + Religious + + + TVG + + + + Pastor Robert Morris Ministries + Engaging Influencers + Pastor Robert continues the. + Religious + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + Claiming What Is Rightfully Yours + There are many promises in the Bible; Joyce shares how to receive one's God-given inheritance. + Religious + + + TVG + + + + Better Together + Find Freedom from Your Past + Jamie Ivey, Irene Rollins, Lisa Whittle, Donna Pisani, and Sharon Hodde Miller share how to heal past wounds, redeem a broken life, and find a new voice. + + Irene Rollins + Lisa Whittle + Donna Pisani + + Religious + Talk Shows + + + TVPG + + + + Andrew Wommack: Gospel Truth + Living in the Balance of Grace and Faith + Wommack covers the truth of grace through faith and the rest of God, and how believers move into that, leaving the stress and the struggle to perform behind. + Religious + + + TVG + + + + The 700 Club + News and commentary, interviews, feature stories and Christian ministry. + Talk Shows + Religious + + + + Turning Point With Dr. David Jeremiah + At Any Moment + The rapture of the church. + Religious + + + TVG + + + + Steven Furtick + God's Got Your Back Part 2C + Pastor Steven Furtick shares that God is fighting for followers, even if they don't see it. + Religious + + + TVG + + + + The Ramsey Show + Every weekday on The Ramsey Show on TBN you can get the very best of Dave Ramsey as he helps people from all walks of life get out of debt, manage their money, build wealth, navigate relationships, guide their careers, and a lot more. + Religious + Business + + + TVG + + + + Billy Graham Classic Crusades + Building Relationships + Billy Graham talks about learning to love your neighbor. + Religious + + + TVG + + + + Jim Scudder, Jr.: InGrace + Exodus Found - Egypt Part 1 + Explore ancient Egypt with Jim Scudder, Jr and find out for himself if the Exodus really happened. + + Jim Scudder + + Religious + + + TVG + + + + Life Today With James Robison + Carol Hart: Storming the Gates of Hell + One of Life's missions partners shares true stories from the front lines of sex trafficking and the miraculous restoration taking place in those rescued from evil.Guests: Carol Hart.. + Talk Shows + Religious + + + TVG + + + + Jordan Rubin: Brain Boost Collagen + Jordan Rubin, health expert and New York Times' best-selling author, explains why collagen is a superfood and key to healthy living. + Specials + Health + + + + Turning Point With Dr. David Jeremiah + Paul and His Friends + The lessons learned from each of Paul's friendships. + Religious + + + TVG + + + + Dr. Tony Evans + Watching Heaven Open + Dr. Tony Evans discusses practical issues of today. + Religious + + + TVG + + + + Praise + TBN's flagship program features in-depth interviews with pastors, authors, musicians, athletes and politicians. + Religious + + + TVG + + + + Crushing: God Turns Pressure into Power + Pruning Is Not Punishment + Bishop T. D. Jakes shares from his book. + + Matt Crouch + Laurie Crouch + T.D. Jakes + + Specials + Religious + + + TVG + + + + Amazing Facts With Doug Batchelor + Our Crucial Need for the Holy Spirit + Pastor Doug Batchelor discusses the importance of the Holy Spirit. + Religious + + + TVG + + + + Takeaways With Kirk Cameron + Episode 86: A Godly Perspective and Joy in the Kitchen + Kirk Cameron is joined by Elisabeth Hasselbeck to discuss the importance of contentment and godly perspective; Aarti Sequeira shares the recipe for joy in the kitchen. + + Elisabeth Hasselbeck + Aarti Sequeira + + Religious + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + Judgment and Criticism + People get hurt by unfair judgments, criticism and gossip; God's Word equips believers to deal with conflict and difficult people. + Religious + + + TVG + + + + Jordan Rubin: Multi Collagen Protein Non-Com + Dr. Axe, doctor of natural medicine, clinical nutritionist, Jordan Rubin health expert and NY Times best selling author, explains how collagen is a superfood that holds the key to healthy living. + Specials + Religious + + + TVG + + + + Huckabee + No agenda news, positive entertainment and everyday stories that inspire. + Talk Shows + Religious + + + TVPG + + + + Music, Moments & Memories + Geoff Moore + + Jaci Velasquez + Eddie DeGarmo + + Religious + Music + + + TVG + + + + This Christmas Night + Franklin Graham joins to talk about Billy and Ruth Graham's book. + + Matt Crouch + Laurie Crouch + + Specials + Talk Shows + + + TVG + + + + Xtreme Life + The Games + The first. + Sports + Religious + + + TVG + + + + Jordan Rubin: Brain Boost Collagen + Jordan Rubin, health expert and New York Times' best-selling author, explains why collagen is a superfood and key to healthy living. + Specials + Health + + + + Praise + Rick Warren: The Purpose Driven Life + Rick Warren discusses his future plans, including re-opening the Saddleback renovated worship center, his life and legacy, and his time spent pastoring. + + Matt Crouch + Rick Warren + + Religious + + + TVG + + + + Praise + Harvest Crusade 2021 + Jay Haizlip hosts from Anaheim, Calif. + + Jay Haizlip + Pastor Greg Laurie + Phil Wickham + + Religious + + + TVG + + + + Hagee Ministries + The mission of John Hagee Ministries is to take the Gospel to all the world and to all generations. + Religious + + + TVG + + + + Turning Point With Dr. David Jeremiah + Salvation in the Tribulation + David Jeremiah looks at the Tribulation. + Religious + + + TVG + + + + Destined to Win + Frank Santora encourages winning in life with Jesus Christ as the center; from Faith Church in New Milford, Conn. + Religious + + + + Vinia: A Miracle Superfood From The Holyland + Matt Crouch tours the BioHarvest facility with CEO Ilan Sobel to learn about the physical benefits of Vinia. + Specials + Religious + + + TVY7 + + + + Marcus Mecum + Leaving an eternal legacy through the wisdom and life-changing truths from God's word. + Religious + + + TVG + + + + Robert Jeffress + The Seventh Commandment - Keep Marriage Holy + The teaching ministry of Dr. Robert Jeffress. + Religious + + + TVG + + + + Pastor Robert Morris Ministries + Passing the Prophetic Test + Pastor Robert explains that when God gives us a prophetic word, it is submitted, tested, and held by the Word of God. + Religious + + + TVG + + + + Kerry Shook Ministries + American minister and best-selling author Kerry Shook presents innovative, Bible-based messages that creatively connect with today's culture. + Religious + + + TVG + + + + Dr. Tony Evans + Dr. Tony Evans discusses practical issues of today. + Religious + + + TVG + + + + The Potter's Touch + Bishop T.D. Jakes offers practical and spiritual solutions to life's toughest questions. + Religious + + + TVG + + + + Andrew Wommack: Gospel Truth + Living in the Balance of Grace & Faith: Episode 5 + Wommack discusses the purpose for grace and faith and how to apply the perfect combination of them in one's life. + Religious + + + TVG + + + + Praying Grace + Volatile and fear-filled times are good times to know how to pray effectively and bring heaven's power to earth and change circumstances for the better. + + Matt Crouch + David Holland + + Specials + Religious + + + TVG + + + + Praise + Matt and Laurie Crouch host Creflo and Taffi Dollar from Dallas, TX. + + Creflo A. Dollar + Taffi Dollar + + Religious + + + TVG + + + + Your Move With Andy Stanley + Author Andy Stanley helps the viewer to make better decisions and live with fewer regrets. + Religious + Lifestyle + + + TVG + + + + Allen Jackson Ministries + From World Outreach Church in Murfreesboro, Tenn., pastor Allen Jackson mentors and challenges individuals with a biblical message that helps them become more fully devoted followers of Jesus Christ. + Religious + + + + Turning Point With Dr. David Jeremiah + Salvation in the Tribulation + David Jeremiah looks at the Tribulation. + Religious + + + TVG + + + + Amazing Facts With Doug Batchelor + Pastor Doug Batchelor reveals. + Religious + + + TVG + + + + Passion With Louie Giglio + Messages of hope and redemption from Passion City Church in Atlanta, Georgia, with Louie Giglio. + Religious + + + + The Potter's Touch + Bishop T.D. Jakes offers practical and spiritual solutions to life's toughest questions. + Religious + + + TVG + + + + Kingdom Connection Jentezen Franklin + The reality of a relationship with God. + Religious + + + TVG + + + + Marcus Mecum + Leaving an eternal legacy through the wisdom and life-changing truths from God's word. + Religious + + + TVG + + + + A.R. Bernard + Navigating the intersection of faith and culture. + Religious + + + TVG + + + + Live With Passion! + Father Cedric Pisegna is a Catholic priest with a program to inspire others and encourage them to live with passion. + Religious + + + + Steven Furtick + It's Your Door Part 3 + Pastor Steven delivers a walkthrough to the ups and downs of life. + Religious + + + TVG + + + + Answers With Bayless Conley + Bayless Conley spreads the word of God. + Religious + + + + Joel Osteen + Joel and Victoria Osteen's message of unconditional love and unending hope reaches everyone across the world. + Religious + + + TVPG + + + + Joseph Prince + Powerful Keys to Unlocking God's Word + How to start reading the Bible; keys to receiving from God's Word. + Religious + + + + Life Today With James Robison + James and Betty Robison host guests who speak on a variety of topics, offering hope and help. + Talk Shows + Religious + + + TVG + + + + Kingdom Connection Jentezen Franklin + The reality of a relationship with God. + Religious + + + TVG + + + + Turning Point With Dr. David Jeremiah + Dr. David Jeremiah's goal is to deliver the unchanging Word of God to an ever-changing world. + Religious + + + TVG + + + + Touching Lives With James Merritt + Dr. James Merritt desires to make the name of Jesus Christ known as well as to help empower Christians in their daily walk with God; Dr. Merritt's purpose remains to bring the lost to a personal encounter with Jesus Christ. + Religious + + + + Takeaways With Kirk Cameron + Episode 86: A Godly Perspective and Joy in the Kitchen + Kirk Cameron is joined by Elisabeth Hasselbeck to discuss the importance of contentment and godly perspective; Aarti Sequeira shares the recipe for joy in the kitchen. + + Elisabeth Hasselbeck + Aarti Sequeira + + Religious + + + TVG + + + + Amazing Facts With Doug Batchelor + Pastor Doug Batchelor reveals. + Religious + + + TVG + + + + Huckabee + No agenda news, positive entertainment and everyday stories that inspire. + Talk Shows + Religious + + + TVPG + + + + Joyce Meyer Enjoying Everyday Life + Author and Bible teacher Joyce Meyer shares encouragement to help people enjoy daily life. + Religious + + + TVG + + + + Turning Point With Dr. David Jeremiah + Paul and His Friends + The lessons learned from each of Paul's friendships. + Religious + + + TVG + + + + The Evans Family Praise + Religious + + + TVG + + + + Alicia Britt Chole: Anonymous + Out of Anonymity + Discover why the hidden years between the fulfillment of God's promises are the most crucial. + Religious + + + TVG + + + + Jonathan Cahn: The Book of Mysteries + A mystery that joins together the Temple the Scapegoat; the geophysics of the Earth; a beautiful mystery from the ancient Hebrew marriage that has everything to do with one's life; a secret hidden in the ancient writings of the rabbis. + Specials + Religious + + + TVG + + + + Joseph Prince: Live the Let Go Life + Joseph Prince provides insight on how to cast worldly cares onto God and inspire decisions that lead to success in life, even miracles. + Religious + + + TVG + + + + Vinia: A Miracle Superfood From The Holyland + Matt Crouch tours the BioHarvest facility with CEO Ilan Sobel to learn about the physical benefits of Vinia. + Specials + Religious + + + TVY7 + + + + Praise + Propel, Ft. Lauderdale - Sarah Jakes Roberts + TBN's flagship program features in-depth interviews with pastors, authors, musicians, athletes and politicians. + + Matt Crouch + Christine Caine + Sarah Jakes Roberts + + Religious + + + TVG + + + + The Potter's Touch + Bishop T.D. Jakes offers practical and spiritual solutions to life's toughest questions. + Religious + + + TVG + + + + Turning Point With Dr. David Jeremiah + The Great Disappearance Interview with Dr. David Jeremiah + Dr. Jeremiah and Sheila Walsh discuss the rapture.Guests: Sheila Walsh.. + Religious + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + Author and Bible teacher Joyce Meyer shares encouragement to help people enjoy daily life. + Religious + + + TVG + + + + Steven Furtick + From Elevation Church in Charlotte, N.C., Pastor Steven Furtick offers inspirational messages through his sermons. + Religious + + + TVG + + + + Joseph Prince + Joseph Prince is a leading voice in proclaiming the gospel around the world through his ministry. + Religious + + + + Robert Jeffress + The teaching ministry of Dr. Robert Jeffress. + Religious + + + TVG + + + + Life Today With James Robison + Jeff Allen: Discovering Hope + Comic Jeff Allen tells of his journey from addiction and despair to purpose and joy.Guests: Jeff Allen.. + Talk Shows + Religious + + + TVG + + + + REAL with Daniel Fusco + The Beauty of Peace + Real life solutions for life's messy problems. + Religious + + + TVG + + + + Creflo Dollar + Learning From the Experience of Others + Dr. Creflo Dollar ministers to people from all backgrounds with hopes for change; Creflo helps viewers find ways to renew their faith, mind, and spirit; Creflo and his wife Taffi share their vision for everyone to understand God's love and promises. + Religious + + + TVG + + + + The Potter's Touch + Worship In The Wilderness Part 2 + God wants you to come back to Him. + Religious + + + TVG + + + + Andrew Wommack: Gospel Truth + Living in the Balance of Grace and Faith + Wommack covers the truth of grace through faith and the rest of God, and how believers move into that, leaving the stress and the struggle to perform behind. + Religious + + + TVG + + + + Better Together + How Couples Communicate + Laurie Crouch, Lisa Bevere, Toni Collier, Rebekah Lyons and Debra Fileta discuss how to overcome communication challenges within marriage. + Religious + Talk Shows + + + TVPG + + + + Praise + Jonathan Cahn: The Josiah Manifesto + Erick Stakelbeck sits down with author, Jonathan Cahn, who discusses his latest book. + + Erick Stakelbeck + Jonathan Cahn + + Religious + + + TVG + + + + Amazing Facts With Doug Batchelor + Pastor Doug Batchelor reveals. + Religious + + + TVG + + + + Allen Jackson Ministries + Experience the Power of the Spirit Part 2 + From World Outreach Church in Murfreesboro, Tenn., pastor Allen Jackson mentors and challenges individuals with a biblical message that helps them become more fully devoted followers of Jesus Christ. + Religious + + + TVG + + + + Turning Point With Dr. David Jeremiah + The Great Disappearance Interview with Dr. David Jeremiah + Dr. Jeremiah and Sheila Walsh discuss the rapture.Guests: Sheila Walsh.. + Religious + + + TVG + + + + Billy Graham Classic Crusades + Building Relationships + Billy Graham talks about learning to love your neighbor. + Religious + + + TVG + + + + Steven Furtick + God's Got Your Back Part 1B + From Elevation Church in Charlotte, N.C., Pastor Steven Furtick offers inspirational messages through his sermons. + Religious + + + TVG + + + + You'll Get Through This + Wait While God Works + Max Lucado discusses trusting God. + Religious + + + + Better Together + The Gift of Freedom + Jamie Ivey, Irene Rollins, Lisa Whittle, Donna Pisani and Sharon Hodde Miller discuss the cost of true freedom and how to maintain this precious gift. + Religious + Talk Shows + + + TVPG + + + + Christine Caine + Citizen of Heaven Part 1 + Traveling the world and inspiring audiences by teaching the Gospel. + + Christine Caine + + Religious + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + The Journey to Spiritual Maturity + Going further on one's journey with God; Joyce shares truths about going deeper and growing up in one's walk with the Lord. + Religious + + + TVG + + + + 180 Change With Mark Strong + Dr. Mark Strong wants to inspire, encourage and equip individuals to fulfill their destinies. + Religious + + + + Joel Osteen + Who Do You Say You Are + Reaching one's destiny by listening to God. + Religious + + + TVPG + + + + Joel Osteen + Positioned for Increase + Letting go of discouragement; trusting in God's provision. + Religious + + + TVPG + + + + Joseph Prince + Joseph Prince is a leading voice in proclaiming the gospel around the world through his ministry. + Religious + + + + Life Today With James Robison + Jeff Allen: Discovering Hope + Comic Jeff Allen tells of his journey from addiction and despair to purpose and joy.Guests: Jeff Allen.. + Talk Shows + Religious + + + TVG + + + + Robert Jeffress + The teaching ministry of Dr. Robert Jeffress. + Religious + + + TVG + + + + Turning Point With Dr. David Jeremiah + The Great Disappearance Interview with Dr. David Jeremiah + Dr. Jeremiah and Sheila Walsh discuss the rapture.Guests: Sheila Walsh.. + Religious + + + TVG + + + + Joseph Prince + The Power of Right Believing + Receiving the Lord's freedom, favor and victory through right believing. + Religious + + + + Praise + Propel, Ft. Lauderdale - Sarah Jakes Roberts + TBN's flagship program features in-depth interviews with pastors, authors, musicians, athletes and politicians. + + Matt Crouch + Christine Caine + Sarah Jakes Roberts + + Religious + + + TVG + + + + Vinia: A Miracle Superfood From The Holyland + Matt Crouch tours the BioHarvest facility with CEO Ilan Sobel to learn about the physical benefits of Vinia. + Specials + Religious + + + TVY7 + + + + Amazing Facts With Doug Batchelor + The Priority of Prayer + Pastor Doug Batchelor defines prayer, discusses the importance of prayer, and explains how people pray. + Religious + + + TVG + + + + Creflo Dollar + Learning From the Experience of Others + Dr. Creflo Dollar ministers to people from all backgrounds with hopes for change; Creflo helps viewers find ways to renew their faith, mind, and spirit; Creflo and his wife Taffi share their vision for everyone to understand God's love and promises. + Religious + + + TVG + + + + You'll Get Through This + Wait While God Works + Max Lucado discusses trusting God. + Religious + + + + Joyce Meyer Enjoying Everyday Life + The Journey to Spiritual Maturity + Going further on one's journey with God; Joyce shares truths about going deeper and growing up in one's walk with the Lord. + Religious + + + TVG + + + + The Nicole Crank Show + Transitions + Transitions are unavoidable, yet so challenging; Delynn Rizzo shares with Nicole how to find renewed perspective and purpose in change. + Religious + + + TVG + + + + Acts of God + The Problem of Pain + Exploring how in the face of personal pain or the suffering of loved ones the Lord can be trusted at all times. + Religious + + + TVPG + + + + Jordan Rubin: CBD Powder Non-Com + God made plants for the betterment of humans; Jordan Rubin and Dr. Josh Axe, co-Founders of Ancient Nutrition, talk about the benefits of CBD, which supports a calm and relaxed state of mind. + Specials + Religious + + + TVG + + + + Alicia Britt Chole: Anonymous + Into the Wilderness + Discover why the hidden years between the fulfillment of God's promises are the most crucial. + Religious + + + TVG + + + + Jonathan Cahn: The Book of Mysteries + A mystery that joins together the Temple the Scapegoat; the geophysics of the Earth; a beautiful mystery from the ancient Hebrew marriage that has everything to do with one's life; a secret hidden in the ancient writings of the rabbis. + Specials + Religious + + + TVG + + + + Joseph Prince: Live the Let Go Life + Joseph Prince provides insight on how to cast worldly cares onto God and inspire decisions that lead to success in life, even miracles. + Religious + + + TVG + + + + Joel Osteen + Designed to Withstand + Joel explains that although life can seem overwhelming, God equips people with everything they need to withstand the storms. + Religious + + + TVPG + + + + Praise + TBN's flagship program features in-depth interviews with pastors, authors, musicians, athletes and politicians. + + Matt Crouch + + Religious + + + TVG + + + + Life Today With James Robison + Kim Gravel: Beyond the Brokenness + Television host and reality star Kim Gravel discusses her personal experience with God and the meaning it instilled in her life.Guests: Kim Gravel.. + Talk Shows + Religious + + + TVG + + + + Turning Point With Dr. David Jeremiah + A Great Day + Learning about Christ's return. + Religious + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + The Journey to Spiritual Maturity + Joyce shares how the Holy Spirit helps believers. + Religious + + + TVG + + + + Steven Furtick + God's Got Your Back Part 2B + Steven Furtick focuses on the strength of God in everyday struggles. + Religious + + + TVG + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + + Robert Jeffress + The teaching ministry of Dr. Robert Jeffress. + Religious + + + TVG + + + + Life Today With James Robison + Kim Gravel: Beyond the Brokenness + Television host and reality star Kim Gravel discusses her personal experience with God and the meaning it instilled in her life.Guests: Kim Gravel.. + Talk Shows + Religious + + + TVG + + + + Joyce Meyer: Battlefield of the Mind + Joyce preaching the word of God. Join Joyce Meyer to discover the power of every word you speak. + Religious + + + TVG + + + + Creflo Dollar + 10 Signs of Emotional Maturity + Dr. Creflo Dollar ministers to people from all backgrounds with hopes for change; Creflo helps viewers find ways to renew their faith, mind, and spirit; Creflo and his wife Taffi share their vision for everyone to understand God's love and promises. + Religious + + + TVG + + + + The Potter's Touch + The Struggle To Relevance + Through struggle, service, surrender, and submission, Christians can grab onto God's promises and purpose. + Religious + + + TVG + + + + Andrew Wommack: Gospel Truth + Living in the Balance of Grace and Faith + Wommack covers the truth of grace through faith and the rest of God, and how believers move into that, leaving the stress and the struggle to perform behind. + Religious + + + TVG + + + + Better Together + How Couples Fight Fair + Laurie Crouch, Lisa Bevere, Toni Collier, Rebekah Lyons and Debra Fileta discuss how to disagree while maintaining love and respect. + Religious + Talk Shows + + + TVPG + + + + Praise + TBN's flagship program features in-depth interviews with pastors, authors, musicians, athletes and politicians. + Religious + + + TVG + + + + Amazing Facts With Doug Batchelor + Pastor Doug Batchelor reveals. + Religious + + + TVG + + + + Allen Jackson Ministries + Let's Get Started Part 1 + From World Outreach Church in Murfreesboro, Tenn., pastor Allen Jackson mentors and challenges individuals with a biblical message that helps them become more fully devoted followers of Jesus Christ. + Religious + + + TVG + + + + Turning Point With Dr. David Jeremiah + A Great Day + Learning about Christ's return. + Religious + + + TVG + + + + Billy Graham Classic Crusades + Building Relationships + Billy Graham talks about learning to love your neighbor. + Religious + + + TVG + + + + Steven Furtick + God's Got Your Back Part 2B + Steven Furtick focuses on the strength of God in everyday struggles. + Religious + + + TVG + + + + Vinia: A Miracle Superfood From The Holyland + Matt Crouch tours the BioHarvest facility with CEO Ilan Sobel to learn about the physical benefits of Vinia. + Specials + Religious + + + TVY7 + + + + Better Together + Do We Have Free Will? + Jamie Ivey, Irene Rollins, Lisa Whittle, Donna Pisani, and Sharon Hodde Miller explain the difference between conviction and condemnation in this transparent conversation about the power of free will. + + Irene Rollins + Lisa Whittle + Donna Pisani + + Religious + Talk Shows + + + TVPG + + + + Christine Caine + Citizen of Heaven Part 2 + Traveling the world and inspiring audiences by teaching the Gospel. + Religious + + + TVG + + + + REAL with Daniel Fusco + The Beauty of Peace + Real life solutions for life's messy problems. + Religious + + + TVG + + + + Winning Walk + Anxiety + The international teaching ministry of the Rev. Dr. Ed Young, senior pastor of Second Baptist Church in Houston, proclaims the truth of God's word to people throughout the world. + Religious + + + TVG + + + + Jordan Rubin: Brain Boost Collagen + Jordan Rubin, health expert and New York Times' best-selling author, explains why collagen is a superfood and key to healthy living. + Specials + Health + + + + Joel Osteen + Continual Joy + Joel and Victoria Osteen's message of unconditional love and unending hope reaches everyone across the world. + Religious + + + TVPG + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + + Life Today With James Robison + Kim Gravel: Beyond the Brokenness + Television host and reality star Kim Gravel discusses her personal experience with God and the meaning it instilled in her life.Guests: Kim Gravel.. + Talk Shows + Religious + + + TVG + + + + Robert Jeffress + The teaching ministry of Dr. Robert Jeffress. + Religious + + + TVG + + + + Turning Point With Dr. David Jeremiah + A Great Day + Learning about Christ's return. + Religious + + + TVG + + + + Greg Ford: The Power of One + The Frenemy Test + Greg Ford teaches people to live powerful lives by learning and living God's word. + Religious + + + TVG + + + + Praise + TBN's flagship program features in-depth interviews with pastors, authors, musicians, athletes and politicians. + + Matt Crouch + + Religious + + + TVG + + + + The Potter's Touch + The Struggle To Relevance + Through struggle, service, surrender, and submission, Christians can grab onto God's promises and purpose. + Religious + + + TVG + + + + Amazing Facts With Doug Batchelor + Walking With the Lord + How do we walk with the Lord? + Religious + + + TVG + + + + Vinia: A Miracle Superfood From The Holyland + Matt Crouch tours the BioHarvest facility with CEO Ilan Sobel to learn about the physical benefits of Vinia. + Specials + Religious + + + TVY7 + + + + You'll Get Through This + More Bounce Back Than Bozo + Max Lucado discusses trusting God. + Religious + + + + Joyce Meyer Enjoying Everyday Life + The Journey to Spiritual Maturity + Joyce shares how the Holy Spirit helps believers. + Religious + + + TVG + + + + Faith Family Church + Speaking Up For The Next Generation + Pastors Mike and Barb Cameneti are lead pastors at Faith Family Church in Canton, Ohio. Pastor Mike's practical teaching of God's Word is challenging thousands of people each week to grow in their walk with God and know their potential in Him. + Religious + + + TVG + + + + Acts of God + Faithful Despite Betrayal + Pastor Bob Russell teaches that to get from the problem of pain to experiencing the purpose of pain, a journey of faithfulness must be taken. + Religious + + + TVPG + + + + Life Today With James Robison + Kim Gravel: Beyond the Brokenness + Television host and reality star Kim Gravel discusses her personal experience with God and the meaning it instilled in her life.Guests: Kim Gravel.. + Talk Shows + Religious + + + TVG + + + + Alicia Britt Chole: Anonymous + The Temptation of Appetite + Discover why the hidden years between the fulfillment of God's promises are the most crucial. + Religious + + + TVG + + + + Jonathan Cahn: The Book of Mysteries + A mystery that joins together the Temple the Scapegoat; the geophysics of the Earth; a beautiful mystery from the ancient Hebrew marriage that has everything to do with one's life; a secret hidden in the ancient writings of the rabbis. + Specials + Religious + + + TVG + + + + Joseph Prince: Live the Let Go Life + Joseph Prince provides insight on how to cast worldly cares onto God and inspire decisions that lead to success in life, even miracles. + Religious + + + TVG + + + + Joel Osteen + Your Faith + Faith is what activates God's power; living in the knowledge that God is bigger than any problems; reaching out to God in faith. + Religious + + + TVPG + + + + Praise + Propel Conference + A21 and Propel Women's founder Christine Caine hosts the Propel Conference with Lisa Harper, Laurie Crouch and Bethel Music in Fort Lauderdale, Florida. + + Matt Crouch + + Religious + + + TVG + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + TVG + + + + Turning Point With Dr. David Jeremiah + At Any Moment + The rapture of the church. + Religious + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + Claiming What Is Rightfully Yours + There are many promises in the Bible; Joyce shares how to receive one's God-given inheritance. + Religious + + + TVG + + + + Steven Furtick + God's Got Your Back Part 2C + Pastor Steven Furtick shares that God is fighting for followers, even if they don't see it. + Religious + + + TVG + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + TVG + + + + Robert Jeffress + The teaching ministry of Dr. Robert Jeffress. + Religious + + + TVG + + + + Life Today With James Robison + Sheila Walsh: The Gifts of Christmas + Author and teacher Sheila Walsh shares Christmas stories that are deeply meaningful to her.Guests: Sheila Walsh.. + Talk Shows + Religious + + + TVG + + + + Joseph Prince + The Power of Right Believing + Receiving the Lord's freedom, favor and victory through right believing. + Religious + + + + Creflo Dollar + How To Mature Through Pressure + Dr. Creflo Dollar ministers to people from all backgrounds with hopes for change; Creflo helps viewers find ways to renew their faith, mind, and spirit; Creflo and his wife Taffi share their vision for everyone to understand God's love and promises. + Religious + + + TVG + + + + The Potter's Touch + Get Your Own Oil + Exploring what is necessary to fuel the journey. + Religious + + + TVG + + + + Andrew Wommack: Gospel Truth + Living in the Balance of Grace and Faith + Wommack covers the truth of grace through faith and the rest of God, and how believers move into that, leaving the stress and the struggle to perform behind. + Religious + + + TVG + + + + Better Together + Overcoming Codependency + Laurie Crouch, Lisa Bevere, Toni Collier, Rebekah Lyons and Debra Fileta share how to create healthy boundaries for a strong marriage and find wholeness in God alone. + Religious + Talk Shows + + + TVPG + + + + Heroes Of The Faith With Erick Stakelbeck + Specials + Religious + + + + Amazing Facts With Doug Batchelor + Pastor Doug Batchelor reveals. + Religious + + + TVG + + + + Allen Jackson Ministries + Let's Get Started Part 2 + From World Outreach Church in Murfreesboro, Tenn., pastor Allen Jackson mentors and challenges individuals with a biblical message that helps them become more fully devoted followers of Jesus Christ. + Religious + + + TVG + + + + Turning Point With Dr. David Jeremiah + At Any Moment + The rapture of the church. + Religious + + + TVG + + + + Billy Graham Classic Crusades + Building Relationships + Billy Graham talks about learning to love your neighbor. + Religious + + + TVG + + + + Steven Furtick + God's Got Your Back Part 2C + Pastor Steven Furtick shares that God is fighting for followers, even if they don't see it. + Religious + + + TVG + + + + You'll Get Through This + Is God Good When Life Isn't? + Max Lucado discusses trusting God. + Religious + + + + Better Together + Find Freedom from Your Past + Jamie Ivey, Irene Rollins, Lisa Whittle, Donna Pisani, and Sharon Hodde Miller share how to heal past wounds, redeem a broken life, and find a new voice. + + Irene Rollins + Lisa Whittle + Donna Pisani + + Religious + Talk Shows + + + TVPG + + + + Christine Caine + Citizen of Heaven Part 3 + Traveling the world and inspiring audiences by teaching the Gospel. + Religious + + + TVG + + + + Vinia: A Miracle Superfood From The Holyland + Matt Crouch tours the BioHarvest facility with CEO Ilan Sobel to learn about the physical benefits of Vinia. + Specials + Religious + + + TVY7 + + + + REAL with Daniel Fusco + The Beauty of Peace + Real life solutions for life's messy problems. + Religious + + + TVG + + + + Joel Osteen + Your Faith + Faith is what activates God's power; living in the knowledge that God is bigger than any problems; reaching out to God in faith. + Religious + + + TVPG + + + + The Polar Express + The conductor (Tom Hanks) of a train to the North Pole guides a boy who questions the existence of Santa Claus. + + Tom Hanks + Michael Jeter + Nona Gaye + + 2004 + Movies + Christmas + Animated + + + TVG + + + 3 + + + + Elf + Adopted as a baby by one of Santa's elves (Bob Newhart), a man (Will Ferrell) leaves the workshop to search for his family in New York. + + Will Ferrell + James Caan + Bob Newhart + + 2003 + Movies + Christmas + Children + + + TVG + + + 3 + + + + National Lampoon's Christmas Vacation + The Griswolds (Chevy Chase, Beverly D'Angelo) spend the holiday in a garish way, especially when a country cousin (Randy Quaid) pulls up in an RV. + + Chevy Chase + Beverly D'Angelo + Randy Quaid + + 1989 + Movies + Christmas + Comedy + + + TVG + + + 3 + + + + National Lampoon's Christmas Vacation + The Griswolds (Chevy Chase, Beverly D'Angelo) spend the holiday in a garish way, especially when a country cousin (Randy Quaid) pulls up in an RV. + + Chevy Chase + Beverly D'Angelo + Randy Quaid + + 1989 + Movies + Christmas + Comedy + + + TVG + + + 3 + + + + Twins + A genetically perfected specimen (Arnold Schwarzenegger) meets his pint-size, wise-guy long-lost twin (Danny DeVito). + + Arnold Schwarzenegger + Danny DeVito + Kelly Preston + + 1988 + Movies + Comedy + + + TVG + + + 3 + + + + Family Matters + Bowl Me Over + The Winslows have a battle-of-the-sexes bowling match. With JoMarie Payton-France and Reginald VelJohnson. + + Jo Marie Payton + Reginald VelJohnson + Rosetta LeNoire + + Sitcom + + + TVG + + + + Family Matters + Rock Video + The Winslow family makes a music video for a television contest. With JoMarie Payton-France and Reginald VelJohnson. + + Jo Marie Payton + Reginald VelJohnson + Rosetta LeNoire + + Sitcom + + + TVG + + + + Family Matters + The Big Reunion + Carl (Reginald VelJohnson) decides to lose weight before going to his high-school reunion. With JoMarie Payton-France. + + Jo Marie Payton + Reginald VelJohnson + Rosetta LeNoire + + Sitcom + + + TVG + + + + Family Matters + The Party + While his parents are away, Eddie's (Darius McCrary) friends throw a wild party. With Jaleel White and Randy Josselyn. + + Jo Marie Payton + Reginald VelJohnson + Rosetta LeNoire + + Sitcom + + + TVG + + + + Family Matters + The Big Fix + Eddie (Darius McCrary) talks Laura (Kellie Shanygne Williams) into going out with nerdy Steve Urkel (Jaleel White). With JoMarie Payton-France. + + Jo Marie Payton + Reginald VelJohnson + Rosetta LeNoire + + Sitcom + + + TVG + + + + Family Matters + Sitting Pretty + The Winslow home fills with children when Laura (Kellie Shanygne Williams) starts a baby-sitting service. With JoMarie Payton-France and Reginald VelJohnson. + + Jo Marie Payton + Reginald VelJohnson + Rosetta LeNoire + + Sitcom + + + TVG + + + + Family Matters + In a Jam + Eddie (Darius McCrary) gets himself in trouble when he defends Steve (Jaleel White) from a bully (guest star Markus Redmond). + + Jo Marie Payton + Reginald VelJohnson + Rosetta LeNoire + + Sitcom + + + TVG + + + + Family Matters + The Candidate + Laura (Kellie Shanygne Williams) helps Eddie (Darius McCrary) run for class president. With JoMarie Payton-France. + + Jo Marie Payton + Reginald VelJohnson + Rosetta LeNoire + + Sitcom + + + TVG + + + + Family Matters + Bowl Me Over + The Winslows have a battle-of-the-sexes bowling match. With JoMarie Payton-France and Reginald VelJohnson. + + Jo Marie Payton + Reginald VelJohnson + Rosetta LeNoire + + Sitcom + + + TVG + + + + Family Matters + Rock Video + The Winslow family makes a music video for a television contest. With JoMarie Payton-France and Reginald VelJohnson. + + Jo Marie Payton + Reginald VelJohnson + Rosetta LeNoire + + Sitcom + + + TVG + + + + Friends + The One With a Chick and a Duck + Monica considers accepting a dream job in Pete's (Jon Favreau) new restaurant but fears there is more to the deal. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With the Cat + Phoebe finds meaning in the appearance of a stray cat; Joey and Chandler agree to sell some furniture. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With the 'Cuffs + Rachel's boss, Joanna, leaves Chandler in an awkward situation that will require Rachel's help; Monica's catering fiasco. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The One With Chandler in a Box + To atone for kissing Joey's girlfriend, Chandler agrees to stay inside a shipping crate during the Thanksgiving holiday. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With the Embryos + Phoebe undergoes an embryo implant procedure to become a surrogate mother for her brother (Giovanni Ribisi) and his wife (Debra Jo Rupp); Monica and Rachel wager their apartment in a trivia game against Chandler and Joey. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With All the Rugby + Ross takes up rugby to impress Emily (Helen Baxendale); Chandler sets up a ruse to avoid his former girlfriend Janice (Maggie Wheeler). + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The One With the Thanksgiving Flashbacks + As the gang digests Monica's huge Thanksgiving meal, everyone reminisces about their worst Thanksgiving ever. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + Christmas + + + TV14 + + + + Friends + The One Where Everybody Finds Out + Ross must prove to his boss that he is sane in order to return to work; Phoebe finds out about Monica and Chandler's relationship; Ross hunts for a new apartment. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The One With the Cop + Phoebe finds a police officer's badge and goes on a spree of arrests until she meets up with the owner; Joey thinks he's in love with Monica; Ross buys a couch but won't pay to have it delivered. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With the Proposal + Monica and Chandler encounter Richard (Tom Selleck), Monica's former boyfriend, in a romantic restaurant. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With the Halloween Party + At Monica's Halloween party, Phoebe meets her twin sister's fiance and finds that she is attracted to him. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + Hallowe'en + + + TV14 + + + + Friends + The One With the Tea Leaves + Rachel devises a lie about her unborn child that she hopes will break the silence between her and Joey; Phoebe reads tea leaves and predicts she will soon encounter the man of her dreams. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The One With the Sharks + Monica fears Chandler has a sexual fetish involving sharks; Phoebe fears losing her boyfriend. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + National Lampoon's Christmas Vacation + The Griswolds (Chevy Chase, Beverly D'Angelo) spend the holiday in a garish way, especially when a country cousin (Randy Quaid) pulls up in an RV. + + Chevy Chase + Beverly D'Angelo + Randy Quaid + + 1989 + Movies + Christmas + Comedy + + + TVG + + + 3 + + + + Fred Claus + The yuletide season brings headaches for Santa Claus (Paul Giamatti), who bails his ne'er-do-well brother Fred (Vince Vaughn) out of trouble and puts him to work in his factory. + + Vince Vaughn + Paul Giamatti + Miranda Richardson + + 2007 + Movies + Christmas + Comedy + + + TVG + + + 2 + + + + The Polar Express + The conductor (Tom Hanks) of a train to the North Pole guides a boy who questions the existence of Santa Claus. + + Tom Hanks + Michael Jeter + Nona Gaye + + 2004 + Movies + Christmas + Animated + + + TVG + + + 3 + + + + Elf + Adopted as a baby by one of Santa's elves (Bob Newhart), a man (Will Ferrell) leaves the workshop to search for his family in New York. + + Will Ferrell + James Caan + Bob Newhart + + 2003 + Movies + Christmas + Children + + + TVG + + + 3 + + + + The Big Bang Theory + The Spock Resonance + Sheldon struggles to keep his emotions in check when he is interviewed for a documentary about Spock; Penny and Leonard make a surprising discovery; Wolowitz and Bernadette get into a disagreement about remodeling his childhood home. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + The Big Bang Theory + The Mystery Date Observation + Sheldon, Wolowitz and Koothrappali post an ad online to find a new girlfriend for Sheldon; Penny and Bernadette decide to spy when Amy is secretive about who she is dating. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + The Big Bang Theory + The Platonic Permutation + Amy and Sheldon spend Thanksgiving at the aquarium -- as friends; Wolowitz volunteers at the soup kitchen with Raj, Emily and Bernadette; Penny realizes that Leonard knows her better than she thought. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + Thanksgiving + + + TVPG + + + + The Big Bang Theory + The Earworm Reverberation + Sheldon has a song stuck in his head; despite their awkward date, Amy asks Dave over for dinner; Koothrappali and Wolowitz are obsessed with a fan of their band. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + Bad Teacher + A rude, drug-abusing educator (Cameron Diaz) vies with a perky colleague (Lucy Punch) for the attentions of a rich and handsome substitute teacher (Justin Timberlake). + + Cameron Diaz + Justin Timberlake + Jason Segel + + 2011 + Movies + Comedy + + + TVPG + + + 2 + + + + Bad Moms + Pushed beyond their limits, three overworked and stressed-out mothers (Mila Kunis, Kristen Bell, Kathryn Hahn) go wild after ditching their daily routines. + + Mila Kunis + Kristen Bell + Kathryn Hahn + + 2016 + Movies + Comedy + + + TVPG + + + 2 + + + + Bad Teacher + A rude, drug-abusing educator (Cameron Diaz) vies with a perky colleague (Lucy Punch) for the attentions of a rich and handsome substitute teacher (Justin Timberlake). + + Cameron Diaz + Justin Timberlake + Jason Segel + + 2011 + Movies + Comedy + + + TVPG + + + 2 + + + + Family Matters + Flashpants + Carl (Reginald VelJohnson) plans to dance circles around a fierce rival at an upcoming contest. With Kellie Shanygne Williams. + + Jo Marie Payton + Reginald VelJohnson + Rosetta LeNoire + + Sitcom + + + TVG + + + + Family Matters + The Crash Course + Steve takes the blame when Eddie crashes the car into the house. + + Jo Marie Payton + Reginald VelJohnson + Rosetta LeNoire + + Sitcom + + + TVG + + + + Family Matters + Boxcar Blues + Carl (Reginald VelJohnson) is trapped inside a railroad boxcar with Steve (Jaleel White). + + Jo Marie Payton + Reginald VelJohnson + Rosetta LeNoire + + Sitcom + + + TVG + + + + Friends + The One With the Nap Partners + Monica makes Chandler apologize to an old girlfriend (Stacy Galina) for leaving her because she was fat; Monica struggles to select a maid of honor. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With Ross' Library Book + Ross' doctoral dissertation is stored in a remote corner of the university library frequently used by students having sex; Rachel and Phoebe bond with Joey's date (Kristin Davis), then try to convince him to continue seeing her. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One Where Chandler Doesn't Like Dogs + Joey may have ruined Rachel's chances with Tag (Eddie Cahill) when he opens his mouth during Thanksgiving dinner. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + Thanksgiving + + + TVPG + + + + Friends + The One With All the Candy + Rachel finds it embarrassing that she is paying the way for her hunky new boyfriend (Eddie Cahill), who is also her assistant at work. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With the Thanksgiving Flashbacks + As the gang digests Monica's huge Thanksgiving meal, everyone reminisces about their worst Thanksgiving ever. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + Christmas + + + TV14 + + + + Friends + The One With All the Cheesecakes + Phoebe and Joey are at odds when she tries to cancel their weekly dinner plans so she can meet an old beau. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One Where They're Up All Night + During their first night together, Rachel and Tag realize they forgot to ship out an important package at the office. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One Where Rosita Dies + On her first day as a telemarketer, Phoebe encounters a distraught man (Jason Alexander) who is determined to end his life. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One Where They All Turn Thirty + Celebrating Rachel's 30th birthday inspires the friends to reminisce about their own 30th birthdays -- Joey got angry with God for breaking their deal; Ross bought a sports car; Monica got drunk and embarrassed herself at her surprise party. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With Joey's New Brain + Joey accidentally informs a cast member (Susan Sarandon) that she will be fired so that his character will get her character's brain. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With the Truth About London + Monica and Chandler fondly reminisce about London until a startling revelation leaves Chandler floored. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With the Cheap Wedding Dress + Monica regrets telling a woman about a discount bridal shop when they end up competing for a wedding dress. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Modern Family + Royal Visit + Haley's astrophysicist boyfriend comes to meet the family, setting Claire and Phil off in a competition about which one of them is smarter; Mitch and Cam go on a yoga retreat. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Daddy Issues + When Gloria's ex-boyfriend stops by for a visit, his striking resemblance to Manny makes Jay wonder; Phil agonizes over getting the perfect anniversary gift for Claire; Lily gets into a fight at school over bras. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TV14 + + + + Modern Family + CHiPs and Salsa + Haley's boss tries to buy Gloria's salsa; Mitchell gets Cam the police ride-along he's always dreamed of. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Mother! + When Dede drops by unexpectedly, Mitchell and Cam come to a realization about her effect on their lives; Phil, Luke, Alex and Haley all have different bad news to break to Claire and compete about when to do it. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TV14 + + + + Modern Family + The Escape + Haley meets Arvin's parents but fate leads to an unexpected reunion with all of her ex-boyfriends; the family goes to a nursing home to visit with Jay's sister; Phil, Cam and Gloria end up getting trapped in the home's basement. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Clash of Swords + Mitchell sneaks out to Hero-Con with Phil; Gloria's dinosaur party for Joe is ruined when her nemesis upstages her with a far bigger and better party next door. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + The Big Bang Theory + The Table Polarization + When Leonard buys a dining room table, Sheldon re-evaluates the changes in his life; Bernadette is torn when Wolowitz gets the chance to go back to space. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + The Big Bang Theory + The Friendship Turbulence + Bernadette tries to negotiate peace between Sheldon and Wolowitz; Penny receives an embarrassing offer; Raj wants Amy to write to a woman on his behalf. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + The Big Bang Theory + The Mommy Observation + Sheldon is faced with a new reality when he visits his mom in Houston; a murder mystery party starts arguments. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TV14 + + + + The Big Bang Theory + The Indecision Amalgamation + Raj struggles with guilt when he dates two women at once; Penny has a chance to play a part in a cheesy movie; Sheldon is torn between two gaming systems. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + The Big Bang Theory + The Relationship Diremption + Sheldon has a personal crisis when he decides string theory is a waste of his time; a double date ends in embarrassment for Howard. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + The Big Bang Theory + The Anything Can Happen Recurrence + Sheldon gives spontaneity a try, which causes unexpected friction for Penny, Bernadette and Amy; Raj asks Howard for help with preparation for a date with Emily. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + The Big Bang Theory + The Proton Transmogrification + Professor Proton (Bob Newhart) helps Sheldon deal with grief; Leonard gets into a competition with Penny; Bernadette and Amy prepare a. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + The Big Bang Theory + The Gorilla Dissolution + A bad day compels Penny to re-evaluate her choices -- including Leonard; Bernadette and Howard must care for Mrs. Wolowitz; Sheldon gives Raj advice on relationships. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + The Big Bang Theory + The Status Quo Combustion + Faced with an uncertain future, Sheldon considers a major change; Emily and Raj decide to take things to the next level. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + The Big Bang Theory + The Locomotion Interruption + Leonard and Amy make an unexpected trip to Arizona to fetch Sheldon; Penny interviews for a job at Bernadette's company; Stuart's relationship with Mrs. Wolowitz disturbs Howard. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + The Big Bang Theory + The Junior Professor Solution + When Sheldon must teach a class, Howard decides to take it; Amy takes advantage of the tension between Penny and Bernadette. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + The Big Bang Theory + The First Pitch Insufficiency + Wolowitz feels nervous when he is asked to throw the first pitch at a Los Angeles Angels game; Penny and Leonard want to prove Sheldon wrong after he says he and Amy are the better couple. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + The Big Bang Theory + The Hook-Up Reverberation + Raj's honesty comes back to haunt him when his new girlfriend is unfriendly to Penny; the guys think about becoming part owners in Stuart's store. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + American Dad! + A New Era for the Smith House + Klaus house sits for the Smiths while they are away on vacation; Roger investigates the origin of powerful winds plaguing the Eastern Seaboard. + + Seth MacFarlane + Wendy Schaal + Rachael MacFarlane + + Animated + Sitcom + + + TV14 + + + + American Dad! + Gifted Me Liberty + Stan goes on a mission to find out who didn't bring a gift to the CIA's Secret Santa party; Steve poses as the good boyfriend for several female classmates. + Animated + Sitcom + + + TV14 + + + + American Dad! + Next of Pin + Stan and Steve start bowling for more quality time together; Klaus holds a contest to see whether Roger or Hayley has the worse attention span. + Animated + Sitcom + + + TV14 + + + + American Dad! + Standard Deviation + To avoid a suicide mission, Stan must beat Bullock in a DJ battle; Jeff starts drinking psychedelic teas and builds an imaginary musical instrument with Roger's help. + Animated + Sitcom + + + TV14 + + + + The Reel + Episode 4 + The Reel is House of Highlights' flagship interview show where Lucas Brody sits down with athletes to live-react to the most iconic, entertaining and viral moments of their careers. + Sports + Talk Show + + + + American Dad! + Father's Daze + The Smith family forgets to celebrate Father's Day, so they plan the perfect day to make it up to Stan. + Animated + Sitcom + + + TV14 + + + + American Dad! + Fight and Flight + Stan goes all out to produce a reenactment of Charles Lindbergh's solo flight for Steve's school project; Klaus buys shoes online, but they get stolen. + Animated + Sitcom + + + TV14 + + + + American Dad! + The Enlightenment of Ragi-Baba + Hayley takes Roger to a meditation center and he quickly becomes one of the world's leading authorities on meditation; Stan and Steve are taught the art of making sushi. + Animated + Sitcom + + + TV14 + + + + American Dad! + Portrait of Francine's Genitals + Stan is embarrassed when a painting of Francine's genitals, done by a famous artist, is unveiled at the museum; Steve's libido is compromised after seeing the portrait. + Animated + Sitcom + + + TV14 + + + + American Dad! + Bahama Mama + Stan gets upset at the idea of becoming a grandfather after Hayley and Jeff announced they're trying to have a baby; Steve and Klaus join a drug gang. + Animated + Sitcom + + + TV14 + + + + American Dad! + Roger's Baby + Roger agrees to give birth to Jeff so he can be human again; Steve secretly signs Snot up for a makeover. + Animated + Sitcom + + + TV14 + + + + American Dad! + Ninety North, Zero West + The Smith's rescue Steve after he's kidnapped and taken to the North Pole, where Santa Claus is using children to mine for precious stones needed for an ancient ritual. + Animated + Sitcom + + + TV14 + + + + Family Matters + Dog Day Halloween + Carl (Reginald VelJohnson) must save Steve and Laura (Jaleel White, Kellie Shanygne Williams), who have been taken hostage during a Halloween robbery. + + Jo Marie Payton-France + Reginald VelJohnson + Rosetta LeNoire + + Sitcom + Christmas + + + TVG + + + + Family Matters + Cousin Urkel + Steve's cousin (Jaleel White in a dual role), the Belle of Biloxi, sets out to win Eddie's (Darius McCrary) love. + + Jo Marie Payton-France + Reginald VelJohnson + Rosetta LeNoire + + Sitcom + + + TVG + + + + Family Matters + Dedicated to the One I Love + Laura (Kellie Shanygne Williams) is jealous when Steve (Jaleel White) pays attention to another girl. + + Jo Marie Payton-France + Reginald VelJohnson + Rosetta LeNoire + + Sitcom + + + TVG + + + + Family Matters + The Science Project + The unlikely pair of Steve and Laura (Jaleel White, Kellie Shanygne Williams) teams up on a science project. With JoMarie Payton-France. + + Jo Marie Payton-France + Reginald VelJohnson + Rosetta LeNoire + + Sitcom + + + TVG + + + + Family Matters + Requiem for an Urkel + Steve (Jaleel White) amazes everyone when he stands up to a bully in school. With JoMarie Payton-France. + + Jo Marie Payton-France + Reginald VelJohnson + Rosetta LeNoire + + Sitcom + + + TVG + + + + Friends + The One With Joey's Award + Joey is overjoyed to be nominated for a. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With Ross and Monica's Cousin + Monica is so perturbed by Chandler's instant attraction to her gorgeous visiting cousin (Denise Richards) that she persuades Ross to let her stay at his apartment; Ross finds his attraction to his cousin unsettling. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The One With Rachel's Big Kiss + Rachel encounters a sorority sister (Winona Ryder) with whom she shared an embarrassing and passionate moment. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With the Vows + While writing their wedding vows, Monica and Chandler have trouble putting their true feelings on paper. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With Chandler's Dad + Trying to ensure an ideal wedding, Monica arranges a meeting so Chandler and his estranged father can reconcile. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With Monica and Chandler's Wedding + On the eve of the wedding, Ross searches for missing Chandler, who has doubts, while the girls distract unsuspecting Monica. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One With Monica and Chandler's Wedding + On the eve of the wedding, Ross searches for missing Chandler, who has doubts, while the girls distract unsuspecting Monica. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Friends + The One After + The reception following Monica and Chandler's wedding is almost upstaged by the news that a member of the group might be pregnant. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The One With the Red Sweater + The gals speculate about the father of Rachel's baby, the guys scramble after Chandler loses the film from his wedding. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The One Where Rachel Tells .. + The real father of Rachel's baby is revealed; Monica and Chandler struggle to make their honeymoon flight. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The One With the Videotape + Ross and Rachel argue over how they ended up in bed together weeks earlier, so Ross announces he has the encounter on tape. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The One With Rachel's Date + Ross is horrified when Rachel goes on a date with a soap-opera star (Johnny Messner); Phoebe is attracted to a clumsy chef whom Monica wants to fire. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Modern Family + I Love a Parade + The family gets together for the annual Fourth of July parade where Jay acts as the grand marshal; Haley's farewell to Arvin doesn't go as well as expected and she is distracted by the return of an old flame. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Kiss and Tell + Haley looks to Mitch and Cam for relationship advice; Gloria suspects Manny's Canadian girlfriend is made up and tries to find out the real truth. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + A Sketchy Area + Phil stumbles into an exciting new career after visiting Luke's college; Claire deals with her dad and the merger of Pritchett's Closets with a tech-savvy, hipper company; Mitch's new high-profile case is marred by an unflattering courtroom sketch. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Torn Between Two Lovers + Haley is forced to make a decision; Manny returns to college and dorm life; Sherry may be overstaying her welcome at Jay and Gloria's. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Good Grief + The families celebrate another epic Halloween and receive huge, unexpected news. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + Christmas + + + TVPG + + + + Modern Family + On the Same Paige + When Phil learns that his real estate class will be canceled if any additional students drop it, he turns on his powers of charm and flattery to keep one particular student from leaving; Jay tries to set boundaries with a fellow parent. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + The Big Bang Theory + The Focus Attenuation + During their weekend in Las Vegas, Bernadette and Amy accuse Penny of being a buzz kill; the guys try to invent the next big thing. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TV14 + + + + The Big Bang Theory + The Expedition Approximation + Raj and Sheldon try to simulate a dark-matter research expedition; after a fight about money, Penny and Leonard turn to Bernadette and Wolowitz for advice. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + The Big Bang Theory + The Misinterpretation Agitation + The guys try to help when Penny is faced with an awkward dilemma at work; Bernadette and Amy discuss sexuality and female scientists. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TV14 + + + + The Big Bang Theory + The Prom Equivalency + Sheldon feels pressured to participate in romantic traditions when the gang re-creates a high-school prom on the roof. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TV14 + + + + The Big Bang Theory + The Septum Deviation + Leonard has minor surgery on his nose, causing Sheldon to overreact; Bernadette and Howard work on their marriage. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + The Big Bang Theory + The Champagne Reflection + Sheldon says goodbye to Fun With Flags; Howard, Leonard and Raj look through their dead professor's research; Bernadette learns her co-workers' true feelings. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + The Big Bang Theory + The Clean Room Infiltration + Leonard and Wolowitz clash over a work emergency; Amy throws a Victorian Christmas party which Sheldon resents. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + The Big Bang Theory + The Space Probe Disintegration + When the guys agree to do something the girls like, Sheldon and Leonard end up having a confrontation. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + The Big Bang Theory + The Anxiety Optimization + Sheldon asks his friends to challenge him in hope of achieving a scientific breakthrough; Wolowitz invents a game about Raj. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + The Big Bang Theory + The Troll Manifestation + Sheldon and Leonard must defend themselves from an online bully's criticism after they co-publish a paper; Bernadette, Penny and Amy confront embarrassing moments during a girls night. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + The Big Bang Theory + The Comic Book Store Regeneration + While the gang waits for the reopening of Stuart's comic book store Wolowitz gets some shocking news; Penny has trouble taking her own advice; Leonard and Raj think they spot Nathan Fillion at a restaurant. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + Wipeout + Big Ball Bromance + Newly single ladies spend their hot girl summer on the craziest course ever. + Game Shows + Reality TV + + + TVPG + + + + Wipeout + Big Ball Bromance + Newly single ladies spend their hot girl summer on the craziest course ever. + Game Shows + Reality TV + + + TVPG + + + + Young Sheldon + Money Laundering and a Cascade of Hormones + Missy asks some uncomfortable questions at church; Meemaw and Georgie go into business together. + + Iain Armitage + Zoe Perry + Lance Barber + + Sitcom + + + TV14 + + + + Young Sheldon + An Introduction to Engineering and a Glob of Hair Gel + Sheldon takes his first engineering class with Professor Boucher; Meemaw and Dale help take care of his ex-wife. + + Iain Armitage + Zoe Perry + Lance Barber + + Sitcom + + + TVPG + + + + Young Sheldon + The Grand Chancellor and a Den of Sin + Sheldon battles President Hagemeyer's mysterious boss over the university's science requirements; Mary discovers that Georgie is working at Meemaw's illegal gambling room. + + Iain Armitage + Zoe Perry + Lance Barber + + Sitcom + + + TVPG + + + + Young Sheldon + The Yips and an Oddly Hypnotic Bohemian + Sheldon gets the science yips and has to learn how to not think; George Sr. plays handyman at Brenda Sparks' house. + + Iain Armitage + Zoe Perry + Lance Barber + + Sitcom + + + TVPG + + + + Young Sheldon + An Expensive Glitch and a Goof-Off Room + Sheldon gets a dorm room all to himself; Meemaw gains an unwanted business partner. + + Iain Armitage + Zoe Perry + Lance Barber + + Sitcom + + + TVPG + + + + Young Sheldon + A Lock-In, a Weather Girl and a Disgusting Habit + Sheldon acts as Mary's spy during a youth lock-in at church; Georgie is attracted to an older woman. + + Iain Armitage + Zoe Perry + Lance Barber + + Sitcom + + + TVPG + + + + Young Sheldon + A Pink Cadillac and a Glorious Tribal Dance + Sheldon attends his first comic book convention; Mary tries selling makeup. + + Iain Armitage + Zoe Perry + Lance Barber + + Sitcom + + + TVPG + + + + Young Sheldon + A Lot of Band-Aids and the Cooper Surrender + Sheldon makes friends with his dorm neighbors; George Sr. learns his job is in jeopardy. + + Iain Armitage + Zoe Perry + Lance Barber + + Sitcom + + + TVPG + + + + Young Sheldon + A Free Scratcher and Feminine Wiles + Sheldon butts heads with Dr. Lee, a new scientist in the lab; Mary is given a lotto ticket. + + Iain Armitage + Zoe Perry + Lance Barber + + Sitcom + + + TVPG + + + + Young Sheldon + A Lobster, an Armadillo and a Way Bigger Number + Sheldon joins Dr. Linkletter and Dr. Sturgis on a science road trip; Georgie continues to lie about his age. + + Iain Armitage + Zoe Perry + Lance Barber + + Sitcom + + + TV14 + + + + Family Matters + Fast Eddie Winslow + Eddie (Darius McCrary) finds himself in a pinch with a hardened pool hustler. With Jaleel White. + + Jo Marie Payton-France + Reginald VelJohnson + Rosetta LeNoire + + Sitcom + + + TVG + + + + Family Matters + Have Yourself a Merry Winslow Christmas + Lonely Steve (Jaleel White) puts his fondest Christmas wish in a note addressed to the Winslows. With Reginald VelJohnson. + + Jo Marie Payton-France + Reginald VelJohnson + Rosetta LeNoire + + Sitcom + Christmas + + + TVG + + + + Family Matters + Ice Station Winslow + Carl (Reginald VelJohnson) contends with Lake Wannamuck's frigid waters while on an ice fishing trip. + + Jo Marie Payton-France + Reginald VelJohnson + Rosetta LeNoire + + Sitcom + + + TVG + + + + Family Matters + Son + Eddie's (Darius McCrary) fight with his father (Reginald VelJohnson) disturbs the whole family. + + Jo Marie Payton-France + Reginald VelJohnson + Rosetta LeNoire + + Sitcom + + + TVG + + + + Family Matters + Do the Right Thing + Steve (Jaleel White) is jealous when Laura (Kellie Shanygne Williams) falls for the new basketball player at school. + + Jo Marie Payton-France + Reginald VelJohnson + Rosetta LeNoire + + Sitcom + + + TVG + + + + Friends + The One Where Underdog Gets Away + Monica and Ross cook Thanksgiving dinner for themselves, but everyone else shows up. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + Thanksgiving + + + TVPG + + + + Friends + The One With the List + Rachel sees Ross' list comparing her pros and cons to Julie's (Lauren Tom). + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + Thanksgiving + + + TVPG + + + + Friends + The One With the Halloween Party + At Monica's Halloween party, Phoebe meets her twin sister's fiance and finds that she is attracted to him. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + Hallowe'en + + + TV14 + + + + Friends + The One With the Stain + Rachel wants to find her own apartment; Phoebe is ecstatic when Eric (Sean Penn) dumps Ursula to date her. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The One With the Stripper + Rachel's father confronts Ross after she admits that she's pregnant with Ross' baby; Monica reconsiders Chandler's wish for a stripper. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The One With the Rumor + Monica encounters a high-school friend (guest star Brad Pitt) and invites him to Thanksgiving Day dinner. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + Christmas + + + TV14 + + + + Friends + The One With Monica's Boots + Chandler is aghast when Monica buys expensive boots; Phoebe discovers that Ross' son attends school with Sting's son. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The One With Ross' Step Forward + Ross' new girlfriend wants to put their photograph on Christmas cards; Rachel eyes Joey as a possible partner. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + Christmas + + + TV14 + + + + Friends + The One Where Joey Dates Rachel + Rachel and Joey might become more than friends; Chandler sets a Ms. Pac-Man record; Ross breaks land-speed records. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The One With the Birthing Video + Monica prepares a memorable St. Valentine's Day for Chandler with sexy lingerie and X-rated entertainment. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + Christmas + + + TV14 + + + + Friends + The One Where Joey Tells Rachel + Joey confesses his true feelings for Rachel; Phoebe introduces Monica to her new boyfriend (Harry Van Gorkum). + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The One With the Tea Leaves + Rachel devises a lie about her unborn child that she hopes will break the silence between her and Joey; Phoebe reads tea leaves and predicts she will soon encounter the man of her dreams. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Modern Family + Did the Chicken Cross the Road? + Cam forgets the words to his favorite country song and decides to reconnect with his roots by getting a chicken; when Alex is up for a prestigious government job that requires a family interview, everyone overcompensates and jeopardizes her chances. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Kids These Days + Haley needs motherly advice from Claire as she considers her future with Dylan and her career; Jay and Cam's less-than-politically-correct coaching style earns them a class on sensitivity; Mitch runs into Phil's nemesis at an unlikely place. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TV14 + + + + Modern Family + Putting Down Roots + When Dede's husband comes to town to bequeath her possessions to the family, Jay and Gloria feel sorry for him and invite him to stay with them while he is in town. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Stuck in a Moment + Hayley works to figure out the best time to give the family a Christmas gift they will never forget; Phil borrows the family Christmas tree for a house-showing; Jay, Gloria and Joe deal with unwelcome holiday visitors. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + Christmas + + + TVPG + + + + Modern Family + A Moving Day + Claire and Phil aren't convinced that Haley and Dylan can make it on their own as they move them into their new apartment before the baby arrives; Pameron gets out of prison early and has a bone to pick with Mitchell. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + Blasts From the Past + Phil and Claire decide to take a cycling tour through Italy; Cameron and Mitchell discover some interesting reading material in Lily's room. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TV14 + + + + The Big Bang Theory + The Intimacy Acceleration + Penny and Sheldon design an experiment -- as a joke -- to make participants fall in love; Howard and Bernadette get into trouble at the airport. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + Sister Wives + More to Love: The Writing Is on the Wall + With bonus scenes; Kody takes Janelle out for her birthday and talks about wanting to start over; Meri reveals to Kody that she's moving her clothing business to Utah but not giving up on their relationship. + Reality TV + + + TVPG + + + + Sister Wives + More to Love: Battle Lines Are Drawn + With bonus scenes; Janelle, Christine and their older kids gather for dinner, and things get intense as they express their frustrations about Kody and Robyn; Christine celebrates her ex-anniversary with friends. + Reality TV + + + TVPG + + + + Sister Wives + More to Love: Don't Put All Your Eggs in One Basket + With bonus scenes; Christine is excited to celebrate her first Easter since divorcing Kody; Janelle says her life is better without Kody but would consider polygamy again; Meri reflects on marrying so young. + Reality TV + + + TVPG + + + + Sister Wives + More to Love: Airing the Dirty Laundry + With bonus scenes; Christine is ecstatic when Mykelti tells her she's having twins; Meri reveals that Kody finally admitted he no longer wants a relationship with her, and she is forced to consider ending her marriage for good. + Reality TV + + + TVPG + + + + Sister Wives + More to Love: The Writing Is on the Wall + With bonus scenes; Kody takes Janelle out for her birthday and talks about wanting to start over; Meri reveals to Kody that she's moving her clothing business to Utah but not giving up on their relationship. + Reality TV + + + TVPG + + + + Sister Wives + More to Love: Battle Lines Are Drawn + With bonus scenes; Janelle, Christine and their older kids gather for dinner, and things get intense as they express their frustrations about Kody and Robyn; Christine celebrates her ex-anniversary with friends. + Reality TV + + + TVPG + + + + Sister Wives + More to Love: Battle Lines Are Drawn + With bonus scenes; Janelle, Christine and their older kids gather for dinner, and things get intense as they express their frustrations about Kody and Robyn; Christine celebrates her ex-anniversary with friends. + Reality TV + + + TVPG + + + + Sister Wives + More to Love: Don't Put All Your Eggs in One Basket + With bonus scenes; Christine is excited to celebrate her first Easter since divorcing Kody; Janelle says her life is better without Kody but would consider polygamy again; Meri reflects on marrying so young. + Reality TV + + + TVPG + + + + Sister Wives + More to Love: Airing the Dirty Laundry + With bonus scenes; Christine is ecstatic when Mykelti tells her she's having twins; Meri reveals that Kody finally admitted he no longer wants a relationship with her, and she is forced to consider ending her marriage for good. + Reality TV + + + TVPG + + + + Body Bizarre + My Heart Lives on the Outside + A young girl with a crippling leg defect undergoes life-changing surgery; a man is born with his heart outside his rib cage; a karate champion battles a rare skin disorder. + Documentary + + + TVPG + + + + Body Bizarre + My Gigantic Leg + An unknown syndrome ages two boys rapidly; a man with a basketball sized tumor gets surgery; a woman with a giant leg finds love. + Documentary + + + TVPG + + + + Dr. Pimple Popper + Alligator Skin + Terry's nose growth has prevented him from meeting his grandkids; Remi has alligator-like skin and is not used to taking care of herself; Austin has an embarrassing birthmark right next to his eyelid; Mary Jo has a throbbing bump on her neck. + Reality TV + Documentary + + + TV14 + + + + Dr. Pimple Popper + Plum Nose + Brittney has hundreds of tiny bumps over her chest that have destroyed her confidence; John has a nose the size of a plum and leans on his local family clinic for help; Dr. Lee's friend Raquel drops in and brings out her wild side. + Reality TV + Documentary + + + TV14 + + + + Dr. Pimple Popper + Raw Meat Mass + Margarita is a matriarch who has been hiding her armpit lump from her family; Kayla is an aspiring musician with a promising career that her painful eczema has brought to a halt; Bradley has a concerning growth that looks like raw meat on his leg. + Reality TV + + + TV14 + + + + Dr. Pimple Popper + A Head of Cauliflower Bumps + Elizabeth's head is covered with giant cauliflower-shaped bumps; Jamaal has been growing a strange knob on the left side of his butt since he was just a boy; Donna's cracking, bleeding skin condition has aged her face and kept her from being social. + Reality TV + Documentary + + + TV14 + + + + My Big Fat Fabulous Life + My Dad's Big Fat Fabulous Past + The house is abuzz after the family dance-off; Whitney refuses to lose to her new niece; Whitney's nephew introduces her to a new potential suitor; Glenn and Angie finally discuss the nature of their relationship. + Reality TV + Documentary + + + TV14 + + + + My Big Fat Fabulous Life + My Big Fat Disastrous Party + Whitney throws caution to the wind and plans a party for her 39th birthday, but there are hurricanes on the horizon; before she becomes a spinster, Whitney agrees to a blind date; meeting with Jessica and Lennie, Whitney makes a shocking discovery. + Reality TV + Documentary + + + TV14 + + + + My Big Fat Fabulous Life + My Big Fat Vacation Proposal + Whitney's search for Mr. Right seems bleaker than ever, and she fears being alone forever; after finding her father grief-stricken at the cemetery, Whitney and Hunter present travel destinations to Glenn for his big bucket list trip. + Reality TV + Documentary + + + TV14 + + + + Sister Wives + Battle Lines Are Drawn + Janelle, Christine and their older kids gather for dinner, and things get intense as they express their frustrations about Kody and Robyn; Christine celebrates her ex-anniversary with friends. + Reality TV + + + TVPG + + + + Sister Wives + Don't Put All Your Eggs in One Basket + Christine is excited to celebrate her first Easter since divorcing Kody; Janelle says her life is better without Kody, but reveals she would consider polygamy again; after learning Aurora is interested in a boy, Meri reflects on marrying so young. + Reality TV + + + TVPG + + + + Sister Wives + Airing the Dirty Laundry + Christine is ecstatic when Mykelti tells her she's having twins; Meri reveals that while out for their anniversary, Kody finally admitted he no longer wants a relationship with her, and she is forced to consider ending her marriage for good. + Reality TV + + + TVPG + + + + 90 Day: The Last Resort + The Last Walk + Fallout from the strip club and the boat threatens relationships on the eve of the commitment ceremony; the final group session reveals further setbacks; the couples decide whether to recommit or separate as the retreat comes to an end. + Reality TV + Documentary + + + TV14 + + + + 90 Day Fiancé + Of These Two Lovers + Jasmine tries to regain Gino's trust; Ashley grows skeptical when Manuel's family bombards her phone; Nikki demands intimacy from Justin; Sophie's reveal jeopardizes her engagement; Nick prepares for Devin to meet his family for the first time. + Reality TV + Documentary + + + TV14 + + + + 90 Day Fiancé + Committed in Matrimony + With Clayton's mom living in his closet, he worries about his fiancée's arrival; Sophie and Rob question each other's loyalty; Nikki gives Justin an ultimatum; Devin and Nick reunite in Korea; Jasmine blames a rash breakout on Gino's dirty apartment. + Reality TV + Documentary + + + TV14 + + + + Sister Wives + Can't See the Forest for the Trees + Christine throws a 1950s-themed party for her 50th birthday and admits she's dating again; Kody checks out Janelle's new apartment but realizes she's planning a future without him; Meri worries about big changes in her life. + Reality TV + + + TVPG + + + + 90 Day Fiancé + Pillow Talk: Committed in Matrimony + Patrick and John, Kara and Guillermo, Loren and Alexei, and Tim and Veronica are watching along, and no one is holding back. + Reality TV + Documentary + + + TVPG + + + + 90 Day Fiancé + Committed in Matrimony + With Clayton's mom living in his closet, he worries about his fiancée's arrival; Sophie and Rob question each other's loyalty; Nikki gives Justin an ultimatum; Devin and Nick reunite in Korea; Jasmine blames a rash breakout on Gino's dirty apartment. + Reality TV + Documentary + + + TV14 + + + + 90 Day Fiancé + Committed in Matrimony + With Clayton's mom living in his closet, he worries about his fiancée's arrival; Sophie and Rob question each other's loyalty; Nikki gives Justin an ultimatum; Devin and Nick reunite in Korea; Jasmine blames a rash breakout on Gino's dirty apartment. + Reality TV + Documentary + + + TV14 + + + + Sister Wives + Can't See the Forest for the Trees + Christine throws a 1950s-themed party for her 50th birthday and admits she's dating again; Kody checks out Janelle's new apartment but realizes she's planning a future without him; Meri worries about big changes in her life. + Reality TV + + + TVPG + + + + 90 Day Fiancé + Pillow Talk: Committed in Matrimony + Patrick and John, Kara and Guillermo, Loren and Alexei, and Tim and Veronica are watching along, and no one is holding back. + Reality TV + Documentary + + + TVPG + + + + 1000-Lb. Sisters + Moment of Truth + Chris faces a weigh-in to get approved for bariatric surgery; with Tammy's weight at a standstill, Amy and Michael make a life-altering decision; the family's fears about Tammy's choice in partners are realized. + Reality TV + Documentary + + + TV14 + + + + 1000-Lb. Sisters + A Very Slaton Vacation + While Chris makes progress after his surgery, Tammy gets discouraging news; Amy plans a unique bash for Tammy's 35th birthday; the family excitedly plan their first vacation together with all five siblings, but concerns rise about Tammy's mobility. + Reality TV + Documentary + + + TV14 + + + + The Jennifer Hudson Show + Alfonso Ribeiro (Guests: Alfonso Ribeiro.. + Talk Shows + + + TVPG + + + + Four Weddings + ... and a Dance Off + Jenn leaves her wedding decor to the pros; Michelle makes a bouquet from vintage brooches; Ali has a black light rave; Renee's go from heartfelt to hilarious. + Documentary + Game Shows + + + TVPG + + + + Four Weddings + ... and a Unity Fish Bowl + Brittany unites her fish and her family; Jamie swaps her wedding cake for a pizza; Lauren greets her guests in a stretch Hummer; Britten holds her night in a Chicago Skyscraper. + Documentary + Game Shows + + + TVPG + + + + Four Weddings + ... And Ballpark Peanuts + Lydia's big day has music from a historic pipe organ and maracas; Jennifer's day is all about her Portuguese heritage; Deanna shows her love with hand written notes on river rocks; Aimee surprises guests with a late night snack. + Documentary + Game Shows + + + TVPG + + + + Extreme Cheapskates + Guide to Love + Learning how love does not cost a thing, from reusing funeral flowers to used hotel sheets and thrift store lingerie. + Reality TV + + + TVPG + + + + Extreme Cheapskates + Vacations + Penny-pinchers try to hit the open road without opening their wallets; making their own boots; looking for quarters at an arcade; cooking breakfast on a car engine; packing food to avoid buffets. + Reality TV + + + TVPG + + + + Sister Wives + Airing the Dirty Laundry + Christine is ecstatic when Mykelti tells her she's having twins; Meri reveals that while out for their anniversary, Kody finally admitted he no longer wants a relationship with her, and she is forced to consider ending her marriage for good. + Reality TV + + + TVPG + + + + Sister Wives + Can't See the Forest for the Trees + Christine throws a 1950s-themed party for her 50th birthday and admits she's dating again; Kody checks out Janelle's new apartment but realizes she's planning a future without him; Meri worries about big changes in her life. + Reality TV + + + TVPG + + + + The Family Chantel + Like a Lawyer + Mediation with Lidia does not go the way any of them expected; Alejandro fulfills a promise to Nicole; Winter brings a new attitude to her latest date; Chantel comes clean to Karen about the state of her marriage. + Reality TV + Documentary + + + TV14 + + + + The Family Chantel + Not So Separate Separation + Chantel and Pedro attempt to live under the same roof as a separated couple; Alejandro gives Nicole an ultimatum; Chantel struggles with what she knows she needs to do; Pedro visits an attorney to get more information. + Reality TV + Documentary + + + TV14 + + + + The Family Chantel + Hot Pursuit + Pedro moves out of the house after asking Chantel for a divorce; Chantel turns to her family and tells them everything about her failed marriage; when Pedro discovers Chantel has run off after emptying their bank account, he sets out to find her. + Reality TV + Documentary + + + TV14 + + + + The Family Chantel + The End of Forever + Pedro finds Chantel and an argument between the two ensues; Chantel returns from vacation and has Winter and Karen move into the house while Pedro hits his breaking point and makes the decision to file divorce papers. + Reality TV + Documentary + + + TV14 + + + + 90 Day Fiancé: The Other Way + Pillow Talk: Fuller House + Patrick and John, Loren and Alex, Emily and Kobe, and Debbie and Julian are watching along, and no one is holding back. + Reality TV + Documentary + + + TV14 + + + + 90 Day Fiancé: The Other Way + Pillow Talk: Big Bank Theory + Tim and Veronica, Emily and Kobe, Jen and Myra, and Robert and Anny are watching along, and no one is holding back. + Reality TV + Documentary + + + TV14 + + + + 90 Day Fiancé: The Other Way + The XX XY Files + Sarper reveals a secret about his past; Kenny and Armando meet with a potential surrogate; Brandan's mom tells Mary and Brandan that she's worried about the couple's future; Holly reaches a breaking point. + Reality TV + Documentary + + + TV14 + + + + The Family Chantel + Two Households, Both Alike + Chantel and Pedro attempt to move on, and neither of them can help but reflect on their shared past. As their divorce comes closer to finalizing, Pedro and Chantel are forced to see each other for the first time since he left. + Reality TV + Documentary + + + TV14 + + + + 90 Day Fiancé: The Other Way + The XX XY Files + Sarper reveals a secret about his past; Kenny and Armando meet with a potential surrogate; Brandan's mom tells Mary and Brandan that she's worried about the couple's future; Holly reaches a breaking point. + Reality TV + Documentary + + + TV14 + + + + Welcome to Plathville + So Foul and Fair a Day I Have Not Seen + Kim nervously shares her dating news with Moriah and Lydia; Moriah decides to unblock and text Ethan and is taken aback by his response; Olivia hits her breaking point when she realizes Ethan is up to his old ways. + Reality TV + + + TVPG + + + + 90 Day Fiancé: The Other Way + The XX XY Files + Sarper reveals a secret about his past; Kenny and Armando meet with a potential surrogate; Brandan's mom tells Mary and Brandan that she's worried about the couple's future; Holly reaches a breaking point. + Reality TV + Documentary + + + TV14 + + + + The Family Chantel + Two Households, Both Alike + Chantel and Pedro attempt to move on, and neither of them can help but reflect on their shared past. As their divorce comes closer to finalizing, Pedro and Chantel are forced to see each other for the first time since he left. + Reality TV + Documentary + + + TV14 + + + + 90 Day Fiancé: The Other Way + The XX XY Files + Sarper reveals a secret about his past; Kenny and Armando meet with a potential surrogate; Brandan's mom tells Mary and Brandan that she's worried about the couple's future; Holly reaches a breaking point. + Reality TV + Documentary + + + TV14 + + + + Welcome to Plathville + So Foul and Fair a Day I Have Not Seen + Kim nervously shares her dating news with Moriah and Lydia; Moriah decides to unblock and text Ethan and is taken aback by his response; Olivia hits her breaking point when she realizes Ethan is up to his old ways. + Reality TV + + + TVPG + + + + 1000-Lb. Sisters + Smoky Mountain Meltdown + The family vacation starts off terribly when Tammy refuses to enter the cabin; Chris hopes he's lost enough weight to fulfill a life-long dream. + Reality TV + Documentary + + + TV14 + + + + 1000-Lb. Sisters + Moving on Up and Partying on Down + After a rift on the family vacation, Amy returns home and drops a bomb on Tammy; while Amy focuses on her new life, Tammy makes a decision that takes her even further away from her weight-loss goals. + Reality TV + Documentary + + + TV14 + + + + The Jennifer Hudson Show + The EGOT winner's daytime talk show features celebrity interviews, topical stories, community heroes, viral sensations, and music, bringing fun, uplifting, and empowering conversations to the forefront. + Talk Shows + + + TVPG + + + + Say Yes to the Dress + 10 Years Later and Busier Than Ever! + When Grammy-nominated rocker Elle King arrives, Randy and Shay have a dress disagreement; bride Lisa needs a gown for a wedding with dolphins. + Reality TV + Fashion + + + TVPG + + + + Say Yes to the Dress + Not Hell Nor High Water + Randy is in Louisiana to save bride Kelli's big day after she lost everything in a devastating flood; social media star Claudia Oshry brings the sass to her appointment; Pnina Tornai feels the heat during Bridal Fashion Week. + Reality TV + Fashion + + + TVPG + + + + Say Yes to the Dress + Did I Hear Someone Say $16,000? + Randy's day is nonstop as he assists brides and auditions models for his runway show; Emanuela wants a sexy ball gown and she's not afraid to throw her dad's budget out the window; Marlena is finally dress shopping for a wedding years in the making. + Reality TV + Fashion + + + TVPG + + + + Cellblock 6: Female Lock Up + It Was Supposed To Be A Happy Day + A woman is arrested for smuggling drug paraphernalia into court; two heroin addicts turn to each other for support; a life of prostitution supports a woman's drug habit. + Documentary + + + TVPG + + + + Cellblock 6: Female Lock Up + Easier Said Than Done + A jail newcomer gets more than she bargains for; a young mother's release is postponed; the tenth trip for a heroin addict. + Documentary + + + TVPG + + + + Cellblock 6: Female Lock Up + This Too Shall Pass + A woman turns to drugs to numb the pain of her divorce; a crack addict attempts to head-butt an officer; a dental office assistant is arrested for stealing. + Documentary + + + TVPG + + + + 90 Day Fiancé: The Other Way + Fuller House + Tensions rise when Mary meets Brandan's mom face-to-face; Sarper attempts to make amends with Shekinah's sister; Kimberly and TJ's traditional Indian wedding continues; Kenny and Armando search for an egg donor. + Reality TV + Documentary + + + TV14 + + + + 90 Day Fiancé: The Other Way + Big Bank Theory + Daniele confronts Yohan about suspicious bank activity; Shekinah and Sarper go bed shopping; TJ tells Kim she is now a head of the household; Holly is lonely in South Africa; Brandan is caught between Mary and his mom. + Reality TV + Documentary + + + TV14 + + + + 90 Day Fiancé: The Other Way + The XX XY Files + Sarper reveals a secret about his past; Kenny and Armando meet with a potential surrogate; Brandan's mom tells Mary and Brandan that she's worried about the couple's future; Holly reaches a breaking point. + Reality TV + Documentary + + + TV14 + + + + Welcome to Plathville + Romeo, Romeo! + Olivia and Ethan host Lydia Grace and her boyfriend for Christmas; Kim hopes Isaac will approve of her dating his flight instructor; Micah and Moriah struggle to reconcile with Ethan; Oliva and Ethan's marital tension resurfaces. + Reality TV + + + TVPG + + + + Welcome to Plathville + Now Is the Winter of Our Discontent + Kim starts new family traditions with the kids for Christmas; Barry and Micah spend the holidays alone; Olivia and Ethan confide in Lydia Grace and CJ that their marriage may have differences they can't overcome. + Reality TV + + + TV14 + + + + Welcome to Plathville + So Foul and Fair a Day I Have Not Seen + Kim nervously shares her dating news with Moriah and Lydia; Moriah decides to unblock and text Ethan and is taken aback by his response; Olivia hits her breaking point when she realizes Ethan is up to his old ways. + Reality TV + + + TVPG + + + + My Big Fat Fabulous Life + My Big Fat Disastrous Party + Whitney throws caution to the wind and plans a party for her 39th birthday, but there are hurricanes on the horizon; before she becomes a spinster, Whitney agrees to a blind date; meeting with Jessica and Lennie, Whitney makes a shocking discovery. + Reality TV + Documentary + + + TV14 + + + + My Big Fat Fabulous Life + Extra Fabulous: My Big Fat Vacation Proposal + With bonus scenes; Whitney's search for Mr. Right seems bleaker than ever, and she fears being alone; after finding her father grief-stricken at the cemetery, Whitney and Hunter present travel destinations to Glenn for his big bucket list trip. + Reality TV + Documentary + + + TV14 + + + + My Big Fat Fabulous Life + My Dad's Big Fat Family Tattoo + The family competitions continue as Whitney welcomes Angie and Jaime to North Carolina, but the bonding may go too far with matching tattoos; Glenn extends an invitation to Switzerland for his new family despite their inexperience with traveling. + Reality TV + Documentary + + + TV14 + + + + Welcome to Plathville + I Am Not Bound To Please .. + Ethan leaves Olivia behind in Minnesota as he heads to Cairo to pick up his cars and reconnect with his family; Olivia talks to her friend about her marital issues and her struggle to stay true to her vows; Kim comes clean to Amber about Ken. + Reality TV + + + TVPG + + + + Sister Wives + Can't See the Forest for the Trees + Christine throws a 1950s-themed party for her 50th birthday and admits she's dating again; Kody checks out Janelle's new apartment but realizes she's planning a future without him; Meri worries about big changes in her life. + Reality TV + + + TVPG + + + + My Big Fat Fabulous Life + Extra Fabulous: My Big Fat Vacation Proposal + With bonus scenes; Whitney's search for Mr. Right seems bleaker than ever, and she fears being alone; after finding her father grief-stricken at the cemetery, Whitney and Hunter present travel destinations to Glenn for his big bucket list trip. + Reality TV + Documentary + + + TV14 + + + + My Big Fat Fabulous Life + My Dad's Big Fat Family Tattoo + The family competitions continue as Whitney welcomes Angie and Jaime to North Carolina, but the bonding may go too far with matching tattoos; Glenn extends an invitation to Switzerland for his new family despite their inexperience with traveling. + Reality TV + Documentary + + + TV14 + + + + Welcome to Plathville + I Am Not Bound To Please .. + Ethan leaves Olivia behind in Minnesota as he heads to Cairo to pick up his cars and reconnect with his family; Olivia talks to her friend about her marital issues and her struggle to stay true to her vows; Kim comes clean to Amber about Ken. + Reality TV + + + TVPG + + + + Sister Wives + Can't See the Forest for the Trees + Christine throws a 1950s-themed party for her 50th birthday and admits she's dating again; Kody checks out Janelle's new apartment but realizes she's planning a future without him; Meri worries about big changes in her life. + Reality TV + + + TVPG + + + + 1000-Lb. Sisters + End of an Era + Amy and Michael finally move out of the duplex; Tammy's partying phase takes a turn for the worse; Amanda tries to get through to her sister before it's too late; Amy's in for a rude awakening at her annual checkup with Dr. Procter. + Reality TV + Documentary + + + TV14 + + + + 1000-Lb. Sisters + Never Say Never + Amy sees a pediatric dietitian and faces some difficult truths about Gage's diet; Dr. Smith makes a house call and confronts Tammy about her partying lifestyle; while on the road with Chris, Tammy's health hits a dangerous low point. + Reality TV + Documentary + + + TV14 + + + + The Jennifer Hudson Show + The EGOT winner's daytime talk show features celebrity interviews, topical stories, community heroes, viral sensations, and music, bringing fun, uplifting, and empowering conversations to the forefront. + Talk Shows + + + TVPG + + + + Untold Stories of the E.R. + Blackout + Police officers bring in a criminal that is comatose; a man found passed out in the snow with no jacket or shoes arrives in the ER and a doctor is faced with a family emergency on her day-off. + Reality TV + + + TVPG + + + + Untold Stories of the E.R. + Blackout, Bleedout + A wrist fracture turns into a medical mystery; two fishermen get stuck on the same lure; a cheerleader with a sprained finger nearly dies of an unexpected cause; a power outage foils the ER team's effort to get a dying patient to the O.R. + Reality TV + + + TVPG + + + + Crack Addicts + A Tough Nut, the Case, Wise + Chiropractor Dr. Colón treats Liana, a cane-bound woman suffering from involuntary tremors; Sarah's obsession with corsets causes her migraines; Amy, a little person, can no longer walk on her own; Brenda has uncontrollable gas. + Documentary + Reality TV + + + TV14 + + + + Crack Addicts + A Cold One; The Books; Corn + Dr. Colón helps a woman who cannot keep her joints in place; a new mother suffers from a tragic boat accident; a bodybuilding leukemia survivor; a constipated baby. + Documentary + Reality TV + + + TV14 + + + + Hoarding: Buried Alive + Homeless Man With a House + Bennie and Rhonda have lived decades of compulsive hoarding that have driven their loved ones away. + Reality TV + Documentary + + + TVPG + + + + Hoarding: Buried Alive + Nowhere Near Normal + Jahn is an extreme hoarder trying to clear her two houses before they are both condemned. + Reality TV + Documentary + + + TVPG + + + + Hoarding: Buried Alive + Overwhelming Pile of Junk + Debbie lost the company of her four children to hoarding; Chip's family of six is forced to live in sixteen hundred square feet of living space. + Reality TV + Documentary + + + TVPG + + + + Too Large + Fat Girl's Dream + Jennifer started to gain weight after a car accident. + Health + Reality TV + + + TV14 + + + + Too Large + Dr. Procter Is a Daddy! + Corey is a young gay man who is just getting back on his feet after being homeless; He has dreams of getting back into college and finding a serious relationship, but he needs to make huge changes if he is going to live his dreams. + Health + Reality TV + + + TV14 + + + + My 600-Lb. Life + John & Lonnie's Story + John and Lonnie are two brothers from opposite ends of the spectrum; estranged for years, the brothers are now brought together by a common need to lose weight while they still can. + Reality TV + Documentary + + + TVMA + + + + My 600-Lb. Life + Lindsey's Story Part 1 + Lindsey had it all: a white picket fence, a loving husband and a great job; now her food addiction is threatening to ruin everything. + Reality TV + Documentary + + + TV14 + + + + Student Body + A distressing incident compels childhood best friends Jane and Merritt to take action against their high school math teacher, driving their splintered relationship into further turmoil and provoking deadly consequences. + + Montse Hernandez + Christian Camargo + Cheyenne Haynes + + 2022 + Movies + Horror + + + + It Follows + Following a strange sexual encounter, a teenager (Maika Monroe) has disturbing visions and the inescapable feeling that someone -- or something -- is stalking her. + + Maika Monroe + Keir Gilchrist + Daniel Zovatto + + 2014 + Movies + Horror + + + TVPG + + + 3 + + + + Vamps + Bloodsucking party girls (Alicia Silverstone, Krysten Ritter) find their destinies at stake when one falls for the son of a vampire hunter and the other encounters a long-ago love. + + Alicia Silverstone + Krysten Ritter + Dan Stevens + + 2012 + Movies + Comedy + + + + Vamps + Bloodsucking party girls (Alicia Silverstone, Krysten Ritter) find their destinies at stake when one falls for the son of a vampire hunter and the other encounters a long-ago love. + + Alicia Silverstone + Krysten Ritter + Dan Stevens + + 2012 + Movies + Comedy + + + + The Good Boss + Awaiting a visit by a committee that could give his company an award for excellence, the owner of an industrial scales manufacturing business tries to resolve any problems from his workers. + + Javier Bardem + Almudena Amor + Manolo Solo + + 2021 + Movies + Drama + + + + Children of a Lesser God + A teacher (William Hurt) falls in love with a gifted but bitter graduate (Marlee Matlin) at a Maine school for the deaf. + + William Hurt + Marlee Matlin + Piper Laurie + + 1986 + Movies + Drama + + + TVG + + + 3 + + + + Mrs. Brown + The friendship of a loyal servant, Scotsman John Brown (Billy Connolly), revives the spirits of Britain's widowed Queen Victoria (Judi Dench). + + Judi Dench + Billy Connolly + Geoffrey Palmer + + 1997 + Movies + History + + + TVG + + + 3 + + + + A Mighty Heart + Mariane Pearl (Angelina Jolie) begins a terrifying search for her husband, journalist Daniel Pearl (Dan Futterman), after he is kidnapped by terrorists in 2002 Pakistan. + + Angelina Jolie + Dan Futterman + Archie Panjabi + + 2007 + Movies + Docu-Drama + + + TVPG + + + 3 + + + + Resistance: 1942 + Caught behind enemy lines in 1942, a small group of resistance fighters broadcast a message of hope to fellow survivors over the radio as they try to avoid the Gestapo. + + Cary Elwes + Jason Patric + Judd Hirsch + + 2021 + Movies + War + + + + World Trade Center + Two Port Authority officers (Nicolas Cage, Michael Peña) become trapped in the rubble of the World Trade Center after going in to help people escape from the buildings during the terrorist attacks of Sept. 11, 2001. + + Nicolas Cage + Michael Peña + Maggie Gyllenhaal + + 2006 + Movies + Drama + + + TVG + + + 3 + + + + Flags of Our Fathers + Some of the servicemen who raised the U.S. flag on Mount Suribachi during the Battle of Iwo Jima at the end of World War II live to hear of their status as heroes. + + Ryan Phillippe + Jesse Bradford + Adam Beach + + 2006 + Movies + War + + + TVPG + + + 3 + + + + Terminator 2: Judgment Day + Two cyborgs from the future battle over the life of a teen (Edward Furlong) who will someday lead humanity against the machines. + + Arnold Schwarzenegger + Linda Hamilton + Edward Furlong + + 1991 + Movies + Sci-Fi + + + TVG + + + 4 + + + + Resistance: 1942 + Caught behind enemy lines in 1942, a small group of resistance fighters broadcast a message of hope to fellow survivors over the radio as they try to avoid the Gestapo. + + Cary Elwes + Jason Patric + Judd Hirsch + + 2021 + Movies + War + + + + Devotion + The story of Jesse Brown, the first Black aviator in Navy history, and fellow fighter pilot Tom Hudner. Helping to turn the tide in the Korean War's most brutal battle, their heroic sacrifices ultimately make them the Navy's most celebrated wingmen. + + Jonathan Majors + Glen Powell Jr. + Christina Jackson + + 2022 + Movies + Drama + + + TVG + + + 2 + + + + Hart's War + A conniving colonel (Bruce Willis) oversees the murder trial of a black airman (Terrence Howard) in a Nazi prisoner-of-war camp. + + Bruce Willis + Colin Farrell + Terrence Howard + + 2002 + Movies + War + + + TVPG + + + 2 + + + + Zodiac + Investigators and reporters become obsessed with finding the elusive serial killer terrorizing San Francisco in the late 1960s and '70s. + + Jake Gyllenhaal + Mark Ruffalo + Robert Downey Jr. + + 2007 + Movies + Thriller + + + TVPG + + + 3 + + + + Zodiac + Investigators and reporters become obsessed with finding the elusive serial killer terrorizing San Francisco in the late 1960s and '70s. + + Jake Gyllenhaal + Mark Ruffalo + Robert Downey Jr. + + 2007 + Movies + Thriller + + + TVPG + + + 3 + + + + The Yards + A friend's (Joaquin Phoenix) lure of easy money draws an ex-con (Mark Wahlberg) into the corrupt world of his uncle's subway-train business. + + Mark Wahlberg + Joaquin Phoenix + Charlize Theron + + 2000 + Movies + Crime Story + + + TVG + + + 2 + + + + Almost Famous + An aspiring teenage rock journalist gets his big break when he follows an up-and-coming band on its tour. + + Billy Crudup + Frances McDormand + Kate Hudson + + 2000 + Movies + Comedy + Drama + + + TVG + + + 4 + + + + Dirty Rotten Scoundrels + An American con man (Steve Martin) and his British rival (Michael Caine) target a soap heiress (Glenne Headly) from Cleveland on the French Riviera. + + Steve Martin + Michael Caine + Glenne Headly + + 1988 + Movies + Comedy + + + TVG + + + 3 + + + + Teaching Mrs. Tingle + With their futures threatened by false accusations of cheating, three teenagers take matters into their own hands. + + Helen Mirren + Katie Holmes + Jeffrey Tambor + + 1999 + Movies + Comedy + + + TVG + + + 1 + + + + When Cary Grant Introduced Timothy Leary to LSD + While in his dressing room on the set of. + Specials + Documentary + + + TVPG + + + + Who's Harry Crumb? + A blundering private eye's (John Candy) boss (Jeffrey Jones) puts him on a kidnapping case he is not supposed to solve. + + John Candy + Jeffrey Jones + Annie Potts + + 1989 + Movies + Comedy + + + TVG + + + 2 + + + + Striptease + A stripper (Demi Moore) seeking custody of her daughter becomes involved with a libidinous congressman. + + Demi Moore + Armand Assante + Ving Rhames + + 1996 + Movies + Drama + + + TVPG + + + 2 + + + + Out of the Blue + Connor's life has stalled out after his release from prison on an assault charge. One day he meets the wife of a wealthy businessman, and they begin an intense physical relationship that quickly escalates into idle talk about her husband's murder. + + Diane Kruger + Ray Nicholson + Hank Azaria + + 2022 + Movies + Thriller + + + + Machete Kills + The president recruits ex-Federale Machete (Danny Trejo) to take down an eccentric arms dealer who plans to spread war and anarchy throughout the world. + + Danny Trejo + Michelle Rodriguez + Sofía Vergara + + 2013 + Movies + Action + + + TVPG + + + 2 + + + + The Ballad of Lefty Brown + A merciless cowboy sets out on a dangerous journey across the frontier, determined to do whatever it takes to avenge his longtime partner's brutal murder. + + Bill Pullman + Kathy Baker + Jim Caviezel + + 2017 + Movies + Western + + + + Organ Trail + Abigale and her family fall victim to a gang of ruthless cowboys while making their way across the Oregon Trail. As the only survivor, she does whatever it takes to retrieve her family's horse from the clutches of the bloodthirsty bandits. + + Zoé De Grand Maison + Nicholas Logan + Olivia Grace Applegate + + 2023 + Movies + Horror + + + TVPG + + + + Texas Rangers + Young men (James Van Der Beek, Dylan McDermott, Usher Raymond) band together to stop a ruthless bandit from engineering raids on cattle ranchers. + + James Van Der Beek + Dylan McDermott + Usher + + 2001 + Movies + Western + + + TVG + + + 1 + + + + Schindler's List + German industrialist Oskar Schindler (Liam Neeson) plots with his accountant (Ben Kingsley) to save Jewish prisoners from the Nazis. + + Liam Neeson + Ben Kingsley + Ralph Fiennes + + 1993 + Movies + History + + + TVPG + + + 4 + + + + Schindler's List + German industrialist Oskar Schindler (Liam Neeson) plots with his accountant (Ben Kingsley) to save Jewish prisoners from the Nazis. + + Liam Neeson + Ben Kingsley + Ralph Fiennes + + 1993 + Movies + History + + + TVPG + + + 4 + + + + River's Edge + Small-town teens (Crispin Glover, Keanu Reeves) react oddly after a peer strangles his girlfriend and shows them the corpse. + + Crispin Glover + Keanu Reeves + Dennis Hopper + + 1987 + Movies + Drama + + + TVPG + + + 3 + + + + Crawlspace + After witnessing a brutal murder in a cabin, a man hides in a crawlspace while the killers scour the property for a hidden fortune. As they draw nearer, he must decide if the crawlspace will be his tomb or the battleground in his fight for survival. + + Henry Thomas + Bradley Stryker + Jennifer Robertson + + 2022 + Movies + Thriller + + + + On the Edge + A metro driver witnesses his son die and sets out to track down those who are responsible. + + Antonio de la Torre + Marine Vacth + Olivier Gourmet + + 2022 + Movies + Drama + + + + What Lies Beneath + Supernatural events plague a college professor (Harrison Ford) and his wife (Michelle Pfeiffer) as they investigate a murder she believes occurred next door. + + Harrison Ford + Michelle Pfeiffer + Diana Scarwid + + 2000 + Movies + Thriller + + + TVPG + + + 2 + + + + The Conversation + When a surveillance expert (Gene Hackman) suspects that the subjects of his current job will be killed, his conscience interferes. + + Gene Hackman + John Cazale + Frederic Forrest + + 1974 + Movies + Thriller + + + TVG + + + 4 + + + + Thief + A safecracker (James Caan) runs into trouble with the mob when he wants to quit after one last heist. + + James Caan + Tuesday Weld + Willie Nelson + + 1981 + Movies + Action + + + TVPG + + + 2 + + + + Rift + FBI agent Jason Cole appears to have it all, until his past rears its head and propels him into a situation that not even all his training and expertise can prepare him for. With time running out, the wrong decision could cost him everything. + + Darren Cain + David Lee Garver + Josh Hooks + + 2022 + Movies + Action + + + + Broken Star + An ambitious actress resorts to extreme measures to ensure she'll be famous forever. + + Analeigh Tipton + Tyler Labine + Monique Coleman + + 2018 + Movies + Thriller + + + TVPG + + + + Another Girl + Ignoring advice from others, a young woman befriends a female stranger online, sharing her innermost feelings and secrets. It's only when she agrees to meet the girl in the flesh that she discovers the unimaginable truth. + + Sammi Hanratty + Peter Gadiot + Paul Rush + + 2021 + Movies + Thriller + + + + Smoke Signals + A geeky American Indian (Evan Adams) travels from Idaho to Phoenix with a stoic companion (Adam Beach) whose father died. + + Adam Beach + Evan Adams + Irene Bedard + + 1998 + Movies + Comedy + Drama + + + 3 + + + + Aftersun + Years after their last vacation, Sophie reflects on the rare time spent with her loving, idealistic father, attempting to reconcile the father she knew with the man she didn't. + + Paul Mescal + Frankie Corio + Celia Rowlson-Hall + + 2022 + Movies + Drama + + + TVG + + + 3 + + + + As They Made Us + A divorced mother of two struggles to balance the dynamic forces within her dysfunctional family as she tries to cultivate new love. + + Dianna Agron + Simon Helberg + Candice Bergen + + 2022 + Movies + Romance + + + TV14 + + + + 23 Walks + A chance encounter leads to a budding romance between a man and a woman who walk their dogs in the park. + + Dave Johns + Alison Steadman + Rakhee Thakrar + + 2020 + Movies + Romance + + + + 23 Walks + A chance encounter leads to a budding romance between a man and a woman who walk their dogs in the park. + + Dave Johns + Alison Steadman + Rakhee Thakrar + + 2020 + Movies + Romance + + + + Getting Even With Dad + An 11-year-old (Macaulay Culkin) moves in with his ex-convict father (Ted Danson) in the confusion of a major heist. + + Macaulay Culkin + Ted Danson + Glenne Headly + + 1994 + Movies + Children + + + TVG + + + 2 + + + + The Cutting Edge + An ex-hockey player (D.B. Sweeney) and a prima donna (Moira Kelly) bicker as paired figure skaters shooting for the Olympics. + + D.B. Sweeney + Moira Kelly + Roy Dotrice + + 1992 + Movies + Romance + + + TVG + + + 2 + + + + When Joan Kissed Barbra + Joan Rivers' poignant story of kissing Barbra Streisand in a play before they were famous. + Specials + Comedy + + + TVMA + + + + The Civil Dead + A misanthropic photographer wants to do nothing while his wife is away, but his plans are thwarted when an old pal resurfaces. + + Clay Tatum + Whitmer Thomas + DeMorge Brown + + 2023 + Movies + Comedy + + + + More American Graffiti + A couple (Ron Howard, Cindy Williams) and their high-school friends do their own things on four mid-1960s New Year's Eves. + + Candy Clark + Ronny Howard + Cindy Williams + + 1979 + Movies + Comedy + Drama + + + TVG + + + 2 + + + + Better Off Dead + After his girlfriend dumps him for a skier, a teen (John Cusack) meets an exchange student (Diane Franklin) from France. + + John Cusack + Diane Franklin + David Ogden Stiers + + 1985 + Movies + Comedy + + + 2 + + + + Tammy's Always Dying + A woman comes to a crossroad when her perpetually troubled mother becomes terminally ill. + + Felicity Huffman + Anastasia Phillips + Clark Johnson + + 2019 + Movies + Drama + + + + The Woods + A tormented teen (Agnes Bruckner) has terrifying visions, while her classmates at a remote boarding-school for girls go missing. + + Patricia Clarkson + Bruce Campbell + Agnes Bruckner + + 2005 + Movies + Horror + + + TVPG + + + 2 + + + + Follow Her + A struggling actress responds to a mysterious classified ad and soon finds herself trapped in her new boss's twisted revenge fantasy. + + Luke Cook + Dani Barker + Eliana Jones + + 2022 + Movies + Drama + + + + Tollbooth + A man works solo shifts in the quietest toll booth in Wales, hiding from a criminal past where nobody would ever look. When he finally gets rumbled, word of his whereabouts gets out and his enemies head west for revenge. + + Michael Smiley + Annes Elwy + Iwan Rheon + + 2021 + Movies + Thriller + + + + The Survivalist + A year and a half after the fall of civilization due to a viral outbreak, a former FBI agent is forced to protect a young woman immune to the disease from a dangerous gang leader hunting her. + + John Malkovich + Jonathan Rhys Meyers + Ruby Modine + + 2021 + Movies + Action + + + + Hamlet + A contemporary version of the Shakespeare play is set in New York City circa 2000, after a hostile corporate takeover. + + Ethan Hawke + Kyle MacLachlan + Sam Shepard + + 2000 + Movies + Drama + + + TVG + + + 3 + + + + Shaft + A detective (Samuel L. Jackson) and a narcotics cop (Vanessa L. Williams) track a sociopath out to kill a woman who can testify that he committed murder. + + Samuel L. Jackson + Vanessa Williams + Jeffrey Wright + + 2000 + Movies + Action + + + TVPG + + + 2 + + + + Mercy + An ex-military doctor finds herself in a fight for survival when the Irish mafia seizes control of the hospital at which she works. When her son is taken hostage, she's forced to rely on her battle-hardened past and lethal skills to save the day. + + Leah Gibson + Jonathan Rhys Meyers + Jon Voight + + 2023 + Movies + Action + + + TVPG + + + + The Killing of a Sacred Deer + A fatherless teen starts to insinuate himself into the life of a renowned surgeon, his wife and two children. The full scope of his intent soon becomes menacingly clear when he confronts the doctor with a long-forgotten transgression. + + Bill Camp + Raffey Cassidy + Denise Dal Vera + + 2017 + Movies + Thriller + + + TVPG + + + 3 + + + + Broadcast Signal Intrusion + In the late 1990s, a video archivist unearths a series of sinister pirate broadcasts and becomes obsessed with uncovering the conspiracy behind them. + + Harry Shum Jr. + Anthony E. Cabral + Richard Cotovsky + + 2021 + Movies + Horror + + + + Broadcast Signal Intrusion + In the late 1990s, a video archivist unearths a series of sinister pirate broadcasts and becomes obsessed with uncovering the conspiracy behind them. + + Harry Shum Jr. + Anthony E. Cabral + Richard Cotovsky + + 2021 + Movies + Horror + + + + Almost Famous + An aspiring teenage rock journalist gets his big break when he follows an up-and-coming band on its tour. + + Billy Crudup + Frances McDormand + Kate Hudson + + 2000 + Movies + Comedy + Drama + + + TVG + + + 4 + + + + Dirty Rotten Scoundrels + An American con man (Steve Martin) and his British rival (Michael Caine) target a soap heiress (Glenne Headly) from Cleveland on the French Riviera. + + Steve Martin + Michael Caine + Glenne Headly + + 1988 + Movies + Comedy + + + TVG + + + 3 + + + + Abandon + A detective (Benjamin Bratt) discovers new facts regarding the disappearance of a collegian's (Katie Holmes) boyfriend (Charlie Hunnam) two years earlier. + + Katie Holmes + Benjamin Bratt + Charlie Hunnam + + 2002 + Movies + Thriller + + + TVG + + + 1 + + + + Congo + Killer gorillas menace an ex-CIA agent (Laura Linney), a primatologist (Dylan Walsh) and others on a mission in Africa. + + Dylan Walsh + Laura Linney + Ernie Hudson + + 1995 + Movies + Action + + + TVG + + + 2 + + + + Out of the Blue + Connor's life has stalled out after his release from prison on an assault charge. One day he meets the wife of a wealthy businessman, and they begin an intense physical relationship that quickly escalates into idle talk about her husband's murder. + + Diane Kruger + Ray Nicholson + Hank Azaria + + 2022 + Movies + Thriller + + + + The Forger + An art forger (John Travolta) arranges an early release from prison so that he can spend time with his dying son, then must pull off one final job for the man who made his freedom possible. + + John Travolta + Christopher Plummer + Tye Sheridan + + 2014 + Movies + Drama + + + TVPG + + + + The Survivalist + A year and a half after the fall of civilization due to a viral outbreak, a former FBI agent is forced to protect a young woman immune to the disease from a dangerous gang leader hunting her. + + John Malkovich + Jonathan Rhys Meyers + Ruby Modine + + 2021 + Movies + Action + + + + 1917 + Two British soldiers receive seemingly impossible orders during World War I. In a race against time, they must cross into enemy territory to deliver a message that could potentially save 1,600 of their fellow comrades -- including one's own brother. + + George MacKay + Dean-Charles Chapman + Mark Strong + + 2019 + Movies + War + + + TVPG + + + 3 + + + + Disquiet + A patient wakes to find he is trapped in a deserted hospital by forces that refuse to let him leave. + + Jonathan Rhys Meyers + Lochlyn Munro + Elyse Levesque + + 2023 + Movies + Thriller + + + + Dangerous Game: The Legacy Murders + A reunion at a remote mansion takes a lethal turn when family members are forced to play a deadly survival game where only one will make it out alive. + + Jonathan Rhys Meyers + Will Sasso + Jon Voight + + 2022 + Movies + Thriller + + + + It Follows + Following a strange sexual encounter, a teenager (Maika Monroe) has disturbing visions and the inescapable feeling that someone -- or something -- is stalking her. + + Maika Monroe + Keir Gilchrist + Daniel Zovatto + + 2014 + Movies + Horror + + + TVPG + + + 3 + + + + Teeth + A teen (Jess Weixler) learns that she is a living example of the vagina dentata myth after a sexual encounter with a classmate takes a grisly turn. + + Jess Weixler + John Hensley + Josh Pais + + 2007 + Movies + Comedy + + + TV14 + + + 2 + + + + Teeth + A teen (Jess Weixler) learns that she is a living example of the vagina dentata myth after a sexual encounter with a classmate takes a grisly turn. + + Jess Weixler + John Hensley + Josh Pais + + 2007 + Movies + Comedy + + + TV14 + + + 2 + + + + On the Edge + A metro driver witnesses his son die and sets out to track down those who are responsible. + + Antonio de la Torre + Marine Vacth + Olivier Gourmet + + 2022 + Movies + Drama + + + + Ali & Ava + Two lonely people develop a deep connection despite the lingering legacy of their past relationships. + + Adeel Akhtar + Claire Rushbrook + Ellora Torchia + + 2021 + Movies + Drama + + + + The Conversation + When a surveillance expert (Gene Hackman) suspects that the subjects of his current job will be killed, his conscience interferes. + + Gene Hackman + John Cazale + Frederic Forrest + + 1974 + Movies + Thriller + + + TVG + + + 4 + + + + Hamlet + A contemporary version of the Shakespeare play is set in New York City circa 2000, after a hostile corporate takeover. + + Ethan Hawke + Kyle MacLachlan + Sam Shepard + + 2000 + Movies + Drama + + + TVG + + + 3 + + + + The Cider House Rules + Raised to be an obstetrician at a Maine orphanage, a young man (Tobey Maguire) leaves to work at a cider mill with a soldier's beloved (Charlize Theron). + + Tobey Maguire + Charlize Theron + Delroy Lindo + + 1999 + Movies + Drama + + + TVG + + + 3 + + + + Dead Man Walking + A nun (Susan Sarandon) helps a double murderer (Sean Penn) deal with his actions and prepare for his execution in a New Orleans prison. + + Susan Sarandon + Sean Penn + Robert Prosky + + 1995 + Movies + Crime Story + + + TVPG + + + 4 + + + + Flags of Our Fathers + Some of the servicemen who raised the U.S. flag on Mount Suribachi during the Battle of Iwo Jima at the end of World War II live to hear of their status as heroes. + + Ryan Phillippe + Jesse Bradford + Adam Beach + + 2006 + Movies + War + + + TVPG + + + 3 + + + + Devotion + The story of Jesse Brown, the first Black aviator in Navy history, and fellow fighter pilot Tom Hudner. Helping to turn the tide in the Korean War's most brutal battle, their heroic sacrifices ultimately make them the Navy's most celebrated wingmen. + + Jonathan Majors + Glen Powell Jr. + Christina Jackson + + 2022 + Movies + Drama + + + TVG + + + 2 + + + + As They Made Us + A divorced mother of two struggles to balance the dynamic forces within her dysfunctional family as she tries to cultivate new love. + + Dianna Agron + Simon Helberg + Candice Bergen + + 2022 + Movies + Romance + + + TV14 + + + + Moonstruck + An Italian-American widow (Cher), engaged to a reticent suitor, falls in love with his brother (Nicolas Cage). + + Cher + Nicolas Cage + Vincent Gardenia + + 1987 + Movies + Romance + + + TVG + + + 3 + + + + Just Between Friends + After a man's (Ted Danson) death, his wife (Mary Tyler Moore) realizes her pregnant friend (Christine Lahti) was his mistress. + + Mary Tyler Moore + Ted Danson + Christine Lahti + + 1986 + Movies + Drama + + + TV14 + + + 2 + + + + Wrong Turn + Despite warnings to stick to the Appalachian Trail, hikers stray off course and cross into land inhabited by a hidden community of mountain dwellers who use deadly means to protect their way of life. + + Charlotte Vega + Matthew Modine + Adain Bradley + + 2021 + Movies + Horror + + + TVPG + + + + Fire Island + The perfect summer vacation quickly spirals out of control for a group of friends on the infamous, picturesque party getaway of Fire Island as they find themselves caught in a web of sex, lies and cold-blooded murder. + + Kahyun Kim + Jonathan Bennett + Connor Paolo + + 2023 + Movies + Horror + + + + Fire Island + The perfect summer vacation quickly spirals out of control for a group of friends on the infamous, picturesque party getaway of Fire Island as they find themselves caught in a web of sex, lies and cold-blooded murder. + + Kahyun Kim + Jonathan Bennett + Connor Paolo + + 2023 + Movies + Horror + + + + Student Body + A distressing incident compels childhood best friends Jane and Merritt to take action against their high school math teacher, driving their splintered relationship into further turmoil and provoking deadly consequences. + + Montse Hernandez + Christian Camargo + Cheyenne Haynes + + 2022 + Movies + Horror + + + + Tollbooth + A man works solo shifts in the quietest toll booth in Wales, hiding from a criminal past where nobody would ever look. When he finally gets rumbled, word of his whereabouts gets out and his enemies head west for revenge. + + Michael Smiley + Annes Elwy + Iwan Rheon + + 2021 + Movies + Thriller + + + + Zeroville + With two tattoos of Montgomery Clift and Elizabeth Taylor on his shaved head, Vikar rides a bus into Hollywood and soon makes an impression on a beautiful actress -- thus beginning a dreamlike journey through the film business in the 1970s. + + James Franco + Megan Fox + Seth Rogen + + 2019 + Movies + Comedy + + + TVPG + + + + Nana's Boys + The intimate life of a couple who are confronted with the fact that their relationship is not as solid as they thought. + + David J. Cork + Jared Wayne Gladly + Malika Nzinga + + 2022 + Movies + Drama + + + + American Graffiti + Four teens in 1962 California get a final, nostalgic glimpse of innocence before facing their postgraduation lives. + + Richard Dreyfuss + Ronny Howard + Paul Le Mat + + 1973 + Movies + Comedy + Drama + + + TVG + + + 4 + + + + Some Kind of Hero + A Vietnam POW (Richard Pryor) comes home after six years to no wife, no business and no chance of getting back pay. + + Richard Pryor + Margot Kidder + Ray Sharkey + + 1982 + Movies + Comedy + + + TVPG + + + 2 + + + + World Trade Center + Two Port Authority officers (Nicolas Cage, Michael Peña) become trapped in the rubble of the World Trade Center after going in to help people escape from the buildings during the terrorist attacks of Sept. 11, 2001. + + Nicolas Cage + Michael Peña + Maggie Gyllenhaal + + 2006 + Movies + Drama + + + TVG + + + 3 + + + + A Simple Plan + A Minnesotan (Bill Paxton), his dimwitted brother (Billy Bob Thornton) and his brother's redneck friend (Brent Briscoe) find and decide to keep $4 million. + + Bill Paxton + Billy Bob Thornton + Brent Briscoe + + 1998 + Movies + Thriller + + + TVPG + + + 3 + + + + Best Defense + An engineer (Dudley Moore) fails to get the bugs out of a tank before an Army officer (Eddie Murphy) has to use it in Kuwait. + + Dudley Moore + Eddie Murphy + Kate Capshaw + + 1984 + Movies + Comedy + + + TVG + + + 1 + + + + Better Off Dead + After his girlfriend dumps him for a skier, a teen (John Cusack) meets an exchange student (Diane Franklin) from France. + + John Cusack + Diane Franklin + David Ogden Stiers + + 1985 + Movies + Comedy + + + 2 + + + + How to Lose a Guy in 10 Days + A columnist (Kate Hudson) tries to make a man (Matthew McConaughey) dump her, but he bets his boss that she will fall in love. + + Kate Hudson + Matthew McConaughey + Adam Goldberg + + 2003 + Movies + Romance + + + TVG + + + 2 + + + + Say Anything... + A high-school senior (John Cusack) falls in love with an honor student (Ione Skye) bound for studies in England. + + John Cusack + Ione Skye + John Mahoney + + 1989 + Movies + Romance + + + TVG + + + 3 + + + + Almost Famous + An aspiring teenage rock journalist gets his big break when he follows an up-and-coming band on its tour. + + Billy Crudup + Frances McDormand + Kate Hudson + + 2000 + Movies + Comedy + Drama + + + TVG + + + 4 + + + + Organ Trail + Abigale and her family fall victim to a gang of ruthless cowboys while making their way across the Oregon Trail. As the only survivor, she does whatever it takes to retrieve her family's horse from the clutches of the bloodthirsty bandits. + + Zoé De Grand Maison + Nicholas Logan + Olivia Grace Applegate + + 2023 + Movies + Horror + + + TVPG + + + + Organ Trail + Abigale and her family fall victim to a gang of ruthless cowboys while making their way across the Oregon Trail. As the only survivor, she does whatever it takes to retrieve her family's horse from the clutches of the bloodthirsty bandits. + + Zoé De Grand Maison + Nicholas Logan + Olivia Grace Applegate + + 2023 + Movies + Horror + + + TVPG + + + + River's Edge + Small-town teens (Crispin Glover, Keanu Reeves) react oddly after a peer strangles his girlfriend and shows them the corpse. + + Crispin Glover + Keanu Reeves + Dennis Hopper + + 1987 + Movies + Drama + + + TVPG + + + 3 + + + + Megalodon Rising + An armada of modern warships proves no match for a megalodon: a giant shark thought to be extinct. + + Tom Sizemore + O'Shay Neal + Wynter Eddins + + 2021 + Movies + Sci-Fi + + + + Without a Paddle + Three childhood friends (Seth Green, Matthew Lillard, Dax Shepard) embark on a canoe trip to find a plane hijacker's stash of money. + + Seth Green + Matthew Lillard + Dax Shepard + + 2004 + Movies + Comedy + + + TVG + + + 2 + + + + A Mighty Heart + Mariane Pearl (Angelina Jolie) begins a terrifying search for her husband, journalist Daniel Pearl (Dan Futterman), after he is kidnapped by terrorists in 2002 Pakistan. + + Angelina Jolie + Dan Futterman + Archie Panjabi + + 2007 + Movies + Docu-Drama + + + TVPG + + + 3 + + + + Children of a Lesser God + A teacher (William Hurt) falls in love with a gifted but bitter graduate (Marlee Matlin) at a Maine school for the deaf. + + William Hurt + Marlee Matlin + Piper Laurie + + 1986 + Movies + Drama + + + TVG + + + 3 + + + + Aftersun + Years after their last vacation, Sophie reflects on the rare time spent with her loving, idealistic father, attempting to reconcile the father she knew with the man she didn't. + + Paul Mescal + Frankie Corio + Celia Rowlson-Hall + + 2022 + Movies + Drama + + + TVG + + + 3 + + + + What Lies Beneath + Supernatural events plague a college professor (Harrison Ford) and his wife (Michelle Pfeiffer) as they investigate a murder she believes occurred next door. + + Harrison Ford + Michelle Pfeiffer + Diana Scarwid + + 2000 + Movies + Thriller + + + TVPG + + + 2 + + + + Thief + A safecracker (James Caan) runs into trouble with the mob when he wants to quit after one last heist. + + James Caan + Tuesday Weld + Willie Nelson + + 1981 + Movies + Action + + + TVPG + + + 2 + + + + Disquiet + A patient wakes to find he is trapped in a deserted hospital by forces that refuse to let him leave. + + Jonathan Rhys Meyers + Lochlyn Munro + Elyse Levesque + + 2023 + Movies + Thriller + + + + Jurassic Park + An entrepreneur invites scientists (Sam Neill, Laura Dern), a mathematics theorist (Jeff Goldblum) and others to his jungle theme-park featuring dinosaurs regenerated from DNA. + + Sam Neill + Laura Dern + Jeff Goldblum + + 1993 + Movies + Sci-Fi + Adventure + + + TVG + + + 3 + + + + All Elite Wrestling: Collision + Exciting new matches, more stories and more action, featuring the world-class All Elite Wrestling roster. + Sports + Wrestling + + + TV14 + + + + Jurassic Park III + A paleontologist (Sam Neill) and a couple (William H. Macy, Tea Leoni) outrun cloned dinosaurs after their plane crashes on an island. + + Sam Neill + William H. Macy + Téa Leoni + + 2001 + Movies + Adventure + + + TVG + + + 2 + + + + Jurassic Park III + A paleontologist (Sam Neill) and a couple (William H. Macy, Tea Leoni) outrun cloned dinosaurs after their plane crashes on an island. + + Sam Neill + William H. Macy + Téa Leoni + + 2001 + Movies + Adventure + + + TVG + + + 2 + + + + The Mummy + A battle in the Middle East accidentally unearths Ahmanet, a betrayed Egyptian princess who was entombed under the desert. Now, a soldier of fortune must stop the resurrected monster as she embarks on a furious rampage through London. + + Tom Cruise + Russell Crowe + Annabelle Wallis + + 2017 + Movies + Action + + + TVPG + + + 2 + + + + NCIS: New Orleans + The Asset + The team joins forces with FBI Director Isler after a Russian operative with intelligence on sleeper agents disappears; Tammy partners with former sleeper agent Eva Azarova to assist in the disappearance. + + Scott Bakula + Lucas Black + Vanessa Ferlito + + Drama + + + TV14 + + + + NCIS: New Orleans + Dead Man Calling + The team investigates the copycat murder of an unsolved case from 150 years ago that spawned a legendary ghost story; Gregorio is spooked when the case is connected to a recent séance and a local medium. + + Scott Bakula + Lucas Black + Rob Kerkovich + + Drama + + + TV14 + + + + NCIS: New Orleans + Viral + Sebastian is placed on administrative leave after being questioned by the FBI about a foot chase; Pride and the team attempt to clear Sebastian's name. + + Scott Bakula + Lucas Black + Vanessa Ferlito + + Drama + + + TV14 + + + + NCIS: New Orleans + Acceptable Loss + The murder of a petty officer leads the team to a woman who is targeting men with high security clearance; Lasalle's father arrives to discuss the family business. + + Scott Bakula + Lucas Black + Vanessa Ferlito + + Drama + + + TV14 + + + + NCIS: New Orleans + Sheepdogs + Following a deadly car explosion in the French Quarter, the team interrogates a professor and former member of a student protest organization; Tammy discovers a secret about Hannah's personal life. + + Scott Bakula + Lucas Black + Vanessa Ferlito + + Drama + + + TV14 + + + + NCIS: New Orleans + Close to Home + The team places Mateo Diaz, a high school gang member turned informant, in protective custody while they investigate the murder of his junior reserve officers' training corps instructor; Pride needs his brother's help to gain Mateo's trust. + + Scott Bakula + Lucas Black + Vanessa Ferlito + + Drama + + + TV14 + + + + NCIS: New Orleans + Risk Assessment + The team investigates the murder of a Navy contractor who secretly lived two lives for decades. + + Scott Bakula + Lucas Black + Vanessa Ferlito + + Drama + + + TV14 + + + + NCIS: New Orleans + Tick Tock + Pride is given a series of tasks to complete by unknown assailants who are holding Wade and his father hostage. + + Scott Bakula + Lucas Black + Vanessa Ferlito + + Drama + + + TV14 + + + + NCIS: New Orleans + Vindicta + Pride and the team hope to take down a secret and lethal group of former intelligence agents and avenge the death of someone close to them. + + Scott Bakula + Lucas Black + Vanessa Ferlito + + Drama + + + TV14 + + + + Father of the Bride + A harried patriarch (Steve Martin) faces separation anxiety, exorbitant costs and more as he prepares for his daughter's (Kimberly Williams) wedding. + + Steve Martin + Diane Keaton + Kimberly Williams-Paisley + + 1991 + Movies + Comedy + + + TVG + + + 3 + + + + Father of the Bride Part II + A worrisome family patriarch (Steve Martin) is driven to further distraction by the simultaneous pregnancies of his wife (Diane Keaton) and daughter. + + Steve Martin + Diane Keaton + Martin Short + + 1995 + Movies + Comedy + + + TVG + + + 2 + + + + Hitch + A smooth-talking man (Will Smith) falls for a hardened columnist (Eva Mendes) while helping a shy accountant (Kevin James) woo a beautiful heiress. + + Will Smith + Eva Mendes + Kevin James + + 2005 + Movies + Romance + + + TVG + + + 3 + + + + Four Christmases + When their plans for a holiday getaway fall apart, a couple (Vince Vaughn, Reese Witherspoon) must spend Christmas Day trudging to a quartet of family get-togethers. + + Vince Vaughn + Reese Witherspoon + Robert Duvall + + 2008 + Movies + Christmas + Romance + + + TVG + + + 2 + + + + National Lampoon's Christmas Vacation + The Griswolds (Chevy Chase, Beverly D'Angelo) spend the holiday in a garish way, especially when a country cousin (Randy Quaid) pulls up in an RV. + + Chevy Chase + Beverly D'Angelo + Randy Quaid + + 1989 + Movies + Christmas + Comedy + + + TVG + + + 3 + + + + National Lampoon's Christmas Vacation + The Griswolds (Chevy Chase, Beverly D'Angelo) spend the holiday in a garish way, especially when a country cousin (Randy Quaid) pulls up in an RV. + + Chevy Chase + Beverly D'Angelo + Randy Quaid + + 1989 + Movies + Christmas + Comedy + + + TVG + + + 3 + + + + Four Christmases + When their plans for a holiday getaway fall apart, a couple (Vince Vaughn, Reese Witherspoon) must spend Christmas Day trudging to a quartet of family get-togethers. + + Vince Vaughn + Reese Witherspoon + Robert Duvall + + 2008 + Movies + Christmas + Romance + + + TVG + + + 2 + + + + NCIS: New Orleans + The Accident + The team investigates after a clinical trial in which brain implants are put into veterans is hacked; Patton must work alongside his ex-wife, who spearheads the project. + + Scott Bakula + Lucas Black + Vanessa Ferlito + + Drama + + + TV14 + + + + NCIS: New Orleans + Sins of the Father + Wade's son asks Pride for help after being attacked and discovering his girlfriend is missing; Pride must meet with a therapist to discuss his process for solving cases. + + Scott Bakula + Lucas Black + Vanessa Ferlito + + Drama + + + TV14 + + + + NCIS: New Orleans + Hard Knock Life + Pride starts to doubt evidence suggesting homeless kids murdered a petty officer. + + Scott Bakula + Lucas Black + Vanessa Ferlito + + Drama + + + TV14 + + + + NCIS: New Orleans + Mirror, Mirror + Rita Deveraux tells Pride that Douglas Hamilton is about to make a deal to get out of prison; Pride and the team re-investigate the Clearwater case in hopes of spoiling his plans. + + Scott Bakula + Lucas Black + Vanessa Ferlito + + Drama + + + TV14 + + + + Charmed + Witchstock + Paige tries on a pair of Grams' go-go boots and goes back in time; Leo and Chris try to stave off an amorphous creature surrounding the manor. + + Holly Marie Combs + Alyssa Milano + Rose McGowan + + Drama + + + TVPG + + + + Charmed + Prince Charmed + Paige and Phoebe conjure up Mr. Right as a birthday present for Piper; Chris convinces the sisters to bind Wyatt's powers, then demonic cult members kidnap the youngster. + + Holly Marie Combs + Alyssa Milano + Rose McGowan + + Drama + + + TVPG + + + + Charmed + Used Karma + Phoebe's boyfriend leaves her after learning she, Paige and Piper are actually witches; Richard tries to free himself of the family's karma. + + Holly Marie Combs + Alyssa Milano + Rose McGowan + + Drama + + + TVPG + + + + Charmed + The Legend of Sleepy Halliwell + Leo's mentor, Gideon, wants to find out who cast the spell of darkness over the school and conjured the headless horseman who has been beheading the teachers; Phoebe goes on a vision quest. + + Holly Marie Combs + Alyssa Milano + Rose McGowan + + Drama + + + TVPG + + + + Charmed + I Dream of Phoebe + The charmed ones get wishful when a genie named Jinny is freed from her bottle by Phoebe, who is then tricked into taking her place. + + Holly Marie Combs + Alyssa Milano + Rose McGowan + + Drama + + + TVPG + + + + Terminator: Dark Fate + Seasoned warrior Sarah Connor joins forces with a hybrid cyborg human and the T-800 model to protect a young woman from the Rev-9 -- a newly modified and seemingly indestructible liquid Terminator from the future. + + Linda Hamilton + Arnold Schwarzenegger + Mackenzie Davis + + 2019 + Movies + Sci-Fi + + + TVPG + + + 2 + + + + The Suicide Squad + The government sends the most dangerous supervillains in the world to the remote, enemy-infused island of Corto Maltese. Armed with high-tech weapons, they trek through the dangerous jungle on a search-and-destroy mission with Col. Rick Flag. + + Margot Robbie + Idris Elba + John Cena + + 2021 + Movies + Action + + + TVPG + + + 3 + + + + Van Helsing + A monster-hunter (Hugh Jackman) joins forces with a beautiful woman (Kate Beckinsale) to battle Dracula (Richard Roxburgh) and otherworldly creatures in Transylvania. + + Hugh Jackman + Kate Beckinsale + Richard Roxburgh + + 2004 + Movies + Fantasy + + + TVPG + + + 2 + + + + CBB Hall of Fame Series Pregame + Sports + Basketball + + + + Colorado vs. Louisiana State University + Colorado vs. LSU + From T-Mobile Arena in Las Vegas. + Sports + Basketball + + + + USC vs. Kansas State + The No. 21 Trojans play the Wildcats in Nevada. Last season, the two schools were placed in the same quadrant of the East Regional, with USC falling to Michigan State, and Kansas State advancing to the Elite Eight in its first year under Jerome Tang. + Sports + Basketball + + + + CBB Hall of Fame Series Postgame + Men's and women's college basketball postgame coverage. From Las Vegas. + Sports + Basketball + + + + X-Men: Apocalypse + Professor X (James McAvoy) and Raven (Jennifer Lawrence) lead a team of young X-Men to stop the immortal mutant Apocalypse (Oscar Isaac) from destroying mankind. + + James McAvoy + Michael Fassbender + Jennifer Lawrence + + 2016 + Movies + Action + + + TVG + + + 2 + + + + Cold Case + Andy in C Minor + New evidence confirms that a popular deaf teen was murdered in 2006, prompting the team to launch a search for the boy's body and his killer. + + Kathryn Morris + Danny Pino + John Finn + + Drama + + + TV14 + + + + Cold Case + The Road + Lilly and Valens go to West Virginia to retrieve a suspect for the presumed homicide of a woman who was abducted from the parking lot outside her engagement party. + + Kathryn Morris + Danny Pino + John Finn + + Drama + + + TV14 + + + + Charmed + The Courtship of Wyatt's Father + A darklighter accidentally sends Leo and Piper to another plane of existence, leaving Phoebe and Paige to mourn their deaths; Chris is in danger of vanishing forever. + + Holly Marie Combs + Alyssa Milano + Rose McGowan + + Drama + + + TVPG + + + + Charmed + Hyde School Reunion + Phoebe accidentally casts a spell on herself that allows her wild teenage personality to take over; Piper asks her father to find out why Chris is avoiding her. + + Holly Marie Combs + Alyssa Milano + Rose McGowan + + Drama + + + TVPG + + + + Charmed + Spin City + The Spider Demon kidnaps and cocoons Piper and turns Chris into a spider; Leo learns why Chris resents him. + + Holly Marie Combs + Alyssa Milano + Rose McGowan + + Drama + + + TVPG + + + + Charmed + Crimes and Witch-Demeanors + When the Charmed Ones are caught on tape using their powers, the Cleaners cover up the situation by framing Darryl as a murderer and sending him to death row. + + Holly Marie Combs + Alyssa Milano + Rose McGowan + + Drama + + + TV14 + + + + Supernatural + All Along the Watchtower + Lucifer battles Sam, Dean and Castiel for control of his unborn child. + + Jared Padalecki + Jensen Ackles + Misha Collins + + Drama + + + TV14 + + + + The Replacements + A football coach (Gene Hackman) and his team's owner recruit a ragtag band of has-beens and wannabes after failed negotiations lead to a strike. + + Keanu Reeves + Gene Hackman + Orlando Jones + + 2000 + Movies + Comedy + + + TVG + + + 2 + + + + The Blind Side + A well-to-do white family (Sandra Bullock, Tim McGraw) takes in a homeless black teen and helps him realize his potential on and off the football field. + + Sandra Bullock + Tim McGraw + Quinton Aaron + + 2009 + Movies + Drama + + + TVG + + + 3 + + + + NHL Pre-Game on TNT + Liam McHugh, Anson Carter, Paul Bissonnette and Henrik Lundqvist preview the night in the NHL. + Sports + Hockey + + + + Detroit Red Wings vs. New York Rangers + Detroit Red Wings at New York Rangers + From Madison Square Garden in New York. + Sports + Hockey + + + + New Jersey Devils vs. Colorado Avalanche + New Jersey Devils at Colorado Avalanche + From Ball Arena in Denver. + Sports + Hockey + + + + NHL Post-Game on TNT + Liam McHugh, Anson Carter, Paul Bissonnette and Henrik Lundqvist recap the night in the NHL. + Sports + Hockey + + + + The Blind Side + A well-to-do white family (Sandra Bullock, Tim McGraw) takes in a homeless black teen and helps him realize his potential on and off the football field. + + Sandra Bullock + Tim McGraw + Quinton Aaron + + 2009 + Movies + Drama + + + TVG + + + 3 + + + + Cold Case + Bad Reputation + When evidence confirming the murder of an ex-con is found in a drug dealer's freezer, the team searches for the man's killer. + + Kathryn Morris + Danny Pino + John Finn + + Drama + + + TV14 + + + + Cold Case + Slipping + Proof that a suicide note was not written in the deceased's handwriting sends Lily and the team in search of a killer in the 1962 death. + + Kathryn Morris + Danny Pino + John Finn + + Drama + + + TV14 + + + + Supernatural + Lost and Found + Sam and Dean must pick up the pieces after the loss of their mother, the demise of Crowley, and the death of Castiel; Jack's birth leaves the Winchester brothers with differing opinions on how to deal with a Nephilim; Mary is dragged into the breach. + + Jared Padalecki + Jensen Ackles + Misha Collins + + Drama + + + TV14 + + + + Supernatural + The Rising Son + Sam and Dean begin to explore what Jack is capable of doing with his powers; an unexpected visit from Donatello alerts the brothers to the fact that Jack will need more protection than they can provide. + + Jared Padalecki + Jensen Ackles + Misha Collins + + Drama + + + TV14 + + + + Supernatural + Patience + Missouri enlists Dean and Jody to protect her granddaughter from a wraith; Sam helps Jack learn how to control his powers. + + Jared Padalecki + Jensen Ackles + Misha Collins + + Drama + + + TV14 + + + + Charmed + A Wrong Day's Journey Into Right + With Piper away at magic school and Phoebe without her active powers, overworked Paige conjures Mr. Right (Gabriel Olds) for stress relief but, unknowingly, releases his evil twin, Mr. Wrong. + + Holly Marie Combs + Alyssa Milano + Rose McGowan + + Drama + + + TV14 + + + + Charmed + Witch Wars + Gideon (Gildart Jackson) conspires with two demons to make Piper, Phoebe and Paige part of. + + Holly Marie Combs + Alyssa Milano + Rose McGowan + + Drama + + + TVPG + + + + Charmed + It's a Bad, Bad World + Gideon unintentionally creates a portal that sends Chris and Leo to an alternate world where evil rules. + + Holly Marie Combs + Alyssa Milano + Rose McGowan + + Drama + + + TV14 + + + + Charmed + It's a Bad, Bad World + Phoebe and Paige attempt to rescue Chris and Leo but find themselves battling their evil counterparts. + + Holly Marie Combs + Alyssa Milano + Rose McGowan + + Drama + + + TV14 + + + + Supernatural + The Big Empty + Dean and Jack investigate when a grief counselor's patients wind up dead; they are also forced to deal with unresolved grief of their own. + + Jared Padalecki + Jensen Ackles + Misha Collins + + Drama + + + TV14 + + + + Supernatural + Advanced Thanatology + Sam and Dean work on a case involving the ghost of a demented doctor; they get assistance from an unexpected source; Castiel finds his way back to the Winchesters. + + Jared Padalecki + Jensen Ackles + Misha Collins + + Drama + + + TV14 + + + + Lucifer + A Priest Walks into a Bar + A priest turns to Lucifer for help when he believes a drug operation has set up shop at a youth center in the neighborhood; Malcolm finds a way to watch Dan. + + Tom Ellis + Lauren German + D.B. Woodside + + Drama + + + TV14 + + + + Lucifer + Pops + Lucifer and Chloe suspect a restaurateur's son played a part in his death; the return of Chloe's mother sends her life into upheaval. + + Tom Ellis + Lauren German + D.B. Woodside + + Drama + + + TV14 + + + + Lucifer + St. Lucifer + After a philanthropist is found dead, Lucifer explores his better nature by becoming a benefactor for Tim's charity. + + Tom Ellis + Lauren German + D.B. Woodside + + Drama + + + TV14 + + + + Lucifer + TeamLucifer + The investigation into the death of a woman whose body was left on the Hollywood Walk of Fame and twisted into the shape of a pentagram leads the team into the world of Satanists, where their preconceived notions are challenged. + + Tom Ellis + Lauren German + D.B. Woodside + + Drama + + + TV14 + + + + Tijuana vs. América + América vs. Tijuana + Jornada 16 de la Liga MX Apertura 2023. Las Águilas del América se enfrenta a los Xolos de Tijuana. Desde el estadio Azteca, Ciudad de México. + Sports + Soccer + + + + Monterrey vs. Pachuca + Pachuca vs. Monterrey + Pachuca y Monterrey miden fuerzas en partido de la Jornada 16 del torneo Apertura. Encuentro disputado el 4 de noviembre en el estadio Hidalgo. + Sports + Soccer + + + + Contacto deportivo + El destino obligado de los amantes del deporte para estar actualizados sobre las noticias más importantes y los partidos más destacados de todos los deportes masivos. + Sports + News + + + + El Tri en 60 + México vs. Alemania + Lo más destacado del partido amistoso internacional entre México y Alemania. Desde Lincoln Financial Field, Pensilvania. Disputado el 17 de octubre de 2023. + Sports + Soccer + + + + Liga MX en 60 + Tigres UANL vs. Club Atlético San Luis + Compacto de jornada 16 de Liga MX. Tigres UANL se enfrenta contra Atlético San Luis. Disputado el 4 de noviembre del 2023. + Sports + Soccer + + + + Contacto deportivo + El destino obligado de los amantes del deporte para estar actualizados sobre las noticias más importantes y los partidos más destacados de todos los deportes masivos. + Sports + News + + + + Liga MX in 60 + América vs. Tijuana + Compacto de Liga MX. Las Águilas del América enfrentan a Xolos de Tijuana. Disputado el 4 de noviembre del 2023. + Sports + Soccer + + + + Contacto deportivo + El destino obligado de los amantes del deporte para estar actualizados sobre las noticias más importantes y los partidos más destacados de todos los deportes masivos. + Sports + News + + + + Contacto deportivo + El destino obligado de los amantes del deporte para estar actualizados sobre las noticias más importantes y los partidos más destacados de todos los deportes masivos. + Sports + News + + + + Liga MX in 60 + Pachuca vs. Monterrey + Compacto de jornada 16 de Liga MX. Tuzos del Pachuca enfrentan a rayados de Monterrey. Disputado el 4 de noviembre del 2023. + Sports + Soccer + + + + Misión Europa + Programa que abre las puertas al mejor fútbol del planeta: el de las ligas europeas. Con la participación de los corresponsales desde el viejo continente y la opinión de los expertos en el estudio. + Sports + Soccer + + + + UEFA Champions League en 30 + Paris Saint-Germain vs. AC Milan CF + Los momentos más destacados del partido del Grupo F, tercera fecha del torneo. Disputado el 25 de octubre de 2023 en el Parque de los Príncipes. + Sports + Soccer + + + + UEFA Champions League Magazine + Las últimas noticias y actualizaciones de la UEFA Champions League. + + Fernando Torres + Samuel Eto'o + Luis Figo + + Sports + Soccer + + + TVPG + + + + UEFA Europa & Conference League Magazine + Noticias, entrevistas, momentos destacados, historias y análisis de los equipos de la UEFA Europa League y la UEFA Conference League. + Sports + Soccer + + + + Contacto deportivo + El destino obligado de los amantes del deporte para estar actualizados sobre las noticias más importantes y los partidos más destacados de todos los deportes masivos. + Sports + News + + + + Fútbol central + El programa elemental para los fans, el cual les indica qué buscar y esperar en la cancha en los próximos partidos y campeonatos. + Sports + Soccer + + + + Atlas vs. Pumas UNAM + Pumas UNAM vs. Club Atlas + Acción en la Jornada 16 de la Liga MX. Los Pumas de la UNAM juegan contra los rojinegros del Atlas. Desde el Estadio Olímpico Universitario. + Sports + Soccer + + + + Acción + Las mejores jugadas y momentos culminantes de la semana. Un programa de ritmo acelerado con solo lo mejor de todos los deportes y resúmenes de toda la acción obligatoria de la semana. + Sports + News + + + + Fútbol central + El programa elemental para los fans, el cual les indica qué buscar y esperar en la cancha en los próximos partidos y campeonatos. + Sports + Soccer + + + + Mazatlán FC vs. Necaxa + Necaxa vs. Mazatlán FC + Jornada 16 de la Liga MX Apertura 2023. El Rayo de Necaxa se enfrenta a los Cañoneros de Mazatlán. Desde el estadio Victoria, Aguascalientes. + Sports + Soccer + + + + Liga MX in 60 + América vs. Tijuana + Compacto de Liga MX. Las Águilas del América enfrentan a Xolos de Tijuana. Disputado el 4 de noviembre del 2023. + Sports + Soccer + + + + Liga MX in 60 + Pachuca vs. Monterrey + Compacto de jornada 16 de Liga MX. Tuzos del Pachuca enfrentan a rayados de Monterrey. Disputado el 4 de noviembre del 2023. + Sports + Soccer + + + + Liga MX en 60 + UNAM vs. Atlas + Lo más destacado de la jornada 16 en la Liga MX Apertura 2023 entre Pumas UNAM y Atlas. Desde el Estadio Olímpico Universitario, Ciudad de México. + Sports + Soccer + + + + Liga MX in 60 + Necaxa vs. Mazatlán + Compacto de jornada 16 en Liga MX. Los Rayos del Necaxa enfrentan a cañoneros de Mazatlán. Disputado el 5 de noviembre del 2023. + Sports + Soccer + + + + Contacto deportivo + El destino obligado de los amantes del deporte para estar actualizados sobre las noticias más importantes y los partidos más destacados de todos los deportes masivos. + Sports + News + + + + La jugada + El lugar para revivir los sucesos y las noticias más importantes del fin de semana, combinados con entrevistas, emotivas historias y reseñas de todo el mundo deportivo. Secciones dedicadas a fútbol, NFL, MLB, NBA y más. + Sports + Talk Show + + + + Liga MX in 60 + América vs. Tijuana + Compacto de Liga MX. Las Águilas del América enfrentan a Xolos de Tijuana. Disputado el 4 de noviembre del 2023. + Sports + Soccer + + + + Contacto deportivo + El destino obligado de los amantes del deporte para estar actualizados sobre las noticias más importantes y los partidos más destacados de todos los deportes masivos. + Sports + News + + + + La jugada + El lugar para revivir los sucesos y las noticias más importantes del fin de semana, combinados con entrevistas, emotivas historias y reseñas de todo el mundo deportivo. Secciones dedicadas a fútbol, NFL, MLB, NBA y más. + Sports + Talk Show + + + + Liga MX in 60 + Necaxa vs. Mazatlán + Compacto de jornada 16 en Liga MX. Los Rayos del Necaxa enfrentan a cañoneros de Mazatlán. Disputado el 5 de noviembre del 2023. + Sports + Soccer + + + + Contacto deportivo + El destino obligado de los amantes del deporte para estar actualizados sobre las noticias más importantes y los partidos más destacados de todos los deportes masivos. + Sports + News + + + + Contacto deportivo + El destino obligado de los amantes del deporte para estar actualizados sobre las noticias más importantes y los partidos más destacados de todos los deportes masivos. + Sports + News + + + + Liga MX in 60 + Todo sobre la Liga Mexicana de Fútbol. + Sports + Soccer + + + + La jugada + El lugar para revivir los sucesos y las noticias más importantes del fin de semana, combinados con entrevistas, emotivas historias y reseñas de todo el mundo deportivo. Secciones dedicadas a fútbol, NFL, MLB, NBA y más. + Sports + Talk Show + + + + Liga MX in 60 + Todo sobre la Liga Mexicana de Fútbol. + Sports + Soccer + + + + Contacto deportivo + El destino obligado de los amantes del deporte para estar actualizados sobre las noticias más importantes y los partidos más destacados de todos los deportes masivos. + Sports + News + + + + Liga MX in 60 + Todo sobre la Liga Mexicana de Fútbol. + Sports + Soccer + + + + La jugada + El lugar para revivir los sucesos y las noticias más importantes del fin de semana, combinados con entrevistas, emotivas historias y reseñas de todo el mundo deportivo. Secciones dedicadas a fútbol, NFL, MLB, NBA y más. + Sports + Talk Show + + + + Contacto deportivo + El destino obligado de los amantes del deporte para estar actualizados sobre las noticias más importantes y los partidos más destacados de todos los deportes masivos. + Sports + News + + + + Liga MX in 60 + Todo sobre la Liga Mexicana de Fútbol. + Sports + Soccer + + + + Contacto deportivo + El destino obligado de los amantes del deporte para estar actualizados sobre las noticias más importantes y los partidos más destacados de todos los deportes masivos. + Sports + News + + + + Liga MX in 60 + Todo sobre la Liga Mexicana de Fútbol. + Sports + Soccer + + + + Liga MX in 60 + Todo sobre la Liga Mexicana de Fútbol. + Sports + Soccer + + + + Misión Europa + Programa que abre las puertas al mejor fútbol del planeta: el de las ligas europeas. Con la participación de los corresponsales desde el viejo continente y la opinión de los expertos en el estudio. + Sports + Soccer + + + + Fútbol club + El magazine futbolero que acerca a los protagonistas y su Lado B, liviano y entretenido. Junto a este contenido divertido y original, los comentaristas debaten sobre la actualidad en un formato descontracturado, fresco e inigualable. + Sports + Talk Show + + + + Línea de cuatro + Los análisis futboleros más punzantes junto a las opiniones más fuertes. Una combinación exitosa entre la experiencia de los exfutbolistas y el debate apasionado de los periodistas con décadas de recorrido en el deporte más popular del mundo. + Sports + Soccer + + + + Liga MX in 60 + Todo sobre la Liga Mexicana de Fútbol. + Sports + Soccer + + + + Liga MX in 60 + Todo sobre la Liga Mexicana de Fútbol. + Sports + Soccer + + + + Línea de cuatro + Los análisis futboleros más punzantes junto a las opiniones más fuertes. Una combinación exitosa entre la experiencia de los exfutbolistas y el debate apasionado de los periodistas con décadas de recorrido en el deporte más popular del mundo. + Sports + Soccer + + + + Contacto deportivo + El destino obligado de los amantes del deporte para estar actualizados sobre las noticias más importantes y los partidos más destacados de todos los deportes masivos. + Sports + News + + + + Línea de cuatro + Los análisis futboleros más punzantes junto a las opiniones más fuertes. Una combinación exitosa entre la experiencia de los exfutbolistas y el debate apasionado de los periodistas con décadas de recorrido en el deporte más popular del mundo. + Sports + Soccer + + + + Liga MX in 60 + Todo sobre la Liga Mexicana de Fútbol. + Sports + Soccer + + + + Contacto deportivo + El destino obligado de los amantes del deporte para estar actualizados sobre las noticias más importantes y los partidos más destacados de todos los deportes masivos. + Sports + News + + + + Línea de cuatro + Los análisis futboleros más punzantes junto a las opiniones más fuertes. Una combinación exitosa entre la experiencia de los exfutbolistas y el debate apasionado de los periodistas con décadas de recorrido en el deporte más popular del mundo. + Sports + Soccer + + + + Contacto deportivo + El destino obligado de los amantes del deporte para estar actualizados sobre las noticias más importantes y los partidos más destacados de todos los deportes masivos. + Sports + News + + + + Contacto deportivo + El destino obligado de los amantes del deporte para estar actualizados sobre las noticias más importantes y los partidos más destacados de todos los deportes masivos. + Sports + News + + + + Liga MX in 60 + América vs. Tijuana + Compacto de Liga MX. Las Águilas del América enfrentan a Xolos de Tijuana. Disputado el 4 de noviembre del 2023. + Sports + Soccer + + + + Línea de cuatro + Los análisis futboleros más punzantes junto a las opiniones más fuertes. Una combinación exitosa entre la experiencia de los exfutbolistas y el debate apasionado de los periodistas con décadas de recorrido en el deporte más popular del mundo. + Sports + Soccer + + + + UEFA Champions League en 60 + 2023-2024: Paris Saint-Germain vs. Milan + Lo más destacado de la fase de grupos en la UEFA Champions League 2023-24 entre Paris Saint-Germain y AC Milan. Disputado el 25 de octubre de 2023. + Sports + Soccer + + + + Contacto deportivo + El destino obligado de los amantes del deporte para estar actualizados sobre las noticias más importantes y los partidos más destacados de todos los deportes masivos. + Sports + News + + + + UEFA Champions League en 60 + 2023-2024: Barcelona vs. Shakhtar Donetsk + Lo más destacado de la jornada de grupos en la UEFA Champions League 2023-24 entre Barcelona y Shakhtar Donetsk. Disputado el 25 de octubre de 2023. + Sports + Soccer + + + + Fútbol central + El programa elemental para los fans, el cual les indica qué buscar y esperar en la cancha en los próximos partidos y campeonatos. + Sports + Soccer + + + + Barcelona vs. Shakhtar Donetsk + FC Shakhtar Donetsk vs. FC Barcelona + Fecha 4 en el Grupo H. Shakhtar recibe a Barcelona. Desde el Volksparkstadion. Los ucranianos son locales en lo administrativo y buscan una victoria que los coloque en zona de clasificación a la siguiente ronda. + Sports + Soccer + + + + Paris Saint-Germain vs. AC Milan + AC Milan vs. Paris Saint-Germain FC + Jornada 4 del Grupo F de la Champions League. Milan se enfrenta a Paris Saint-Germain. Desde el estadio Giuseppe Meazza. + Sports + Soccer + + + + Misión Europa + Programa que abre las puertas al mejor fútbol del planeta: el de las ligas europeas. Con la participación de los corresponsales desde el viejo continente y la opinión de los expertos en el estudio. + Sports + Soccer + + + + Misión Europa + Programa que abre las puertas al mejor fútbol del planeta: el de las ligas europeas. Con la participación de los corresponsales desde el viejo continente y la opinión de los expertos en el estudio. + Sports + Soccer + + + + Fútbol club + El magazine futbolero que acerca a los protagonistas y su Lado B, liviano y entretenido. Junto a este contenido divertido y original, los comentaristas debaten sobre la actualidad en un formato descontracturado, fresco e inigualable. + Sports + Talk Show + + + + Línea de cuatro + Los análisis futboleros más punzantes junto a las opiniones más fuertes. Una combinación exitosa entre la experiencia de los exfutbolistas y el debate apasionado de los periodistas con décadas de recorrido en el deporte más popular del mundo. + Sports + Soccer + + + + UEFA Champions League en 60 + 2023-2024: Shakhtar Donetsk vs. Barcelona + Compacto de UEFA Champions League. El Shakhtar Donetsk enfrenta al Barcelona. Disputado el 7 de noviembre del 2023. + Sports + Soccer + + + + Contacto deportivo + El destino obligado de los amantes del deporte para estar actualizados sobre las noticias más importantes y los partidos más destacados de todos los deportes masivos. + Sports + News + + + + Línea de cuatro + Los análisis futboleros más punzantes junto a las opiniones más fuertes. Una combinación exitosa entre la experiencia de los exfutbolistas y el debate apasionado de los periodistas con décadas de recorrido en el deporte más popular del mundo. + Sports + Soccer + + + + Contacto deportivo + El destino obligado de los amantes del deporte para estar actualizados sobre las noticias más importantes y los partidos más destacados de todos los deportes masivos. + Sports + News + + + + Línea de cuatro + Los análisis futboleros más punzantes junto a las opiniones más fuertes. Una combinación exitosa entre la experiencia de los exfutbolistas y el debate apasionado de los periodistas con décadas de recorrido en el deporte más popular del mundo. + Sports + Soccer + + + + UEFA Champions League en 60 + AC Milán vs. Paris Saint-Germain + Compacto de UEFA Champions League. El Milán enfrenta al Paris Saint-Germain. Disputado el 7 de noviembre del 2023. + Sports + Soccer + + + + Contacto deportivo + El destino obligado de los amantes del deporte para estar actualizados sobre las noticias más importantes y los partidos más destacados de todos los deportes masivos. + Sports + News + + + + Línea de cuatro + Los análisis futboleros más punzantes junto a las opiniones más fuertes. Una combinación exitosa entre la experiencia de los exfutbolistas y el debate apasionado de los periodistas con décadas de recorrido en el deporte más popular del mundo. + Sports + Soccer + + + + Contacto deportivo + El destino obligado de los amantes del deporte para estar actualizados sobre las noticias más importantes y los partidos más destacados de todos los deportes masivos. + Sports + News + + + + Contacto deportivo + El destino obligado de los amantes del deporte para estar actualizados sobre las noticias más importantes y los partidos más destacados de todos los deportes masivos. + Sports + News + + + + Liga MX en 60 + Tigres UANL vs. Club Atlético San Luis + Compacto de jornada 16 de Liga MX. Tigres UANL se enfrenta contra Atlético San Luis. Disputado el 4 de noviembre del 2023. + Sports + Soccer + + + + Línea de cuatro + Los análisis futboleros más punzantes junto a las opiniones más fuertes. Una combinación exitosa entre la experiencia de los exfutbolistas y el debate apasionado de los periodistas con décadas de recorrido en el deporte más popular del mundo. + Sports + Soccer + + + + UEFA Champions League en 60 + 2023-2024: Shakhtar Donetsk vs. Barcelona + Compacto de UEFA Champions League. El Shakhtar Donetsk enfrenta al Barcelona. Disputado el 7 de noviembre del 2023. + Sports + Soccer + + + + Contacto deportivo + El destino obligado de los amantes del deporte para estar actualizados sobre las noticias más importantes y los partidos más destacados de todos los deportes masivos. + Sports + News + + + + UEFA Champions League en 60 + AC Milán vs. Paris Saint-Germain + Compacto de UEFA Champions League. El Milán enfrenta al Paris Saint-Germain. Disputado el 7 de noviembre del 2023. + Sports + Soccer + + + + Fútbol central + El programa elemental para los fans, el cual les indica qué buscar y esperar en la cancha en los próximos partidos y campeonatos. + Sports + Soccer + + + + Benfica vs. Real Sociedad + Real Sociedad vs. Benfica + Jornada 4 del Grupo D en la Champions League. Real Sociedad se enfrenta a Benfica. Desde el Reale Arena. + Sports + Soccer + + + + Sevilla vs. Arsenal + Arsenal vs. Sevilla + Crónica del partido Arsenal contra Sevilla correspondiente al Grupo B de la fase de grupos de la Liga de Campeones de la UEFA. + Sports + Soccer + + + + Misión Europa + Programa que abre las puertas al mejor fútbol del planeta: el de las ligas europeas. Con la participación de los corresponsales desde el viejo continente y la opinión de los expertos en el estudio. + Sports + Soccer + + + + Misión Europa + Programa que abre las puertas al mejor fútbol del planeta: el de las ligas europeas. Con la participación de los corresponsales desde el viejo continente y la opinión de los expertos en el estudio. + Sports + Soccer + + + + 24 horas central + La información de mayor importancia internacional, nacional y regional. + News + + + + Atlas de Chile + Un recorrido por las diversas regiones, identidades y territorios de Chile. + + Federico Sánchez + Marcelo Comparini + + Travel + + + + Entrada Liberada + Conducido por Nicolás Rojas Inostroza, periodista especializado en cultura, este programa dará cuenta del patrimonio natural y cultural de diversas localidades a través de 50 museos chilenos. + Instructional + Arts & Entertainment + + + + Chile Intimo + Excelente serie documental nacional que cuenta la historia de Chile desde una mirada diferente. + Documentary + + + + El día menos pensado + Historias que parecen desafiar todo lo que hasta hoy es posible. + Reality TV + Paranormal + + + + Conectados + Programa informativo de análisis, encuentro y actualidad con la comunidad hispanohablante. + News + + + + Selva viva: Patagonia + Documentary + Animals + + + + Ramona + La historia de dos hermanas que emigran del campo a la ciudad de Santiago de Chile a finales de la década de 1960. + + Giannina Fruttero + Paola Lattus + Belén Herrera + + Drama + + + + Ideal Prostate+ proporciona alivio natural seguro + Ideal Prostate es la única fórmula de próstata con una mezcla patentada para aliviar los síntomas de la PRÓSTATA y la VEJIGA. ¡Sintonice para una oferta especial de TV! + Paid Program + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + 24 horas a la hora + Informativo que actualiza las noticias más relevantes de la jornada. + News + + + + Estado Nacional + Programa de actualidad y debate político que cuenta semanalmente con invitados y panelistas. + Talk Shows + Political + + + + 24 Tarde + La información más relevante a nivel internacional, nacional y regional. + News + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Atlas de Chile + Un recorrido por las diversas regiones, identidades y territorios de Chile. + + Federico Sánchez + Marcelo Comparini + + Travel + + + + Ramona + La historia de dos hermanas que emigran del campo a la ciudad de Santiago de Chile a finales de la década de 1960. + + Giannina Fruttero + Paola Lattus + Belén Herrera + + Drama + + + + Conectados + Programa informativo de análisis, encuentro y actualidad con la comunidad hispanohablante. + News + + + + Sucupira + La gente del pequeño pueblo de Sucupira todavía cree en una leyenda sobre una mujer que emerge del mar para enamorar a los hombres y llevarlos a su mundo. Los que han sobrevivido dicen que la hija del alcalde tiene el mismo rostro. + + Francisco Reyes + Angela Contreras + Álvaro Rudolphy + + Soaps + Comedy + + + + 24 horas central + La información de mayor importancia internacional, nacional y regional. + News + + + + Estado Nacional + Programa de actualidad y debate político que cuenta semanalmente con invitados y panelistas. + Talk Shows + Political + + + + El día menos pensado + Historias que parecen desafiar todo lo que hasta hoy es posible. + Reality TV + Paranormal + + + + Atlas de Chile + Un recorrido por las diversas regiones, identidades y territorios de Chile. + + Federico Sánchez + Marcelo Comparini + + Travel + + + + Atlas de Chile + Un recorrido por las diversas regiones, identidades y territorios de Chile. + + Federico Sánchez + Marcelo Comparini + + Travel + + + + Atlas de Chile + Un recorrido por las diversas regiones, identidades y territorios de Chile. + + Federico Sánchez + Marcelo Comparini + + Travel + + + + El día menos pensado + Historias que parecen desafiar todo lo que hasta hoy es posible. + Reality TV + Paranormal + + + + Estado Nacional + Programa de actualidad y debate político que cuenta semanalmente con invitados y panelistas. + Talk Shows + Political + + + + 24 AM + Repaso de los hechos que marcaron la noche y la madrugada de Chile y el mundo. + News + + + + Buenos días a todos + Programa matutino con temas de actualidad y del espectáculo chileno, concursos y entretenimiento. + + Julian Elfenbein + + News Magazine + + + + 24 Tarde + La información más relevante a nivel internacional, nacional y regional. + News + + + + Conectados + Programa informativo de análisis, encuentro y actualidad con la comunidad hispanohablante. + News + + + + Carmen Gloria a tu servicio + Un programa con historias de la vida real, al servicio de la familia y que intenta ayudar, orientar y educar en torno a problemas que afectan a miles de chilenos. + Talk Shows + Local + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Sucupira + La gente del pequeño pueblo de Sucupira todavía cree en una leyenda sobre una mujer que emerge del mar para enamorar a los hombres y llevarlos a su mundo. Los que han sobrevivido dicen que la hija del alcalde tiene el mismo rostro. + + Francisco Reyes + Angela Contreras + Álvaro Rudolphy + + Soaps + Comedy + + + + Como Pedro Por Su Casa + Soaps + + + + 24 horas central + La información de mayor importancia internacional, nacional y regional. + News + + + + Selva viva: Patagonia + Documentary + Animals + + + + Buenas Noches + Programa de conversación con Eduardo Fuentes. + Talk Shows + Performing Arts + + + + Buenas Noches + Programa de conversación con Eduardo Fuentes. + Talk Shows + Performing Arts + + + + Hoy se habla + Un programa en el que se conversa sobre aquellos temas que marcan tendencia, con miradas diversas y representando distintas realidades. + Talk Shows + Performing Arts + + + + Carmen Gloria a tu servicio + Un programa con historias de la vida real, al servicio de la familia y que intenta ayudar, orientar y educar en torno a problemas que afectan a miles de chilenos. + Talk Shows + Local + + + + Carmen Gloria a tu servicio + Un programa con historias de la vida real, al servicio de la familia y que intenta ayudar, orientar y educar en torno a problemas que afectan a miles de chilenos. + Talk Shows + Local + + + + Medianoche + Un informativo que aborda las noticias que marcaron durante el día, que incluye entrevistas, análisis de noticias y enlaces en vivo. + + Matías del Río + + News + + + + Conectados + Programa informativo de análisis, encuentro y actualidad con la comunidad hispanohablante. + News + + + + 24 AM + Repaso de los hechos que marcaron la noche y la madrugada de Chile y el mundo. + News + + + + Buenos días a todos + Programa matutino con temas de actualidad y del espectáculo chileno, concursos y entretenimiento. + + Julian Elfenbein + + News Magazine + + + + 24 Tarde + La información más relevante a nivel internacional, nacional y regional. + News + + + + Conectados + Programa informativo de análisis, encuentro y actualidad con la comunidad hispanohablante. + News + + + + Carmen Gloria a tu servicio + Un programa con historias de la vida real, al servicio de la familia y que intenta ayudar, orientar y educar en torno a problemas que afectan a miles de chilenos. + Talk Shows + Local + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Sucupira + La gente del pequeño pueblo de Sucupira todavía cree en una leyenda sobre una mujer que emerge del mar para enamorar a los hombres y llevarlos a su mundo. Los que han sobrevivido dicen que la hija del alcalde tiene el mismo rostro. + + Francisco Reyes + Angela Contreras + Álvaro Rudolphy + + Soaps + Comedy + + + + Como Pedro Por Su Casa + Soaps + + + + 24 horas central + La información de mayor importancia internacional, nacional y regional. + News + + + + Entrada Liberada + Conducido por Nicolás Rojas Inostroza, periodista especializado en cultura, este programa dará cuenta del patrimonio natural y cultural de diversas localidades a través de 50 museos chilenos. + Instructional + Arts & Entertainment + + + + Buenas Noches + Programa de conversación con Eduardo Fuentes. + Talk Shows + Performing Arts + + + + Hoy se habla + Un programa en el que se conversa sobre aquellos temas que marcan tendencia, con miradas diversas y representando distintas realidades. + Talk Shows + Performing Arts + + + + Carmen Gloria a tu servicio + Un programa con historias de la vida real, al servicio de la familia y que intenta ayudar, orientar y educar en torno a problemas que afectan a miles de chilenos. + Talk Shows + Local + + + + Carmen Gloria a tu servicio + Un programa con historias de la vida real, al servicio de la familia y que intenta ayudar, orientar y educar en torno a problemas que afectan a miles de chilenos. + Talk Shows + Local + + + + Medianoche + Un informativo que aborda las noticias que marcaron durante el día, que incluye entrevistas, análisis de noticias y enlaces en vivo. + + Matías del Río + + News + + + + Conectados + Programa informativo de análisis, encuentro y actualidad con la comunidad hispanohablante. + News + + + + 24 AM + Repaso de los hechos que marcaron la noche y la madrugada de Chile y el mundo. + News + + + + Buenos días a todos + Programa matutino con temas de actualidad y del espectáculo chileno, concursos y entretenimiento. + + Julian Elfenbein + + News Magazine + + + + 24 Tarde + La información más relevante a nivel internacional, nacional y regional. + News + + + + Conectados + Programa informativo de análisis, encuentro y actualidad con la comunidad hispanohablante. + News + + + + Carmen Gloria a tu servicio + Un programa con historias de la vida real, al servicio de la familia y que intenta ayudar, orientar y educar en torno a problemas que afectan a miles de chilenos. + Talk Shows + Local + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Sucupira + La gente del pequeño pueblo de Sucupira todavía cree en una leyenda sobre una mujer que emerge del mar para enamorar a los hombres y llevarlos a su mundo. Los que han sobrevivido dicen que la hija del alcalde tiene el mismo rostro. + + Francisco Reyes + Angela Contreras + Álvaro Rudolphy + + Soaps + Comedy + + + + Como Pedro Por Su Casa + Soaps + + + + Mike & Molly + Mike Takes a Test + Molly encourages Mike to pursue a detective position, but stress over the qualification exam takes a toll on their relationship. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mike & Molly + Fish for Breakfast + To increase the chances of getting pregnant, Mike and Molly give up caffeine and eat healthier. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mike & Molly + Molly's Birthday + Mike's plan to spoil Molly for her birthday goes awry after he eats psychedelic gelato. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mike & Molly + Carl Gets a Roommate + Mike's eyebrows end up in danger as he starts transforming the basement into a living area; Carl asks Samuel to be his roommate. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Everybody Loves Raymond + Humm Vac + Ray buys a new state-of-the-art vacuum cleaner from an attractive door-to-door saleswoman, which results in a cleaning war between Marie and Debra. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVG + + + + Mike & Molly + Spring Break + Molly parties with Victoria and her friends on spring break; Mike tries to get special overtime assignments. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Everybody Loves Raymond + Humm Vac + Ray buys a new state-of-the-art vacuum cleaner from an attractive door-to-door saleswoman, which results in a cleaning war between Marie and Debra. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVG + + + + Everybody Loves Raymond + The Canister + Tempers flare when Marie accuses Debra of not returning a borrowed canister that has sentimental value. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + Net Worth + Ray ends up in the doghouse for a shaky financial decision, but it turns out he's not the only one who's guilty. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + Let's Fix Robert + The women in Robert's life gather to discuss his relationship history. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + Say Uncle + Ray is jealous because he thinks his brother Robert is spending too much time with his kids. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVG + + + + Everybody Loves Raymond + Separation + Debra can't help but question the solidity of her relationship with Ray after her parents make a shocking announcement. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + The King of Queens + Awful Bigamy + When Holly is kicked out of her apartment, Arthur insists she stay with him until she can find someplace new to live. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Lost Vegas + Doug takes Carrie to a spa, hoping it will get her to let him take a trip to Vegas with the guys; Arthur teaches Spence his trick for beating the house in blackjack. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Dugan Groupie + Jealous of Carrie's new job, Doug asks his boss for a promotion and gets put in charge of safety. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Furious George + Carrie makes Doug join a support group for overeaters, but he secretly joins an abusive relationship group where he blames his eating on her. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Entertainment Weakly + Doug sends a new driver on the wrong route, but the plan backfires when the man winds up in the hospital. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Name Dropper + Doug digs a deeper hole for himself when he fakes a heart attack to avoid angering Carrie for not knowing her friend's name. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + Seinfeld + The Pony Remark + Jerry feels responsible for the death of an elderly woman (Rozsika Halmos) he upset the day before. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Jacket + Jerry buys a very expensive suede jacket but learns that clothes don't always make the man. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVG + + + + Seinfeld + The Phone Message + George enlists Jerry's help in removing a message that he left on a date's (Tory Polone) answering machine. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Apartment + Jerry encourages Elaine to move into the vacant apartment in his building. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVG + + + + Seinfeld + The Statue + Jerry suspects his new cleaning person (Michael D. Conway) of stealing a statue he had promised to George. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVG + + + + Seinfeld + The Revenge + George plots revenge on his former boss (Fred Applegate); Jerry seeks to get even with a laundromat owner (John Capodice). + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Heart Attack + Hypochondriac George gets advice from a. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Deal + Jerry and Elaine come up with one stipulation when they discuss getting back together as a couple. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + The New Adventures of Old Christine + Snakes on a Date + Christine agrees to a date with a children's entertainer who specializes in reptile parties, hoping to help Ritchie get into the Reptile Club. + + Julia Louis-Dreyfus + Clark Gregg + Hamish Linklater + + Sitcom + + + TVPG + + + + The New Adventures of Old Christine + Everyone Says I Love You Except Ritchie + Christine asks Richard to help create a baby with her now that Ritchie is too old to be telling her I love you, as he used to do. + + Julia Louis-Dreyfus + Clark Gregg + Hamish Linklater + + Sitcom + + + TV14 + + + + The New Adventures of Old Christine + Tie Me Up, Don't Tie Me Down + Christine and Barb go out on a casual double date with two men they met at a video store, but when one of the dates goes better than the other, jealousy arises. + + Julia Louis-Dreyfus + Clark Gregg + Hamish Linklater + + Sitcom + + + TV14 + + + + The New Adventures of Old Christine + So You Think You Can Date + Christine and Richard have an awkward dinner date when they join her new boyfriend Patrick (Tim DeKay). + + Julia Louis-Dreyfus + Clark Gregg + Hamish Linklater + + Sitcom + + + TV14 + + + + The New Adventures of Old Christine + Self-Esteem Tempura + When a talent scout recruits Ritchie to audition for a commercial after seeing his standout performance in the school play, Christine is thrilled, but Richard refuses to allow it. + + Julia Louis-Dreyfus + Clark Gregg + Hamish Linklater + + Sitcom + + + TVPG + + + + The Golden Girls + On Golden Girls + Blanche's unruly teenage grandson visits, and goes out every night with a rough crowd. + + Bea Arthur + Rue McClanahan + Betty White + + Sitcom + + + TVPG + + + + The Golden Girls + The Competition + Sophia challenges Dorothy to prove she is spry enough to take a trip to Italy. + + Bea Arthur + Rue McClanahan + Betty White + + Sitcom + + + TVPG + + + + The Golden Girls + Break In + After the house is burglarized, Rose buys a gun to feel more safe. + + Bea Arthur + Rue McClanahan + Betty White + + Sitcom + + + TVPG + + + + The Golden Girls + Blanche and the Younger Man + Blanche dates a young aerobics instructor; Rose's mother (Jeanette Nolan) teaches her an important lesson. + + Bea Arthur + Rue McClanahan + Betty White + + Sitcom + + + TVPG + + + + The Golden Girls + Heart Attack + The women bring their separate views of death into focus after Sophia suffers the symptoms of a heart attack. + + Bea Arthur + Rue McClanahan + Betty White + + Sitcom + + + TVPG + + + + The Golden Girls + Stan's Return + Dorothy's ex-husband comes to town and spends the night with her. + + Bea Arthur + Rue McClanahan + Betty White + + Sitcom + + + TVPG + + + + The Golden Girls + The Custody Battle + Sophia decides to live in California with Dorothy's sister Gloria. + + Bea Arthur + Rue McClanahan + Betty White + + Sitcom + + + TVPG + + + + The Golden Girls + A Little Romance + Rose tries to conceal the fact that she is dating a little person (Brent Collins). + + Bea Arthur + Rue McClanahan + Betty White + + Sitcom + + + TVPG + + + + The Golden Girls + That Was No Lady + Dorothy's becomes involved with a married coworker; her housemates disapprove. + + Bea Arthur + Rue McClanahan + Betty White + + Sitcom + + + TVPG + + + + Mike & Molly + Party Planners + Mike's birthday wish is for Molly and Peggy to get along, but the two clash as they try to plan his party; Samuel and Carl go after the same woman. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mike & Molly + Mike Can't Read + When Molly decides that she and Mike should pursue new hobbies before they become parents, they try roller skating. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mike & Molly + Molly's Out of Town + While Molly is out of town, lonely Mike binges on junk food; Carl thinks about leaving Chicago after getting heartbreaking news. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mike & Molly + School Recital + Molly is so focused on directing a school recital that she doesn't realize that another teacher is hitting on her; Vince talks Mike into an unusual money-making scheme. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mike & Molly + Windy City + When Peggy breaks up with Patrick, Mike tries to reunite them; as a tornado reaches Chicago, Molly and Mike reveal important news to each other. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mike & Molly + Molly Unleashed + Molly decides to leave her teaching career to become a writer. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mike & Molly + Sex and Death + Molly goes to the funeral home where Victoria works to research her novel; Mike looks at Molly's writing. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mike & Molly + Poker in the Front, Looker in the Back + Molly asks Joyce to help her spy on a suspicious neighbor; the guys share aspirations during a poker game. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mike & Molly + Shoeless Molly Flynn + Molly needs to curb her spending on shoes to keep peace in her marriage. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mike & Molly + They Shoot Asses, Don't They? + After being shot in a robbery, Mike decides to live each day as if it's his last; Carl thinks Mike should quit the police force. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mike & Molly + What Molly Hath Wrought + Molly accepts a job as a forklift driver at Vince's warehouse when she decides to take a break from writing her novel. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mike & Molly + Mike & Molly's Excellent Adventure + Determined to change Mike's normal routine, Molly encourages him to try new things. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mike & Molly + Weekend at Peggy's + After fighting with Joyce about money, Molly and Mike move into Mike's childhood bedroom at Peggy's place. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Mike & Molly + Dips & Salsa + Mike asks Carl to fill in for him as Molly's dance partner, but gets jealous when he thinks they are having too much fun. + + Billy Gardell + Melissa McCarthy + Reno Wilson + + Sitcom + + + TV14 + + + + Two and a Half Men + My Damn Stalker + Charlie must face his feelings when Rose announces she is moving to London; Alan fudges his online dating profile, only to wind up with a fellow profile-embellisher (Allison Janney). + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Young People Have Phlegm Too + A more mature woman (Morgan Fairchild) helps rebuild Charlie's ego after he becomes insecure about his age. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + I Merely Slept With a Commie + Evelyn makes Charlie and Alan regret saying that she will not have any mourners at her funeral. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + It Never Rains in Hooterville + After realizing that Jake's childhood is almost over, Alan makes a last-minute try at father-son bonding; Kandi embarks on a new career. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Smooth as a Ken Doll + Charlie gets close to Herb's witty sister, as Judith and Herb's wedding nears. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Aunt Myra Doesn't Pee a Lot + Alan prepares Jake for Judith's wedding; Charlie continues his fling with Herb's sister. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Tucked, Taped and Gorgeous + Alan's friendship with a gay single dad prompts both Alan and Charlie to re-examine their sexual identities. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Mr. McGlue's Feedbag + Jake has a windfall when Charlie takes him to the track; Alan finds himself stuck at the Department of Motor Vehicles. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Seinfeld + The Baby Shower + Jerry's cable TV installer (Vic Polizos) shows up on the day Elaine is using his apartment for a baby shower. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Chinese Restaurant + Jerry and his friends have difficulty getting a table at a crowded Chinese restaurant. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVG + + + + Seinfeld + The Busboy + George feels responsible for getting a busboy fired and tries to make it up to him. + + Jerry Seinfeld + Julia Louis-Dreyfus + Jason Alexander + + Sitcom + + + TVPG + + + + Seinfeld + The Note + Jerry persuades a dentist friend (Ralph Bruneau) to prescribe an expensive massage for medical reasons. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Truth + George tries honesty when he explains to his new girlfriend (Valerie Mahaffey) why they must break up. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Pen + Jerry and Elaine go to Florida when a condo association honors his father. + + Jerry Seinfeld + Julia Louis-Dreyfus + Ann Morgan Guilbert + + Sitcom + + + TVG + + + + Seinfeld + The Dog + Jerry is in charge of a troublesome dog and is stuck in his apartment, which leaves George and Elaine stranded together with very little in common. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Library + The library has no record of Jerry returning a book he took out in 1971. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Parking Garage + Jerry and his friends lose their car in the multilevel parking garage at a huge mall. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Cafe + Jerry's attempt to increase business at a small cafe backfires; George regrets agreeing to an IQ test. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Tape + Jerry is shocked to hear the naughty suggestions on his tape recorder; George sees Elaine in a new light. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Nose Job + Jerry straddles the fence regarding his latest flame (Tawny Kitaen); George's attention is focused on his date's (Susan Diol) nose. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + The Andy Griffith Show + Opie's Job + Opie gets a part-time job in a grocery store but gives it up because another boy needs the job more. + + Andy Griffith + Ron Howard + Frances Bavier + + Sitcom + + + TVPG + + + + The Andy Griffith Show + Andy's Rival + Andy is jealous when he realizes that a handsome teacher is spending evenings with Helen. + + Andy Griffith + Ron Howard + Frances Bavier + + Sitcom + + + TVPG + + + + The Andy Griffith Show + The Bazaar + Andy's deputy jails Aunt Bee and her friends for gambling at the charity bazaar. + + Andy Griffith + Ron Howard + Frances Bavier + + Sitcom + + + TVPG + + + + M*A*S*H + Blood and Guts + A noted war correspondent visits the 4077th to do a story on blood donated by his readers. + + Alan Alda + Harry Morgan + David Ogden Stiers + + Sitcom + History + + + TVPG + + + + M*A*S*H + A Holy Mess + A soldier goes AWOL and the 4077th receives fresh eggs from a grateful farmer. + + Alan Alda + Harry Morgan + David Ogden Stiers + + Sitcom + History + + + TVPG + + + + M*A*S*H + The Tooth Shall Set You Free + It is a painful time for everyone when Winchester, suffering from a toothache, refuses to see an Army dentist. + + Alan Alda + Harry Morgan + David Ogden Stiers + + Sitcom + History + + + TVPG + + + + M*A*S*H + Pressure Points + Psychiatrist Dr. Sidney Freedman visits the 4077th when Col. Potter loses all confidence in himself as a physician. + + Alan Alda + Harry Morgan + David Ogden Stiers + + Sitcom + History + + + TVPG + + + + M*A*S*H + Where There's a Will, There's a War + While under intense enemy shelling in a combat zone, Hawkeye decides it is time to make out his will. + + Alan Alda + Harry Morgan + David Ogden Stiers + + Sitcom + History + + + TVPG + + + + Bonanza + The Mill + A hired hand (Claude Akins) victimizes the Cartwrights' disabled neighbor (Harry Townes). + + Lorne Greene + Michael Landon + Dan Blocker + + Drama + + + TVG + + + + Gunsmoke + The Town Tamers + Matt and another marshal are ordered to restore peace and order in a lawless town. + + James Arness + + Drama + + + TVG + + + + Gunsmoke + Cowtown Hustler + A high-stakes match gives an aging, down-and-out pool player the chance to regain his self-respect. + + James Arness + Amanda Blake + + Drama + + + TVG + + + + Gunsmoke + The Foundling + A homeless baby triggers maternal instincts in two women, one of whom is Kitty. + + James Arness + Milburn Stone + Amanda Blake + + Drama + + + TVG + + + + Gunsmoke + The Iron Blood of Courage + A threatening range war brings a mercenary gunman to Dodge City. + + James Arness + Milburn Stone + Amanda Blake + + Drama + + + TVG + + + + The Andy Griffith Show + Barney and the Governor + Barney issues the governor a parking ticket when his chauffeur parks in a no-parking zone. The governor, impressed, visits Mayberry to commend him for doing his job without favoritism. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVPG + + + + The Andy Griffith Show + Man in a Hurry + Malcolm Tucker, a wealthy businessman, has trouble getting his car to start and finds himself stranded in Mayberry on a Sunday. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVPG + + + + The Andy Griffith Show + High Noon in Mayberry + Barney orders Gomer and Otis to keep watch on Andy when an ex-con Andy sent to prison many years before returns to Mayberry. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVPG + + + + The Andy Griffith Show + The Loaded Goat + Andy and Barney must figure out a way to prevent a farmer's goat who has eaten a load of dynamite from blowing up Mayberry. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVPG + + + + The Andy Griffith Show + Class Reunion + Andy and Barney look forward to seeing their high-school sweethearts at the Mayberry Class of '45 reunion. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVPG + + + + The Andy Griffith Show + Rafe Hollister Sings + Rafe Hollister, a farmer with a golden voice, is chosen to represent Mayberry at a musical, but Mayor Stoner believes he looks too seedy. It is then up to Andy to make Rafe presentable enough. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + Frank Paints the House + Ray hits the roof when Frank, who generously offered to paint his son's house, refuses to use the color Ray wants. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + Ally's Birth + The Barones reminisce about the birth of their daughter, Ally, when they realize how quickly she is growing up. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + The Angry Family + At open-school night, Michael reads aloud his story about family members who always yell at one another. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + No Roll + Ray brings home an adult board game in an attempt to spice things up with Debra. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + Odd Man Out + Frank becomes very jealous when Marie starts spending more time with their friend Marco, the new owner of Nemo's restaurant. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVG + + + + Everybody Loves Raymond + Ray's Ring + Debra tries to turn the tables after Ray loses his wedding ring and is propositioned by an attractive woman. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + Marie's Sculpture + Marie makes a provocative sculpture and gives it to Ray and Debra. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + Frank Goes Downstairs + Ray and Debra lie to Frank about the source of injuries they incurred during romance. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + The King of Queens + Off-Track ... Bedding + Doug goes looking for his father at a model train convention and notices his mother with very seductive Arthur Spooner. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Silent Mite + Doug and Arthur play detective when Doug suspects an admirer of Carrie has stolen his wallet. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Awed Couple + Deacon and Kelly find new couple friends, forcing Doug and Carrie to turn to their old reliable couple friends, Neal and Marcy. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Cologne Ranger + Doug wears a cologne Carrie dislikes to try to convince himself and the guys that she does not control him. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Domestic Disturbance + Carrie gets a raise and hires a Spanish-speaking housekeeper, but the language barrier frustrates Doug, who retaliates by hiring Veronica as his personal housekeeper. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Pour Judgment + Carrie is upset when Doug does not take an exam that could have led to a promotion, so he retaliates by becoming a bartender. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + Seinfeld + The Stranded + After a party, and much to the host's chagrin, Jerry and Elaine wait for Kramer to pick them up. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Alternate Side + Elaine breaks up with her 66-year-old beau (Edward Penn), who suffers a stroke in front of Jerry's apartment. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Red Dot + Jerry is unintentionally responsible for Elaine's romantic woes; George gives Elaine a cashmere sweater. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Subway + Jerry, Elaine, George and Kramer have unique experiences on their subway rides. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Pez Dispenser + George worries over gaining the upper hand in his current romance. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Fix-Up + Elaine and Jerry arrange a date for George with one of her unattached friends (Maggie Jakobson). + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Boyfriend + Jerry's baseball hero, Keith Hernandez, falls for Elaine; George schemes to extend his unemployment benefits. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Boyfriend + Jerry's baseball hero, Keith Hernandez, falls for Elaine; George schemes to extend his unemployment benefits. + + Jerry Seinfeld + Julia Louis-Dreyfus + Jason Alexander + + Sitcom + + + TVPG + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + The Andy Griffith Show + Aunt Bee, the Swinger + Aunt Bee and her new boyfriend discover that they aren't as young as they think. + + Andy Griffith + Ronny Howard + Frances Bavier + + Sitcom + + + TVPG + + + + The Andy Griffith Show + A Warning From Warren + Andy's deputy upsets his weekend when he insists that a picnic will prove disastrous. + + Andy Griffith + Ronny Howard + Frances Bavier + + Sitcom + + + TVPG + + + + The Andy Griffith Show + Off to Hollywood + The Taylor family goes to Hollywood when a company decides to make a movie about Andy. + + Andy Griffith + Ronny Howard + Frances Bavier + + Sitcom + + + TVG + + + + M*A*S*H + Promotion Commotion + The surgeons suffer a barrage of preferential treatment from the enlisted personnel when they are placed on the camp's promotion board. + + Alan Alda + Harry Morgan + David Ogden Stiers + + Sitcom + History + + + TVPG + + + + M*A*S*H + Heroes + A heavyweight boxing champion pays a goodwill visit to the 4077th. + + Alan Alda + Harry Morgan + David Ogden Stiers + + Sitcom + History + + + TVPG + + + + M*A*S*H + Sons and Bowlers + Hawkeye desperately tries to contact his hospitalized father in Maine while the rest of the camp is preoccupied with a bowling match against a group of Marines. + + Alan Alda + Harry Morgan + David Ogden Stiers + + Sitcom + History + + + TVPG + + + + M*A*S*H + Picture This + Col. Potter decides to paint a picture of the 4077th crew for Mildred's birthday. + + Alan Alda + Harry Morgan + David Ogden Stiers + + Sitcom + History + + + TVPG + + + + Bonanza + The Hopefuls + Outlaws plot to steal a trunk containing the savings of a religious group heading for a new life in the West. + + Lorne Greene + Michael Landon + Dan Blocker + + Drama + + + TVG + + + + Gunsmoke + The Schoolmarm + A widower finds himself charged with murder after attempting to protect the reputation of his son's schoolteacher. + + James Arness + Milburn Stone + Amanda Blake + + Drama + + + TVG + + + + Gunsmoke + A Trail of Bloodshed + A boy tracks down the man who killed his father and will avenge his death at any cost. + + James Arness + Milburn Stone + Amanda Blake + + Drama + + + TVG + + + + Gunsmoke + To Ride a Yellow Horse + An ambitious mother doesn't consider Newley a suitable match for her daughter. + + James Arness + Milburn Stone + + Drama + + + TVG + + + + Gunsmoke + The Disciple + Dodge City residents are stunned when Matt turns in his badge because he no longer feels he can keep the peace. + + James Arness + Milburn Stone + Amanda Blake + + Drama + + + TVG + + + + The Andy Griffith Show + Opie and the Spoiled Kid + Opie meets Arnold Winkler, a spoiled kid who teaches him how to manipulate Andy into increasing his allowance by throwing tantrums. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVPG + + + + The Andy Griffith Show + The Great Filling Station Robbery + Andy uses common sense and Barney uses modern technology to solve several burglaries at a filling station. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVPG + + + + The Andy Griffith Show + Andy Discovers America + Andy's knowledge of American history is put to the test by Opie and a new teacher. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVPG + + + + The Andy Griffith Show + Aunt Bee's Medicine Man + Colonel Harvey, a traveling salesman, arrives at Mayberry and captivates Aunt Bee, who buys Harvey's dubious elixir and invites him for dinner. When Andy and Barney find Aunt Bee clearly drunk, they analyze Harvey's elixir. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVG + + + + The Andy Griffith Show + The Darlings Are Coming + Andy unexpectedly has his hands full as The Darlings, a family of musicians from the mountains, arrive in Mayberry to meet a bus due the next day. + + Andy Griffith + Ronny Howard + Don Knotts + + Sitcom + + + TVG + + + + Everybody Loves Raymond + Jealous Robert + Debra and Marie hope that Robert will be stirred to action when they fix up Amy with Raymond's friend Gianni. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + It's Supposed to Be Fun + While watching the twins play basketball, Ray has a hard time dealing with the fact that Geoffrey is a terrible athlete. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVG + + + + Everybody Loves Raymond + Older Women + Debra isn't sure what to think when her father brings an older female companion to Thanksgiving dinner. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + Christmas + + + TVPG + + + + Everybody Loves Raymond + Raybert + Robert involves Ray in a complicated plot when he discovers that the woman he is dating thinks he is Ray. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + The Kicker + Frank becomes a wanted man after he catches the ball at a college football game and refuses to give it back to the kicker. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + Season's Greetings + A Christmas letter from Marie and Debra causes a family tiff. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + Christmas + + + TVPG + + + + Everybody Loves Raymond + Tissues + Ray asserts his rights as king of the castle after complaining that Debra makes all the household decisions. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + Everybody Loves Raymond + Snow Day + Debra hurts Frank's feelings when the family is stranded together during a snowstorm. + + Ray Romano + Patricia Heaton + Doris Roberts + + Sitcom + + + TVPG + + + + The King of Queens + Gym Neighbors + When Doug and Carrie start training with their neighbor (Lou Ferrigno) so Carrie can lose a few pounds, Doug works out a deal that allows him to laze around during exercise time. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Gorilla Warfare + When Carrie learns Doug stole the romantic line he used when they started dating, he struggles to come up with a new one for Valentine's Day to try to redeem himself. + + Kevin James + Leah Remini + Patton Oswalt + + Sitcom + Christmas + + + TVPG + + + + The King of Queens + Hi, School + When Doug makes a delivery to his former high school, the football coach (Burt Reynolds) treats him like a hero, so Doug begins stopping by more often. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Deconstructing Carrie + As Carrie reluctantly approaches her 35th birthday, Doug bribes neighborhood construction workers to hoot and holler at her in order to make her feel younger. + + Kevin James + Leah Remini + Jerry Stiller + + Sitcom + + + TVPG + + + + The King of Queens + Black List + Doug tries to find his roots when Deacon snubs him for a new black friend, and Carrie's manicurist refuses to see her. + + Kevin James + Leah Remini + Victor Williams + + Sitcom + + + TVPG + + + + Seinfeld + The Limo + Jerry and George commandeer a limousine headed for a neo-Nazi rally. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Good Samaritan + Jerry tracks down a hit-and-run driver (Melinda McGraw); George skips town to escape an irate husband. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Letter + After Jerry breaks up with his new girlfriend (Catherine Keener), she resorts to someone else's words to woo him back. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Parking Space + George and Elaine have some explaining to do when they take Jerry's car for a ride. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Keys + Becoming annoyed at Kramer's invasions of privacy, Jerry takes away his spare key. Kramer, shaken, decides to leave for California to pursue an acting career. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Trip + When Jerry is booked to appear on. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Trip + While in Los Angeles, Jerry and George are picked up by the police; Kramer is a suspect in a series of serial murders. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + Seinfeld + The Pitch + Jerry is approached by network executives and asked to to create a new television show. + + Jerry Seinfeld + Jason Alexander + Michael Richards + + Sitcom + + + TVPG + + + + CHRISTINA HALL and Jacuzzi® amazing bathroom makeovers + SPECIAL OFFER + Trusted brand Jacuzzi® and renowned interior designer, Christina Hall can help you transform your old bathroom into a gorgeous custom, safe and stylish space. Jacuzzi® has limited time special offers to make your dream bathroom happen today CALL NOW. + Paid Program + Home + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + The Andy Griffith Show + Taylors in Hollywood + The Taylor family starts an exciting vacation in Hollywood, including a visit to a movie studio. + + Andy Griffith + Ronny Howard + Frances Bavier + + Sitcom + + + TVG + + + + The Andy Griffith Show + The Hollywood Party + Andy poses for a picture with a Hollywood starlet and his romance with Helen is jolted. + + Andy Griffith + Ronny Howard + Frances Bavier + + Sitcom + + + TVG + + + + The Andy Griffith Show + Aunt Bee on TV + Aunt Bee wins a kitchen of appliances on a TV show but loses all her friends. + + Andy Griffith + Ronny Howard + Frances Bavier + + Sitcom + + + TVG + + + + M*A*S*H + That Darn Kid + While Hawkeye is serving as paymaster, a goat eats $22,000 in cash. + + Alan Alda + Harry Morgan + David Ogden Stiers + + Sitcom + History + + + TVPG + + + + M*A*S*H + Hey, Look Me Over + Dreaded Col. Bucholtz comes to inspect the nursing staff. + + Alan Alda + David Ogden Stiers + Harry Morgan + + Sitcom + History + + + TVPG + + + + M*A*S*H + Trick or Treatment + Tricks seem to overrule treats on Halloween when a rowdy group of Marines ends up as patients. Guest starring George Wendt and Andrew Dice Clay. + + Alan Alda + Harry Morgan + David Ogden Stiers + + Sitcom + History + + + TVPG + + + + M*A*S*H + Foreign Affairs + Maj. Reddish tries to bribe an injured North Korean pilot to defect; Charles falls in love with a Red Cross worker. + + Alan Alda + Harry Morgan + David Ogden Stiers + + Sitcom + History + + + TVPG + + + + Bonanza + Denver McKee + The Cartwrights' neighbor (Franchot Tone), a former soldier and lawman, seeks security for his daughter. + + Lorne Greene + Michael Landon + Dan Blocker + + Drama + + + TVG + + + + Gunsmoke + Matt Dillon Must Die + A widower and his four sons plan to hunt down Matt to avenge the death of a fifth son, a wanted murderer. + + James Arness + + Drama + + + TVG + + + + Gunsmoke + A Town in Chains + Matt rides into a town to warn about approaching outlaws, only to be captured and held for ransom by the band himself. + + James Arness + Buck Taylor + + Drama + + + TVG + + + + Gunsmoke + The Guns of Cibola Blanca + A band of former Confederate officers-turned-outlaws takes Doc and saloon owner Lyla Ross captive. + + James Arness + Milburn Stone + + Drama + + + TVG + + + + Gunsmoke + The Guns of Cibola Blanca + Matt, Festus, and Newley search for Doc, who is being held hostage by bandits. + + James Arness + Milburn Stone + + Drama + + + TVG + + + + Good Times + The Family Tree + Thelma locates her grandfather and invites him home for her dad's birthday. + + Esther Rolle + John Amos + Ja'net DuBois + + Sitcom + + + TVPG + + + + Good Times + A Place to Die + Michael's elderly friend asks to move in with the Evanses for a most unusual reason. + + Esther Rolle + John Amos + Ja'net DuBois + + Sitcom + + + TVPG + + + + Good Times + J.J.'s Fiancee + J.J. astounds the family with the news that he plans to marry the. + + Esther Rolle + John Amos + Ja'net DuBois + + Sitcom + + + TVPG + + + + Good Times + J.J.'s Fiancee + J.J. decides to elope without learning some important facts about his bride. + + Esther Rolle + John Amos + Ja'net DuBois + + Sitcom + + + TVPG + + + + Good Times + The Investigation + Michael's research for a bicentennial report leads to strange happenings for the Evans family. + + Esther Rolle + John Amos + Jimmie Walker + + Sitcom + + + TVPG + + + + Good Times + J.J. in Trouble + When an old girlfriend visits J.J., she brings along some upsetting news. + + Ja'net DuBois + Jimmie Walker + Ralph Carter + + Sitcom + + + TVPG + + + + Good Times + Florida the Woman + Fed up with being treated like a servant by her family, Florida accepts a luncheon invitation from a man. + + Esther Rolle + John Amos + Ja'net DuBois + + Sitcom + + + TVPG + + + + Good Times + The Break Up + Thelma's indecision turns to agony when Harry accepts a new job and moves to California. + + Esther Rolle + John Amos + Ja'net DuBois + + Sitcom + + + TVPG + + + + Good Times + The Rent Party + The Evanses put together a rent party to raise money for the project's favorite senior citizen. + + Esther Rolle + John Amos + Ja'net DuBois + + Sitcom + + + TVPG + + + + Good Times + The Big Move + As the Evanses prepare to join James in Mississippi, a damper is thrown on everything. + + Esther Rolle + Jimmie Walker + Ja'net DuBois + + Sitcom + + + TVPG + + + + Good Times + The Big Move + Florida's attitude toward James' death causes dissension in an already saddened household. + + Esther Rolle + Jimmie Walker + Ja'net DuBois + + Sitcom + + + TVPG + + + + Good Times + J.J. and the Older Woman + Thelma's favorite teacher falls first for J.J.'s paintings and then for J.J. + + Esther Rolle + Jimmie Walker + Ja'net DuBois + + Sitcom + + + TVPG + + + + Good Times + Michael the Warlord + Michael is pressured into becoming a member of a street gang that is terrorizing the neighborhood. + + Esther Rolle + Jimmie Walker + Ja'net DuBois + + Sitcom + + + TVPG + + + + Good Times + J.J.'s New Career + J.J. resorts to crime in an effort to get his family out of the ghetto. + + Esther Rolle + Jimmie Walker + Ja'net DuBois + + Sitcom + + + TVPG + + + + Good Times + J.J.'s New Career + Florida has only one choice of action when she discovers what J.J. is doing for money. + + Esther Rolle + Jimmie Walker + Ja'net DuBois + + Sitcom + + + TVPG + + + + Ninja Woodfire Outdoor Grill + Meet the Shark Ninja Wood Fire Grill, with Master Grill, BBQ Smoke, and Air Fry outdoor capabilities. Powered by electricity and flavored by real burning wood pellets, Woodfire Technology allows you to easily create rich flavor you can see and taste. + Paid Program + + + + Get Fit with Total Gym, Risk Free + Get in the best shape of your life with the Total Gym 30 Day Risk-Free Trial Offer. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Pain Relief TV + Matt's pain from his 20 year old lost limb is solved. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Cindy Crawford and Ellen Pompeo share secrets + Join Cindy Crawford and Ellen Pompeo as they discuss their busy lives and the breakthrough skin care discovery that keeps them looking their best. Take a trip to the stunning French countryside to see a rare French melon that defies aging. + Paid Program + + + + The Cosby Show + Theo and the Joint + Theo searches for the culprit who put marijuana in his schoolbook. + + Bill Cosby + Phylicia Rashad + Malcolm-Jamal Warner + + Sitcom + + + TVPG + + + + The Cosby Show + Vanessa's New Class + Vanessa struggles when she receives her first disappointing grade in her advanced-placement class. + + Bill Cosby + Phylicia Rashad + Malcolm-Jamal Warner + + Sitcom + + + TVPG + + + + The Cosby Show + Clair's Case + Cliff takes over the house chores while Clair investigates a shady mechanic. + + Bill Cosby + Phylicia Rashad + Malcolm-Jamal Warner + + Sitcom + + + TVPG + + + + The Cosby Show + Back to the Track, Jack + Cliff's college track coach convinces him to run a match race against a former rival. + + Bill Cosby + Phylicia Rashad + Malcolm-Jamal Warner + + Sitcom + + + TVPG + + + + The Cosby Show + The Younger Woman + Cliff's widowed friend has found a new girlfriend who is young enough to be his daughter. + + Bill Cosby + Phylicia Rashad + Malcolm-Jamal Warner + + Sitcom + + + TVG + + + + The Cosby Show + Slumber Party + Cliff gets stuck entertaining Rudy's friends during a slumber party. + + Bill Cosby + Phylicia Rashad + Malcolm-Jamal Warner + + Sitcom + + + TVG + + + + The Cosby Show + Mr. Quiet + The Huxtables and the determined director (Tony Orlando) of a community center help a badly beaten boy. + + Bill Cosby + Phylicia Rashad + Malcolm-Jamal Warner + + Sitcom + + + TVPG + + + + The Cosby Show + Cliff's Birthday + Clair and the children surprise Cliff by planning a birthday celebration around a Lena Horne concert. + + Bill Cosby + Phylicia Rashad + Malcolm-Jamal Warner + + Sitcom + + + TVPG + + + + The Cosby Show + First Day of School + After three months of household turmoil, Cliff and Clair welcome the beginning of the school year. + + Bill Cosby + Phylicia Rashad + Malcolm-Jamal Warner + + Sitcom + + + TVPG + + + + The Cosby Show + The Juicer + Cliff's new kitchen gadget tempts Rudy and her friend Peter to make grape juice. + + Bill Cosby + Phylicia Rashad + Malcolm-Jamal Warner + + Sitcom + + + TVPG + + + + The Cosby Show + Happy Anniversary + Clair, Cliff and the children plan a gala 49th anniversary party for Grandpa and Grandma Huxtable. + + Bill Cosby + Phylicia Rashad + Malcolm-Jamal Warner + + Sitcom + + + TVG + + + + The Cosby Show + Cliff in Love + Cliff gives advice to a young man whom he would like to be Sondra's steady boyfriend. + + Bill Cosby + Phylicia Rashad + Malcolm-Jamal Warner + + Sitcom + + + TVG + + + + Living Single + The Handyman Can + Overton experiences a crisis in confidence after his bookshelf kills a cat; Maxine finds out that she's allergic to chocolate. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + He Works Hard for the Money + Kyle (T.C. Carson) becomes a boy toy for a seasoned and spicy actress (Eartha Kitt) in order to handle her business. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + Baby I'm Back ... Again + Scared that Khadijah (Queen Latifah) is enjoying the dating scene a little too much, Scooter (Cress Williams) proposes. With Erika Alexander, Kim Fields Freeman and Kim Coles. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + Mr. Big Shot + Overton (John Henton) tries to win $10,000 for making a three-point basketball shot; Max (Erika Alexander) steals Regine's (Kim Fields Freeman) dress. Guest star: Alonzo Mourning. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + Mommy Not Dearest + Max's (Erika Alexander) busy supermom comes for a visit; Khadijah (Queen Latifah) finds Dean Cain's (guest starring as himself) wallet. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + The Following Is a Sponsored Program + Synclaire (Kim Coles) auditions for an infomercial; Overton (John Henton) is unfaithful to Synclaire in his dreams. Members of TLC guest star as themselves. With Erika Alexander, Kim Fields Freeman and Queen Latifah. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + Let It Snow, Let It Snow, Let It Snow ... Dammit + Overton (John Henton) invites the gang to spend Christmas at his family's cabin in Canada. With Erika Alexander, Kim Fields Freeman, Kim Coles and Queen Latifah. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + Christmas + + + TVPG + + + + Living Single + I'm Ready for My Close-Up + By exaggerating the importance of her job on a soap opera set, Regine sets Synclaire up for disappointment. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + Scoop Dreams + A bike messenger whom Khadijah (Queen Latifah) reluctantly hired as a writer tries to scoop the competition. With Kim Fields Freeman. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + Likes Father, Likes Son + Regine's (Kim Fields Freeman) date with a handsome weatherman precipitates a stormy love triangle. With Erika Alexander, Kim Coles, Queen Latifah. Guest stars: Mario Van Peebles and Melvin Van Peebles. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + Wake Up to the Breakup + Max comes to regret encouraging Kyle to date other women; Regine gets tickets to the Brian McKnight concert. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + Tibby or Not Tibby + Overton's (John Henton) favorite uncle (J. Anthony Brown) advises him to dump Synclaire (Kim Coles). With Erika Alexander, Kim Fields Freeman, Queen Latifah. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + A Different World + The Apple Doesn't Fall + Ron considers a career decision; Terrance (Cory Tyler) thinks his father (Glynn Turman) should reject an offer. + + Jasmine Guy + Kadeem Hardison + Dawnn Lewis + + Sitcom + + + TVG + + + + A Different World + I'm Dreaming of a Wayne Christmas + Whitley tries to make a good impression on Dwayne's mother by getting her an expensive Christmas gift. + + Jasmine Guy + Kadeem Hardison + Dawnn Lewis + + Sitcom + Christmas + + + TVG + + + + A Different World + War and Peace + Emotions run high as Dwayne's classmates send their friend Zelmer to the Persian Gulf. + + Jasmine Guy + Kadeem Hardison + Dawnn Lewis + + Sitcom + + + TVPG + + + + A Different World + Ex-Communication or Fiance What? + Whitley consults a counselor (Debbie Allen) for help in coping with her feelings about her ex-fiance (Dominic Hoffman). + + Jasmine Guy + Kadeem Hardison + Dawnn Lewis + + Sitcom + + + TVG + + + + A Different World + Risk Around the Dollar + Whitley needs to replace the rent money she spent; Terrance wants to become a Muslim. + + Jasmine Guy + Kadeem Hardison + Dawnn Lewis + + Sitcom + + + TVG + + + + A Different World + Love, Hillman Style + Whitley and Dwayne argue over her scheme to publish a. + + Jasmine Guy + Kadeem Hardison + Dawnn Lewis + + Sitcom + + + TVG + + + + A Different World + A Word in Edgewise + Deaf actors (members of the National Theater of the Deaf) perform at the outreach center; Whitley bets she can zip her lips for a day. + + Jasmine Guy + Kadeem Hardison + Dawnn Lewis + + Sitcom + + + TVG + + + + A Different World + Ms. Understanding + The battle of the sexes heats up at Hillman, fueled by an article on campus sex roles. + + Jasmine Guy + Kadeem Hardison + Dawnn Lewis + + Sitcom + + + TVPG + + + + A Different World + The Cash Isn't Always Greener + Dwayne debates going for the big bucks in business or another degree after graduation. + + Jasmine Guy + Kadeem Hardison + Dawnn Lewis + + Sitcom + + + TVPG + + + + A Different World + How Great Thou Art + Whitley ignores her boss and buys a painting; Freddie hosts a radio talk show. + + Jasmine Guy + Kadeem Hardison + Dawnn Lewis + + Sitcom + + + TVPG + + + + A Different World + Showtime at Hillman + Walter hosts a telethon for the community center, but fails to get the phones ringing. + + Jasmine Guy + Kadeem Hardison + Dawnn Lewis + + Sitcom + + + TVPG + + + + A Different World + Sister to Sister, Sister + Kim decides to pledge a sorority and finds that Whitley is the pledge mistress. + + Jasmine Guy + Kadeem Hardison + Dawnn Lewis + + Sitcom + + + TVPG + + + + A Different World + Monet Is the Root of All Evil + Whitley sponsors an art show that is labeled obscene by an outside group. + + Jasmine Guy + Kadeem Hardison + Dawnn Lewis + + Sitcom + + + TVPG + + + + A Different World + If I Should Die Before I Wake + An oratory professor (Whoopi Goldberg) gives her class a unique assignment. + + Jasmine Guy + Kadeem Hardison + Dawnn Lewis + + Sitcom + + + TVPG + + + + Decor Remixed + Taylor Bobbi Hairstudio + Dominique and Dre meet with a return client, Taylor Bobbi to go over ideas for her new salon space. Meanwhile a bet between Dominique and Dre could possibly determine Dre's future as Dominique's chauffer. + Home + + + + Decor Remixed + Apris Walker + With only a week left on the project, Dominique receives a call from her client Apris and soon finds out Apris wants to make one last change to the design. Meanwhile, Dominique and her sister plan a surprise retirement dinner for their mom. + Home + + + + Decor Remixed + Asisa's Luxury Condo + Asisa calls Dominique in to help her decorate her condo after downsizing. Asisa isn't willing to spare any luxurious elements when enlisting Dominique in her big budget remix. + Home + + + + Decor Remixed + M&T Events + Dominique and Dre remix longtime friends, Marva and Tamara's event space but three weeks into the project everything comes to a screeching halt due to the town's permitting process. Will Dominique be able to wait for the approval or will she have... + Home + + + + Peter Popoff Ministries + For over 30 years Reverend Peter Popoff has provided spiritual direction and powerful testimonies to receive God's blessings in your life. + Paid Program + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + A Different World + Love Taps + Lena (Jada Pinkett) suspects that a rapper (Edafe Okurume) is putting his woman-hating lyrics into practice. + + Jasmine Guy + Kadeem Hardison + Dawnn Lewis + + Sitcom + + + TVPG + + + + A Different World + Special Delivery + Byron (Joe Morton) sweeps Whitley off her feet on election night; Jaleesa goes into labor. + + Jasmine Guy + Kadeem Hardison + Dawnn Lewis + + Sitcom + + + TVPG + + + + A Different World + Save the Best for Last + Dwayne visits Whitley the night before her wedding to apologize for his mistakes. + + Jasmine Guy + Kadeem Hardison + Dawnn Lewis + + Sitcom + + + TVPG + + + + A Different World + Save the Best for Last + Dwayne attends the wedding, and Whitney realizes that she can not marry Byron. + + Lisa Bonet + Kadeem Hardison + Jasmine Guy + + Sitcom + + + TVPG + + + + The Cosby Show + The Price Is Wrong + Pam and her friends organize a protest after finding grocery prices higher than usual in her old neighborhood. + + Bill Cosby + Phylicia Rashad + Malcolm-Jamal Warner + + Sitcom + + + TVG + + + + The Cosby Show + Eat, Drink and Be Wary + Rudy and Pam (Erika Alexander) take advantage of Cliff's being left in charge of the refrigerator while Clair is away. + + Bill Cosby + Phylicia Rashad + Malcolm-Jamal Warner + + Sitcom + + + TVG + + + + Living Single + A Hair-Razing Experience + Kyle has to decide whether or not to cut his dreadlocks after he's told the style doesn't fit the corporate image. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + There's No Ship Like Kinship + The jealousy flies when an old friend of Khadijah's gets a job at Flavor and starts hanging out with Synclaire. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + Singing the Blues + Kyle's singing performance at a local talent contest is disrupted by Maxine's presence; Regine coaches Khadijah. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + Play Ball + The Flavor Unit staff decides to strike after becoming fed up with malfunctioning office equipment. Guest star: Bobby Bonilla. With Queen Latifah, Kim Coles, Erika Alexander and T.C. Carson. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + Stormy Weather + Regine and Overton (Kim Fields, John Henton) get stuck in a van during a blizzard while the gang is snowed in at home. Guest star: Roxanne Beckford. With Queen Latifah, Kim Coles and Erika Alexander. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + The Last Temptation + Synclaire is sent reeling after an attractive classmate, Jon Marc, kisses her during a discussion about Freud. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + Christmas + + + TVPG + + + + Fatal Attraction + Death Toll + Fast lovers are shattered by gunfire with a monstrous motive. + Documentary + + + TV14 + + + + Fatal Attraction + Old Habits Die Hard + Clarence Goode is found shot dead in his car on the sketchy side of town, leading to a sticky web of superstition. + Documentary + + + TV14 + + + + Fatal Attraction + Crippled by Blood + An unthinkable tragedy of a brother and sister shot to death in their home uncovers shocking secrets. + Documentary + + + TV14 + + + + Fatal Attraction + Entrepre-murder + A couple from Los Angeles disappears without a trace, and investigators discover a true villain is responsible. + Documentary + + + TV14 + + + + A Different World + Love Taps + Lena (Jada Pinkett) suspects that a rapper (Edafe Okurume) is putting his woman-hating lyrics into practice. + + Jasmine Guy + Kadeem Hardison + Dawnn Lewis + + Sitcom + + + TVPG + + + + A Different World + Special Delivery + Byron (Joe Morton) sweeps Whitley off her feet on election night; Jaleesa goes into labor. + + Jasmine Guy + Kadeem Hardison + Dawnn Lewis + + Sitcom + + + TVPG + + + + A Different World + Save the Best for Last + Dwayne visits Whitley the night before her wedding to apologize for his mistakes. + + Jasmine Guy + Kadeem Hardison + Dawnn Lewis + + Sitcom + + + TVPG + + + + A Different World + Save the Best for Last + Dwayne attends the wedding, and Whitney realizes that she can not marry Byron. + + Lisa Bonet + Kadeem Hardison + Jasmine Guy + + Sitcom + + + TVPG + + + + The Cosby Show + The Price Is Wrong + Pam and her friends organize a protest after finding grocery prices higher than usual in her old neighborhood. + + Bill Cosby + Phylicia Rashad + Malcolm-Jamal Warner + + Sitcom + + + TVG + + + + The Cosby Show + Eat, Drink and Be Wary + Rudy and Pam (Erika Alexander) take advantage of Cliff's being left in charge of the refrigerator while Clair is away. + + Bill Cosby + Phylicia Rashad + Malcolm-Jamal Warner + + Sitcom + + + TVG + + + + The Cosby Show + The Getaway + Sondra, Elvin (Geoffrey Owens) and the twins move into their own home, much to the delight of Cliff and Clair. + + Bill Cosby + Phylicia Rashad + Malcolm-Jamal Warner + + Sitcom + + + TVG + + + + The Cosby Show + Cliff Gets Jilted + Sondra and Elvin's (Geoffrey Owens) housewarming party falls through, and Vanessa breaks up with Dabnis (William Thomas Jr.). + + Bill Cosby + Phylicia Rashad + Malcolm-Jamal Warner + + Sitcom + + + TVG + + + + Fatal Attraction + Highway Homicide + After a young woman is found dead on the side of a Nashville highway, questions swirl about who could have killed her. + Documentary + + + TV14 + + + + Fatal Attraction + Dual Disappearance + When a young woman suddenly vanishes from a gathering at her apartment, her friends and family are left in a state of sheer panic; whether she left of her own free will or whether there were dark intentions behind her surprise visitor. + Documentary + + + TV14 + + + + Sins of the City + East Cleveland + In 2013, East Cleveland's reputation as a violent community would provide cover for a deranged serial killer; when the sobering truth is revealed, the city faces the harsh reality that three women were killed, all while no one seemed to notice. + Documentary + + + + Fatal Attraction + Poisoned Mind + Aspiring actress Lilius Landrum is on the verge of success, then she is found murdered and decapitated. + Documentary + + + TV14 + + + + Fatal Attraction + Dual Disappearance + When a young woman suddenly vanishes from a gathering at her apartment, her friends and family are left in a state of sheer panic; whether she left of her own free will or whether there were dark intentions behind her surprise visitor. + Documentary + + + TV14 + + + + Sins of the City + East Cleveland + In 2013, East Cleveland's reputation as a violent community would provide cover for a deranged serial killer; when the sobering truth is revealed, the city faces the harsh reality that three women were killed, all while no one seemed to notice. + Documentary + + + + Fatal Attraction + Behind Locked Doors + Theresa Williams' sister feels in her heart that something is terribly wrong, then she arrives at Theresa's home to find her sister's two youngest children wandering around outside and Theresa brutally murdered behind locked doors. + Documentary + + + TV14 + + + + Car Accident? Free Legal Consultation. + Legal professionals standing by to answer your questions. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + H2O X5 - Super Powerful 5-In-1 Multi-Use Steam Cleaner + Kills 990f Bacteria, Viruses, and Germs with Steam! The 5-in-1 Lightweight, Fast, Powerful, And Completely Chemical Free Steam Cleaner! Lift and remove dirt and stains all around the home! + Paid Program + + + + Unsung + Cheryl Pepsii Riley + In 1988, R&B singer Cheryl Pepsii Riley makes her mark with. + Music + Documentary + + + TV14 + + + + CLEO Speaks + Anita Kopacz + A survivor of childhood sexual trauma, Anita Kopacz has worked to help other victims deal with trauma and move forward from the shame and distress; she discusses her path to healing and her work as a psychologist. + Performing Arts + + + + A Different World + Honeymoon in L.A + Whitley and Dwayne tell new students about their honeymoon in Los Angeles. + + Jasmine Guy + Kadeem Hardison + Darryl M. Bell + + Sitcom + + + TVPG + + + + A Different World + Honeymoon in L.A + Whitley and Dwayne search for each other after being separated during their honeymoon in Los Angeles. + + Jasmine Guy + Kadeem Hardison + Darryl M. Bell + + Sitcom + + + TVPG + + + + A Different World + Interior Desecration or Sofa, So Good + Whitley and Dwayne try to combine their possessions in the new apartment. + + Jasmine Guy + Kadeem Hardison + Darryl M. Bell + + Sitcom + + + TVPG + + + + A Different World + Somebody Say Ho! + Freddie puts her law school studies to good use when Terrell is brought up on charges of verbal abuse. + + Jasmine Guy + Kadeem Hardison + Darryl M. Bell + + Sitcom + + + TVPG + + + + The Cosby Show + Cliff and Theo Come Clean + Theo makes a decision about his future; Olivia and Marlon (Aaron Beener) interview Cliff for a school assignment. + + Bill Cosby + Phylicia Rashad + Malcolm-Jamal Warner + + Sitcom + + + TVG + + + + The Cosby Show + Clair's Reunion + Clair and her college friends reminisce while planning a testimonial for a retiring professor; Cliff gets a make-over. + + Bill Cosby + Phylicia Rashad + Malcolm-Jamal Warner + + Sitcom + + + TVPG + + + + Living Single + Legal Briefs + Things heat up for Maxine (Erika Alexander) when she finds out her new boss is her former boyfriend (Phil Morris). With Kim Fields, Kim Coles, Queen Latifah and T.C. Carson. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + If the Crew Fits + Regine and Darryl (Kim Fields, Heavy D) second-guess their relationship after she fails to hit it off with his friends. With Queen Latifah, Kim Coles, Erika Alexander and T.C. Carson. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + Space Invaders + Kyle becomes annoyed with Overton and Synclaire's relationship; Maxine tries to recover a compromising tape of herself. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + Another Saturday Night + Khadijah and Synclaire help Overton get revenge on pool sharks; Kyle has a date with a princess; Maxine goes to New Jersey to get a tattoo. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + Who's Scooping Who + Khadijah (Queen Latifah) tries to scoop a rival reporter on a story about a scandal in the boxing world. Guest stars Roberto Duran, Kadeem Hardison and Kelly Perine. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + Raw Talent + Synclaire's role in a theatrical production is expanded, and she has to decide if she can play the part. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Fatal Attraction + The Iris of Evil + A single mother meets a handsome stranger, but their romance ends when she is discovered shot to death in her bedroom. + Documentary + + + TV14 + + + + Fatal Attraction + Blazed Outrage + A young, single mother meets a man, but their perfect life together ends in a criminal act. + Documentary + + + TV14 + + + + Fatal Attraction + Sin for the Son + A strong-willed Caribbean mother fights for a better life for her sick son, but after moving to Toronto, a horrible crime happens. + Documentary + + + TV14 + + + + Fatal Attraction + What Lies Beneath + Tavia goes missing after she falls for a star football player with a story of lying, cheating and killing. + Documentary + + + TV14 + + + + A Different World + Honeymoon in L.A + Whitley and Dwayne tell new students about their honeymoon in Los Angeles. + + Jasmine Guy + Kadeem Hardison + Darryl M. Bell + + Sitcom + + + TVPG + + + + A Different World + Honeymoon in L.A + Whitley and Dwayne search for each other after being separated during their honeymoon in Los Angeles. + + Jasmine Guy + Kadeem Hardison + Darryl M. Bell + + Sitcom + + + TVPG + + + + A Different World + Interior Desecration or Sofa, So Good + Whitley and Dwayne try to combine their possessions in the new apartment. + + Jasmine Guy + Kadeem Hardison + Darryl M. Bell + + Sitcom + + + TVPG + + + + A Different World + Somebody Say Ho! + Freddie puts her law school studies to good use when Terrell is brought up on charges of verbal abuse. + + Jasmine Guy + Kadeem Hardison + Darryl M. Bell + + Sitcom + + + TVPG + + + + The Cosby Show + Cliff and Theo Come Clean + Theo makes a decision about his future; Olivia and Marlon (Aaron Beener) interview Cliff for a school assignment. + + Bill Cosby + Phylicia Rashad + Malcolm-Jamal Warner + + Sitcom + + + TVG + + + + The Cosby Show + Clair's Reunion + Clair and her college friends reminisce while planning a testimonial for a retiring professor; Cliff gets a make-over. + + Bill Cosby + Phylicia Rashad + Malcolm-Jamal Warner + + Sitcom + + + TVPG + + + + The Cosby Show + Rudy's Retreat + While Rudy copes with adolescence, Cliff and Clair learn they may be named legal guardians for the twins. + + Bill Cosby + Phylicia Rashad + Malcolm-Jamal Warner + + Sitcom + + + TVG + + + + The Cosby Show + You Can't Stop the Music + Cliff enjoys being in the studio for a radio concert featuring Latin jazz artists Mario Bauza and Willie Colon. + + Bill Cosby + Phylicia Rashad + Malcolm-Jamal Warner + + Sitcom + + + TVPG + + + + Living Single + To Grandmother's House We Go + Regine (Kim Fields) and Khadijah's (Queen Latifah) mothers go on vacation, leaving the girls to baby-sit Khadijah's grandmother (Barbara Montgomery). Guest stars Chip Hurd and Rita Owens. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + Talk Showdown + An appearance on a talk show about. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + The Shake Up + Khadijah (Queen Latifah) doesn't take Regine's (Kim Fields) threat of moving out seriously until she leaves. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + Come Back Little Diva + After making good on her threat to move out, Regine hosts a housewarming party in her new less-than-glamorous studio. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + The Ex File + Overton (John Henton) fears rekindling the fire with a former flame (guest star Tammy Townsend); Regine (Kim Fields Freeman) moves back. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + On the Rebound + Khadijah (Queen Latifah) scores romance points with Grant Hill (guest starring as himself) during an interview. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + Grumpy Old Man + Maxine decides to throw Kyle a surprise party for his 30th birthday. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + Rags to Riches + Just as Regine is made the manager, her boutique is turned into a discount store; Overton resembles a porn star. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + The James Bond + Extra money creates extra problems for Khadijah and Synclaire; Maxine and Kyle confront each other's. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + The Handyman Can + Overton experiences a crisis in confidence after his bookshelf kills a cat; Maxine finds out that she's allergic to chocolate. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + He Works Hard for the Money + Kyle (T.C. Carson) becomes a boy toy for a seasoned and spicy actress (Eartha Kitt) in order to handle her business. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + Baby I'm Back ... Again + Scared that Khadijah (Queen Latifah) is enjoying the dating scene a little too much, Scooter (Cress Williams) proposes. With Erika Alexander, Kim Fields Freeman and Kim Coles. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + Mr. Big Shot + Overton (John Henton) tries to win $10,000 for making a three-point basketball shot; Max (Erika Alexander) steals Regine's (Kim Fields Freeman) dress. Guest star: Alonzo Mourning. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + Mommy Not Dearest + Max's (Erika Alexander) busy supermom comes for a visit; Khadijah (Queen Latifah) finds Dean Cain's (guest starring as himself) wallet. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Peter Popoff Ministries + For over 30 years Reverend Peter Popoff has provided spiritual direction and powerful testimonies to receive God's blessings in your life. + Paid Program + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + Get Fit with Total Gym, Risk Free + Get in the best shape of your life with the Total Gym 30 Day Risk-Free Trial Offer. + Paid Program + + + + Mercy Ships + Mercy Ship's crew of world class medical volunteers sail across the globe providing lifesaving surgeries to those with nowhere else to turn. + Paid Program + + + + Unsung + Dru Hill + Their debut album produces four top singles and Dru Hill seems destined for superstardom, but clashes with their label and each other all but derails their career. + Music + Documentary + + + TV14 + + + + CLEO Speaks + Denee Baptiste + Denee Baptiste is a mother, a performer, dancer and motivational speaker; she shares her journey and inspires young dancers everywhere to follow their dreams. + Performing Arts + + + + A Different World + Really Gross Anatomy + Kim. + + Jasmine Guy + Kadeem Hardison + Darryl M. Bell + + Sitcom + + + TVPG + + + + A Different World + Don't Count Your Chickens Before They're Axed + Whitley tries to convince Dwayne to invest in an expensive painting, then loses her job; Ron and Kim reach a crossroads. + + Jasmine Guy + Kadeem Hardison + Darryl M. Bell + + Sitcom + + + TVPG + + + + A Different World + The Little Mister + In Dwayne's dream, Whitley is running for president against other women. + + Jasmine Guy + Kadeem Hardison + Darryl M. Bell + + Sitcom + + + TVPG + + + + A Different World + Baby, It's Cold Outside + Whitley phones. + + Jasmine Guy + Kadeem Hardison + Darryl M. Bell + + Sitcom + + + TVPG + + + + The Cosby Show + Rudy's Retreat + While Rudy copes with adolescence, Cliff and Clair learn they may be named legal guardians for the twins. + + Bill Cosby + Phylicia Rashad + Malcolm-Jamal Warner + + Sitcom + + + TVG + + + + The Cosby Show + You Can't Stop the Music + Cliff enjoys being in the studio for a radio concert featuring Latin jazz artists Mario Bauza and Willie Colon. + + Bill Cosby + Phylicia Rashad + Malcolm-Jamal Warner + + Sitcom + + + TVPG + + + + Living Single + The Following Is a Sponsored Program + Synclaire (Kim Coles) auditions for an infomercial; Overton (John Henton) is unfaithful to Synclaire in his dreams. Members of TLC guest star as themselves. With Erika Alexander, Kim Fields Freeman and Queen Latifah. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + Let It Snow, Let It Snow, Let It Snow ... Dammit + Overton (John Henton) invites the gang to spend Christmas at his family's cabin in Canada. With Erika Alexander, Kim Fields Freeman, Kim Coles and Queen Latifah. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + Christmas + + + TVPG + + + + Living Single + I'm Ready for My Close-Up + By exaggerating the importance of her job on a soap opera set, Regine sets Synclaire up for disappointment. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + Scoop Dreams + A bike messenger whom Khadijah (Queen Latifah) reluctantly hired as a writer tries to scoop the competition. With Kim Fields Freeman. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + Likes Father, Likes Son + Regine's (Kim Fields Freeman) date with a handsome weatherman precipitates a stormy love triangle. With Erika Alexander, Kim Coles, Queen Latifah. Guest stars: Mario Van Peebles and Melvin Van Peebles. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Living Single + Wake Up to the Breakup + Max comes to regret encouraging Kyle to date other women; Regine gets tickets to the Brian McKnight concert. + + Queen Latifah + Kim Coles + Erika Alexander + + Sitcom + + + TVPG + + + + Fatal Attraction + Excess Baggage + Christie disappears without a trace and the detectives dig deep inside a labyrinth of violence and deception. + Documentary + + + TV14 + + + + Fatal Attraction + Hidden Homicide + Iraq War veterans become a couple when one goes missing with the body showing up on her front lawn. + Documentary + + + TV14 + + + + Fatal Attraction + Two-Timing Terror + Latoyia mysteriously disappears while pregnant after reconnecting with an old flame. + Documentary + + + TV14 + + + + Fatal Attraction + Social Media Murder + A brutal stabbing attack leaves one dead and an investigation leads to secrets, sex and control. + Documentary + + + TV14 + + + + A Different World + Really Gross Anatomy + Kim. + + Jasmine Guy + Kadeem Hardison + Darryl M. Bell + + Sitcom + + + TVPG + + + + A Different World + Don't Count Your Chickens Before They're Axed + Whitley tries to convince Dwayne to invest in an expensive painting, then loses her job; Ron and Kim reach a crossroads. + + Jasmine Guy + Kadeem Hardison + Darryl M. Bell + + Sitcom + + + TVPG + + + + A Different World + The Little Mister + In Dwayne's dream, Whitley is running for president against other women. + + Jasmine Guy + Kadeem Hardison + Darryl M. Bell + + Sitcom + + + TVPG + + + + A Different World + Baby, It's Cold Outside + Whitley phones. + + Jasmine Guy + Kadeem Hardison + Darryl M. Bell + + Sitcom + + + TVPG + + + + The Cosby Show + Some Gifts Aren't Deductible + Cliff runs into problems preparing his tax return; Rudy helps Kenny (Deon Richmond) plan a party for Deirdre (Gabrielle Carmouche). + + Bill Cosby + Phylicia Rashad + Malcolm-Jamal Warner + + Sitcom + + + TVPG + + + + The Cosby Show + And So We Commence + Too many relatives show up for Theo's graduation; Olivia prepares to join her parents in Singapore. + + Bill Cosby + Phylicia Rashad + Malcolm-Jamal Warner + + Sitcom + + + TVG + + + + Boomerang + Le jour J + C'est le grand jour, Patrick est sur le point d'ouvrir son restaurant social, mais les problèmes de livraison s'accumulent; Patrick, persuadé que le chef du restaurant voisin y est pour quelque chose, se met les pieds dans les plats. + + Catherine-Anne Toupin + Antoine Bertrand + Marie-Thérèse Fortin + + Sitcom + + + TVG + + + + Boomerang + Le grand départ + Monique et Pierre se décident à vendre leur maison, mais Pierre n'arrive pas à s'y faire; Patrick propose à Karine de la racheter pour y installer leur famille; elle hésite à emménager en banlieue, mais finit par accepter. + + Catherine-Anne Toupin + Antoine Bertrand + Marie-Thérèse Fortin + + Sitcom + + + TVG + + + + Le journal de France 2 + Les derniers développements des dossiers internationaux dans une perspective européenne. + News + + + TVG + + + + Transat Jacques Vabre: Normandie Le Havre + Résumé quotidien de la 15e édition de la Transat Jacques Vabre-Normandie Le Havre. + Sports + Boating + + + TVG + + + + Échappées belles + Catalogne, l'Espagne inspirée + La Catalogne est loin de se résumer à Barcelone, sa capitale de région; la région regorge de magnifiques paysages très divers, mais ce que l'on remarque partout, ce sont les traces du modernisme dans l'architecture et dans l'art. + Travel + Documentary + + + TVG + + + + Le 23h + Le journal de 23 heures de franceinfo. On retrouve les grands reportages, les entretiens et les décryptages de la rédaction sur toute l'actualité française et internationale. + News + + + + Taratata 100 0ve + Les plus grands noms français et internationaux se partagent la scène. + Music + + + + Cinéma + La faute de l'abbé Mouret + Serge Mouret, le jeune curé d'un petit village, se heurte au frère Archangias, véritable monument de fanatisme. + + Francis Huster + André Lacombe + Gillian Hills + + 1970 + Movies + Drama + + + + Cinéma + Les Félins + Pourchassé par des tueurs à la solde d'un gangster dont il a séduit la femme, un Français se fait engager comme chauffeur par deux riches Américaines. + + Alain Delon + Jane Fonda + Lola Albright + + 1964 + Movies + Drama + + + 2 + + + + Cinéma + Alice + Brutalement, Alice apprend qu'elle n'est pas la fille biologique de ses parents. Dès lors, tout s'accélère: la jeune femme découvre qui elle est et fait face au mal qui la ronge. + + Audrey Bastien + Clara Pirali + Regine Mondion + + 2021 + Movies + Drama + + + + Refuges de montagne + Année 2017. Nous passons un été dans les Alpes Suisses et allons visiter les refuges de la Glattalp dans le Muotathal et du Spitz-Meylan à Flumserberg, ainsi que la Capanna Basodino, au-dessus de Locarno. + Travel + Environmental + + + TVG + + + + Écho-logis + The Hen House, île de Skye (Écosse) + En Écosse, sur la très prisée île de Skye, Nick et Kate Middleton ont construit un habitat moderne et respectueux de l'environnement. + Environmental + Home + + + TVG + + + + Tv5Monde, le Journal Afrique + Toutes les nouvelles africaines. + News + + + + Tv5Monde, le Journal Afrique + Toutes les nouvelles africaines. + News + + + + Le journal de Radio-Canada + Journal télévisé de la Radio Canada. + News + News Magazine + + + TVG + + + + L'actu + Le journal de TVMonaco. + News + + + TVG + + + + Le Journal de la RTBF + Toute l'actualité internationale proposée et présentée par la rédaction de la RTBF. + News + + + TVG + + + + Anna et ses amis + Le journal des amis + Anna décide de fabriquer un journal des amis; tous les amis rivalisent d'imagination pour produire la meilleure histoire qui figurera dans le journal. + + Marine Bertieau + Kaycie Chase + Natacha Guritzen + + Animated + Children + + + + Toc Toc! + Dans une ferme traditionnelle, la vie se déroule au gré des mésaventures de chacun; doué pour arranger les peines du quotidien et démêler les malentendus, Claude, le taureau docteur des petits soucis, s'occupe de tous les autres animaux. + + Marie Bouvet + Marc Duquenoy + Emmylou Homs + + Comedy + Instructional + + + + Les nouvelles aventures de Kaeloo + Si on jouait avec Vitamine + Les aventures débridées de Kaeloo la grenouille, Moignon l'écureuil, Coin-Coin et Mr Chat. + + Emmanuel Garijo + Philippe Spiteri + Rémi Chapotot + + Animated + Children + + + TVG + + + + Gabâo + Une machine parlante pose à Gabâo une question en lien avec un objet ou notre environnement; pour y répondre, il franchit la porte de la connaissance qui le transporte dans un univers où les informations sont illustrées par des images réelles. + Instructional + + + + Taffy + On découvre les aventures extravagantes auxquelles est confronté Bentley, un fidèle chien de chasse, lorsque sa maîtresse, la milliardaire Mme Muchmore, adopte un sournois chat angora aux grands yeux nommé Taffy. + + Emmanuel Garijo + Xavier Fagnon + Fily Keita + + Animated + Children + + + TVG + + + + La famille Blaireau-Renard + Monsieur Blaireau et Madame Renard forment une famille recomposée avec leurs enfants respectifs, les jumeaux blaireaux Carcajou et Glouton avec leur petite soeur Cassis, et Roussette la fille unique de Madame Renard. + Animated + Children + + + TVG + + + + La famille Blaireau-Renard + Monsieur Blaireau et Madame Renard forment une famille recomposée avec leurs enfants respectifs, les jumeaux blaireaux Carcajou et Glouton avec leur petite soeur Cassis, et Roussette la fille unique de Madame Renard. + Animated + Children + + + TVG + + + + Zouk + Une petite sorcière modèle + Zouk est invité par Jojo à passer une journée tranquille sur un bateau avec lui et son père. + + Anna Mayoux + Eléna Plonka + Jeanne Chartier + + Animated + Children + + + + Zouk + La voisine qui n'aimait pas les sorciers + La fête organisée par les parents de Zouk ne semble pas plaire au voisin, qui leur ordonne de cesser ces rituels; la petite sorcière, avec la permission de ses parents, invite le voisin chez elle. + + Anna Mayoux + Eléna Plonka + Jeanne Chartier + + Animated + Children + + + + Zip Zip + Le bribri à sa tatie + Rachel, la tante de monsieur Livingstone, débarque à la maison; elle chouchoute Washington comme jamais, car il lui rappelle du toutou de son enfance; pour Washington, ce n'est que cadeaux et gâteries à volonté. + Animated + Children + + + TVG + + + + Zip Zip + Le toutou qui sait tout sur tout + Waldemar répond à toutes les questions d'un jeu-questionnaire télévisé. + Animated + Children + + + TVG + + + + Sardine de l'espace + Les tatouages + Supermuscleman interdit les tatouages dans tout l'univers, mais cela n'empêche pas Sardine, P'tit Lulu etÉEpaule Jaune d'aller se faire tatouer chez leur ami Toutoune, mais attention, la police-mousse veille. + + Dorothée Pousséo + Kaycie Chase + Philippe Spiteri + + Animated + Performing Arts + + + + Le journal de France 2 + Les derniers développements des dossiers internationaux dans une perspective européenne. + News + + + TVG + + + + Basik + Magazine hebdomadaire de reportages. Chaque semaine, Basik explore des problématiques liées à l'économie, à l'argent, aux énergies, et au quotidien des romand.e.s. Basik met les histoires et les destins personnels en avant. + Business + News Magazine + + + + 36.9 degrés + Le magazine médical 36,9 aborde la santé du point de vue du patient et non du médecin. + Health + News Magazine + + + TVG + + + + Vivement dimanche + Sur son célèbre canapé rouge, Michel Drucker, entouré de ses chroniqueurs, reçoit un invité. + Talk Shows + Variety + + + + 64', le monde en français + Le nouveau rendez-vous de l'information et de la culture francophone. + News + News Magazine + + + + 64', le monde en français + Le nouveau rendez-vous de l'information et de la culture francophone. + News + News Magazine + + + + L'invité + Patrick Simonin rencontre les artistes, les écrivains, les acteurs et tous ceux qui font vibrer notre époque; un rendez-vous incontournable des vedettes et des personnalités qui font l'actualité. + News Magazine + + + TVG + + + + 64' l'essentiel + L'actualité internationale décryptée par le monde francophone. + News + + + + Le journal de la RTS + Trente minutes d'information pour avoir l'essentiel de l'actualité romande, nationale et internationale. + News + + + + Champions d'exception + Magazine entièrement dédié au sport, au handicap et au mouvement paralympique. + Sports + + + + Football: Ligue 1 Uber Eats + Le Championnat de France. + Sports + Soccer + + + + Football: Ligue 1 Uber Eats + Le Championnat de France. + Sports + Soccer + + + + Le dessous des cartes + Magazine géopolitique. + + Emilie Aubry + + News Magazine + + + TVG + + + + Afropolitaine + Affaire de sape + Yvoire et Timothée sont invités à une soirée; lorsque Yvoire voit la tenue que son chéri envisage de porter, elle appelle Yérim à la rescousse; ce dernier emmène Timothée chez le Bachelor, un mannequin qui maîtrise parfaitement l'art de la sape. + + Tracy Gotoas + Manda Touré + Stéphanie Vitonou + + Comedy + + + + 400 millions de critiques + Premier grand magazine culturel francophone au monde, 400 millions de critiques reviennent sur l'actualité culturelle francophone à travers les regards croisés de journalistes belges. + News Magazine + Arts & Entertainment + + + TVG + + + + 20h30 le dimanche + Une personnalité présente ses projets, son regard sur l'actualité et son. + News Magazine + + + + Foot! + Résumé des matchs, commentaires, analyses, après chaque journée de la Ligue 1 Conforama, le Championnat de France de football. + Sports + Soccer + + + + Foot! + Résumé des matchs, commentaires, analyses, après chaque journée de la Ligue 1 Conforama, le Championnat de France de football. + Sports + Soccer + + + + Top 14 rugby le mag + Résumés et meilleurs moments des matchs du Championnat de France de rugby. + Sports + Rugby + + + + Sérieux? + Le sort de notre planète Terre est au coeur de nos préoccupations. Au quotidien, on se demande quels gestes ont un impact réel sur l'environnement, quels sacrifices valent la peine d'être faits et quelles résolutions valent la peine d'être tenues. + Environmental + Talk Shows + + + TVG + + + + Le journal de France 2 + Les derniers développements des dossiers internationaux dans une perspective européenne. + News + + + TVG + + + + Transat Jacques Vabre: Normandie Le Havre + Résumé quotidien de la 15e édition de la Transat Jacques Vabre-Normandie Le Havre. + Sports + Boating + + + TVG + + + + Cinéma + Norbourg + L'histoire de Vincent Lacroix, un homme d'affaires reconnu coupable d'avoir fraudé des milliers d'investisseurs et détourné plus de 130 millions de dollars au milieu des années 2000 au Québec, Canada. + + François Arnaud + Vincent-Guillaume Otis + Christopher James Giannini + + 2022 + Movies + Drama + + + + Tendance XXI + Nona Source/Bateaux-Mouches/T3 Architecture/Fifties fashion + Nona Source, projet éthique et alternatif signé LVMH, est une plateforme de revente de matières d'exception; tout savoir sur l'origine des Bateaux-Mouches; le cabinet marseillais T3 propose une vision de l'architecture proche de l'artisanat. + Fashion + Arts & Entertainment + + + + Le 23h + Le journal de 23 heures de franceinfo. On retrouve les grands reportages, les entretiens et les décryptages de la rédaction sur toute l'actualité française et internationale. + News + + + + Taratata 100 0ve + Nagui a le privilège de recevoir pour la première fois le chanteur mythique Jacques Dutronc, accompagné de son fils Thomas et de nombreux autres artistes, Jacob Banks, Yellowstraps, Marie-Flore ou Royal Republic & Ko Ko Mo. + Music + + + + Jeux d'influence + Tous les moyens sont bons pour contrecarrer la progression du projet de loi de Delpierre. Le passé trouble de Romain est utilisé contre lui. Prise en charge pour sa prétendue toxicomanie, Chloé est maintenue dans une clinique spécialisée. + + Alix Poisson + Laurent Stocker + Jean-Francois Sivadier + + Drama + + + TVG + + + + Jeux d'influence + Romain annonce sa démission à Delpierre; celui-ci se résout malgré tout à apporter une modification majeure à son amendement afin de le protéger; Bowman contraint Claire à signer un contrat de rupture ainsi qu'une clause de confidentialité. + + Alix Poisson + Laurent Stocker + Jean-Francois Sivadier + + Drama + + + + Jeux d'influence + Romain annonce sa démission à Delpierre; celui-ci se résout malgré tout à apporter une modification majeure à son amendement afin de le protéger; Bowman contraint Claire à signer un contrat de rupture ainsi qu'une clause de confidentialité. + + Alix Poisson + Laurent Stocker + Jean-Francois Sivadier + + Drama + + + + Cinéma + La faute de l'abbé Mouret + Serge Mouret, le jeune curé d'un petit village, se heurte au frère Archangias, véritable monument de fanatisme. + + Francis Huster + André Lacombe + Gillian Hills + + 1970 + Movies + Drama + + + + Le 6h00 info + Le journal de 6h (heure de Paris) proposé par la rédaction de France Télévisions. + News + + + + Deux gouttes d'eau + Une jeune femme est retrouvée assassinée. Pour le commissaire, l'affaire sera rapide: la caméra de surveillance permet d'identifier son petit ami, Antoine Deloye. Placé en garde à vue, Antoine nie les faits. + + Sylvie Testud + Michaël Youn + Hugo Becker + + 2018 + Movies + Thriller + + + + Cinéma + Les Félins + Pourchassé par des tueurs à la solde d'un gangster dont il a séduit la femme, un Français se fait engager comme chauffeur par deux riches Américaines. + + Alain Delon + Jane Fonda + Lola Albright + + 1964 + Movies + Drama + + + 2 + + + + Cinéma + Meurtres en Corrèze + À Tulle, la procession de la Saint-Jean est parsemée de cadavres; Axel et Léna, deux gendarmes autrefois amants tentent de dénouer les fils d'une machination qui remonte à 13 ans. + 2019 + Movies + Mystery + + + TVG + + + + Basik + Magazine hebdomadaire de reportages. Chaque semaine, Basik explore des problématiques liées à l'économie, à l'argent, aux énergies, et au quotidien des romand.e.s. Basik met les histoires et les destins personnels en avant. + Business + News Magazine + + + + Un si grand soleil + Claire revient à Montpellier après dix-sept ans d'absence, afin de faire découvrir à Théo, son fils adolescent, sa ville natale. Quelques heures plus tard, elle est en garde à vue, accusée du meurtre d'un ami d'enfance. + + Mélanie Maudran + Gary Guénaire + Bertrand Farge + + Soaps + Drama + + + + Tv5Monde, le Journal Afrique + Toutes les nouvelles africaines. + News + + + + Le journal de Radio-Canada + Journal télévisé de la Radio Canada. + News + News Magazine + + + TVG + + + + Télématin + Réveils dynamiques garantis avec Thomas Sotto et Julia Vignali du lundi au jeudi, puis Damien Thévenot et Maya Lauqué du vendredi au dimanche. + News Magazine + Health + + + TVG + + + + Le Journal de la RTBF + Toute l'actualité internationale proposée et présentée par la rédaction de la RTBF. + News + + + TVG + + + + TV5MONDE, le journal + Toute l'actualité nationale et internationale proposée par la rédaction de TV5MONDE. + News + Political + + + TVG + + + + L'invité + Patrick Simonin rencontre les artistes, les écrivains, les acteurs et tous ceux qui font vibrer notre époque; un rendez-vous incontournable des vedettes et des personnalités qui font l'actualité. + News Magazine + + + TVG + + + + TV5MONDE, le journal + Toute l'actualité nationale et internationale proposée par la rédaction de TV5MONDE. + News + Political + + + TVG + + + + L'invité + Patrick Simonin rencontre les artistes, les écrivains, les acteurs et tous ceux qui font vibrer notre époque; un rendez-vous incontournable des vedettes et des personnalités qui font l'actualité. + News Magazine + + + TVG + + + + Télématin + Réveils dynamiques garantis avec Thomas Sotto et Julia Vignali du lundi au jeudi, puis Damien Thévenot et Maya Lauqué du vendredi au dimanche. + News Magazine + Health + + + TVG + + + + Le journal de France 2 + Les derniers développements des dossiers internationaux dans une perspective européenne. + News + + + TVG + + + + Suisse en scène + Entretien avec une personnalité de la scène culturelle suisse. L'occasion de revenir sur son parcours et les grandes lignes qui sous-tendent son travail. + Talk Shows + Arts & Entertainment + + + TVG + + + + Le jardin extraordinaire + Tanguy Dumortier présente la nature et l'environnement à travers des reportages et des documents. + Science + + + + Amuse-gueule + Stéphane Gabioud et ses experts proposent aux Romands de discuter santé et alimentation, en répondant notamment aux questions des téléspectateurs. + Health + Performing Arts + + + TVG + + + + Un si grand soleil + Claire revient à Montpellier après dix-sept ans d'absence, afin de faire découvrir à Théo, son fils adolescent, sa ville natale. Quelques heures plus tard, elle est en garde à vue, accusée du meurtre d'un ami d'enfance. + + Mélanie Maudran + Gary Guénaire + Bertrand Farge + + Soaps + Drama + + + + Slam + Trois candidats s'affrontent sur des grilles de mots fléchés qu'ils tentent de remplir en trouvant les réponses aux définitions proposées; mais pour avoir accès aux définitions, ils doivent d'abord répondre à des questions. + Game Shows + Performing Arts + + + + 64', le monde en français + Le nouveau rendez-vous de l'information et de la culture francophone. + News + News Magazine + + + + Le journal de l'économie + L'actualité économique et financière en France et dans le monde. + Business + + + + 64', le monde en français + Le nouveau rendez-vous de l'information et de la culture francophone. + News + News Magazine + + + + L'invité + Patrick Simonin rencontre les artistes, les écrivains, les acteurs et tous ceux qui font vibrer notre époque; un rendez-vous incontournable des vedettes et des personnalités qui font l'actualité. + News Magazine + + + TVG + + + + 64' l'essentiel + L'actualité internationale décryptée par le monde francophone. + News + + + + Le journal de la RTS + Trente minutes d'information pour avoir l'essentiel de l'actualité romande, nationale et internationale. + News + + + + L'actu + Le journal de TVMonaco. + News + + + TVG + + + + Catherine Frot, tous ces yeux qui vous regardent... + On la dit mystérieuse, mais aussi accessible. On découvre une actrice anti-diva et naturelle malgré son impressionnante carrière. Portrait de celle qui a été révélée au grand public dans. + Specials + Documentary + + + + Passe-moi les jumelles + L'artisan du tout petit + Hugo Lienhard est artisan maquettiste; après avoir travaillé sur des décors de théâtre et d'opéra, il réalise aujourd'hui d'impressionnantes reconstitutions archéologiques en miniature pour différents musées romands. + Travel + + + TVG + + + + Tangranimo + Les Tangranimos sont capables de s'assembler comme les pièces d'un Tangram pour créer toutes sortes de véhicules, de créatures et d'objets; avec ce pouvoir et une bonne dose d'imagination, Géo et ses amis peuvent relever tous les défis. + Children + Comedy + + + + Oum le dauphin blanc + Les aventures du dauphin blanc Oum et de ses jeunes amis. + + Séverine Morisot + Fernand Rauzéna + Gérard Rinaldi + + Animated + Children + + + TVG + + + + Le petit geek + Objets connectés + Des enfants analysent et tentent de comprendre le monde virtuel. + Computers & Technologies + Children + + + + Foot 2 rue + L'adieu au mondial + Entre les tags qui prolifèrent sur les murs de la ville et les Psikopats qui sèment la pagaille partout, le maire menace d'interdire le foot de rue. + Animated + Children + + + TVG + + + + C quoi l'info ? + Que ce soit dans les univers numériques ou à la télé, les jeunes ne sont pas là; aborder tous les sujets qui font l'actualité, en se mettant à la hauteur des 12-18 ans. + News + Talk Shows + + + + Plus belle la vie + Le quotidien des habitants d'un quartier de Marseille. + + Colette Renard + Cécilia Hornus + Sylvie Flepp + + Soaps + Drama + + + TVG + + + + Sur les murs + Paris 2 + Avant de les coller dans les rues, le Diamantaire taille, meule et peint ses oeuvres dans son atelier du 18e arrondissement de Paris; Richard découvre toutes les facettes de son travail avant de réaliser un diamant particulier en sa compagnie. + Documentary + Arts & Entertainment + + + + Sur le front + Cargos géants: comment voyagent nos achats? + Des conteneurs tombent à l'eau et l'on retrouve la marchandise sur nos plages; les porte-conteneurs sont devenus le fer de lance de la mondialisation: ils sont de plus en plus nombreux et toujours plus gros. + Environmental + Documentary + + + + Questions pour un champion + Samuel Étienne mesure nos connaissances générales avec ses multiples questions ralliant une vivacité et une bonne dose de personnalité. + Game Shows + Performing Arts + + + + Le journal de France 2 + Les derniers développements des dossiers internationaux dans une perspective européenne. + News + + + TVG + + + + Transat Jacques Vabre: Normandie Le Havre + Résumé quotidien de la 15e édition de la Transat Jacques Vabre-Normandie Le Havre. + Sports + Boating + + + TVG + + + + Un dimanche à la campagne + Dans une maison ouverte à l'inattendu et aux visites surprises, Frédéric Lopez reçoit chaque semaine trois personnalités le temps d'un weekend; un moment hors du temps, pour se rencontrer et pour parler d'amour, d'amitié, de la vie. + Talk Shows + + + TVPG + + + + Embrunman 2023 + Sports + Triathlon + + + + Le 23h + Le journal de 23 heures de franceinfo. On retrouve les grands reportages, les entretiens et les décryptages de la rédaction sur toute l'actualité française et internationale. + News + + + + Cinéma + Petite soeur + Lisa est une dramaturge allemande qui a abandonné ses ambitions artistiques pour suivre son mari en Suisse et se consacrer à sa famille. Lorsque son frère jumeau tombe malade, Lisa est renvoyée à ses aspirations profondes et son désir de créer. + + Nina Hoss + Lars Eidinger + Marthe Keller + + 2020 + Movies + Drama + + + + Cinéma + Petite soeur + Lisa est une dramaturge allemande qui a abandonné ses ambitions artistiques pour suivre son mari en Suisse et se consacrer à sa famille. Lorsque son frère jumeau tombe malade, Lisa est renvoyée à ses aspirations profondes et son désir de créer. + + Nina Hoss + Lars Eidinger + Marthe Keller + + 2020 + Movies + Drama + + + + Le 6h00 info + Le journal de 6h (heure de Paris) proposé par la rédaction de France Télévisions. + News + + + + Jeux d'influence + Guillaume Delpierre, maintenant ministre de l'Agriculture, est pris au piège de l'exercice du pouvoir. Tandis qu'un lobbyiste tente d'étouffer un scandale sanitaire, les mères des victimes s'unissent pour faire face au drame qui les touche. + + Alix Poisson + Laurent Stocker + Jean-Francois Sivadier + + Drama + + + TVG + + + + Jeux d'influence + Guillaume Delpierre, maintenant ministre de l'Agriculture, est pris au piège de l'exercice du pouvoir. Tandis qu'un lobbyiste tente d'étouffer un scandale sanitaire, les mères des victimes s'unissent pour faire face au drame qui les touche. + + Alix Poisson + Laurent Stocker + Jean-Francois Sivadier + + Drama + + + TVG + + + + Cinéma + Mobile Home + Ayant quitté son travail en ville et sa petite amie, Simon retourne dans son village natal. Il y retrouve Julien, son ami d'enfance, lequel vit avec son père en rémission d'une grave maladie. + + Arthur Dupont + Guillaume Gouix + Jean-Paul Bonnaire + + 2012 + Movies + + + + C'est humain + MC Gilles + On apprend qu'il existe des réflexes que nous ne connaissons pas, on découvre que le cerveau analyse en quelques secondes s'il trouve un visage fiable ou non et ce que la science a à nous révéler au sujet des conventums. + Talk Shows + + + TVG + + + + Un si grand soleil + Claire revient à Montpellier après dix-sept ans d'absence, afin de faire découvrir à Théo, son fils adolescent, sa ville natale. Quelques heures plus tard, elle est en garde à vue, accusée du meurtre d'un ami d'enfance. + + Mélanie Maudran + Gary Guénaire + Bertrand Farge + + Soaps + Drama + + + + Tv5Monde, le Journal Afrique + Toutes les nouvelles africaines. + News + + + + Le journal de Radio-Canada + Journal télévisé de la Radio Canada. + News + News Magazine + + + TVG + + + + Télématin + Réveils dynamiques garantis avec Thomas Sotto et Julia Vignali du lundi au jeudi, puis Damien Thévenot et Maya Lauqué du vendredi au dimanche. + News Magazine + Health + + + TVG + + + + Le Journal de la RTBF + Toute l'actualité internationale proposée et présentée par la rédaction de la RTBF. + News + + + TVG + + + + TV5MONDE, le journal + Toute l'actualité nationale et internationale proposée par la rédaction de TV5MONDE. + News + Political + + + TVG + + + + L'invité + Patrick Simonin rencontre les artistes, les écrivains, les acteurs et tous ceux qui font vibrer notre époque; un rendez-vous incontournable des vedettes et des personnalités qui font l'actualité. + News Magazine + + + TVG + + + + TV5MONDE, le journal + Toute l'actualité nationale et internationale proposée par la rédaction de TV5MONDE. + News + Political + + + TVG + + + + L'invité + Patrick Simonin rencontre les artistes, les écrivains, les acteurs et tous ceux qui font vibrer notre époque; un rendez-vous incontournable des vedettes et des personnalités qui font l'actualité. + News Magazine + + + TVG + + + + Télématin + Réveils dynamiques garantis avec Thomas Sotto et Julia Vignali du lundi au jeudi, puis Damien Thévenot et Maya Lauqué du vendredi au dimanche. + News Magazine + Health + + + TVG + + + + Le journal de France 2 + Les derniers développements des dossiers internationaux dans une perspective européenne. + News + + + TVG + + + + Le grand journal des territoires + Cyril Viguier et les éditorialistes de la presse quotidienne régionale décryptent l'actualité des territoires. + News Magazine + + + + Une brique dans le ventre + Magazine consacré à l'habitat et au confort chez soi. + Home + Arts & Entertainment + + + TVG + + + + Épicerie fine + Vars + Au coeur des montagnes des Hautes-Alpes, à Vars, Kévin Bonnabel élève des Limousines en axant sa pratique sur l'agroécologie; Éric François cultive du génépi, une plante emblématique des hautes altitudes. + Food + Arts & Entertainment + + + + Un si grand soleil + Claire revient à Montpellier après dix-sept ans d'absence, afin de faire découvrir à Théo, son fils adolescent, sa ville natale. Quelques heures plus tard, elle est en garde à vue, accusée du meurtre d'un ami d'enfance. + + Mélanie Maudran + Gary Guénaire + Bertrand Farge + + Soaps + Drama + + + + Slam + Trois candidats s'affrontent sur des grilles de mots fléchés qu'ils tentent de remplir en trouvant les réponses aux définitions proposées; mais pour avoir accès aux définitions, ils doivent d'abord répondre à des questions. + Game Shows + Performing Arts + + + + 64', le monde en français + Le nouveau rendez-vous de l'information et de la culture francophone. + News + News Magazine + + + + Le journal de l'économie + L'actualité économique et financière en France et dans le monde. + Business + + + + 64', le monde en français + Le nouveau rendez-vous de l'information et de la culture francophone. + News + News Magazine + + + + L'invité + Patrick Simonin rencontre les artistes, les écrivains, les acteurs et tous ceux qui font vibrer notre époque; un rendez-vous incontournable des vedettes et des personnalités qui font l'actualité. + News Magazine + + + TVG + + + + 64' l'essentiel + L'actualité internationale décryptée par le monde francophone. + News + + + + Le journal de la RTS + Trente minutes d'information pour avoir l'essentiel de l'actualité romande, nationale et internationale. + News + + + + L'actu + Le journal de TVMonaco. + News + + + TVG + + + + Une histoire du franc CFA + L'année 1960 amorce la fin des empires coloniaux sur le continent africain; la France disparait de la carte en théorie seulement; le franc CFA, monnaie rattachée au Trésor Français depuis ses origines, circule toujours. + Specials + Documentary + + + TVG + + + + Comment ça va le Nord? + Nouveaux modes de vie: adaptation et autosuffisance + Comme la nature, les humains doivent s'adapter aux changements climatiques, trouver de nouvelles façons de faire, de nouvelles solutions, notamment pour s'alimenter en nourriture et en électricité. + Documentary + + + + Tangranimo + Les Tangranimos sont capables de s'assembler comme les pièces d'un Tangram pour créer toutes sortes de véhicules, de créatures et d'objets; avec ce pouvoir et une bonne dose d'imagination, Géo et ses amis peuvent relever tous les défis. + Children + Comedy + + + + Oum le dauphin blanc + Les aventures du dauphin blanc Oum et de ses jeunes amis. + + Séverine Morisot + Fernand Rauzéna + Gérard Rinaldi + + Animated + Children + + + TVG + + + + Le petit geek + Des enfants analysent et tentent de comprendre le monde virtuel. + Computers & Technologies + Children + + + + Foot 2 rue + Rendez-vous manqué + Motivés de lancer la première coupe du monde de soccer de rue, Tag et ses amis combattent les difficultés de leur monde à travers leur passion pour le soccer. + Animated + Children + + + TVG + + + + C quoi l'info ? + Que ce soit dans les univers numériques ou à la télé, les jeunes ne sont pas là; aborder tous les sujets qui font l'actualité, en se mettant à la hauteur des 12-18 ans. + News + Talk Shows + + + + Plus belle la vie + Le quotidien des habitants d'un quartier de Marseille. + + Colette Renard + Cécilia Hornus + Sylvie Flepp + + Soaps + Drama + + + TVG + + + + #Helvetica + Rencontres singulières avec celles et ceux qui portent la Suisse au sommet, sur le plan économique et plus ponctuellement sur celui de la politique, de la science ou des idées; l'opportunité d'aller plus loin dans la réflexion et dans l'échange. + Talk Shows + + + + Temps présent + On traite de l'actualité au sens large; avec des enquêtes pointues et un regard critique, on éclaire les crises et les conflits de notre époque, dénonce les dysfonctionnements de la société. + News Magazine + + + TVG + + + + Questions pour un champion + Samuel Étienne mesure nos connaissances générales avec ses multiples questions ralliant une vivacité et une bonne dose de personnalité. + Game Shows + Performing Arts + + + + Le journal de France 2 + Les derniers développements des dossiers internationaux dans une perspective européenne. + News + + + TVG + + + + Transat Jacques Vabre: Normandie Le Havre + Résumé quotidien de la 15e édition de la Transat Jacques Vabre-Normandie Le Havre. + Sports + Boating + + + TVG + + + + Cinéma + Nuit d'été en ville + Deux jeunes gens, qui se connaissent depuis quelques heures, font l'amour et se livrent aux confidences pendant une nuit. + + Marie Trintignant + Jean-Hugues Anglade + + 1990 + Movies + Comedy + Drama + + + 2 + + + + Cinéma + L'art de la guerre des sexes + Au cours d'une soirée entre amis, deux couples en viennent tour à tour à sortir les cadavres du placard. + + Valtine Houenou + Olivier Kissita + Coralie Lavergne + + 2022 + Movies + Comedy + + + TVG + + + + Le 23h + Le journal de 23 heures de franceinfo. On retrouve les grands reportages, les entretiens et les décryptages de la rédaction sur toute l'actualité française et internationale. + News + + + + Wara + La sorcière + Poussé par ses étudiants, Moutari accepte d'être l'avocat de Mariam Shugger. De son côté, Ganka prend ses fonctions de maire et découvre des anomalies dans les dossiers de la ville. Il accepte de rencontrer Bintou, la journaliste blogueuse. + + Issaka Sawadogo + Maimouna N'Diaye + Souleymane Seye Ndiaye + + Drama + Political + + + + Wara + Le voyage + Aïcha part sur les traces de son vrai père, Papa Salim, réfugié depuis plusieurs années comme ermite dans la réserve forestière de Kirtachi. La démission de Ganka relance les élections municipales. + + Issaka Sawadogo + Maimouna N'Diaye + Souleymane Seye Ndiaye + + Drama + Political + + + + Wara + Le voyage + Aïcha part sur les traces de son vrai père, Papa Salim, réfugié depuis plusieurs années comme ermite dans la réserve forestière de Kirtachi. La démission de Ganka relance les élections municipales. + + Issaka Sawadogo + Maimouna N'Diaye + Souleymane Seye Ndiaye + + Drama + Political + + + + Le 6h00 info + Le journal de 6h (heure de Paris) proposé par la rédaction de France Télévisions. + News + + + + Dans les yeux d'Olivier + Olivier Delacroix part à la rencontre d'hommes et de femmes dont le destin a basculé. + News + + + + Diane de Poitiers + La presque reine + En pleine Renaissance, une femme chevauche en tête dans la course aux honneurs: elle s'appelle Diane de Poitiers, chasseresse émérite dont la beauté inaltérable alimente rumeurs et légendes de son vivant et bien après sa mort. + + Isabelle Adjani + Hugo Becker + Samuel Labarthe + + Miniseries + History + + + + Écho-logis + La CODHA, Genève (Suisse) + La CODHA, un organisme à but non lucratif, rassemble des personnes à la recherche d'un habitat durable et bon marché. Éric Rossiaud, son créateur, se bat depuis des années avec son équipe pour rendre ce rêve accessible à tous. + Environmental + Home + + + TVG + + + + Un si grand soleil + Claire revient à Montpellier après dix-sept ans d'absence, afin de faire découvrir à Théo, son fils adolescent, sa ville natale. Quelques heures plus tard, elle est en garde à vue, accusée du meurtre d'un ami d'enfance. + + Mélanie Maudran + Gary Guénaire + Bertrand Farge + + Soaps + Drama + + + + Tv5Monde, le Journal Afrique + Toutes les nouvelles africaines. + News + + + + Le journal de Radio-Canada + Journal télévisé de la Radio Canada. + News + News Magazine + + + TVG + + + + Télématin + Réveils dynamiques garantis avec Thomas Sotto et Julia Vignali du lundi au jeudi, puis Damien Thévenot et Maya Lauqué du vendredi au dimanche. + News Magazine + Health + + + TVG + + + + Le Journal de la RTBF + Toute l'actualité internationale proposée et présentée par la rédaction de la RTBF. + News + + + TVG + + + + TV5MONDE, le journal + Toute l'actualité nationale et internationale proposée par la rédaction de TV5MONDE. + News + Political + + + TVG + + + + L'invité + Patrick Simonin rencontre les artistes, les écrivains, les acteurs et tous ceux qui font vibrer notre époque; un rendez-vous incontournable des vedettes et des personnalités qui font l'actualité. + News Magazine + + + TVG + + + + TV5MONDE, le journal + Toute l'actualité nationale et internationale proposée par la rédaction de TV5MONDE. + News + Political + + + TVG + + + + L'invité + Patrick Simonin rencontre les artistes, les écrivains, les acteurs et tous ceux qui font vibrer notre époque; un rendez-vous incontournable des vedettes et des personnalités qui font l'actualité. + News Magazine + + + TVG + + + + Télématin + Réveils dynamiques garantis avec Thomas Sotto et Julia Vignali du lundi au jeudi, puis Damien Thévenot et Maya Lauqué du vendredi au dimanche. + News Magazine + Health + + + TVG + + + + Le journal de France 2 + Les derniers développements des dossiers internationaux dans une perspective européenne. + News + + + TVG + + + + Géopolitis + Approfondissement, décryptage, neutralité, on analyse l'actualité internationale avec rigueur et avec la volonté constante de donner à comprendre un monde de plus en plus complexe et conflictuel. + News Magazine + Political + + + TVG + + + + Paname + Rue du Commerce + Depuis sa création en 1837, la bien nommée rue du Commerce, dans le 15e arrondissement, est l'une des artères les plus commerçantes de Paris; la plupart des chaînes de magasins y ont une enseigne. + Travel + Performing Arts + + + + 5 chefs dans ma cuisine + Compote canneberges au sirop d'érable; Bûche de Noël, chaï et agrumes + Pour souligner le temps des Fêtes, plein feu sur une tradition d'ici: la bûche de Noël; le réputé Patrice Demers, de Patrice Pâtissier, nous guide dans la confection d'une bûche aux épices chaï, agrumes et crème chantilly au chocolat blanc. + Food + + + TVG + + + + Un si grand soleil + Claire revient à Montpellier après dix-sept ans d'absence, afin de faire découvrir à Théo, son fils adolescent, sa ville natale. Quelques heures plus tard, elle est en garde à vue, accusée du meurtre d'un ami d'enfance. + + Mélanie Maudran + Gary Guénaire + Bertrand Farge + + Soaps + Drama + + + + Slam + Trois candidats s'affrontent sur des grilles de mots fléchés qu'ils tentent de remplir en trouvant les réponses aux définitions proposées; mais pour avoir accès aux définitions, ils doivent d'abord répondre à des questions. + Game Shows + Performing Arts + + + + 64', le monde en français + Le nouveau rendez-vous de l'information et de la culture francophone. + News + News Magazine + + + + Le journal de l'économie + L'actualité économique et financière en France et dans le monde. + Business + + + + 64', le monde en français + Le nouveau rendez-vous de l'information et de la culture francophone. + News + News Magazine + + + + L'invité + Patrick Simonin rencontre les artistes, les écrivains, les acteurs et tous ceux qui font vibrer notre époque; un rendez-vous incontournable des vedettes et des personnalités qui font l'actualité. + News Magazine + + + TVG + + + + 64' l'essentiel + L'actualité internationale décryptée par le monde francophone. + News + + + + Le journal de la RTS + Trente minutes d'information pour avoir l'essentiel de l'actualité romande, nationale et internationale. + News + + + + L'actu + Le journal de TVMonaco. + News + + + TVG + + + + Maisonneuve + Diverses générations se rencontrent pour discuter de grands enjeux, exposant des points de vue aux antipodes; la question de vivre-ensemble en tenant compte des différences de l'autre se pose. + Documentary + + + + Maisonneuve + L'attentat à la mosquée de Québec en 2017 ravive le débat sur la radicalisation; la communauté de Maisonneuve s'interroge sur la responsabilité individuelle et sociétale dans ce contexte tendu. + Documentary + + + + Sérieux? + Le sort de notre planète Terre est au coeur de nos préoccupations. Au quotidien, on se demande quels gestes ont un impact réel sur l'environnement, quels sacrifices valent la peine d'être faits et quelles résolutions valent la peine d'être tenues. + Environmental + Talk Shows + + + TVG + + + + Tangranimo + Les Tangranimos sont capables de s'assembler comme les pièces d'un Tangram pour créer toutes sortes de véhicules, de créatures et d'objets; avec ce pouvoir et une bonne dose d'imagination, Géo et ses amis peuvent relever tous les défis. + Children + Comedy + + + + Oum le dauphin blanc + Les aventures du dauphin blanc Oum et de ses jeunes amis. + + Séverine Morisot + Fernand Rauzéna + Gérard Rinaldi + + Animated + Children + + + TVG + + + + Le petit geek + Robots + Des enfants analysent et tentent de comprendre le monde virtuel. + Computers & Technologies + Children + + + + Foot 2 rue + 13/20 + Consigné car il n'a pas atteint 14 de moyenne, Jérémy utilise le passage souterrain pour participer à son match avec le FC Golmetti. + Animated + Children + + + TVG + + + + C quoi l'info ? + Que ce soit dans les univers numériques ou à la télé, les jeunes ne sont pas là; aborder tous les sujets qui font l'actualité, en se mettant à la hauteur des 12-18 ans. + News + Talk Shows + + + + Plus belle la vie + Le quotidien des habitants d'un quartier de Marseille. + + Colette Renard + Cécilia Hornus + Sylvie Flepp + + Soaps + Drama + + + TVG + + + + Le grand journal des territoires + Cyril Viguier et les éditorialistes de la presse quotidienne régionale décryptent l'actualité des territoires. + News Magazine + + + + Le Point + Avec son équipe de correspondants répartie aux quatre coins du monde, on offre un contact direct avec l'événement, où qu'il se produise. + News Magazine + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + TVB + Regular + + + + iCarly + iFind Spencer Friends + The gang tries to find Spencer friends his own age. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iBust a Thief + The gang tries to track down a thief when Sam's laptop is stolen; Spencer can only visit his favorite arcade if he is accompanied by a child. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iGoodbye + Carly wants her father to escort her to an important dance; Sam fixes a motorcycle; Freddie gets a new phone. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iLike Jake + The object of Carly's crush is to play the guitar on her show. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iWant More Viewers + Carly and Sam compete with Freddie and Spencer to create the best plan to draw more viewers to the webcast. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iNevel + Carly risks getting a bad review when she refuses to date the boy who runs the popular Web site that rates webcasts. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iWanna Stay With Spencer + Carly's grandfather thinks Spencer is too irresponsible to be her guardian. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iSpy a Mean Teacher + Carly decides to do a webcast showing what mean teachers do when they are not at school. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iWant a World Record + Carly, Sam and Freddie try to break the world record for longest continuous webcast. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iWill Date Freddie + Valerie asks Freddie out on a date, which goes so well that Freddie begins filming a web show for Valerie; Freddie is torn between his friends and new girlfriend, Valerie. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iHeart Art + Carly invites Spencer's art hero, Harry Joyner, to take a look at Spencer's work. When Harry calls Spencer's work amateurish, Spencer feels like his life has lost its purpose. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iAm Your Biggest Fan + Carly's biggest fan comes to a live broadcast of the show; Spencer discovers that his new band allows him to play the drums so it can practice in his apartment. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iHatch Chicks + Carly and Sam decide to hatch chicks for a science project. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iDon't Want to Fight + Carly makes Sam a shirt to commemorate the anniversary of their friendship; Spencer builds a fish-feeding machine. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iDream of Dance + Carly, Sam and Freddie fall asleep while reviewing dance clips from their fans. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iRue the Day + Carly, Sam and Freddie must foil Nevel's plot to hack iCarly; Plain White T's perform. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iGot Detention + When Sam gets detention on the night of the iCarly 50th Web show spectacular, Carly and Freddie do their best to get detention as well. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iPromote Tech Foots + Carly, Sam, and Freddie are invited to Daka headquarters where they are offered a large sum of money to endorse Daka's new shoe, the Tech-Foot. However, the shoes are terrible. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iPromise Not to Tell + When Carly gets a B on a history paper, Sam changes Carly's grade to an A. Carly and Freddie hatch a plan to break back into the computer system and restore their real grades. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iCarly Saves TV + The gang's excitement about being on television subsides after the network makes major changes to the show. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iHate Sam's Boyfriend + Sam and her new boyfriend are inseparable; Spencer tries to create a clay-animation movie. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iBloop + The cast introduces bloopers and outtakes from the series. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iPilot + When a teacher puts Carly in charge of the school's talent-show auditions, she and her friend Sam turn the audition process into a show. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iStakeout + Two detectives decide to use Carly and Spencer's loft for a stakeout; Freddie loses a bet with Sam. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iMight Switch Schools + Sam and Freddie are upset when Carly is offered a full scholarship to an elite private school; Spencer creates a miniature golf course. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iFence + Spencer gets Freddie involved in a fencing match; Carly must plan a dinner for some relatives. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iWin a Date + The gang tries to help a shy friend get a date by making him a contestant in a dating segment on the Web show. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iHave a Love Sick Teacher + Carly's teacher breaks up with her boyfriend and becomes interested in Spencer. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iGo to Japan + Carly, Sam and Freddie travel to Japan after the show is nominated for a prestigious iWeb award. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iSaw Him First + After Freddie invites his friend Shane over, Carly and Sam compete to see who he kisses first. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iStage an Intervention + Carly must intervene when Spencer becomes addicted to a video game; Sam tricks Freddie into believing that he has bad luck. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iOwe You + Freddie insults Sam when he accuses her of not paying back the money she borrowed; Spencer helps a little girl in order to impress her single mother. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iHurt Lewbert + When Lewbert is injured during a sketch, the gang tries to nurse him back to health; Spencer angers truckers. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iPie + When Carly, Sam, and Spencer bring Freddie to their favourite pie shop, they learn that its proprietor has passed away. Worse still, it appears that his recipes may be lost forever. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iKiss + Sam overhears Freddie confess that he has never been kissed and exposes his secret on iCarly. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iGive Away a Car + The iCarly gang runs a contest for a new car after a local dealership donates the prize; Spencer is preoccupied with his purchase of a movie prop. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iMeet Fred + While on the air, Freddie reveals that he is not a fan of an internet sensation; Spencer lets a magic meatball make his decisions for him. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iLook Alike + Carly, Sam and Freddie sneak out to go to a mixed martial arts fight; Spencer builds a gigantic version of Newton Balls. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iPilot + When a teacher puts Carly in charge of the school's talent-show auditions, she and her friend Sam turn the audition process into a show. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iGo Nuclear + Carly, Sam and Freddie get a school assignment to create an original project that benefits the environment. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iRocked the Vote + A singer wins a television contest after an iCarly webcast causes a huge spike in votes. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iMake Sam Girlier + Carly tries to help Sam when she admits that she has a crush on a boy at school; Spencer is convinced that a girl likes him because of his tuxedo. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iLike Jake + The object of Carly's crush is to play the guitar on her show. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iWant More Viewers + Carly and Sam compete with Freddie and Spencer to create the best plan to draw more viewers to the webcast. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iReunite With Missy + When Carly's old friend Missy returns to Seattle, Sam believes that Missy is trying to replace her as Carly's best friend; Spencer gets trapped in the basement storage area. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iWant My Website Back + When Carly, Sam and Freddie lose the iCarly URL to Nevel, he demands a kiss from Carly for its return; Spencer accidentally orders 200 pillows. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iMust Have Locker 239 + Sam and Freddie are forced to share the same locker after winning a contest at school; Carly asks Spencer to give her art lessons. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iNevel + Carly risks getting a bad review when she refuses to date the boy who runs the popular Web site that rates webcasts. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iFight Shelby Marx + Carly jokingly challenges a martial arts champion to a fight during her webcast and finds herself in the ring. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iCarly Awards + Carly, Sam and Freddie present iCarly awards for best user-generated content; Spencer enlists the help of European swimsuit models to make statuettes. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iTwins + Freddie tries to prove that Sam's twin sister is just Sam in disguise; Carly tutors Spencer's nemesis. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iTake on Dingo + Carly and her friends travel to Los Angeles to confront the writers of a show who are copying their material. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iThink They Kissed + Carly confronts Sam and Freddie when Sam accidentally reveals that she and Freddie shared a secret kiss; Spencer teaches an art class in a prison. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iCook + Carly, Sam and Freddie defeat a famous chef in a cooking challenge; Spencer has a vision of the future. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iHave My Principals + Principal Franklin is fired after appearing as a guest on iCarly; Spencer hires a rodeo star to teach him how to ride a mechanical bull. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iSpeed Date + Carly, Sam and Freddie must hold a speed-dating session when they are overwhelmed with boys who want to take Carly to the upcoming dance; Spencer follows a bizarre workout regimen. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iFix a Pop Star + Carly, Sam and Freddie agree to help a former pop star make a music video; Spencer discovers that his date his Gibby's mother. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iSaved Your Life + Carly falls in love with Freddie after he saves her life; Sam and Spencer compete against each other in a paintball game. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iQuit iCarly + After agreeing to help a pair of comedians make a video, Carly and Sam must chose sides when the comics begin to fight; Spencer becomes obsessed with winning a boat. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iQuit iCarly + After agreeing to help a pair of comedians make a video, Carly and Sam must chose sides when the comics begin to fight; Spencer becomes obsessed with winning a boat. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iEnrage Gibby + Gibby challenges Freddie to a fight; the local paper incorrectly reports Spencer's death. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iFind Lewbert's Lost Love + Carly, Sam and Freddie are shocked to discover that Lewbert was once engaged to a beautiful woman; Mrs. Benson recruits Spencer for the building watch group. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iWas a Pageant Girl + Sam reveals that she used to compete in beauty pageants as a young girl; Spencer convinces Freddie to go on a double date. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iWon't Cancel the Show + After Sam ends up in jail, Carly and Freddie vow not to cancel the web show. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iSpace Out + An eccentric billionaire asks the iCarly gang to perform a web show from outer space; Spencer is visited by a mysterious little girl. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iBelieve in Bigfoot + Carly convinces her friends to travel upstate in search of Bigfoot. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iMove Out + Freddie decides to move out after his mother embarrasses him; Carly, Sam and Freddie start a pet photography business. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iBeat the Heat + Spencer comes to the rescue when a heat wave hits Seattle and the power goes out. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iBloop + The cast introduces bloopers and outtakes from the series. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iGot a Hot Room + Spencer burns down Carly's bedroom while trying to surprise her on her birthday. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iDo + An iCarly fan proposes to his girlfriend live on the web show; Carly must come to the rescue when a bride gets cold feet. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iSell Penny Tees + When the gang goes into business selling penny T-shirts, Sam recruits children in fourth grade to help make them. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iGet Pranky + After Carly recruits Spencer to help her prank Sam and Freddie, Spencer can not stop pulling pranks. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iSam's Mom + Sam moves in with Carly after fighting with her mother; Carly tricks Sam and Pam into meeting at a therpist's office. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iPity the Nevel + Nevel begs the iCarly gang for help when an Internet video causes him to be hated by everyone. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iHire an Idiot + Carly and Sam hire a cute boy as an intern for the web series. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + iCarly + iOMG + Carly and Freddie suspect that Sam might have a crush on iCarly's new intern. + + Miranda Cosgrove + Jennette McCurdy + Nathan Kress + + Sitcom + Children + + + TVG + + + + Henry Danger + Indestructible Henry + When Kid Danger is almost badly injured on a mission, Henry decides to go through the Densitizer to become indestructible like Captain Man; Henry gets an unexpected side effect from going through the Densitizer. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Kid Grounded + Henry is grounded after he is caught sneaking out at night; while Piper drives Henry crazy at home, Charlotte steps into the sidekick role. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Super Volcano + Henry and Ray think the world is ending when a dormant super volcano under Swellview becomes active; Piper is convinced that she has gluten intolerance. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Meet Cute Crush + Henry and Ray try to help Piper get to know a new boy she likes from school. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + The Secret Gets Out + Henry's life as Kid Danger is threatened when Charlotte grows suspicious about the secrets he has been keeping. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Opposite Universe + Henry and Charlotte travel to an opposite universe where evil counterparts of Ray and Schwoz want to destroy Piper. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Jasper Danger + When Jasper dresses as Kid Danger for Halloween, a case of mistaken identity causes the real Kid Danger and Captain Man to come to his rescue. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Danger Things + When Piper is taken by a creature from another dimension, Captain Man and Kid Danger must rescue her from the evil science corporation that opened the portal. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Massage Chair + When Captain Man shows up with a cool new massage chair, Henry, Charlotte and Jasper compete in a series of physical and mental challenges to see who wins the chair. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Henry's Birthday + While trying to celebrate his birthday, Henry keeps getting interrupted by crimes going on in Swellview. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Captain Jerk + Captain Man tries to boost his image by holding a contest where three winners get a tour of his secret lair. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + The Great Cactus Con + Jasper gets the chance to take his crush to Cactus Con, but when a mysterious villain gets involved in the convention, the entire gang is forced into action. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Henry & the Woodpeckers + When Piper's basketball coach quits, Henry becomes the coach of Piper's team; Henry is challenged by the League Board and its unorthodox rules. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Captain Drex + Captain Man's old sidekick and nemesis, Drex, returns from the past with an army of cavemen to finish off Captain Man once and for all; Kid Danger may be the only one who can save Captain Man. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Escape Room + Kid Danger and Captain Man enter an escape room by a factory owner with a. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Henry's Frittle Problem + When Henry's dad gets an offer for a new job in Bordertown, Henry and Ray go under cover to try and stop him from getting the job and prevent Henry from having to move. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Toon in for Danger + Henry and Ray get a copy of the new Kid Danger and Captain Man cartoon and see that it's horrible; they must hurry to fix the cartoon before the big premiere party. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Grand Theft Otto + When Piper's school parrot, Otto, starts to repeat that Henry is Kid Danger, Henry and Jasper have to stall until Ray, Charlotte and Schwoz can find a way to fix things. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Captain Man-kini + When a new internet celebrity causes havoc in Swellview, Captain Man has to swap bodies with Frankini to infiltrate his secret lair. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Birthday Girl Down + Henry is not invited to a birthday party because he is accused of throwing the birthday girl off of a roof; Captain Man agrees to help Henry clear his name. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Captain Mom + When labor pains leave Captain Man helpless, Kid Danger and Piper step up to take on a couple of slick grease thieves. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Henry the Man-Beast + Henry is exposed to a strange device in the Man Cave which causes problems for him while he is on a date. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Twin Henrys + Henry has a shape-shifting android fill in at a family dinner so that he can watch an MMA fight with Charlotte and Ray. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Substitute Teacher + Charlotte and Henry think a new student is suspicious; Captain Man goes under cover as a substitute teacher to learn about the new student. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Mo' Danger, Mo' Problems + As Henry tries to adjust to his new role as Kid Danger, he struggles to balance his schedule between crime-fighting, school and family. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Whistlin' Susie + After activating an atomic bomb in the Man Cave, Ray and Henry decide to drive it out into the Swellview desert in order to save their city. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Text, Lies & Video + When a video of Henry and Ray transforming into Kid Danger and Captain Man gets out, Henry must go to great lengths to retrieve it and protect his secret identity. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Broken Armed and Dangerous + When Kid Danger publicly breaks his arm, Henry and the gang have to find a way to keep his secret safe. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Stuck in Two Holes + Charlotte and Jasper must come to the rescue when Captain Man and Kid Danger are each stuck in a hole. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + The Fate of Danger: Part II + Kid Danger and Captain Man battle Drex on top of a blimp to stop him from erasing Swellview's memory of Captain Man; when the blimp aims straight for the Swellview Baby Hospital, one hero must stay behind to save the day. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Dodging Danger + After Henry uses his new power to compete in a Dodge-A-Leen tournament, Ray, Schwoz and Charlotte go under cover to teach Henry a lesson. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Captain Man: On Vacation + Henry and Charlotte are in charge of protecting Swellview while Ray is out of town at his cousin's wedding. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Theranos Boot + Henry and the other kids destroy Ray's prized movie prop, The Theranos Boot; to replace it, Henry and Jasper travel to an alternate universe Man Cave using Bill Evil's interdimensional transporter and steal their Theranos Boot before Ray finds out. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + License to Fly + Ray agrees to let Henry fly his helicopter, but Ray starts to act like a nervous parent; Charlotte, Jasper and Piper find a cotton candy machine. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Balloons of Doom + When Dr. Minyak takes the Man Fans hostage, Captain Man and Kid Danger have to find a way to rescue them without Dr. Minyak seeing them move. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Holey Moley + The gang thinks its has found the perfect tunnels to access all of Swellview, until it is confronted by the tunnels' original inhabitants. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + A Fiñata Full of Death Bugs + When a dangerous piñata winds up at a child's birthday party, Kid Danger and Captain Man must go under cover to step in before it is too late. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Jasper's Real Girlfriend + When Jasper's summer camp girlfriend comes to town, she quickly grows jealous thinking that Charlotte is in love with Jasper. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Up the Stairs! + Henry and Ray's friendship is put to the ultimate test when they have to endure the half-mile trek up the Man Cave stairs in order to make a surprise meal by a celebrity chef in Junk-N-Stuff. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + I Know Your Secret + When Henry receives a series of mysterious notes from someone, he begins to worry that the sender may know his secret identity. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Mr. Nice Guy + A vigilante in a smiley-face mask punishes Swellviewians for being rude in public; Kid Danger and Captain Man's investigation leads them to the TV set of Mr. Wallabee, a local TV celebrity who hosts a show for children. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Too Much Game + Henry believes that he was replaced on the basketball team by an older boy; Captain Man must overcome old grudges to get help from a friend. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + The Whole Bilsky Family + Henry's nerves are tested when Piper invites her new boyfriend and his family over for dinner. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + The Rock Box Dump + When a report comes out that declares Kid Danger's super power an illness, Kid Danger has to convince Swellview that it is a huge misunderstanding. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Gas or Fail + When Captain Man finds himself trapped underground, Henry must devise a way to sneak out of his school's standardized testing to save Ray. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Rumblr + Sick of fighting the same old villains, Captain Man makes a profile on a matchmaking app for heroes and villains; Kid Danger agrees to do the same, and two of them set up a double-fight to square off with some new villains. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + JAM Session + When Ray hears that Piper is going to Junior Anger Management to work on her anger issues, he makes a wager with Henry that he can make her lose her temper before the night ends. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Captain Drex + Captain Man's old sidekick and nemesis, Drex, returns from the past with an army of cavemen to finish off Captain Man once and for all; Kid Danger may be the only one who can save Captain Man. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Cave the Date + Henry and the gang set up a secret underground restaurant in the Man Cave for Charlotte's private dinner with music superstar Jack Swagger; when word gets out that Jack Swagger is in town, some unwanted guests crash the party. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Secret Beef + Henry receives an invitation to Swellview's most exclusive restaurant, and decides to bring his boss, Ray. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Double Date Danger + When Miss Shapen's niece comes into town and chooses Jasper over Henry, he discovers that she has much bigger plans in the works. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Captain Drex + Captain Man's old sidekick and nemesis, Drex, returns from the past with an army of cavemen to finish off Captain Man once and for all; Kid Danger may be the only one who can save Captain Man. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + EnvyGram Wall + Captain Man and Kid Danger guard Swellview's newest attraction, the EnvyGram Wall; when Captain Man destroys the wall while trying to eliminate a small bird, Kid Danger and Captain Man have to figure out a way to replace it. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Henry Danger: The Musical + Frankini puts a musical curse on Swellview, and Kid Danger and Captain Man must find a way to save everyone; when Captain Man cracks under the pressure, it's up to Kid Danger to remind him how to be a hero again. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Scream Machine + When Charlotte's invention for a TV show is accidentally destroyed and then rebuilt, Charlotte worries that the attention she gets could expose Kid Danger and Captain Man's secret identity. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + My Dinner With Bigfoot + When the gang befriends Bigfoot in the woods, Kid Danger and Captain Man try to help get rid of a pesky hunter that's been trying to capture him. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Charlotte Gets Ghosted + Schwoz invents a vacuum to help Henry clean his house, but it accidentally sucks Charlotte inside; when Henry's family hears Charlotte and thinks the vacuum is haunted, Ray must distract them while Henry finds a way to get her out. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + I Dream of Danger + When Charlotte has a dream where she nearly kisses Kid Danger, she actively tries to avoid Henry for fear of the dream coming true. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Sick & Wired + Thinking that Henry is not telling the truth about being sick, Ray plants cameras and microphones in Henry's house to catch him in a lie. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Mouth Candy + When Jasper is falsely accused of a burglary and sent to jail, Henry and Ray must find a way to set him free. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + The Beginning of the End + Kid Danger reveals to Captain Man that he doesn't want to be stuck in Swellview and be his sidekick forever; to make matters worse, Kid Danger is recruited by another town to be their hero. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + A Tale of Two Pipers + Henry gets an unexpected visitor claiming to be from the future; when a boy-robot killing machine steps onto the scene, the gang must find a way to save everyone from an apocalyptic future. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + The Space Rock + Trouble follows Henry to his home when a rock from outer space turns out to be a an egg with an alien creature inside of it. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Caved In + Henry, Charlotte and Ray are trapped inside when Jasper accidentally triggers the emergency lockdown mode for Junk-N-Stuff and the Man Cave. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + The Trouble With Frittles + Captain Man and Kid Danger find themselves in the middle of a debate about Swellview's favorite snack. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Invisible Brad + Captain Man's friend, who was accidentally turned invisible, shows up for a visit, but quickly overstays his welcome. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Swellview's Got Talent + After discovering contestants on Swellview's Got Talent are losing consciousness, Captain Man and Kid Danger enlist the help of Charlotte and Schwoz in order to find out what is causing the mischief. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Elevator Kiss + Kid Danger rescues Bianca and they share a kiss; Henry is upset when he realizes that Bianca kissed Kid Danger. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Flabber Gassed + After acting too confident before a fight, Kid Danger and Captain Man are sprayed with Flabber Gas making them powerless to defeat a new villain in Swellview; Schwoz puts the heroes in Exo-Suits which Charlotte and Jasper control. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Spoiler Alert + Henry and Ray must deal with an annoying new villain called the Spoiler; Piper tries to join a popular Captain Man fan club. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + The Secret Gets Out + Henry's life as Kid Danger is threatened when Charlotte grows suspicious about the secrets he has been keeping. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Ox Pox + When Piper gets a mysterious illness, Captain Man must travel back in time to the 1700s to find the only cure. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Man of the House + After Henry's mother's purse is stolen, Captain Man decides he must move in with Henry's family in order to protect them. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Car Trek + Charlotte's birthday road trip to see the Boo Man Group perform gets sidetracked by a Captain Man and Kid Danger emergency. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Brawl in the Hall + When Charlotte is challenged to a fight at school, Captain Man and Kid Danger step in to try and help Charlotte defend herself. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Substitute Teacher + Charlotte and Henry think a new student is suspicious; Captain Man goes under cover as a substitute teacher to learn about the new student. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Remember the Crimes + Henry tells Piper about all the adventures she missed while he was off fighting alongside Captain Man as Kid Danger; Piper, Ray, Jasper, Charlotte and Schwoz then join in and share a few memories of their own. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Love Muffin + Henry and Charlotte discover things are not what they seem when Captain Man suddenly announces his plans to marry. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Game of Phones + When a young girl chains herself outside of Junk-N-Stuff, Kid Danger and Captain Man are forced to help find her beloved phone; while on a stakeout, they unexpectedly run across some familiar faces with a devious plan. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Visible Brad + Captain Man and Kid Danger need a little bit of magic and some help from an old friend in order to catch a thief. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Dream Busters + A villain's dream beam traps Henry in a dream state from which only Charlotte can rescue him. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Budget Cuts + When the Vice Mayor cuts Captain Man and Kid Danger's budget to build a high-speed railway in Swellview, the duo must figure out creative ways to save money. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Story Tank + Big steaks are on the line when Henry claims he can't be scared; Schwoz uses a machine that allows Henry to virtually experience the spooky stories that everyone in the Man Cave tells him in an attempt to prove Henry wrong. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + The Beat Goes On + Henry finds himself in danger when he realizes Dr. Minyak has transformed Charlotte into a super strong being set to capture Kid Danger and Captain Man. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Knight & Danger + When the Knight Squad's archenemy, Ryker, is unleashed on Swellview, Kid Danger and Captain Man take him down to Burger Castle only to be tricked into joining forces with the villain. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + The Time Jerker + When Kid Danger and Captain Man battle the Time Jerker, Kid Danger accidentally falls into the Time Jerker's time machine and relives the same day over again. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Rubber Duck + When Ray accidentally destroys Henry's dad's prized remote control car, they throw a manicure/pedicure party to raise money to fix it. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Secret Room + Captain Man reveals a. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Toddler Invasion + When the Toddler takes control of the Man Cave, Charlotte and Jasper have to find a way to sneak in and free Kid Danger and Captain Man. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Henry's Jelly + After Jasper is lauded for being a local hero, Henry becomes jealous that Kid Danger is the one getting all the thanks. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Grave Danger + When Ray starts behaving strangely, Henry and Charlotte investigate and are surprised to discover the cause of his behavior. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Tears of the Jolly Beetle + When Captain Man loses his powers of invulnerability and becomes too afraid to fight crime, Kid Danger must keep Swellview safe. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Let's Make a Steal + In an attempt to investigate a string of robberies, Captain Man gets Henry a spot on his favorite game show. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + The Bucket Trap + Henry and Charlotte want to tell Jasper that Henry is really Kid Danger, so they decide to give him a test secret to prove that he is ready. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Green Fingers + After Schwoz creates a disease that accidentally effects Charlotte, Henry, his family, and even Ray, he quarantines them in Henry's house in order to find a cure. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Diamonds Are for Heather + Kid Danger and Captain Man are called to the Swellview Museum of Stools and Jewels to prevent the rare Neal Diamond from being stolen. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Love Bytes + Things get a little buggy when Schwoz installs a new operating system on the Man Cave computer designed to detect and eliminate threats all over Swellview. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Double-O Danger + Kid Danger and Captain Man attempt to capture mob boss Rob Moss by infiltrating his daughter's Sweet 16 birthday party. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Mo' Danger, Mo' Problems + As Henry tries to adjust to his new role as Kid Danger, he struggles to balance his schedule between crime-fighting, school and family. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Spelling Bee Hard + Dr. Minyak challenges Captain Man to a spelling bee. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + The Fate of Danger: Part I + Kid Danger and his friends try to figure out how to get Captain Man back from the past, while Drex furthers his scheme to erase Swellview's memory of Captain Man forever. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Saturday Night Lies + When Ray runs into an ex-girlfriend, he tries to impress her by pretending that Henry, Charlotte and Jasper are his children. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Danger & Thunder + Captain Man, Kid Danger and Phoebe Thunderman infiltrate a secret villain meeting in Swellview; Phoebe discovers an unexpected attendee at the meeting. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Birthday Girl Down + Henry is not invited to a birthday party because he is accused of throwing the birthday girl off of a roof; Captain Man agrees to help Henry clear his name. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Cave the Date + Henry and the gang set up a secret underground restaurant in the Man Cave for Charlotte's private dinner with music superstar Jack Swagger; when word gets out that Jack Swagger is in town, some unwanted guests crash the party. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Secret Beef + Henry receives an invitation to Swellview's most exclusive restaurant, and decides to bring his boss, Ray. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Double Date Danger + When Miss Shapen's niece comes into town and chooses Jasper over Henry, he discovers that she has much bigger plans in the works. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Captain Drex + Captain Man's old sidekick and nemesis, Drex, returns from the past with an army of cavemen to finish off Captain Man once and for all; Kid Danger may be the only one who can save Captain Man. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + EnvyGram Wall + Captain Man and Kid Danger guard Swellview's newest attraction, the EnvyGram Wall; when Captain Man destroys the wall while trying to eliminate a small bird, Kid Danger and Captain Man have to figure out a way to replace it. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Scream Machine + When Charlotte's invention for a TV show is accidentally destroyed and then rebuilt, Charlotte worries that the attention she gets could expose Kid Danger and Captain Man's secret identity. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + My Dinner With Bigfoot + When the gang befriends Bigfoot in the woods, Kid Danger and Captain Man try to help get rid of a pesky hunter that's been trying to capture him. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Charlotte Gets Ghosted + Schwoz invents a vacuum to help Henry clean his house, but it accidentally sucks Charlotte inside; when Henry's family hears Charlotte and thinks the vacuum is haunted, Ray must distract them while Henry finds a way to get her out. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + I Dream of Danger + When Charlotte has a dream where she nearly kisses Kid Danger, she actively tries to avoid Henry for fear of the dream coming true. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Sick & Wired + Thinking that Henry is not telling the truth about being sick, Ray plants cameras and microphones in Henry's house to catch him in a lie. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Mouth Candy + When Jasper is falsely accused of a burglary and sent to jail, Henry and Ray must find a way to set him free. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + The Beginning of the End + Kid Danger reveals to Captain Man that he doesn't want to be stuck in Swellview and be his sidekick forever; to make matters worse, Kid Danger is recruited by another town to be their hero. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + A Tale of Two Pipers + Henry gets an unexpected visitor claiming to be from the future; when a boy-robot killing machine steps onto the scene, the gang must find a way to save everyone from an apocalyptic future. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Kid Grounded + Henry is grounded after he is caught sneaking out at night; while Piper drives Henry crazy at home, Charlotte steps into the sidekick role. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Super Volcano + Henry and Ray think the world is ending when a dormant super volcano under Swellview becomes active; Piper is convinced that she has gluten intolerance. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Meet Cute Crush + Henry and Ray try to help Piper get to know a new boy she likes from school. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + The Secret Gets Out + Henry's life as Kid Danger is threatened when Charlotte grows suspicious about the secrets he has been keeping. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Henry Danger + Mo' Danger, Mo' Problems + As Henry tries to adjust to his new role as Kid Danger, he struggles to balance his schedule between crime-fighting, school and family. + + Jace Norman + Cooper Barnes + Riele Downs + + Sitcom + Children + + + TVG + + + + Tele N + TBA + + + + Tele N + TBA + + + + Tele N + TBA + + + + Tele N + TBA + + + + Tele N + TBA + + + + Tele N + TBA + + + + Tele N + TBA + + + + Tele N + TBA + + + + Tele N + TBA + + + + Tele N + TBA + + + + Tele N + TBA + + + + Tele N + TBA + + + + Tele N + TBA + + + + Tele N + TBA + + + + Tele N + TBA + + + + Tele N + TBA + + + + Tele N + TBA + + + + Tele N + TBA + + + + Tele N + TBA + + + + Tele N + TBA + + + + Life's Funniest Moments + Carretilla llena de risas + Una pareja participa en una carrera, pero un tropiezo la saca de la competencia. Una joven pierde su elegancia al bajar por unos escalones. Además, un gato da vueltas en el piso. + + Rob Paulsen + + Reality TV + Comedy + + + + Tercer Milenio 360 Internacional + Un enfoque no convencional de las noticias que, más allá de informar, promueve la toma de conciencia sobre temas determinantes para la humanidad, pero que no siempre se difunden en los medios. + Performing Arts + Paranormal + + + + Tercer Milenio 360 Internacional + Un enfoque no convencional de las noticias que, más allá de informar, promueve la toma de conciencia sobre temas determinantes para la humanidad, pero que no siempre se difunden en los medios. + Performing Arts + Paranormal + + + + El sinvergüenza + Un cantante ranchero, parrandero, tramposo y jugador apuesta en los palenques y paga con cheques sin fondo, por eso debe hasta el traje de charro. + + Vicente Fernández + Blanca Guerra + Guillermo Murray + + 1984 + Movies + Musical + + + + Along Came Polly + Un hombre encuentra consuelo en los brazos de otra mujer, cuando su esposa se va con otro en plena luna de miel. + + Ben Stiller + Jennifer Aniston + Philip Seymour Hoffman + + 2004 + Movies + Romance + + + TVG + + + 2 + + + + Along Came Polly + Un hombre encuentra consuelo en los brazos de otra mujer, cuando su esposa se va con otro en plena luna de miel. + + Ben Stiller + Jennifer Aniston + Philip Seymour Hoffman + + 2004 + Movies + Romance + + + TVG + + + 2 + + + + Caso cerrado + Mi madre vende su cuerpo; Premonición maldita + Los pequeños Andrés y Juan han descubierto que su mamá es dama de compañía en vez de enfermera. David tiene premoniciones y no quiere que su hijo herede cierto dinero porque lo van a asesinar. + Reality TV + Legal + + + TV14 + + + + Caso cerrado + Humillada por amor; El sótano + Adam hace una campaña en las redes para desprestigiar a Adela por dejar plantado a su amigo. Ernesto es un pervertido que convenció a su hijastra de encerrarla en un sótano como esclava sexual. + Reality TV + Legal + + + TVPG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + 12 corazones + Lo mejor de 12 Corazones: Playero + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + 12 corazones + Luchadores + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + Life's Funniest Moments + Pelo en llamas + En la celebración de su cumpleaños, una mujer sufre un accidente al soplar las velas. Por otro lado, los participantes de un juego de peleas intentan mantener el equilibrio sobre un tronco. + Reality TV + Comedy + + + + Mejore la salud del corazón y la función cerebral con Krill + Mejore la salud del corazón, la flexibilidad de las articulaciones y la función cerebral con Krill Omega 50+® con CoQ10. + Paid Program + + + + Javier Romero y Roxana Garcia Introducen + Javier Romero y Roxana Garcia introducen historias de personas que han encontrado una solución totalmente natural para aliviar el dolor articular causado por inflamación. + Paid Program + + + + El secreto natural de la salud masculina para una próstata sana. + Prosvent es una formula médica de nutrientes y de hierbas rejuvenecedoras que ayudan a proteger la salud general de la próstata. + Paid Program + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Descubra una solución natural para el dolor + Connie Craig-Carrol y el fundador Ken Meares investigan OmegaXL, una solución totalmente natural para el dolor articular causado por la inflamación. + Paid Program + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Xploration DIY Sci + More Science Magic + Steve revela la ciencia detrás de trucos de magia sorprendentes. + Science + Instructional + + + TVPG + + + + Xploration Animal Science + Asia's Coolest Creatures + Las criaturas de Asia: leopardo de nieve; dragón de Komodo. + Animals + Science + + + TVG + + + + Xploration Nature Knows Best + Bio-Hybrid + Danni Washington analiza el mundo de la ciencia biohíbrida. + Science + Instructional + + + TVPG + + + + Xploration Awesome Planet + Water + Un estuario en el Norte de Carolina; la vida marina en Curaçao; un satélite de la NASA monitoriza las precipitaciones; un hotel hecho de hielo cerca de Quebec City. + Science + Instructional + + + TVPG + + + + Xploration Earth 2050 + The Future Of Medicine + Una piel electrónica que controla las funciones vitales y advierte de problemas. Dispositivos implantados alimentados por el cuerpo. Un simulador muestra cómo la cirugía robótica pronto salvará vidas. + Science + Instructional + + + TVPG + + + + Xploration Outer Space + Space Balloons + Creando y probando globos de gran altitud para sobrevivir a los rigores del espacio cercano, el globo levanta un telescopio 3,600 kilos hasta el borde del espacio y descubre algo increíble; una dramática misión de búsqueda y rescate. + Science + Instructional + + + TVPG + + + + Historias de la Virgen morena + Como caído del cielo + Flora se pone su vestido de novia y espera por Arturo, pero esa experiencia marca su vida. Una milagrosa confusión hace que Gustavo llegue a su vida para hacerla creer de nuevo en el amor. + Religious + Drama + + + TV14 + + + + Sinvergüenza, pero honrado + Un hombre vividor desea rehacer su vida al lado de una joven, pero los padres de ella se oponen debido a su mala fama. + + Vicente Fernández + Blanca Guerra + Cecilia Camacho + + 1985 + Movies + Comedy + + + + Tercer Milenio 360 Internacional + Un enfoque no convencional de las noticias que, más allá de informar, promueve la toma de conciencia sobre temas determinantes para la humanidad, pero que no siempre se difunden en los medios. + Performing Arts + Paranormal + + + + Tercer Milenio 360 Internacional + Un enfoque no convencional de las noticias que, más allá de informar, promueve la toma de conciencia sobre temas determinantes para la humanidad, pero que no siempre se difunden en los medios. + Performing Arts + Paranormal + + + + Sunday Night Football en Universo + La acción de la temporada completa de la NFL está en Universo. Cada touchdown, cada victoria y toda la adrenalina del fútbol americano y en español. Sunday Night Football en Universo comienza. + Sports + Football + + + TVPG + + + + Buffalo Bills vs. Cincinnati Bengals + Desde el Paycor Stadium, en Cincinnati, Estados Unidos. + Sports + Football + + + + Buffalo Bills vs. Cincinnati Bengals + Desde el Paycor Stadium, en Cincinnati, Estados Unidos. + Sports + Football + + + + Caso cerrado + Madrastra; Sangre esclava + Yuliet quiere sacar a sus dos hijastros de su casa porque son unos vagos; el padre de ellos regresó a Cuba. Carlos acusa a su hermana Graciela de tenerlo encerrado porque necesita su sangre. + Reality TV + Legal + + + TVPG + + + + Caso cerrado + Por un GPS; Soy artista pa' q lo sepas + Fernando es un padre controlador al extremo: le plantó a su hija un GPS y provocó un enfrentamiento. Emily se opone a que su niña conviva con su padre, un artista urbano con lujos sospechosos. + Reality TV + Legal + + + TVPG + + + + Life's Funniest Moments + El baile de un bebé + Un niño pequeño se mueve y se viste con una elegancia particular. Una pareja se resbala en un concurso de baile. Por su parte, un joven se lleva una peligrosa sorpresa al lanzar un cohete. + Reality TV + Comedy + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + 12 corazones + Fantasías + Los concursantes abren sus corazones y revelan sus más íntimas fantasías. ¿Encontrarán alguien para cumplirlas? + Game Shows + + + TV14 + + + + 12 corazones + Banda Bukanas + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + Life's Funniest Moments + ¿No te dije que te encantaría? + Un perro se divierte al sacar almejas a la orilla del mar. Un chico tiene dificultades cuando intentan subir a una tabla de windsurf. Además, un hombre cae en un agujero al caminar sobre hielo. + Reality TV + Comedy + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Caso cerrado + Exmarine loca; Rehabilitada + Roxana es una veterana con secuelas psicológicas de la guerra y quiere ir a Afganistán. Daniela necesita desintoxicarse y desea que a su hija la cuide el padre, que también es un adicto. + Reality TV + Legal + + + TVPG + + + + Historias de la Virgen morena + Cuando la fortuna te visita + Antonio compra un boleto de lotería que resulta ganador, pero un accidente lleva a don Gabriel a quedarse con el dinero del premio para salvar la vida de su esposa. Una historia de fortuna y perdón. + Religious + Drama + + + TV14 + + + + Historias de la Virgen morena + Hijo de mi corazón + Rosario confirma que no puede ser madre y le oculta la verdad a su esposo porque el sueño de Gustavo es tener una familia. Ella le propone adoptar y él acepta, pero oculta sus oscuras intenciones. + Religious + Drama + + + TV14 + + + + New in Town + Una ambiciosa ejecutiva tiene una experiencia que cambia su vida cuando acepta la tarea de reestructurar una planta manufacturera en un pueblo. + + Renée Zellweger + Harry Connick Jr. + Siobhan Fallon Hogan + + 2009 + Movies + Romance + + + TVG + + + 1 + + + + Bajo el mismo cielo + Se conocen realidades extremas de Chile y se intenta explicar que, pese a la geografía, costumbres y creencias, todos los seres humanos están amparados por un mismo cielo. + Documentary + Local + + + + Historias de la Virgen morena + Cuando la fortuna te visita + Antonio compra un boleto de lotería que resulta ganador, pero un accidente lleva a don Gabriel a quedarse con el dinero del premio para salvar la vida de su esposa. Una historia de fortuna y perdón. + Religious + Drama + + + TV14 + + + + Acércate a Rocío + Yo los mantengo y a la otra le dicen mamá + A Eufemia no le parece que el papá de sus hijos le exija dinero y no se los deje ver. Tampoco está de acuerdo con que el mayor tenga un romance con la hija de la amante de su padre. + Talk Shows + Lifestyle + + + TV14 + + + + Betty en NY + Betty es una joven latina en Nueva York que, rechazada en múltiples empleos, acepta uno por debajo de sus calificaciones en la industria de la moda. Allí debe enfrentar el mayor desafío de su vida, el amor. + + Elyfer Torres + Erick Elías + Sabrina Seara + + Soaps + Comedy + + + TV14 + + + + Secretos de sangre + Ceylin es abogada y no le importa romper las reglas, Ilgaz es fiscal y se rige por una estricta ética profesional. Dos polos opuestos se unen para enfrentar lo inesperado en busca de justicia. + + Kaan Urgancioglu + Pinar Deniz + Hüseyin Avni Danyal + + Drama + + + TV14 + + + + Caso cerrado + Traficante de inocentes; Promesas incumplidas + Pilar tiene una dudosa academia de fútbol: entrena a niños en su casa y les hace exámenes invasivos. Un hombre trajo a su hijastra a EE. UU. y ahora que su esposa murió no quiere tramitarle los papeles. + Reality TV + Legal + + + TV14 + + + + Caso cerrado + Prostitución en Brasil; Síndrome de héroe + Alicia fue abusada sexualmente por su padre, quien la obligó a prostituirse y la vendió a Luis. Felipe cree que es un héroe en su rol de bombero, pero provoca accidentes para quedar como el salvador. + Reality TV + Legal + + + TVPG + + + + Tercer Milenio 360 Internacional + Un enfoque no convencional de las noticias que, más allá de informar, promueve la toma de conciencia sobre temas determinantes para la humanidad, pero que no siempre se difunden en los medios. + Performing Arts + Paranormal + + + + Life's Funniest Moments + Viajes y consejos + Un niño no se da cuenta de que alguien más quiere usar su esquí. Un hombre se queda enganchado a un auto. Además, un perro no deja de brincar para ver a través del cristal. + Reality TV + Comedy + + + + Life's Funniest Moments + Una pelea + Un joven se sorprende por la puntería de su contrincante cuando se lanzan bolas de nieve. La estruendosa caída de un hombre desde un árbol. También, un caballo se revuelca junto a su potrillo. + Reality TV + Comedy + + + + Caso cerrado + Exmarine loca; Rehabilitada + Roxana es una veterana con secuelas psicológicas de la guerra y quiere ir a Afganistán. Daniela necesita desintoxicarse y desea que a su hija la cuide el padre, que también es un adicto. + Reality TV + Legal + + + TVPG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + 12 corazones + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + 12 corazones + Gótico sensual + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + Life's Funniest Moments + Gato asustado + Cuando le quieren robar su comida, un perro sabe cómo reaccionar. Un niño se cae de un trineo y alguien más lo sigue de cerca. En la escuela, una niña actúa con rapidez para ganar un juego. + Reality TV + Comedy + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Caso cerrado + Gemelas ingratas; Secuestro legal + Hace años Pedro salvó la vida de las gemelas Gabriela y Daniela, y ahora las chicas se volvieron ingratas. También, Claribel tiene una orden de deportación y no quiere llevarse a su hija. + Reality TV + Legal + + + TVPG + + + + Historias de la Virgen morena + Lazos de mi corazón + Laura y Manuel son un matrimonio feliz que vive con sus dos hijas. En medio de un momento difícil para la familia, las dos jóvenes descubren un secreto que sus padres les han ocultado. + Religious + Drama + + + TV14 + + + + Life's Funniest Moments + Toma tu pastel y saboréalo también + El chocolate es un regalo de cumpleaños irresistible para dos bebés. Un perro va tras un disco volador y sorprende con su estilo. Por otro lado, un niño se divierte al treparse por las paredes. + + Rob Paulsen + + Reality TV + Comedy + + + + Dante's Peak + Harry Dalton, un prestigioso vulcanólogo, detecta una peligrosa actividad sísmica y avisa de una posible erupción en las cercanías de Dante's Peak, un tranquilo pueblo que está coronado por un inmenso volcán apagado. + + Pierce Brosnan + Linda Hamilton + Charles Hallahan + + 1997 + Movies + Action + + + TVPG + + + 2 + + + + Bajo el mismo cielo + Se conocen realidades extremas de Chile y se intenta explicar que, pese a la geografía, costumbres y creencias, todos los seres humanos están amparados por un mismo cielo. + Documentary + Local + + + + Historias de la Virgen morena + Barrera de rencor + La madre de Jovita le arrebató a su bebé cuando ella era apenas una adolescente. Pasaron muchos años antes de que pudiera reencontrarse con su hija Adriana, quien llena de rencor, la rechaza con dureza. + Religious + Drama + + + TV14 + + + + Acércate a Rocío + La otra se convirtió en mi pesadilla + Benjamín está arrepentido de ser amante de Areli, pues ella lo acosa constantemente. Según él, ella es celosa y está obsesionada con ser mamá, pero ya le había dicho que no quería más hijos. + Talk Shows + Lifestyle + + + TV14 + + + + Betty en NY + Betty es una joven latina en Nueva York que, rechazada en múltiples empleos, acepta uno por debajo de sus calificaciones en la industria de la moda. Allí debe enfrentar el mayor desafío de su vida, el amor. + + Elyfer Torres + Erick Elías + Sabrina Seara + + Soaps + Comedy + + + TV14 + + + + Secretos de sangre + Ceylin es abogada y no le importa romper las reglas, Ilgaz es fiscal y se rige por una estricta ética profesional. Dos polos opuestos se unen para enfrentar lo inesperado en busca de justicia. + + Kaan Urgancioglu + Pinar Deniz + Hüseyin Avni Danyal + + Drama + + + TV14 + + + + Caso cerrado + Hijo de un narco; Bandera confederada + Carolina dejó a su hijo a cargo de su cuñado porque iba presa, ya salió y él no quiere dárselo. Carolina y John exigen que Francis quite la bandera confederada del negocio familiar. + Reality TV + Legal + + + TVPG + + + + Caso cerrado + Custodia peligrosa; El payaso + Antonio y Sofía se disputan la custodia de su hermano menor, pero el joven quiere emanciparse. Arturo exige que lo reintegren al empleo que perdió por vestirse de payaso en honor a su hija. + Reality TV + Legal + + + TVPG + + + + Tercer Milenio 360 Internacional + Un enfoque no convencional de las noticias que, más allá de informar, promueve la toma de conciencia sobre temas determinantes para la humanidad, pero que no siempre se difunden en los medios. + Performing Arts + Paranormal + + + + Life's Funniest Moments + Un gran desastre + En una exhibición, todo se complica cuando los gimnastas quieren ser muy rápidos. Un niño no puede levantarse al caer en el lodo. Además, un campo de golf se convierte en una pista de patinaje. + Reality TV + Comedy + + + + Life's Funniest Moments + El truco de la silla + Al llegar a un evento, varios invitados caen sorprendidos. Un joven comprueba que manejar un tractor tiene su grado de dificultad. Además, un bebé no se resigna a perder su balón en la playa. + Reality TV + Comedy + + + + Caso cerrado + Bailando en la oscuridad; Asesino inocente + Juan alega que Pedro lesionó a una bailarina y eso es causa de anulación de contrato. En un intercambio de parejas uno de los participantes murió, pero no hubo cargos para el culpable. + Reality TV + Legal + + + TVPG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + 12 corazones + Lo mejor 12 Corazones: Hombres rudos + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + 12 corazones + Lo mejor de 12 corazones: Playero + Un programa de concurso picante, ligero y excitante el cual busca formar una o varias parejas entre los participantes que se gusten y se sientan atraídos. + Game Shows + + + TV14 + + + + Life's Funniest Moments + Subidas y bajadas + Un corredor de motocross pierde el equilibrio en una pista mientras un jugador de hockey enfrenta ese mismo desafío sobre el hielo. A un niño se le viene encima el árbol de Navidad. + Reality TV + Comedy + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Caso cerrado + Dealer en coma; Princesas de la mafia + Gerber le dio un batazo brutal en la cabeza a su cuñado porque le daba drogas a su mujer. Además, Sergio era un narco que se casó con Jéssica y con Miriam el mismo día. + Reality TV + Legal + + + TVPG + + + + Historias de la Virgen morena + Jardín seco + María no puede darle un hijo a su esposo Pedro y el matrimonio se termina. Ella reniega de la vida y de su fe, pero Diego aparece en su vida y la reconcilia con el amor. Ambos reciben un milagro. + Religious + Drama + + + TV14 + + + + Historias de la Virgen morena + Que no me olvide + La madre de Laura tiene problemas de memoria y su hija la califica de inútil. Entonces, ella se refugia en su otro hijo, Camilo. Cuando la situación se complica, descubren que se trata de un caso de Alzhéimer. + Religious + Drama + + + TV14 + + + + Little Fockers + Los Focker ahora tienen mellizos. Después de superar incontables obstáculos, Greg Focker por fin tiene una relación más normal con su suegro Jack, pero Greg consigue un empleo en una farmacéutica y la desconfianza de Jack hacia él se incrementa. + + Robert De Niro + Ben Stiller + Owen Wilson + + 2010 + Movies + Comedy + + + TVG + + + 1 + + + + Bajo el mismo cielo + Se conocen realidades extremas de Chile y se intenta explicar que, pese a la geografía, costumbres y creencias, todos los seres humanos están amparados por un mismo cielo. + Documentary + Local + + + + Formula Noticias + Con Mario Ávila Roque. + News + + + + Formula Noticias + Con Mario Ávila Roque. + News + + + + La Fórmula es Deportes + Raul Orvañanos, Aldo Fernandez. + Sports + + + + En el estudio de Eduardo + Un programa de debate con dinamismo. + Discussion + + + + Blitz + Variety + + + + Estilo De Vida + Doctor Gerardo Medina. + Performing Arts + + + + Itinerario Turístico + Travel + + + + Blitz + Variety + + + + En el Estudio + Music + + + + En la cama con Pelaez + Un ciclo de entrevistas que busca conocer la intimidad de la persona entrevistada. + Regular + + + + La Mujer Actual + Janett Arceo. + Regular + + + + Fórmula espectacular + Información con lo más relevante de los famosos y del mundo del espectáculo. + News + + + + Hablando De Mamá A Mamá + Un programa que busca ayudar a las madres en el cuidado, educación y formación de sus hijos. + Performing Arts + + + + Juntos con Jaime Nuñez + Un espacio para el análisis de los temas más relevantes de la agenda. + News + + + + La Mujer Actual + Janett Arceo. + Regular + + + + Autocosmos + Un grupo de especialistas son los encargados de examinar a fondo y poner a prueba las principales novedades de la industria automotriz. Nada se les pasa por alto y sus veredictos son la mejor guía para futuros compradores. + News + Automotive + + + + Itinerario Turístico + Travel + + + + Formula Noticias + Con Mario Ávila Roque. + News + + + + Formula Noticias + Con Mario Ávila Roque. + News + + + + Hablando De Mamá A Mamá + Un programa que busca ayudar a las madres en el cuidado, educación y formación de sus hijos. + Performing Arts + + + + Fórmula espectacular + Información con lo más relevante de los famosos y del mundo del espectáculo. + News + + + + Conteniños + Un espacio de diversión para que los más pequeños del hogar disfruten con mucha música. + Children + Music + + + + Fórmula noticias con Juan Francisco Rocha + Programa de noticias nacionales e internacionales. + News + + + + Simibarra + Specials + + + + La Fórmula es Deportes + Raul Orvañanos, Aldo Fernandez. + Sports + + + + En la cama con Pelaez + Un ciclo de entrevistas que busca conocer la intimidad de la persona entrevistada. + Regular + + + + Trasmuro + Tres amigos fanáticos de la arquitectura recorren lugares increíbles y espacios únicos escondidos detrás de sus muros. + Miniseries + Performing Arts + + + + Hora local + News + + + + Estilo De Vida + Doctor Gerardo Medina. + Performing Arts + + + + Itinerario Turístico + Travel + + + + La Mujer Actual + Janett Arceo. + Regular + + + + Hablando De Mamá A Mamá + Un programa que busca ayudar a las madres en el cuidado, educación y formación de sus hijos. + Performing Arts + + + + En la cama con Pelaez + Un ciclo de entrevistas que busca conocer la intimidad de la persona entrevistada. + Regular + + + + Fórmula espectacular + Información con lo más relevante de los famosos y del mundo del espectáculo. + News + + + + Blitz + Variety + + + + Por la mañana con Feregrino + Un programa informativo con las noticias de actualidad, los deportes y el espectáculo. + News + + + + Ciro Gómez Leyva por la mañana + Los temas más importantes del día a día de forma concisa y clara. + Talk Shows + News + + + + La Mujer Actual + Janett Arceo. + Regular + + + + Todo Para la Mujer Maxine Woodside + Desde hace más de 21 años ha manejado magistralmente un programa lleno de interés. Maxine ha capturado toda una atmósfera y la hace vivir en su programa, al grado que alcanza los puntos de audiencia más altos de toda la radio en México. + Performing Arts + + + + López Dóriga en Fórmula + Espacio informativo en el que un reconocido periodista trata los asuntos de mayor interés desde su óptica personal. + News + + + + Hablando De Mamá A Mamá + Un programa que busca ayudar a las madres en el cuidado, educación y formación de sus hijos. + Performing Arts + + + + Fórmula espectacular + Información con lo más relevante de los famosos y del mundo del espectáculo. + News + + + + Grafos y gestos + Se analizan noticias actuales. + News + + + + José Cárdenas Informa + Perspectivas diferentes para entrar en contacto con los protagonistas principales de las noticias, en una presentación espontánea y plural de los acontecimientos relevantes que hacen la historia. + Talk Shows + News + + + + La Fórmula es Deportes + Raul Orvañanos, Aldo Fernandez. + Sports + + + + En el estudio de Eduardo + Un programa de debate con dinamismo. + Discussion + + + + Blitz + Variety + + + + Estilo De Vida + Doctor Gerardo Medina. + Performing Arts + + + + Todo Para la Mujer Maxine Woodside + Desde hace más de 21 años ha manejado magistralmente un programa lleno de interés. Maxine ha capturado toda una atmósfera y la hace vivir en su programa, al grado que alcanza los puntos de audiencia más altos de toda la radio en México. + Performing Arts + + + + Shanik en fórmula + Enterándose de los chismes, escándalos, amores y desamores de las estrellas. + Performing Arts + + + + Eduardo Ruiz Healy + Eduardo Ruiz Healy inicia su transmisión el 16 de enero de 1995, noticiario de información general, política, económica, deportiva, cultural y de entretenimiento, nacional e internacional; con entrevistas y secciones de información útil y práctica. + Talk Shows + News + + + + José Cárdenas Informa + Perspectivas diferentes para entrar en contacto con los protagonistas principales de las noticias, en una presentación espontánea y plural de los acontecimientos relevantes que hacen la historia. + Talk Shows + News + + + + Por la mañana con Feregrino + Un programa informativo con las noticias de actualidad, los deportes y el espectáculo. + News + + + + Ciro Gómez Leyva por la mañana + Los temas más importantes del día a día de forma concisa y clara. + Talk Shows + News + + + + Javier Poza en Fórmula + Programa de revista con temas de actualidad y espectáculos. + Performing Arts + Variety + + + + Todo Para la Mujer Maxine Woodside + Desde hace más de 21 años ha manejado magistralmente un programa lleno de interés. Maxine ha capturado toda una atmósfera y la hace vivir en su programa, al grado que alcanza los puntos de audiencia más altos de toda la radio en México. + Performing Arts + + + + López Dóriga en Fórmula + Espacio informativo en el que un reconocido periodista trata los asuntos de mayor interés desde su óptica personal. + News + + + + La radio de la república con Chumel Torres + Programa informativo donde se analizan las noticias con un toque de humor. + News + + + + Eduardo Ruiz Healy + Eduardo Ruiz Healy inicia su transmisión el 16 de enero de 1995, noticiario de información general, política, económica, deportiva, cultural y de entretenimiento, nacional e internacional; con entrevistas y secciones de información útil y práctica. + Talk Shows + News + + + + La Fórmula es...Orvañanos + Por medio de entrevistas, comentarios, discusión y polémica se discute todo lo que sucede en torno al mundo del deporte. + Sports + Talk Show + + + + José Cárdenas Informa + Perspectivas diferentes para entrar en contacto con los protagonistas principales de las noticias, en una presentación espontánea y plural de los acontecimientos relevantes que hacen la historia. + Talk Shows + News + + + + Leonardo Curzio en fórmula + Espacio informativo en el que Leonardo Curzio brinda su análisis. + News + + + + Fórmula financiera + Los cambios financieros que se viven en México y el mundo, con la información económica y financiera más importante y la repercusión que tienen. + Business + + + + Fórmula noticias + Un espacio para comunicar las noticias más importantes del momento en México. + News + + + + Orfeon TV presenta + Music + + + + Todo Para la Mujer Maxine Woodside + Desde hace más de 21 años ha manejado magistralmente un programa lleno de interés. Maxine ha capturado toda una atmósfera y la hace vivir en su programa, al grado que alcanza los puntos de audiencia más altos de toda la radio en México. + Performing Arts + + + + Shanik en fórmula + Enterándose de los chismes, escándalos, amores y desamores de las estrellas. + Performing Arts + + + + Eduardo Ruiz Healy + Eduardo Ruiz Healy inicia su transmisión el 16 de enero de 1995, noticiario de información general, política, económica, deportiva, cultural y de entretenimiento, nacional e internacional; con entrevistas y secciones de información útil y práctica. + Talk Shows + News + + + + José Cárdenas Informa + Perspectivas diferentes para entrar en contacto con los protagonistas principales de las noticias, en una presentación espontánea y plural de los acontecimientos relevantes que hacen la historia. + Talk Shows + News + + + + Por la mañana con Feregrino + Un programa informativo con las noticias de actualidad, los deportes y el espectáculo. + News + + + + Ciro Gómez Leyva por la mañana + Los temas más importantes del día a día de forma concisa y clara. + Talk Shows + News + + + + Javier Poza en Fórmula + Programa de revista con temas de actualidad y espectáculos. + Performing Arts + Variety + + + + Todo Para la Mujer Maxine Woodside + Desde hace más de 21 años ha manejado magistralmente un programa lleno de interés. Maxine ha capturado toda una atmósfera y la hace vivir en su programa, al grado que alcanza los puntos de audiencia más altos de toda la radio en México. + Performing Arts + + + + López Dóriga en Fórmula + Espacio informativo en el que un reconocido periodista trata los asuntos de mayor interés desde su óptica personal. + News + + + + La radio de la república con Chumel Torres + Programa informativo donde se analizan las noticias con un toque de humor. + News + + + + Eduardo Ruiz Healy + Eduardo Ruiz Healy inicia su transmisión el 16 de enero de 1995, noticiario de información general, política, económica, deportiva, cultural y de entretenimiento, nacional e internacional; con entrevistas y secciones de información útil y práctica. + Talk Shows + News + + + + La Fórmula es...Orvañanos + Por medio de entrevistas, comentarios, discusión y polémica se discute todo lo que sucede en torno al mundo del deporte. + Sports + Talk Show + + + + Time to music + Lo mejor y más actual de la música anglo. + Music + + + + Daebak k-pop + Lo más destacado del k-pop actual. + Music + + + + Super Beats + Lo mejor y más actual del electro anglo. + Music + + + + Double Pop + Un mix de lo mejor del pop en inglés y en español. + Music + + + + Reggaepop + Los éxitos del reggaeton con una pizca de pop. + Music + + + + Playhit + Music + + + + Daebak k-pop + Lo más destacado del k-pop actual. + Music + + + + Time to music + Lo mejor y más actual de la música anglo. + Music + + + + So Good! + Recordando los éxitos que no pueden faltar en ninguna playlist. Un mix de anglo, urbano y pop. + Music + + + + Reggaepop + Los éxitos del reggaeton con una pizca de pop. + Music + + + + Ponle play + La mejor playlist, con las canciones más elegidas y los artistas favoritos. + Music + + + + Playhit + Music + + + + Top 10 K-pop + El conteo con los artistas y la música que están rompiendo los rankings del K-pop. + Music + + + + Daebak k-pop + Lo más destacado del k-pop actual. + Music + + + + Super Beats + Lo mejor y más actual del electro anglo. + Music + + + + Mood: Perreo + La mejor selección de videos para perrear hasta el piso y no parar de bailar. + Music + + + + Daebak k-pop + Lo más destacado del k-pop actual. + Music + + + + Time to music + Lo mejor y más actual de la música anglo. + Music + + + + So Good! + Recordando los éxitos que no pueden faltar en ninguna playlist. Un mix de anglo, urbano y pop. + Music + + + + Reggaepop + Los éxitos del reggaeton con una pizca de pop. + Music + + + + Ponle play + La mejor playlist, con las canciones más elegidas y los artistas favoritos. + Music + + + + Playhit + Music + + + + Top 10 K-pop + El conteo con los artistas y la música que están rompiendo los rankings del K-pop. + Music + + + + Daebak k-pop + Lo más destacado del k-pop actual. + Music + + + + Super Beats + Lo mejor y más actual del electro anglo. + Music + + + + Mood: Perreo + La mejor selección de videos para perrear hasta el piso y no parar de bailar. + Music + + + + Daebak k-pop + Lo más destacado del k-pop actual. + Music + + + + Time to music + Lo mejor y más actual de la música anglo. + Music + + + + So Good! + Recordando los éxitos que no pueden faltar en ninguna playlist. Un mix de anglo, urbano y pop. + Music + + + + Reggaepop + Los éxitos del reggaeton con una pizca de pop. + Music + + + + Ponle play + La mejor playlist, con las canciones más elegidas y los artistas favoritos. + Music + + + + Top 10 K-pop + El conteo con los artistas y la música que están rompiendo los rankings del K-pop. + Music + + + + Daebak k-pop + Lo más destacado del k-pop actual. + Music + + + + Time to music + Lo mejor y más actual de la música anglo. + Music + + + + Playhit + Music + + + + Playhit + Music + + + + Que News Telehit + Como el mundo de la música no se detiene, un programa con toda la información llevada al límite de la diversión. + News Magazine + + + + So Good! + Recordando los éxitos que no pueden faltar en ninguna playlist. Un mix de anglo, urbano y pop. + Music + + + + Time to music + Lo mejor y más actual de la música anglo. + Music + + + + Super Beats + Lo mejor y más actual del electro anglo. + Music + + + + Double Pop + Un mix de lo mejor del pop en inglés y en español. + Music + + + + Ponle play + La mejor playlist, con las canciones más elegidas y los artistas favoritos. + Music + + + + Time to music + Lo mejor y más actual de la música anglo. + Music + + + + Playhit + Music + + + + Que News Telehit + Como el mundo de la música no se detiene, un programa con toda la información llevada al límite de la diversión. + News Magazine + + + + So Good! + Recordando los éxitos que no pueden faltar en ninguna playlist. Un mix de anglo, urbano y pop. + Music + + + + Time to music + Lo mejor y más actual de la música anglo. + Music + + + + Super Beats + Lo mejor y más actual del electro anglo. + Music + + + + Double Pop + Un mix de lo mejor del pop en inglés y en español. + Music + + + + Ponle play + La mejor playlist, con las canciones más elegidas y los artistas favoritos. + Music + + + + Time to music + Lo mejor y más actual de la música anglo. + Music + + + + Playhit + Music + + + + Que News Telehit + Como el mundo de la música no se detiene, un programa con toda la información llevada al límite de la diversión. + News Magazine + + + + So Good! + Recordando los éxitos que no pueden faltar en ninguna playlist. Un mix de anglo, urbano y pop. + Music + + + + Time to music + Lo mejor y más actual de la música anglo. + Music + + + + Super Beats + Lo mejor y más actual del electro anglo. + Music + + + + Double Pop + Un mix de lo mejor del pop en inglés y en español. + Music + + + + Ponle play + La mejor playlist, con las canciones más elegidas y los artistas favoritos. + Music + + + + Time to music + Lo mejor y más actual de la música anglo. + Music + + + + Playhit + Music + + + + Que News Telehit + Como el mundo de la música no se detiene, un programa con toda la información llevada al límite de la diversión. + News Magazine + + + + Super Beats + Lo mejor y más actual del electro anglo. + Music + + + + So Good! + Recordando los éxitos que no pueden faltar en ninguna playlist. Un mix de anglo, urbano y pop. + Music + + + + Time to music + Lo mejor y más actual de la música anglo. + Music + + + + Double Pop + Un mix de lo mejor del pop en inglés y en español. + Music + + + + Ponle play + La mejor playlist, con las canciones más elegidas y los artistas favoritos. + Music + + + + Time to music + Lo mejor y más actual de la música anglo. + Music + + + + Playhit + Music + + + + Que News Telehit + Como el mundo de la música no se detiene, un programa con toda la información llevada al límite de la diversión. + News Magazine + + + + Ponle play + La mejor playlist, con las canciones más elegidas y los artistas favoritos. + Music + + + + Reggaepop + Los éxitos del reggaeton con una pizca de pop. + Music + + + + Daebak k-pop + Lo más destacado del k-pop actual. + Music + + + + So Good! + Recordando los éxitos que no pueden faltar en ninguna playlist. Un mix de anglo, urbano y pop. + Music + + + + Daebak k-pop + Lo más destacado del k-pop actual. + Music + + + + Reggaepop + Los éxitos del reggaeton con una pizca de pop. + Music + + + + Playhit + Music + + + + Que News Telehit + Como el mundo de la música no se detiene, un programa con toda la información llevada al límite de la diversión. + News Magazine + + + + Ponle play + La mejor playlist, con las canciones más elegidas y los artistas favoritos. + Music + + + + Reggaepop + Los éxitos del reggaeton con una pizca de pop. + Music + + + + Daebak k-pop + Lo más destacado del k-pop actual. + Music + + + + So Good! + Recordando los éxitos que no pueden faltar en ninguna playlist. Un mix de anglo, urbano y pop. + Music + + + + Daebak k-pop + Lo más destacado del k-pop actual. + Music + + + + Reggaepop + Los éxitos del reggaeton con una pizca de pop. + Music + + + + Playhit + Music + + + + Que News Telehit + Como el mundo de la música no se detiene, un programa con toda la información llevada al límite de la diversión. + News Magazine + + + + Ponle play + La mejor playlist, con las canciones más elegidas y los artistas favoritos. + Music + + + + Reggaepop + Los éxitos del reggaeton con una pizca de pop. + Music + + + + Daebak k-pop + Lo más destacado del k-pop actual. + Music + + + + So Good! + Recordando los éxitos que no pueden faltar en ninguna playlist. Un mix de anglo, urbano y pop. + Music + + + + Daebak k-pop + Lo más destacado del k-pop actual. + Music + + + + Reggaepop + Los éxitos del reggaeton con una pizca de pop. + Music + + + + Playhit + Music + + + + Que News Telehit + Como el mundo de la música no se detiene, un programa con toda la información llevada al límite de la diversión. + News Magazine + + + + Playhit + Music + + + + Sin atakrs3 + Enfocado a la comunidad LGBTIQ+ y el mundo drag mexicano e internacional. Un formato único, innovador y muy revelador, en el que conductores e invitados cuentan los chismes drag y queer del momento en divertidas secciones. + Talk Shows + + + + Daebak k-pop + Lo más destacado del k-pop actual. + Music + + + + So Good! + Recordando los éxitos que no pueden faltar en ninguna playlist. Un mix de anglo, urbano y pop. + Music + + + + Reggaepop + Los éxitos del reggaeton con una pizca de pop. + Music + + + + Playhit + Music + + + + Que News Telehit + Como el mundo de la música no se detiene, un programa con toda la información llevada al límite de la diversión. + News Magazine + + + + So Good! + Recordando los éxitos que no pueden faltar en ninguna playlist. Un mix de anglo, urbano y pop. + Music + + + + Time to music + Lo mejor y más actual de la música anglo. + Music + + + + Super Beats + Lo mejor y más actual del electro anglo. + Music + + + + Double Pop + Un mix de lo mejor del pop en inglés y en español. + Music + + + + Reggaepop + Los éxitos del reggaeton con una pizca de pop. + Music + + + + Time to music + Lo mejor y más actual de la música anglo. + Music + + + + Playhit + Music + + + + Que News Telehit + Como el mundo de la música no se detiene, un programa con toda la información llevada al límite de la diversión. + News Magazine + + + + So Good! + Recordando los éxitos que no pueden faltar en ninguna playlist. Un mix de anglo, urbano y pop. + Music + + + + Time to music + Lo mejor y más actual de la música anglo. + Music + + + + Super Beats + Lo mejor y más actual del electro anglo. + Music + + + + Double Pop + Un mix de lo mejor del pop en inglés y en español. + Music + + + + Reggaepop + Los éxitos del reggaeton con una pizca de pop. + Music + + + + Time to music + Lo mejor y más actual de la música anglo. + Music + + + + Playhit + Music + + + + Que News Telehit + Como el mundo de la música no se detiene, un programa con toda la información llevada al límite de la diversión. + News Magazine + + + + So Good! + Recordando los éxitos que no pueden faltar en ninguna playlist. Un mix de anglo, urbano y pop. + Music + + + + Time to music + Lo mejor y más actual de la música anglo. + Music + + + + Super Beats + Lo mejor y más actual del electro anglo. + Music + + + + Double Pop + Un mix de lo mejor del pop en inglés y en español. + Music + + + + Reggaepop + Los éxitos del reggaeton con una pizca de pop. + Music + + + + Time to music + Lo mejor y más actual de la música anglo. + Music + + + + Playhit + Music + + + + A Reír Con Miguel y Raymond + Un programa de televisión humorístico de la República Dominicana producido y conducido por los comediantes Raymond Pozo y Miguel Céspedes. + Comedy + + + + Zona 5 + Uno de los programas de investigación periodística más importantes de la República Dominicana, con reportajes y entrevistas. + Documentary + + + + Objetivo 5 + Un resumen de noticias, reportajes, entrevistas internacionales y los comentarios de los productores. + News + + + + Sábado extraordinario + Un espacio con lo mejor del entretenimiento y artistas invitados. + Performing Arts + + + + Película + Lo mejor del arte cinematográfico mundial. + Performing Arts + + + + Película + Lo mejor del arte cinematográfico mundial. + Performing Arts + + + + Película + Lo mejor del arte cinematográfico mundial. + Performing Arts + + + + Primer impacto + Una revista que cubre las noticias de última hora y las más impactantes. Un gran equipo de periodistas ofrece completos informes del país y del mundo. El programa también cuenta con dos segmentos de salud semanales. + + Jackie Guerrido + + News Magazine + + + + Como dice el dicho + Recreando historias y situaciones que se asemejan a los dichos comunes de la cultura popular. Se dramatiza una historia interesante y cautivadora que represente a un dicho específico, elegido para cada episodio. + + Michael Ronda + Wendy González + Sergio Corona + + Comedy + + + TV14 + + + + Durmiendo con mi Jefe + Gael Urrutia es un publicista exitoso, jefe de la empresa Urrutia Publicidad en la Ciudad de México. Él lleva una vida encantadora y goza de muy buena reputación hasta que su esposa le pide el divorcio después de descubrir que él la engaña. + + Jorge Ortiz de Pinedo + Raúl Araiza + Cecilia Galeano + + Comedy + Performing Arts + + + TV14 + + + + Con la Familia + Performing Arts + + + + Al punto con Jorge Ramos + La revista informativa presenta los sucesos más actualizados en los diferentes ámbitos del mundo latino, incluyendo la política, los temas de inmigración, el mundo del entretenimiento, entre otros. + News + + + TV14 + + + + Musicales + Un programa que se centra en la trasmisión de melodías de vida. + Music + + + + Divertido con Jochy + Programa de entretenimiento, que lleva al hogar mucha música, humor y alegría con entrevistas, reportajes y concursos. + Music + Performing Arts + + + + La voz... México + Concurso de talento en donde se crean equipos de varios concursantes elegidos anteriormente en audiciones de canto y ellos deberán seguir cantando ante los jueces en diferentes rondas de competencias. + Music + Game Shows + + + + Titirymundati + Comedy + + + + Lo último + Se comparte informaciones más recientes tanto en ámbito local como internacional, comentarios y reportajes realizados por un equipo de periodistas. + News + + + + Película + Lo mejor del arte cinematográfico mundial. + Performing Arts + + + + Película + Lo mejor del arte cinematográfico mundial. + Performing Arts + + + + Mortales + Serie de la televisión dominicana hecha en Estados Unidos por y para los dominicanos, historias y casos de nuestra gente en Nueva York, sus dificultades, sus miedos, limitaciones y sueños. + Performing Arts + + + + Noticiero Univisión + El noticiero transmite los acontecimientos mundiales que son de interés público para la comunidad hispana desde su sede en Florida e incluye reportajes de la política, el clima, los deportes, la educación, la inmigración, entre otros. + News + + + + Al punto con Jorge Ramos + La revista informativa presenta los sucesos más actualizados en los diferentes ámbitos del mundo latino, incluyendo la política, los temas de inmigración, el mundo del entretenimiento, entre otros. + News + + + TV14 + + + + Primer impacto + Una revista que cubre las noticias de última hora y las más impactantes. Un gran equipo de periodistas ofrece completos informes del país y del mundo. El programa también cuenta con dos segmentos de salud semanales. + + Jackie Guerrido + + News Magazine + + + + Primer impacto + Una revista que cubre las noticias de última hora y las más impactantes. Un gran equipo de periodistas ofrece completos informes del país y del mundo. El programa también cuenta con dos segmentos de salud semanales. + + Jackie Guerrido + + News Magazine + + + + Sábado extraordinario + Un espacio con lo mejor del entretenimiento y artistas invitados. + Performing Arts + + + + La opción de la mañana + Un programa que contiene noticias inéditas, efemérides, los santos, los cumpleaños, junto a un poco de bromas, muecas y buen humor. + News + Performing Arts + + + + Matinal + Herramientas para solucionar problemas y brindar una formación integral en muchos temas de actualidad y superación personal. + Regular + + + + ¡Despierta América! + Revista matutina con noticias, temas de actualidad, reportajes de farándula, música e información práctica. + + Maity Interiano + Andrea Chediak + + Talk Shows + Variety + + + TV14 + + + + Laura Bozzo + Talk Shows + + + + Yo no creo en los hombres + Una mujer luchadora trata de salir adelante tras la muerte de su padre y debe hacerse responsable de su familia. Ella busca venganza tras ser engañada por un hombre. + + Adriana Louvier + Gabriel Soto + Rosa María Bianchi + + Soaps + + + + Mundo de fieras + La historia de gemelos idénticos, separados desde la niñez, y los diferentes caminos que toman en la vida. + + Gaby Espino + César Évora + Edith González + + Soaps + Drama + + + TV14 + + + + Noticias Telemicro + Un novedoso concepto de información que conquista a los televidentes con sus segmentos de economía, salud, deportes, arte y espectáculo. + News + + + + El color de la pasión + Una mujer está casada con el dueño de una fábrica de Talavera en un mundo donde todos son felices, menos una dama caprichosa que solo busca ser feliz, destruyendo la vida de los demás. + + Esmeralda Pimentel + Erick Elías + René Strickler + + Soaps + Drama + + + TV14 + + + + Mi corazón es tuyo + La vida de una joven mujer que trabaja como bailarina exótica da un giro cuando se convierte en niñera al conocer a un hombre viudo con 7 hijos. + + Silvia Navarro + Jorge Salinas + Mayrín Villanueva + + Soaps + Comedy + + + TV14 + + + + El gordo y la flaca + Chismes de celebridades y las últimas noticias de la industria del entretenimiento, en un programa que combina entrevistas con actores, músicos y celebridades. + Talk Shows + Performing Arts + + + TVPG + + + + Primer impacto + Una revista que cubre las noticias de última hora y las más impactantes. Un gran equipo de periodistas ofrece completos informes del país y del mundo. El programa también cuenta con dos segmentos de salud semanales. + + Jackie Guerrido + + News Magazine + + + + Hasta el fin del mundo + Tras la muerte de su distinguido padre, Sofía, la hija mayor de los Ripoll, debe tomar las riendas de la exitosa empresa chocolatera de su familia. + + Marjorie De Sousa + David Zepeda + Julián Gil + + Soaps + Drama + + + TV14 + + + + La sombra del pasado + El odio entre dos familias y la sed de venganza son los obstáculos que impedirán el amor que nace entre dos jóvenes, que luchan por ser felices en medio de los resentimientos familiares. + + Michelle Renaud + Pablo Lyle + Susana González + + Soaps + Drama + + + + Metástasis + A Walter Blanco, maestro de química, le diagnostican un cáncer y le dan solo dos años de vida. A partir de ese momento, la vida de Walter da un giro y se convierte en un productor de drogas y narcotraficante. + + Diego Trujillo + Julián Arango + Sandra Reyes + + Drama + + + TVMA + + + + Los Tramposos + Regular + + + + Noticias Telemicro + Un novedoso concepto de información que conquista a los televidentes con sus segmentos de economía, salud, deportes, arte y espectáculo. + News + + + + Noticiero Univision: Última Hora + La últimas noticias y los hechos más importantes a nivel mundial. + News Magazine + + + + De extremo a extremo + El programa del mediodía más estelar de la televisión dominicana. + Sports + + + + De extremo a extremo + El programa del mediodía más estelar de la televisión dominicana. + Sports + + + + La opción de la mañana + Un programa que contiene noticias inéditas, efemérides, los santos, los cumpleaños, junto a un poco de bromas, muecas y buen humor. + News + Performing Arts + + + + Matinal + Herramientas para solucionar problemas y brindar una formación integral en muchos temas de actualidad y superación personal. + Regular + + + + ¡Despierta América! + Revista matutina con noticias, temas de actualidad, reportajes de farándula, música e información práctica. + + Maity Interiano + Andrea Chediak + + Talk Shows + Variety + + + TV14 + + + + Laura Bozzo + Talk Shows + + + + Yo no creo en los hombres + Una mujer luchadora trata de salir adelante tras la muerte de su padre y debe hacerse responsable de su familia. Ella busca venganza tras ser engañada por un hombre. + + Adriana Louvier + Gabriel Soto + Rosa María Bianchi + + Soaps + + + + Mundo de fieras + La historia de gemelos idénticos, separados desde la niñez, y los diferentes caminos que toman en la vida. + + Gaby Espino + César Évora + Edith González + + Soaps + Drama + + + TV14 + + + + Noticias Telemicro + Un novedoso concepto de información que conquista a los televidentes con sus segmentos de economía, salud, deportes, arte y espectáculo. + News + + + + El color de la pasión + Una mujer está casada con el dueño de una fábrica de Talavera en un mundo donde todos son felices, menos una dama caprichosa que solo busca ser feliz, destruyendo la vida de los demás. + + Esmeralda Pimentel + Erick Elías + René Strickler + + Soaps + Drama + + + TV14 + + + + Mi corazón es tuyo + La vida de una joven mujer que trabaja como bailarina exótica da un giro cuando se convierte en niñera al conocer a un hombre viudo con 7 hijos. + + Silvia Navarro + Jorge Salinas + Mayrín Villanueva + + Soaps + Comedy + + + TV14 + + + + El gordo y la flaca + Chismes de celebridades y las últimas noticias de la industria del entretenimiento, en un programa que combina entrevistas con actores, músicos y celebridades. + Talk Shows + Performing Arts + + + TVPG + + + + Primer impacto + Una revista que cubre las noticias de última hora y las más impactantes. Un gran equipo de periodistas ofrece completos informes del país y del mundo. El programa también cuenta con dos segmentos de salud semanales. + + Jackie Guerrido + + News Magazine + + + + Hasta el fin del mundo + Tras la muerte de su distinguido padre, Sofía, la hija mayor de los Ripoll, debe tomar las riendas de la exitosa empresa chocolatera de su familia. + + Marjorie De Sousa + David Zepeda + Julián Gil + + Soaps + Drama + + + TV14 + + + + La sombra del pasado + El odio entre dos familias y la sed de venganza son los obstáculos que impedirán el amor que nace entre dos jóvenes, que luchan por ser felices en medio de los resentimientos familiares. + + Michelle Renaud + Pablo Lyle + Susana González + + Soaps + Drama + + + + Metástasis + A Walter Blanco, maestro de química, le diagnostican un cáncer y le dan solo dos años de vida. A partir de ese momento, la vida de Walter da un giro y se convierte en un productor de drogas y narcotraficante. + + Diego Trujillo + Julián Arango + Sandra Reyes + + Drama + + + TVMA + + + + Los Tramposos + Regular + + + + Noticias Telemicro + Un novedoso concepto de información que conquista a los televidentes con sus segmentos de economía, salud, deportes, arte y espectáculo. + News + + + + Noticiero Univision: Última Hora + La últimas noticias y los hechos más importantes a nivel mundial. + News Magazine + + + + De extremo a extremo + El programa del mediodía más estelar de la televisión dominicana. + Sports + + + + De extremo a extremo + El programa del mediodía más estelar de la televisión dominicana. + Sports + + + + La opción de la mañana + Un programa que contiene noticias inéditas, efemérides, los santos, los cumpleaños, junto a un poco de bromas, muecas y buen humor. + News + Performing Arts + + + + Matinal + Herramientas para solucionar problemas y brindar una formación integral en muchos temas de actualidad y superación personal. + Regular + + + + ¡Despierta América! + Revista matutina con noticias, temas de actualidad, reportajes de farándula, música e información práctica. + + Maity Interiano + Andrea Chediak + + Talk Shows + Variety + + + TV14 + + + + Laura Bozzo + Talk Shows + + + + Yo no creo en los hombres + Una mujer luchadora trata de salir adelante tras la muerte de su padre y debe hacerse responsable de su familia. Ella busca venganza tras ser engañada por un hombre. + + Adriana Louvier + Gabriel Soto + Rosa María Bianchi + + Soaps + + + + Mundo de fieras + La historia de gemelos idénticos, separados desde la niñez, y los diferentes caminos que toman en la vida. + + Gaby Espino + César Évora + Edith González + + Soaps + Drama + + + TV14 + + + + Noticias Telemicro + Un novedoso concepto de información que conquista a los televidentes con sus segmentos de economía, salud, deportes, arte y espectáculo. + News + + + + El color de la pasión + Una mujer está casada con el dueño de una fábrica de Talavera en un mundo donde todos son felices, menos una dama caprichosa que solo busca ser feliz, destruyendo la vida de los demás. + + Esmeralda Pimentel + Erick Elías + René Strickler + + Soaps + Drama + + + TV14 + + + + Mi corazón es tuyo + La vida de una joven mujer que trabaja como bailarina exótica da un giro cuando se convierte en niñera al conocer a un hombre viudo con 7 hijos. + + Silvia Navarro + Jorge Salinas + Mayrín Villanueva + + Soaps + Comedy + + + TV14 + + + + El gordo y la flaca + Chismes de celebridades y las últimas noticias de la industria del entretenimiento, en un programa que combina entrevistas con actores, músicos y celebridades. + Talk Shows + Performing Arts + + + TVPG + + + + Primer impacto + Una revista que cubre las noticias de última hora y las más impactantes. Un gran equipo de periodistas ofrece completos informes del país y del mundo. El programa también cuenta con dos segmentos de salud semanales. + + Jackie Guerrido + + News Magazine + + + + Hasta el fin del mundo + Tras la muerte de su distinguido padre, Sofía, la hija mayor de los Ripoll, debe tomar las riendas de la exitosa empresa chocolatera de su familia. + + Marjorie De Sousa + David Zepeda + Julián Gil + + Soaps + Drama + + + TV14 + + + + Desfile Día de Muertos + Las tradicionales carrozas alegóricas de esta colorida celebración toman de nuevo las calles de Ciudad de México para rendir homenaje con ofrendas, calaveras y catrinas a quienes se han ido. + Specials + Parade + + + + Acércate a Rocío + Mi suegra me acusa de robamaridos + Brenda y su hijo viven hace diez años con su suegra, pero hace veinte días que la echó de la casa; la acusa de ser una robamaridos, pues una vecina dijo que la vio salir de un hotel con su suegro. + Talk Shows + Lifestyle + + + TV14 + + + + Cruz Azul vs. Guadalajara + Guadalajara vs. Cruz Azul + Jornada 16 del Torneo Apertura 2023 de la Liga MX. Guadalajara recibe a Cruz Azul en el estadio Akron. + Sports + Soccer + + + + Snitch + Para salvar a su hijo adolescente de una injusta sentencia a prisión, un hombre de negocios hace un trato con un abogado que lo obliga a infiltrarse en un peligroso cartel y convertirse en informante. + + Dwayne Johnson + Barry Pepper + Jon Bernthal + + 2013 + Movies + Crime Story + + + TVPG + + + 2 + + + + Snitch + Para salvar a su hijo adolescente de una injusta sentencia a prisión, un hombre de negocios hace un trato con un abogado que lo obliga a infiltrarse en un peligroso cartel y convertirse en informante. + + Dwayne Johnson + Barry Pepper + Jon Bernthal + + 2013 + Movies + Crime Story + + + TVPG + + + 2 + + + + Noticiero Telemundo 52 fin de semana + Noticias locales y nacionales, reportes de tránsito, el tiempo, entretenimiento y una variedad de segmentos dedicados a la comunidad hispana del sur de California. + News + + + + Noticias Telemundo fin de semana + Noticias Telemundo Fin de Semana es la fuente de información más confiable de la comunidad hispana en los EE.UU. Su galardonado equipo de corresponsales ofrece los últimos acontecimientos. + + Julio Vaqueiro + + News + + + + Zona mixta + Toda la información deportiva en un formato dinámico, con una variedad de segmentos e invitados especiales, para comentar los temas más actuales y relevantes, cada fin de semana. + News + Sports + + + TVPG + + + + La camioneta gris + Un chofer se enamora de un promotor de boxeo, éste al descubrir que el joven tiene buena mano lo anima a boxear. + + Los Tigres del Norte + Mario Almada + Fernando Almada + + 1989 + Movies + Action + + + + Caso cerrado + Embarazo precoz + La hija de Luciano y Dagmar, de 12 años, quedó embarazada de su hermanastro. Luciano quiere que interrumpa el embarazo y Dagmar no está segura. + Reality TV + Legal + + + TV14 + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Mejore la salud del corazón y la función cerebral con Krill + Mejore la salud del corazón, la flexibilidad de las articulaciones y la función cerebral con Krill Omega 50+® con CoQ10. + Paid Program + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + La Liga Premier Extra + Un repaso por la actividad de una de las ligas más importantes del mundo, la Premier League de Inglaterra. + Sports + Soccer + + + + Aston Villa vs. Nottingham Forest + Nottingham Forest vs. Aston Villa + Jornada 11 de la Premier League 2023-24 desde el estadio The City Ground. Nottingham recibe a Aston Villa. Forest ganó solo uno de sus últimos 16 partidos competitivos contra Villa. + Sports + Soccer + + + + Liverpool vs. Luton Town + Luton Town vs. Liverpool + Jornada 11 de la Premier League 2023-24 desde el estadio Kenilworth Road. Luton Town recibe a Liverpool. Los encuentros competitivos más recientes tuvieron lugar en la tercera ronda de la Copa FA 2007-2008. + Sports + Soccer + + + + La Liga Premier 3er tiempo + Programa resumen con toda la acción, noticias, análisis, debates y actualizaciones de la Liga Premier. + Sports + Soccer + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Dra. Polo: ¡Alivio a tu alcance! + Ana María Polo revela historias de la vida real de personas que sufren de dolor. + Paid Program + + + + Mega desastres + La historia de un mega-desastre y una proyección del mismo si pasara hoy día. + Documentary + Science + + + TVPG + + + + Black Dog + Un camionero descubre que transporta fusiles de asalto AK-47, cuando asaltantes armados intentan robar su carga. + + Patrick Swayze + Meat Loaf + Randy Travis + + 1998 + Movies + Action + + + TVPG + + + 2 + + + + Never Back Down + Jack se ve envuelto en una dura pelea durante una fiesta, donde es vencido y humillado. Avergonzado, decide aprender artes marciales de la mano de un mentor, quien le enseñará disciplina y las claves para llegar a lo más alto. + + Djimon Hounsou + Sean Faris + Amber Heard + + 2008 + Movies + Action + + + TVPG + + + 1 + + + + Noticiero Telemundo 52 fin de semana + Noticias locales y nacionales, reportes de tránsito, el tiempo, entretenimiento y una variedad de segmentos dedicados a la comunidad hispana del sur de California. + News + + + + Noticias Telemundo fin de semana + Noticias Telemundo Fin de Semana es la fuente de información más confiable de la comunidad hispana en los EE.UU. Su galardonado equipo de corresponsales ofrece los últimos acontecimientos. + + Julio Vaqueiro + + News + + + + Exatlón Estados Unidos: All-Stars + Los campeones y subcampeones regresan a las arenas de la competencia más feroz del planeta con un objetivo, ganar el premio de 500 mil dólares, el más alto pagado en la televisión hispana. + Sports + Extreme + + + TVPG + + + + Aladdin + El joven ladronzuelo Aladdin conoce a Jasmine, la hija del sultán. Para conquistarla, acepta el reto de Jafar y emprende la búsqueda de una lámpara mágica que se encuentra dentro de una cueva, en mitad del desierto. + + Will Smith + Mena Massoud + Naomi Scott + + 2019 + Movies + Children + + + TVG + + + 2 + + + + Aladdin + El joven ladronzuelo Aladdin conoce a Jasmine, la hija del sultán. Para conquistarla, acepta el reto de Jafar y emprende la búsqueda de una lámpara mágica que se encuentra dentro de una cueva, en mitad del desierto. + + Will Smith + Mena Massoud + Naomi Scott + + 2019 + Movies + Children + + + TVG + + + 2 + + + + Noticiero Telemundo 52 fin de semana + Noticias locales y nacionales, reportes de tránsito, el tiempo, entretenimiento y una variedad de segmentos dedicados a la comunidad hispana del sur de California. + News + + + + Noticias Telemundo fin de semana + Noticias Telemundo Fin de Semana es la fuente de información más confiable de la comunidad hispana en los EE.UU. Su galardonado equipo de corresponsales ofrece los últimos acontecimientos. + + Julio Vaqueiro + + News + + + + Zona mixta + Toda la información deportiva en un formato dinámico, con una variedad de segmentos e invitados especiales, para comentar los temas más actuales y relevantes, cada fin de semana. + News + Sports + + + TVPG + + + + Caso cerrado + Mensaje fatal; El golazo + Lorena demanda a Claudia por tenderle una trampa que pone en peligro su asilo. Amanda se enamora del hijo de su amante, y tienen un bebé juntos, pero ahora la abuela no reconoce a su nieto. + Reality TV + Legal + + + TV14 + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + ¿Accidente automovilístico? Consulta legal gratuita + Profesionales legales listos para responder sus preguntas. + Paid Program + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Noticiero Telemundo 52 a las 5:00 am + Noticias locales y nacionales, reportes de tránsito, el tiempo, entretenimiento y una variedad de segmentos dedicados a la comunidad hispana del sur de California. + News + + + + Noticiero Telemundo 52 + Noticias locales y nacionales, reportes de tránsito, el tiempo, entretenimiento y una variedad de segmentos dedicados a la comunidad hispana del sur de California. + + Dunia Elvir + + News + + + + Hoy día + El show de las mañanas que ofrece más entretenimiento y diversión, con contenido positivo, útil e inspirador, pero sin dejar de lado los titulares y noticias que la comunidad hispana en Estados Unidos necesita para comenzar el día bien informada. + Talk Shows + Variety + + + + Caso cerrado + Me fabricaron un caso + Roberto hizo que Abigaíl, su hermana, firmara unos documentos para quedarse con el restaurante, según él daba pérdidas, pero ella descubrió que su hermano lo puso a nombre de su novia, no lo vendió. + Reality TV + Legal + + + TV14 + + + + Acceso total + Las últimas noticias sobre el estilo de vida de reconocidas e importantes personalidades del espectáculo. + News Magazine + Performing Arts + + + + Noticiero Telemundo 52 al mediodía + Noticias locales y nacionales, reportes de tránsito, el tiempo, entretenimiento y una variedad de segmentos dedicados a la comunidad hispana del sur de California. + News + + + + Noticias Telemundo mediodía + Un informativo con un estilo único de narrar noticias de una manera atractiva. Se presentan historias locales y nacionales, desde diferentes ángulos de los acontecimientos, y entrevistas. + News + + + TVPG + + + + Acércate a Rocío + Hablar de los problemas es el primer paso para superarlos y, por eso, Rocío trae un programa único para hablar de las preocupaciones de cada día y, en conjunto, encontrar una solución. + Talk Shows + Lifestyle + + + TV14 + + + + En casa con Telemundo + Una oferta ligera, de formato accesible, familiar y cálido que incluye entrevistas con grandes estrellas del espectáculo, invitados especiales, buenas noticias y consejos para una vida sana. + Talk Shows + + + TVPG + + + + La mesa caliente + Un equipo de mujeres audaces y empoderadas debate desde diversas perspectivas sobre el entretenimiento y los temas más candentes y controversiales que afectan a la comunidad latina en Estados Unidos. + News Magazine + Variety + + + TV14 + + + + Al rojo vivo + La revista noticiosa que define la agenda de la televisión en español en EE. UU. Se caracteriza por ofrecer, antes que nadie, historias que cautivan al público hispano y por presentarlas en un formato innovador que resalta el aspecto humano. + Talk Shows + News Magazine + + + + Noticiero Telemundo 52 a las 5:00 pm + Noticias locales, nacionales e internacionales sobre temas de inmigración, política, economía, reportes de tránsito y clima entre otros temas de importancia para la comunidad latina en el área de Los Ángeles. + News + + + + Noticiero Telemundo 52 a las 5:30 pm + Las últimas noticias nacionales y locales, fotos y videos de Los Ángeles, California. + News + + + + Noticiero Telemundo 52 a las 6:00 pm + Noticias de nivel local, nacional e internacional sobre temas de inmigración, política, economía, reportes de tránsito y clima entre otros temas de importancia para la comunidad Latina en el área de Los Ángeles. + News + + + + Noticias Telemundo + Julio Vaqueiro presenta Edición Noticias Telemundo, la fuente de información más confiable de la comunidad hispana en EE.UU. Sus corresponsales ofrecen las últimas noticias y entrevistas. + News + + + + Exatlón Estados Unidos: All-Stars + Drama en las arenas + El equipo Azul considera necesario establecer los límites del respeto en la competencia. Los Rojos llegan al circuito más feroces que nunca. Hay problemas para designar a los nuevos capitanes. + Sports + Extreme + + + TVPG + + + + Vuelve a mí + La hora del matriarcado + El abogado lee el testamento y la repartición de los bienes no es lo que algunos esperaban, solo una persona tiene el poder para decidir. Braulio, cegado por la ambición, pierde los estribos. + + William Levy + Kimberly Dos Ramos + Ferdinando Valencia + + Soaps + Drama + + + TV14 + + + + Secretos de sangre + Atrapada in fraganti + Parla intenta de manera secreta saber la identidad de Eyup, pero la sorprenden. Derya sospecha que Pars está muerto, Ilgaz no tiene cómo desmentirlo. Ozget declara y queda bajo custodia. + + Kaan Urgancioglu + Pinar Deniz + Hüseyin Avni Danyal + + Drama + + + TV14 + + + + Noticiero Telemundo 52 a las 11:00 pm + Noticias de nivel local, nacional e internacional sobre temas de inmigración, política, economía, reportes de tránsito y clima entre otros temas de importancia para la comunidad Latina en el área de Los Ángeles. + + Ana Patricia Candiani + Edgar Muñoz + + News + + + + Noticias Telemundo en la noche + Noticias Telemundo en la Noche presenta las últimas noticias de Estados Unidos y el mundo. Arantxa Loizaga trae la información más relevante de todo lo que necesita saber al final del día. + News + + + + Betty en NY + El montaje + Corre el rumor de que Betty se fugó con su familia. Ahora, todos quieren descubrir su paradero. En su desesperación, Armando contrata a un detective privado para dar con su gran amor. + + Elyfer Torres + Erick Elías + Sabrina Seara + + Soaps + Comedy + + + TV14 + + + + Acércate a Rocío + Hablar de los problemas es el primer paso para superarlos y, por eso, Rocío trae un programa único para hablar de las preocupaciones de cada día y, en conjunto, encontrar una solución. + Talk Shows + Lifestyle + + + TV14 + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Hylastra Gold - Restaura y reconstruye la piel desde adentro + Siente la experiencia de el estándar dorado en los sistemas de contra el envejecimiento en el ácido hialurónico! Hidrata y restaura tu piel para que tu rostro irradie juventud con el súper sistema de Hylastra gold! + Paid Program + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Noticias Telemundo en la noche + Noticias Telemundo en la Noche presenta las últimas noticias de Estados Unidos y el mundo. Arantxa Loizaga trae la información más relevante de todo lo que necesita saber al final del día. + News + + + + Noticiero Telemundo 52 a las 5:00 am + Noticias locales y nacionales, reportes de tránsito, el tiempo, entretenimiento y una variedad de segmentos dedicados a la comunidad hispana del sur de California. + News + + + + Noticiero Telemundo 52 + Noticias locales y nacionales, reportes de tránsito, el tiempo, entretenimiento y una variedad de segmentos dedicados a la comunidad hispana del sur de California. + + Dunia Elvir + + News + + + + Hoy día + El show de las mañanas que ofrece más entretenimiento y diversión, con contenido positivo, útil e inspirador, pero sin dejar de lado los titulares y noticias que la comunidad hispana en Estados Unidos necesita para comenzar el día bien informada. + Talk Shows + Variety + + + + Caso cerrado + Tráfico de sangre + La sobrina de John tiene la hemoglobina baja y se desmaya en el colegio, él sospecha de su hermana Ángela, ya que en momentos difíciles recurre a vender su sangre. + Reality TV + Legal + + + TV14 + + + + Acceso total + Las últimas noticias sobre el estilo de vida de reconocidas e importantes personalidades del espectáculo. + News Magazine + Performing Arts + + + + Noticiero Telemundo 52 al mediodía + Noticias locales y nacionales, reportes de tránsito, el tiempo, entretenimiento y una variedad de segmentos dedicados a la comunidad hispana del sur de California. + News + + + + Noticias Telemundo mediodía + Un informativo con un estilo único de narrar noticias de una manera atractiva. Se presentan historias locales y nacionales, desde diferentes ángulos de los acontecimientos, y entrevistas. + News + + + TVPG + + + + Acércate a Rocío + Hablar de los problemas es el primer paso para superarlos y, por eso, Rocío trae un programa único para hablar de las preocupaciones de cada día y, en conjunto, encontrar una solución. + Talk Shows + Lifestyle + + + TV14 + + + + En casa con Telemundo + Una oferta ligera, de formato accesible, familiar y cálido que incluye entrevistas con grandes estrellas del espectáculo, invitados especiales, buenas noticias y consejos para una vida sana. + Talk Shows + + + TVPG + + + + La mesa caliente + Un equipo de mujeres audaces y empoderadas debate desde diversas perspectivas sobre el entretenimiento y los temas más candentes y controversiales que afectan a la comunidad latina en Estados Unidos. + News Magazine + Variety + + + TV14 + + + + Al rojo vivo + La revista noticiosa que define la agenda de la televisión en español en EE. UU. Se caracteriza por ofrecer, antes que nadie, historias que cautivan al público hispano y por presentarlas en un formato innovador que resalta el aspecto humano. + Talk Shows + News Magazine + + + + Noticiero Telemundo 52 a las 5:00 pm + Noticias locales, nacionales e internacionales sobre temas de inmigración, política, economía, reportes de tránsito y clima entre otros temas de importancia para la comunidad latina en el área de Los Ángeles. + News + + + + Noticiero Telemundo 52 a las 5:30 pm + Las últimas noticias nacionales y locales, fotos y videos de Los Ángeles, California. + News + + + + Noticiero Telemundo 52 a las 6:00 pm + Noticias de nivel local, nacional e internacional sobre temas de inmigración, política, economía, reportes de tránsito y clima entre otros temas de importancia para la comunidad Latina en el área de Los Ángeles. + News + + + + Noticias Telemundo + Julio Vaqueiro presenta Edición Noticias Telemundo, la fuente de información más confiable de la comunidad hispana en EE.UU. Sus corresponsales ofrecen las últimas noticias y entrevistas. + News + + + + Exatlón Estados Unidos: All-Stars + Los campeones y subcampeones regresan a las arenas de la competencia más feroz del planeta con un objetivo, ganar el premio de 500 mil dólares, el más alto pagado en la televisión hispana. + Sports + Extreme + + + TVPG + + + + Vuelve a mí + Mr. presidente + Martha anuncia quién tomará las riendas de la empresa, aunque no se siente cómoda con su decisión. Nuria se convierte en la heroína cuando roban la tienda, para Santiago es tiempo de avanzar. + + William Levy + Kimberly Dos Ramos + Ferdinando Valencia + + Soaps + Drama + + + TV14 + + + + Secretos de sangre + Todos peligran + Frío y calculador, Igor, el jefe de la mafia, asegura que Ilgaz verá morir a toda su familia, a uno por uno, no perdona el crimen de su hijo ni las pérdidas monetarias. Derya halla a Pars. + + Kaan Urgancioglu + Pinar Deniz + Hüseyin Avni Danyal + + Drama + + + TV14 + + + + Noticiero Telemundo 52 a las 11:00 pm + Noticias de nivel local, nacional e internacional sobre temas de inmigración, política, economía, reportes de tránsito y clima entre otros temas de importancia para la comunidad Latina en el área de Los Ángeles. + + Ana Patricia Candiani + Edgar Muñoz + + News + + + + Noticias Telemundo en la noche + Noticias Telemundo en la Noche presenta las últimas noticias de Estados Unidos y el mundo. Arantxa Loizaga trae la información más relevante de todo lo que necesita saber al final del día. + News + + + + Betty en NY + El estratega + Al saber que cometió un crimen, Daniel hace todo lo posible por eliminar las evidencias en su contra, pero descubren su secreto. Nicolás se convierte en el más poderoso de V&M. + + Elyfer Torres + Erick Elías + Sabrina Seara + + Soaps + Comedy + + + TV14 + + + + Acércate a Rocío + Hablar de los problemas es el primer paso para superarlos y, por eso, Rocío trae un programa único para hablar de las preocupaciones de cada día y, en conjunto, encontrar una solución. + Talk Shows + Lifestyle + + + TV14 + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Mejore la salud del corazón y la función cerebral con Krill + Mejore la salud del corazón, la flexibilidad de las articulaciones y la función cerebral con Krill Omega 50+® con CoQ10. + Paid Program + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Noticias Telemundo en la noche + Noticias Telemundo en la Noche presenta las últimas noticias de Estados Unidos y el mundo. Arantxa Loizaga trae la información más relevante de todo lo que necesita saber al final del día. + News + + + + Noticiero Telemundo 52 a las 5:00 am + Noticias locales y nacionales, reportes de tránsito, el tiempo, entretenimiento y una variedad de segmentos dedicados a la comunidad hispana del sur de California. + News + + + + Noticiero Telemundo 52 + Noticias locales y nacionales, reportes de tránsito, el tiempo, entretenimiento y una variedad de segmentos dedicados a la comunidad hispana del sur de California. + + Dunia Elvir + + News + + + + Hoy día + El show de las mañanas que ofrece más entretenimiento y diversión, con contenido positivo, útil e inspirador, pero sin dejar de lado los titulares y noticias que la comunidad hispana en Estados Unidos necesita para comenzar el día bien informada. + Talk Shows + Variety + + + + Caso cerrado + Triángulo caliente + Cuando César vino a EE.UU. dejó a su esposa atrás con la esperanza de traerla, pero no lo hizo. Ahora que Alejandra llegó, descubre que su marido vive con otra mujer y tienen un restaurante. + Reality TV + Legal + + + TV14 + + + + Acceso total + Las últimas noticias sobre el estilo de vida de reconocidas e importantes personalidades del espectáculo. + News Magazine + Performing Arts + + + + Noticiero Telemundo 52 al mediodía + Noticias locales y nacionales, reportes de tránsito, el tiempo, entretenimiento y una variedad de segmentos dedicados a la comunidad hispana del sur de California. + News + + + + Noticias Telemundo mediodía + Un informativo con un estilo único de narrar noticias de una manera atractiva. Se presentan historias locales y nacionales, desde diferentes ángulos de los acontecimientos, y entrevistas. + News + + + TVPG + + + + Acércate a Rocío + Hablar de los problemas es el primer paso para superarlos y, por eso, Rocío trae un programa único para hablar de las preocupaciones de cada día y, en conjunto, encontrar una solución. + Talk Shows + Lifestyle + + + TV14 + + + + En casa con Telemundo + Una oferta ligera, de formato accesible, familiar y cálido que incluye entrevistas con grandes estrellas del espectáculo, invitados especiales, buenas noticias y consejos para una vida sana. + Talk Shows + + + TVPG + + + + La mesa caliente + Un equipo de mujeres audaces y empoderadas debate desde diversas perspectivas sobre el entretenimiento y los temas más candentes y controversiales que afectan a la comunidad latina en Estados Unidos. + News Magazine + Variety + + + TV14 + + + + Al rojo vivo + La revista noticiosa que define la agenda de la televisión en español en EE. UU. Se caracteriza por ofrecer, antes que nadie, historias que cautivan al público hispano y por presentarlas en un formato innovador que resalta el aspecto humano. + Talk Shows + News Magazine + + + + Soundtracks at REDkiva + Corneille + Profiling Corneille, a Rwandan Canadian R&B singer and songwriter who was born in West Germany and sings in French and English; recorded at Chicago's REDkiva lounge. + Music + + + + Strive + A young woman from the projects in Harlem aims to be accepted into Yale but must first push against the world holding her back. + + Danny Glover + Shaylin Becton + Joi Starr + + 2019 + Movies + Drama + + + + Strive + A young woman from the projects in Harlem aims to be accepted into Yale but must first push against the world holding her back. + + Danny Glover + Shaylin Becton + Joi Starr + + 2019 + Movies + Drama + + + + Letters of Hope + In 1976 apartheid South Africa, a boy learns of his fathers role in the historic letter exchange program. + 2019 + Movies + History + + + + Grandma's House + A young woman recounts how her life changed after she moved in with her grandmother. + + Loretta Devine + Coco Jones + Paige Hurd + + 2016 + Movies + Drama + + + TVG + + + + African Royale + Finding the Dream + As Abimbola adjusts to her new LA surroundings, she reflects on her family's legacy while pursuing her own; despite dealing with body image issues, she accepts an invitation to walk the runway, and soon realizes it's not as easy as she thought. + Regular + + + + African Royale + Redemption & Relief + Bim's experience with runway modeling forces her to consider other options. + Regular + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Music for Wildlife + Money Ostrich + Electronic and acapella singer-songwriter Money Ostrich performs his South African stylings and joins forces with fellow musical artists raising awareness for the most magnificent wildlife on the planet. + Music + Performing Arts + + + + Music for Wildlife + Citizen Deep + Dance music producer and DJ, Soweto born Tivani Mkhombo, popularly known as Citizen Deep, adds his performance in helping raise awareness for the most magnificent wildlife on the planet supported by Lupita Nyong'o, Davido, Jackie Chan. 2023. + Music + Performing Arts + + + + Africa Soundstage + Kenge Kenge + Featured artist Kenge Kenge from Kenya. + Music + + + TVPG + + + + What Makes a Man + Gender-based Violence + Join Ayanda Makayi in this powerful MTV Shuga documentary as he questions true masculinity in South Africa in the face of skyrocketing cases of gender-based violence. + + Ayanda Makayi + + Documentary + + + + What Makes a Man + Breaking the Cycle + Ayanda Makayi questions true masculinity in South Africa in the face of skyrocketing cases of gender-based violence. + + Ayanda Makayi + + Documentary + + + + Music for Wildlife + Money Ostrich + Electronic and acapella singer-songwriter Money Ostrich performs his South African stylings and joins forces with fellow musical artists raising awareness for the most magnificent wildlife on the planet. + Music + Performing Arts + + + + Music for Wildlife + Citizen Deep + Dance music producer and DJ, Soweto born Tivani Mkhombo, popularly known as Citizen Deep, adds his performance in helping raise awareness for the most magnificent wildlife on the planet supported by Lupita Nyong'o, Davido, Jackie Chan. 2023. + Music + Performing Arts + + + + Africa Soundstage + Kenge Kenge + Featured artist Kenge Kenge from Kenya. + Music + + + TVPG + + + + What Makes a Man + Gender-based Violence + Join Ayanda Makayi in this powerful MTV Shuga documentary as he questions true masculinity in South Africa in the face of skyrocketing cases of gender-based violence. + + Ayanda Makayi + + Documentary + + + + What Makes a Man + Breaking the Cycle + Ayanda Makayi questions true masculinity in South Africa in the face of skyrocketing cases of gender-based violence. + + Ayanda Makayi + + Documentary + + + + Sinners Wanted + A pastor's life gets turned upside down when he moves to Washington, D.C., and falls in love with a prostitute. + + Lamman Rucker + Clifton Powell + Traci Braxton + + 2018 + Movies + Drama + + + + Eagle Wings + When a commander is lost behind enemy lines, members of the Nigerian Air Force swear to bring him home safely. The rescue mission leads them into war-torn territory and directly into a terrorist stronghold where loyalties are put to the test. + + Enyinnaya Nwigwe + Femi Jacobs + Yakubu Mohammed + + 2021 + Movies + Action + + + + Music for Wildlife + Kamo Mphela + Kamo Mphela parlayed her high profile as an Amapiano dancer into a musical career combing dance with her magnetic vocals; she has joined Africa's music talent raising awareness for the most magnificent wildlife on the planet. + Music + Performing Arts + + + + Sport Africa + BBC Sport Africa brings the issues, personalities, buzz, key moments, and trends in sport from across the continent. + Sports + Talk Show + + + + Sport Africa + BBC Sport Africa brings the issues, personalities, buzz, key moments, and trends in sport from across the continent. + Sports + Talk Show + + + + What's New? + News, entertainment and current affairs important to tweens and teens, including sports, technology and inspirational people making their mark. + News Magazine + + + + What's New? + News, entertainment and current affairs important to tweens and teens, including sports, technology and inspirational people making their mark. + News Magazine + + + + Music for Wildlife + Cyfred + This concert series introduces audiences to both established and new African musicians while raising awareness for wildlife. + Music + Performing Arts + + + + Music for Wildlife + Nomculo + This concert series introduces audiences to both established and new African musicians while raising awareness for the most magnificent wildlife on the planet; Lupita Nyong'o, Davido, Jackie Chan. + Music + Performing Arts + + + + African Royale + Finding the Dream + As Abimbola adjusts to her new LA surroundings, she reflects on her family's legacy while pursuing her own; despite dealing with body image issues, she accepts an invitation to walk the runway, and soon realizes it's not as easy as she thought. + Regular + + + + African Royale + Redemption & Relief + Bim's experience with runway modeling forces her to consider other options. + Regular + + + + Sylvia + After a man decides to marry, his longtime imaginary friend tries to destroy his peaceful life. + + Zainab Balogun + Chris Attoh + Ini Dima-Okojie + + 2018 + Movies + Thriller + + + + Strive + A young woman from the projects in Harlem aims to be accepted into Yale but must first push against the world holding her back. + + Danny Glover + Shaylin Becton + Joi Starr + + 2019 + Movies + Drama + + + + Letters of Hope + In 1976 apartheid South Africa, a boy learns of his fathers role in the historic letter exchange program. + 2019 + Movies + History + + + + Queen Nanny: Legendary Maroon Chieftainess + The story of the resistance movement of the Jamaican Maroons. + Specials + Documentary + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + 5 Color Fitness + Start your fitness journey working out every morning with our team of trainers on 5 Color Fitness. + Regular + + + + Minjiba Entertains + BBQ Beach Resort + Nigerian food blogger Minjiba Cookey shares African fusion recipes. + Reality TV + Food + + + TVG + + + + Expresso Daily + A South African morning show broadcast live from a penthouse apartment in Sea Point. + Performing Arts + + + TVG + + + + Expresso Daily + A South African morning show broadcast live from a penthouse apartment in Sea Point. + Performing Arts + + + TVG + + + + Traffic + Nurse Sisulu + Shaka relays his suspicions to Lungi; S'bu puts pressure on his new recruit; Songezo and Lungi interview Nurse Sisulu; Roy identifies the weapon used in the attacks; Lungi tries to open up to Songezo. + Drama + + + + Traffic + Lungi's New Suspect + Shaka is released with a warning; Lungi and Songezo go to the hospital; Vergotini trails a suspect; Andiswa finds Nina in a precarious state; questioning a new suspect has an unexpected effect on Lungi. + Drama + + + + Housewives + Double Trouble + Akhona sells her soul to Dragon, only to end up in a worse situation, being locked up in Terrance's office, where she learns his massive secret and his plans to kill Dragon. + Drama + + + + African Royale + Finding the Dream + As Abimbola adjusts to her new LA surroundings, she reflects on her family's legacy while pursuing her own; despite dealing with body image issues, she accepts an invitation to walk the runway, and soon realizes it's not as easy as she thought. + Regular + + + + African Royale + Redemption & Relief + Bim's experience with runway modeling forces her to consider other options. + Regular + + + + Minjiba Entertains + Organic Farm House Foodie Gathering + Nigerian food blogger Minjiba Cookey shares African fusion recipes. + Reality TV + Food + + + TVG + + + + My Design Rules + Episode 7 + It's deadline day for the master bedroom challenge; two of the three duos are done with their rooms, but the last pair is cutting it close. + Home + Reality TV + + + TVG + + + + My Design Rules + Episode 8 + It's time for the duos' clients to check their progress and provide some feedback and suggestions for the rest of the competition. + Home + Reality TV + + + TVG + + + + African Royale + Finding the Dream + As Abimbola adjusts to her new LA surroundings, she reflects on her family's legacy while pursuing her own; despite dealing with body image issues, she accepts an invitation to walk the runway, and soon realizes it's not as easy as she thought. + Regular + + + + African Royale + Redemption & Relief + Bim's experience with runway modeling forces her to consider other options. + Regular + + + + Minjiba Entertains + Organic Farm House Foodie Gathering + Nigerian food blogger Minjiba Cookey shares African fusion recipes. + Reality TV + Food + + + TVG + + + + My Design Rules + Episode 7 + It's deadline day for the master bedroom challenge; two of the three duos are done with their rooms, but the last pair is cutting it close. + Home + Reality TV + + + TVG + + + + My Design Rules + Episode 8 + It's time for the duos' clients to check their progress and provide some feedback and suggestions for the rest of the competition. + Home + Reality TV + + + TVG + + + + The Rising + Florence Griffith Joyner + Florence Griffith Joyner captivated the world with speed and style. But with Flo-Jo there was always a but. + Documentary + Biography + + + TVPG + + + + The Rising + Michael Johnson + Michael Johnson was the athlete of his generation. + Documentary + Biography + + + TVPG + + + + Focus on Africa + Reports and analysis of the day's political, economic and sports news from across Africa. + News + + + + Sport Africa + BBC Sport Africa brings the issues, personalities, buzz, key moments, and trends in sport from across the continent. + Sports + Talk Show + + + + Life Clinic + A weekly factual entertainment show that includes analysis of African health, food and lifestyle trends. + News Magazine + Health + + + + Focus on Africa + Reports and analysis of the day's political, economic and sports news from across Africa. + News + + + + Music for Wildlife + KP Illest + With lyrics about struggle, motivation and success, award-winning Hip Hop artist KP Illest raps about the state of society, produces tracks for young upcoming artists, and joins efforts to raise awareness for magnificent wildlife on the planet. + Music + Performing Arts + + + + Music for Wildlife + Ammo Moses + Heavily influenced by his grandmother's Gospel and grandfather's Jazz, Ammo's sound is described as a soft Electro-R&B to be heard with your eyes closed; the young artist joins efforts to raise awareness for magnificent wildlife on the planet. + Music + Performing Arts + + + + African Royale + Finding the Dream + As Abimbola adjusts to her new LA surroundings, she reflects on her family's legacy while pursuing her own; despite dealing with body image issues, she accepts an invitation to walk the runway, and soon realizes it's not as easy as she thought. + Regular + + + + African Royale + Redemption & Relief + Bim's experience with runway modeling forces her to consider other options. + Regular + + + + What Makes a Man + Breaking the Cycle + Ayanda Makayi questions true masculinity in South Africa in the face of skyrocketing cases of gender-based violence. + + Ayanda Makayi + + Documentary + + + + What Makes a Man + What is Happening Now? + Join Ayanda Makayi in this powerful MTV Shuga documentary as he questions true masculinity in South Africa in the face of skyrocketing cases of gender-based violence. + + Ayanda Makayi + + Documentary + + + + Africa Eye + Sickle Cell: The Enemy Within + At just six months of age, Lea Kilenga was diagnosed with sickle cell. Her parents were told by doctors that she wouldn't reach her teenage years. Instead, Lea has become a beacon of hope for sickle cell sufferers across Africa. + News Magazine + Documentary + + + + Music for Wildlife + KP Illest + With lyrics about struggle, motivation and success, award-winning Hip Hop artist KP Illest raps about the state of society, produces tracks for young upcoming artists, and joins efforts to raise awareness for magnificent wildlife on the planet. + Music + Performing Arts + + + + Music for Wildlife + Ammo Moses + Heavily influenced by his grandmother's Gospel and grandfather's Jazz, Ammo's sound is described as a soft Electro-R&B to be heard with your eyes closed; the young artist joins efforts to raise awareness for magnificent wildlife on the planet. + Music + Performing Arts + + + + African Royale + Finding the Dream + As Abimbola adjusts to her new LA surroundings, she reflects on her family's legacy while pursuing her own; despite dealing with body image issues, she accepts an invitation to walk the runway, and soon realizes it's not as easy as she thought. + Regular + + + + African Royale + Redemption & Relief + Bim's experience with runway modeling forces her to consider other options. + Regular + + + + What Makes a Man + Breaking the Cycle + Ayanda Makayi questions true masculinity in South Africa in the face of skyrocketing cases of gender-based violence. + + Ayanda Makayi + + Documentary + + + + What Makes a Man + What is Happening Now? + Join Ayanda Makayi in this powerful MTV Shuga documentary as he questions true masculinity in South Africa in the face of skyrocketing cases of gender-based violence. + + Ayanda Makayi + + Documentary + + + + Life Clinic + A weekly factual entertainment show that includes analysis of African health, food and lifestyle trends. + News Magazine + Health + + + + Focus on Africa + Reports and analysis of the day's political, economic and sports news from across Africa. + News + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + 5 Color Fitness + Start your fitness journey working out every morning with our team of trainers on 5 Color Fitness. + Regular + + + + Minjiba Entertains + Intimate Lunch for Newly Weds + Minjiba cooks an intimate meal for a newlywed couple at one of Nairobi's most fabulous modern homes; a plantain and prawn starter; triple coconut baked tilapia; a ginger, lime and mango cheesecake. + Reality TV + Food + + + TVG + + + + Expresso Daily + A South African morning show broadcast live from a penthouse apartment in Sea Point. + Performing Arts + + + TVG + + + + Expresso Daily + A South African morning show broadcast live from a penthouse apartment in Sea Point. + Performing Arts + + + TVG + + + + Traffic + Lungi's New Suspect + Shaka is released with a warning; Lungi and Songezo go to the hospital; Vergotini trails a suspect; Andiswa finds Nina in a precarious state; questioning a new suspect has an unexpected effect on Lungi. + Drama + + + + Traffic + Good Advice + Songezo is concerned about Lungi's health; Vergotini makes a discovery; Songezo asks Karabo for help; Karabo gives Lungi advice; S'bu deals out his punishment. + Drama + + + + Housewives + Buried Alive + Terrance orders his goon to bury Akhona alive. While 'dead' Akhona comes face to face with her demons, but she's rescued in the nick of time by Dragon. + Drama + + + + Strive + A young woman from the projects in Harlem aims to be accepted into Yale but must first push against the world holding her back. + + Danny Glover + Shaylin Becton + Joi Starr + + 2019 + Movies + Drama + + + + Lemonade + Zoey, a single mom and aspiring writer, finds the courage to leave a toxic relationship. Not wanting to get tangled in another heartbreak, she fends off all advances until she finds true love in an unexpected place. + + Kunle Remi + Ayoola Ayolola + Mofe Duncan + + 2020 + Movies + Drama + + + + Music for Wildlife + KP Illest + With lyrics about struggle, motivation and success, award-winning Hip Hop artist KP Illest raps about the state of society, produces tracks for young upcoming artists, and joins efforts to raise awareness for magnificent wildlife on the planet. + Music + Performing Arts + + + + The Rising + Michael Johnson + Michael Johnson was the athlete of his generation. + Documentary + Biography + + + TVPG + + + + The Rising + Ibtihaj Muhammad + Ibtihaj Muhammad's pioneering work has inspired Muslim athletes and Wilt Chamberlain. + Documentary + Biography + + + TVPG + + + + Focus on Africa + Reports and analysis of the day's political, economic and sports news from across Africa. + News + + + + SA Inc + Documentary + + + + SA Inc + Documentary + + + + Focus on Africa + Reports and analysis of the day's political, economic and sports news from across Africa. + News + + + + African Royale + Finding the Dream + As Abimbola adjusts to her new LA surroundings, she reflects on her family's legacy while pursuing her own; despite dealing with body image issues, she accepts an invitation to walk the runway, and soon realizes it's not as easy as she thought. + Regular + + + + African Royale + Redemption & Relief + Bim's experience with runway modeling forces her to consider other options. + Regular + + + + Housewives + On Trial + Akhona fails to deliver decisive evidence that will nail Dragon; an unexpected witness comes forward; Summer and Lolo cannot believe that they are in jail for ten years and worry about their families and Akhona's betrayal. + Drama + + + + Housewives + Guilty as Charged + After the failed attempt on Nkosi's life, Dragon fears for his life; he is determined to testify. + Drama + + + + Traffic + Lies + Dini gets a lawyer and his suspect status takes an unexpected turn; the tension in Johnny's marriage reaches breaking point when his lies catch up with him; Isobel seeks comfort in the arms of her priest. + Drama + + + + Traffic + Ketamine + Lungi and Songezo make a connection between a syringe containing ketamine and Johnny. + Drama + + + + African Royale + Finding the Dream + As Abimbola adjusts to her new LA surroundings, she reflects on her family's legacy while pursuing her own; despite dealing with body image issues, she accepts an invitation to walk the runway, and soon realizes it's not as easy as she thought. + Regular + + + + African Royale + Redemption & Relief + Bim's experience with runway modeling forces her to consider other options. + Regular + + + + Housewives + Guilty as Charged + After the failed attempt on Nkosi's life, Dragon fears for his life; he is determined to testify. + Drama + + + + Traffic + Lies + Dini gets a lawyer and his suspect status takes an unexpected turn; the tension in Johnny's marriage reaches breaking point when his lies catch up with him; Isobel seeks comfort in the arms of her priest. + Drama + + + + Traffic + Ketamine + Lungi and Songezo make a connection between a syringe containing ketamine and Johnny. + Drama + + + + Sport Africa + BBC Sport Africa brings the issues, personalities, buzz, key moments, and trends in sport from across the continent. + Sports + Talk Show + + + + Focus on Africa + Reports and analysis of the day's political, economic and sports news from across Africa. + News + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + 5 Color Fitness + Start your fitness journey working out every morning with our team of trainers on 5 Color Fitness. + Regular + + + + Africa on a Plate + Cooking with Lentswe Nigeria + Back in his cozy seaside kitchen in Cape Town, Chef Lentswe Bhengu goes through the steps for creating the delicious dishes gathered during his journey through Nigeria's capital city of Abuja and financial mega-metropolis, Lagos. + Food + + + TVG + + + + Expresso Daily + A South African morning show broadcast live from a penthouse apartment in Sea Point. + Performing Arts + + + TVG + + + + Expresso Daily + A South African morning show broadcast live from a penthouse apartment in Sea Point. + Performing Arts + + + TVG + + + + Traffic + Good Advice + Songezo is concerned about Lungi's health; Vergotini makes a discovery; Songezo asks Karabo for help; Karabo gives Lungi advice; S'bu deals out his punishment. + Drama + + + + Traffic + Holidays + Lungi sends Precious to her mother for the holidays; Andiswa and Nina find it difficult to come to terms with their shared ordeal; Andiswa asks for help; Lungi starts the first of her safety awareness classes. + Drama + + + + Housewives + Double Trouble + Akhona sells her soul to Dragon, only to end up in a worse situation, being locked up in Terrance's office, where she learns his massive secret and his plans to kill Dragon. + Drama + + + + Top + South Africa + Locals and visitors provide the essential information to truly experience South Africa; a brief history and some fun facts about the country's history and inhabitants. + Travel + + + + First Time Africa + Cuba + News and television cameraman Martin Proctor travels to Cuba on a search to find his beloved Cuban cigars and explore the island. + Reality TV + Documentary + + + + My Africa + Lagos + An insider's perspective of the most fascinating places in Africa. + Performing Arts + + + + Amah Knows Best + Nanjing Day 3 + iFani and Lisa explore the area surrounding the Qinghai River; iFani visits a Chinese supermarket; while iFani must prepare for the next city on his adventure, he leaves a piece of his heart in Nanjing. + Food + + + + Top + South Africa + Locals and visitors provide the essential information to truly experience South Africa; a brief history and some fun facts about the country's history and inhabitants. + Travel + + + + First Time Africa + Cuba + News and television cameraman Martin Proctor travels to Cuba on a search to find his beloved Cuban cigars and explore the island. + Reality TV + Documentary + + + + My Africa + Lagos + An insider's perspective of the most fascinating places in Africa. + Performing Arts + + + + Amah Knows Best + Nanjing Day 3 + iFani and Lisa explore the area surrounding the Qinghai River; iFani visits a Chinese supermarket; while iFani must prepare for the next city on his adventure, he leaves a piece of his heart in Nanjing. + Food + + + + The Rising + Ibtihaj Muhammad + Ibtihaj Muhammad's pioneering work has inspired Muslim athletes and Wilt Chamberlain. + Documentary + Biography + + + TVPG + + + + The Rising + Arthur Ashe + Documentary series honoring Black athletes and athletes of color. + Documentary + Biography + + + TVPG + + + + Focus on Africa + Reports and analysis of the day's political, economic and sports news from across Africa. + News + + + + SA Inc + Documentary + + + + Iron Chef America + Flay vs. Hastings + Chef Flay competes with chef Hastings. + Food + + + TVG + + + + Iron Chef America + Garces vs. Becker + Iron chef Jose Garces vs. chef Franklin Becker. + Food + + + TVG + + + + Iron Chef America + Vegas High Rollers: Flay Vs. Sosa + Iron Chef Bobby Flay competes against challenger Angelo Sosa in a fight for the culinary title. The judges for this battle are Hal Rubenstein, Judy Joo and Billy Harris. + Food + + + TVG + + + + Iron Chef America + Garces vs. Bissonnette + Iron Chef Jose Garces faces off against challenger Jamie Bissonnette. Chef Bissonnette; Judy Joo, John T. Edge and Karine Bakhoum are the judges. + Food + + + TVG + + + + Iron Chef America + Flay vs. Hastings + Chef Flay competes with chef Hastings. + Food + + + TVG + + + + Iron Chef America + Garces vs. Becker + Iron chef Jose Garces vs. chef Franklin Becker. + Food + + + TVG + + + + Iron Chef America + Garces vs. Becker + Iron chef Jose Garces vs. chef Franklin Becker. + Food + + + TVG + + + + Iron Chef America + Vegas High Rollers: Flay Vs. Sosa + Iron Chef Bobby Flay competes against challenger Angelo Sosa in a fight for the culinary title. The judges for this battle are Hal Rubenstein, Judy Joo and Billy Harris. + Food + + + TVG + + + + Iron Chef America + Garces vs. Bissonnette + Iron Chef Jose Garces faces off against challenger Jamie Bissonnette. Chef Bissonnette; Judy Joo, John T. Edge and Karine Bakhoum are the judges. + Food + + + TVG + + + + Cut Down Dinner Costs With PowerXL Versa Chef! + Incredible new multi-cooker - Air Fryer, Bread Maker, Slow Cooker, and Oven all in one! + Paid Program + Food + + + + Cut Down Dinner Costs With PowerXL Versa Chef! + Incredible new multi-cooker - Air Fryer, Bread Maker, Slow Cooker, and Oven all in one! + Paid Program + Food + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Honoring America's Heroes + Trace Adkins and Wounded Warrior Dan Nevins share the inspiring journeys of four injured veterans and their families. Find out how you can join Wounded Warrior Project in serving those who have sacrificed so much for us. + Paid Program + + + + Unique Eats + Hand-Held Eats + Rick Bayless celebrates Mexico's most beloved street food and snacks; two brothers bring decadent Italian toasts to one of New York's hippest neighborhoods; a. + + Lee Anne Wong + Amanda Freitag + Tamara Reynolds + + Travel + Food + + + TVG + + + + Unique Eats + Italian + Chef Nate Appleman, brings gourmet savory and dessert pizzas to Pulino's; Sara Jenkins brings Italian street-food to a tiny Lower East side store front. + + Lee Anne Wong + Amanda Freitag + Tamara Reynolds + + Travel + Food + + + TVG + + + + Unique Eats + Extreme Farm To Table + Blue Hill at Stone Barns; Dinners at the Farm; Ubuntu. + + Lee Anne Wong + Amanda Freitag + Tamara Reynolds + + Travel + Food + + + TVG + + + + Unique Eats + Bistro + A hip new restaurant updates French bistro classics; the famous provencal dish bouillabaisse; hearty French countryside dishes; Chef Marc Murphy pays homage to the foods he grew up eating in France and Italy. + + Lee Anne Wong + Amanda Freitag + Tamara Reynolds + + Travel + Food + + + TVG + + + + The Best Thing I Ever Ate + Better with Booze + Alex Guarnaschelli guzzles down beer-battered cheese curds in Chicago while Jason Smith devours boozy bourbon balls in Kentucky; in Wisconsin, Elena Besser proclaims her love for chicken Parmesan with vodka sauce. + Food + + + TVG + + + + The Best Thing I Ever Ate + Ooey Gooey Goodness + Andrew Zimmern pulls apart a melty meatball parmigiana hero in Portland, Ore.; Antonia Lofaso finds a super-soft creme brulee doughnut in Washington, D.C., while Anne Burell heads to the city of sin for a breakfast sandwich. + Food + + + TVG + + + + The Best Thing I Ever Ate + Livin' Large + Geoffrey Zakarian visits New York City for chocolate bread pudding that is too gigantic to comprehend; Simon Majumdar conquers a behemoth burger in California while Beau MacMillan visits Charleston, S.C., for a life-changing fried chicken platter. + Food + + + TVG + + + + The Best Thing I Ever Ate + Mess Hall + Things are about to get messy in the best way possible; Alex Guarnaschelli travels to Washington, D.C., for a beer-battered burger, while Antonia Lofaso visits Los Angeles to let loose on the fattest sub sandwich ever imagined. + Food + + + TVG + + + + Food Paradise + Food Hall Frenzy + Food halls for gourmet eats on the go; there's gravy-smothered fried chicken biscuits and Vietnamese-Cajun cuisine in New Orleans; both New-York-style pizza and ice cream. + Travel + Food + + + TVG + + + + Food Paradise + Mac N' Cheese Paradise + Sharp cheddar mac with meaty chili; five-cheese mac with lobster and truffles; a BBQ mac with pulled pork. + Travel + Food + + + TVPG + + + + Carnival Eats + Pulp Kitchen + Noah Cappe is out at the Kansas State Fair to experience a well-brined plate of nachos. + Travel + Food + + + TVG + + + + Carnival Eats + Seoul Dip Sisters + At the California Mid-Winter Fair and Fiesta, Noah samples a Korean twist on a French dip, a Diablo Dog, and the Supreme Samoa doughnut stack; the Henderson, Nev., St. Patrick's Day Festival has Blasted Irish Burgers and gold-infused Leprechaun Mac. + Travel + Food + + + TVG + + + + Carnival Eats + Doughboy Does Dallas + Noah Cappe tackles doughy delights at the state fair of Texas in Dallas, starting with the Dallas Hot, then the latest take on the classic carnival corndog. + Travel + Food + + + TVG + + + + Carnival Eats + How the West Was Yum + At the Kansas State Fair; chicken wings get a fair-friendly treatment at the Oklahoma State Fair. + Travel + Food + + + TVG + + + + Carnival Eats + Orange is the New Snack + Exploring the orange groves of California at the Cloverdale Citrus Fair; the bacon churro cheeseburger is a meaty mouthful sandwiched between two churros; spicy ramen fries combine crispy fries, crispy noodles and other tasty Japanese toppings. + Travel + Food + + + TVG + + + + Carnival Eats + Smokey and the Slamwich + Noah Cappe heads to the Arkansas State Fair for the Arkansas Slamwich, the Stuffed Thanksgiving Taco and more; a savory funnel cake called the Chick 'N' Cake, deep-fried rice pudding and other delights. + Travel + Food + + + TVG + + + + Bizarre Foods America + Twin Cities + Old fashioned is combined with modern innovation to create some interesting comfort foods in Minneapolis and St. Paul. + Travel + Food + + + TVPG + + + + Bizarre Foods America + New Orleans + Bizarre Foods America visits the Big Easy where the food and the culture are a mix of Southern traditions and modern influence. Andrew eats stuffed pig stomach and smoked raccoon served with a side of live jazz. + Travel + Food + + + TVPG + + + + Bizarre Foods: Delicious Destinations + Lancaster County + Andrew celebrates Pennsylvania Dutch favorites, like shoofly pie. + Travel + Food + + + TVG + + + + Bizarre Foods: Delicious Destinations + Merida + Andrew Zimmern explores the cuisine of Merida, Mexico; he tries traditional slow-roasted pork, pork-stuffed cheese balls in Yucatan sauces and much more. + Travel + Food + + + TVG + + + + Bizarre Foods: Delicious Destinations + Las Vegas + Andrew goes on a gastronomic tour of Las Vegas, from quail breast stuffed with foie gras and mouthwatering Waygu steaks to classic veal Parmigiana and tantalizing Thai. + Travel + Food + + + TVG + + + + Bizarre Foods: Delicious Destinations + New Hampshire Seacoast + Andrew explores the bounty of New Hampshire's coastal waters. + Travel + Food + + + TVG + + + + Man v. Food + Indianapolis, IN + Casey Webb travels to Indianapolis to battle a beast of a tenderloin sandwich; along the way, he chows down on 38-ounces of succulent prime rib at a 100-year-old steakhouse and enjoys a tasty farm-fresh twist on macaroni and cheese. + Travel + Food + + + TVG + + + + Man v. Food + Atlanta, GA + Casey Webb's cross-country culinary crusade brings him to Atlanta for a decadent doughnut brunch, beastly barbecue and a five-pound mountain of tater tot nachos. + Travel + Food + + + TVG + + + + Man v. Food + Duluth, MN + Casey Webb heads to Duluth, Minn., where he tastes the city's best fish fry, visits a specialty sandwich shop and attempts to finish a three-pound platter of pie and ice cream in 20 minutes or less. + Travel + Food + + + TVG + + + + Man v. Food + Worcester, MA + Casey Webb lands in Worcester, Mass., where he slurps down some radical ramen, indulges in peanut butter cup French toast and takes on a rack of deep-fried ribs with the heat of a million Scoville units. + Travel + Food + + + TVG + + + + Man v. Food + New Orleans, LA + Casey Webb heads to New Orleans to taste the best of the Big Easy, including a mammoth po' boy and a four-pound sundae packed with eight large scoops of ice cream and smothered with eight different toppings. + Travel + Food + + + TVG + + + + Yum and Yummer + Fair Foods + The best part of a fair isn't the rides, it's the food, and Eddie Jackson shares the best dishes from fairs across the country; from deep-fried delights to oversized desserts, these dishes have everyone coming back to the fair year after year. + Christmas + Food + + + TVG + + + + Yum and Yummer + Fruity Foodie + Eddie Jackson shines the spotlight on fruit, one of the unsung heroes when it comes to food; fruit has the ability to elevate just about any meal. + Christmas + Food + + + TVG + + + + Yum and Yummer + Carb Overload + Eddie Jackson gears up for generous spreads and carb-on-carb dishes guaranteed to make the mouth water and the jaw drop. Carb lovers around the world rejoice. + Christmas + Food + + + TVG + + + + The Best Thing I Ever Ate + Appetizers + Crispy calamari; French onion soup in a dumpling form. + Food + + + TVG + + + + The Best Thing I Ever Ate + Miami + Miami cuisine, from stone crabs at Joe's, to the lamb shank at Sardinia; Fratelli La Bufala turns out pillowy calzones; Ola offers a pear granita; a trifecta of treats at Michaels Genuine and the chocolate peanut butter s'more from Prime 112. + Food + + + TVG + + + + Man v. Food + Duluth, MN + Casey Webb heads to Duluth, Minn., where he tastes the city's best fish fry, visits a specialty sandwich shop and attempts to finish a three-pound platter of pie and ice cream in 20 minutes or less. + Travel + Food + + + TVG + + + + Man v. Food + Worcester, MA + Casey Webb lands in Worcester, Mass., where he slurps down some radical ramen, indulges in peanut butter cup French toast and takes on a rack of deep-fried ribs with the heat of a million Scoville units. + Travel + Food + + + TVG + + + + Man v. Food + New Orleans, LA + Casey Webb heads to New Orleans to taste the best of the Big Easy, including a mammoth po' boy and a four-pound sundae packed with eight large scoops of ice cream and smothered with eight different toppings. + Travel + Food + + + TVG + + + + Yum and Yummer + Fair Foods + The best part of a fair isn't the rides, it's the food, and Eddie Jackson shares the best dishes from fairs across the country; from deep-fried delights to oversized desserts, these dishes have everyone coming back to the fair year after year. + Christmas + Food + + + TVG + + + + Yum and Yummer + Fruity Foodie + Eddie Jackson shines the spotlight on fruit, one of the unsung heroes when it comes to food; fruit has the ability to elevate just about any meal. + Christmas + Food + + + TVG + + + + Yum and Yummer + Carb Overload + Eddie Jackson gears up for generous spreads and carb-on-carb dishes guaranteed to make the mouth water and the jaw drop. Carb lovers around the world rejoice. + Christmas + Food + + + TVG + + + + The Best Thing I Ever Ate + Appetizers + Crispy calamari; French onion soup in a dumpling form. + Food + + + TVG + + + + The Best Thing I Ever Ate + Miami + Miami cuisine, from stone crabs at Joe's, to the lamb shank at Sardinia; Fratelli La Bufala turns out pillowy calzones; Ola offers a pear granita; a trifecta of treats at Michaels Genuine and the chocolate peanut butter s'more from Prime 112. + Food + + + TVG + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Cindy Crawford and Ellen Pompeo share secrets + Join Cindy Crawford and Ellen Pompeo as they discuss their busy lives and the breakthrough skin care discovery that keeps them looking their best. Take a trip to the stunning French countryside to see a rare French melon that defies aging. + Paid Program + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Get Fit with Total Gym, Risk Free + Get in the best shape of your life with the Total Gym 30 Day Risk-Free Trial Offer. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Car Repair Secrets! + Save thousands on car repairs. + Paid Program + + + + Carnival Eats + Berry Delicious + Noah samples seven berry sweet dishes; he discovers that berries are good on everything from savory Strawberry Arugula Pizza to the perfectly named Strawberry Waffle Bomb. + Travel + Food + + + TVG + + + + Carnival Eats + Bowls and Rolls + Noah visits the Norfolk County Fair in Ontario, Canada and enjoys the Thanksgiving bowl and butter bacon poutine; the Columbia County Fair in South Carolina serves gator nuggets with swamp sacue, the hog on a log and angel and devil dogs. + Travel + Food + + + TVG + + + + Brunch at Bobby's + A Royal Brunch + Bobby's Open Faced Egg Salad Sandwiches; watercress, cucumber & smoked salmon salad; homemade crumpets with whipped butter and orange-blueberry marmalade; strawberries filled with clotted cream. + Instructional + Food + + + TVG + + + + Brunch at Bobby's + Brunch Bites Across Europe + Calabrian scrambled eggs with jalapeno pesto bruschetta; buckwheat crepes with ham, gruyere and caramelized onions; mini pumpkin churros with a silky smooth chocolate-espresso dipping sauce. + Instructional + Food + + + TVG + + + + Brunch at Bobby's + Open House Brunch + Orange Spiced Crumb Cake; citrus blueberry salad with minted sugar; creamy scrambled eggs with dill havarti; country ham and toasted croutons; sweet potato hash browns with green onion vinaigrette; wine fruit sparkler bar. + Instructional + Food + + + TVG + + + + Brunch at Bobby's + Marrakesh Express Brunch + Mouthwatering Moroccan brunch; oatmeal with honey roasted apricots; eggs with flatbread and goat cheese; coffee granita parfait; apricot Mimosa. + Instructional + Food + + + TVG + + + + Burgers, Brew & 'Que + Motor City's Mouthwatering Meats + Michael takes reality television star Kendra Wilkinson on a whirlwind food and beer tour of Detroit to introduce her to one of the country's most resurgent cities; enjoys microbrews, Coney Island dogs, spicy Korean sliders and pulled pork enchiladas. + Travel + Food + + + TVG + + + + Burgers, Brew & 'Que + Sweet Treats and Savory Meats + Michael Symon starts in Boston with triple-processed pork belly that's cured, brined and smoked; tender braised lamb shoulder amps up a traditional breakfast hash; fresh, local cinnamon rolls as buns for an insanely sweet and savory burger. + Travel + Food + + + TVG + + + + Burgers, Brew & 'Que + Family Feast + Smoked turkey and sweet potato fried pie; a burger is stacked over a foot tall with three beef patties, mozzarella sticks, jalapeno poppers, onion rings, bacon, ham, eggs; chile-rubbed duck breast. + Travel + Food + + + TVG + + + + Burgers, Brew & 'Que + Scary Good Smoked Meat + Michael Symon munches on fish tacos with house-made blue corn tortillas and a meaty Mexican pizza; a Colorado lamb patty is a remake of a traditional Hawaiian hangover cure; pulled pork and brisket sandwich; barbecue rib-meat chimichanga. + Travel + Food + + + TVG + + + + Carnival Eats + Okla-hoagie! + Noah Cappe starts his journey out west to the Arizona State Fair; a beautifully grilled burger packed with flamin' hot cheese puffs; a Watermelon Taco. + Travel + Food + + + TVG + + + + Carnival Eats + A-Frying in Winter + Saint Paul Winter Carnival; the Nordic Waffle Pizza and the super-indulgent Biergarten Cupcake; Lil' Corn Cakes and an ooey-gooey S'Mores Chimney Stack. + Travel + Food + + + TVG + + + + Carnival Eats + Beach Eats + Noah Cappe goes surfside for a coastal fairground adventure; he samples creative beach eats from midway vendors all around the country. + Travel + Food + + + TVG + + + + Carnival Eats + Carnival Classics Gone Wild + Host Noah Cappe crosses the country in search of carnival classics gone wild! From a pumped up corndog at the Porter County Fair to an out of this world funnel cake-blooming onion mashup; candy apple gone crazy; a cotton candy burrito. + Travel + Food + + + TVG + + + + Man v. Food + Boulder, Colorado + Casey Webb's tasty trek across America brings him to Boulder, Colo., for a bourbon burger blast, a gooey campfire classic and an insanely hot pizza loaded with three layers of ghost pepper. + Travel + Food + + + TVG + + + + Man v. Food + Oakland, California + Casey Webb pays a visit to Oakland, Calif., for a towering banana split, a hot-off-the-grill molcajete, and spring roll warfare as he faces the 3.5-pound Lumpia Challenge. + Travel + Food + + + TVPG + + + + Man v. Food + Las Vegas, Nevada + Casey Webb makes his way to Las Vegas to gamble on grilled cheese, tackle a towering sushi creation, and fight his way through the 4.5-pound Kasespatzle Challenge at a German beer hall. + Travel + Food + + + TVPG + + + + Man v. Food + Tucson, Arizona + Casey Webb's eating expedition brings him to Tucson, Arizona, where he faces off with a cheese and chile tamale pie with pulled pork, avocado hollandaise and more; a bacon-wrapped hot dog taco; the rib-diculous challenge of two full racks of ribs. + Travel + Food + + + TVG + + + + Man v. Food + Santa Barbara, California + Casey Webb's tasty trek takes him to Santa Barbara, California, where he first meets up with a tri-tip steak sandwich with homemade barbecue sauce and apple horseradish; steamed local crab; eight cheeseburger sliders with a portion of tot-chos. + Travel + Food + + + TVG + + + + Man v. Food + Palm Springs, CA + Casey Webb's cross-country culinary quest takes him back in time to Palm Springs, Calif., where he comes face-to-face with a three-pound skyscraper of a sandwich loaded with every deli meat imaginable. + Travel + Food + + + TVG + + + + Good Eats + Milk Made + Alton dissects milk. + Food + Instructional + + + TVG + + + + Good Eats + Dill-icious + Pickles. + Food + Instructional + + + TVG + + + + Good Eats + Alton Crown Affair + Alton shows how to confidently prepare a crown roast of lamb. + Food + Instructional + + + TVG + + + + Good Eats + Et Tu Mame + Alton uses the soybean in a various recipes. + Food + Instructional + + + TVG + + + + Bizarre Foods: Delicious Destinations + Detroit + Exploring iconic foods in Detroit including Middle Eastern shawarma, soul food classics, Detroit-style pizza and city chicken. + Travel + Food + + + TVG + + + + Bizarre Foods: Delicious Destinations + Manhattan + From juicy pastrami on rye and black and white cookies to hearty spaghetti with meatballs and smoked fish, Andrew Zimmern finds that Manhattan's foods have earned their place as culinary staples in an ever-changing city. + Travel + Food + + + TVG + + + + Bizarre Foods: Delicious Destinations + Cardiff + From hearty lamb stew with root veggies to a seafood breakfast and cheesy toast, Andrew Zimmern explores the thrifty cuisine of Cardiff, Wales, that outlasted lean times to become modern, favorite fare. + Travel + Food + + + TVG + + + + Bizarre Foods: Delicious Destinations + Venice + Andrew Zimmern highlights the culinary treasures of Venice, Italy, including paper-thin cuts of beef Carpaccio, espresso-soaked tiramisu and cuttlefish stewed in its own ink. + Travel + Food + + + TVG + + + + Bizarre Foods America + NYC Overnight: Bizarre at All Hours + Andrew Zimmern stays up all night in the city that never sleeps to uncover the secrets of feeding hungry New Yorkers. + Travel + Food + + + TVPG + + + + Bizarre Foods America + Alaska's Inside Passage + Andrew Zimmern gets a whole new taste of Alaska's Inside Passage. Fresh sea cucumbers; salmon eggs; fish heads. + Travel + Food + + + TVPG + + + + Bizarre Foods: Delicious Destinations + Marseille + From beef stew to French pizza for edible icons from Marseille. + Travel + Food + + + TVG + + + + Bizarre Foods: Delicious Destinations + Hong Kong + Hong Kong's dim sum to congee to roast goose; street carts, noodle houses and many restaurants in a city with seven million residents. + Travel + Food + + + TVG + + + + The Zimmern List + San Francisco + Andrew heads to San Francisco, a wonderland for those who love food; he samples fresh produce at a farmers' market, shares a secret hot spot in the Tenderloin District and enjoys fresh crab and shrimp salad at Swan Oyster Depot. + Travel + Food + + + TVG + + + + The Zimmern List + Seattle + Andrew travels to Seattle, a city with a spirit of invention when it comes to dining out; he visits the International District for a bite at Seattle's oldest sushi restaurant, then he ends the trip with the essential clams and chowder meal. + Travel + Food + + + TVG + + + + Bizarre Foods: Delicious Destinations + Cardiff + From hearty lamb stew with root veggies to a seafood breakfast and cheesy toast, Andrew Zimmern explores the thrifty cuisine of Cardiff, Wales, that outlasted lean times to become modern, favorite fare. + Travel + Food + + + TVG + + + + Bizarre Foods: Delicious Destinations + Venice + Andrew Zimmern highlights the culinary treasures of Venice, Italy, including paper-thin cuts of beef Carpaccio, espresso-soaked tiramisu and cuttlefish stewed in its own ink. + Travel + Food + + + TVG + + + + Bizarre Foods America + NYC Overnight: Bizarre at All Hours + Andrew Zimmern stays up all night in the city that never sleeps to uncover the secrets of feeding hungry New Yorkers. + Travel + Food + + + TVPG + + + + Bizarre Foods America + Alaska's Inside Passage + Andrew Zimmern gets a whole new taste of Alaska's Inside Passage. Fresh sea cucumbers; salmon eggs; fish heads. + Travel + Food + + + TVPG + + + + Bizarre Foods: Delicious Destinations + Marseille + From beef stew to French pizza for edible icons from Marseille. + Travel + Food + + + TVG + + + + Bizarre Foods: Delicious Destinations + Hong Kong + Hong Kong's dim sum to congee to roast goose; street carts, noodle houses and many restaurants in a city with seven million residents. + Travel + Food + + + TVG + + + + The Zimmern List + San Francisco + Andrew heads to San Francisco, a wonderland for those who love food; he samples fresh produce at a farmers' market, shares a secret hot spot in the Tenderloin District and enjoys fresh crab and shrimp salad at Swan Oyster Depot. + Travel + Food + + + TVG + + + + The Zimmern List + Seattle + Andrew travels to Seattle, a city with a spirit of invention when it comes to dining out; he visits the International District for a bite at Seattle's oldest sushi restaurant, then he ends the trip with the essential clams and chowder meal. + Travel + Food + + + TVG + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + Paid Program + + + TV14 + + + + Emeril Forever Pans + Replace your everyday non-stick pans with Emeril Forever Pans! Where the non-stick coating will stay as non-stick as the first day you use it! Learn how you can also receive a FREE Smokeless Grill with this exclusive offer! + Paid Program + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + Car Repair Secrets! + Save thousands on car repairs. + Paid Program + + + + Carnival Eats + State Fair Meadowlands; Gardendale Magnolia Festival + Freak show of food; sweet potato pie ice cream. + Travel + Food + + + TVG + + + + Carnival Eats + Hawaii Fried Dough + Noah Cappe arrives in the Aloha State for the 'Iolani Fair; The school fundraiser fair in Honolulu features Hawaiian-style fried dough in the Malasada Ice Cream Sandwich and Sweet Roll Sliders; two mashups: the Cubano Pizza and the PB and J Dog. + Travel + Food + + + TVG + + + + Cheap Eats + Capital City Cuisine + Ali starts the day stacked with an ooey-gooey pastrami breakfast sandwich; he gets schooled in the ways of the Greek with a heaping helping of moussaka; a muffin uprising tides Ali over until he rolls up a spicy sushi burrito. + Travel + Food + + + TVG + + + + Cheap Eats + A Buzz in Brooklyn + New York's biggest borough still has authentic neighborhood diners; Ali kicks things off with chocolate chip pumpkin pancakes; a fried eggplant parmesan sandwich; a slice of chocolate s'mores pie; Filipino chicken adobo. + Travel + Food + + + TVG + + + + Cheap Eats + Killer Eats in KC + An innovative breakfast flatbread topped with gravy, scrambled eggs and cheddar; a spin on the classic Vietnamese banh mi sandwich that's full of juicy pork; a doughnut cone overflowing with soft serve ice cream. + Travel + Food + + + TVG + + + + Cheap Eats + Great Lakes Craves + Ali visits Grand Rapids and samples a twilight French toast with creamy anglaise sauce; for lunch, Ali enjoys a juicy pork torta de jamon and snacks on spicy Moroccan chicken wings; a double-patty blue cheese-stuffed burger. + Travel + Food + + + TVG + + + + Good Eats + Squid Pro Quo 2 + Alton Brown ships out aboard a squid research vessel in search of answers and a few appetizers; stuffed squid, fried calamari and seaside squid salad. + Food + Instructional + + + TVG + + + + Good Eats + American Classic 1: Spinach Salad + Spinach salad. + Food + Instructional + + + TVG + + + + Good Eats + Gills Gone Wild + Alton shows how properly and simply prepared wild salmon is worth the extra cost. + Food + Instructional + + + TVG + + + + Good Eats + The Proof Is In the Pudding + Alton examines the use of alcohol in food preparation. + Food + Instructional + + + TVG + + + + The Best Thing I Ever Ate + Totally Fried + Food Network stars talk about their favorite fried foods. + Food + + + TVG + + + + The Best Thing I Ever Ate + Bar-B-Que + Food Network stars reveal the best barbecue they've ever eaten. + Food + + + TVG + + + + The Best Thing I Ever Ate + Pizza + Food Network stars give their personal take on where to find the best pizza. + Food + + + TVG + + + + The Best Thing I Ever Ate + Filled With Envy + Delicacies that Duff, Tyler Florence and Sandra Lee wish they had thought of. + Food + + + TVG + + + + The Best Thing I Ever Ate + Personal Favorites + Food Network stars reveal their favorite foods, and talk about what's on their plates when they aren't the ones behind the stove. + Food + + + TVG + + + + The Best Thing I Ever Ate + On a Date + Alex Guarnaschelli enjoys gnocchi in New York City; Jeff Mauro swoons over a 14-karat-gold cake in Chicago; a date with Johnny Weir and Tara Lipinski as they light the night on fire with simply perfect pasta. + Food + + + TVG + + + + Man's Greatest Food + Soul Food + Roger Mooking joins chefs in their own kitchens as they honor the traditions of comforting and flavorful soul food dishes; including ribs, catfish, barbecue, oxtail, pork chops and cornbread. + Reality TV + Food + + + TVG + + + + Man's Greatest Food + Italian + Roger Mooking counts the best Italian dishes in the U.S.; chefs share authentic recipes and tips for making an Italian feast. + Reality TV + Food + + + TVG + + + + Man's Greatest Food + Smoked + Roger Mooking crisscrosses America to count down 15 of the best steaks, wings, Reubens and more; salt-cured country ham to smoked fish chowder, bacon bourbon rib-eye steak to smoky s'mores pancakes. + Reality TV + Food + + + TVG + + + + Man v. Food + St. Louis, MO + Casey Webb visits St. Louis, where he tries a 4-pound meatball and cooks barbecue with a blowtorch; Casey tackles a 29-inch New York-style pizza so massive he'll need the help of a partner to take it down. + Travel + Food + + + TVG + + + + Man v. Food + Saint Paul, MN + Casey Webb's latest detour brings him to St. Paul, Minn., for an indoor food truck park, a timeless diner and a colossal crepe piled high with Thai ice cream. + Travel + Food + + + TVG + + + + Man v. Food + Chicago, IL + Casey Webb travels to Chicago for some epic Windy City eats, including a massive triple-threat pork sandwich and a challenge featuring a two-pound double bacon cheeseburger and two pounds of Irish nacho cheese fries. + Travel + Food + + + TVG + + + + Man v. Food + Des Moines, IA + Casey Webb heads to Des Moines, Iowa, where he'll attempt to eat an overstuffed pulled pork sandwich slathered in a scorpion pepper hot sauce in 10 minutes. + Travel + Food + + + TVG + + + + Man v. Food + Grand Rapids, MI + Casey Webb travels to Grand Rapids, Mich., where he takes on a five-pound tray loaded with chili dogs, French fries, beer-battered onion rings, and a 20-ounce soda. + Travel + Food + + + TVG + + + + Man v. Food + Hartford, Connecticut + Casey Webb makes his way to Hartford, Conn., for a sweet and savory burger with no bounds, a multitiered tower packing a Puerto Rican punch, and a spicy battle with the Taco Roulette Challenge. + Travel + Food + + + TVG + + + + Man v. Food + New Brunswick, NJ + Adam Richman visits New Brunswick, N.J., to try a massive, triple-decker sandwich as well as a 2-pound stromboli and a Fat Sandwich Challenge at Rutgers University. + Travel + Food + + + TVG + + + + Man v. Food + Tucson + Adam Richman visits Tucson, Ariz., to try a hot dog wrapped in bacon, a giant platter of Mexican food and a massive burger challenge at Lindy's Diner on 4th. + Travel + Food + + + TVG + + + + Anthony Bourdain: No Reservations + Tokyo + Sushi, kendo and Japanese flower arranging in Tokyo. + Travel + Food + + + TVPG + + + + Anthony Bourdain: No Reservations + Egypt + Tony visits with Egyptian locals to get a taste for what it means to be Egyptian. + Travel + Food + + + TVPG + + + + Man v. Food + Grand Rapids, MI + Casey Webb travels to Grand Rapids, Mich., where he takes on a five-pound tray loaded with chili dogs, French fries, beer-battered onion rings, and a 20-ounce soda. + Travel + Food + + + TVG + + + + Man v. Food + Hartford, Connecticut + Casey Webb makes his way to Hartford, Conn., for a sweet and savory burger with no bounds, a multitiered tower packing a Puerto Rican punch, and a spicy battle with the Taco Roulette Challenge. + Travel + Food + + + TVG + + + + Man v. Food + New Brunswick, NJ + Adam Richman visits New Brunswick, N.J., to try a massive, triple-decker sandwich as well as a 2-pound stromboli and a Fat Sandwich Challenge at Rutgers University. + Travel + Food + + + TVG + + + + Man v. Food + Tucson + Adam Richman visits Tucson, Ariz., to try a hot dog wrapped in bacon, a giant platter of Mexican food and a massive burger challenge at Lindy's Diner on 4th. + Travel + Food + + + TVG + + + + Anthony Bourdain: No Reservations + Tokyo + Sushi, kendo and Japanese flower arranging in Tokyo. + Travel + Food + + + TVPG + + + + Anthony Bourdain: No Reservations + Egypt + Tony visits with Egyptian locals to get a taste for what it means to be Egyptian. + Travel + Food + + + TVPG + + + + Cook Family Size Meals Faster + Emeril's biggest air fryer oven combines 10 kitchen appliances into one endlessly versatile countertop cooker with 2 cooking zones and a full menu of custom presets. + Paid Program + + + + Cut Down Dinner Costs With PowerXL Versa Chef! + Incredible new multi-cooker - Air Fryer, Bread Maker, Slow Cooker, and Oven all in one! + Paid Program + Food + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Emeril Forever Pans + Replace your everyday non-stick pans with Emeril Forever Pans! Where the non-stick coating will stay as non-stick as the first day you use it! Learn how you can also receive a FREE Smokeless Grill with this exclusive offer! + Paid Program + + + + Joint Gel provides total comfort with daily joint care + Joint Gel delivers support for joint comfort & flexibility with a patented matrix of krill oil, astaxanthin, and hyaluronic acid - in as few as 7 days! + Paid Program + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + Carnival Eats + Burgers and Bombs + The South Florida Fair in West Palm Beach has wacky takes on fairground classics; The Waffle Burger, Donut Philly Cheesesteak and 'Zanado Fries; Noah attends the National Western Stock Show and Rodeo in Denver, where he's introduced to The F Bomb. + Travel + Food + + + TVG + + + + Carnival Eats + How the West Was Yum + At the Kansas State Fair; chicken wings get a fair-friendly treatment at the Oklahoma State Fair. + Travel + Food + + + TVG + + + + Unwrapped + 21st Century Chocolate + Companies that are putting a new twist on chocolate desserts. + Documentary + + + TVG + + + + Unwrapped + Fire It Up + Barbecue favorites such as KC Masterpiece, B&G Foods and Bar-B-Q Fritos. + Documentary + + + TVG + + + + Unwrapped + Happy Birthday + Swiss Colony edible birthday hat; Dreyer's turn ice cream into cake; Hallmark. + Documentary + + + TVG + + + + Unwrapped + I'm Stuffed + Cupcakes with sweet creamy centers; how to pack a burrito; stuffed pasta shells. + Documentary + + + TVG + + + + Carnival Eats + Illinois State Fair; Erie County Fair + Noah gets lucky in Illinois with the Horseshoe Sandwich, and gets hot for Buffalo Chicken Pizza in New York. + Travel + Food + + + TVG + + + + Carnival Eats + Fully Loaded + BBQ baked potatoes; fries topped with lobster; double Decker colossal grilled cheese; ice cream sundae with funnel cake. + Travel + Food + + + TVG + + + + Carnival Eats + From Livestock to Lemons + Noah visits the Houston Livestock Show and Rodeo and samples the Texas Chili Burger and the Big Texas Barbecue Baked Potato; Lemonade Days in Dunwoody, Ga., for the Rise & Shine Pizza; a sushi burrito; the wacky Funnel Cake Dog. + Travel + Food + + + TVG + + + + Carnival Eats + From Chowchilla-Madera to Ciao! + Noah arrives at the Deep Pit Barbeque in Chowchilla, Calif., and tries the funnel cake cheeseburger and baja avocado taco; St. Michael's Italian Festival in New Jersey for zeppole; a cheesecake known as Cake 'n Bacon; The Hoboken Fat Boy. + Travel + Food + + + TVG + + + + Bizarre Foods America + Charleston + Andrew gets a taste of the rewards from hard work and discovers the true flavor of Charleston's food scene. + Travel + Food + + + TVPG + + + + Bizarre Foods America + Iowa + Andrew Zimmern finds out that there's a lot more than meat and potatoes on the table in Iowa; Pork brains with spring onion kimchi; a stew made from a sheep's head. + Travel + Food + + + TVPG + + + + Bizarre Foods America + The Ozarks + Andrew Zimmern makes a trip to the Ozarks where people are still living off the land and making the most of it by combining old traditions with new techniques. + Travel + Food + + + TVPG + + + + Bizarre Foods America + San Francisco Bay: Cricket Cookies & Engineered Eggs + Andrew Zimmern visits San Francisco's Bay Area; Cookies made with crickets; eggs made out of plants; lamb's head soup. + Travel + Food + + + TVPG + + + + Bizarre Foods America + Portland + Elk heart tartar with a raw turkey egg; bourbon smoked cherries and bone marrow; goose liver with cacao. + Travel + Food + + + TVPG + + + + Bizarre Foods America + Rhode Island: Chowing Gaggers & Stuffies + Andrew visits Rhode Island where old traditions meet the experimental to create clam cakes and monkfish liver mousse. + Travel + Food + + + TVPG + + + + Man Fire Food + Feasts Over Fire in Hawaii + Big fires, big feasts, and custom grills in Hawaii. + Food + + + TVG + + + + Man Fire Food + Fireplace Feasts + Roasted racks of ribs in indoor fireplace at Salem Cross Inn; lobster clambake steamed in outdoor fireplace at Foster's Clambake. + Food + + + TVG + + + + Man Fire Food + Rib-a-Licious + Leatha's Bar-b-cue in Hattiesburg, Mississippi, for pork and beef ribs; Hometown Bar-B-Que in New York for jerk baby back ribs and Korean ribs. + Food + + + TVG + + + + Man Fire Food + Puerto Rican Grilling + Pork at a former gas station; an outdoor kitchen with a smoker and grill; a whole pig with spices; stuffed chickens. + Food + + + TVG + + + + Food Paradise + Dynamic Duos + A spotlight on perfect food pairings that tantalize the taste buds. + Travel + Food + + + TVG + + + + Food Paradise + Flavor Fiesta! + From spicy Chilean pork ribs in the Pacific Northwest to a Puerto Rican pork-tacular down in Georgia, diners are finding south-of-the-border flavor without ever leaving the United States. + Travel + Food + + + TVG + + + + Canadian Finals Rodeo + 2023 CFR: Round 5 + Live coverage of performance five at the 2023 Canadian Finals Rodeo at the Westerner Park in Red Deer, Alberta. + Sports + Rodeo + + + + Turquoise Circuit Finals Rodeo + Performance 3 + LIVE ProRodeo coverage of Performance 3 at the Turquoise Circuit Finals Rodeo in Camp Verde, Arizona. + Sports + Rodeo + + + + Canadian Finals Rodeo + 2023 CFR: Round 5 + Live coverage of performance five at the 2023 Canadian Finals Rodeo at the Westerner Park in Red Deer, Alberta. + Sports + Rodeo + + + + Canadian Finals Rodeo + 2023 CFR: Round 5 + Live coverage of performance five at the 2023 Canadian Finals Rodeo at the Westerner Park in Red Deer, Alberta. + Sports + Rodeo + + + + Road to the NFR + Team Roping + The Cowboy Channel hosts breakdown the 2023 rodeo season as we head into the 2023 Wrangler National Finals Rodeo in Las Vegas. + Sports + Rodeo + + + TVG + + + + Red Steagall West of Wall Street + Fred Fellows + Fred Fellows, one of the most celebrated western artists in American history. + Travel + History + + + TVG + + + + Chris Cox Horsemanship + Nancy Hudson + Special guest Nancy Hudson, head chef of Chris' Triangle C Ranch, talks about the importance of food on the ranch. + Sports + Equestrian + + + TVG + + + + Red Steagall West of Wall Street + Fred Fellows + Fred Fellows, one of the most celebrated western artists in American history. + Travel + History + + + TVG + + + + Chris Cox Horsemanship + Nancy Hudson + Special guest Nancy Hudson, head chef of Chris' Triangle C Ranch, talks about the importance of food on the ranch. + Sports + Equestrian + + + TVG + + + + Craig Cameron + Correctly Riding the Trot + Craig demonstrates with another rider techniques to improve riding at the trot. + Regular + + + TVG + + + + Cowboy Church + Pastor Bill Young preaches at the 2023 Cowboy Churches' Revival Roundup. + Religious + + + TVG + + + + In Search of the Lord's Way + Phil Sanders leads a weekly worship service at the Church of Christ in Edmond, Okla. + Religious + + + TVG + + + + Jack Hibbs + Real Life Ministry's Pastor Jack Hibbs proclaims Biblical truth impacting culture, with a clear understanding of God's word. + Religious + + + + Michael Youssef + Leading The Way ministries and Dr. Michael Youssef share the Gospel across the globe, equipping believers to grow into a deeper walk with Christ. + Religious + + + TVG + + + + Turning Point With Dr. David Jeremiah + Dr. David Jeremiah's goal is to deliver the unchanging Word of God to an ever-changing world. + Religious + + + TVG + + + + Harvest With Greg Laurie + Religious + + + TVG + + + + Allen Jackson Ministries + From World Outreach Church in Murfreesboro, Tenn., pastor Allen Jackson mentors and challenges individuals with a biblical message that helps them become more fully devoted followers of Jesus Christ. + Religious + + + + Getting to Know Your Bible + Speaker Billy Lambert, Way of Life Studio, Jackson, Tennessee; Bible lesson. + Specials + Religious + + + + The John Ankerberg Show + John Ankerberg presents contemporary spiritual issues and defends biblical Christian answers. + Religious + + + + Love Worth Finding + Dr. Adrian Rogers teaches from Memphis, Tennessee. + Religious + + + TVG + + + + Being Your Best with Trey Johnson + In a world with so many different definitions of success, discover what true success looks like and know more about God. + Local + + + + Zero In + Brett Nierengarten and Mike Snow break down stats and rides of some of Rodeo's biggest names. + Regular + + + + Cowboys of Thunder + What Better Place to Call Home + There can be unrest in paradise when the party is primo; the castle is defended, and a show is provided; Big Cedar adventure is a weekend to remember. + Sports + Documentary + + + + PBR Now + Highlights of weekly events throughout the PBR. + Sports + Rodeo + + + + Pre-Show: Canadian Finals Rodeo + Pre-Show: Round 6 + LIVE Pre-Show coverage for Performance 6 of the 2023 Canadian Finals Rodeo at the Westerner Park in Red Deer, Alberta. + Sports + Rodeo + + + + Canadian Finals Rodeo + 2023 CFR: Round 6 + LIVE coverage of Performance 6 at the 2023 Canadian Finals Rodeo at the Westerner Park in Red Deer, Alberta. + Sports + Rodeo + + + + Cook's Rodeo Days + Xtreme Bulls + LIVE ProRodeo coverage of the Xtreme Bulls Special at Cooks Rodeo Days in Lubbock, Texas. + Sports + Rodeo + + + + Turquoise Circuit Finals Rodeo + Performance 3 + LIVE ProRodeo coverage of Performance 3 at the Turquoise Circuit Finals Rodeo in Camp Verde, Arizona. + Sports + Rodeo + + + + Pro Rodeo Tonight + Host Justin McKee keeps viewers up to date on the latest rodeo action. + Sports + Rodeo + + + TVG + + + + Canadian Finals Rodeo + 2023 CFR: Round 6 + LIVE coverage of Performance 6 at the 2023 Canadian Finals Rodeo at the Westerner Park in Red Deer, Alberta. + Sports + Rodeo + + + + Cinch World's Toughest Rodeo + FFA Edition: Performance 4 + LIVE coverage from Performance 4 of the 2023 Cinch World's Toughest Rodeo: FFA Edition at the Indiana Farmer's Coliseum in Indianapolis, Indiana. + Sports + Rodeo + + + + Cinch World's Toughest Rodeo + FFA Edition: Performance 4 + LIVE coverage from Performance 4 of the 2023 Cinch World's Toughest Rodeo: FFA Edition at the Indiana Farmer's Coliseum in Indianapolis, Indiana. + Sports + Rodeo + + + + Pro Rodeo Tonight + Host Justin McKee keeps viewers up to date on the latest rodeo action. + Sports + Rodeo + + + TVG + + + + Red Steagall West of Wall Street + Fort Reno + Fort Reno is the last of the great remount stations. + Travel + History + + + TVG + + + + Chris Cox Horsemanship + 5 Star Pad + Chris Cox & Terry Moore talk and give tips on the 5 Star Pad. + Sports + Equestrian + + + TVG + + + + Craig Cameron + Correctly Riding the Lope + Craig demonstrates with another rider techniques to improve riding at the lope. + Regular + + + TVG + + + + Gentle Giants + Draft Horse Assistants + The team behind the scenes that contribute to the drivers success at Draft Horse Shows. + Sports + Equestrian + + + TVG + + + + Cinch High School Rodeo Tour + Payson Event Ctr., Payson, AZ: Part 1 + 2017 Arizona High School Rodeo Finals from Payson Event Center, Payson, Arizona, Part 1. + Sports + Rodeo + + + TVG + + + + Gentle Giants + Young Living Percherons + The Percheron Ambassadors of Young Living Essential Oils at the Fall Festival in Mona, Utah. + Sports + Equestrian + + + TVG + + + + Cinch High School Rodeo Tour + National Junior High Finals Rodeo from James E. Ward Ag Center, Lebanon, TN Pt. 5. + Sports + Rodeo + + + TVG + + + + Life Today With James Robison + James and Betty Robison host guests who speak on a variety of topics, offering hope and help. + Talk Shows + Religious + + + TVG + + + + Turning Point With Dr. David Jeremiah + Dr. David Jeremiah's goal is to deliver the unchanging Word of God to an ever-changing world. + Religious + + + TVG + + + + Dr. Robert Jeffress: Pathway to Victory + The teaching ministry of Dr. Robert Jeffress. + Religious + + + TVG + + + + Red Steagall West of Wall Street + Cheyenne Frontier Days + Cheyenne Frontier Days in Cheyenne, Wyo. + Travel + History + + + TVG + + + + Chris Cox Horsemanship + Case Cox + Case Cox: A day in a life at the Triangle C Ranch. + Sports + Equestrian + + + TVG + + + + Craig Cameron + 2016 Craig Cameron Cowboy Challenge Part 3 + Week three of the Decathlon of Horsemanship - the Craig Cameron Cowboy Challenge. + Regular + + + TVG + + + + Gentle Giants + Young Living Percherons + The Percheron Ambassadors of Young Living Essential Oils at the Fall Festival in Mona, Utah. + Sports + Equestrian + + + TVG + + + + Cinch High School Rodeo Tour + National Junior High Finals Rodeo from James E. Ward Ag Center, Lebanon, TN Pt. 5. + Sports + Rodeo + + + TVG + + + + Women's Pro Rodeo Today + WPRA World Finals + Continuation of the WPRA world finals in Waco, Texas. + Sports + Rodeo + + + + Horse of the West + 2021 Best Little Derby in the West + The Ford Idaho Center in Nampa, Idaho. + Sports + + + TVG + + + + Turquoise Circuit Finals Rodeo + Performance 1 + ProRodeo coverage of Performance 1 at the Turquoise Circuit Finals Rodeo in Camp Verde, Ariz. + Sports + Rodeo + + + + Wilderness Circuit Finals + Performance 1 + ProRodeo coverage from Performance 1 of the Wildnerness Circuit Finals in Heber, Utah. + Sports + Rodeo + + + + Western States Ranch Rodeo + Performance 1 + LIVE ProRodeo coverage of Performance 1 at the Western States Ranch Rodeo in Winnemucca, Nevada. + Sports + Rodeo + + + + Western Sports Roundup + Steve Kenyon recaps rodeo action from the Wrangler National Finals Rodeo. + Sports + Rodeo + + + TVPG + + + + Western Sports Roundup + Steve Kenyon recaps rodeo action from the Wrangler National Finals Rodeo. + Sports + Rodeo + + + TVPG + + + + Canadian Finals Rodeo + 2023 CFR: Round 6 + LIVE coverage of Performance 6 at the 2023 Canadian Finals Rodeo at the Westerner Park in Red Deer, Alberta. + Sports + Rodeo + + + + Turquoise Circuit Finals Rodeo + Performance 1 + ProRodeo coverage of Performance 1 at the Turquoise Circuit Finals Rodeo in Camp Verde, Ariz. + Sports + Rodeo + + + + Western States Ranch Rodeo + Performance 1 + LIVE ProRodeo coverage of Performance 1 at the Western States Ranch Rodeo in Winnemucca, Nevada. + Sports + Rodeo + + + + Western States Ranch Rodeo + Performance 1 + LIVE ProRodeo coverage of Performance 1 at the Western States Ranch Rodeo in Winnemucca, Nevada. + Sports + Rodeo + + + + Best of America by Horseback + Belle Meade Stables and Riding Club + Riding horses at the historic Belle Meade Plantation on the James River in Virginia. + Travel + Animals + + + TVG + + + + The American Rancher + Superior Spotlights California Customers + Show spotlights outstanding Superior Livestock Customers on the West Coast. + Animals + + + TVG + + + + Red Steagall West of Wall Street + Cheyenne Frontier Days + Cheyenne Frontier Days in Cheyenne, Wyo. + Travel + History + + + TVG + + + + Chris Cox Horsemanship + Case Cox + Case Cox: A day in a life at the Triangle C Ranch. + Sports + Equestrian + + + TVG + + + + Craig Cameron + 2016 Craig Cameron Cowboy Challenge Part 3 + Week three of the Decathlon of Horsemanship - the Craig Cameron Cowboy Challenge. + Regular + + + TVG + + + + Gentle Giants + Young Living Percherons + The Percheron Ambassadors of Young Living Essential Oils at the Fall Festival in Mona, Utah. + Sports + Equestrian + + + TVG + + + + Cinch High School Rodeo Tour + National Junior High Finals Rodeo from James E. Ward Ag Center, Lebanon, TN Pt. 5. + Sports + Rodeo + + + TVG + + + + Gentle Giants + Rose Parade 2018 + The draft horses in the Rose Parade and at Equestfest 2018. + Sports + Equestrian + + + TVG + + + + Cinch High School Rodeo Tour + 2017 National Junior High Finals Rodeo from James E. Ward Ag Center, Lebanon, Tennessee, Part 2. + Sports + Rodeo + + + TVG + + + + Life Today With James Robison + James and Betty Robison host guests who speak on a variety of topics, offering hope and help. + Talk Shows + Religious + + + TVG + + + + Turning Point With Dr. David Jeremiah + Dr. David Jeremiah's goal is to deliver the unchanging Word of God to an ever-changing world. + Religious + + + TVG + + + + Dr. Robert Jeffress: Pathway to Victory + The teaching ministry of Dr. Robert Jeffress. + Religious + + + TVG + + + + Red Steagall West of Wall Street + Prescott, Arizona & Bill Nebeker + Red visits Prescott, Ariz., one of the oldest cow towns in the West as well as home to one of the oldest rodeos; Red visits sculptor Bill Nebeker's studio. + Travel + History + + + TVG + + + + Chris Cox Horsemanship + Lead Changes + Chris works his 3-year old horse to demonstrate proper lead changes. + Sports + Equestrian + + + TVG + + + + Craig Cameron + Taking Care of Your Horse + Equi Sure and Cattle Activ. + Regular + + + TVG + + + + Gentle Giants + Rose Parade 2018 + The draft horses in the Rose Parade and at Equestfest 2018. + Sports + Equestrian + + + TVG + + + + Cinch High School Rodeo Tour + 2017 National Junior High Finals Rodeo from James E. Ward Ag Center, Lebanon, Tennessee, Part 2. + Sports + Rodeo + + + TVG + + + + Women's Pro Rodeo Today + WPRA World Finals 3 of 4 + WPRA World Finals in Waco, Texas; barrel racing and roping competition highlights; professional tips; superstar profile. + Sports + Rodeo + + + TVG + + + + Turquoise Circuit Finals Rodeo + Performance 2 + LIVE ProRodeo coverage of Performance 2 at the Turquoise Circuit Finals Rodeo in Camp Verde, Arizona. + Sports + Rodeo + + + + Wilderness Circuit Finals + Performance 2 + ProRodeo coverage from Performance 2 of the Wildnerness Circuit Finals in Heber, Utah. + Sports + Rodeo + + + + Western States Ranch Rodeo + Performance 2 + ProRodeo coverage of Performance 2 at the Western States Ranch Rodeo in Winnemucca, Nevada. + Sports + Rodeo + + + + Western Sports Roundup + Steve Kenyon recaps rodeo action from the Wrangler National Finals Rodeo. + Sports + Rodeo + + + TVPG + + + + TalkShopLive + Retail Roundup + TalkShopLive presents the ultimate western lifestyle shopping experience just in time for the holidays. Viewers can text a special code to shop from brands like Corral, Roots Run Deep, South Texas Tack, Glitzy Cowgirl, Diba, Mauritius, and more. + Performing Arts + + + + Zero In + Brett Nierengarten and Mike Snow break down stats and rides of some of Rodeo's biggest names. + Regular + + + + Road to the NFR + Road to the NFR: Saddle Bronc + The Cowboy Channel hosts breakdown the 2023 rodeo season as we head into the 2023 Wrangler National Finals Rodeo in Las Vegas. + Sports + Rodeo + + + TVG + + + + NFR Title Fights: Saddle Bronc + The Cowboy Channel crew will be looking back at the Saddle Bronc event, round by round, of the 2022 National Finals Rodeo. + Specials + Sports + + + + Western States Ranch Rodeo + Performance 2 + ProRodeo coverage of Performance 2 at the Western States Ranch Rodeo in Winnemucca, Nevada. + Sports + Rodeo + + + + The American Rancher + What's New at Superior + Superior's ever-growing reach in today's cattle market. + Animals + + + TVG + + + + Red Steagall West of Wall Street + Prescott, Arizona & Bill Nebeker + Red visits Prescott, Ariz., one of the oldest cow towns in the West as well as home to one of the oldest rodeos; Red visits sculptor Bill Nebeker's studio. + Travel + History + + + TVG + + + + Chris Cox Horsemanship + Lead Changes + Chris works his 3-year old horse to demonstrate proper lead changes. + Sports + Equestrian + + + TVG + + + + Craig Cameron + Taking Care of Your Horse + Equi Sure and Cattle Activ. + Regular + + + TVG + + + + Gentle Giants + Rose Parade 2018 + The draft horses in the Rose Parade and at Equestfest 2018. + Sports + Equestrian + + + TVG + + + + Cinch High School Rodeo Tour + 2017 National Junior High Finals Rodeo from James E. Ward Ag Center, Lebanon, Tennessee, Part 2. + Sports + Rodeo + + + TVG + + + + Gentle Giants + Draft Horses in Arizona + Troy Haviland breeds shires in the Arizona desert, and artist Cori Troutt paints majestic draft horses. + Sports + Equestrian + + + TVG + + + + Cinch High School Rodeo Tour + 2017 National Junior High Finals Rodeo from James E. Ward Ag Center, Lebanon, Tennessee, Part 3. + Sports + Rodeo + + + TVG + + + + Life Today With James Robison + James and Betty Robison host guests who speak on a variety of topics, offering hope and help. + Talk Shows + Religious + + + TVG + + + + Turning Point With Dr. David Jeremiah + Dr. David Jeremiah's goal is to deliver the unchanging Word of God to an ever-changing world. + Religious + + + TVG + + + + Dr. Robert Jeffress: Pathway to Victory + The teaching ministry of Dr. Robert Jeffress. + Religious + + + TVG + + + + Red Steagall West of Wall Street + Pecos Pueblo + Red visits Pecos National Park, an ancient Indian pueblo in New Mexico. + Travel + History + + + TVG + + + + Chris Cox Horsemanship + Excerpts of Horsemanship 1: Basics + Law enforcement officers advance their horsemanship skills. + Sports + Equestrian + + + TVG + + + + Craig Cameron + Seasoning Your Horse + Techniques top hands use every day. + Regular + + + TVG + + + + TalkShopLive + Retail Roundup + TalkShopLive presents the ultimate western lifestyle shopping experience just in time for the holidays. Viewers can text a special code to shop from brands like Corral, Roots Run Deep, South Texas Tack, Glitzy Cowgirl, Diba, Mauritius, and more. + Performing Arts + + + + Turquoise Circuit Finals Rodeo + Performance 3 + LIVE ProRodeo coverage of Performance 3 at the Turquoise Circuit Finals Rodeo in Camp Verde, Arizona. + Sports + Rodeo + + + + Road to the NFR + Road to the NFR: Saddle Bronc + The Cowboy Channel hosts breakdown the 2023 rodeo season as we head into the 2023 Wrangler National Finals Rodeo in Las Vegas. + Sports + Rodeo + + + TVG + + + + NFR Title Fights: Saddle Bronc + The Cowboy Channel crew will be looking back at the Saddle Bronc event, round by round, of the 2022 National Finals Rodeo. + Specials + Sports + + + + Western Sports Roundup + Steve Kenyon recaps rodeo action from the Wrangler National Finals Rodeo. + Sports + Rodeo + + + TVPG + + + + Sister Wives + With bonus scenes; Kody takes Janelle out for her birthday and talks about wanting to start over; Meri reveals to Kody that she's moving her clothing business to Utah but not giving up on their relationship. + + + + Sister Wives + With bonus scenes; Janelle, Christine and their older kids gather for dinner, and things get intense as they express their frustrations about Kody and Robyn; Christine celebrates her ex-anniversary with friends. + + + + Sister Wives + With bonus scenes; Christine is excited to celebrate her first Easter since divorcing Kody; Janelle says her life is better without Kody but would consider polygamy again; Meri reflects on marrying so young. + + + + Sister Wives + With bonus scenes; Christine is ecstatic when Mykelti tells her she's having twins; Meri reveals that Kody finally admitted he no longer wants a relationship with her, and she is forced to consider ending her marriage for good. + + + + Sister Wives + With bonus scenes; Kody takes Janelle out for her birthday and talks about wanting to start over; Meri reveals to Kody that she's moving her clothing business to Utah but not giving up on their relationship. + + + + Sister Wives + With bonus scenes; Janelle, Christine and their older kids gather for dinner, and things get intense as they express their frustrations about Kody and Robyn; Christine celebrates her ex-anniversary with friends. + + + + Sister Wives + With bonus scenes; Janelle, Christine and their older kids gather for dinner, and things get intense as they express their frustrations about Kody and Robyn; Christine celebrates her ex-anniversary with friends. + + + + Sister Wives + With bonus scenes; Christine is excited to celebrate her first Easter since divorcing Kody; Janelle says her life is better without Kody but would consider polygamy again; Meri reflects on marrying so young. + + + + Sister Wives + With bonus scenes; Christine is ecstatic when Mykelti tells her she's having twins; Meri reveals that Kody finally admitted he no longer wants a relationship with her, and she is forced to consider ending her marriage for good. + + + + Body Bizarre + A young girl with a crippling leg defect undergoes life-changing surgery; a man is born with his heart outside his rib cage; a karate champion battles a rare skin disorder. + + + + Body Bizarre + An unknown syndrome ages two boys rapidly; a man with a basketball sized tumor gets surgery; a woman with a giant leg finds love. + + + + Dr. Pimple Popper + Terry's nose growth has prevented him from meeting his grandkids; Remi has alligator-like skin and is not used to taking care of herself; Austin has an embarrassing birthmark right next to his eyelid; Mary Jo has a throbbing bump on her neck. + + + + Dr. Pimple Popper + Brittney has hundreds of tiny bumps over her chest that have destroyed her confidence; John has a nose the size of a plum and leans on his local family clinic for help; Dr. Lee's friend Raquel drops in and brings out her wild side. + + + + Dr. Pimple Popper + Margarita is a matriarch who has been hiding her armpit lump from her family; Kayla is an aspiring musician with a promising career that her painful eczema has brought to a halt; Bradley has a concerning growth that looks like raw meat on his leg. + + + + Dr. Pimple Popper + Elizabeth's head is covered with giant cauliflower-shaped bumps; Jamaal has been growing a strange knob on the left side of his butt since he was just a boy; Donna's cracking, bleeding skin condition has aged her face and kept her from being social. + + + + My Big Fat Fabulous Life + The house is abuzz after the family dance-off; Whitney refuses to lose to her new niece; Whitney's nephew introduces her to a new potential suitor; Glenn and Angie finally discuss the nature of their relationship. + + + + My Big Fat Fabulous Life + Whitney throws caution to the wind and plans a party for her 39th birthday, but there are hurricanes on the horizon; before she becomes a spinster, Whitney agrees to a blind date; meeting with Jessica and Lennie, Whitney makes a shocking discovery. + + + + My Big Fat Fabulous Life + Whitney's search for Mr. Right seems bleaker than ever, and she fears being alone forever; after finding her father grief-stricken at the cemetery, Whitney and Hunter present travel destinations to Glenn for his big bucket list trip. + + + + Sister Wives + Janelle, Christine and their older kids gather for dinner, and things get intense as they express their frustrations about Kody and Robyn; Christine celebrates her ex-anniversary with friends. + + + + Sister Wives + Christine is excited to celebrate her first Easter since divorcing Kody; Janelle says her life is better without Kody, but reveals she would consider polygamy again; after learning Aurora is interested in a boy, Meri reflects on marrying so young. + + + + Sister Wives + Christine is ecstatic when Mykelti tells her she's having twins; Meri reveals that while out for their anniversary, Kody finally admitted he no longer wants a relationship with her, and she is forced to consider ending her marriage for good. + + + + 90 Day: The Last Resort + Fallout from the strip club and the boat threatens relationships on the eve of the commitment ceremony; the final group session reveals further setbacks; the couples decide whether to recommit or separate as the retreat comes to an end. + + + + 90 Day Fiancé + Jasmine tries to regain Gino's trust; Ashley grows skeptical when Manuel's family bombards her phone; Nikki demands intimacy from Justin; Sophie's reveal jeopardizes her engagement; Nick prepares for Devin to meet his family for the first time. + + + + 90 Day Fiancé + With Clayton's mom living in his closet, he worries about his fiancée's arrival; Sophie and Rob question each other's loyalty; Nikki gives Justin an ultimatum; Devin and Nick reunite in Korea; Jasmine blames a rash breakout on Gino's dirty apartment. + + + + Sister Wives + Christine throws a 1950s-themed party for her 50th birthday and admits she's dating again; Kody checks out Janelle's new apartment but realizes she's planning a future without him; Meri worries about big changes in her life. + + + + 90 Day Fiancé + Patrick and John, Kara and Guillermo, Loren and Alexei, and Tim and Veronica are watching along, and no one is holding back. + + + + 90 Day Fiancé + With Clayton's mom living in his closet, he worries about his fiancée's arrival; Sophie and Rob question each other's loyalty; Nikki gives Justin an ultimatum; Devin and Nick reunite in Korea; Jasmine blames a rash breakout on Gino's dirty apartment. + + + + Sister Wives + Christine throws a 1950s-themed party for her 50th birthday and admits she's dating again; Kody checks out Janelle's new apartment but realizes she's planning a future without him; Meri worries about big changes in her life. + + + + 90 Day Fiancé + Patrick and John, Kara and Guillermo, Loren and Alexei, and Tim and Veronica are watching along, and no one is holding back. + + + + 1000-Lb. Sisters + Chris faces a weigh-in to get approved for bariatric surgery; with Tammy's weight at a standstill, Amy and Michael make a life-altering decision; the family's fears about Tammy's choice in partners are realized. + + + + 1000-Lb. Sisters + While Chris makes progress after his surgery, Tammy gets discouraging news; Amy plans a unique bash for Tammy's 35th birthday; the family excitedly plan their first vacation together with all five siblings, but concerns rise about Tammy's mobility. + + + + The Jennifer Hudson Show + Alfonso Ribeiro ("Dancing With the Stars," "America's Funniest Home Videos"); a first-grade teacher goes viral after she creates a mock trip to Mexico for her students in celebration of Hispanic Heritage Month. + + + + Four Weddings + Jenn leaves her wedding decor to the pros; Michelle makes a bouquet from vintage brooches; Ali has a black light rave; Renee's go from heartfelt to hilarious. + + + + Four Weddings + Brittany unites her fish and her family; Jamie swaps her wedding cake for a pizza; Lauren greets her guests in a stretch Hummer; Britten holds her night in a Chicago Skyscraper. + + + + Four Weddings + Lydia's big day has music from a historic pipe organ and maracas; Jennifer's day is all about her Portuguese heritage; Deanna shows her love with hand written notes on river rocks; Aimee surprises guests with a late night snack. + + + + Extreme Cheapskates + Learning how love does not cost a thing, from reusing funeral flowers to used hotel sheets and thrift store lingerie. + + + + Extreme Cheapskates + Penny-pinchers try to hit the open road without opening their wallets; making their own boots; looking for quarters at an arcade; cooking breakfast on a car engine; packing food to avoid buffets. + + + + Sister Wives + Christine is ecstatic when Mykelti tells her she's having twins; Meri reveals that while out for their anniversary, Kody finally admitted he no longer wants a relationship with her, and she is forced to consider ending her marriage for good. + + + + Sister Wives + Christine throws a 1950s-themed party for her 50th birthday and admits she's dating again; Kody checks out Janelle's new apartment but realizes she's planning a future without him; Meri worries about big changes in her life. + + + + The Family Chantel + Mediation with Lidia does not go the way any of them expected; Alejandro fulfills a promise to Nicole; Winter brings a new attitude to her latest date; Chantel comes clean to Karen about the state of her marriage. + + + + The Family Chantel + Chantel and Pedro attempt to live under the same roof as a separated couple; Alejandro gives Nicole an ultimatum; Chantel struggles with what she knows she needs to do; Pedro visits an attorney to get more information. + + + + The Family Chantel + Pedro moves out of the house after asking Chantel for a divorce; Chantel turns to her family and tells them everything about her failed marriage; when Pedro discovers Chantel has run off after emptying their bank account, he sets out to find her. + + + + The Family Chantel + Pedro finds Chantel and an argument between the two ensues; Chantel returns from vacation and has Winter and Karen move into the house while Pedro hits his breaking point and makes the decision to file divorce papers. + + + + 90 Day Fiancé: The Other Way + Patrick and John, Loren and Alex, Emily and Kobe, and Debbie and Julian are watching along, and no one is holding back. + + + + 90 Day Fiancé: The Other Way + Tim and Veronica, Emily and Kobe, Jen and Myra, and Robert and Anny are watching along, and no one is holding back. + + + + 90 Day Fiancé: The Other Way + Sarper reveals a secret about his past; Kenny and Armando meet with a potential surrogate; Brandan's mom tells Mary and Brandan that she's worried about the couple's future; Holly reaches a breaking point. + + + + The Family Chantel + Chantel and Pedro attempt to move on, and neither of them can help but reflect on their shared past. As their divorce comes closer to finalizing, Pedro and Chantel are forced to see each other for the first time since he left. + + + + 90 Day Fiancé: The Other Way + Sarper reveals a secret about his past; Kenny and Armando meet with a potential surrogate; Brandan's mom tells Mary and Brandan that she's worried about the couple's future; Holly reaches a breaking point. + + + + Welcome to Plathville + Kim nervously shares her dating news with Moriah and Lydia; Moriah decides to unblock and text Ethan and is taken aback by his response; Olivia hits her breaking point when she realizes Ethan is up to his old ways. + + + + 90 Day Fiancé: The Other Way + Sarper reveals a secret about his past; Kenny and Armando meet with a potential surrogate; Brandan's mom tells Mary and Brandan that she's worried about the couple's future; Holly reaches a breaking point. + + + + The Family Chantel + Chantel and Pedro attempt to move on, and neither of them can help but reflect on their shared past. As their divorce comes closer to finalizing, Pedro and Chantel are forced to see each other for the first time since he left. + + + + 90 Day Fiancé: The Other Way + Sarper reveals a secret about his past; Kenny and Armando meet with a potential surrogate; Brandan's mom tells Mary and Brandan that she's worried about the couple's future; Holly reaches a breaking point. + + + + Welcome to Plathville + Kim nervously shares her dating news with Moriah and Lydia; Moriah decides to unblock and text Ethan and is taken aback by his response; Olivia hits her breaking point when she realizes Ethan is up to his old ways. + + + + 1000-Lb. Sisters + The family vacation starts off terribly when Tammy refuses to enter the cabin; Chris hopes he's lost enough weight to fulfill a life-long dream. + + + + 1000-Lb. Sisters + After a rift on the family vacation, Amy returns home and drops a bomb on Tammy; while Amy focuses on her new life, Tammy makes a decision that takes her even further away from her weight-loss goals. + + + + The Jennifer Hudson Show + The EGOT winner's daytime talk show features celebrity interviews, topical stories, community heroes, viral sensations, and music, bringing fun, uplifting, and empowering conversations to the forefront. + + + + Say Yes to the Dress + When Grammy-nominated rocker Elle King arrives, Randy and Shay have a dress disagreement; bride Lisa needs a gown for a wedding with dolphins. + + + + Say Yes to the Dress + Randy is in Louisiana to save bride Kelli's big day after she lost everything in a devastating flood; social media star Claudia Oshry brings the sass to her appointment; Pnina Tornai feels the heat during Bridal Fashion Week. + + + + Say Yes to the Dress + Randy's day is nonstop as he assists brides and auditions models for his runway show; Emanuela wants a sexy ball gown and she's not afraid to throw her dad's budget out the window; Marlena is finally dress shopping for a wedding years in the making. + + + + Cellblock 6: Female Lock Up + A woman is arrested for smuggling drug paraphernalia into court; two heroin addicts turn to each other for support; a life of prostitution supports a woman's drug habit. + + + + Cellblock 6: Female Lock Up + A jail newcomer gets more than she bargains for; a young mother's release is postponed; the tenth trip for a heroin addict. + + + + Cellblock 6: Female Lock Up + A woman turns to drugs to numb the pain of her divorce; a crack addict attempts to head-butt an officer; a dental office assistant is arrested for stealing. + + + + 90 Day Fiancé: The Other Way + Tensions rise when Mary meets Brandan's mom face-to-face; Sarper attempts to make amends with Shekinah's sister; Kimberly and TJ's traditional Indian wedding continues; Kenny and Armando search for an egg donor. + + + + 90 Day Fiancé: The Other Way + Daniele confronts Yohan about suspicious bank activity; Shekinah and Sarper go bed shopping; TJ tells Kim she is now a head of the household; Holly is lonely in South Africa; Brandan is caught between Mary and his mom. + + + + 90 Day Fiancé: The Other Way + Sarper reveals a secret about his past; Kenny and Armando meet with a potential surrogate; Brandan's mom tells Mary and Brandan that she's worried about the couple's future; Holly reaches a breaking point. + + + + Welcome to Plathville + Olivia and Ethan host Lydia Grace and her boyfriend for Christmas; Kim hopes Isaac will approve of her dating his flight instructor; Micah and Moriah struggle to reconcile with Ethan; Oliva and Ethan's marital tension resurfaces. + + + + Welcome to Plathville + Kim starts new family traditions with the kids for Christmas; Barry and Micah spend the holidays alone; Olivia and Ethan confide in Lydia Grace and CJ that their marriage may have differences they can't overcome. + + + + Welcome to Plathville + Kim nervously shares her dating news with Moriah and Lydia; Moriah decides to unblock and text Ethan and is taken aback by his response; Olivia hits her breaking point when she realizes Ethan is up to his old ways. + + + + My Big Fat Fabulous Life + Whitney throws caution to the wind and plans a party for her 39th birthday, but there are hurricanes on the horizon; before she becomes a spinster, Whitney agrees to a blind date; meeting with Jessica and Lennie, Whitney makes a shocking discovery. + + + + My Big Fat Fabulous Life + With bonus scenes; Whitney's search for Mr. Right seems bleaker than ever, and she fears being alone; after finding her father grief-stricken at the cemetery, Whitney and Hunter present travel destinations to Glenn for his big bucket list trip. + + + + My Big Fat Fabulous Life + The family competitions continue as Whitney welcomes Angie and Jaime to North Carolina, but the bonding may go too far with matching tattoos; Glenn extends an invitation to Switzerland for his new family despite their inexperience with traveling. + + + + Welcome to Plathville + Ethan leaves Olivia behind in Minnesota as he heads to Cairo to pick up his cars and reconnect with his family; Olivia talks to her friend about her marital issues and her struggle to stay true to her vows; Kim comes clean to Amber about Ken. + + + + Sister Wives + Christine throws a 1950s-themed party for her 50th birthday and admits she's dating again; Kody checks out Janelle's new apartment but realizes she's planning a future without him; Meri worries about big changes in her life. + + + + My Big Fat Fabulous Life + With bonus scenes; Whitney's search for Mr. Right seems bleaker than ever, and she fears being alone; after finding her father grief-stricken at the cemetery, Whitney and Hunter present travel destinations to Glenn for his big bucket list trip. + + + + My Big Fat Fabulous Life + The family competitions continue as Whitney welcomes Angie and Jaime to North Carolina, but the bonding may go too far with matching tattoos; Glenn extends an invitation to Switzerland for his new family despite their inexperience with traveling. + + + + Welcome to Plathville + Ethan leaves Olivia behind in Minnesota as he heads to Cairo to pick up his cars and reconnect with his family; Olivia talks to her friend about her marital issues and her struggle to stay true to her vows; Kim comes clean to Amber about Ken. + + + + Sister Wives + Christine throws a 1950s-themed party for her 50th birthday and admits she's dating again; Kody checks out Janelle's new apartment but realizes she's planning a future without him; Meri worries about big changes in her life. + + + + 1000-Lb. Sisters + Amy and Michael finally move out of the duplex; Tammy's partying phase takes a turn for the worse; Amanda tries to get through to her sister before it's too late; Amy's in for a rude awakening at her annual checkup with Dr. Procter. + + + + 1000-Lb. Sisters + Amy sees a pediatric dietitian and faces some difficult truths about Gage's diet; Dr. Smith makes a house call and confronts Tammy about her partying lifestyle; while on the road with Chris, Tammy's health hits a dangerous low point. + + + + The Jennifer Hudson Show + The EGOT winner's daytime talk show features celebrity interviews, topical stories, community heroes, viral sensations, and music, bringing fun, uplifting, and empowering conversations to the forefront. + + + + Untold Stories of the E.R. + Police officers bring in a criminal that is comatose; a man found passed out in the snow with no jacket or shoes arrives in the ER and a doctor is faced with a family emergency on her day-off. + + + + Untold Stories of the E.R. + A wrist fracture turns into a medical mystery; two fishermen get stuck on the same lure; a cheerleader with a sprained finger nearly dies of an unexpected cause; a power outage foils the ER team's effort to get a dying patient to the O.R. + + + + Crack Addicts + Chiropractor Dr. Colón treats Liana, a cane-bound woman suffering from involuntary tremors; Sarah's obsession with corsets causes her migraines; Amy, a little person, can no longer walk on her own; Brenda has uncontrollable gas. + + + + Crack Addicts + Dr. Colón helps a woman who cannot keep her joints in place; a new mother suffers from a tragic boat accident; a bodybuilding leukemia survivor; a constipated baby. + + + + Hoarding: Buried Alive + Bennie and Rhonda have lived decades of compulsive hoarding that have driven their loved ones away. + + + + Hoarding: Buried Alive + Jahn is an extreme hoarder trying to clear her two houses before they are both condemned. + + + + Hoarding: Buried Alive + Debbie lost the company of her four children to hoarding; Chip's family of six is forced to live in sixteen hundred square feet of living space. + + + + Too Large + Jennifer started to gain weight after a car accident. + + + + Too Large + Corey is a young gay man who is just getting back on his feet after being homeless; He has dreams of getting back into college and finding a serious relationship, but he needs to make huge changes if he is going to live his dreams. + + + + My 600-Lb. Life + John and Lonnie are two brothers from opposite ends of the spectrum; estranged for years, the brothers are now brought together by a common need to lose weight while they still can. + + + + My 600-Lb. Life + Lindsey had it all: a white picket fence, a loving husband and a great job; now her food addiction is threatening to ruin everything. + + + + Center Court + WTA Finals & Paris-ATP Semifinals + Tennis action from around the world. + Sports + Tennis + + + + Center Court + WTA Finals & Paris-ATP Semifinals + Tennis action from around the world. + Sports + Tennis + + + + Center Court Live + Paris-ATP Doubles Final + Tennis action from around the world. + Sports + Tennis + + + + ATP Uncovered + Top stories of the ATP Tour. Plus, interviews with current and former top stars of the tour. + Sports + Tennis + + + + Center Court Live + Paris-ATP Singles Final + Tennis action from around the world. + Sports + Tennis + + + + Pickleball + Major League: Second Semifinal + From Dallas. + Sports + Racket Sports + + + + Center Court + WTA Finals Semifinals; Paris-ATP Finals + Tennis action from around the world. + Sports + Tennis + + + + Pickleball + Major League: Finals + From Dallas. + Sports + Racket Sports + + + + Tennis Channel Live + Tennis stories of the day, detailed analysis and more. + Sports + Tennis + + + + Center Court Live + WTA Finals Cancun Singles & Doubles Finals + Tennis action from around the world. + Sports + Tennis + + + + Road To + Coco Guaff + Sports + Tennis + + + + Center Court + WTA Finals & Paris-ATP Finals + Tennis action from around the world. + Sports + Tennis + + + + To Be Announced + Programming to be announced. + Performing Arts + Music + + + TVPG + + + + Center Court + WTA Finals & Paris-ATP Finals + Tennis action from around the world. + Sports + Tennis + + + + Center Court Live + Metz-ATP Early Rounds + Tennis action from around the world. + Sports + Tennis + + + + Center Court + Metz-ATP Early Rounds + Tennis action from around the world. + Sports + Tennis + + + + Center Court + Metz-ATP Early Rounds + Tennis action from around the world. + Sports + Tennis + + + + Center Court + Metz-ATP Early Rounds + Tennis action from around the world. + Sports + Tennis + + + + Center Court Live + Metz-ATP & Sofia-ATP Early Rounds; Billie Jean King Cup Finals Group Stage - AUS v. SLO & SUI v. CZE + Tennis action from around the world. + Sports + Tennis + + + + Center Court Live + Metz-ATP & Sofia-ATP Early Rounds; Billie Jean King Cup Finals Group Stage - AUS v. SLO & SUI v. CZE + Tennis action from around the world. + Sports + Tennis + + + + Tennis Channel Live + Tennis stories of the day, detailed analysis and more. + Sports + Tennis + + + + Center Court + Metz-ATP & Sofia-ATP Early Rounds; Billie Jean King Cup Finals Group Stage - AUS v. SLO & SUI v. CZE + Tennis action from around the world. + Sports + Tennis + + + + Center Court + Metz-ATP & Sofia-ATP Early Rounds; Billie Jean King Cup Finals Group Stage - AUS v. SLO & SUI v. CZE + Tennis action from around the world. + Sports + Tennis + + + + Center Court + Metz-ATP & Sofia-ATP Early Rounds; Billie Jean King Cup Finals Group Stage - AUS v. SLO & SUI v. CZE + Tennis action from around the world. + Sports + Tennis + + + + Tennis Channel Live + Tennis stories of the day, detailed analysis and more. + Sports + Tennis + + + + Center Court Live + Metz-ATP & Sofia-ATP Early Rounds; Billie Jean King Cup Finals Group Stage - FRA v. ITA & ESP v. CAN + Tennis action from around the world. + Sports + Tennis + + + + Center Court Live + Metz-ATP & Sofia-ATP Early Rounds; Billie Jean King Cup Finals Group Stage - FRA v. ITA & ESP v. CAN + Tennis action from around the world. + Sports + Tennis + + + + Tennis Channel Live + Tennis stories of the day, detailed analysis and more. + Sports + Tennis + + + + Pickleball + USA National Championships, Day 1 + Action from the paddle sport. + Sports + Racket Sports + + + + Charles Ellis III + Teaching and preaching the word of God. + Religious + + + TVG + + + + Inspiration Ministries + Religious programming. + Religious + + + TVG + + + + Pastor Clement Lupton + Teaching and preaching the word of God. + + Clement Lupton + + Religious + + + TVG + + + + Word Special + Teaching and preaching the word of God. + Specials + Religious + + + TVG + + + + Glorious Moments With Prophet Jerome Fernando + Religious + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Mark Vereen + Teaching and preaching the word of God. + + Mark Vereen + + Specials + Religious + + + TVG + + + + Brandon B. Porter + Teaching and preaching the word of God. + Religious + + + TVG + + + + Danny Davis + Teaching and preaching the word of God. + Religious + + + TVG + + + + Inspiration Ministries + Religious programming. + Religious + + + TVG + + + + Inspiration Ministries + Religious programming. + Religious + + + TVG + + + + Joseph Prince + Drama + + + + Perry Stone + Religious teachings from Perry Stone. + Religious + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Jody Rogers + Teaching and preaching the word of God. + + Jody Rogers + + Religious + + + TVG + + + + Rev. Jim Holley + Religious + + + TVG + + + + Jim Whittington + World Deliverance Ministry. + Religious + + + TVG + + + + Word Special + Teaching and preaching the word of God. + Specials + Religious + + + TVG + + + + Tomorrow's World + Original Christianity as taught and practiced by Jesus Christ and the original Apostles. + Religious + + + TVG + + + + Inspiration Ministries + Religious programming. + Religious + + + TVG + + + + Beyond Today + Meaning for one's life and hope for the future in the midst of today's often confusing and chaotic world. + Religious + + + TVPG + + + + Derek Grier: Grace for Today + Derek Grier teaches the life-changing power of God, enabling you to discover your unique gifts and talents. Real People. Real Lives. Real Change. + Religious + + + TVG + + + + Discovering the Jewish Jesus + Messianic Rabbi Kirt Schneider, a Jewish believer in Jesus, shares his insights into the Old and New Testaments, provides guidance on prayer and delivers the Word of God. + Religious + + + TVG + + + + Woody Martin + Religious + + + + Creflo Dollar + Dr. Creflo Dollar ministers to people from all backgrounds with hopes for change; Creflo helps viewers find ways to renew their faith, mind, and spirit; Creflo and his wife Taffi share their vision for everyone to understand God's love and promises. + Religious + + + TVG + + + + David Taylor + Teaching and preaching the word of God. + + David Taylor + + Religious + + + TVG + + + + Love a Child + Religious + + + TVG + + + + Beyond Today + Meaning for one's life and hope for the future in the midst of today's often confusing and chaotic world. + Religious + + + TVPG + + + + Trunell D. Felder + Teaching and preaching the word of God. + Religious + + + TVG + + + + Inspiration Ministries + Religious programming. + Religious + + + TVG + + + + Amazing Facts With Doug Batchelor + The King Returns Pt. 2 + The great climax of the world's history is going to be when Christ comes and He sets everything right. Part 2 of 2. + Religious + + + TVG + + + + Deblearie Snell + Regular + + + TVG + + + + Jewish Voice with Jonathan Bernis + Exploring the Jewish roots of Christian faith; learning how bible prophecy and today's world events surrounding Israel are connected. + Religious + Talk Shows + + + TVG + + + + Rev. Jim Whittington + Teaching and preaching the word of God. + + Jim Whittington + + Religious + + + TVG + + + + Reverend Tracy Cooke + Religious + + + + Howard Richardson + Religious + + + + Gilbert Patterson + Teaching and preaching the word of God. + Religious + + + TVG + + + + Damon Davis + Damon Davis spotlights socially responsible leaders, authors and entertainers. + Religious + + + TVG + + + + Discovering the Jewish Jesus + Messianic Rabbi Kirt Schneider, a Jewish believer in Jesus, shares his insights into the Old and New Testaments, provides guidance on prayer and delivers the Word of God. + Religious + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Ever Increasing Faith With Dr. Fred Price + The dynamic teaching of Dr Frederick K. C. Price. + Religious + + + TVG + + + + Tomorrow's World + Original Christianity as taught and practiced by Jesus Christ and the original Apostles. + Religious + + + TVG + + + + Charles Ellis III + Teaching and preaching the word of God. + Religious + + + TVG + + + + Inspiration Ministries + Religious programming. + Religious + + + TVG + + + + Stories of Love to the Rescue by Shriners Hospitals for Children® + Alec and Kaleb interview patients and their families, and how their lives have been changed because of the life-changing pediatric specialty care they received at Shriners Hospitals for Children®. + Paid Program + + + + Bobby Hogan + Local + + + + Frank Garris + Religious + + + + Beyond Today + A Bible-based exploration of positive solutions to today's personal and world problems. + Local + + + + Dr. Jamal H Bryant + Teaching and preaching the word of God. + + Jamal Bryant + + Religious + + + TVG + + + + Damon Davis + Damon Davis spotlights socially responsible leaders, authors and entertainers. + Religious + + + TVG + + + + Beyond Today + A Bible-based exploration of positive solutions to today's personal and world problems. + Local + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Life Today With James Robison + James and Betty Robison host guests who speak on a variety of topics, offering hope and help. + Talk Shows + Religious + + + TVG + + + + Discovering the Jewish Jesus + Messianic Rabbi Kirt Schneider, a Jewish believer in Jesus, shares his insights into the Old and New Testaments, provides guidance on prayer and delivers the Word of God. + Religious + + + TVG + + + + Sid Roth + Sid Roth speaks to David Herzog, author of. + Specials + Religious + + + TVG + + + + Prophetic Impact + Ministry program with Prophetess Kendria Moore of Prophetic Flow Ministries. + Religious + + + + Discovering the Jewish Jesus + Messianic Rabbi Kirt Schneider, a Jewish believer in Jesus, shares his insights into the Old and New Testaments, provides guidance on prayer and delivers the Word of God. + Religious + + + TVG + + + + Joyce Meyer: Power Thoughts + Religious + + + TVG + + + + Rev. Jim Whittington + Teaching and preaching the word of God. + + Jim Whittington + + Religious + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + Author and Bible teacher Joyce Meyer shares encouragement to help people enjoy daily life. + Religious + + + TVG + + + + Rick Wiles + Religious + + + TVG + + + + Rod Parsley + Religious + + + TVG + + + + Life Today With James Robison + James and Betty Robison host guests who speak on a variety of topics, offering hope and help. + Talk Shows + Religious + + + TVG + + + + David Taylor + Teaching and preaching the word of God. + + David Taylor + + Religious + + + TVG + + + + Discovering the Jewish Jesus + Messianic Rabbi Kirt Schneider, a Jewish believer in Jesus, shares his insights into the Old and New Testaments, provides guidance on prayer and delivers the Word of God. + Religious + + + TVG + + + + Faith for Every Nation With Mark and Trina Hankins + Religious + + + TVG + + + + Sid Roth's It's Supernatural! + Investigative reporter Sid Roth verifies the supernatural. + Religious + + + TVG + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + TVG + + + + The Potter's Touch With Bishop T.D. Jakes + Bishop T.D. Jakes offers practical and spiritual solutions to life's toughest questions. + Religious + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + Author and Bible teacher Joyce Meyer shares encouragement to help people enjoy daily life. + Religious + + + TVG + + + + Breakthrough With Rod Parsley + Religious + + + TVG + + + + The Place for Miracles + Richard and Lindsay Roberts. + Religious + + + TVG + + + + Bill Winston Ministries + Embracing the word of God. + + Bill Winston + + Religious + + + TVPG + + + + Marilyn Hickey + Bible teaching. + Religious + + + TVG + + + + Sid Roth's It's Supernatural! + Investigative reporter Sid Roth verifies the supernatural. + Religious + + + TVG + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + TVG + + + + Stories of Love to the Rescue by Shriners Hospitals for Children® + Alec and Kaleb interview patients and their families, and how their lives have been changed because of the life-changing pediatric specialty care they received at Shriners Hospitals for Children®. + Paid Program + + + + Stem Cell Activators with Joseph Christiano ND + A naturopathic doctor and certified nutritional counselor, author, motivational speaker, and wellness coach. + Religious + + + TVG + + + + Pressing Towards the Mark With Bishop AJ Ford + Religious + + + + Through the Bible With Les Feldick + Religious programming. + Religious + + + TVG + + + + Life Today With James Robison + James and Betty Robison host guests who speak on a variety of topics, offering hope and help. + Talk Shows + Religious + + + TVG + + + + Dominion Life Now With Curry Blake + Curry Blake and John G. Blake Ministries present a complete Biblical message of the New Covenant way of life, as intended by the Lord, speaking boldly to the global faithful. + Religious + + + + Discovering the Jewish Jesus + Messianic Rabbi Kirt Schneider, a Jewish believer in Jesus, shares his insights into the Old and New Testaments, provides guidance on prayer and delivers the Word of God. + Religious + + + TVG + + + + Inspiration Ministries + Religious programming. + Religious + + + TVG + + + + Peter Popoff Ministries + Ministry of singing, preaching and testimonies with Peter and Elizabeth Popoff. + Religious + + + TVG + + + + Word Special + Teaching and preaching the word of God. + Specials + Religious + + + TVG + + + + David Taylor + Teaching and preaching the word of God. + + David Taylor + + Religious + + + TVG + + + + Anthony Wynn + Religious + + + TVG + + + + Charles Ellis III + Teaching and preaching the word of God. + Religious + + + TVG + + + + Inspiration Ministries + Religious programming. + Religious + + + TVG + + + + David Taylor + Teaching and preaching the word of God. + + David Taylor + + Religious + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + Author and Bible teacher Joyce Meyer shares encouragement to help people enjoy daily life. + Religious + + + TVG + + + + Life Today With James Robison + James and Betty Robison host guests who speak on a variety of topics, offering hope and help. + Talk Shows + Religious + + + TVG + + + + Bishop Herman Murray + Teaching the word of God. + + Herman Murray + + Specials + Religious + + + TVG + + + + Peter Popoff Ministries + Ministry of singing, preaching and testimonies with Peter and Elizabeth Popoff. + Religious + + + TVG + + + + Kimberly Ray + Teaching and preaching the word of God. + + Kimberly Ray Gavin + + Religious + + + TVG + + + + Murthlene Sampson + Teaching and preaching the word of God. + Religious + + + TVG + + + + David Bibey + Religious + + + + Michelle Corral + Teaching and preaching the word of God. + + Michelle Corral + + Religious + + + TVG + + + + Inspiration Ministries + Religious programming. + Religious + + + TVG + + + + Kendria Moore + Host Kendria Moore gives prophetic insights, along with appearances from a wide range of inspiring guests who share their stories, testimonies and ministry gifts. + Religious + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + TVG + + + + Steven Staten + Regular + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + Author and Bible teacher Joyce Meyer shares encouragement to help people enjoy daily life. + Religious + + + TVG + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + TVG + + + + Rod Parsley + Religious + + + TVG + + + + Life Today With James Robison + James and Betty Robison host guests who speak on a variety of topics, offering hope and help. + Talk Shows + Religious + + + TVG + + + + David Taylor + Teaching and preaching the word of God. + + David Taylor + + Religious + + + TVG + + + + Discovering the Jewish Jesus + Messianic Rabbi Kirt Schneider, a Jewish believer in Jesus, shares his insights into the Old and New Testaments, provides guidance on prayer and delivers the Word of God. + Religious + + + TVG + + + + Faith for Every Nation With Mark and Trina Hankins + Religious + + + TVG + + + + Jewish Voice with Jonathan Bernis + Exploring the Jewish roots of Christian faith; learning how bible prophecy and today's world events surrounding Israel are connected. + Religious + Talk Shows + + + TVG + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + + The Potter's Touch With Bishop T.D. Jakes + Bishop T.D. Jakes offers practical and spiritual solutions to life's toughest questions. + Religious + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + Author and Bible teacher Joyce Meyer shares encouragement to help people enjoy daily life. + Religious + + + TVG + + + + Breakthrough With Rod Parsley + Religious + + + TVG + + + + Fellowship Christians & Jews + Teaching and preaching the word of God. + Religious + + + TVG + + + + Bill Winston Ministries + Embracing the word of God. + + Bill Winston + + Religious + + + TVPG + + + + Marilyn Hickey + Bible teaching. + Religious + + + TVG + + + + Sid Roth's It's Supernatural! + Investigative reporter Sid Roth verifies the supernatural. + Religious + + + TVG + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + + Stories of Love to the Rescue by Shriners Hospitals for Children® + Alec and Kaleb interview patients and their families, and how their lives have been changed because of the life-changing pediatric specialty care they received at Shriners Hospitals for Children®. + Paid Program + + + + Stem Cell Activators with Joseph Christiano ND + A naturopathic doctor and certified nutritional counselor, author, motivational speaker, and wellness coach. + Religious + + + TVG + + + + Life Today With James Robison + James and Betty Robison host guests who speak on a variety of topics, offering hope and help. + Talk Shows + Religious + + + TVG + + + + Through the Bible With Les Feldick + Religious programming. + Religious + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Dr. Willard Maxwell, Jr. and New Beech Grove + Religious + + + + Discovering the Jewish Jesus + Messianic Rabbi Kirt Schneider, a Jewish believer in Jesus, shares his insights into the Old and New Testaments, provides guidance on prayer and delivers the Word of God. + Religious + + + TVG + + + + Inspiration Ministries + Religious programming. + Religious + + + TVG + + + + Peter Popoff Ministries + Ministry of singing, preaching and testimonies with Peter and Elizabeth Popoff. + Religious + + + TVG + + + + Word Special + Teaching and preaching the word of God. + Specials + Religious + + + TVG + + + + Mike Moore: Answers that Work + Mike Moore breaks down the Word of God in a simple, practical way that can be used for real life situations and provides answers that work when the principles are applied to life. + Religious + + + TVG + + + + Tony Alamo + Local + + + + Charles Ellis III + Teaching and preaching the word of God. + Religious + + + TVG + + + + Pastor Dan Willis + Pastor Dan Willis spreading the word of God. + Religious + + + + Jewish Voice with Jonathan Bernis + Exploring the Jewish roots of Christian faith; learning how bible prophecy and today's world events surrounding Israel are connected. + Religious + Talk Shows + + + TVG + + + + David Taylor + Teaching and preaching the word of God. + + David Taylor + + Religious + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + Author and Bible teacher Joyce Meyer shares encouragement to help people enjoy daily life. + Religious + + + TVG + + + + Life Today With James Robison + James and Betty Robison host guests who speak on a variety of topics, offering hope and help. + Talk Shows + Religious + + + TVG + + + + Roger Price + Religious + + + TVG + + + + Darrell Dumas + Religious + + + TVG + + + + HP Music & Arts + Music + Arts & Entertainment + + + TVG + + + + Divine Encounter with Rev. Dr. Otis Manning + Variety + + + + Victorious Living with Lita Reeves + Pastor Lita seeks to inspire, empower, and invigorate faith. + Religious + + + + James Brodnax + Religious + + + TVG + + + + Peter Popoff Ministries + Ministry of singing, preaching and testimonies with Peter and Elizabeth Popoff. + Religious + + + TVG + + + + Life Today With James Robison + James and Betty Robison host guests who speak on a variety of topics, offering hope and help. + Talk Shows + Religious + + + TVG + + + + Nancy Dadd + Religious + + + TVG + + + + Inspiration Ministries + Religious programming. + Religious + + + TVG + + + + Word Special + Teaching and preaching the word of God. + Specials + Religious + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + Author and Bible teacher Joyce Meyer shares encouragement to help people enjoy daily life. + Religious + + + TVG + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + + Rod Parsley + Religious + + + TVG + + + + Life Today With James Robison + James and Betty Robison host guests who speak on a variety of topics, offering hope and help. + Talk Shows + Religious + + + TVG + + + + David Taylor + Teaching and preaching the word of God. + + David Taylor + + Religious + + + TVG + + + + Discovering the Jewish Jesus + Messianic Rabbi Kirt Schneider, a Jewish believer in Jesus, shares his insights into the Old and New Testaments, provides guidance on prayer and delivers the Word of God. + Religious + + + TVG + + + + Faith for Every Nation With Mark and Trina Hankins + Religious + + + TVG + + + + Woody Martin + Religious + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + TVG + + + + The Potter's Touch With Bishop T.D. Jakes + Bishop T.D. Jakes offers practical and spiritual solutions to life's toughest questions. + Religious + + + TVG + + + + Joyce Meyer Enjoying Everyday Life + Author and Bible teacher Joyce Meyer shares encouragement to help people enjoy daily life. + Religious + + + TVG + + + + Breakthrough With Rod Parsley + Religious + + + TVG + + + + Stem Cell Activators with Joseph Christiano ND + A naturopathic doctor and certified nutritional counselor, author, motivational speaker, and wellness coach. + Religious + + + TVG + + + + Bill Winston Ministries + Embracing the word of God. + + Bill Winston + + Religious + + + TVPG + + + + Marilyn Hickey + Bible teaching. + Religious + + + TVG + + + + Sid Roth's It's Supernatural! + Investigative reporter Sid Roth verifies the supernatural. + Religious + + + TVG + + + + Joseph Prince + Come as You Are and Receive Your Miracle + God's heart to supply all of a believer's needs; a study of Jesus' healing of the leper. + Religious + + + TVG + + + + Sandra Kennedy + Sandra Kennedy shares key principles to help believers live victoriously. + Religious + + + + Stem Cell Activators with Joseph Christiano ND + A naturopathic doctor and certified nutritional counselor, author, motivational speaker, and wellness coach. + Religious + + + TVG + + + + Joseph Prince + Religious + + + TVG + + + + Through the Bible With Les Feldick + Religious programming. + Religious + + + TVG + + + + Life Today With James Robison + James and Betty Robison host guests who speak on a variety of topics, offering hope and help. + Talk Shows + Religious + + + TVG + + + + Tree of Life + Religious + + + TVG + + + + Discovering the Jewish Jesus + Messianic Rabbi Kirt Schneider, a Jewish believer in Jesus, shares his insights into the Old and New Testaments, provides guidance on prayer and delivers the Word of God. + Religious + + + TVG + + + + Inspiration Ministries + Religious programming. + Religious + + + TVG + + + + Peter Popoff Ministries + Ministry of singing, preaching and testimonies with Peter and Elizabeth Popoff. + Religious + + + TVG + + + + Word Special + Teaching and preaching the word of God. + Specials + Religious + + + TVG + + + + Internal Affairs + A Los Angeles policeman (Richard Gere) toys with the mind of a division investigator (Andy Garcia) on his case. + + Richard Gere + Andy Garcia + Nancy Travis + + 1990 + Movies + Crime Story + + + TVPG + + + 3 + + + + Shining Through + A secretary (Melanie Griffith) falls for her mysterious new boss (Michael Douglas) and insists on going to Germany as a World War II spy. + + Michael Douglas + Melanie Griffith + Liam Neeson + + 1992 + Movies + Drama + + + TVPG + + + 2 + + + + Hotel Mumbai + Terror strikes in the heart of Mumbai, India, as members of Lashkar-e-Taiba storm the Taj Mahal Palace Hotel. Amid the gunfire and mayhem, a brave chef and kitchen worker decide to risk their own lives to try and protect the frightened guests. + + Armie Hammer + Dev Patel + Nazanin Boniadi + + 2018 + Movies + Thriller + + + TV14 + + + 2 + + + + Hotel Mumbai + Terror strikes in the heart of Mumbai, India, as members of Lashkar-e-Taiba storm the Taj Mahal Palace Hotel. Amid the gunfire and mayhem, a brave chef and kitchen worker decide to risk their own lives to try and protect the frightened guests. + + Armie Hammer + Dev Patel + Nazanin Boniadi + + 2018 + Movies + Thriller + + + TV14 + + + 2 + + + + Anna and the King + The King of Siam (Chow Yun-Fat) hires an English widow (Jodie Foster) to teach the ways of the Western world to his many children. + + Jodie Foster + Chow Yun Fat + Bai Ling + + 1999 + Movies + History + + + TVG + + + 1 + + + + The Longest Ride + As conflicting paths test their bond, a couple (Scott Eastwood, Britt Robertson) find inspiration in the romantic tales of an elderly man (Alan Alda) whose great love for his wife stood the test of time. + + Scott Eastwood + Britt Robertson + Alan Alda + + 2015 + Movies + Drama + + + TVG + + + 2 + + + + Blown Away + An Irish explosives expert (Tommy Lee Jones) targets an old foe (Jeff Bridges) and his family living in Boston. + + Jeff Bridges + Tommy Lee Jones + Lloyd Bridges + + 1994 + Movies + Thriller + + + TVPG + + + 2 + + + + Dark Places + A woman (Charlize Theron) confronts traumatic, childhood memories of the murder of her mother and two sisters when she investigates the possibility that her brother (Corey Stoll) is innocent of the crime. + + Charlize Theron + Nicholas Hoult + Chloë Grace Moretz + + 2015 + Movies + Mystery + + + TVPG + + + 2 + + + + Chain Reaction + Industrial mercenaries sabotage a project that converts water into safe energy, then frame two scientists (Keanu Reeves, Rachel Weisz) for it. + + Keanu Reeves + Morgan Freeman + Rachel Weisz + + 1996 + Movies + Action + + + TVG + + + 2 + + + + The Boy Next Door + A high-school teacher (Jennifer Lopez) learns to regret her moment of weakness when the student (Ryan Guzman) with whom she had a brief fling begins to terrorize her at home and at work. + + Jennifer Lopez + Ryan Guzman + John Corbett + + 2015 + Movies + Thriller + + + TVPG + + + 1 + + + + Mississippi Grind + Convinced that his newfound friend (Ryan Reynolds) is a good-luck charm, a gambling addict (Ben Mendelsohn) takes the man on a road trip to a high-stakes poker game in New Orleans. + + Ryan Reynolds + Ben Mendelsohn + Sienna Miller + + 2015 + Movies + Drama + + + TVG + + + 3 + + + + Garden State + An emotionally numb actor (Zach Braff) finds a soulmate in a quirky young woman after he returns to New Jersey for his mother's funeral. + + Zach Braff + Ian Holm + Ron Leibman + + 2004 + Movies + Comedy + + + TV14 + + + 3 + + + + The Fury + A psychic girl (Amy Irving) helps a spy (Kirk Douglas) find his psychic son, kidnapped by a renegade scientist (John Cassavetes). + + Kirk Douglas + John Cassavetes + Amy Irving + + 1978 + Movies + Thriller + + + TVPG + + + 2 + + + + Behind Enemy Lines + A Navy admiral (Gene Hackman) orders the rescue of a fighter pilot (Owen Wilson) after the Serbs shoot down his plane in Bosnia. + + Owen Wilson + Gene Hackman + Gabriel Macht + + 2001 + Movies + Action + + + TVPG + + + 2 + + + + Piranha 3D + Spring break turns gory at a popular waterside resort, where hundreds of prehistoric man-eating fish have come to dine on hapless humans. + + Elisabeth Shue + Adam Scott + Jerry O'Connell + + 2010 + Movies + Horror + + + TV14 + + + 2 + + + + Piranha 3DD + No one is safe from a school of prehistoric flesh-eating fish as they sink their razor-sharp teeth into patrons at the summer's most popular attraction, the Big Wet Water Park. + + Danielle Panabaker + Matt Bush + David Koechner + + 2012 + Movies + Horror + + + TV14 + + + 1 + + + + Climax + When members of a dance troupe are lured to an empty school, drug-laced sangria causes their jubilant rehearsal to descend into a dark and explosive nightmare as they try to survive the night -- and find out who's responsible -- before it's too late. + + Sofia Boutella + Romain Guillermic + Souheila Yacoub + + 2018 + Movies + Drama + + + TV14 + + + 2 + + + + Bandits + Two bank robbers (Bruce Willis, Billy Bob Thornton) fall for a bored housewife (Cate Blanchett) who helps them commit heists across the country. + + Bruce Willis + Billy Bob Thornton + Cate Blanchett + + 2001 + Movies + Comedy + + + TVG + + + 2 + + + + Hit & Run + A former getaway driver (Dax Shepard) finds feds and his former gang members on his tail when he breaks out of the Witness Protection Program to help his girlfriend (Kristen Bell) get to Los Angeles. + + Dax Shepard + Kristen Bell + Bradley Cooper + + 2012 + Movies + Comedy + + + TVPG + + + 2 + + + + Signs + With the help of his brother (Joaquin Phoenix), a Pennsylvanian (Mel Gibson) investigates the appearance of 500-foot-diameter circles in his crop fields. + + Mel Gibson + Joaquin Phoenix + Cherry Jones + + 2002 + Movies + Thriller + + + TVG + + + 3 + + + + Vendetta + After the murder of his wife, a tough-as-nails detective (Dean Cain) infiltrates a prison and uncovers a criminal enterprise. + + Dean Cain + Paul + + 2015 + Movies + Action + + + TVPG + + + + Little Woods + In North Dakota, two estranged sisters are driven to extremes when their mother dies, leaving them with one week to pay back her mortgage. + + Tessa Thompson + Lily James + Luke Kirby + + 2018 + Movies + Drama + + + TVPG + + + + Knowing + A professor (Nicolas Cage) and his son obtain an encoded time-capsule document that lists every major disaster over the past 50 years and predicts a future global calamity. + + Nicolas Cage + Rose Byrne + Chandler Canterbury + + 2009 + Movies + Sci-Fi + + + TVG + + + 2 + + + + Charlie Wilson's War + A congressman (Tom Hanks), a socialite (Julia Roberts) and a CIA agent (Philip Seymour Hoffman) are instrumental to the funding of freedom fighters working against the Soviet invasion of Afghanistan. + + Tom Hanks + Julia Roberts + Philip Seymour Hoffman + + 2007 + Movies + Docu-Drama + + + TVPG + + + 3 + + + + Law Abiding Citizen + Ten years after his wife and child die in a home invasion, a man (Gerard Butler) carries out an elaborate plot against the prosecutor (Jamie Foxx) who cut a deal with one of the killers. + + Jamie Foxx + Gerard Butler + Colm Meaney + + 2009 + Movies + Thriller + + + TVPG + + + 1 + + + + Dying of the Light + Forced into retirement and terminally ill, a CIA agent gets word that his longtime nemesis has resurfaced, so he sets out on a personal mission to kill him. + + Nicolas Cage + Anton Yelchin + Alexander Karim + + 2014 + Movies + Action + + + TVPG + + + 1 + + + + Kill the Irishman + Mobster Danny Greene (Ray Stevenson) ignites a turf war in 1970s Cleveland that leads to the collapse of the Mafia in several major U.S. cities. + + Ray Stevenson + Vincent D'Onofrio + Val Kilmer + + 2011 + Movies + Crime Story + + + TVPG + + + 2 + + + + Lucy + An unwilling drug mule (Scarlett Johansson) develops superhuman abilities after the synthetic substance leaks into her system. + + Scarlett Johansson + Morgan Freeman + Choi Min-sik + + 2014 + Movies + Action + + + TVPG + + + 3 + + + + Colossal + When a giant creature starts destroying Seoul, South Korea, a woman learns that she is somehow connected to the phenomenon. She must now figure out why her seemingly insignificant existence is having such a colossal effect on the fate of the world. + + Anne Hathaway + Jason Sudeikis + Austin Stowell + + 2016 + Movies + Comedy + + + TVG + + + 3 + + + + Into the Blue + Four divers (Paul Walker, Jessica Alba, Scott Caan) cross paths with drug smugglers whose cargo plane has crashed near the site of underwater treasure. + + Paul Walker + Jessica Alba + Scott Caan + + 2005 + Movies + Adventure + + + TVPG + + + 2 + + + + Freedomland + A detective (Samuel L. Jackson) investigates a carjacking that resulted in the abduction of the young son of a troubled woman (Julianne Moore). + + Samuel L. Jackson + Julianne Moore + Edie Falco + + 2006 + Movies + Mystery + + + TVPG + + + 2 + + + + Freedomland + A detective (Samuel L. Jackson) investigates a carjacking that resulted in the abduction of the young son of a troubled woman (Julianne Moore). + + Samuel L. Jackson + Julianne Moore + Edie Falco + + 2006 + Movies + Mystery + + + TVPG + + + 2 + + + + Into the Blue 2: The Reef + Two professional divers (Chris Carmack, Laura Vandervoort) fight for their lives when they encounter criminals in Hawaiian waters. + + Chris Carmack + Laura Vandervoort + Marsha Thomason + + 2009 + Movies + Thriller + + + TVPG + + + + The Last Face + A charming Spanish doctor (Javier Bardem) and a driven, compassionate relief worker (Charlize Theron) must balance their blossoming love for each other with their passion for the work they are doing. + + Charlize Theron + Javier Bardem + Adèle Exarchopoulos + + 2016 + Movies + Drama + + + + Balls of Fury + A disgraced pingpong player (Dan Fogler) bounces back to go under cover for the government and bring a notorious crime lord (Christopher Walken) to justice. + + Dan Fogler + Christopher Walken + George Lopez + + 2007 + Movies + Comedy + + + TVG + + + 2 + + + + Timeline + Adventurers (Paul Walker, Frances O'Connor, Gerard Butler) travel back to 14th-century France to save a professor caught in the middle of a war. + + Paul Walker + Frances O'Connor + Gerard Butler + + 2003 + Movies + Adventure + + + TVG + + + 2 + + + + Piranha 3D + Spring break turns gory at a popular waterside resort, where hundreds of prehistoric man-eating fish have come to dine on hapless humans. + + Elisabeth Shue + Adam Scott + Jerry O'Connell + + 2010 + Movies + Horror + + + TV14 + + + 2 + + + + Limitless + An unemployed writer (Bradley Cooper) rises to the top of the financial world after an experimental drug gives him extraordinary mental acuity. + + Bradley Cooper + Robert De Niro + Abbie Cornish + + 2011 + Movies + Thriller + + + TVPG + + + 2 + + + + F/X + Federal agents hire a special-effects man (Bryan Brown) to stage the fake assassination of a mob witness. + + Bryan Brown + Brian Dennehy + Diane Venora + + 1986 + Movies + Thriller + + + TVPG + + + 3 + + + + The Phantom + A purple-costumed superhero (Billy Zane) tries to thwart a master criminal's (Treat Williams) acquisition of mystical skulls with legendary powers. + + Billy Zane + Kristy Swanson + Treat Williams + + 1996 + Movies + Action + + + TVG + + + 2 + + + + Precious Cargo + To get back in the good graces of her murderous boss (Bruce Willis), a seductive thief (Claire Forlani) recruits an ex-lover (Mark-Paul Gosselaar) to steal rare and valuable gems. + + Mark-Paul Gosselaar + Bruce Willis + Claire Forlani + + 2016 + Movies + Action + + + TVPG + + + + Locke + A man's (Tom Hardy) life unravels after he leaves a construction site at a critical time and drives to London to be present for the birth of a child conceived during a one-night stand. + + Tom Hardy + Ruth Wilson + Andrew Scott + + 2013 + Movies + Drama + + + TVG + + + 3 + + + + Rememory + An amateur sleuth steals a machine that can extract, record and play the memories of another person. He uses the device to try and solve the mysterious death of the man who invented it. + + Peter Dinklage + Julia Ormond + Martin Donovan + + 2017 + Movies + Sci-Fi + + + + The Hunted + Aided by the FBI, a retired combat-trainer (Tommy Lee Jones) searches for a former student (Benicio del Toro) who is killing civilians in Oregon. + + Tommy Lee Jones + Benicio del Toro + Connie Nielsen + + 2003 + Movies + Action + + + TVPG + + + 2 + + + + Jennifer's Body + A beautiful cheerleader (Megan Fox) gains an insatiable appetite for human flesh after a hungry demon takes control of her body. + + Megan Fox + Amanda Seyfried + Johnny Simmons + + 2009 + Movies + Horror + + + TVPG + + + 2 + + + + The Saint + Master-of-disguises Simon Templar (Val Kilmer) falls for a U.S. scientist (Elisabeth Shue) whose cold-fusion formula he must steal. + + Val Kilmer + Elisabeth Shue + Rade Serbedzija + + 1997 + Movies + Action + + + TVG + + + 2 + + + + The Saint + Master-of-disguises Simon Templar (Val Kilmer) falls for a U.S. scientist (Elisabeth Shue) whose cold-fusion formula he must steal. + + Val Kilmer + Elisabeth Shue + Rade Serbedzija + + 1997 + Movies + Action + + + TVG + + + 2 + + + + Paper Towns + Following a night of adventure with his mysterious neighbor (Cara Delevingne), a teen (Nat Wolff) and his friends use cryptic clues to find her after she suddenly disappears. + + Nat Wolff + Cara Delevingne + Halston Sage + + 2015 + Movies + Adventure + + + TVG + + + 2 + + + + Hotel Mumbai + Terror strikes in the heart of Mumbai, India, as members of Lashkar-e-Taiba storm the Taj Mahal Palace Hotel. Amid the gunfire and mayhem, a brave chef and kitchen worker decide to risk their own lives to try and protect the frightened guests. + + Armie Hammer + Dev Patel + Nazanin Boniadi + + 2018 + Movies + Thriller + + + TV14 + + + 2 + + + + Antitrust + The billionaire founder of a software corporation offers a lucrative position to an idealistic computer genius (Ryan Phillippe). + + Ryan Phillippe + Rachael Leigh Cook + Claire Forlani + + 2001 + Movies + Thriller + + + 2 + + + + Regression + A detective (Ethan Hawke) and a psychoanalyst (David Thewlis) uncover evidence of a satanic cult while investigating the rape of a traumatized teen (Emma Watson). + + Ethan Hawke + Emma Watson + David Thewlis + + 2015 + Movies + Thriller + + + TVPG + + + 1 + + + + The Boy Next Door + A high-school teacher (Jennifer Lopez) learns to regret her moment of weakness when the student (Ryan Guzman) with whom she had a brief fling begins to terrorize her at home and at work. + + Jennifer Lopez + Ryan Guzman + John Corbett + + 2015 + Movies + Thriller + + + TVPG + + + 1 + + + + Piranha 3DD + No one is safe from a school of prehistoric flesh-eating fish as they sink their razor-sharp teeth into patrons at the summer's most popular attraction, the Big Wet Water Park. + + Danielle Panabaker + Matt Bush + David Koechner + + 2012 + Movies + Horror + + + TV14 + + + 1 + + + + Killer Elite + A formidable special-ops agent (Jason Statham) must cut his way through a team of assassins to rescue his kidnapped mentor (Robert De Niro). + + Jason Statham + Robert De Niro + Clive Owen + + 2011 + Movies + Action + + + TVPG + + + 2 + + + + Dark Places + A woman (Charlize Theron) confronts traumatic, childhood memories of the murder of her mother and two sisters when she investigates the possibility that her brother (Corey Stoll) is innocent of the crime. + + Charlize Theron + Nicholas Hoult + Chloë Grace Moretz + + 2015 + Movies + Mystery + + + TVPG + + + 2 + + + + Pride and Glory + Duty and family loyalties come into conflict when a detective (Edward Norton) and his brother-in-law (Colin Farrell) probe a failed drug bust in which a fellow cop and family member lost four men. + + Edward Norton + Colin Farrell + Jon Voight + + 2008 + Movies + Crime Story + + + TVPG + + + 2 + + + + Never Say Never Again + Aging agent 007 (Sean Connery) seeks hijacked warheads and finds SPECTRE's Largo (Klaus Maria Brandauer) and Fatima Blush (Barbara Carrera). + + Sean Connery + Klaus Maria Brandauer + Barbara Carrera + + 1983 + Movies + Action + + + TVG + + + 3 + + + + Too Much for TV On Demand + Local + + + + Too Much for TV On Demand + Local + + + + Too Much for TV On Demand + Local + + + + Too Much for TV On Demand + Local + + + + Too Much for TV On Demand + Local + + + + Too Much for TV On Demand + Local + + + + Too Much for TV On Demand + Local + + + + Too Much for TV On Demand + Local + + + + Too Much for TV On Demand + Local + + + + Too Much for TV On Demand + Local + + + + Too Much for TV On Demand + Local + + + + Too Much for TV On Demand + Local + + + + Too Much for TV On Demand + Local + + + + Too Much for TV On Demand + Local + + + + Too Much for TV On Demand + Local + + + + Too Much for TV On Demand + Local + + + + Too Much for TV On Demand + Local + + + + Too Much for TV On Demand + Local + + + + Too Much for TV On Demand + Local + + + + Too Much for TV On Demand + Local + + + + Too Much for TV On Demand + Local + + + + Too Much for TV On Demand + Local + + + + Too Much for TV On Demand + Local + + + + Too Much for TV On Demand + Local + + + + Too Much for TV On Demand + Local + + + + Too Much for TV On Demand + Local + + + + Too Much for TV On Demand + Local + + + + UFOs: The Lost Evidence + American UFO Coverups + UFO sightings have been caught on film across the United States, yet the government continues to deny the existence of extraterrestrials; recent news of the Pentagon's secret UFO program may reveal evidence of what the military has known for decades. + Documentary + Science + + + TVPG + + + + UFOs: The Lost Evidence + Extraterrestrials and Sacred Sites + Evidence suggests contact with interstellar travelers in the distant past may have influenced humankind and many of its sacred sites. + Documentary + Science + + + TVPG + + + + UFOs: The Lost Evidence + UFOs and the Presidents: FDR to JFK + Investigators reveal the secret history of U.S. presidents and UFOs, from President Franklin D. Roosevelt's knowledge about a UFO battle over Los Angeles to President John F. Kennedy's alleged plan to share extraterrestrial secrets with the Russians. + Documentary + Science + + + TVPG + + + + UFOs: The Lost Evidence + UFO Abduction + Although alien abduction claims are often dismissed as hoaxes or delusions, there are landmark cases that scholars struggle to refute; Calvin Parker retells his harrowing experience of being abducted near the Pascagoula River in Mississippi. + Documentary + Science + + + TVPG + + + + The Phenomenon + Interviews with government officials and NASA astronauts, as well as archival footage, offer credible evidence and insight into the UFO phenomenon. + 2020 + Movies + Documentary + + + + UFOs: The Lost Evidence + UFO Tech + An exploration into whether breakthroughs such as high-energy lasers, antigravity technology and super-advanced aircraft are the result of human efforts alone or contact with UFOs. + Documentary + Science + + + TVPG + + + + UFOs: The Lost Evidence + UFO Abduction + Although alien abduction claims are often dismissed as hoaxes or delusions, there are landmark cases that scholars struggle to refute; Calvin Parker retells his harrowing experience of being abducted near the Pascagoula River in Mississippi. + Documentary + Science + + + TVPG + + + + The Phenomenon + Interviews with government officials and NASA astronauts, as well as archival footage, offer credible evidence and insight into the UFO phenomenon. + 2020 + Movies + Documentary + + + + UFOs: The Lost Evidence + UFOs and the Presidents: FDR to JFK + Investigators reveal the secret history of U.S. presidents and UFOs, from President Franklin D. Roosevelt's knowledge about a UFO battle over Los Angeles to President John F. Kennedy's alleged plan to share extraterrestrial secrets with the Russians. + Documentary + Science + + + TVPG + + + + UFOs: The Lost Evidence + UFO Tech + An exploration into whether breakthroughs such as high-energy lasers, antigravity technology and super-advanced aircraft are the result of human efforts alone or contact with UFOs. + Documentary + Science + + + TVPG + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + Ninja Woodfire Outdoor Grill + Meet the Shark Ninja Wood Fire Grill, with Master Grill, BBQ Smoke, and Air Fry outdoor capabilities. Powered by electricity and flavored by real burning wood pellets, Woodfire Technology allows you to easily create rich flavor you can see and taste. + Paid Program + + + + Mysteries at the Museum + Limbo for Love, Vampire's Grave and the Scarlet Pimpernel of the Vatican + Investigating a risky ride fueled by love; exploring a town plagued by the undead; uncovering one of the biggest rescue operations of World War II. + Travel + + + TVPG + + + + Mysteries at the Museum + Prehistoric Mystery Meat, The Invention of TP and Antony and Cleopatra + The truth behind a culinary caper that stunned the world; a toilet that inspired a taboo-busting invention; a sculpture behind the most tragic love story of all time. + Travel + + + TVPG + + + + Mysteries at the Museum + Revolutionary Suffragette; Tokyo Rose; Billion Dollar Will + Inspecting a police notebook, an old microphone and an iconic sign. + Travel + + + TVPG + + + + Mysteries at the Museum + Cellini Heist; Real Romeo and Juliet; Link to the Skies + A famous Renaissance sculpture; a rare book at Harvard reveals the inspiration behind a Shakespeare play; a strange flying device. + Travel + + + TVPG + + + + Mysteries at the Museum + Dolley Madison; Christmas Truce; Exploding Whale + A truce game, a tale of a whale and a First Lady's bravery. + Travel + + + TVPG + + + + Mysteries at the Museum + King Neptune, Friday Night Bank Robber and Karluk's Last Voyage + Don Wildman examines a patriotic pig that helped fund World War II, a man's trek to rescue his crew during a brutal Arctic expedition, and two activists who risked their lives to take down a superpower and save the whales. + Travel + + + TVPG + + + + Mysteries at the Museum + Evel Spirit, Dawn of the Diaper and Cliff Palace + Don Wildman examines a hot-air balloon used in the first Atlantic crossing by balloon, a ceramic jar used to hold a creepy medical cure and a mission patch tied to a space travel first. + Travel + + + TVPG + + + + Mysteries at the Museum + Legally Haunted, Demise of the Dodo and Jersey Kaboom + A house for sale comes with three ghosts; the maligned reputation of an extinct bird; during World War I, a mysterious explosion takes places at a munitions factory. + Travel + + + TVPG + + + + Paranormal Caught on Camera + Alabama Glitch in the Matrix and More + A UFO shoots across the sky in the Pocono Mountains; Bigfoot hides from a crowd in Tennessee's Great Smoky Mountains; a suspended soap bubble may be evidence of a glitch in the matrix. + Paranormal + Documentary + + + TV14 + + + + Paranormal Caught on Camera + Demonic Doll and More + A Pennsylvania family is terrorized by a haunted doll; two friends witness a fleet of UFOs in the night sky; a man encounters the infamous Yowie in the Australian outback. + Paranormal + Documentary + + + TVPG + + + + Paranormal Caught on Camera + Ghostly Regulars at Haunted Pubs and More + Ghostly patrons haunt pubs throughout the United Kingdom; a shadow creature stalks a police officer on an empty plane in Mexico City; a sea monster is spotted by multiple witnesses on the Thames. + Paranormal + Documentary + + + TVPG + + + + Paranormal Caught on Camera + A UFO Spotted Over the Pentagon and More + A pyramid-shaped UFO is spotted over the Pentagon; a man and his children are spooked by a ghost on a Rhode Island playground; a security camera captures strange creatures stalking a California neighborhood. + Paranormal + Documentary + + + TVPG + + + + Paranormal Caught on Camera + The World's Most Haunted School and More + Poltergeist activity is caught on an Irish school's security camera; two Russians encounter what may be a Sasquatch while driving in Siberia; a UFO is spotted flying over Australia in broad daylight. + Paranormal + Documentary + + + TVPG + + + + Paranormal Caught on Camera + The Great Gatsby Ghost and More + A grieving woman uses her TV to communicate with her deceased boyfriend; creatures with tentacles swim through the skies above Colorado; a heartbroken ghost gazes forlornly from the window of an abandoned home. + Paranormal + Documentary + + + TV14 + + + + Paranormal Caught on Camera + Fire Serpent of Brazil, The Witch's Lair and More + Experts analyze paranormal videos from around the world, breaking down the footage captured by onlookers and offering insights; eyewitnesses give firsthand accounts of strange phenomena. + Paranormal + Documentary + + + TV14 + + + + Paranormal Caught on Camera + Fire Serpent of Brazil, The Witch's Lair and More + Experts analyze paranormal videos from around the world, breaking down the footage captured by onlookers and offering insights; eyewitnesses give firsthand accounts of strange phenomena. + Paranormal + Documentary + + + TV14 + + + + Paranormal Caught on Camera + Virginia Civil War Ghost and More + A researcher finds the remains of a legendary dragon deep in the Mediterranean Sea; a beloved factory worker clocks into her shift years after her death in Japan; a Civil War spirit strolls along a battlefield. + Paranormal + Documentary + + + TV14 + + + + Paranormal Caught on Camera + The Great Gatsby Ghost and More + A grieving woman uses her TV to communicate with her deceased boyfriend; creatures with tentacles swim through the skies above Colorado; a heartbroken ghost gazes forlornly from the window of an abandoned home. + Paranormal + Documentary + + + TV14 + + + + Paranormal Caught on Camera + Fire Serpent of Brazil, The Witch's Lair and More + Experts analyze paranormal videos from around the world, breaking down the footage captured by onlookers and offering insights; eyewitnesses give firsthand accounts of strange phenomena. + Paranormal + Documentary + + + TV14 + + + + Paranormal Caught on Camera + Virginia Civil War Ghost and More + A researcher finds the remains of a legendary dragon deep in the Mediterranean Sea; a beloved factory worker clocks into her shift years after her death in Japan; a Civil War spirit strolls along a battlefield. + Paranormal + Documentary + + + TV14 + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + Pain Relief TV + Matt's pain from his 20 year old lost limb is solved. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Pain Relief TV + Matt's pain from his 20 year old lost limb is solved. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Cindy Crawford and Ellen Pompeo share secrets + Join Cindy Crawford and Ellen Pompeo as they discuss their busy lives and the breakthrough skin care discovery that keeps them looking their best. Take a trip to the stunning French countryside to see a rare French melon that defies aging. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Nature's Strangest Mysteries: Solved + Skyscraper Raccoon + A look at why a raccoon would scale a 25-story skyscraper, why one mother duck would have a super-sized flock of 76 ducklings, and what would motivate a bird to feed a school of fish. + + Gillian Burke + Lucy Cooke + Forrest Galante + + Documentary + + + TVPG + + + + Nature's Strangest Mysteries: Solved + Sparkly Spider + A look at what would dare take on the ocean's deadliest predator, why a spider lights up like a Christmas tree, and why a wild animal begins to deliver unwanted newspapers like a paperboy. + + Gillian Burke + Lucy Cooke + Forrest Galante + + Documentary + + + TVPG + + + + American Mystery + The Disappeared + New theories may shed light on the fate of aviator Amelia Earhart, hijacker D.B. Cooper and the three daring prisoners who escaped from the Alcatraz Federal Penitentiary. + Travel + History + + + TVPG + + + + American Mystery + Cover-Ups + Newly declassified documents may link the Roswell crash to Nazi science; fresh evidence may reveal what's really hidden inside Area 51; experts investigate the dark secrets of the Dugway Proving Ground. + Travel + History + + + TVPG + + + + American Mystery + Paranormal Destinations + Experts investigate disturbing phenomena at Skinwalker Ranch; top-secret experiments may have been conducted at a former Air Force base in Long Island, N.Y.; new theories may explain why Mount Shasta is a magnet for paranormal activity. + Travel + History + + + TVPG + + + + American Mystery + Triangles + Experts investigate the mystery of the Bermuda Triangle; researchers seek answers about strange sightings in Massachusetts; a murderer may be responsible for a string of unexplained disappearances in Bennington, Vt. + Travel + History + + + TVPG + + + + American Mystery + American Mystery: Unidentified + New theories about the Mantell UFO incident are revealed; scientific evidence may explain a UFO encounter in Texas; experts investigate what really crashed into a Canadian harbor. + Travel + History + + + TVPG + + + + American Mystery + Close Encounters + Experts investigate the abduction of Betty and Barney Hill; new evidence surfaces about abductee Travis Walton; there may be an earthly explanation for the Mothman. + Travel + History + + + TVPG + + + + American Mystery + Strange Crime + A new theory is posed about what really happened to Charles Lindbergh's kidnapped son; experts may have finally solved one of Hollywood's biggest murder mysteries; a small Ohio town seeks answers to thousands of threatening letters. + + Jordan Shore + Atlas Turkmen + + Travel + History + + + TVPG + + + + American Mystery + American Mystery: Mass UFO Sightings + Experts may have finally identified the strange creatures that besieged a Kentucky farmhouse; new evidence could explain the largest mass UFO sighting in U.S. history; investigators seek answers in Chicago's O'Hare International Airport sighting. + + Laura M. D'Alessandro + Jake Matton + Yann Archambault + + Travel + History + + + TVPG + + + + American Mystery + Hidden Treasures + A long-lost cache of Civil War gold may have been found; new evidence could point to the location of the stolen millions from the Plymouth Mail robbery; treasure hunters search for the legendary Lost Dutchman Mine. + Travel + History + + + TVPG + + + + Mysteries of the Unknown + Aliens Over Alaska, Black Cyclone, and UFO Missile Crisis + Don Wildman examines a horrifying encounter with three mysterious orbs over Alaska; a racer who peddled his way past prejudice; terrifying events straight out of a science-fiction novel at a nuclear missile silo. + Travel + + + TVPG + + + + Mysteries of the Unknown + Lost in Lava, Unseen Evidence and Catherine the Great + A hiker finds the will to survive when all hope seems lost; two young lawyers change the American judicial system forever; an ambitious czarina stages a shocking coup. + Travel + + + TVPG + + + + Mysteries of the Unknown + Baby Blue Operation, Cranky Cars, and Stumped + Don Wildman investigates a surgical technique that could be the solution to a devastating pediatric illness; an invention that revolutionized the automotive industry; an artifact that defies the laws of nature. + Travel + + + TVPG + + + + Mysteries of the Unknown + Lost in Lava, Unseen Evidence and Catherine the Great + A hiker finds the will to survive when all hope seems lost; two young lawyers change the American judicial system forever; an ambitious czarina stages a shocking coup. + Travel + + + TVPG + + + + Mysteries of the Unknown + Baby Blue Operation, Cranky Cars, and Stumped + Don Wildman investigates a surgical technique that could be the solution to a devastating pediatric illness; an invention that revolutionized the automotive industry; an artifact that defies the laws of nature. + Travel + + + TVPG + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigate Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Reduce swelling in your legs, ankles and feet + LegXercise is the easy-to-use, automatic leg mover that uses continuous movement to soothe pain and promote healthy circulation the natural drug-free way! It's Walking Simulator Technology moves your feet back and forth along its motion track. + Paid Program + + + + Cook Family Size Meals Faster + Emeril's biggest air fryer oven combines 10 kitchen appliances into one endlessly versatile countertop cooker with 2 cooking zones and a full menu of custom presets. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Pain Relief TV + Matt's pain from his 20 year old lost limb is solved. + Paid Program + + + + The American Dream + The American dream, a real show, highlighting real stories of our neighborhoods, culture, and real estate. Emmy nominated production team. + Paid Program + + + + The American Dream + The American dream, a real show, highlighting real stories of our neighborhoods, culture, and real estate. Emmy nominated production team. + Paid Program + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + Paid Program + + + TV14 + + + + Nature's Strangest Mysteries: Solved + Held Hostage by a Humpback + A look at why a humpback whale would hold a diver hostage, how a colony of 1.5 million animals hide from the world in plain sight, and how a surprising stash of acorns could disrupt a whole town. + + Gillian Burke + Lucy Cooke + Forrest Galante + + Documentary + + + TVPG + + + + Nature's Strangest Mysteries: Solved + Aflocalypse Now + A look at why a skunk would do a handstand, why 5,000 birds fell from the sky in Arkansas, and what would make a frog flash like a lighthouse. + Documentary + + + TVPG + + + + Haunting in the Heartland + The Watchman + Steve Shippy is called to the village of Merrill, Mich., to investigate an evil entity tormenting a young girl; with the help of a local historian, Steve discovers the town's long-forgotten traumatic past and its connection to the girl's home. + Paranormal + + + TV14 + + + + Haunting in the Heartland + I Am Red Death + Steve heads to Greeneville, Tenn., where a decades-long haunting has resulted in an unspeakable tragedy; with the help of local law enforcement, he uncovers the Bible Belt town's dark past and its connection to the victim's family. + Paranormal + + + TV14 + + + + Haunting in the Heartland + Come Play + A little girl's ghost haunts a small farming village. + Paranormal + + + TV14 + + + + Haunting in the Heartland + The Binding + An angry presence terrorizing a brother and sister; with the help of an historian and a clairvoyant, he discovers the dark secrets of the family who built the home. + Paranormal + + + TV14 + + + + Haunting in the Heartland + Descent Into Madness + A family is being tormented by the ghost of a psychiatric patient; a dark secret has haunted the town for over a century and may be the key to putting the spirit to rest. + Paranormal + + + TV14 + + + + Haunting in the Heartland + Face of Evil + Investigating an evil entity attacking a local woman in her home; a strange chain of events surrounds the property and the spirit becomes violent. + Paranormal + + + TV14 + + + + Famously Afraid + Montel Williams, Kate Flannery and Richie Ramone + TV talk show host Montel Williams explores a haunted cruise ship with psychic Sylvia Browne; actress Kate Flannery finds a special connection to the spiritual world; music artist Richie Ramone checks into a hotel with a sinister reputation. + + Montel Williams + Kate Flannery + Richie Ramone + + Paranormal + + + TVPG + + + + Famously Afraid + Chris Kattan, Willie Aames and Brandi Glanville + Comic Chris Kattan discovers a portal to another realm in his basement; actor Willie Aames confronts a beast lurking outside his home; reality star Brandi Glanville avoids disaster with the help of a guardian angel. + + Chris Kattan + Willie Aames + Brandi Glanville + + Paranormal + + + TVPG + + + + Famously Afraid + Jason Gedrick, Jillian Rose Reed and RJ Mitte + Actor Jason Gedrick makes a terrifying discovery in an apartment with a violent past; actress Jillian Rose Reed investigates a ghost in her family's basement; actor RJ Mitte encounters powerful spirits in his beloved grandparents' home. + + Jason Gedrick + Jillian Rose Reed + RJ Mitte + + Paranormal + + + TVPG + + + + Famously Afraid + Patti Stanger, John Melendez and Parker Stevenson + TV personality Patti Stanger (. + + Patti Stanger + John Melendez + Parker Stevenson + + Paranormal + + + TVPG + + + + Famously Afraid + Daisy Fuentes, Angie Everhart, Jake Busey and Sherilyn Fenn + TV personality Daisy Fuentes checks into a haunted hotel; actress Angie Everhart has a ghostly encounter after a near-death experience; actor Jake Busey spots a real-life UFO; actress Sherilyn Fenn receives a comforting message from the other side. + + Daisy Fuentes + Angie Everhart + Jake Busey + + Paranormal + + + TVPG + + + + Famously Afraid + Steve Guttenberg, Ed Lover and Tori Spelling + Actor Steve Guttenberg is tormented by the ghost of an eccentric royal; radio show host Ed Lover makes a shocking discovery in an abandoned house; actress Tori Spelling has a lifesaving encounter from the great beyond. + + Steve Guttenberg + Ed Lover + Tori Spelling + + Paranormal + + + TVPG + + + + Famously Afraid + Howie Mandel, Hal Sparks and Chloe Lukasiak + Comic Howie Mandel is terrorized by an evil spirit; comic Hal Sparks uncovers the truth about his own alien abduction; reality star Chloe Lukasiak opens a portal to another realm on a trip to New Orleans. + + Howie Mandel + Hal Sparks + Chloe Lukasiak + + Paranormal + + + TVPG + + + + Famously Afraid + Carson Kressley, Christi Lukasiak and Fred Williamson + Reality star Carson Kressley struggles to renovate his haunted dream home; reality star Christi Lukasiak narrowly escapes a supernatural attack in her grandparents' basement; former NFL player Fred Williamson has a disturbing vision from the past. + + Carson Kressley + Christi Lukasiak + Fred Williamson + + Paranormal + + + TVPG + + + + Famously Afraid + Ty Pennington, Amber Rose and Metta World Peace + TV personality Ty Pennington (. + + Ty Pennington + Amber Rose + Ron Artest + + Paranormal + + + TVPG + + + + Famously Afraid + Steve Guttenberg, Ed Lover and Tori Spelling + Actor Steve Guttenberg is tormented by the ghost of an eccentric royal; radio show host Ed Lover makes a shocking discovery in an abandoned house; actress Tori Spelling has a lifesaving encounter from the great beyond. + + Steve Guttenberg + Ed Lover + Tori Spelling + + Paranormal + + + TVPG + + + + Famously Afraid + Howie Mandel, Hal Sparks and Chloe Lukasiak + Comic Howie Mandel is terrorized by an evil spirit; comic Hal Sparks uncovers the truth about his own alien abduction; reality star Chloe Lukasiak opens a portal to another realm on a trip to New Orleans. + + Howie Mandel + Hal Sparks + Chloe Lukasiak + + Paranormal + + + TVPG + + + + Famously Afraid + Carson Kressley, Christi Lukasiak and Fred Williamson + Reality star Carson Kressley struggles to renovate his haunted dream home; reality star Christi Lukasiak narrowly escapes a supernatural attack in her grandparents' basement; former NFL player Fred Williamson has a disturbing vision from the past. + + Carson Kressley + Christi Lukasiak + Fred Williamson + + Paranormal + + + TVPG + + + + Famously Afraid + Ty Pennington, Amber Rose and Metta World Peace + TV personality Ty Pennington (. + + Ty Pennington + Amber Rose + Ron Artest + + Paranormal + + + TVPG + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Reduce swelling in your legs, ankles and feet + LegXercise is the easy-to-use, automatic leg mover that uses continuous movement to soothe pain and promote healthy circulation the natural drug-free way! It's Walking Simulator Technology moves your feet back and forth along its motion track. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Lung Cancer From Asbestos? + Have you or a loved one been diagnosed with lung cancer? You may be entitled to compensation! + Paid Program + + + + The American Dream + The American dream, a real show, highlighting real stories of our neighborhoods, culture, and real estate. Emmy nominated production team. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Nature's Strangest Mysteries: Solved + Unscrambling Eggs + A look at if fish really can predict earthquakes and why eggs are egg shaped. + + Gillian Burke + Lucy Cooke + Forrest Galante + + Documentary + + + TVPG + + + + Nature's Strangest Mysteries: Solved + Zombie Spider + A look at the possibility that zombie spiders are real and why would a pod of beluga whales adopt a unicorn of the sea. + + Gillian Burke + Lucy Cooke + Forrest Galante + + Documentary + + + TVPG + + + + Unexplained: Caught on Camera + UFOs in the Forest, Sightings by the Sea and Demon in a Box + A Big Foot encounter in Ohio gets hairy; an unexplainable beast gets washed up on a Liverpool beach; in Mexico City one man shows off his ability to meddle with Mother Nature; an investigation in a Nevada clown motel gets out of hand. + Performing Arts + Reality TV + + + TV14 + + + + Unexplained: Caught on Camera + Poltergeist In My House, Creepy Cottage and Deathly Dolls + A haunted house in Buckinghamshire leaves a couple horrified as their new house has an unwanted poltergeist; a paranormal investigation in a Cornish cottage contacts the dead; in New Jersey, a woman reveals her collection of deathly dolls. + Performing Arts + Reality TV + + + TV14 + + + + Unexplained: Caught on Camera + Paranormal Pub and Alien Woods + An investigation at a haunted pub in Grantham goes beyond a joke; a cursed cupboard in Cornwall reveals secrets; something tries to share the limelight with a young dancer in Scotland; a man's walk in the woods turns extra-terrestrial. + Performing Arts + Reality TV + + + TV14 + + + + Unexplained: Caught on Camera + Attack of the Owlman, Legend of Loch Ness and Shop of Horrors + UFO sightings deep in Rendlesham Forest have investigators caught up in a chase; unexplained sightings in Great Yarmouth wash up the remains of a mermaid; the opening of a demonic box in Florida causes mayhem; a sky in Georgia reveals a space oddity. + Performing Arts + Reality TV + + + TV14 + + + + Unexplained: Caught on Camera + Haunted Graveyard, Ghostly Guitars and Vanishing Hound + A guitar shop in Brighton is rocked by ghostly goings on; a man collapses from a suspected possession in Florida; a ghost hunter finds voodoo treasure in New Orleans; a vanishing hound haunts a couple in Texas. + Performing Arts + Reality TV + + + TV14 + + + + Unexplained: Caught on Camera + Haunted Houses and Creepy Cottages + There's no escape from a house of horrors in New York; a snake hunter hears sinister voices in an underground bunker in Florida; a curious cottage in Cambridgeshire, England, comes alive after dark. + Performing Arts + Reality TV + + + TV14 + + + + Paranormal Caught on Camera + The Departed DJ and More + A creature that tormented an Australian man's childhood is back for more; a DJ in North Carolina is still spinning sets from beyond the grave; a UFO in Islamabad remains immobile for hours. + Paranormal + Documentary + + + TV14 + + + + Bruce Lee: The Legend + The martial artist is seen in clips and recalled by Steve McQueen, James Coburn and others who knew him. + 1984 + Movies + Documentary + + + 2 + + + + The Big Boss + A kung-fu fighter (Bruce Lee) avenges his relatives, slain by their gangster boss. + + Bruce Lee + Maria Yi + Ying-Chieh Han + + 1971 + Movies + Action + + + TVG + + + 2 + + + + Abandoned + A Los Angeles newsman (Dennis O'Keefe) seeks a woman's (Gale Storm) sister and finds a black-market baby ring. + + Dennis O'Keefe + Gale Storm + Jeff Chandler + + 1949 + Movies + Crime Story + + + 2 + + + + The Killing Fields + Newsman Sydney Schanberg (Sam Waterston) loses his friend Dith Pran (Haing S. Ngor) in the 1975 fall of Phnom Penh. + + Sam Waterston + Haing S. Ngor + John Malkovich + + 1984 + Movies + Docu-Drama + + + TVPG + + + 3 + + + + The Killing Fields + Newsman Sydney Schanberg (Sam Waterston) loses his friend Dith Pran (Haing S. Ngor) in the 1975 fall of Phnom Penh. + + Sam Waterston + Haing S. Ngor + John Malkovich + + 1984 + Movies + Docu-Drama + + + TVPG + + + 3 + + + + Sweet Revenge + A teenage car thief's obsessive quest to own an expensive sports car keeps her lawyer and the police working overtime. + + Stockard Channing + Sam Waterston + Richard Doughty + + 1976 + Movies + Comedy + Drama + + + 2 + + + + From the Earth to the Moon + Industrial rivals (Joseph Cotten, George Sanders), a crewman and a stowaway girl (Debra Paget) ride a rocket launched by cannon in 1868 Florida. + + Joseph Cotten + George Sanders + Debra Paget + + 1958 + Movies + Sci-Fi + + + 2 + + + + Things to Come + William Cameron Menzies' adaptation of the H.G. Wells novel tells of humankind's efforts to rebuild the war-torn planet. + + Raymond Massey + Ralph Richardson + Margaretta Scott + + 1936 + Movies + Sci-Fi + + + TVG + + + 3 + + + + Abandoned + A Los Angeles newsman (Dennis O'Keefe) seeks a woman's (Gale Storm) sister and finds a black-market baby ring. + + Dennis O'Keefe + Gale Storm + Jeff Chandler + + 1949 + Movies + Crime Story + + + 2 + + + + The Strange Love of Martha Ivers + Martha (Barbara Stanwyck) and her husband (Kirk Douglas), who saw her kill her aunt, fear a childhood friend (Van Heflin) saw her too. + + Barbara Stanwyck + Van Heflin + Kirk Douglas + + 1946 + Movies + Drama + + + TVG + + + 3 + + + + The McConnell Story + Joseph McConnell Jr. (Alan Ladd) goes from the medical corps to jet ace, with a wife (June Allyson) and family. + + Alan Ladd + June Allyson + James Whitmore + + 1955 + Movies + Drama + + + TVG + + + 3 + + + + Room for One More + The easygoing parents (Cary Grant, Betsy Drake) of three children take in one troubled teen, then another one. + + Cary Grant + Betsy Drake + Lurene Tuttle + + 1952 + Movies + Comedy + + + 3 + + + + Some Came Running + An ex-GI writer (Frank Sinatra) hangs out with a gambler (Dean Martin) and a floozy (Shirley MacLaine) in his hometown. + + Frank Sinatra + Dean Martin + Shirley MacLaine + + 1958 + Movies + Drama + + + TVG + + + 3 + + + + The Golden Age of Comedy + Classic clips from Hollywood's silent era include Laurel and Hardy, Carole Lombard, Harry Langdon, Will Rogers, Jean Harlow. + 1957 + Movies + Documentary + + + 4 + + + + When Comedy Was King + Silent film vignettes feature Charlie Chaplin, Fatty Arbuckle, Buster Keaton and other all-time greats of comedy. + 1960 + Movies + Documentary + + + 3 + + + + Big Parade of Comedy + Comedic excerpts. + Comedy + + + + The Show + A lady-killer (John Gilbert) at a carnival runs afoul of the law and a jealous colleague (Lionel Barrymore). + + John Gilbert + Renée Adorée + Lionel Barrymore + + 1927 + Movies + Drama + + + 2 + + + + The Show + A lady-killer (John Gilbert) at a carnival runs afoul of the law and a jealous colleague (Lionel Barrymore). + + John Gilbert + Renée Adorée + Lionel Barrymore + + 1927 + Movies + Drama + + + 2 + + + + Canoa: A Shameful Memory + A priest in a small town creates a lynch mob when he accuses visiting students of being communist agitators on the run from the army in Mexico City. + + Enrique Lucero + Salvador Sánchez + Ernesto Gómez Cruz + + 1976 + Movies + Drama + + + + Memories of Underdevelopment + A bourgeois writer (Sergio Corrieri) seduces a teenager and chronicles Castro's changes in 1961 Cuba. + + Sergio Corrieri + Beatriz Ponchova + Daysi Granados + + 1968 + Movies + Drama + + + 3 + + + + Our Town + A narrator (Frank Craven) relates a couple's (William Holden, Martha Scott) tale of life, love and death in New Hampshire. + + William Holden + Martha Scott + Frank Craven + + 1940 + Movies + Drama + + + TVG + + + 3 + + + + The Human Comedy + A teenager (Mickey Rooney) heads his California family during World War II. + + Mickey Rooney + Frank Morgan + James Craig + + 1943 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + Kings Row + Sin surrounds a Freudian doctor (Robert Cummings), his playboy buddy (Ronald Reagan) and the buddy's girlfriend (Ann Sheridan) in a circa-1900 town. + + Ann Sheridan + Ronald Reagan + Robert Cummings + + 1942 + Movies + Drama + + + TVG + + + 3 + + + + A Stranger in Town + A Supreme Court justice on a duck-hunting foray becomes involved in serious trouble with the citizens in a small town. + + Frank Morgan + Richard Carlson + Jean Rogers + + 1943 + Movies + Drama + + + 2 + + + + On Moonlight Bay + A teenage tomboy (Doris Day) with a fun family makes music with a college man (Gordon MacRae) in circa-World War I Indiana. + + Doris Day + Gordon MacRae + Jack Smith + + 1951 + Movies + Romance + + + TVG + + + 2 + + + + Small Town Girl + A judge's daughter (Jane Powell) keeps an eye on a playboy (Farley Granger) who gets 30 days in jail for speeding. + + Jane Powell + Farley Granger + Ann Miller + + 1953 + Movies + Musical + + + 2 + + + + The Whistle at Eaton Falls + A newly promoted plant supervisor finds himself in the position of having to announce a layoff of his fellow workers. + + Lloyd Bridges + Dorothy Gish + Carleton Carpenter + + 1951 + Movies + Drama + + + 2 + + + + She Couldn't Say No + An oil heiress repays an act of childhood kindness by lavishing anonymous gifts upon the citizens of her hometown. + + Robert Mitchum + Jean Simmons + Arthur Hunnicutt + + 1954 + Movies + Comedy + + + 3 + + + + The Heart Is a Lonely Hunter + John, a deaf and mute man, rents a bedroom in a small town to be closer to his friend, Spiros, who is also deaf. John attempts to strike up a friendship with Mick, the teenage daughter of his disabled landlord, and meets the town drunk. + + Alan Arkin + Sondra Locke + Stacey Keach + + 1968 + Movies + Drama + + + TVG + + + 3 + + + + Wait Until Dark + Intruders search a blind woman's (Audrey Hepburn) Greenwich Village apartment for a heroin-filled doll. + + Audrey Hepburn + Alan Arkin + Richard Crenna + + 1967 + Movies + Thriller + + + TVG + + + 3 + + + + The Russians Are Coming, the Russians Are Coming + A Soviet officer (Alan Arkin) and crewmen go ashore for help after their submarine runs aground off Nantucket. + + Carl Reiner + Eva Marie Saint + Alan Arkin + + 1966 + Movies + Comedy + + + TVG + + + 3 + + + + The Russians Are Coming, the Russians Are Coming + A Soviet officer (Alan Arkin) and crewmen go ashore for help after their submarine runs aground off Nantucket. + + Carl Reiner + Eva Marie Saint + Alan Arkin + + 1966 + Movies + Comedy + + + TVG + + + 3 + + + + Popi + A Puerto Rican widower (Alan Arkin) launches a reckless scheme to get his two sons out of Spanish Harlem. + + Alan Arkin + Rita Moreno + Reuben Figueroa + + 1969 + Movies + Comedy + Drama + + + TVG + + + 3 + + + + The In-Laws + A New York dentist (Alan Arkin) lands in a Central American hot spot with a shady guy who soon will be his daughter's father-in-law (Peter Falk). + + Peter Falk + Alan Arkin + Richard Libertini + + 1979 + Movies + Comedy + + + TVG + + + 3 + + + + Cinéma + Hôtel du nord + A couple (Annabella, Jean-Pierre Aumont) meet in a Paris hotel to fulfill a suicide pact, but after shooting his lover, the man loses his nerve and flees. + + Annabella + Jean-Pierre Aumont + Louis Jouvet + + 1938 + Movies + Drama + + + 2 + + + + Having Wonderful Time + Instead of relaxing at a mountain resort a secretary (Ginger Rogers) falls in love with a stranger (Douglas Fairbanks Jr.). + + Ginger Rogers + Douglas Fairbanks Jr. + Lucille Ball + + 1938 + Movies + Romance + + + 2 + + + + Blonde Crazy + A hotel bellhop (James Cagney) and his girlfriend (Joan Blondell) work con games, then are conned by a con man (Louis Calhern) themselves. + + James Cagney + Joan Blondell + Louis Calhern + + 1931 + Movies + Crime Story + + + 2 + + + + Idiot's Delight + A song-and-dance man (Clark Gable) in the Alps meets a Russian countess (Norma Shearer) who reminds him of a girl from Omaha. + + Norma Shearer + Clark Gable + Edward Arnold + + 1939 + Movies + Comedy + + + 3 + + + + Her Highness and the Bellboy + A New York hotel bellboy (Robert Walker) forgets his girlfriend (June Allyson) after meeting a European princess (Hedy Lamarr). + + Hedy Lamarr + Robert Walker + June Allyson + + 1945 + Movies + Romance + + + 2 + + + + Weekend at the Waldorf + A stenographer (Lana Turner), a movie star (Ginger Rogers), a war correspondent (Walter Pidgeon) and other hotel guests find romance in New York. + + Ginger Rogers + Lana Turner + Walter Pidgeon + + 1945 + Movies + Musical + + + TVG + + + 3 + + + + Dear Heart + An unmarried postmistress (Geraldine Page) attends a New York convention and meets a salesman (Glenn Ford) about to be married. + + Glenn Ford + Geraldine Page + Michael Anderson Jnr. + + 1965 + Movies + Comedy + + + TVG + + + 3 + + + + Crossfire + A GI (Robert Mitchum) helps a pipe-smoking detective (Robert Young) trap an anti-Semitic soldier (Robert Ryan) for murder. + + Robert Young + Robert Mitchum + Robert Ryan + + 1947 + Movies + Crime Story + + + TVG + + + 3 + + + + A Woman's Secret + A piano player (Melvyn Douglas) tells a detective about two singers (Maureen O'Hara, Gloria Grahame), one supposedly shot by the other. + + Maureen O'Hara + Melvyn Douglas + Gloria Grahame + + 1949 + Movies + Drama + + + 3 + + + + Roughshod + An escaped convict tracks two brothers (Robert Sterling, Claude Jarman Jr.) herding horses and four stranded dance-hall hostesses. + + Robert Sterling + Gloria Grahame + Claude Jarman Jr. + + 1949 + Movies + Western + + + 2 + + + + Roughshod + An escaped convict tracks two brothers (Robert Sterling, Claude Jarman Jr.) herding horses and four stranded dance-hall hostesses. + + Robert Sterling + Gloria Grahame + Claude Jarman Jr. + + 1949 + Movies + Western + + + 2 + + + + Blonde Fever + A middle-aged restaurant owner (Philip Dorn) plans to leave his wife (Mary Astor) for a young waitress (Gloria Grahame). + + Mary Astor + Philip Dorn + Gloria Grahame + + 1944 + Movies + Drama + + + 2 + + + + Merton of the Movies + Promoters take a theater usher (Red Skelton) to Hollywood as a publicity stunt for a fading star (Leon Ames). + + Red Skelton + Virginia O'Brien + Leon Ames + + 1947 + Movies + Comedy + + + TVG + + + 2 + + + + Song of the Thin Man + Nick and Nora Charles (William Powell, Myrna Loy) solve a floating-casino murder with a jazz clarinetist (Keenan Wynn). + + William Powell + Myrna Loy + Keenan Wynn + + 1947 + Movies + Comedy + Drama + + + TVG + + + 2 + + + + It Happened in Brooklyn + A returned GI (Frank Sinatra), a British nobleman (Peter Lawford), a school janitor and a teacher (Kathryn Grayson) make music together. + + Frank Sinatra + Kathryn Grayson + Peter Lawford + + 1947 + Movies + Musical + + + TVG + + + 2 + + + + Without Love + An inventor (Spencer Tracy) who sleepwalks and a widow (Katharine Hepburn) with a big house try platonic marriage in wartime Washington. + + Spencer Tracy + Katharine Hepburn + Lucille Ball + + 1945 + Movies + Comedy + + + TVG + + + 3 + + + + Attack of the 50 Foot Woman + Turned into a giantess by an alien, a woman (Allison Hayes) finds her husband (William Hudson) in a bar with a floozy (Yvette Vickers). + + Allison Hayes + William Hudson + Yvette Vickers + + 1958 + Movies + Sci-Fi + + + TVG + + + 1 + + + + The Tin Man + Thelma and Patsy stumble upon an eery old house inhabited by a mad genius who has constructed a robot to fulfill his whims. + + Matthew Betz + Clarence Wilson + + 1935 + Movies + Adventure + + + + Trog + An anthropologist (Joan Crawford) works with her subject, an ice-age troglodyte found in an English cave. + + Joan Crawford + Michael Gough + Bernard Kay + + 1970 + Movies + Horror + + + TVG + + + 2 + + + + The Indestructible Man + An executed killer called the Butcher (Lon Chaney Jr.) is zapped back to life in Los Angeles. + + Lon Chaney Jr. + Marian Carr + Max Showalter + + 1956 + Movies + Sci-Fi + + + TVG + + + 1 + + + + The Power + Scientists (George Hamilton, Suzanne Pleshette) think a colleague has a deadly superbrain capable of controlling others. + + George Hamilton + Suzanne Pleshette + Richard Carlson + + 1968 + Movies + Sci-Fi + + + TVG + + + 2 + + + + The Illustrated Man + A young drifter is led into a world of fear when the images on the skin of a tattooed hobo come to life. + + Rod Steiger + Claire Bloom + Robert Drivas + + 1969 + Movies + Sci-Fi + + + TVPG + + + 2 + + + + The Terminal Man + A man becomes a guinea pig involving electrode implanting when he suffers from blackouts which make him violent. + + George Segal + Joan Hackett + Richard Dysart + + 1974 + Movies + Sci-Fi + + + TV14 + + + 2 + + + + Tijuana vs. América + América vs. Tijuana + Jornada 16 de la Liga MX Apertura 2023. Las Águilas del América se enfrenta a los Xolos de Tijuana. Desde el estadio Azteca, Ciudad de México. + Sports + Soccer + + + + Monterrey vs. Pachuca + Pachuca vs. Monterrey + Pachuca y Monterrey miden fuerzas en partido de la Jornada 16 del torneo Apertura. Encuentro disputado el 4 de noviembre en el estadio Hidalgo. + Sports + Soccer + + + + Vecinos + Las cuotas del mantenimiento + Un programa que relata las vidas de los habitantes de un edificio de apartamentos y cómo interactúan entre ellos. Explora de forma amena los conflictos y sucesos divertidos que pueden ocurrir entre los vecinos. + + César Bono + Eduardo España + Macaria + + Sitcom + + + TVPG + + + + Vecinos + Ropa de paca + Jorjais decide vender ropa de paca afuera del edificio. Además, Luis y Silvia se sienten solos y tristes porque Luisito se ha ido a la guardería. + + César Bono + Eduardo España + Macaria + + Sitcom + + + TVPG + + + + Nosotros los guapos + Boxeador profesional + Albertano y el Vítor hablan sobre el acoso. Rosita llega muy enojada a la casa porque el Chirris le faltó al respeto, Albertano y el Vítor van a enfrentarlo. El Chirris golpea al Vítor y lo deja inconsciente. + + Malillany Marín + Adrián Uribe + Ariel Miramontes + + Soaps + Comedy + + + TV14 + + + + Noticiero Univisión: Fin de semana + La información más importante y actualizada de lo que ha sucedido en el mundo durante el fin de semana, realizado por un equipo de periodistas apasionados por su trabajo, objetivos y veraces que dan las últimas noticias y el resumen de la semana. + News + + + + Esta historia me suena, Vol. 6 + ¿Cómo pagarte? + Marco cae en problemas de drogadicción después de perder a su madre. Sin embargo, Cris llega a su vida y podría ser la luz que lo guíe fuera de la oscuridad antes de que se pierda. + Music + + + TVMA + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Vecinos + El wifi + Silvia instala internet de alta velocidad en su departamento, sin embargo su conexión está muy lenta pero lo que no sabe es que los vecinos conocen su contraseña y todos se conectan a su red. + + César Bono + Eduardo España + Macaria + + Sitcom + + + TVPG + + + + Noticiero Univisión: Fin de semana + La información más importante y actualizada de lo que ha sucedido en el mundo durante el fin de semana, realizado por un equipo de periodistas apasionados por su trabajo, objetivos y veraces que dan las últimas noticias y el resumen de la semana. + News + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Descubra una solución natural para el dolor + Connie Craig-Carrol y el fundador Ken Meares investigan OmegaXL, una solución totalmente natural para el dolor articular causado por la inflamación. + Paid Program + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + AAA Benefits and Savings + Aprenda como usted podría ahorrar a diario con AAA, desde Asistencia en el Camino las 24 horas, Viaje Seguro y Descuentos a Miembros. + Paid Program + + + + Operation Smile + Operation Smile: transformando vidas y regalando sonrisas a los niños alrededor del mundo. + Paid Program + + + + Fútbol central + El programa elemental para los fans, el cual les indica qué buscar y esperar en la cancha en los próximos partidos y campeonatos. + Sports + Soccer + + + + Atlas vs. Pumas UNAM + Pumas UNAM vs. Club Atlas + Acción en la Jornada 16 de la Liga MX. Los Pumas de la UNAM juegan contra los rojinegros del Atlas. Desde el Estadio Olímpico Universitario. + Sports + Soccer + + + + Al punto California + Un espacio para la discusión y el análisis de asuntos públicos de relevancia. Las problemáticas de California y de sus comunidades. + News + Local + + + + Aquí y ahora + Reportajes de investigaciones periodísticas de temas de actualidad, de vanguardia, de opinión pública y de problemáticas sociales, este además tiene su faceta ligera y algunas veces incluye episodios con entrevistas exclusivas de los famosos. + News Magazine + + + TV14 + + + + Como dice el dicho + Nunca prometer lo que nunca puedas dar o hacer + Un joven se ve afectado por el alcoholismo de su padre y se comporta de manera conflictiva. El padre promete una y otra vez dejar de beber, pero no lo cumple, orillando a su hijo a poner en riesgo su vida. + + Michael Ronda + Wendy González + Sergio Corona + + Comedy + Drama + + + TV14 + + + + Una familia de diez + La ropa nueva se revuelve en casa + Teresa tiene que realizar unas prendas para un desfile. Además, Plácido participará en un torneo de tenis de mesa. + + Jorge Ortiz de Pinedo + Eduardo Manzano + Zully Keith + + Comedy + + + TVPG + + + + Una familia de diez + El bebé de Rosegaby + Plácido ya está en su casa, pero todas las noches sueña con que su jefe regresa por él. Además, la familia piensa que el gusanitito está poseído porque se oyen ruidos extraños cada vez que él los visita. + + Jorge Ortiz de Pinedo + Eduardo Manzano + Zully Keith + + Comedy + + + TVPG + + + + La rosa de Guadalupe + No te fresees, fresa no es un verbo + Una joven no se lleva bien con uno de sus compañeros del colegio debido a su egocentrismo, pero el destino hace que se reencuentren en el futuro y termine profundamente enamorada de él. + + Milia Nader + Diego Lara + Sandra Itzel + + Drama + + + TV14 + + + + La rosa de Guadalupe + Alguien a quien amar + Una pareja decide hacerse cargo del hijo de su amiga fallecida, pero las cosas se salen de control cuando la abuela intenta quitarles al pequeño sin importarle su felicidad. + + Milia Nader + Diego Lara + Sandra Itzel + + Drama + + + TV14 + + + + Noticias 34: Fin de Semana: A las Seis + News + + + + Noticias 34: Fin de Semana: A las Seis + News + + + + Noticias 34: Edición Nocturna + Noticias al instante con lo último sobre deportes, política, finanzas, tecnología, clima y fama. + News + + + + Sabor de mañana + Un adelanto de lo que sucederá en. + Performing Arts + + + + Noticiero Univisión: Fin de semana + La información más importante y actualizada de lo que ha sucedido en el mundo durante el fin de semana, realizado por un equipo de periodistas apasionados por su trabajo, objetivos y veraces que dan las últimas noticias y el resumen de la semana. + News + + + + Mira quién baila: ¡La revancha! + Se reunen concursantes que ya han competido en anteriores versiones así como otros destacados artistas que han dado de qué hablar en el baile. + Performing Arts + Game Shows + + + + De noche pero sin sueño + Un espacio que reúne a los grandes talentos de la música, la TV y el cine, y los creadores de contenido. Comedia, música e innovadores segmentos de entretenimiento brindan un ritmo dinámico sorprendiendo al público constantemente. + Performing Arts + Talk Shows + + + TV14 + + + + Vecinos + El método Rivers + Lorena está cansada de que Frankie no consiga trabajo y a él se le ocurre una gran idea: abrir una academia de actuación basada en el Método Rivers. + + César Bono + Eduardo España + Macaria + + Sitcom + + + TVPG + + + + Renta congelada + Prefiero mi arte + Ana y Fernando idean un plan para deshacerse de la mesa de billar de Federico. Por otro lado, Ana pinta uno de sus cuadros para su primera exposición sin imaginar que Federico y Fernando le ocasionarían un accidente. + Comedy + + + TV14 + + + + La jugada + El lugar para revivir los sucesos y las noticias más importantes del fin de semana, combinados con entrevistas, emotivas historias y reseñas de todo el mundo deportivo. Secciones dedicadas a fútbol, NFL, MLB, NBA y más. + Sports + Talk Show + + + + Noticias 34 A Primera Hora + Noticias al momento sobre deportes, política y espectáculos con una visión crítica y analítica. + News + + + + Noticias 34 A Primera Hora + Noticias al momento sobre deportes, política y espectáculos con una visión crítica y analítica. + News + + + + ¡Despierta América! + Revista matutina con noticias, temas de actualidad, reportajes de farándula, música e información práctica. + + Maity Interiano + Andrea Chediak + + Talk Shows + Variety + + + TV14 + + + + Como dice el dicho + El mayate cree que sus hijos son granos de oro + La madre de Mine se queda a cargo del negocio familiar. Sin embargo, aunque Mine quiere estudiar la universidad, sus hermanos se gastan el dinero en apuestas y truncan su sueño. + + Michael Ronda + Wendy González + Sergio Corona + + Comedy + + + TV14 + + + + Noticiero Univision: Edición digital + Noticiero que transmite los hechos mundiales relevantes para la comunidad hispana. Presentado por jóvenes periodistas en un ambiente informal. + News + + + + Edición Digital California + Cubriendo el acontecer de California, el pronóstico del tiempo y la información actual de la comunidad. + News + + + + Hoy + Revista de entretenimiento y estilo de vida que presenta consejos de cocina, proyectos caseros, belleza y salud, además de noticias y artistas invitados. + Talk Shows + Variety + + + + ¡Siéntese quien pueda! + Una serie de panelistas destacados del mundo de la prensa de espectáculos participan en un reality entre ellos mientras se desarrolla el programa. + Game Shows + Performing Arts + + + + Vino el amor + Tentadora oferta + Tano le pide a David que lo deje estar cerca de Fernanda para que salga adelante, pero él le pide que se aleje de ella. Juan le propone a Adolfo darle información sobre el viñedo de David para que gane la competencia de vino. + + Gabriel Soto + Irina Baeva + Christian De la Campa + + Soaps + + + TV14 + + + + El gordo y la flaca + Chismes de celebridades y las últimas noticias de la industria del entretenimiento, en un programa que combina entrevistas con actores, músicos y celebridades. + Talk Shows + Performing Arts + + + TVPG + + + + Primer impacto + Una revista que cubre las noticias de última hora y las más impactantes. Un gran equipo de periodistas ofrece completos informes del país y del mundo. El programa también cuenta con dos segmentos de salud semanales. + News Magazine + + + + Noticias 34 + Noticias al momento sobre deportes, política y espectáculos con una visión crítica y analítica. + News + + + + Noticiero Univisión + El noticiero transmite los acontecimientos mundiales que son de interés público para la comunidad hispana desde su sede en Florida e incluye reportajes de la política, el clima, los deportes, la educación, la inmigración, entre otros. + News + + + + La rosa de Guadalupe + Falsa palabra + Alina y Rubén son esposos, pero él ya no tiene interés en ella. Después de un ataque de celos, Alina culpa a Rubén de abusar de su hija, por lo que él trata de probar su inocencia. + + Milia Nader + Diego Lara + Sandra Itzel + + Drama + + + TV14 + + + + Eternamente amándonos + El pasado vs. el presente + Martina se despide de sus hijos y familia porque presiente que pronto los va a olvidar. Además, Paula y Eva deciden enfrentar la verdad y hablar de lo sucedido. + + Alejandra Robles Gil + Marcus Ornellas + + Soaps + Drama + + + TVY + + + + Mujer + Arif le confiesa a su padre sus sentimientos por Bahar y su intención de proponerle matrimonio. Un enemigo del pasado regresa a atormentar a Piril y Alp, poniendo en grave peligro sus vidas y la de sus hijos. + + Özge Özpirincci + Seray Kaya + Kubra Suzgun + + Drama + Soaps + + + TV14 + + + + Minas de pasión + Emilia ha muerto + Descubre si Tigre se recupera tras su caída en el bosque. Además, Emilia está lista para regresar por venganza. + + Livia Brito + Osvaldo de León + Anette Michel + + Soaps + + + + Noticias Univisión 34: Sólo a las once + La información más destacada y las últimas novedades de la actualidad. + News + + + + Noticiero Univision: Edición nocturna + Un repaso de las noticias ocurridas hasta el final el día. Tiene la información completa de las noticias de último minuto y registra con las cámaras desde el lugar de los hechos para que la audiencia quede bien informada antes de terminar el día. + News + + + + Contacto deportivo + El destino obligado de los amantes del deporte para estar actualizados sobre las noticias más importantes y los partidos más destacados de todos los deportes masivos. + Sports + News + + + + Mujer + Arif le confiesa a su padre sus sentimientos por Bahar y su intención de proponerle matrimonio. Un enemigo del pasado regresa a atormentar a Piril y Alp, poniendo en grave peligro sus vidas y la de sus hijos. + + Özge Özpirincci + Seray Kaya + Kubra Suzgun + + Drama + Soaps + + + TV14 + + + + Minas de pasión + Emilia ha muerto + Descubre si Tigre se recupera tras su caída en el bosque. Además, Emilia está lista para regresar por venganza. + + Livia Brito + Osvaldo de León + Anette Michel + + Soaps + + + + ¿Accidente automovilístico? Consulta legal gratuita + Profesionales legales listos para responder sus preguntas. + Paid Program + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Quiero Amarte + La trampa de Lucrecia + César le pide a uno de sus empleados que ponga cámaras en la oficina de Amaya; Iván despierta y cree que es novio de Cecilia. + + Karyme Lozano + Cristian de la Fuente + Diana Bracho + + Soaps + + + + Noticias 34 A Primera Hora + Noticias al momento sobre deportes, política y espectáculos con una visión crítica y analítica. + News + + + + Noticias 34 A Primera Hora + Noticias al momento sobre deportes, política y espectáculos con una visión crítica y analítica. + News + + + + ¡Despierta América! + Revista matutina con noticias, temas de actualidad, reportajes de farándula, música e información práctica. + + Maity Interiano + Andrea Chediak + + Talk Shows + Variety + + + TV14 + + + + Como dice el dicho + Cuando el tiempo ayuda, hasta los troncos retoñan + Mariano acaba de salir de prisión y quiere comenzar una nueva vida. Sin embargo, se reencuentra con Antonio, el culpable de que fuera a prisión, por lo que sus planes podrían cambiar. + + Michael Ronda + Wendy González + Sergio Corona + + Comedy + + + TV14 + + + + Paris Saint-Germain vs. AC Milan + AC Milan vs. Paris Saint-Germain FC + Jornada 4 del Grupo F de la Champions League. Milan se enfrenta a Paris Saint-Germain. Desde el estadio Giuseppe Meazza. + Sports + Soccer + + + + Noticiero Univision: Edición digital + Noticiero que transmite los hechos mundiales relevantes para la comunidad hispana. Presentado por jóvenes periodistas en un ambiente informal. + News + + + + Nosotros los guapos + Los guapos chambelanes + El Vítor le dice a Albertano que usó sus revistas de lucha libre como papel de baño. El Vítor y Albertano ven el anuncio de un baile que habrá en el barrio y los dos quieren invitar a Rosita. + + Malillany Marín + Adrián Uribe + Ariel Miramontes + + Soaps + Comedy + + + TV14 + + + + ¡Siéntese quien pueda! + Una serie de panelistas destacados del mundo de la prensa de espectáculos participan en un reality entre ellos mientras se desarrolla el programa. + Game Shows + Performing Arts + + + + El gordo y la flaca + Chismes de celebridades y las últimas noticias de la industria del entretenimiento, en un programa que combina entrevistas con actores, músicos y celebridades. + Talk Shows + Performing Arts + + + TVPG + + + + Primer impacto + Una revista que cubre las noticias de última hora y las más impactantes. Un gran equipo de periodistas ofrece completos informes del país y del mundo. El programa también cuenta con dos segmentos de salud semanales. + News Magazine + + + + Noticiero Univision: Edición digital + Noticiero que transmite los hechos mundiales relevantes para la comunidad hispana. Presentado por jóvenes periodistas en un ambiente informal. + News + + + + Noticiero Univisión + El noticiero transmite los acontecimientos mundiales que son de interés público para la comunidad hispana desde su sede en Florida e incluye reportajes de la política, el clima, los deportes, la educación, la inmigración, entre otros. + News + + + + La rosa de Guadalupe + El rostro de mi abuela + Iván tiene problemas en casa y sus padres lo descuidan. Por hacer caso a malas amistades, él genera una adicción a las drogas de la cual solo su abuela lo ayuda a salir. + + Milia Nader + Diego Lara + Sandra Itzel + + Drama + + + TV14 + + + + Eternamente amándonos + El último cumpleaños + Fernando le pide matrimonio a Imelda de nuevo. Además, durante su cumpleaños, Gabriel habla con Rogelio sobre lo que hará cuando Martina los olvide. + + Alejandra Robles Gil + Marcus Ornellas + + Soaps + Drama + + + TV14 + + + + Mujer + Enver confronta a Sirin acerca del dinero que encontró en su habitación. Ante los reclamos de Enver, Sirin se va de la casa y busca refugio con Suat. Mientras tanto, la enfermedad de Bahar progresa cada día más. + + Özge Özpirincci + Seray Kaya + Kubra Suzgun + + Drama + Soaps + + + TV14 + + + + Minas de pasión + Nace Victoria Alcázar + Emilia ha quedado atrás y ahora Victoria Alcázar será quien tome posesión de sus cosas y haga justicia por Emilia. Además, una visita inesperada hará que Nicolás regrese a San Lorenzo. + + Livia Brito + Osvaldo de León + Anette Michel + + Soaps + + + + Noticias Univisión 34: Sólo a las once + La información más destacada y las últimas novedades de la actualidad. + News + + + + Noticiero Univision: Edición nocturna + Un repaso de las noticias ocurridas hasta el final el día. Tiene la información completa de las noticias de último minuto y registra con las cámaras desde el lugar de los hechos para que la audiencia quede bien informada antes de terminar el día. + News + + + + Contacto deportivo + El destino obligado de los amantes del deporte para estar actualizados sobre las noticias más importantes y los partidos más destacados de todos los deportes masivos. + Sports + News + + + + Mujer + Enver confronta a Sirin acerca del dinero que encontró en su habitación. Ante los reclamos de Enver, Sirin se va de la casa y busca refugio con Suat. Mientras tanto, la enfermedad de Bahar progresa cada día más. + + Özge Özpirincci + Seray Kaya + Kubra Suzgun + + Drama + Soaps + + + TV14 + + + + Minas de pasión + Nace Victoria Alcázar + Emilia ha quedado atrás y ahora Victoria Alcázar será quien tome posesión de sus cosas y haga justicia por Emilia. Además, una visita inesperada hará que Nicolás regrese a San Lorenzo. + + Livia Brito + Osvaldo de León + Anette Michel + + Soaps + + + + ¿Accidente automovilístico? Consulta legal gratuita + Profesionales legales listos para responder sus preguntas. + Paid Program + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Quiero Amarte + Sin memoria + Juliana enfrenta a su ex novio y le pregunta por qué fue tan cruel con ella; Juliana descubre a César rociando un líquido en su carro; Max le pide a Constanza que intenten tener una nueva relación. + + Karyme Lozano + Cristian de la Fuente + Diana Bracho + + Soaps + + + + Noticias 34 A Primera Hora + Noticias al momento sobre deportes, política y espectáculos con una visión crítica y analítica. + News + + + + Noticias 34 A Primera Hora + Noticias al momento sobre deportes, política y espectáculos con una visión crítica y analítica. + News + + + + ¡Despierta América! + Revista matutina con noticias, temas de actualidad, reportajes de farándula, música e información práctica. + + Maity Interiano + Andrea Chediak + + Talk Shows + Variety + + + TV14 + + + + Ringo + Ringo, un gran boxeador, se dará cuenta de que su lucha más difícil no será dentro de un cuadrilátero, sino fuera del mismo, pues sus mayores oponentes serán la envidia y la traición. + + José Ron + Mariana Torres + César Évora + + Soaps + Drama + + + TV14 + + + + Noticiero Univision: Edición digital + Noticiero que transmite los hechos mundiales relevantes para la comunidad hispana. Presentado por jóvenes periodistas en un ambiente informal. + News + + + + Edición Digital California + Cubriendo el acontecer de California, el pronóstico del tiempo y la información actual de la comunidad. + News + + + + Hoy + Revista de entretenimiento y estilo de vida que presenta consejos de cocina, proyectos caseros, belleza y salud, además de noticias y artistas invitados. + Talk Shows + Variety + + + + Corazón guerrero + Tras morir su padre, Jesús y sus hermanos son separados y entregados en adopción a distintas familias. Tiempo después, logran reencontrarse. + + Gonzalo García Vivanco + Alejandra Espinoza + Christian De la Campa + + Soaps + + + TV14 + + + + Edición Digital California + Cubriendo el acontecer de California, el pronóstico del tiempo y la información actual de la comunidad. + News + + + + Como dice el dicho + Recreando historias y situaciones que se asemejan a los dichos comunes de la cultura popular. Se dramatiza una historia interesante y cautivadora que represente a un dicho específico, elegido para cada episodio. + + Michael Ronda + Wendy González + Sergio Corona + + Comedy + + + TV14 + + + + Santa's Got Style + When department store executive Madison is charged with coming up with a fresh idea for the holiday season, she decides that instead of a classic Santa, this year they would hire a young Santa with lots of fashionable style. + + Franco Lo Presti + Kathryn Davis + Scott Thompson + + 2022 + Movies + Christmas + Romance + + + TVG + + + + Season's Greetings + Darcy and Will clash at first, but they eventually develop a powerful chemistry that could become something special if they overcome misunderstandings and miscommunications that threaten their blossoming romance. + + Laura Bell Bundy + Casey Manderson + Viv Leacock + + 2016 + Movies + Christmas + Romance + + + + A Christmas Recipe for Romance + The owner of a historic inn decides to enter a prestigious cooking contest to win funds for renovations and get free publicity, but she is a horrible cook. + + Madeline Leon + Sebastian Sacco + Peggy Calvert + + 2019 + Movies + Christmas + Romance + + + TVG + + + + A Christmas Recipe for Romance + The owner of a historic inn decides to enter a prestigious cooking contest to win funds for renovations and get free publicity, but she is a horrible cook. + + Madeline Leon + Sebastian Sacco + Peggy Calvert + + 2019 + Movies + Christmas + Romance + + + TVG + + + + Blue Bloods + Bad Blood + Baez's estranged brother is the primary suspect in a homicide; a woman may have had a hand in her husband's death. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Bye Bye Neck Pain + Manage and relieve head, neck and shoulder pain on your terms with DR-HO'S Neck Pain Pro! + Paid Program + Science + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + Paid Program + + + TV14 + + + + Cook Family Size Meals Faster + Emeril's biggest air fryer oven combines 10 kitchen appliances into one endlessly versatile countertop cooker with 2 cooking zones and a full menu of custom presets. + Paid Program + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Jesus Calling + Faith to Shine the Light + Sara Evans and Kierra Sheard-Kelly share the ups and downs of a career in the spotlight and how their faith in God helped them find their purpose in the world. + Religious + + + + The Sunday Mass + The Sunday Mass is celebrated weekly by The Passionists from NYC. + Religious + + + TVPG + + + + In Touch With Dr. Charles Stanley + In Touch Ministries is the broadcast teaching ministry of Dr. Charles Stanley. + Religious + + + TVG + + + + Your Move With Andy Stanley + You'll Be Glad You Did: Part 5 - Live Generous + Living generously. + Religious + Lifestyle + + + TVG + + + + Amazing Facts With Doug Batchelor + The King Returns Pt. 2 + The great climax of the world's history is going to be when Christ comes and He sets everything right. Part 2 of 2. + Religious + + + TVG + + + + Christmas Mail + A mail carrier (A.J. Buckley) falls for a new employee (Ashley Scott), who answers children's letters to Santa Claus. + + Ashley Scott + A.J. Buckley + Rolanda Watts + + 2010 + Movies + Christmas + Romance + + + TVG + + + + Second Chance Christmas + On her way to drop off divorce papers, Caroline gets hit by a car and wakes up without any memory. Motivated by the opportunity to start fresh, Jack is determined to make his wife fall in love with him again and save his marriage. + + Katrina Begin + Tilky Jones + Charlene Tilton + + 2017 + Movies + Christmas + Romance + + + TVG + + + + Fixing Up Christmas + Party planner Holly must persuade architect Theo that a festive event will build his business, while he thinks a digital presentation is enough to win the commercial contract he is after. + + Marshall Williams + Mavourneen Varcoe-Ryan + Matthew Kevin Anderson + + 2021 + Movies + Christmas + Romance + + + TVG + + + + One Snowy Christmas + Lawyer Kelly returns home to spend Christmas with her family, whose home is at risk of demolition. She dreams of finding her perfect man and meets contractor Forrest. + + Elysia Rotaru + Damon Runyan + Farrah Aviva + + 2021 + Movies + Christmas + Romance + + + TVG + + + + Santa's Got Style + When department store executive Madison is charged with coming up with a fresh idea for the holiday season, she decides that instead of a classic Santa, this year they would hire a young Santa with lots of fashionable style. + + Franco Lo Presti + Kathryn Davis + Scott Thompson + + 2022 + Movies + Christmas + Romance + + + TVG + + + + We're Scrooged + Years after parting ways, former high school sweethearts reunite at their ten-year Christmastime reunion, where they are visited by three ghosts who try to make them reconsider their decision to part ways. + + Tamara Duarte + Andrew Bushell + Sergio Di Zio + + 2023 + Movies + Romance + + + + The Picture of Christmas + Ember Morely, a graphic designer and aspiring storybook illustrator in Manhattan, is surprised to learn that she has inherited her grandmother's Christmas tree farm, so she heads to her hometown of Willow Hill in order to sell it before Christmas. + + Chelsea Hobbs + Matt Hamilton + Kirsten Robek + + 2021 + Movies + Christmas + Romance + + + TVG + + + + We're Scrooged + Years after parting ways, former high school sweethearts reunite at their ten-year Christmastime reunion, where they are visited by three ghosts who try to make them reconsider their decision to part ways. + + Tamara Duarte + Andrew Bushell + Sergio Di Zio + + 2023 + Movies + Romance + + + + A Christmas Switch + When singer Audrey and record executive Julia collide at the mall, they wake up in each other's lives the next morning. As Christmas looms closer, the two women rush to figure out how to help each other and switch back before they miss Christmas. + + Jackie Seiden + Ashley Wood + Oana Gregory + + 2018 + Movies + Christmas + Comedy + + + TVPG + + + + Peter Popoff Ministries + For over 30 years Reverend Peter Popoff has provided spiritual direction and powerful testimonies to receive God's blessings in your life. + Paid Program + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Pain Relief TV + Matt's pain from his 20 year old lost limb is solved. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + David Jeremiah + Dr. David Jeremiah's goal is to deliver the unchanging Word of God to an ever-changing world. + Religious + + + TVG + + + + Heartland + Diamond in the Rough + Amy and Ty disagree about how to treat a horse when the Fairfield manager has a concern. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Heartland + Running Scared + Tim turns a team penning event into a town spectacle. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Heartland + Stress Fractures + Lou returns with an idea to attract guests. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Heartland + Long Road Back + Amy and Ty treat a doped racehorse. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Heartland + All Hearts Lead Home + The family searches for ways to cope with its grief after getting devastating news. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Touched by an Angel + The One That Got Away + A wedding reunites college sweethearts Mark and Susan, and Monica must find a way to make Mark face what kind of person Susan really is. + + Roma Downey + Della Reese + + Drama + + + TVG + + + + Touched by an Angel + 'Til We Meet Again + Monica helps a dying man find a way to tell his youngest daughter he is not her biological father while reassuring her of his love. + + Roma Downey + Della Reese + + Drama + + + TVG + + + + Touched by an Angel + Rock 'n' Roll Dad + A rock star (A Martinez) loses his wife in an accident but needs to find the emotional strength to raise his young daughter; with Kathleen Sullivan, Richard Roundtree. + + Roma Downey + Della Reese + + Drama + + + TVPG + + + + Touched by an Angel + Indigo Angel + Monica and Tess enlist blues artists to give a nightclub owner (Hal Linden) a last moment of glory; with Al Jarreau, B.B. King, Dr. John, Al Hirt. + + Roma Downey + Della Reese + + Drama + + + TVG + + + + Reba + You May Kick the Bride + Reba tries to persuade Brock's doubting bride to continue with the wedding while dealing with Kyra not wanting to attend the ceremony. + + Reba McEntire + Christopher Rich + JoAnna Garcia Swisher + + Sitcom + + + TVPG + + + + Reba + She Works Hard for Their Money + Reba ends up doing most of the work for Van's job when she insists they pay for a car given to him by Brock. + + Reba McEntire + Christopher Rich + JoAnna Garcia Swisher + + Sitcom + + + TVPG + + + + Reba + Labor of Love + When Barbra Jean begins childbirth, Reba searches the wilderness for the camping father-to-be, Brock. + + Reba McEntire + Christopher Rich + JoAnna Garcia Swisher + + Sitcom + + + TVPG + + + + Reba + Up a Treehouse Without a Paddle + When Brock spends a night in Jake's treehouse, Reba finds herself babysitting her ex-husband's newborn. + + Reba McEntire + Christopher Rich + JoAnna Garcia Swisher + + Sitcom + + + TVPG + + + + Reba + The King and I + Pregnant Cheyenne believes she won the title of prom queen only because of Van's popularity, so she refuses to go; Reba and Brock react to a high-school student who asks Kyra to the prom. + + Reba McEntire + Christopher Rich + JoAnna Garcia Swisher + + Sitcom + + + TVPG + + + + Reba + It Ain't Over Until the Redhead Sings + Cheyenne goes into labor shortly before her high-school graduation ceremony; Reba sings a lullaby to her new granddaughter in the hospital. + + Reba McEntire + Christopher Rich + JoAnna Garcia Swisher + + Sitcom + + + TVPG + + + + Last Man Standing + Girls Rock + Mike and Vanessa each try to influence Jen's career path; Kristin uses her pregnancy to her advantage with Outdoor Man customers. + + Tim Allen + Nancy Travis + Héctor Elizondo + + Sitcom + + + TVPG + + + + Last Man Standing + Break Out the Campaign + Vanessa turns to Mike and Carol for advice on her State Assembly campaign; Kyle is overcome with anxiety when Ed gifts him an expensive watch. + + Tim Allen + Nancy Travis + Héctor Elizondo + + Sitcom + + + TVPG + + + + Last Man Standing + Baked Sale + Mike's offer to help Jen with her school's bake sale goes up in smoke; Kyle finds unlikely advice from Joe on where he should enroll in college. + + Tim Allen + Nancy Travis + Héctor Elizondo + + Sitcom + + + TV14 + + + + Last Man Standing + I'm With Cupid + Mike plays cupid for Joe when he sets up him on a date with Cece; Kyle is jealous when Ryan invites Jen to be a guest on their podcast. + + Tim Allen + Nancy Travis + Héctor Elizondo + + Sitcom + + + TVPG + + + + Last Man Standing + Student Doubt + When Mandy worries about Kyle passing his first college exam, she secretly enlists Vanessa, Jen and Ryan to help tutor him; Mike learns of Ed and Chuck's superstition involving their decision-making. + + Tim Allen + Nancy Travis + Héctor Elizondo + + Sitcom + + + TVPG + + + + Last Man Standing + This Too Shall Bass + Mike finds out that Ed is skipping Outdoorman's annual bass festival in favor of Bonnie's fancy art gala; Mandy takes over festival planning for Kristin, and things don't go as planned. + + Tim Allen + Nancy Travis + Héctor Elizondo + + Sitcom + + + TVPG + + + + Last Man Standing + Chili Chili Bang Bang + Mike and Chuck compete in Outdoorman's annual chili cook-off; Ryan and Kyle take the place of Kristin and Mandy at Vanessa's weekly mother-daughter luncheon. + + Tim Allen + Nancy Travis + Héctor Elizondo + + Sitcom + + + TVPG + + + + Last Man Standing + Along Came a Spider + Mike and Mandy go to extreme measures to help Vanessa connect with voters in her state assembly campaign; Ed's offer to split a baby gift for Kristin and Ryan leads Chuck and Kyle to wonder which of them makes more money. + + Tim Allen + Nancy Travis + Héctor Elizondo + + Sitcom + + + TVPG + + + + Blue Bloods + Mistaken Identity + Danny and Baez meet with resistance while investigating a bombing; Frank deals with political fallout after a man punches an aggressive officer. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + Ties That Bind + Danny's loyalty is tested when he has to investigate a childhood friend for possible ties to a mob family; Frank thinks a recent judicial ruling may be responsible for a rise in crime. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + The Bogeyman + Danny tracks the distributor of a new, deadly type of heroin; Frank does everything he can to help Danny get the drug off the streets. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + Unfinished Business + Danny and Baez search for a veteran who may have PTSD; a woman (Karen Allen) seeking justice for her murdered daughter catches Frank off-guard during a press conference. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + Manhattan Queens + A popular drag queen and reality-TV star is found dead in a park; the mother of an accused man abducts Erin. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Pain Relief TV + Matt's pain from his 20 year old lost limb is solved. + Paid Program + + + + Operation Smile + Operation Smile: transforming lives and bringing smiles to children around the world. + Paid Program + + + + NEW Secret to Younger Skin + Get an ULTRA youthful-looking neck at any age! TUNE IN TO SEE HOW! + Paid Program + + + + Help Israel & Ukraine + There is an urgent need to help Jews suffering in Israel, Ukraine, and around the world. Act now and support the International Fellowship of Christians and Jews in their lifesaving work. + Paid Program + + + + Cook Family Size Meals Faster + Emeril's biggest air fryer oven combines 10 kitchen appliances into one endlessly versatile countertop cooker with 2 cooking zones and a full menu of custom presets. + Paid Program + + + + David Jeremiah + Dr. David Jeremiah's goal is to deliver the unchanging Word of God to an ever-changing world. + Religious + + + TVG + + + + Heartland + Room to Grow + The family helps Will Vernon round up his wild horses. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Heartland + Snakes and Ladders + A disgruntled horse owner causes problems for Ty and Amy's business, and they find themselves at odds about taking him on as a client. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Heartland + Wild One + Amy is hired and tasked with calming one of the wild horses, but its temperament may prove impossible to work with. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Heartland + Rearview Mirror + Jack is faced with painful memories from his past, and the family is at a loss for how to help him. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Heartland + The Eye of the Storm + A dangerous windstorm wreaks havoc on Hudson. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Touched by an Angel + Jacob's Ladder + Monica gets caught in a drug bust, and nobody believes she is an angel; with Barbara Mandrell, Joe Morton, Cindy Williams and Paul Winfield. + + Roma Downey + Della Reese + + Drama + + + TVG + + + + Touched by an Angel + Out of the Darkness + Monica helps an accident victim (Brad Whitford) face the present when he awakes from a coma after five years. + + Roma Downey + Della Reese + + Drama + + + TVPG + + + + Touched by an Angel + Lost and Found + Monica intervenes when an angel gone bad attempts to disrupt the work of a former police officer who searches for missing children. + + Roma Downey + Della Reese + + Drama + + + TVPG + + + + Touched by an Angel + Dear God + Monica gets a job as a postal worker and helps a bitter survivor of the Holocaust come to terms with the murder of his family. + + Roma Downey + Della Reese + + Drama + + + TVPG + + + + Reba + House Rules + Reba's children carouse at Brock and Barbra Jean's place; Cheyenne and Van commiserate with each other about the baby. + + Reba McEntire + Christopher Rich + JoAnna Garcia Swisher + + Sitcom + + + TVPG + + + + Reba + Skating Away + Just when Reba thinks things are getting back to normal, the Montgomery family is forced to move back in. + + Reba McEntire + Christopher Rich + JoAnna Garcia Swisher + + Sitcom + + + TVPG + + + + Reba + Proud Reba + Cheyenne and Van apply for food stamps; against her better judgement, Reba accepts working at her ex-husband's office. + + Reba McEntire + Christopher Rich + JoAnna Garcia Swisher + + Sitcom + + + TVPG + + + + Reba + Reba Works for Brock + Reba accepts a job reporting to Barbra Jean in Brock's dental office; Cheyenne goes to college; Van stays home to watch Elizabeth. + + Reba McEntire + Christopher Rich + JoAnna Garcia Swisher + + Sitcom + + + TVPG + + + + Reba + It's Jake's Party, Cry if You Want To + Reba tries to refrain from making fun of Barbra Jean during Jake's birthday party, but her plan backfires. + + Reba McEntire + Christopher Rich + JoAnna Garcia Swisher + + Sitcom + + + TVPG + + + + Reba + Safe Dating + Kyra is irked when Reba takes a romantic interest in her boyfriend's dad (guest star Ben Reed), creating a double-dating dilemma. + + Reba McEntire + Christopher Rich + JoAnna Garcia Swisher + + Sitcom + + + TVPG + + + + Last Man Standing + Keep the Change + When Mike and Vanessa invite Jen's father to her graduation, Jen struggles with accepting his. + + Tim Allen + Nancy Travis + Héctor Elizondo + + Sitcom + + + TVPG + + + + Last Man Standing + Garage Band + A car restoration article throws Mike, Chuck, and Ed into the spotlight, while leaving Joe feeling unappreciated; Ryan overreacts after taking Kyle's psych test. + + Tim Allen + Nancy Travis + Héctor Elizondo + + Sitcom + + + TVPG + + + + Last Man Standing + The Big LeBaxter + When Rev. Paul recruits Kyle and Mandy to the church bowling team, Mike is left with two unappealing options for Team Baxter; Vanessa anxiously awaits an endorsement from the Teacher's Association for her Assembly campaign. + + Tim Allen + Nancy Travis + Héctor Elizondo + + Sitcom + + + TVPG + + + + Last Man Standing + Extrasensory Deception + When Kyle and Mandy individually reveal a secret to Mike and Vanessa, respectively, they are sworn not to tell the other; Ryan invites Mike to be a guest on his podcast. + + Tim Allen + Nancy Travis + Héctor Elizondo + + Sitcom + + + TVPG + + + + Last Man Standing + How You Like Them Pancakes? + Eve returns home for a weekend visit, and Vanessa tries to re-create a childhood tradition for the girls; Jen asks Ed and Chuck for help in finding out who is stealing her work lunches; Kristin's big day finally arrives. + + Tim Allen + Nancy Travis + Héctor Elizondo + + Sitcom + + + TVPG + + + + Last Man Standing + Time Flies + A series of time jumps finds Mike and Vanessa with two new grandchildren as well as Mandy and Kyle living with them; Vanessa and Mandy clash over Vanessa's. + + Tim Allen + Nancy Travis + Héctor Elizondo + + Sitcom + + + TVPG + + + + Last Man Standing + Dual Time + Vanessa hires a home improvement repairman who bears an uncanny resemblance to Mike; Kyle and Ryan defend their favorite comic book writer to Mandy and Kristen; Mike struggles with an idea for his video blog. + + Tim Allen + Nancy Travis + Héctor Elizondo + + Sitcom + + + TVPG + + + + Last Man Standing + High on the Corporate Ladder + Mike reluctantly finds himself acting as Ryan's mentor when he is offered a big corporate job; Mandy and Kyle attempt to make Ed's bucket list dreams come true after finding a secret file on his computer. + + Tim Allen + Nancy Travis + Héctor Elizondo + + Sitcom + + + TV14 + + + + Blue Bloods + Open Secrets + A kidnapping investigation brings back bad memories for Danny, who worked a similar case years ago; Frank and Inspector General Peterson butt heads. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + Insult to Injury + A woman threatening to kill herself and the man who murdered her parents calls Danny; Frank goes on Sean's class field trip. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + Knockout Game + Danny and Baez search for teenagers who have been punching unsuspecting people -- including a pregnant woman -- in the head; Frank worries that promoting an officer will be viewed as favoritism. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + Righting Wrongs + A woman is killed by a dose of lidocaine after a secret plastic surgery; Jamie is privately assigned a cold case; Erin decides to try speed dating. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Blue Bloods + Secret Arrangements + A college professor involved with a questionable scholarship program is murdered; Danny is investigated for ethical and procedural violations. + + Tom Selleck + Donnie Wahlberg + Bridget Moynahan + + Drama + + + TV14 + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Cut Down Dinner Costs With PowerXL Versa Chef! + Incredible new multi-cooker - Air Fryer, Bread Maker, Slow Cooker, and Oven all in one! + Paid Program + Food + + + + Ninja Woodfire Outdoor Grill + Meet the Shark Ninja Wood Fire Grill, with Master Grill, BBQ Smoke, and Air Fry outdoor capabilities. Powered by electricity and flavored by real burning wood pellets, Woodfire Technology allows you to easily create rich flavor you can see and taste. + Paid Program + + + + Cook Family Size Meals Faster + Emeril's biggest air fryer oven combines 10 kitchen appliances into one endlessly versatile countertop cooker with 2 cooking zones and a full menu of custom presets. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + David Jeremiah + Dr. David Jeremiah's goal is to deliver the unchanging Word of God to an ever-changing world. + Religious + + + TVG + + + + Heartland + Fairytale + Amy and Ty worry about the impact a surprise visitor will have on Luke. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Heartland + A Time To Remember + Georgie's graduation has finally arrived but so has a mysterious figure from her past. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Heartland + The Art of Trust + Amy is asked to spend time at an art retreat to work with an artist's allegedly traumatized horse. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Heartland + Legacy + Tim is organizing an important rodeo when an old flame blows back into Hudson asking for his help. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Heartland + Fight or Flight + Amy and Ty get some unexpected news about Luke just as Amy has to face an upsetting truth about Spartan. + + Amber Marshall + Graham Wardle + Michelle Morgan + + Drama + + + TVPG + + + + Touched by an Angel + Portrait of Mrs. Campbell + Monica helps a controlling woman (Linda Gray) who refuses to accept her son's pregnant wife (Gabrielle Carteris). + + Roma Downey + Della Reese + + Drama + + + TVG + + + + Touched by an Angel + The Quality of Mercy + Monica helps a teen cope with his emotions after he sees his father in a compromising position with a student. + + Roma Downey + Della Reese + + Drama + + + TVG + + + + Touched by an Angel + Flesh and Blood + The mother of a murder suspect begins to doubt his innocence; with Sally Jessy Raphael, Valerie Harper, Anthony Michael Hall. + + Roma Downey + Della Reese + + Drama + + + TVPG + + + + Touched by an Angel + Birthmarks + Monica helps a man who is unable to acknowledge that his son is dying and his unborn grandson is being carried by a surrogate mother. + + Roma Downey + Della Reese + + Drama + + + TVG + + + + Reba + Mommy Nearest + When Reba takes a full-time job, Jake starts calling Barbra Jean. + + Reba McEntire + Christopher Rich + JoAnna Garcia Swisher + + Sitcom + + + TVPG + + + + Reba + Switch + Cheyenne encourages her mother to try speed dating after Reba has a disastrous night on the town. Park Overall guest stars. + + Reba McEntire + Christopher Rich + JoAnna Garcia Swisher + + Sitcom + + + TVPG + + + + Reba + Ring-a-Ding + Reba invites her beau (Mark Thompson) home to meet the family; Brock and the children attend Barbra Jean's family reunion in Fisheye Bottom. + + Reba McEntire + Christopher Rich + JoAnna Garcia Swisher + + Sitcom + + + TVPG + + + + Reba + Ring-a-Ding + Reba invites her beau (Mark Thompson) home to meet the family; Brock and the children attend Barbra Jean's family reunion in Fisheye Bottom. + + Reba McEntire + Christopher Rich + JoAnna Garcia Swisher + + Sitcom + + + TVPG + + + + Reba + Cookies for Santa + Reba learns she will be spending Christmas Eve alone; Cheyenne and Van try to start a holiday tradition, but their plan backfires. + + Reba McEntire + Christopher Rich + JoAnna Garcia Swisher + + Sitcom + Christmas + + + TVPG + + + + Reba + A Moment in Time + Everyone takes turns in front of the camera to create a video family album for Cheyenne's baby, Elizabeth. + + Reba McEntire + Christopher Rich + JoAnna Garcia Swisher + + Sitcom + + + TVPG + + + + Last Man Standing + Jen Again + Mike surprises Vanessa with a visit from Jen that might last longer than expected; Ryan asks Chuck for advice to impress his new corporate boss on the golf course. + + Tim Allen + Nancy Travis + Héctor Elizondo + + Sitcom + + + TVPG + + + + Last Man Standing + Outdoor Toddler + When Vanessa asks Ed to revive the Outdoorman Toddler campaign, she is forced to choose between her two new granddaughters for the ad; Ryan's plan to buy a house on Mike's street hits a snag. + + Tim Allen + Nancy Travis + Héctor Elizondo + + Sitcom + + + TVPG + + + + NASCAR Xfinity Series Post Race + Post race coverage from the latest Xfinity Series event. + Sports + Auto Racing + + + + Chicago Fire + Escape Route + A call to a familiar location brings back mixed emotions for Severide; Herrmann heads out for a vacation; Casey is not thrilled with his replacement. + + Jesse Spencer + Taylor Kinney + Eamonn Walker + + Drama + + + TV14 + + + + Chicago Fire + Double Red + Mouch, Gallo, Ritter and Mackey report for training; a nasty blow to the head brings Casey unimaginable pain. + + Jesse Spencer + Taylor Kinney + Eamonn Walker + + Drama + + + TV14 + + + + Chicago Fire + One Crazy Shift + A series of suspicious fires sends 51 on a search for the cause; Casey continues down a troubling path; Mouch is looking to make his long-awaited dream come true. + + Jesse Spencer + Taylor Kinney + Eamonn Walker + + Drama + + + TV14 + + + + Chicago Fire + A Couple Hundred Degrees + A new recruit with ties to the CFD tests Serveride's patience; Violet receives a mysterious note that sends her and Brett on a hunt for the person who wrote it. + + Jesse Spencer + Taylor Kinney + Eamonn Walker + + Drama + + + TV14 + + + + Chicago Fire + Natural Born Firefighter + While Mouch makes an incredible save, all eyes are on a mystery man who helped save his neighbor; Casey worries about his future at the CFD. + + Jesse Spencer + Taylor Kinney + Eamonn Walker + + Drama + + + TV14 + + + + Chicago Fire + Don't Hang Up + A mysterious caller who is in danger relies on Kidd to help save her and her brother; the firehouse helps Cruz get ready for fatherhood. + + Jesse Spencer + Taylor Kinney + Eamonn Walker + + Drama + + + TV14 + + + + Chicago Fire + What Comes Next + A fire breaks out at a pet food factory, and Casey and Severide help the owner, Pete, get to the bottom of it; the annual garage sale takes place at 51 and everyone is on edge. + + Jesse Spencer + Taylor Kinney + Eamonn Walker + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Wanderlust + Benson and Stabler believe a pedophile (John Dossett) may be behind the murder of a travel writer, especially after meeting the victim's landlady and her streetwise daughter (Patricia Richardson, Lynn Collins). + + Christopher Meloni + Mariska Hargitay + Dann Florek + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Conscience + When a missing 5-year-old boy is found dead, suspicion falls on his unstable 13-year-old neighbor, whose mental problems began after he was abused at a camp recommended by the dead child's father. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Persona + Detective Benson goes into hiding to find justice for an abused housewife (Clea Duvall), uncovering a 34-year-old unsolved murder case in the process. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Lead + A pediatrician found guilty of sexually assaulting four of his patients is murdered; after three years in the Witness Protection Program, Alexandra Cabot returns. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Premier League Mornings + Stateside Premier League fan festival that includes a turf pitch, the Premier League trophy, club mascots, special guests, contests, and more. + Sports + Soccer + + + + Aston Villa vs. Nottingham Forest + Nottingham Forest vs. Aston Villa + Nottingham Forest hosts Aston Villa at City Ground in matchround 11 of the Premier League. Forest won only one of its last 16 competitive games versus Villa, a 2-1 home victory in the Championship on Feb. 4, 2017 (93rd-minute winner by Ben Brereton). + Sports + Soccer + + + TV14 + + + + Premier League Mornings + Stateside Premier League fan festival that includes a turf pitch, the Premier League trophy, club mascots, special guests, contests, and more. + Sports + Soccer + + + + Liverpool vs. Luton Town + Luton Town vs. Liverpool + Luton Town is up against Liverpool at Kenilworth Road in matchround 11 of the Premier League. The most recent competitive meetings were in the 2007-2008 FA Cup third round. The Reds won 5-0 in a replay at Anfield after a 1-1 draw at Kenilworth Road. + Sports + Soccer + + + TVMA + + + + Premier League Goal Zone + The best moments from the weekend in Premier League action. + Sports + Soccer + + + TVG + + + + Law & Order: Special Victims Unit + Tangled + An estranged son and a former patient are the prime suspects in the murder of a prominent doctor and the rape of his wife. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + A Single Life + Benson and Stabler run into multiple dead ends while investigating the case of a woman who fell to her death wearing only a slip. + + Christopher Meloni + Mariska Hargitay + Dann Florek + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Hysteria + Detectives Benson and Stabler believe a fellow cop may be behind murders going back 30 years; Munch is in rare form during a child molestation case. + + Christopher Meloni + Mariska Hargitay + Dann Florek + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Uncivilized + The state pursues a media-sensationalized case against a known pedophile who's suspected of assaulting and killing a youth. + + Christopher Meloni + Mariska Hargitay + Dann Florek + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + The Third Guy + Two local hoods are implicated in the murder and rape of an elderly woman, though they claim they only broke in to rob her. + + Christopher Meloni + Mariska Hargitay + Dann Florek + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Nocturne + The trial of an accused child molester is jeopardized when the prime witness has difficulty dealing with his past. + + Christopher Meloni + Mariska Hargitay + Dann Florek + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Slaves + Police suspect a corporate lawyer (Andrew McCarthy) is connected to a murder and to a Romanian nanny thought to be sexually abused. + + Christopher Meloni + Mariska Hargitay + Dann Florek + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Wrong Is Right + Stabler's daughter bears witness to a horrific crime scene; the internal investigation into the psyches of the SVU detectives yields interesting results. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Legacy + An abused 7-year-old girl lies comatose while Benson and Stabler try to figure out which member of her dysfunctional family is responsible for her state. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Taken + The detectives probe the backgrounds of the family of a 17-year-old girl who was raped during a hotel-opening gala. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Countdown + When a 7-year-old girl escapes from her rapist, detectives Benson and Stabler begin an intensive search for the predator. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Runaway + Benson and Stabler take over the search for a runaway girl and are led to an underground rave culture that caters to wayward teens. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + LA Fire & Rescue + Three Alarm + Inglewood Station 172 tackles a career-defining fire in an industrial warehouse; Calabasas Station 125 responds to a multi-car collision before ending the day on a residential call removing a slithering creature from a fearful family's home. + Documentary + + + TVPG + + + + Law & Order: Special Victims Unit + Folly + The beating of a young man uncovers a dangerous male escort service where the boss may have reasons for sending her staff on potentially deadly dates. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Tangled + An estranged son and a former patient are the prime suspects in the murder of a prominent doctor and the rape of his wife. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + A Single Life + Benson and Stabler run into multiple dead ends while investigating the case of a woman who fell to her death wearing only a slip. + + Christopher Meloni + Mariska Hargitay + Dann Florek + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Hysteria + Detectives Benson and Stabler believe a fellow cop may be behind murders going back 30 years; Munch is in rare form during a child molestation case. + + Christopher Meloni + Mariska Hargitay + Dann Florek + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Nocturne + The trial of an accused child molester is jeopardized when the prime witness has difficulty dealing with his past. + + Christopher Meloni + Mariska Hargitay + Dann Florek + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Taken + The detectives probe the backgrounds of the family of a 17-year-old girl who was raped during a hotel-opening gala. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + NCIS + Corporal Punishment + The team believes a Marine is being groomed to become a supersoldier. + + Mark Harmon + Michael Weatherly + Cote de Pablo + + Drama + + + TVPG + + + + NCIS + Tribes + Ducky refuses to autopsy a Muslim Marine found dead near a mosque that the FBI suspects of terrorist recruitment. + + Mark Harmon + Michael Weatherly + Cote de Pablo + + Drama + + + TV14 + + + + Chicago Fire + A Coffin That Small + A failed rescue attempt deeply affects the men and women of firehouse 51; Dawson and Shay deal with a junkie's crazy behavior during a call; the team upsets local drug dealers. + + Jesse Spencer + Taylor Kinney + Charlie Barnett + + Drama + + + TV14 + + + + Chicago Fire + Ambition + A paramedic candidate joins Shay and Dawson for a few shifts; Cindy Herrmann experiences pregnancy complications while her husband is out of town; Casey receives an unexpected visit. + + Jesse Spencer + Taylor Kinney + Charlie Barnett + + Drama + + + TV14 + + + + Chicago Fire + Retaliation Hit + Detective Voight shows up, looking to cash in the favor Dawson owes him; Casey's social life takes on a familiar pattern; Molly prepares for the grand opening of Dawson, Herrmann and Otis's bar; Severide faces a threat to his career. + + Jesse Spencer + Taylor Kinney + Charlie Barnett + + Drama + + + TV14 + + + + Chicago Fire + Leaders Lead + Severide is accused of sexual misconduct; Casey starts to find satisfaction in his personal life; Dawson and Mills face challenges as they try to take their relationship to the next level; the squad faces a harrowing building collapse. + + Jesse Spencer + Taylor Kinney + Charlie Barnett + + Drama + + + TV14 + + + + Chicago Fire + Let Her Go + Lt. Casey must work with Voight and the Intelligence Unit; Shay grows increasingly excited about the prospect of motherhood; everyone comes together to support the opening of Molly's. + + Jesse Spencer + Taylor Kinney + Charlie Barnett + + Drama + + + TV14 + + + + Chicago Fire + A Hell of a Ride + The squad must help defuse a volatile situation at the jail; Shay continues to be hopeful about motherhood; Herrmann's wife goes into labor; Mills and Dawson face important decisions. + + Jesse Spencer + Taylor Kinney + Charlie Barnett + + Drama + + + TV14 + + + + Chicago Fire + A Problem House + Lt. Severide is targeted by an arsonist; Battalion Chief Boden clashes with Gail McLeod; the anniversary of Andy's death; Shay has suspicions; Mari visits Mouch. + + Jesse Spencer + Taylor Kinney + Charlie Barnett + + Drama + + + TV14 + + + + Chicago Fire + Prove It + Casey struggles with his new responsibilities; Severide dreads the arsonist's next attack; Mouch starts campaigning; Dawson and Shay decide they need to get out more. + + Jesse Spencer + Taylor Kinney + Charlie Barnett + + Drama + + + TV14 + + + + Chicago Fire + Defcon 1 + Severide tries to prove his suspicions about the arsonist's identity; Casey gets accustomed to his new lifestyle; Dawson goes on a date with a regular from the bar. + + Jesse Spencer + Taylor Kinney + Charlie Barnett + + Drama + + + TV14 + + + + Chicago Fire + A Nuisance Call + Severide wants to implicate the serial arsonist; Dawson and Shay face the unexpected on a routine call; suspicions indicate Clarke is the mole; Mouch campaigns for union president. + + Jesse Spencer + Taylor Kinney + Charlie Barnett + + Drama + + + TV14 + + + + Chicago Fire + A Power Move + McLeod pushes Boden toward an early retirement and chooses a potential replacement; all make known their disdain for the mole; Shay enjoys a full social life. + + Jesse Spencer + Taylor Kinney + Charlie Barnett + + Drama + + + TV14 + + + + Chicago Fire + Joyriding + Severide comes across a boy in need of help while out on a jog; Boden and McLeod clash over the future of the firehouse; Mouch and Greg Sullivan debate on Otis' podcast. + + Jesse Spencer + Taylor Kinney + Charlie Barnett + + Drama + + + TV14 + + + + WWE Monday Night RAW + The superstars of the WWE square off in the ring and behind the scenes. For more than 25 years, WWE's greatest -- such as The Undertaker,. + Sports + Wrestling + + + TVPG + + + + WWE Monday Night RAW + The superstars of the WWE square off in the ring and behind the scenes. For more than 25 years, WWE's greatest -- such as The Undertaker,. + Sports + Wrestling + + + TVPG + + + + Barmageddon + Season 2 Sneak Peek + A sneak peek of Season 2 of USA's. + Game Shows + + + TV14 + + + + House of Villains + Dance With the Devil + The Villains are visited by another surprise guest; the hit list nominees must convince the others to unknowingly participate in their redemption challenge; Bobby is insulted after being put up on the hit list; New York continues to spiral. + Reality TV + Game Shows + + + TV14 + + + + Hot Wheels: Ultimate Challenge + Grand Finale, Part 2 + Comedy legend and car guru Jay Leno joins the judges to determine a season winner who will take home an extra $50,000 and get their design turned into a real die-cast Hot Wheels™ toy that anyone can buy. + Game Shows + + + TVPG + + + + Barmageddon + Blake Shelton vs. Kane Brown + Country superstars Blake Shelton and Kane Brown realize that everybodyGuests: Kane Brown.. + Game Shows + + + TV14 + + + + Law & Order: Special Victims Unit + The Third Guy + Two local hoods are implicated in the murder and rape of an elderly woman, though they claim they only broke in to rob her. + + Christopher Meloni + Mariska Hargitay + Dann Florek + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Misleader + The detectives learn that the pregnant daughter-in-law of a prominent religious educator may have been having an affair at the time of her murder. + + Christopher Meloni + Mariska Hargitay + Dann Florek + + Drama + + + TV14 + + + + Dateline + The Music Box + When a woman is abducted during her evening shift at a gift shop, her family keeps the case in the public eye for decades, until investigators finally solve the mystery. + News Magazine + + + TVPG + + + + Dateline + The Music Box + When a woman is abducted during her evening shift at a gift shop, her family keeps the case in the public eye for decades, until investigators finally solve the mystery. + News Magazine + + + TVPG + + + + Chicago P.D. + In Your Care + The team investigates a rash of car jackings and finds the truth is more complicated than it seems; Burgess makes a discovery about a previous case that will change her life forever. + + Jason Beghe + Patrick John Flueger + LaRoyce Hawkins + + Drama + + + TV14 + + + + Chicago P.D. + Equal Justice + After a seemingly innocent young man is gunned down in the street, the team works to bring in the suspected culprit, but the case is more complex than it appears; the grief-stricken father is determined to do his own undercover work. + + Jason Beghe + Patrick John Flueger + LaRoyce Hawkins + + Drama + + + TV14 + + + + Chicago P.D. + Instinct + After a series of deadly ambushes, the team goes under cover to bring down a dangerous new drug dealer who is determined to push out the competition; Ruzek's informant proves to be a loose cannon, which could upset the whole operation. + + Jason Beghe + Patrick John Flueger + LaRoyce Hawkins + + Drama + + + TV14 + + + + Chicago P.D. + Protect and Serve + Ruzek and Atwater are tasked with making an arrest after a high-profile shooting; the situation becomes complicated when it's clear someone doesn't want them to make it back to the station. + + Jason Beghe + Patrick John Flueger + LaRoyce Hawkins + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Fat + A band of overweight teenage siblings attacks a gifted piano student from Harlem. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Signature + A woman's body is found in a park alongside a man with a bullet in his head. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Closet + A troubled teen (David Del Rio) is the first suspect when a money manager is found murdered in his loft, but a hidden video camera leads detectives to a star football player whose agent is willing to do almost anything to protect his client. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Trade + Detectives suspect a wealthy family of coffee traders when a pregnant woman is found raped and murdered in her burned-out loft. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Cold + Detective Lake, wounded in a gunfight prompted by the reopening of an old murder case, escapes from the hospital and takes hostage the original case's only witness (Victoria Cartagena). + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Trials + An abused foster child (Jae Head), apprehended while driving a runaway van, leads the detectives to re-examine a case involving a rape victim (Sara Gilbert). + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Confession + A teen named Eric admits to looking at a Web site in an attempt to curb pedophilic urges toward his stepbrother; when Eric goes missing, the stepfather (Tom Noonan) is questioned. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Lunacy + When the corpse of a famous astronaut is found floating in the waters of Battery Park, Detectives Benson and Stabler think the murder may be connected to a string of serial rapes; at a dead end, Stabler seeks advice from an old mentor (James Brolin). + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Babes + While investigating the death of a teenager, detectives Elliot Stabler and John Munch discover a group of girls in a pregnancy pact. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + PTSD + A young female Marine goes missing as she is about to give birth to her rapist's child; Olivia struggles with painful flashbacks of her sexual assault. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + WWE NXT + WWE's hottest up-and-coming Superstars compete to prove they've got what it takes; more than just evolution, it's a revolution; the entertainers, the leading men and women, the WWE Superstars of tomorrow. + Sports + Wrestling + + + TVPG + + + + WWE NXT + WWE's hottest up-and-coming Superstars compete to prove they've got what it takes; more than just evolution, it's a revolution; the entertainers, the leading men and women, the WWE Superstars of tomorrow. + Sports + Wrestling + + + TVPG + + + + Barmageddon + Cheers to Season 2 + A special look at Season 2 of USA's. + Game Shows + + + TV14 + + + + S.W.A.T. + A Los Angeles Special Weapons and Tactics team (Samuel L. Jackson, Colin Farrell, Michelle Rodriguez) must protect a criminal after he offers $100 million to his prospective rescuers. + + Samuel L. Jackson + Colin Farrell + Michelle Rodriguez + + 2003 + Movies + Action + + + TVPG + + + 2 + + + + Barmageddon + Jimmie Johnson vs. Clint Bowyer + NASCAR legends Jimmie Johnson and Clint Bowyer get behind the Wheel of Redemption.Guests: Jimmie Johnson, Clint Bowyer.. + Game Shows + + + TV14 + + + + Chicago P.D. + In Your Care + The team investigates a rash of car jackings and finds the truth is more complicated than it seems; Burgess makes a discovery about a previous case that will change her life forever. + + Jason Beghe + Patrick John Flueger + LaRoyce Hawkins + + Drama + + + TV14 + + + + 911 Crisis Center + Positive Impacts + Jessica Merkosky taps into her cheerleader past to raise her team's spirits and battle the heaviness of 911 calls; co-worker Tiffany Ward also takes on an emotionally charged night when she answers calls from families in a similar crisis. + Reality TV + Documentary + + + TVPG + + + + Law & Order: Special Victims Unit + Closet + A troubled teen (David Del Rio) is the first suspect when a money manager is found murdered in his loft, but a hidden video camera leads detectives to a star football player whose agent is willing to do almost anything to protect his client. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Trade + Detectives suspect a wealthy family of coffee traders when a pregnant woman is found raped and murdered in her burned-out loft. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Cold + Detective Lake, wounded in a gunfight prompted by the reopening of an old murder case, escapes from the hospital and takes hostage the original case's only witness (Victoria Cartagena). + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + NCIS: Los Angeles + Drive + One of Deeks' former defendants is targeted for uncovering information that could dismantle a car shipping operation with ties to a global terrorist ring. + + Chris O'Donnell + LL Cool J + Linda Hunt + + Drama + + + TV14 + + + + NCIS + Stakeout + The team stakes out a warehouse to catch a suspected thief but ends up witnessing a murder; Ducky keeps a secret from the team. + + Mark Harmon + Michael Weatherly + Cote de Pablo + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Stranger + Benson and Stabler begin to question the story of a missing teenager (Ellen Woglom) who returns home after four years, claiming to have been kept as a sex slave in a concrete cell. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Hothouse + When the body of a 14-year-old girl is found in the Hudson River, Benson and Stabler think she was smuggled into the country by sex traffickers; in an attempt to identify her, Benson poses as a madam. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Transitions + A man is found badly beaten in a parking lot, with no memory of what happened, and detectives suspect his transgender teen may be responsible. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Hell + A mute girl is raped and beaten, and her drawing of her attacker resembles a local priest. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Baggage + An artist's shocking death leads detectives to uncover a long string of murders by an elusive serial killer. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Selfish + When a 2-year-old girl goes missing, her irresponsible young mother (Hilary Duff) becomes the prime suspect. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Solitary + When a woman goes missing, her boyfriend points Detectives Benson and Stabler in the direction of convicted bank robber Callum Donovan (Stephen Rea); to comprehend the impact of solitary confinement, Stabler experiences it. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + Law & Order: Special Victims Unit + Hardwired + After a young boy is raped, detectives find out their suspect is the leader of a civil rights group that supports adult-child relationships. + + Christopher Meloni + Mariska Hargitay + Richard Belzer + + Drama + + + TV14 + + + + The National Desk + Local and national perspectives on the latest news. + + + + The Outdoorsman With Buck McNeely + Buck explores the Rio Negro River in Brazil and fishes for peacock bass; a visit to Manaus. + + + + The Rookie + Officer John Nolan's mom makes an unannounced visit, which complicates his life; Sgt. Grey considers retiring. + + + + The Rookie + Officer Jackson West's relationship with his new training officer, Stanton, escalates, and he begins to work with Sgt. Grey to find a solution. + + + + Forensic Files + A husband was shot and killed, forensic psychiatry helped the wife to remember the details for what happened. + + + + Forensic Files + The body of a 16-year-old girl is discovered nine months after her disappearance; forensic scientists find clues that paint a virtual portrait of her killer. + + + + Storm of Suspicion + After freezing temperatures encompass the mountains of North Carolina, the body of a man is discovered buried in the snow. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + Trans4mation Church + A city church that builds kingdom people to Minister Kingdom Principles to City Issues. + + + + Let's Talk About It + + + + The Great Dr. Scott + A bull terrier has an ominous lump on its head; a pet owner looks for a solution for her adopted dog's limp and her hedgehog's wheezing. + + + + Hearts of Heroes + A tragic wildfire rages through a small California town; a massive mudslide rips through the heart of a community. + + + + The Outdoorsman With Buck McNeely + Buck explores the Rio Negro River in Brazil and fishes for peacock bass; a visit to Manaus. + + + + Tom Bob Outdoors Friends in Wild Places + + + + Good Morning America + Up-to-the-minute news, weather, lifestyle and topical features. + + + + This Week With George Stephanopoulos + Anchor George Stephanopoulos and co-anchors Martha Raddatz and Jonathan Karl interview top newsmakers and officials, with reporting from across the country and roundtable debates over the hottest political issues. + + + + Matter of Fact With Soledad O'Brien + Soledad O'Brien and guests offer analysis and perspective on current political issues. + + + + Proclaim! + An opening segment including news and information hosted by the Most Reverend Mark L. Bartchak. + + + + Altoona Johnstown Diocese Mass + Live from historic Saint John Gualbert Cathedral in downtown Johnstown. + + + + Trans4mation Church + A city church that builds kingdom people to Minister Kingdom Principles to City Issues. + + + + Let's Talk About It + + + + Weird Earth + A bright blue object streaks across the night sky, evoking a terrifying legend; a mountain defies belief as it collapses like a deck of cards; a pristine lake gets coated in a strange layer of grey gunk. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + 2023 TCS New York City Marathon + The annual New York City Marathon winds its 26 mile course through the city's five boroughs and draws record numbers of participants, including the world's top runners. + + + + Paid Programming + Paid programming. + + + + Paid Programming + Paid programming. + + + + American Housewife + Katie plays matchmaker by impersonating Oliver on his social media account to win over a girl; Lonnie helps Greg dig up dirt on his political rival. + + + + ABC World News Tonight With David Muir + The latest news from America, as reported by the ABC television network. + + + + America's Funniest Home Videos + A mom plays ice cream truck music to prank her teen; a teenager makes a wrong turn during her driving lesson; comical snow snafus. + + + + Coco + Despite his family's generations-old ban on music, young Miguel dreams of becoming an accomplished musician like his idol Ernesto de la Cruz. Desperate to prove his talent, Miguel finds himself in the stunning and colorful Land of the Dead. After meeting a charming trickster named Héctor, the two new friends embark on an extraordinary journey to unlock the real story behind Miguel's family history. + + + + Generation Gap + The seniors and juniors are joined by special celebrity guest Cheryl Ladd. + + + + Kaleidoscope the Series + Kaleidoscope The Series is a 30 minute weekly news magazine covering west-central Pennsylvania and beyond. Kaleidoscope features a person, place and thing each week. + + + + Chicago Fire + Severide teams up with Seager and the OFI when a motel structure fire turns suspicious; Firehouse 51 members become amateur sleuths following a Reddit post involving one of their own; Brett continues to get invested in her birth mother, Julie. + + + + American Housewife + Katie plays matchmaker by impersonating Oliver on his social media account to win over a girl; Lonnie helps Greg dig up dirt on his political rival. + + + + Modern Family + Phil has second thoughts after he helps Haley talk Claire into letting Dylan move in; Mitch accepts a job working for Jay's biggest rival; Cameron and Gloria cannot agree on how to handle Manny's girl problem. + + + + Modern Family + Phil can't get anyone else to care about tending to the eggs; Claire is anxious about bringing her closet ideas to Jay; Cameron gets over-attached to the frat guys living in the upstairs unit. + + + + Modern Family + Claire wants to give Haley and Alex a great experience on Take your Daughter to Work Day but employees make things difficult; Jay has to help out at Joe's preschool when Gloria has jury duty; Mitch and Cam cannot agree on who to invite to a party. + + + + Modern Family + Luke is arrested for driving without a license; Alex is caught sneaking out of a liquor store; Cam thinks Gloria should re-create and sell her family's hot sauce; Haley and Dylan have an awkward encounter with Beth and Andy. + + + + ABC World News Now + Global news. + + + + AgDay + An exploration of new information in American agriculture that farmers and ranchers need to succeed. + + + + America This Morning + The early-morning news program presenting breaking news, trending stories and viral videos covering everything from business to weather to sports. + + + + America This Morning + The early-morning news program presenting breaking news, trending stories and viral videos covering everything from business to weather to sports. + + + + The National Desk + Local and national perspectives on the latest news. + + + + Good Morning America + Up-to-the-minute news, weather, lifestyle and topical features. + + + + Pictionary + Celebrity captains Jaleel White and Ricki Lake. + + + + Pictionary + Celebrity captains Brian Austin Green ("Beverly Hills, 90210") and Jaleel White ("Family Matters"). + + + + Access Daily With Mario & Kit + The daily one-hour syndicated entertainment news and lifestyle talk show co-hosted by Mario Lopez, Kit Hoover and Scott Evans features celebrity interviews and gives viewers insider access to Hollywood's biggest stories. + + + + The View + Celebrity and political guests join the panel of hosts for up-to-the-minute hot topics and invaluable conversations. + + + + The Jennifer Hudson Show + The EGOT winner's daytime talk show features celebrity interviews, topical stories, community heroes, viral sensations, and music, bringing fun, uplifting, and empowering conversations to the forefront. + + + + GMA3: What You Need to Know + News, lifestyle and entertainment program hosted by Eva Pilgrim, DeMarco Morgan and Dr. Jennifer Ashton. + + + + General Hospital + The ongoing lives of the diverse and evolving citizens of the fictional town of Port Charles in upstate New York. + + + + Sherri + Actress, comic and Emmy Award-winning longtime co-host of "The View" Sherri Shepherd appears before a live audience with a daily dose of pop culture, comedy, conversations and daytime talk staples, including celebrity and human-interest interviews. + + + + The Kelly Clarkson Show + Kellyoke: "Don't Let Go"; Jenna Bush-Hager and Barbara Bush; Cailee Spaeny; Red Hook Art Project; Danielle Kartes demo; Coffee Reward Day. + + + + The Drew Barrymore Show + Drew Barrymore presents human-interest stories, celebrity guests, lifestyle segments and field pieces, all driven by her infectious brand of humor and optimism. + + + + The Drew Barrymore Show + Drew Barrymore presents human-interest stories, celebrity guests, lifestyle segments and field pieces, all driven by her infectious brand of humor and optimism. + + + + ABC 23 News Centre at 6PM + + + + ABC World News Tonight With David Muir + The latest news from America, as reported by the ABC television network. + + + + Jeopardy! + The Emmy-winning quiz show features a unique answer-and-question format. + + + + Wheel of Fortune + In a classic game-show version of "Hangman," contestants solve word puzzles for cash and prizes. + + + + NFL Football + The streaking Jets (4-3) welcome the Chargers (3-4) to MetLife Stadium for Monday Night Football. The Jets have won three straight following a 13-10 victory in overtime over the Giants. Los Angeles is back on track after blasting Chicago 30-13. + + + + The National Desk + Local and national perspectives on the latest news. + + + + Jimmy Kimmel Live! + Former professional basketball player Magic Johnson; chef José Andrés; Jordan Davis performs. + + + + Nightline + In-depth reporting on news and events with Juju Chang and Byron Pitts. + + + + iCRIME With Elizabeth Vargas + Crimes from across the country that have been captured by ordinary people on their smartphones; stories of victims, witnesses, law enforcement and the videographers themselves. + + + + Pets.TV + Pet news, care, health and lifestyles. + + + + Greatest Sports Legends: Then and Now + The past and present of sports gambling. + + + + The Drew Barrymore Show + Comic Keegan-Michael Key and wife Elle; Drew and Ross cover headlines. + + + + The Drew Barrymore Show + Drew and Ross Mathews serve the news sunny-side up; Drew's favorite handy kitchen gadgets; Danny Seo uses coffee to restore color to clothes. + + + + ABC World News Now + Global news. + + + + AgDay + An exploration of new information in American agriculture that farmers and ranchers need to succeed. + + + + America This Morning + The early-morning news program presenting breaking news, trending stories and viral videos covering everything from business to weather to sports. + + + + America This Morning + The early-morning news program presenting breaking news, trending stories and viral videos covering everything from business to weather to sports. + + + + The National Desk + Local and national perspectives on the latest news. + + + + Good Morning America + Author Holly Marie; actress Megan Fox; author Alex Aster. + + + + Pictionary + Celebrity captains Jaleel White and Adam Rippon. + + + + Pictionary + Celebrity captains Brian Austin Green ("Beverly Hills, 90210") and Jaleel White ("Family Matters"). + + + + Access Daily With Mario & Kit + Mauricio Umansky (ABC's "Dancing With the Stars"); choreographer Debbie Allen discusses her dance academy's "Queen of the Monarchs" performance; Friendsgiving recipes; looking back at 1982; MorningSave shoppable finds. + + + + The View + Filmmaker Tyler Perry; author Holly Marie. + + + + The Jennifer Hudson Show + The EGOT winner's daytime talk show features celebrity interviews, topical stories, community heroes, viral sensations, and music, bringing fun, uplifting, and empowering conversations to the forefront. + + + + GMA3: What You Need to Know + ABC News political director Rick Klein; North Carolina Democratic Party chair Anderson Clayton; Alabama Republican Party chair John Wahl; journalists MaryAlice Parks, Alex Presha, Elizabeth Schulze and Rachel Scott; Rep. Maxwell Frost (D-Fla.). + + + + General Hospital + Sonny offers support to Anna; Robert offers an explanation; Gregory helps Alexis with an ethical issue; Sam is overjoyed; Curtis gets valuable advice. + + + + Sherri + Actress, comic and Emmy Award-winning longtime co-host of "The View" Sherri Shepherd appears before a live audience with a daily dose of pop culture, comedy, conversations and daytime talk staples, including celebrity and human-interest interviews. + + + + The Kelly Clarkson Show + Kellyoke: "Mama, Dolly, Jesus"; Good Neighbor of the Year countdown: A Place at the Table (Raleigh), Miami Children's Choir, Omaha Home for Boys, Forgotten Harvest (Detroit), Firebird Arts (Chicago), Families Forward (Des Moines); Sing for Seniors. + + + + The Drew Barrymore Show + Krystal Joy Brown ("Merrily We Roll Along"); Josh Gad (Broadway's "Gutenberg! The Musical!"). + + + + The Drew Barrymore Show + Drew and Ross cover news; chef Erin French (book "Big Heart, Little Stove") makes buttered cod with capers, fennel, olives and croutons. + + + + ABC 23 News Centre at 6PM + + + + ABC World News Tonight With David Muir + The latest news from America, as reported by the ABC television network. + + + + Jeopardy! + The Emmy-winning quiz show features a unique answer-and-question format. + + + + Wheel of Fortune + In a classic game-show version of "Hangman," contestants solve word puzzles for cash and prizes. + + + + Dancing With the Stars + The eight remaining couples prepare for an electrifying night as they perform dances to songs behind the most iconic music videos; guest judge Paula Abdul. + + + + Dolly Parton -- From Rhinestones to Rock & Roll + + + + The National Desk + Local and national perspectives on the latest news. + + + + Jimmy Kimmel Live! + Saint Harison performs. + + + + Nightline + In-depth reporting on news and events with Juju Chang and Byron Pitts. + + + + 48 Hours + A teen ends up dead after an intense breakup. + + + + The Drew Barrymore Show + Krystal Joy Brown ("Merrily We Roll Along"); Josh Gad (Broadway's "Gutenberg! The Musical!"). + + + + The Drew Barrymore Show + Drew and Ross cover news; chef Erin French (book "Big Heart, Little Stove") makes buttered cod with capers, fennel, olives and croutons. + + + + ABC World News Now + Global news. + + + + AgDay + An exploration of new information in American agriculture that farmers and ranchers need to succeed. + + + + America This Morning + The early-morning news program presenting breaking news, trending stories and viral videos covering everything from business to weather to sports. + + + + America This Morning + The early-morning news program presenting breaking news, trending stories and viral videos covering everything from business to weather to sports. + + + + The National Desk + Local and national perspectives on the latest news. + + + + Good Morning America + Former professional football player Peyton Manning; singer Luke Bryan; ABC News correspondent Bob Woodruff with wife and author Lee Woodruff; Megan Moroney talks and performs. + + + + Pictionary + Celebrity captains Jaleel White and Ricki Lake. + + + + Pictionary + Celebrity captains Brian Austin Green ("Beverly Hills, 90210") and Jaleel White ("Family Matters"). + + + + Access Daily With Mario & Kit + Actor Rob Riggle (podcast "Riggle's Picks"); comic Mike Epps and wife Kyra (HGTV's "Buying Back the Block"); sommelier André Hueston Mack; music news; TV and film snack pairings. + + + + The View + Politician Hillary Clinton and producer Shannon Cohn. + + + + The Jennifer Hudson Show + The EGOT winner's daytime talk show features celebrity interviews, topical stories, community heroes, viral sensations, and music, bringing fun, uplifting, and empowering conversations to the forefront. + + + + GMA3: What You Need to Know + ABC News political director Rick Klein; Megan Moroney talks and performs; Deals and Steals with Tory Johnson. + + + + General Hospital + Tracy makes an announcement; Michael is relieved; Austin is cagey; Sonny shares shocking info with Ava; Sasha tries to mend a broken bond. + + + + Sherri + Actress, comic and Emmy Award-winning longtime co-host of "The View" Sherri Shepherd appears before a live audience with a daily dose of pop culture, comedy, conversations and daytime talk staples, including celebrity and human-interest interviews. + + + + The Kelly Clarkson Show + Kellyoke: "Unwritten"; Taylor and Taylor Lautner; author Alex Aster; magician Asi Wind; Pawsitively Good Awards: Dallas Animal Services; The Elephant Project; J. Brown performs. + + + + The Drew Barrymore Show + Tallulah Willis tells about her dad Bruce Willis' health struggles; Drew and Ross cover headlines. + + + + The Drew Barrymore Show + Drew and Ross cover headlines; chef Sohla El-Waylly shares a recipe for fruity doodle cookies. + + + + ABC 23 News Centre at 6PM + + + + ABC World News Tonight With David Muir + The latest news from America, as reported by the ABC television network. + + + + Undercover Boss + Shoppers World + When Shoppers World CEO Sam Dushey goes under cover, he finds that shoplifters are taking advantage of a store that lacks security. + Reality TV + + + TVPG + + + + Undercover Boss + Shoppers World + When Shoppers World CEO Sam Dushey goes under cover, he finds that shoplifters are taking advantage of a store that lacks security. + Reality TV + + + TVPG + + + + Undercover Boss + Dutch Bros. Coffee + Dutch Bros. Coffee co-founder and president Travis Boersma works under cover on a coffee plantation in El Salvador. + Reality TV + + + TVPG + + + + Undercover Boss + Mayor of Fontana + Acquanetta Warren, the mayor of the fastest-growing city in Southern California, is on a mission to secure its future after the pandemic. + Reality TV + + + TVPG + + + + Undercover Boss + Mayor of Shreveport + Adrian Perkins, mayor of Shreveport, La., feels the heat under cover as he is trained by city employees within the fire and police departments, with the goal of finding a way to deliver a brighter future for his hometown. + Reality TV + + + TVPG + + + + Undercover Boss + Mood Media + Mood Media CEO faces his fear of heights and learns how to use a soldering iron while he is under cover. + Reality TV + + + TVPG + + + + Undercover Boss + Buffets, Inc + Buffets Inc. CEO Anthony Wedo encounters an employee with a nasty attitude and learns how to work the grill station while he is under cover. + Reality TV + + + TVPG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + American Greed + Vanity and Greed: Deadly Beauty + Authorities charge a nurse with murder after an illegal silicone injection leads to death and knock-off cosmetic injections paralyze four others. + News Magazine + Docu-Series + + + TVPG + + + + Dateline + The Case of the Missing D.A + In 2005, a district attorney in Pennsylvania went missing, seven years after he investigated sex-abuse allegations made against Jerry Sandusky. + News Magazine + News + + + TV14 + + + + American Greed + Psychic Fiend's Network + A phony psychic scams a wealthy but lonely timber baron out of millions while her devious daughter pretends to be in love with him. + News Magazine + Docu-Series + + + TVPG + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + Paid Program + + + TV14 + + + + Jane Seymour, Kate Walsh share their skin secrets + Crepe Erase Ultra visibly transforms your skin with 9 super hydrators! Tune in to see how Jane Seymour and Kate Walsh keep their skin so smooth. Treat and repair the look of crepey skin.Shop at CrepeErase.com. + Paid Program + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + Ninja Woodfire Outdoor Grill + Meet the Shark Ninja Wood Fire Grill, with Master Grill, BBQ Smoke, and Air Fry outdoor capabilities. Powered by electricity and flavored by real burning wood pellets, Woodfire Technology allows you to easily create rich flavor you can see and taste. + Paid Program + + + + Cindy Crawford and Ellen Pompeo share secrets + Join Cindy Crawford and Ellen Pompeo as they discuss their busy lives and the breakthrough skin care discovery that keeps them looking their best. Take a trip to the stunning French countryside to see a rare French melon that defies aging. + Paid Program + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Mercy Ships + Mercy Ship's crew of world class medical volunteers sail across the globe providing lifesaving surgeries to those with nowhere else to turn. + Paid Program + + + + DraftKings Sportsbook Report + DraftKings Sportsbook, a top-rated sportsbook app! + Paid Program + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Powerful Cleaning with Shark Stratos + Meet the Shark Stratos Upright Vacuum with features like the DuoClean PowerFins HairPro, Extended Reach and detachable pod for hard to reach areas, and odor neutralizing technology, you'll be cleaning like a pro in no time! + Paid Program + + + TV14 + + + + Stories of Love to the Rescue by Shriners Hospitals for Children® + Alec and Kaleb interview patients and their families, and how their lives have been changed because of the life-changing pediatric specialty care they received at Shriners Hospitals for Children®. + Paid Program + + + + Interested in gold? Learn more! + Here's your chance to learn more about owning gold! If you've been thinking about making a gold purchase, you cannot afford to miss this opportunity: Exclusive, FREE access to U.S. Money Reserve's Gold Information Kit and knowledge resources. + Paid Program + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Rare 1800'S Silver + Add the stunning set of 2 1881 and 1885 Carson City Silver Morgan Dollar in Brilliant Uncirculated condition to your numismatic collection. These epic rare silver coins have miniscule mintages of 296,000 and 228,000 respectively. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Shark Tank + All five sharks consider business propositions that include a ticket-free coat check system, a belt buckle that doubles as a beverage holder, and what two women say is the solution to bedbugs. + Reality TV + + + TVPG + + + + Shark Tank + A portable tool that instantly turns any standard dumbbell into a dynamic workout; a product to help soothe anxiety; a device that allows for blowing out birthday candles without spreading germs; a chicken coop creation built by Amish craftsmen. + Reality TV + + + TVPG + + + + Shark Tank + Cheek'd, Zipit, Bambooee, Buzzy + A unique dating service; eco-friendly bamboo cleaning cloths; a fitted sheet and sleeping bag combo for making beds quickly; a buzzing medical device. + Reality TV + + + TVPG + + + + Shark Tank + Singer Pat Boone and a man from Brattleboro, Vt., present a new eco-friendly car that runs on compressed air; snack bars with a connection to a popular diet; a fisherman seeks an investment in a unique lure; an update on Heidi Ho Organics. + Reality TV + + + TVPG + + + + Shark Tank + An entrepreneur utilizes a unique labor force; a grown-up version of a childhood toy; beauty innovations; an update on Happy Feet. + Reality TV + + + TVPG + + + + Shark Tank + Bake-at-home, all-natural treats; a beauty product made specifically for women with curly hair; a unique twist on yoga with help from a surprising source; a product for showering in public with privacy; Alli Webb guest judges.Guests: Alli Webb.. + Reality TV + + + TVPG + + + + Shark Tank + A vegan version of a classic grab-and-go snack; pandemic-inspired masks; a stress-reducing beverage; a product designed to make grilling an eco-friendly experience. + Reality TV + + + TVPG + + + + Shark Tank + A portable tool that instantly turns any standard dumbbell into a dynamic workout; a product to help soothe anxiety; a device that allows for blowing out birthday candles without spreading germs; a chicken coop creation built by Amish craftsmen. + Reality TV + + + TVPG + + + + Shark Tank + Bake-at-home, all-natural treats; a beauty product made specifically for women with curly hair; a unique twist on yoga with help from a surprising source; a product for showering in public with privacy; Alli Webb guest judges.Guests: Alli Webb.. + Reality TV + + + TVPG + + + + American Greed + Badge of Dishonor + Police Lt. Joe Gliniewicz steals from a youth group and his death in the woods in Fox Lake, Ill., sparks a massive manhunt to find his killers. + News Magazine + Docu-Series + + + TVPG + + + + American Greed + Hail to the Thief + A former Army intelligence officer steals millions through a fake veterans' charity. + News Magazine + Docu-Series + + + TVPG + + + + CHRISTINA HALL and Jacuzzi® amazing bathroom makeovers + SPECIAL OFFER + Trusted brand Jacuzzi® and renowned interior designer, Christina Hall can help you transform your old bathroom into a gorgeous custom, safe and stylish space. Jacuzzi® has limited time special offers to make your dream bathroom happen today CALL NOW. + Paid Program + Home + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + American Greed + The Bar Girls Trap + Russian gangsters use beautiful women to seduce amorous men in nightclubs out of their money and jewelry. + News Magazine + Docu-Series + + + TVPG + + + + Street Signs + Information about under-the-radar stocks and market trends help investors make wise choices. + News + Business + + + + Worldwide Exchange + Delivering essential, actionable information and analysis for anyone who wants to be part of the global business conversation; preparing CNBC's worldwide audience with a smart take on overnight U.S. news and live international market action. + News + Business + + + + Squawk Box + The biggest names in business and politics tell their most important stories in this ultimate pre-market morning news and talk program; a must see for everyone, from the professional trader to the casual investor. + News + Business + + + + Squawk on the Street + Taking viewers onto the floor of the exchange, right to the posts where the biggest companies in the world trade; exclusive Tick by Tick charts track the action of every trade of every stock; the treasury, currency and commodity action in real time. + News + Business + + + + Squawk on the Street + Taking viewers onto the floor of the exchange, right to the posts where the biggest companies in the world trade; exclusive Tick by Tick charts track the action of every trade of every stock; the treasury, currency and commodity action in real time. + News + Business + + + + Fast Money Halftime Report + News + Business + + + + The Exchange + Anchor Kelly Evans reports on the most important stories to today's markets and investors; reporters provide actionable information to viewers as they make daily investment decisions. + News + Business + + + + Power Lunch + Focusing on real-time market coverage, breaking news and up-to-the-instant stock moving information; delving into the economy, the markets, real estate, media and technology - any place where there's money to be made. + News + Business + + + + Closing Bell + A guide through the most important hour of the Wall Street trading day, and taking a close-up look at how the markets are moving, what's driving them and how investors are reacting; coverage includes reports from the CME Group, NASDAQ and the NYSE. + News + Business + + + + Closing Bell: Overtime + A look at after-hours moves, including breaking news, corporate earnings and post-market trading; big investors, smart strategists and top money managers debate actionable ideas and the big market themes of the day. + News + Business + + + + Fast Money + The information normally reserved for the Wall Street trading floor, enabling viewers to make decisions that give them a chance to make money; the news with an angle that won't be seen until tomorrow's papers. + News + Business + + + + Mad Money + Taking viewers inside the mind of one of Wall Street's most respected and successful money managers; Jim Cramer guides viewers through the confusing jungle of Wall Street investing, navigating through both opportunities and pitfalls. + News + Business + + + TVPG + + + + Last Call + Through panels, debates and newsmakers,. + News + Business + + + + Shark Tank + A vegan version of a classic grab-and-go snack; pandemic-inspired masks; a stress-reducing beverage; a product designed to make grilling an eco-friendly experience. + Reality TV + + + TVPG + + + + Shark Tank + A scholarship app; micro-loans funded by money raised from backpacks made of traditional fabrics from developing countries; update on Bottle Breacher. + Reality TV + + + TVPG + + + + Shark Tank + A convenient new style of eating authentic Korean food; a product designed to help with one's wellness routine; a take on a common cooking tool; a version of a sports medicine product specifically designed for athletes; an update on Souper Cubes. + Reality TV + + + TVPG + + + + Shark Tank + Premium shirts for men less than 5'8. + Reality TV + + + TVPG + + + + Shark Tank + The sharks fight over a three-in-one nail polish invented by a mother of six; a feisty couple from New York present what they think is the next trend in women's accessories; two hockey moms pitch their idea for tank tops with interchangeable straps. + Reality TV + + + TVPG + + + + American Greed + The Trials of Michael Avenatti + Attorney Michael Avenatti has legal troubles of his own when he represents porn star Stormy Daniels in her dispute with President Donald Trump. + News Magazine + Docu-Series + + + TVPG + + + + Dateline + Along Came Jodi + Jodi Arias is convicted of murdering her ex-boyfriend, Travis Alexander. + News Magazine + + + TVPG + + + + Dateline + Graduation Night + In an effort to uncover the truth, a group of Detroiters band together to clear the names of Tommy and Ray Hughes who have spent 25 years in prison for a murder they say they did not commit. + News Magazine + Documentary + + + TV14 + + + + Street Signs + Information about under-the-radar stocks and market trends help investors make wise choices. + News + Business + + + + Worldwide Exchange + Delivering essential, actionable information and analysis for anyone who wants to be part of the global business conversation; preparing CNBC's worldwide audience with a smart take on overnight U.S. news and live international market action. + News + Business + + + + Squawk Box + The biggest names in business and politics tell their most important stories in this ultimate pre-market morning news and talk program; a must see for everyone, from the professional trader to the casual investor. + News + Business + + + + Squawk on the Street + Taking viewers onto the floor of the exchange, right to the posts where the biggest companies in the world trade; exclusive Tick by Tick charts track the action of every trade of every stock; the treasury, currency and commodity action in real time. + News + Business + + + + Squawk on the Street + Taking viewers onto the floor of the exchange, right to the posts where the biggest companies in the world trade; exclusive Tick by Tick charts track the action of every trade of every stock; the treasury, currency and commodity action in real time. + News + Business + + + + Fast Money Halftime Report + News + Business + + + + The Exchange + Anchor Kelly Evans reports on the most important stories to today's markets and investors; reporters provide actionable information to viewers as they make daily investment decisions. + News + Business + + + + Power Lunch + Focusing on real-time market coverage, breaking news and up-to-the-instant stock moving information; delving into the economy, the markets, real estate, media and technology - any place where there's money to be made. + News + Business + + + + Closing Bell + A guide through the most important hour of the Wall Street trading day, and taking a close-up look at how the markets are moving, what's driving them and how investors are reacting; coverage includes reports from the CME Group, NASDAQ and the NYSE. + News + Business + + + + Closing Bell: Overtime + A look at after-hours moves, including breaking news, corporate earnings and post-market trading; big investors, smart strategists and top money managers debate actionable ideas and the big market themes of the day. + News + Business + + + + Fast Money + The information normally reserved for the Wall Street trading floor, enabling viewers to make decisions that give them a chance to make money; the news with an angle that won't be seen until tomorrow's papers. + News + Business + + + + Mad Money + Taking viewers inside the mind of one of Wall Street's most respected and successful money managers; Jim Cramer guides viewers through the confusing jungle of Wall Street investing, navigating through both opportunities and pitfalls. + News + Business + + + TVPG + + + + Last Call + Through panels, debates and newsmakers,. + News + Business + + + + Shark Tank + The sharks fight over a three-in-one nail polish invented by a mother of six; a feisty couple from New York present what they think is the next trend in women's accessories; two hockey moms pitch their idea for tank tops with interchangeable straps. + Reality TV + + + TVPG + + + + Shark Tank + A solution to underarm sweat marks and stains; a belt buckle that doubles as a wallet; a business that helps empower farmers in a war-torn country by helping them cultivate and harvest saffron; multi-purpose mixing bowls. + Reality TV + + + TVPG + + + + Shark Tank + A product to help make one's bed; a plant-based take on a classic favorite food; an easy way to walk one's dog without tracking dirt and germs; an app designed to help kids learn coding; an update on Flexscreen, a flexible window screen company. + Reality TV + + + TVPG + + + + Shark Tank + A socially interactive party game; a customized household product that ensures safety; a reusable bottle-emptying device; a healthy alternative to soda. + Reality TV + + + TVPG + + + + Shark Tank + A solution to underarm sweat marks and stains; a belt buckle that doubles as a wallet; a business that helps empower farmers in a war-torn country by helping them cultivate and harvest saffron; multi-purpose mixing bowls. + Reality TV + + + TVPG + + + + American Greed + The Polygamist and the Bio Fuel Baron + CEO Jacob Kingston appears to be a rising star in Utah's fledgling biofuel industry, until a member of a secretive polygamist group called The Order reveals that Kingston is committing a 1.1 billion dollar fraud. + News Magazine + Docu-Series + + + TVPG + + + + Dateline + Secrets and Lies + A woman is found murdered in the remains of a house that has burned to the ground, and it will take years to unravel the mystery of what happened to her. + News Magazine + Documentary + + + TV14 + + + + Dateline + Toxic + A trail of texts helps prosecutors build a case in the disappearance of Kevin Mengel, but a surprise awaits them. + News Magazine + Documentary + + + TV14 + + + + Street Signs + Information about under-the-radar stocks and market trends help investors make wise choices. + News + Business + + + + Worldwide Exchange + Delivering essential, actionable information and analysis for anyone who wants to be part of the global business conversation; preparing CNBC's worldwide audience with a smart take on overnight U.S. news and live international market action. + News + Business + + + + Squawk Box + The biggest names in business and politics tell their most important stories in this ultimate pre-market morning news and talk program; a must see for everyone, from the professional trader to the casual investor. + News + Business + + + + Squawk on the Street + Taking viewers onto the floor of the exchange, right to the posts where the biggest companies in the world trade; exclusive Tick by Tick charts track the action of every trade of every stock; the treasury, currency and commodity action in real time. + News + Business + + + + Squawk on the Street + Taking viewers onto the floor of the exchange, right to the posts where the biggest companies in the world trade; exclusive Tick by Tick charts track the action of every trade of every stock; the treasury, currency and commodity action in real time. + News + Business + + + + Fast Money Halftime Report + News + Business + + + + The Exchange + Anchor Kelly Evans reports on the most important stories to today's markets and investors; reporters provide actionable information to viewers as they make daily investment decisions. + News + Business + + + + Power Lunch + Focusing on real-time market coverage, breaking news and up-to-the-instant stock moving information; delving into the economy, the markets, real estate, media and technology - any place where there's money to be made. + News + Business + + + + Closing Bell + A guide through the most important hour of the Wall Street trading day, and taking a close-up look at how the markets are moving, what's driving them and how investors are reacting; coverage includes reports from the CME Group, NASDAQ and the NYSE. + News + Business + + + + Closing Bell: Overtime + A look at after-hours moves, including breaking news, corporate earnings and post-market trading; big investors, smart strategists and top money managers debate actionable ideas and the big market themes of the day. + News + Business + + + + Fast Money + The information normally reserved for the Wall Street trading floor, enabling viewers to make decisions that give them a chance to make money; the news with an angle that won't be seen until tomorrow's papers. + News + Business + + + + Mad Money + Taking viewers inside the mind of one of Wall Street's most respected and successful money managers; Jim Cramer guides viewers through the confusing jungle of Wall Street investing, navigating through both opportunities and pitfalls. + News + Business + + + TVPG + + + + The Whole Story With Anderson Cooper + Hostage to Terror + Anderson Cooper reveals dramatic details of the Hamas mass kidnapping in Israel, speaks to the families of hostage Israelis and explores the use of hostages as a tool of terror and war. + News + + + + The Whole Story With Anderson Cooper + Inside Hamas + Exploring how Hamas pulled off it's massive attack on Israel. + News + + + + The Seventies + Terrorism at Home and Abroad + From TWA Flight 481 to the Munich Olympic Massacre, witness the seeds and evolution of modern-day terrorism. + History + Documentary + + + TVPG + + + + The Nineties + New World Order + The world has seen a lot of change due to major political events, including the Warsaw Pact, Nelson Mandela's release from prison, the Persian Gulf War, and Bill Clinton becoming the president of the United States. + History + Documentary + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + The Whole Story With Anderson Cooper + Hostage to Terror + Anderson Cooper reveals dramatic details of the Hamas mass kidnapping in Israel, speaks to the families of hostage Israelis and explores the use of hostages as a tool of terror and war. + News + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + CNN This Morning Weekend + Correspondents Victor Blackwell and Amara Walker engage in relevant conversations about the latest stories and developments from across the world. + News + + + + CNN This Morning Weekend + Correspondents Victor Blackwell and Amara Walker engage in relevant conversations about the latest stories and developments from across the world. + News + + + + CNN This Morning Weekend + Correspondents Victor Blackwell and Amara Walker engage in relevant conversations about the latest stories and developments from across the world. + News + + + + State of the Union With Jake Tapper and Dana Bash + Jake Tapper and Dana Bash bring together major newsmakers, analysts and experts to tackle pressing domestic issues and diplomacy on the global stage. + News + + + + Fareed Zakaria GPS + Insights, analysis and interviews world leaders, artists, scientists, business leaders, global affairs analysts, and other cultural observers for the. + News + Political + + + TVPG + + + + Inside Politics With Manu Raju + Manu Raju leads an in-depth conversation on the week's most important political storylines, with a diverse set of analysts and news-making interviews. + News + Political + + + + State of the Union With Jake Tapper and Dana Bash + Jake Tapper and Dana Bash bring together major newsmakers, analysts and experts to tackle pressing domestic issues and diplomacy on the global stage. + News + + + + Fareed Zakaria GPS + Insights, analysis and interviews world leaders, artists, scientists, business leaders, global affairs analysts, and other cultural observers for the. + News + Political + + + TVPG + + + + CNN Newsroom With Fredricka Whitfield + The latest news and information from around the world with Fredricka Whitfield. + News + Political + + + + CNN Newsroom With Fredricka Whitfield + The latest news and information from around the world with Fredricka Whitfield. + News + Political + + + + CNN Newsroom With Fredricka Whitfield + The latest news and information from around the world with Fredricka Whitfield. + News + Political + + + + CNN Newsroom With Jim Acosta + Updates of the latest news from around the world. + Talk Shows + + + + CNN Newsroom With Jim Acosta + Updates of the latest news from around the world. + Talk Shows + + + + CNN Newsroom With Jim Acosta + Updates of the latest news from around the world. + Talk Shows + + + + CNN Newsroom With Jim Acosta + Updates of the latest news from around the world. + Talk Shows + + + + The Whole Story With Anderson Cooper + Hostage to Terror + Anderson Cooper reveals dramatic details of the Hamas mass kidnapping in Israel, speaks to the families of hostage Israelis and explores the use of hostages as a tool of terror and war. + News + + + + The Whole Story With Anderson Cooper + Inside Hamas + Exploring how Hamas pulled off it's massive attack on Israel. + News + + + + The Whole Story With Anderson Cooper + Terror in Israel + Anderson Cooper reports from southern Israel on the music festival attacked by Hamas and hears stories from survivors and relatives of the victims. + News + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + Early Start With Kasie Hunt + Getting a jump on the day's news with Kasie Hunt. + News + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + CNN News Central + The latest news from around the world live from CNN's immersive news hub with John Berman, Kate Bolduan and Sara Sidner. + News + + + + CNN News Central + The latest news from around the world live from CNN's immersive news hub with John Berman, Kate Bolduan and Sara Sidner. + News + + + + CNN News Central + The latest news from around the world live from CNN's immersive news hub with John Berman, Kate Bolduan and Sara Sidner. + News + + + + Inside Politics With Dana Bash + Top political stories researched by top reporters. + News + Political + + + + CNN News Central + News from around the world with Brianna Keilar and Boris Sanchez. + News + + + + CNN News Central + News from around the world with Brianna Keilar and Boris Sanchez. + News + + + + CNN News Central + News from around the world with Brianna Keilar and Boris Sanchez. + News + + + + The Lead With Jake Tapper + Covering all the day's top stories around the country and the globe, from politics to money, sports to popular culture. + News + Political + + + + The Lead With Jake Tapper + Covering all the day's top stories around the country and the globe, from politics to money, sports to popular culture. + News + Political + + + + The Situation Room With Wolf Blitzer + The command center for breaking news, politics and reports from around the world. + News + Political + + + + Erin Burnett OutFront + Erin Burnett stays ahead of the headlines, delivering a show that's in-depth and informative. + News + Political + + + + Anderson Cooper 360 + Anderson Cooper takes viewers beyond the headlines with in-depth reporting and investigations. + News + Political + + + TVPG + + + + The Source With Kaitlan Collins + Kaitlan Collins is chasing the facts, asking the tough questions and connecting with her sources. + News + + + + CNN NewsNight With Abby Phillip + Abby Phillip delivers a smart, sharp approach to the day's biggest stories. + News + + + + Laura Coates Live + Laura Coates goes inside the story with a relentless pursuit of the facts. + News + + + + Anderson Cooper 360 + Anderson Cooper takes viewers beyond the headlines with in-depth reporting and investigations. + News + Political + + + TVPG + + + + The Source With Kaitlan Collins + Kaitlan Collins is chasing the facts, asking the tough questions and connecting with her sources. + News + + + + CNN NewsNight With Abby Phillip + Abby Phillip delivers a smart, sharp approach to the day's biggest stories. + News + + + + Laura Coates Live + Laura Coates goes inside the story with a relentless pursuit of the facts. + News + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + Early Start With Kasie Hunt + Getting a jump on the day's news with Kasie Hunt. + News + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + CNN News Central + The latest news from around the world live from CNN's immersive news hub with John Berman, Kate Bolduan and Sara Sidner. + News + + + + CNN News Central + The latest news from around the world live from CNN's immersive news hub with John Berman, Kate Bolduan and Sara Sidner. + News + + + + CNN News Central + The latest news from around the world live from CNN's immersive news hub with John Berman, Kate Bolduan and Sara Sidner. + News + + + + Inside Politics With Dana Bash + Top political stories researched by top reporters. + News + Political + + + + CNN News Central + News from around the world with Brianna Keilar and Boris Sanchez. + News + + + + CNN News Central + News from around the world with Brianna Keilar and Boris Sanchez. + News + + + + CNN News Central + News from around the world with Brianna Keilar and Boris Sanchez. + News + + + + Election Day in America + Special coverage of Election Day 2023. + Specials + News + + + + Election Day in America + Special coverage of Election Day 2023. + Specials + News + + + + Election Day in America + Special coverage of Election Day 2023. + Specials + News + + + + Election Day in America + Special coverage of Election Day 2023. + Specials + News + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + Early Start With Kasie Hunt + Getting a jump on the day's news with Kasie Hunt. + News + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + CNN News Central + The latest news from around the world live from CNN's immersive news hub with John Berman, Kate Bolduan and Sara Sidner. + News + + + + CNN News Central + The latest news from around the world live from CNN's immersive news hub with John Berman, Kate Bolduan and Sara Sidner. + News + + + + CNN News Central + The latest news from around the world live from CNN's immersive news hub with John Berman, Kate Bolduan and Sara Sidner. + News + + + + Inside Politics With Dana Bash + Top political stories researched by top reporters. + News + Political + + + + CNN News Central + News from around the world with Brianna Keilar and Boris Sanchez. + News + + + + CNN News Central + News from around the world with Brianna Keilar and Boris Sanchez. + News + + + + CNN News Central + News from around the world with Brianna Keilar and Boris Sanchez. + News + + + + The Lead With Jake Tapper + Covering all the day's top stories around the country and the globe, from politics to money, sports to popular culture. + News + Political + + + + The Lead With Jake Tapper + Covering all the day's top stories around the country and the globe, from politics to money, sports to popular culture. + News + Political + + + + The Situation Room With Wolf Blitzer + The command center for breaking news, politics and reports from around the world. + News + Political + + + + NBC4 News + The latest local news, weather and investigative stories impacting the community. + News + + + + California Live + A daily lifestyle show that takes a ride through all of California, discovering many of the hidden treasures the state and its people have to offer including beauty, glamour, fitness, food, health, and tech. + Local + + + + Dateline NBC + Under a Full Moon + When detectives track down the killer of a Las Vegas cocktail waitress and mother, it becomes clear that the investigation has just begun. + News Magazine + + + + NBC4 News at 11pm + The latest local news, weather and investigative stories impacting the community. + News + + + + Saturday Night Live + Pete Davidson; Ice Spice + Host Pete Davidson; Ice Spice performs. + + Michael Che + Mikey Day + Chloe Fineman + + Comedy + + + TV14 + + + + 1st Look + Destination San Diego w/ Danielle Robay + Guest host Danielle Robay finds San Diego treasures, from the only 3 Michelin Star restuarant in California to an indoor carousel bar.Guests: Danielle Robay.. + Travel + + + TVPG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Open House + Real estate trends and opportunities; home design. + Home + Instructional + + + TVPG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Access Hollywood + Hollywood Headlines, Celebrity Interviews, Behind-the-Scenes Access and the Hottest Fashions + Hosts Mario Lopez, Kit Hoover and Scott Evans and correspondent Zuri Hall take viewers behind the velvet ropes and onto the red carpet to deliver celebrity interviews and entertainment news stories in Hollywood. + News Magazine + Performing Arts + + + TVPG + + + + 1st Look + Destination San Diego w/ Danielle Robay + Guest host Danielle Robay finds San Diego treasures, from the only 3 Michelin Star restuarant in California to an indoor carousel bar.Guests: Danielle Robay.. + Travel + + + TVPG + + + + Open House NYC + Presents: George to the Rescue -- Cordasco + Turning a beloved teacher's fixer-upper into a forever home. + Home + + + TVG + + + + Open House NYC + Presents: George to the Rescue -- Mandeville + George surprises a resilient mother with a serene outdoor oasis. + Home + + + TVG + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + George to the Rescue + George Oliphant comes to the rescue of families in need of renovating their homes. + Reality TV + + + TVPG + + + + Open House + Real estate trends and opportunities; home design. + Home + Instructional + + + TVPG + + + + Sunday Today With Willie Geist + Sharp conversational coverage of the week's news, along with in-depth profiles of the people and personalities shaping American culture, assessing the highs and lows of the week and looking ahead to the next one. + Talk Shows + News Magazine + + + + Today in LA Weekend + The latest local news, weather and investigative stories impacting the community. + News + + + + Meet the Press + Interviews with public figures and those making news, setting the political agenda and spotlighting the impact Washington decision-making has on Americans. + Talk Shows + Political + + + + NBC4 News Conference + Exploring national, state and local politics and policy; NBC4 LA political reporter Conan Nolan hosts the longest running public affairs program in southern California. + News + + + + Figure Skating + ISU Grand Prix: Grand Prix de France + From Angers, France. + Sports + Figure Skating + + + + NASCAR Cup Series Countdown to Green + Pre-race show with analysis, driver profiles, reports from the garage, interviews with drivers and crew chiefs, and more. + Sports + Auto Racing + + + + NASCAR Cup Series + NASCAR Cup Series Championship + The NASCAR Cup Series championship comes down to the season's final race at Phoenix Raceway. Ryan Blaney won last week at Martinsville to join Christopher Bell, Kyle Larson and William Byron as the Championship 4 who will vie for the title. + Sports + Auto Racing + + + + Football Night in America + Host Maria Taylor, Hall of Fame head coach Tony Dungy, former NFL head coach Jason Garrett, former NFL quarterback Chris Simms and NFL insider Mike Florio recap the day's NFL highlights. Jac Collinsworth and Rodney Harrison contribute on-site. + + Hines Ward + Josh Elliott + + Sports + Football + + + TV14 + + + + Buffalo Bills vs. Cincinnati Bengals + Buffalo Bills at Cincinnati Bengals + The Bengals host the Bills. Cincinnati won 27-10 at Buffalo in a 2022 AFC divisional playoff, 20 days after the Bills' Damar Hamlin went into cardiac arrest during a game against the Bengals. Cincinnati has won three straight after a 1-3 start. + Sports + Football + + + + The Challenge + Mario Solis hosts a half hour full of fun, football and prizes. + Sports + Talk Show + + + + NBC4 News + The latest local news, weather and investigative stories impacting the community. + News + + + + Dateline NBC + Shannon's Story + A college student goes missing in broad daylight from her off-campus job at a softball field; investigators receive a mysterious phone call that changes everything. + News Magazine + + + + NBC4 News at 11pm + The latest local news, weather and investigative stories impacting the community. + News + + + + NBC4 News + The latest local news, weather and investigative stories impacting the community. + News + + + + In Depth With Graham Bensinger + Killer Mike + Community activist and Grammy Award-winning rapper Killer Mike reveals how he got involved with drugs at a young age and how the deaths of his mother and grandmother changed his approach to life.Guests: Killer Mike.. + Sports + Talk Show + + + + Open House + Real estate trends and opportunities; home design. + Home + Instructional + + + TVPG + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + Meet the Press + Interviews with public figures and those making news, setting the political agenda and spotlighting the impact Washington decision-making has on Americans. + Talk Shows + Political + + + + Early Today + The latest world and national news, and reports on the day's upcoming events. + News + + + TVG + + + + Early Today + The latest world and national news, and reports on the day's upcoming events. + News + + + TVG + + + + Early Today + The latest world and national news, and reports on the day's upcoming events. + News + + + TVG + + + + Today in LA at 4am + The latest local news, weather and investigative stories impacting the community. + News + + + + Today in LA at 4:30am + The latest local news, weather and investigative stories impacting the community. + News + + + + Today in LA at 5am + The latest local news, weather and investigative stories impacting the community. + News + + + + Today in LA at 6am + The latest local news, weather and investigative stories impacting the community. + News + + + + Today + News headlines, interviews, and stories intended to inform, entertain, inspire and set the agenda each morning for Americans and help viewers with their finances, health and well-being. + Talk Shows + News + + + + Today 3rd Hour + A news program intended to inform, entertain, inspire and set the agenda each morning, offering news, weather reports, and interviews with newsmakers from the worlds of politics, business, media, entertainment and sports. + Talk Shows + News + + + + Today With Hoda & Jenna + America's feel-good morning show with big stars and sweet surprises. Hoda and Jenna inspire and empower with their impactful stories and heartfelt connection. + Talk Shows + News + + + TVG + + + + NBC4 News at 11am + The latest local news, weather and investigative stories impacting the community. + News + + + + California Live + A daily lifestyle show that takes a ride through all of California, discovering many of the hidden treasures the state and its people have to offer including beauty, glamour, fitness, food, health, and tech. + Local + + + + NBC News Daily + NBC News provides viewers with the latest national and international news; consumer, health and personal finance reporting; up-to-the-minute local news. + News + + + TVG + + + + Access Daily With Mario & Kit + The daily one-hour syndicated entertainment news and lifestyle talk show co-hosted by Mario Lopez, Kit Hoover and Scott Evans features celebrity interviews and gives viewers insider access to Hollywood's biggest stories. + News Magazine + Performing Arts + + + TVPG + + + + The Kelly Clarkson Show + Kellyoke:Guests: Jenna Bush Hager, Barbara Bush, Cailee Spaeny, Danielle Kartes.. + Talk Shows + Variety + + + TVPG + + + + NBC4 News at 3pm + News + + + + NBC Nightly News With Lester Holt + The latest news, going beyond the headlines to see how lives are affected by the world around them. + News + + + TVPG + + + + NBC4 News at 4pm + The latest local news, weather and investigative stories impacting the community. + News + + + + NBC4 News at 5pm + The latest local news, weather and investigative stories impacting the community. + News + + + + NBC4 News at 6pm + The latest local news, weather and investigative stories impacting the community. + News + + + + NBC Nightly News With Lester Holt + The latest news, going beyond the headlines to see how lives are affected by the world around them. + News + + + TVPG + + + + NBC4 News at 7pm + The latest in local breaking news, weather reports, and feature stories covering the vast Southern California region. + News + + + + Access Hollywood + BravoCon highlights, surprises and drama; the cast ofGuests: Danny DeVito, Lucy DeVito.. + News Magazine + Performing Arts + + + TVPG + + + + The Voice + The Battles Part 6 and Knockouts Premiere + The battle rounds end as Niall Horan, John Legend, Reba McEntire and Gwen Stefani prepare their artists to go head-to-head in hopes of advancing to the three-way knockouts, which begin with a mega mentor on hand to provide advice to the artists. + Music + Game Shows + + + TVPG + + + + The Irrational + The Real Deal + Alec's first date with Rose turns into a 24-hour excursion when they find themselves taking on an investigation involving a forged masterpiece; Marisa and Kylie attempt to revive their friendship, which has faltered since Alec and Marisa's divorce. + + Jesse L. Martin + Maahra Hill + Travina Springer + + Drama + + + TV14 + + + + NBC4 News at 11pm + The latest local news, weather and investigative stories impacting the community. + News + + + + The Tonight Show Starring Jimmy Fallon + Please Don't Destroy; Jung Kook + Comedy group Please Don't Destroy; Jung Kook talks and performs.Guests: Please Don't Destroy.. + Talk Shows + Comedy + + + TV14 + + + + Late Night With Seth Meyers + Jennifer Hudson; Matt Rogers; Justin Faulkner + Singer Jennifer Hudson; comic Matt Rogers; Justin Faulkner sits in with the 8G Band.Guests: Jennifer Hudson, Matt Rogers.. + Talk Shows + Comedy + + + TV14 + + + + NBC4 News at 11pm + The latest local news, weather and investigative stories impacting the community. + News + + + + NBC Nightly News With Lester Holt + The latest news, going beyond the headlines to see how lives are affected by the world around them. + News + + + TVPG + + + + The Kelly Clarkson Show + Kellyoke:Guests: Jenna Bush Hager, Barbara Pierce Bush, Cailee Spaeny, Danielle Kartes.. + Talk Shows + Variety + + + TVPG + + + + Early Today + The latest world and national news, and reports on the day's upcoming events. + News + + + TVG + + + + Today in LA at 4am + The latest local news, weather and investigative stories impacting the community. + News + + + + Today in LA at 4:30am + The latest local news, weather and investigative stories impacting the community. + News + + + + Today in LA at 5am + The latest local news, weather and investigative stories impacting the community. + News + + + + Today in LA at 6am + The latest local news, weather and investigative stories impacting the community. + News + + + + Today + Barbara Pierce Bush and Jenna Bush Hager remember their grandmother; Steals and Deals with Jill Martin; Today Food with Bobby Flay.Guests: Barbara Pierce Bush, Jenna Bush Hager, Jill Martin, Bobby Flay.. + Talk Shows + News + + + + Today 3rd Hour + When one needs a lawyer with Sara Azari; inside Los Angeles' 101-year-old renovated Egyptian Theater; things cellphones can do with Jenn Jolly; blogger Liz Marie Galvan; Today Food with Maya-Camille Broussard.Guests: Sara Azari, Jenn Jolly, Liz Marie Galvan, Maya-Camille Broussard.. + Talk Shows + News + + + + Today With Hoda & Jenna + Interior designers Chip and Joanna Gaines; comic Margaret Cho; making powerful decisions with Emma Grede.Guests: Chip Gaines, Joanna Gaines, Margaret Cho, Emma Grede.. + Talk Shows + News + + + TV14 + + + + NBC4 News at 11am + The latest local news, weather and investigative stories impacting the community. + News + + + + California Live + A daily lifestyle show that takes a ride through all of California, discovering many of the hidden treasures the state and its people have to offer including beauty, glamour, fitness, food, health, and tech. + Local + + + + NBC News Daily + NBC News provides viewers with the latest national and international news; consumer, health and personal finance reporting; up-to-the-minute local news. + News + + + + Access Daily With Mario & Kit + Mauricio Umansky (ABC'sGuests: Mauricio Umansky, Debbie Allen, Maria Provenzano.. + News Magazine + Performing Arts + + + TVPG + + + + The Kelly Clarkson Show + Kellyoke:. + Talk Shows + Variety + + + TVPG + + + + NBC4 News at 3pm + News + + + + NBC Nightly News With Lester Holt + The latest news, going beyond the headlines to see how lives are affected by the world around them. + News + + + + NBC4 News at 4pm + The latest local news, weather and investigative stories impacting the community. + News + + + + NBC4 News at 5pm + The latest local news, weather and investigative stories impacting the community. + News + + + + NBC4 News at 6pm + The latest local news, weather and investigative stories impacting the community. + News + + + + NBC Nightly News With Lester Holt + The latest news, going beyond the headlines to see how lives are affected by the world around them. + News + + + + NBC4 News at 7pm + The latest in local breaking news, weather reports, and feature stories covering the vast Southern California region. + News + + + + Access Hollywood + CFDA Fashion Awards. + News Magazine + Performing Arts + + + TVPG + + + + The Voice + Recap: The Battles Part 6; Knockouts Premiere + America's best undiscovered talent goes head-to-head on teams led by four of today's biggest musical icons, who playfully compete against each other while mentoring these inspiring singers in search of the next superstar Voice. + Music + Game Shows + + + TVPG + + + + The Voice + The Knockouts Part 2 + Country superstar Wynonna Judd serves as mega mentor; the three-way knockouts are back as coaches group three artists to perform individually against each other then select a winner to move on to the playoffs; each coach has one save and one steal.Guests: Wynonna Judd.. + Music + Game Shows + + + TVPG + + + + Found + Missing While Addicted + When Gabi takes the case of a missing man on behalf of his mother, it causes disagreement among the team; Gabi's dogged pursuit of the truth leads to a shocking revelation. + + Shanola Hampton + Mark-Paul Gosselaar + Kelli Williams + + Drama + + + TV14 + + + + NBC4 News at 11pm + The latest local news, weather and investigative stories impacting the community. + News + + + + The Tonight Show Starring Jimmy Fallon + Brian Cox; Maren Morris; Mickey Guyton; Brittney Spencer + Actor Brian Cox; Maren Morris talks and performs with Mickey Guyton and Brittney Spencer.Guests: Brian Cox.. + Talk Shows + Comedy + + + TV14 + + + + Late Night With Seth Meyers + Rachel Maddow; Jeff Tweedy; Ms. Pat; Justin Faulkner + News host Rachel Maddow; musician Jeff Tweedy; comic Ms. Pat; Justin Faulkner sits in with the 8G Band.Guests: Rachel Maddow, Jeff Tweedy, Patricia Williams.. + Talk Shows + Comedy + + + TV14 + + + + NBC4 News at 11pm + The latest local news, weather and investigative stories impacting the community. + News + + + + NBC Nightly News With Lester Holt + The latest news, going beyond the headlines to see how lives are affected by the world around them. + News + + + + The Kelly Clarkson Show + Kellyoke:. + Talk Shows + Variety + + + TVPG + + + + Early Today + The latest world and national news, and reports on the day's upcoming events. + News + + + TVG + + + + Today in LA at 4am + The latest local news, weather and investigative stories impacting the community. + News + + + + Today in LA at 4:30am + The latest local news, weather and investigative stories impacting the community. + News + + + + Today in LA at 5am + The latest local news, weather and investigative stories impacting the community. + News + + + + Today in LA at 6am + The latest local news, weather and investigative stories impacting the community. + News + + + + Today + Interior designers Chip and Joanna Gaines; shopping expert Adrianna Brach; Jung Kook performs.Guests: Chip Gaines, Joanna Gaines, Adrianna Brach.. + Talk Shows + News + + + + Today 3rd Hour + The 11-year-old automotive phenom of Giuseppe's Garage; style expert J. Bolin; Today Food with Palak Patel; Jung Kook performs.Guests: J. Bolin, Palak Patel.. + Talk Shows + News + + + + Today With Hoda & Jenna + Actress Lauren London; TV personality Jasmine Roth; makeup artist Mario Dedivanovic.Guests: Lauren London, Jasmine Roth, Mario Dedivanovic.. + Talk Shows + News + + + TVPG + + + + NBC4 News at 11am + The latest local news, weather and investigative stories impacting the community. + News + + + + California Live + A daily lifestyle show that takes a ride through all of California, discovering many of the hidden treasures the state and its people have to offer including beauty, glamour, fitness, food, health, and tech. + Local + + + + NBC News Daily + NBC News provides viewers with the latest national and international news; consumer, health and personal finance reporting; up-to-the-minute local news. + News + + + TVY + + + + Access Daily With Mario & Kit + Actor Rob Riggle (podcastGuests: Rob Riggle, Mike Epps, Kyra Epps.. + News Magazine + Performing Arts + + + TVPG + + + + The Kelly Clarkson Show + Kellyoke:Guests: Taylor Lautner, Taylor Dome, Alex Aster, Asi Wind.. + Talk Shows + Variety + + + TVPG + + + + NBC4 News at 3pm + News + + + + NBC Nightly News With Lester Holt + The latest news, going beyond the headlines to see how lives are affected by the world around them. + News + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Bloomberg TV + Bloomberg TV Programming. + Specials + Variety + + + + Belleza blanca + + Eva Herzig + Thomas Unger + Christoph von Friedl + + Drama + + + + Hielo + El ecologista Thom Archer advierte sobre una nueva era de hielo y culpa al gigante de energía Halo por el deshielo del glaciar de Groenlandia. + + Richard Roxburgh + Frances O'Connor + Claire Forlani + + Miniseries + Drama + + + + Like Dandelion Dust + Un hombre y su esposa son presionados al límite cuando los padres biológicos de su hijo adoptivo intentan recuperar su custodia. + + Mira Sorvino + Barry Pepper + Cole Hauser + + 2009 + Movies + Drama + + + TVG + + + 2 + + + + Hielo + El ecologista Thom Archer advierte sobre una nueva era de hielo y culpa al gigante de energía Halo por el deshielo del glaciar de Groenlandia. + + Richard Roxburgh + Frances O'Connor + Claire Forlani + + Miniseries + Drama + + + + Hielo + El ecologista Thom Archer advierte sobre una nueva era de hielo y culpa al gigante de energía Halo por el deshielo del glaciar de Groenlandia. + + Richard Roxburgh + Frances O'Connor + Claire Forlani + + Miniseries + Drama + + + + Like Dandelion Dust + Un hombre y su esposa son presionados al límite cuando los padres biológicos de su hijo adoptivo intentan recuperar su custodia. + + Mira Sorvino + Barry Pepper + Cole Hauser + + 2009 + Movies + Drama + + + TVG + + + 2 + + + + Hielo + El ecologista Thom Archer advierte sobre una nueva era de hielo y culpa al gigante de energía Halo por el deshielo del glaciar de Groenlandia. + + Richard Roxburgh + Frances O'Connor + Claire Forlani + + Miniseries + Drama + + + + Like Dandelion Dust + Un hombre y su esposa son presionados al límite cuando los padres biológicos de su hijo adoptivo intentan recuperar su custodia. + + Mira Sorvino + Barry Pepper + Cole Hauser + + 2009 + Movies + Drama + + + TVG + + + 2 + + + + El club de los treinta + La vida de tres mujeres con personalidades diametralmente opuestas coinciden en una única situación: los retos, problemas y la presión social al cumplir los treinta años. + + Maggie Jiang + Tong Yao + Rachel Mao + + Drama + + + TV14 + + + + El club de los treinta + La vida de tres mujeres con personalidades diametralmente opuestas coinciden en una única situación: los retos, problemas y la presión social al cumplir los treinta años. + + Maggie Jiang + Tong Yao + Rachel Mao + + Drama + + + TV14 + + + + A Doggone Adventure + Un perro con poderes telepáticos recluta a un grupo de niños amantes de la diversión para que lo ayuden a resolver un misterio. El agente canino conduce a los niños por el mundo de los agentes secretos y los extraterrestres. + + Kurt Yaeger + John Henry Richardson + Walker Mintz + + 2018 + Movies + Children + + + + El club de los treinta + La vida de tres mujeres con personalidades diametralmente opuestas coinciden en una única situación: los retos, problemas y la presión social al cumplir los treinta años. + + Maggie Jiang + Tong Yao + Rachel Mao + + Drama + + + TV14 + + + + El club de los treinta + La vida de tres mujeres con personalidades diametralmente opuestas coinciden en una única situación: los retos, problemas y la presión social al cumplir los treinta años. + + Maggie Jiang + Tong Yao + Rachel Mao + + Drama + + + TV14 + + + + Planet Action + Animals + Travel + + + + Planet Action + Animals + Travel + + + + Planet Action + Animals + Travel + + + + Planet Action + Animals + Travel + + + + Callejero novato + Dae-Hyun tiene el corazón roto cuando Yeon-Joo rompe con él y se va con Seung-Joon. Mientras los dos salen a beber, Dae-Hyun regresa a la tienda para trabajar. + + Kim Yoo-jung + Ji Chang-wook + Han Sun-hwa + + Drama + + + + Callejero novato + Saet-Byul le confiesa a Dae-Hyun que sus sentimientos por él se remontan mucho más allá de los 3 años que recuerda. + + Kim Yoo-jung + Ji Chang-wook + Han Sun-hwa + + Drama + + + + Callejero novato + Dae-Hyun se sorprende por la confesión de Ji-Wook sobre sus sentimientos por Saet-Byul. Saet-Byul y sus amigos apoyan el debut de Eun-Byul. + + Kim Yoo-jung + Ji Chang-wook + Han Sun-hwa + + Drama + + + + Secrets of the Bermuda Triangle + Nuevas teorías ofrecen explicaciones en la justificación de desastres en la misteriosa área. + Specials + + + + Secrets of the Bermuda Triangle + Nuevas teorías ofrecen explicaciones en la justificación de desastres en la misteriosa área. + Specials + + + + Secrets of the Bermuda Triangle + Nuevas teorías ofrecen explicaciones en la justificación de desastres en la misteriosa área. + Specials + + + + Amor manchado + Una joven emprendedora es víctima de acoso por parte de un ejecutivo poderoso, quien tratará de comprar su silencio. + Soaps + Drama + + + + Amor manchado + Una joven emprendedora es víctima de acoso por parte de un ejecutivo poderoso, quien tratará de comprar su silencio. + Soaps + Drama + + + + Amor manchado + Una joven emprendedora es víctima de acoso por parte de un ejecutivo poderoso, quien tratará de comprar su silencio. + Soaps + Drama + + + + Atlantis + A New Dawn: Part One + Jason va en busca de su padre y termina en las costas de un lugar antiguo y misterioso. + + Mark Addy + Juliet Stevenson + Sarah Parish + + Drama + + + TVPG + + + + Atlantis + A New Dawn: Part Two + Pasiphae ataca al Atlantis, el cual es vulnerable sin la protección de Palladium; Jason, Hercules y Pythagoras tienen una batalla desesperada lejos de casa. + + Mark Addy + Juliet Stevenson + Sarah Parish + + Drama + + + TVPG + + + + Atlantis + Telemon + Ariane es coronada reina, pero Pasiphae continúa libre, y la ciudad sufre las consecuencias de la batalla. En esa situación, llega un enigmático desconocido con una oferta de salvación difícil de rechazar. + + Mark Addy + Juliet Stevenson + Sarah Parish + + Drama + + + TVPG + + + + Cazando novio + El gran sueño de una mujer es convertirse en editora en jefe, pero para que eso suceda, necesita encontrar un marido de inmediato. + + Yuliya Kovalchuk + Aleksey Chumakov + Ekaterina Malikova + + 2015 + Movies + Comedy + + + + La corona del Rey, príncipe heredero + + Patrik Dergel + Krystof Hádek + Eva Josefikova + + 2015 + Movies + Fantasy + + + + Cazando novio + El gran sueño de una mujer es convertirse en editora en jefe, pero para que eso suceda, necesita encontrar un marido de inmediato. + + Yuliya Kovalchuk + Aleksey Chumakov + Ekaterina Malikova + + 2015 + Movies + Comedy + + + + La corona del Rey, príncipe heredero + + Patrik Dergel + Krystof Hádek + Eva Josefikova + + 2015 + Movies + Fantasy + + + + La corona del Rey, príncipe heredero + + Patrik Dergel + Krystof Hádek + Eva Josefikova + + 2015 + Movies + Fantasy + + + + Cazando novio + El gran sueño de una mujer es convertirse en editora en jefe, pero para que eso suceda, necesita encontrar un marido de inmediato. + + Yuliya Kovalchuk + Aleksey Chumakov + Ekaterina Malikova + + 2015 + Movies + Comedy + + + + La corona del Rey, príncipe heredero + + Patrik Dergel + Krystof Hádek + Eva Josefikova + + 2015 + Movies + Fantasy + + + + Cazando novio + El gran sueño de una mujer es convertirse en editora en jefe, pero para que eso suceda, necesita encontrar un marido de inmediato. + + Yuliya Kovalchuk + Aleksey Chumakov + Ekaterina Malikova + + 2015 + Movies + Comedy + + + + Uno para el otro + Explorar el conflicto entre el amor y el respeto propio. + + Nikita Dutta + Namik Paul + + Performing Arts + + + TVPG + + + + Uno para el otro + Explorar el conflicto entre el amor y el respeto propio. + + Nikita Dutta + Namik Paul + + Performing Arts + + + TVPG + + + + Desafiólogos + Dos jóvenes desafiólogos, Atahualpa y Sabrina, realizan experimentos científicos asombrosos sirviéndose de elementos cotidianos. + Performing Arts + Children + + + TVG + + + + Desafiólogos + Dos jóvenes desafiólogos, Atahualpa y Sabrina, realizan experimentos científicos asombrosos sirviéndose de elementos cotidianos. + Performing Arts + Children + + + TVG + + + + Desafiólogos + Dos jóvenes desafiólogos, Atahualpa y Sabrina, realizan experimentos científicos asombrosos sirviéndose de elementos cotidianos. + Performing Arts + Children + + + TVG + + + + El amor es verdadero + Xiao Yan es una mujer fuerte, independiente y trabajadora, que nunca se ha retractado de un desafío en su vida. + Drama + + + + El amor es verdadero + Como mujer fuerte, independiente y trabajadora, Xiao Yan nunca se ha retractado de un desafío en su vida. + Drama + + + TV14 + + + + El amor es verdadero + Xiao Yan es una mujer fuerte, independiente y trabajadora, que nunca se ha retractado de un desafío en su vida. + Drama + + + + El amor es verdadero + Xiao Yan es una mujer fuerte, independiente y trabajadora, que nunca se ha retractado de un desafío en su vida. + Drama + + + + The Fighter of the Destiny + Regular + + + TV14 + + + + The Fighter of the Destiny + Regular + + + TV14 + + + + The Fighter of the Destiny + Regular + + + TV14 + + + + 800 Words + George se apunta al equipo de críquet de Weld. Las cosas entre Arlo y Emma se ponen serias. Culpan a Shay de que Ike se quede en Weld. + + Erik Thomson + Melina Vidler + Benson Jack Anthony + + Comedy + + + TVPG + + + + Pinocchio + Un joven intenta ocultar su pasado a una joven que ama después de que su vida privada es expuesta en las redes sociales. + + Lee Jong-suk + Park Shin-hye + Kim Young-kwang + + Drama + + + + Secret Garden + Episode 13 + Seul descubre que uno de sus empleados filtró accidentalmente la canción de Oska y debe prepararse para asumir toda la responsabilidad. + + Ha Ji-won + Hyun-bin + Yoon Sang-hyun + + Comedy + + + + Secret Garden + Episode 14 + Joo Won y Ra Im bailan en la actividad de VVIP. Oska se da cuenta de cómo rompió el corazón de Seul. + + Ha Ji-won + Hyun-bin + Yoon Sang-hyun + + Comedy + + + + La historia del palacio Yanxi + Durante el 6.° año de reinado del emperador Qian Long, Wei Ying Luo llega a la Ciudad Prohibida como criada del palacio para investigar la verdad detrás de la muerte de su hermana. + + Wu Jin Yan + Charmaine Sheh + Nie Yuan + + Drama + + + + Kamen Rider Agito + Un chico con amnesia intenta usar el poder del Agito para revelar su pasado misterioso y luchar contra lo desconocido. + + Toshiki Kashu + Jun Kaname + Yûsuke Tomoi + + Regular + + + TVPG + + + + Kamen Rider Agito + Un chico con amnesia intenta usar el poder del Agito para revelar su pasado misterioso y luchar contra lo desconocido. + + Toshiki Kashu + Jun Kaname + Yûsuke Tomoi + + Regular + + + TVPG + + + + Regreso a la isla + La tranquilidad de una pequeña comunidad en Cerdeña, un lugar anclado a antiguas tradiciones, se ve alterada por un terrible accidente. En el centro de la historia está Elena, la hija de Pietro, que regresa a la isla después de muchos años. + + Gianni Morandi + Chiara Baschetti + Cecilia Dazzi + + Drama + + + + VIC + Victoria se embarca en la búsqueda de su cuerpo perdido mientras descubre el misterio de la maldición. + + Irene Ang + Allen Chen + Shu Yi Ching + + Drama + + + TV14 + + + + VIC + Victoria se embarca en la búsqueda de su cuerpo perdido mientras descubre el misterio de la maldición. + + Irene Ang + Allen Chen + Shu Yi Ching + + Drama + + + TV14 + + + + Justicia y magia + Specials + Documentary + + + + Detective A & B + Un policia novato ha comenzado una misión encubierta sin el conocimiento del capitán. A causa de ese malentendido, el capitán comienza a perseguir al policia creyendo que es un criminal, iniciando una persecución del. + Drama + + + + Detective A & B + Un policia novato ha comenzado una misión encubierta sin el conocimiento del capitán. A causa de ese malentendido, el capitán comienza a perseguir al policia creyendo que es un criminal, iniciando una persecución del. + Drama + + + + Una gran balada + Una princesa que busca venganza para su familia encuentra su destino entrelazado con un apuesto príncipe tribal. + + Dilraba Dilmurat + Leo Wu + Lusi Zhao + + History + + + + Regreso a la isla + La tranquilidad de una pequeña comunidad en Cerdeña, un lugar anclado a antiguas tradiciones, se ve alterada por un terrible accidente. En el centro de la historia está Elena, la hija de Pietro, que regresa a la isla después de muchos años. + + Gianni Morandi + Chiara Baschetti + Cecilia Dazzi + + Drama + + + + VIC + Victoria se embarca en la búsqueda de su cuerpo perdido mientras descubre el misterio de la maldición. + + Irene Ang + Allen Chen + Shu Yi Ching + + Drama + + + TV14 + + + + VIC + Victoria se embarca en la búsqueda de su cuerpo perdido mientras descubre el misterio de la maldición. + + Irene Ang + Allen Chen + Shu Yi Ching + + Drama + + + TV14 + + + + Justicia y magia + Specials + Documentary + + + + Detective A & B + Un policia novato ha comenzado una misión encubierta sin el conocimiento del capitán. A causa de ese malentendido, el capitán comienza a perseguir al policia creyendo que es un criminal, iniciando una persecución del. + Drama + + + + Detective A & B + Un policia novato ha comenzado una misión encubierta sin el conocimiento del capitán. A causa de ese malentendido, el capitán comienza a perseguir al policia creyendo que es un criminal, iniciando una persecución del. + Drama + + + + Detective A & B + Un policia novato ha comenzado una misión encubierta sin el conocimiento del capitán. A causa de ese malentendido, el capitán comienza a perseguir al policia creyendo que es un criminal, iniciando una persecución del. + Drama + + + + Una gran balada + Una princesa que busca venganza para su familia encuentra su destino entrelazado con un apuesto príncipe tribal. + + Dilraba Dilmurat + Leo Wu + Lusi Zhao + + History + + + + Regreso a la isla + La tranquilidad de una pequeña comunidad en Cerdeña, un lugar anclado a antiguas tradiciones, se ve alterada por un terrible accidente. En el centro de la historia está Elena, la hija de Pietro, que regresa a la isla después de muchos años. + + Gianni Morandi + Chiara Baschetti + Cecilia Dazzi + + Drama + + + + VIC + Victoria se embarca en la búsqueda de su cuerpo perdido mientras descubre el misterio de la maldición. + + Irene Ang + Allen Chen + Shu Yi Ching + + Drama + + + TV14 + + + + VIC + Victoria se embarca en la búsqueda de su cuerpo perdido mientras descubre el misterio de la maldición. + + Irene Ang + Allen Chen + Shu Yi Ching + + Drama + + + TV14 + + + + Justicia y magia + Specials + Documentary + + + + Detective A & B + Un policia novato ha comenzado una misión encubierta sin el conocimiento del capitán. A causa de ese malentendido, el capitán comienza a perseguir al policia creyendo que es un criminal, iniciando una persecución del. + Drama + + + + Detective A & B + Un policia novato ha comenzado una misión encubierta sin el conocimiento del capitán. A causa de ese malentendido, el capitán comienza a perseguir al policia creyendo que es un criminal, iniciando una persecución del. + Drama + + + + Una gran balada + Una princesa que busca venganza para su familia encuentra su destino entrelazado con un apuesto príncipe tribal. + + Dilraba Dilmurat + Leo Wu + Lusi Zhao + + History + + + + Regreso a la isla + La tranquilidad de una pequeña comunidad en Cerdeña, un lugar anclado a antiguas tradiciones, se ve alterada por un terrible accidente. En el centro de la historia está Elena, la hija de Pietro, que regresa a la isla después de muchos años. + + Gianni Morandi + Chiara Baschetti + Cecilia Dazzi + + Drama + + + + Uno para el otro + Explorar el conflicto entre el amor y el respeto propio. + + Nikita Dutta + Namik Paul + + Performing Arts + + + TVPG + + + + Uno para el otro + Explorar el conflicto entre el amor y el respeto propio. + + Nikita Dutta + Namik Paul + + Performing Arts + + + TVPG + + + + Desafiólogos + Dos jóvenes desafiólogos, Atahualpa y Sabrina, realizan experimentos científicos asombrosos sirviéndose de elementos cotidianos. + Performing Arts + Children + + + TVG + + + + Desafiólogos + Dos jóvenes desafiólogos, Atahualpa y Sabrina, realizan experimentos científicos asombrosos sirviéndose de elementos cotidianos. + Performing Arts + Children + + + TVG + + + + Desafiólogos + Dos jóvenes desafiólogos, Atahualpa y Sabrina, realizan experimentos científicos asombrosos sirviéndose de elementos cotidianos. + Performing Arts + Children + + + TVG + + + + Justicia y magia + Specials + Documentary + + + + Indochina salvaje + Tailandia + Un país moldeado por fuerzas salvajes donde los animales se enfrentan a duros retos para sobrevivir, en una tierra donde los tigres son aún los reyes entre los depredadores y los monos han evolucionado rápidamente. + Animals + Documentary + + + TVPG + + + + VIC + Victoria se embarca en la búsqueda de su cuerpo perdido mientras descubre el misterio de la maldición. + + Irene Ang + Allen Chen + Shu Yi Ching + + Drama + + + TV14 + + + + VIC + Victoria se embarca en la búsqueda de su cuerpo perdido mientras descubre el misterio de la maldición. + + Irene Ang + Allen Chen + Shu Yi Ching + + Drama + + + TV14 + + + + Detective A & B + Un policia novato ha comenzado una misión encubierta sin el conocimiento del capitán. A causa de ese malentendido, el capitán comienza a perseguir al policia creyendo que es un criminal, iniciando una persecución del. + Drama + + + + Detective A & B + Un policia novato ha comenzado una misión encubierta sin el conocimiento del capitán. A causa de ese malentendido, el capitán comienza a perseguir al policia creyendo que es un criminal, iniciando una persecución del. + Drama + + + + The Untamed + Episode 13 + Lan WangJi se rehúsa a que lo lleven, y continúa caminando. Mientras tanto, Wei WuXian sigue preocupado y crea una muñeca de papel para hablar con Wen Qing en secreto, y le pide que descansen durante un rato. + + Zhan Xiao + Yibo Wang + + Drama + + + TV14 + + + + Astronaut Diaries: Year in Space + Reality show que documenta la expedición más larga en la Estación Espacial Internacional. Protagonizado por los mismos héroes: Mikhail Kornienko y Scott Kelly. + Documentary + Science + + + TV14 + + + + Los fabricantes de sueños + Wei Yun, directora de un canal de variedades, y Kang Li, apodada. + + Zoe Tay + Chen Li Ping + Jeanette Aw + + Drama + + + TV14 + + + + Los fabricantes de sueños + Wei Yun, directora de un canal de variedades, y Kang Li, apodada. + + Zoe Tay + Chen Li Ping + Jeanette Aw + + Drama + + + TV14 + + + + Regreso a la isla + La tranquilidad de una pequeña comunidad en Cerdeña, un lugar anclado a antiguas tradiciones, se ve alterada por un terrible accidente. En el centro de la historia está Elena, la hija de Pietro, que regresa a la isla después de muchos años. + + Gianni Morandi + Chiara Baschetti + Cecilia Dazzi + + Drama + + + + Story of Yanxi Palace + Episode 47 + Durante el 6.° año de reinado del emperador Qian Long, Wei Ying Luo llega a la Ciudad Prohibida como criada del palacio para investigar la verdad detrás de la muerte de su hermana. + + Wu Jin Yan + Charmaine Sheh + Nie Yuan + + Drama + + + + Kamen Rider Agito + Un chico con amnesia intenta usar el poder del Agito para revelar su pasado misterioso y luchar contra lo desconocido. + + Toshiki Kashu + Jun Kaname + Yûsuke Tomoi + + Regular + + + TVPG + + + + Kamen Rider Agito + Un chico con amnesia intenta usar el poder del Agito para revelar su pasado misterioso y luchar contra lo desconocido. + + Toshiki Kashu + Jun Kaname + Yûsuke Tomoi + + Regular + + + TVPG + + + + The Untamed + Episode 14 + Se revela la verdadera identidad de la bestia. Wei WuXian y Lan WangJi ingenian un plan para matar a la bestia con un método de GuSu. + + Zhan Xiao + Yibo Wang + + Drama + + + TV14 + + + + The Untamed + Wei Wuxian une fuerzas con su buen amigo Lan Wangji para resolver una serie de misteriosos asesinatos y proteger al mundo de las tramas malvadas de un autor intelectual. + + Zhan Xiao + Yibo Wang + + Drama + + + TV14 + + + + The Untamed + Wei Wuxian une fuerzas con su buen amigo Lan Wangji para resolver una serie de misteriosos asesinatos y proteger al mundo de las tramas malvadas de un autor intelectual. + + Zhan Xiao + Yibo Wang + + Drama + + + TV14 + + + + La leyenda de Huang Fei Hong + Las circunstancias hacen que Huang Fei Hong, un médico de una clínica médica en Cantón, tenga que usar sus habilidades en artes marciales para salvar a la gente. + + Zheng Kai + Jing Chao + Ray Lui + + Comedy + + + + Los fabricantes de sueños + Wei Yun, directora de un canal de variedades, y Kang Li, apodada. + + Zoe Tay + Chen Li Ping + Jeanette Aw + + Drama + + + TV14 + + + + Los fabricantes de sueños + Wei Yun, directora de un canal de variedades, y Kang Li, apodada. + + Zoe Tay + Chen Li Ping + Jeanette Aw + + Drama + + + TV14 + + + + Los guerreros + Doc se ve envuelto en un escándalo que lleva al equipo a perder su patrocinio. Bill le pide a Fast Freddy que se convierta en patrocinador, él acepta pero quiere recibir información sobre los próximos partidos. Doc se niega a participar. + + Vince Colosimo + Lisa McCune + John Howard + + Drama + Sports + + + + Los guerreros + Maki es objeto de insultos racistas durante una sesión de entrenamiento. Zane, que también ha sufrido racismo, decide defender a Maki. + + Vince Colosimo + Lisa McCune + John Howard + + Drama + Sports + + + + The Long Ballad + Una princesa que busca venganza para su familia encuentra su destino entrelazado con un apuesto príncipe tribal. + + Dilraba Dilmurat + Leo Wu + Lusi Zhao + + History + + + + Regreso a la isla + La tranquilidad de una pequeña comunidad en Cerdeña, un lugar anclado a antiguas tradiciones, se ve alterada por un terrible accidente. En el centro de la historia está Elena, la hija de Pietro, que regresa a la isla después de muchos años. + + Gianni Morandi + Chiara Baschetti + Cecilia Dazzi + + Drama + + + + Los fabricantes de sueños + Wei Yun, directora de un canal de variedades, y Kang Li, apodada. + + Zoe Tay + Chen Li Ping + Jeanette Aw + + Drama + + + TV14 + + + + Los fabricantes de sueños + Wei Yun, directora de un canal de variedades, y Kang Li, apodada. + + Zoe Tay + Chen Li Ping + Jeanette Aw + + Drama + + + TV14 + + + + Los guerreros + Doc se ve envuelto en un escándalo que lleva al equipo a perder su patrocinio. Bill le pide a Fast Freddy que se convierta en patrocinador, él acepta pero quiere recibir información sobre los próximos partidos. Doc se niega a participar. + + Vince Colosimo + Lisa McCune + John Howard + + Drama + Sports + + + + Los guerreros + Maki es objeto de insultos racistas durante una sesión de entrenamiento. Zane, que también ha sufrido racismo, decide defender a Maki. + + Vince Colosimo + Lisa McCune + John Howard + + Drama + Sports + + + + Los guerreros + Maki es objeto de insultos racistas durante una sesión de entrenamiento. Zane, que también ha sufrido racismo, decide defender a Maki. + + Vince Colosimo + Lisa McCune + John Howard + + Drama + Sports + + + + The Long Ballad + Una princesa que busca venganza para su familia encuentra su destino entrelazado con un apuesto príncipe tribal. + + Dilraba Dilmurat + Leo Wu + Lusi Zhao + + History + + + + Regreso a la isla + La tranquilidad de una pequeña comunidad en Cerdeña, un lugar anclado a antiguas tradiciones, se ve alterada por un terrible accidente. En el centro de la historia está Elena, la hija de Pietro, que regresa a la isla después de muchos años. + + Gianni Morandi + Chiara Baschetti + Cecilia Dazzi + + Drama + + + + Los fabricantes de sueños + Wei Yun, directora de un canal de variedades, y Kang Li, apodada. + + Zoe Tay + Chen Li Ping + Jeanette Aw + + Drama + + + TV14 + + + + Los fabricantes de sueños + Wei Yun, directora de un canal de variedades, y Kang Li, apodada. + + Zoe Tay + Chen Li Ping + Jeanette Aw + + Drama + + + TV14 + + + + Los guerreros + Doc se ve envuelto en un escándalo que lleva al equipo a perder su patrocinio. Bill le pide a Fast Freddy que se convierta en patrocinador, él acepta pero quiere recibir información sobre los próximos partidos. Doc se niega a participar. + + Vince Colosimo + Lisa McCune + John Howard + + Drama + Sports + + + + Los guerreros + Maki es objeto de insultos racistas durante una sesión de entrenamiento. Zane, que también ha sufrido racismo, decide defender a Maki. + + Vince Colosimo + Lisa McCune + John Howard + + Drama + Sports + + + + The Long Ballad + Una princesa que busca venganza para su familia encuentra su destino entrelazado con un apuesto príncipe tribal. + + Dilraba Dilmurat + Leo Wu + Lusi Zhao + + History + + + + Regreso a la isla + La tranquilidad de una pequeña comunidad en Cerdeña, un lugar anclado a antiguas tradiciones, se ve alterada por un terrible accidente. En el centro de la historia está Elena, la hija de Pietro, que regresa a la isla después de muchos años. + + Gianni Morandi + Chiara Baschetti + Cecilia Dazzi + + Drama + + + + Uno para el otro + Explorar el conflicto entre el amor y el respeto propio. + + Nikita Dutta + Namik Paul + + Performing Arts + + + TVPG + + + + Uno para el otro + Explorar el conflicto entre el amor y el respeto propio. + + Nikita Dutta + Namik Paul + + Performing Arts + + + TVPG + + + + Desafiólogos + Dos jóvenes desafiólogos, Atahualpa y Sabrina, realizan experimentos científicos asombrosos sirviéndose de elementos cotidianos. + Performing Arts + Children + + + TVG + + + + Desafiólogos + Dos jóvenes desafiólogos, Atahualpa y Sabrina, realizan experimentos científicos asombrosos sirviéndose de elementos cotidianos. + Performing Arts + Children + + + TVG + + + + Desafiólogos + Dos jóvenes desafiólogos, Atahualpa y Sabrina, realizan experimentos científicos asombrosos sirviéndose de elementos cotidianos. + Performing Arts + Children + + + TVG + + + + La leyenda de Huang Fei Hong + Las circunstancias hacen que Huang Fei Hong, un médico de una clínica médica en Cantón, tenga que usar sus habilidades en artes marciales para salvar a la gente. + + Zheng Kai + Jing Chao + Ray Lui + + Comedy + + + + Dobles de acción: Héroes + Un programa que muestra el fascinante mundo de los dobles en las películas de Hollywood. + Documentary + Performing Arts + + + + Dobles de acción: Héroes + Un programa que muestra el fascinante mundo de los dobles en las películas de Hollywood. + Documentary + Performing Arts + + + + La mamá del 10 + Tina Manotas y sus hijos se ven obligados a abandonar su pueblo natal y mudarse a la capital. La familia enfrenta en la ciudad todas las dificultades que conlleva la falta de dinero. + + Karent Hinestroza + Sergio Herrera + Antonio Jiménez + + Soaps + + + + La mamá del 10 + Tina Manotas y sus hijos se ven obligados a abandonar su pueblo natal y mudarse a la capital. La familia enfrenta en la ciudad todas las dificultades que conlleva la falta de dinero. + + Karent Hinestroza + Sergio Herrera + Antonio Jiménez + + Soaps + + + + Los guerreros + Doc se ve envuelto en un escándalo que lleva al equipo a perder su patrocinio. Bill le pide a Fast Freddy que se convierta en patrocinador, él acepta pero quiere recibir información sobre los próximos partidos. Doc se niega a participar. + + Vince Colosimo + Lisa McCune + John Howard + + Drama + Sports + + + + Los guerreros + Maki es objeto de insultos racistas durante una sesión de entrenamiento. Zane, que también ha sufrido racismo, decide defender a Maki. + + Vince Colosimo + Lisa McCune + John Howard + + Drama + Sports + + + + Una nueva oportunidad + + Anton Shagin + Timofey Tribuntsev + Aglaya Tarasova + + Regular + + + + Una nueva oportunidad + + Anton Shagin + Timofey Tribuntsev + Aglaya Tarasova + + Regular + + + + Los fabricantes de sueños + Wei Yun, directora de un canal de variedades, y Kang Li, apodada. + + Zoe Tay + Chen Li Ping + Jeanette Aw + + Drama + + + TV14 + + + + Los fabricantes de sueños + Wei Yun, directora de un canal de variedades, y Kang Li, apodada. + + Zoe Tay + Chen Li Ping + Jeanette Aw + + Drama + + + TV14 + + + + Será anunciado + Programación que se anunciará. + News + Performing Arts + + + TVPG + + + + Será anunciado + Programación que se anunciará. + News + Performing Arts + + + TVPG + + + + Story of Yanxi Palace + Episode 48 + Durante el 6.° año de reinado del emperador Qian Long, Wei Ying Luo llega a la Ciudad Prohibida como criada del palacio para investigar la verdad detrás de la muerte de su hermana. + + Wu Jin Yan + Charmaine Sheh + Nie Yuan + + Drama + + + + Regreso a la isla + La tranquilidad de una pequeña comunidad en Cerdeña, un lugar anclado a antiguas tradiciones, se ve alterada por un terrible accidente. En el centro de la historia está Elena, la hija de Pietro, que regresa a la isla después de muchos años. + + Gianni Morandi + Chiara Baschetti + Cecilia Dazzi + + Drama + + + + Kamen Rider Agito + Un chico con amnesia intenta usar el poder del Agito para revelar su pasado misterioso y luchar contra lo desconocido. + + Toshiki Kashu + Jun Kaname + Yûsuke Tomoi + + Regular + + + TVPG + + + + Kamen Rider Agito + Un chico con amnesia intenta usar el poder del Agito para revelar su pasado misterioso y luchar contra lo desconocido. + + Toshiki Kashu + Jun Kaname + Yûsuke Tomoi + + Regular + + + TVPG + + + + Una nueva oportunidad + + Anton Shagin + Timofey Tribuntsev + Aglaya Tarasova + + Regular + + + + King Kong + Un grupo de exploradores, liderado por un extrovertido director de cine, visitan Skull Island para investigar todo lo relacionado con la leyenda del gorila gigante llamado King Kong. Ahí encuentran una jungla llena de criaturas prehistóricas. + + Naomi Watts + Jack Black + Adrien Brody + + 2005 + Movies + Adventure + + + TVPG + + + 3 + + + + I Am Legend + Después de que una plaga provocada por el hombre transforma a la población de la Tierra en vampiros sedientos de sangre, el único sobreviviente busca desesperadamente una cura. + + Will Smith + Alice Braga + Dash Mihok + + 2007 + Movies + Sci-Fi + + + TVPG + + + 3 + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + The Assassin Next Door + Eleanor y Galia son dos vecinas que intentan sobrevivir a su entorno. Eleanor es presa de una relación abusiva y Galia es una asesina enfrentada con la mafia rusa. Ambas se enfrentarán a sus enemigos. + + Olga Kurylenko + Zohar Shtrauss + Liron Levo + + 2009 + Movies + Action + + + + Nosotros los guapos + Cantante grupero + Albertano es estafado por una mujer que promete volverlo un famoso cantante, pero durante su presentación todos descubren la farsa de su voz. + + Malillany Marín + Adrián Uribe + Ariel Miramontes + + Soaps + Comedy + + + TV14 + + + + Nosotros los guapos + Mujeres peligrosas + Albertano y Vítor conocen a dos mujeres que les hacen creer que están interesadas en ellos, pero solo quieren su dinero. + + Malillany Marín + Adrián Uribe + Ariel Miramontes + + Soaps + Comedy + + + TV14 + + + + I Am Legend + Después de que una plaga provocada por el hombre transforma a la población de la Tierra en vampiros sedientos de sangre, el único sobreviviente busca desesperadamente una cura. + + Will Smith + Alice Braga + Dash Mihok + + 2007 + Movies + Sci-Fi + + + TVPG + + + 3 + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Veredicto final + Los casos más controversiales y las disputas de las familias latinas que se resolverán con base a las leyes. + Talk Shows + Reality TV + + + TVPG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + La CQ + Ángel Chicharito + Ángel hace cualquier cosa con tal de ver a Chicharito, inclusive terminar con Clara. + + Emiliano Flores + Ale Müller + Benny Emmanuel + + Sitcom + + + TV14 + + + + La CQ + Jenny, buena onda + Jenny se comporta amablemente y apoya a los alumnos de la CQ para llamar la atención de Ángel. + + Emiliano Flores + Ale Müller + Benny Emmanuel + + Sitcom + + + TV14 + + + + La pandilla curiosa + Willow, Whyla y Wes buscan datos sobre las bolsas de canguro. En el camino, sus amigos quokka Quinton, Quidget y Quest aprenden que tienen algo en común con los canguros: todos son marsupiales. + + Chenelle Carr + Mischa Heywood + Tristan Ayres + + Animals + Instructional + + + + El mundo es tuyo + De punto a punto + En Tailandia, un paseo por una hermosa playa escondida, la playa de Railay, que es una pequeña península situada en el sur del país. + Travel + Children + + + TVG + + + + El mundo es tuyo + Volando por el mundo + La aventura inicia en el continente Asiático, en la ciudad de Kuala Lumpur desde las alturas. Luego, una visita a Melbourne en Australia y se finaliza el recorrido en California. + Travel + Children + + + TVG + + + + Ranger Rob + Una celebración al estilo Ranger + Dakota pasa una prueba de maestría en la jungla y Rob decide ayudar a celebrar. + + Zachary Bennett + Justice James + + Animated + Children + + + TVY + + + + Ranger Rob + El show de acrobacias de Chipper en Big Sky Park + De camino a un espectáculo de acrobacias, Rob se distrae para mostrarle a Sam todas las cosas interesantes que Chipper puede hacer. + Animated + Children + + + TVY + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Purasangre + Chema, Tino y Jaime son tres hermanos que buscan salir de sus problemas robando el hipódromo en la Ciudad de México con la ayuda de sus socios, pero sin darse cuenta de que pronto van a tener que pelear por sus vidas y huir de su pasado. + + Hernán Mendoza + Mauricio Argüelles + Luis Roberto Guzmán + + 2017 + Movies + Action + + + + Bad Ass + Un condecorado veterano de la Guerra de Vietnam toma la justicia en sus propias manos cuando su mejor amigo es asesinado y la policía se muestra muy lenta para resolver el caso. + + Danny Trejo + Charles S. Dutton + Ron Perlman + + 2012 + Movies + Action + + + TVPG + + + 2 + + + + The Accidental Spy + Un vendedor de Hong Kong trata de resolver el acertijo dejado por un espía, pero termina encontrando un microbio mortal. + + Jackie Chan + Eric Tsang + Vivian Hsu + + 2001 + Movies + Action + + + 2 + + + + Shoot 'Em Up + El señor Smith, un hombre duro y amargado, acepta proteger a un bebé al que ha ayudado a nacer en medio de un tiroteo. Él no sabe que el niño es el objetivo de una extraña banda de criminales que tiene la misión de asesinarlo. + + Clive Owen + Paul Giamatti + Monica Bellucci + + 2007 + Movies + Action + + + TV14 + + + 2 + + + + The Hitman's Bodyguard + Al mejor guardaespaldas del mundo le encomiendan proteger a un sicario. La pareja dispone de solo 24 horas para llegar a La Haya, en Holanda, y acabar con un sanguinario dictador de Europa del Este, al que escolta su peligrosa guardia personal. + + Ryan Reynolds + Samuel L. Jackson + Gary Oldman + + 2017 + Movies + Action + + + TVPG + + + 2 + + + + The Hitman's Bodyguard + Al mejor guardaespaldas del mundo le encomiendan proteger a un sicario. La pareja dispone de solo 24 horas para llegar a La Haya, en Holanda, y acabar con un sanguinario dictador de Europa del Este, al que escolta su peligrosa guardia personal. + + Ryan Reynolds + Samuel L. Jackson + Gary Oldman + + 2017 + Movies + Action + + + TVPG + + + 2 + + + + The Accidental Spy + Un vendedor de Hong Kong trata de resolver el acertijo dejado por un espía, pero termina encontrando un microbio mortal. + + Jackie Chan + Eric Tsang + Vivian Hsu + + 2001 + Movies + Action + + + 2 + + + + Una familia de diez + El huequito + Plácido se lastima el pie y debe guardar reposo de un mes, por eso enviará a Aldolfo a que recupere su trabajo. Martina hace un hoyo en la pared y la Nena descubre, a través de este, un departamento abandonado. + + Jorge Ortiz de Pinedo + Eduardo Manzano + Zully Keith + + Comedy + + + TVPG + + + + Una familia de diez + La llegada + Jacinta, mamá de Tecla, ha llegado con la intención de quedarse. Don Arnoldo no quiere que se quede, y Plácido le permitirá ser parte de la familia. Cómo le harán para que el administrador no encuentre el hoyo en la pared. + + Jorge Ortiz de Pinedo + Eduardo Manzano + Zully Keith + + Comedy + + + TVPG + + + + Bad Ass + Un condecorado veterano de la Guerra de Vietnam toma la justicia en sus propias manos cuando su mejor amigo es asesinado y la policía se muestra muy lenta para resolver el caso. + + Danny Trejo + Charles S. Dutton + Ron Perlman + + 2012 + Movies + Action + + + TVPG + + + 2 + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Veredicto final + Los casos más controversiales y las disputas de las familias latinas que se resolverán con base a las leyes. + Talk Shows + Reality TV + + + TVPG + + + + Esta historia me suena + Devuélveme a mi chica + Una madre pierde a su hija, quien ha sido manipulada por su novio que es un delincuente y huye con él. Después de un tiempo se convierte en un peligroso sicario que la induce a una vida de excesos. + Music + + + + Veredicto final + Los casos más controversiales y las disputas de las familias latinas que se resolverán con base a las leyes. + Talk Shows + Reality TV + + + TVPG + + + + Goin' Loco + Programa de cámaras escondidas que muestra a un grupo de amigos en una de las playas más famosas de México. Los chicos solo tienen una cosa en mente: jugarles bromas a todos aquellos que se crucen en su camino. + Comedy + + + TV14 + + + + Soñadoras + Cuatro jóvenes adolescentes luchan por hacer realidad sus sueños en un mundo rodeado por la drogadicción y el narcotráfico. + + Alejandra Ávalos + Arturo Peniche + José Carlos Ruiz + + Soaps + + + TVPG + + + + El privilegio de amar + Luciana Duval se enamora en su juventud de Juan de la Cruz el hijo de su patrona, próximo a ser sacerdote, pero antes que él ingrese al seminario ellos pasan la noche juntos y ella termina embarazada. + + Adela Noriega + René Strickler + Andrés García + + Soaps + + + TVPG + + + + Apuesta por un amor + Gabriel Durán no es bien recibido en el pueblo donde su amor con Julia será puesto a prueba y tendrá que superar muchos obstáculos. + Drama + Soaps + + + TVPG + + + + Como dice el dicho + Palabras melosas, siempre engañosas + Después de perder a su padre, una joven se reencuentra con su madre, quien se dedica a la profesión más antigua del mundo. Ella deberá entender y ayudar a su madre. + + Michael Ronda + Wendy González + Sergio Corona + + Comedy + + + TV14 + + + + Amorcito corazón + El destino sentimental de una joven queda marcado, por un acontecimiento en su fiesta de 18 años al ir en contra de las normas de sus padres, decidiendo tener relaciones con su novio quien más tarde tiene una desgracia. + + Elizabeth Álvarez + Diego Olivera + Daniel Arenas + + Soaps + Comedy + + + TV14 + + + + Por ella soy Eva + Un amor en el olvido + Rebeca le propone a Fernando un negocio para defraudar a Grupo Imperio, él acepta; Claudia logra que Eugenia acepte que se quede a vivir en su casa, prometiéndole que no notará su presencia. + + Lucero + Jaime Camil + Tiaré Scanda + + Soaps + Drama + + + + Abismo de pasión + El destino castiga + El hijo de Carmina muere en su cuna y ella culpa a Elisa de su muerte. Carmina decide vengarse de Gabino, quien reveló toda la verdad. + + Angelique Boyer + David Zepeda + Alejandro Camacho + + Soaps + Drama + + + + Amor prohibido + Una familia vive en uno de los mejores vecindarios de Estambul con el hijo de un pariente, Behlül y la niñera de sus hijos. Behlül conoce a Bihter años más tarde y se enamora profundamente de ella. + + Beren Saat + Kivanc Tatlitug + Selçuk Yöntem + + Soaps + + + + Enamorándonos recargado + Solteros de todas las edades buscan a su media naranja. En esta edición, los amorosos regresan con un solo objetivo: conseguir pareja. + Reality TV + + + + Reto 4 elementos: La liga extrema + Un grupo de atletas de alto rendimiento se enfrenta a una serie de obstáculos para ganar una importante suma de dinero. + Game Shows + + + + Como dice el dicho + Obras son amores y no buenas razones + De vacaciones, una chica conoce a Cristóbal, un camarero del mejor hotel de la zona. Él le enseñará la mejor parte de la región y el verdadero significado del amor. + + Michael Ronda + Wendy González + Sergio Corona + + Comedy + + + TV14 + + + + Reto 4 elementos: La liga extrema + Un grupo de atletas de alto rendimiento se enfrenta a una serie de obstáculos para ganar una importante suma de dinero. + Game Shows + + + + Amor prohibido + Una familia vive en uno de los mejores vecindarios de Estambul con el hijo de un pariente, Behlül y la niñera de sus hijos. Behlül conoce a Bihter años más tarde y se enamora profundamente de ella. + + Beren Saat + Kivanc Tatlitug + Selçuk Yöntem + + Soaps + + + + Esta historia me suena + Devuélveme a mi chica + Una madre pierde a su hija, quien ha sido manipulada por su novio que es un delincuente y huye con él. Después de un tiempo se convierte en un peligroso sicario que la induce a una vida de excesos. + Music + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Veredicto final + Los casos más controversiales y las disputas de las familias latinas que se resolverán con base a las leyes. + Talk Shows + Reality TV + + + TVPG + + + + Esta historia me suena + ¿Cómo pudiste hacerme esto a mí? + La vida de una exitosa abogada comienza a venirse abajo después de que sus relaciones de trabajo y personales se van terminando poco a poco, mientras intenta salvar a su madre de un terrible delito del cual resulta presunta culpable. + Music + + + + Veredicto final + Los casos más controversiales y las disputas de las familias latinas que se resolverán con base a las leyes. + Talk Shows + Reality TV + + + TVPG + + + + Goin' Loco + Programa de cámaras escondidas que muestra a un grupo de amigos en una de las playas más famosas de México. Los chicos solo tienen una cosa en mente: jugarles bromas a todos aquellos que se crucen en su camino. + Comedy + + + TV14 + + + + Soñadoras + La sospecha + Viviana nota muy extraña a Jacqueline por su comportamiento y le dice a Eugenio que sospecha que su hija está consumiendo drogas, tomándolo por sorpresa. + + Alejandra Ávalos + Arturo Peniche + José Carlos Ruiz + + Soaps + + + TVPG + + + + Fútbol central + El programa elemental para los fans, el cual les indica qué buscar y esperar en la cancha en los próximos partidos y campeonatos. + Sports + Soccer + + + + Barcelona vs. Shakhtar Donetsk + FC Shakhtar Donetsk vs. FC Barcelona + Fecha 4 en el Grupo H. Shakhtar recibe a Barcelona. Desde el Volksparkstadion. Los ucranianos son locales en lo administrativo y buscan una victoria que los coloque en zona de clasificación a la siguiente ronda. + Sports + Soccer + + + + Barcelona vs. Shakhtar Donetsk + FC Shakhtar Donetsk vs. FC Barcelona + Fecha 4 en el Grupo H. Shakhtar recibe a Barcelona. Desde el Volksparkstadion. Los ucranianos son locales en lo administrativo y buscan una victoria que los coloque en zona de clasificación a la siguiente ronda. + Sports + Soccer + + + + Vecinos + ¡Qué escándalo! + Morris aprende a tocar la batería y los vecinos se quejan por el ruido, pero Silvia y Luis descubren que ese ruido arrulla al bebé. Pedro está preocupado porque no recuerda la fecha del cumpleaños de Cris. + + César Bono + Eduardo España + Macaria + + Sitcom + + + TVPG + + + + Vecinos + Arturo influencer + Arturo se vuelve un famoso influencer de TikTok y Paco de Miguel lo busca para una colaboración. Cris recibe la visita de su hermana Esmeralda y Pedro se siente desplazado. + + César Bono + Eduardo España + Macaria + + Sitcom + + + TVPG + + + + Esta historia me suena + Por amarte así + Una pareja de jóvenes se encuentra años después, en los cuales sus vidas han cambiado por completo. Ahora ambos tienen familias propias y deben decidir si quieren volver a estar juntos. + Music + + + + Como dice el dicho + Echando a perder se aprende + Úrsula, una chica que no sabe lo que quiere, entrará en el mundo del modelaje con mentiras y engaños. + + Michael Ronda + Wendy González + Sergio Corona + + Comedy + + + TV14 + + + + Amorcito corazón + El destino sentimental de una joven queda marcado, por un acontecimiento en su fiesta de 18 años al ir en contra de las normas de sus padres, decidiendo tener relaciones con su novio quien más tarde tiene una desgracia. + + Elizabeth Álvarez + Diego Olivera + Daniel Arenas + + Soaps + Comedy + + + TV14 + + + + Por ella soy Eva + Explicaciones + Juan Carlos le pide a Eugenia que lo deje explicarle todo y aclararle la situación, ella lo medita y acepta. + + Lucero + Jaime Camil + Tiaré Scanda + + Soaps + Drama + + + + Abismo de pasión + Crecieron los niños + Elisa es una mujer bella y cautivadora que nunca ha olvidado a Damián desde que se lo llevaron del pueblo. Augusto sigue obsesionado con el recuerdo de Estefanía y Carmina se siente despreciada. Gael está enamorado de Elisa. + + Angelique Boyer + David Zepeda + Alejandro Camacho + + Soaps + Drama + + + + Amor prohibido + Una familia vive en uno de los mejores vecindarios de Estambul con el hijo de un pariente, Behlül y la niñera de sus hijos. Behlül conoce a Bihter años más tarde y se enamora profundamente de ella. + + Beren Saat + Kivanc Tatlitug + Selçuk Yöntem + + Soaps + + + + Enamorándonos recargado + Solteros de todas las edades buscan a su media naranja. En esta edición, los amorosos regresan con un solo objetivo: conseguir pareja. + Reality TV + + + + Reto 4 elementos: La liga extrema + Un grupo de atletas de alto rendimiento se enfrenta a una serie de obstáculos para ganar una importante suma de dinero. + Game Shows + + + + Como dice el dicho + Pelillos a la mar y lo pasado olvidar + Una joven sufre porque su papá no tiene tiempo para estar con ella y cancela sus vacaciones juntos. Entonces decide escaparse con su amiga a la playa, pero los celos harán que las cosas se compliquen entre ellas. + + Michael Ronda + Wendy González + Sergio Corona + + Comedy + + + TV14 + + + + Reto 4 elementos: La liga extrema + Un grupo de atletas de alto rendimiento se enfrenta a una serie de obstáculos para ganar una importante suma de dinero. + Game Shows + + + + Amor prohibido + Una familia vive en uno de los mejores vecindarios de Estambul con el hijo de un pariente, Behlül y la niñera de sus hijos. Behlül conoce a Bihter años más tarde y se enamora profundamente de ella. + + Beren Saat + Kivanc Tatlitug + Selçuk Yöntem + + Soaps + + + + Esta historia me suena + ¿Cómo pudiste hacerme esto a mí? + La vida de una exitosa abogada comienza a venirse abajo después de que sus relaciones de trabajo y personales se van terminando poco a poco, mientras intenta salvar a su madre de un terrible delito del cual resulta presunta culpable. + Music + + + + ¿Accidente automovilistico? Consulta legal gratuita + Profesionales legales listos para responder preguntas. + Paid Program + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Veredicto final + Los casos más controversiales y las disputas de las familias latinas que se resolverán con base a las leyes. + Talk Shows + Reality TV + + + TVPG + + + + Esta historia me suena + A puro dolor + Una joven privada de su libertad desde muy pequeña, es manipulada por su captor para llevar a cabo relaciones de negocios. Después de mucho tiempo busca su libertad con ayuda de un joven periodista. + Music + + + + Veredicto final + Los casos más controversiales y las disputas de las familias latinas que se resolverán con base a las leyes. + Talk Shows + Reality TV + + + TVPG + + + + Goin' Loco + Programa de cámaras escondidas que muestra a un grupo de amigos en una de las playas más famosas de México. Los chicos solo tienen una cosa en mente: jugarles bromas a todos aquellos que se crucen en su camino. + Comedy + + + TV14 + + + + Soñadoras + Venganza por amor + Eugenio planea una venganza en contra de José Luis por robarle el amor de Fernanda. Jacqueline es sorprendida haciendo un examen con acordeón. + + Alejandra Ávalos + Arturo Peniche + José Carlos Ruiz + + Soaps + + + TVPG + + + + Fútbol central + El programa elemental para los fans, el cual les indica qué buscar y esperar en la cancha en los próximos partidos y campeonatos. + Sports + Soccer + + + + Benfica vs. Real Sociedad + Real Sociedad vs. Benfica + Jornada 4 del Grupo D en la Champions League. Real Sociedad se enfrenta a Benfica. Desde el Reale Arena. + Sports + Soccer + + + + Benfica vs. Real Sociedad + Real Sociedad vs. Benfica + Jornada 4 del Grupo D en la Champions League. Real Sociedad se enfrenta a Benfica. Desde el Reale Arena. + Sports + Soccer + + + + Vecinos + El novio de Virginia + Silvia acude a un diplomado que dura dos días y quiere contratar a una niñera, pero Luis no está de acuerdo. Virginia le quiere declarar su amor a un chico y Germán piensa que es él. + + César Bono + Eduardo España + Macaria + + Sitcom + + + TVPG + + + + Vecinos + Bebé a bordo + En el segundo día del diplomado de Silvia, Luisito Jr. queda al cuidado de Pedrito, pero este permite que todos los vecinos lo cuiden y en un descuido pierden al bebé. + + César Bono + Eduardo España + Macaria + + Sitcom + + + TVPG + + + + Esta historia me suena + Un buen perdedor + Una joven esperará con paciencia a que su novio regrese de Estados Unidos para que puedan estar juntos. Sin embargo, ella conoce a un buen hombre del que se va enamorando poco a poco. Ella tendrá que decidir si esperar o comenzar una nueva vida. + Music + + + + Como dice el dicho + Hasta que es padecido, el mal es conocido + Susana y Nacho son dos jóvenes tranquilos que experimentarán el oscuro mundo de las drogas, lo que no los llevará a nada bueno. + + Michael Ronda + Wendy González + Sergio Corona + + Comedy + + + TV14 + + + + Amorcito corazón + El destino sentimental de una joven queda marcado, por un acontecimiento en su fiesta de 18 años al ir en contra de las normas de sus padres, decidiendo tener relaciones con su novio quien más tarde tiene una desgracia. + + Elizabeth Álvarez + Diego Olivera + Daniel Arenas + + Soaps + Comedy + + + TV14 + + + + King Kong + Un grupo de exploradores, liderado por un extrovertido director de cine, visitan Skull Island para investigar todo lo relacionado con la leyenda del gorila gigante llamado King Kong. Ahí encuentran una jungla llena de criaturas prehistóricas. + + Naomi Watts + Jack Black + Adrien Brody + + 2005 + Movies + Adventure + + + TVPG + + + 3 + + + + I Am Legend + Después de que una plaga provocada por el hombre transforma a la población de la Tierra en vampiros sedientos de sangre, el único sobreviviente busca desesperadamente una cura. + + Will Smith + Alice Braga + Dash Mihok + + 2007 + Movies + Sci-Fi + + + TVPG + + + 3 + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + The Assassin Next Door + Eleanor y Galia son dos vecinas que intentan sobrevivir a su entorno. Eleanor es presa de una relación abusiva y Galia es una asesina enfrentada con la mafia rusa. Ambas se enfrentarán a sus enemigos. + + Olga Kurylenko + Zohar Shtrauss + Liron Levo + + 2009 + Movies + Action + + + + Nosotros los guapos + Cantante grupero + Albertano es estafado por una mujer que promete volverlo un famoso cantante, pero durante su presentación todos descubren la farsa de su voz. + + Malillany Marín + Adrián Uribe + Ariel Miramontes + + Soaps + Comedy + + + TV14 + + + + Nosotros los guapos + Mujeres peligrosas + Albertano y Vítor conocen a dos mujeres que les hacen creer que están interesadas en ellos, pero solo quieren su dinero. + + Malillany Marín + Adrián Uribe + Ariel Miramontes + + Soaps + Comedy + + + TV14 + + + + I Am Legend + Después de que una plaga provocada por el hombre transforma a la población de la Tierra en vampiros sedientos de sangre, el único sobreviviente busca desesperadamente una cura. + + Will Smith + Alice Braga + Dash Mihok + + 2007 + Movies + Sci-Fi + + + TVPG + + + 3 + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Veredicto final + Los casos más controversiales y las disputas de las familias latinas que se resolverán con base a las leyes. + Talk Shows + Reality TV + + + TVPG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Descubra una solución natural para el dolor + Connie Craig-Carrol y el fundador Ken Meares investigan OmegaXL, una solución totalmente natural para el dolor articular causado por la inflamación. + Paid Program + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Javier Romero y Roxana Garcia Introducen + Javier Romero y Roxana Garcia introducen historias de personas que han encontrado una solución totalmente natural para aliviar el dolor articular causado por inflamación. + Paid Program + + + + La pandilla curiosa + Willow, Whyla y Wes buscan datos sobre las bolsas de canguro. En el camino, sus amigos quokka Quinton, Quidget y Quest aprenden que tienen algo en común con los canguros: todos son marsupiales. + + Chenelle Carr + Mischa Heywood + Tristan Ayres + + Animals + Instructional + + + + El mundo es tuyo + De punto a punto + En Tailandia, un paseo por una hermosa playa escondida, la playa de Railay, que es una pequeña península situada en el sur del país. + Travel + Children + + + TVG + + + + El mundo es tuyo + Volando por el mundo + La aventura inicia en el continente Asiático, en la ciudad de Kuala Lumpur desde las alturas. Luego, una visita a Melbourne en Australia y se finaliza el recorrido en California. + Travel + Children + + + TVG + + + + Ranger Rob + Una celebración al estilo Ranger + Dakota pasa una prueba de maestría en la jungla y Rob decide ayudar a celebrar. + + Zachary Bennett + Justice James + + Animated + Children + + + TVY + + + + Ranger Rob + El show de acrobacias de Chipper en Big Sky Park + De camino a un espectáculo de acrobacias, Rob se distrae para mostrarle a Sam todas las cosas interesantes que Chipper puede hacer. + Animated + Children + + + TVY + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Purasangre + Chema, Tino y Jaime son tres hermanos que buscan salir de sus problemas robando el hipódromo en la Ciudad de México con la ayuda de sus socios, pero sin darse cuenta de que pronto van a tener que pelear por sus vidas y huir de su pasado. + + Hernán Mendoza + Mauricio Argüelles + Luis Roberto Guzmán + + 2017 + Movies + Action + + + + Bad Ass + Un condecorado veterano de la Guerra de Vietnam toma la justicia en sus propias manos cuando su mejor amigo es asesinado y la policía se muestra muy lenta para resolver el caso. + + Danny Trejo + Charles S. Dutton + Ron Perlman + + 2012 + Movies + Action + + + TVPG + + + 2 + + + + The Accidental Spy + Un vendedor de Hong Kong trata de resolver el acertijo dejado por un espía, pero termina encontrando un microbio mortal. + + Jackie Chan + Eric Tsang + Vivian Hsu + + 2001 + Movies + Action + + + 2 + + + + Shoot 'Em Up + El señor Smith, un hombre duro y amargado, acepta proteger a un bebé al que ha ayudado a nacer en medio de un tiroteo. Él no sabe que el niño es el objetivo de una extraña banda de criminales que tiene la misión de asesinarlo. + + Clive Owen + Paul Giamatti + Monica Bellucci + + 2007 + Movies + Action + + + TV14 + + + 2 + + + + The Hitman's Bodyguard + Al mejor guardaespaldas del mundo le encomiendan proteger a un sicario. La pareja dispone de solo 24 horas para llegar a La Haya, en Holanda, y acabar con un sanguinario dictador de Europa del Este, al que escolta su peligrosa guardia personal. + + Ryan Reynolds + Samuel L. Jackson + Gary Oldman + + 2017 + Movies + Action + + + TVPG + + + 2 + + + + The Hitman's Bodyguard + Al mejor guardaespaldas del mundo le encomiendan proteger a un sicario. La pareja dispone de solo 24 horas para llegar a La Haya, en Holanda, y acabar con un sanguinario dictador de Europa del Este, al que escolta su peligrosa guardia personal. + + Ryan Reynolds + Samuel L. Jackson + Gary Oldman + + 2017 + Movies + Action + + + TVPG + + + 2 + + + + The Accidental Spy + Un vendedor de Hong Kong trata de resolver el acertijo dejado por un espía, pero termina encontrando un microbio mortal. + + Jackie Chan + Eric Tsang + Vivian Hsu + + 2001 + Movies + Action + + + 2 + + + + Una familia de diez + El huequito + Plácido se lastima el pie y debe guardar reposo de un mes, por eso enviará a Aldolfo a que recupere su trabajo. Martina hace un hoyo en la pared y la Nena descubre, a través de este, un departamento abandonado. + + Jorge Ortiz de Pinedo + Eduardo Manzano + Zully Keith + + Comedy + + + TVPG + + + + Una familia de diez + La llegada + Jacinta, mamá de Tecla, ha llegado con la intención de quedarse. Don Arnoldo no quiere que se quede, y Plácido le permitirá ser parte de la familia. Cómo le harán para que el administrador no encuentre el hoyo en la pared. + + Jorge Ortiz de Pinedo + Eduardo Manzano + Zully Keith + + Comedy + + + TVPG + + + + Bad Ass + Un condecorado veterano de la Guerra de Vietnam toma la justicia en sus propias manos cuando su mejor amigo es asesinado y la policía se muestra muy lenta para resolver el caso. + + Danny Trejo + Charles S. Dutton + Ron Perlman + + 2012 + Movies + Action + + + TVPG + + + 2 + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Esta historia me suena + Devuélveme a mi chica + Una madre pierde a su hija, quien ha sido manipulada por su novio que es un delincuente y huye con él. Después de un tiempo se convierte en un peligroso sicario que la induce a una vida de excesos. + Music + + + + ¿Accidente automovilístico? Consulta legal gratuita + Profesionales legales listos para responder sus preguntas. + Paid Program + + + + AAA Benefits and Savings + Learn how you could save everyday with AAA, from 24-hour Roadside Assistance and Travel to Insurance and Member Discounts. + Paid Program + + + + Goin' Loco + Programa de cámaras escondidas que muestra a un grupo de amigos en una de las playas más famosas de México. Los chicos solo tienen una cosa en mente: jugarles bromas a todos aquellos que se crucen en su camino. + Comedy + + + TV14 + + + + Soñadoras + Cuatro jóvenes adolescentes luchan por hacer realidad sus sueños en un mundo rodeado por la drogadicción y el narcotráfico. + + Alejandra Ávalos + Arturo Peniche + José Carlos Ruiz + + Soaps + + + TVPG + + + + El privilegio de amar + Luciana Duval se enamora en su juventud de Juan de la Cruz el hijo de su patrona, próximo a ser sacerdote, pero antes que él ingrese al seminario ellos pasan la noche juntos y ella termina embarazada. + + Adela Noriega + René Strickler + Andrés García + + Soaps + + + TVPG + + + + Apuesta por un amor + Gabriel Durán no es bien recibido en el pueblo donde su amor con Julia será puesto a prueba y tendrá que superar muchos obstáculos. + Drama + Soaps + + + TVPG + + + + Como dice el dicho + Palabras melosas, siempre engañosas + Después de perder a su padre, una joven se reencuentra con su madre, quien se dedica a la profesión más antigua del mundo. Ella deberá entender y ayudar a su madre. + + Michael Ronda + Wendy González + Sergio Corona + + Comedy + + + TV14 + + + + Amorcito corazón + El destino sentimental de una joven queda marcado, por un acontecimiento en su fiesta de 18 años al ir en contra de las normas de sus padres, decidiendo tener relaciones con su novio quien más tarde tiene una desgracia. + + Elizabeth Álvarez + Diego Olivera + Daniel Arenas + + Soaps + Comedy + + + TV14 + + + + Por ella soy Eva + Un amor en el olvido + Rebeca le propone a Fernando un negocio para defraudar a Grupo Imperio, él acepta; Claudia logra que Eugenia acepte que se quede a vivir en su casa, prometiéndole que no notará su presencia. + + Lucero + Jaime Camil + Tiaré Scanda + + Soaps + Drama + + + + Abismo de pasión + El destino castiga + El hijo de Carmina muere en su cuna y ella culpa a Elisa de su muerte. Carmina decide vengarse de Gabino, quien reveló toda la verdad. + + Angelique Boyer + David Zepeda + Alejandro Camacho + + Soaps + Drama + + + + Amor prohibido + Una familia vive en uno de los mejores vecindarios de Estambul con el hijo de un pariente, Behlül y la niñera de sus hijos. Behlül conoce a Bihter años más tarde y se enamora profundamente de ella. + + Beren Saat + Kivanc Tatlitug + Selçuk Yöntem + + Soaps + + + + Enamorándonos recargado + Solteros de todas las edades buscan a su media naranja. En esta edición, los amorosos regresan con un solo objetivo: conseguir pareja. + Reality TV + + + + Reto 4 elementos: La liga extrema + Un grupo de atletas de alto rendimiento se enfrenta a una serie de obstáculos para ganar una importante suma de dinero. + Game Shows + + + + Como dice el dicho + Obras son amores y no buenas razones + De vacaciones, una chica conoce a Cristóbal, un camarero del mejor hotel de la zona. Él le enseñará la mejor parte de la región y el verdadero significado del amor. + + Michael Ronda + Wendy González + Sergio Corona + + Comedy + + + TV14 + + + + Reto 4 elementos: La liga extrema + Un grupo de atletas de alto rendimiento se enfrenta a una serie de obstáculos para ganar una importante suma de dinero. + Game Shows + + + + Amor prohibido + Una familia vive en uno de los mejores vecindarios de Estambul con el hijo de un pariente, Behlül y la niñera de sus hijos. Behlül conoce a Bihter años más tarde y se enamora profundamente de ella. + + Beren Saat + Kivanc Tatlitug + Selçuk Yöntem + + Soaps + + + + Esta historia me suena + Devuélveme a mi chica + Una madre pierde a su hija, quien ha sido manipulada por su novio que es un delincuente y huye con él. Después de un tiempo se convierte en un peligroso sicario que la induce a una vida de excesos. + Music + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + ¿Accidente automovilístico? Consulta legal gratuita + Profesionales legales listos para responder sus preguntas. + Paid Program + + + + Esta historia me suena + ¿Cómo pudiste hacerme esto a mí? + La vida de una exitosa abogada comienza a venirse abajo después de que sus relaciones de trabajo y personales se van terminando poco a poco, mientras intenta salvar a su madre de un terrible delito del cual resulta presunta culpable. + Music + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + AAA Benefits and Savings + Learn how you could save everyday with AAA, from 24-hour Roadside Assistance and Travel to Insurance and Member Discounts. + Paid Program + + + + Goin' Loco + Programa de cámaras escondidas que muestra a un grupo de amigos en una de las playas más famosas de México. Los chicos solo tienen una cosa en mente: jugarles bromas a todos aquellos que se crucen en su camino. + Comedy + + + TV14 + + + + Soñadoras + La sospecha + Viviana nota muy extraña a Jacqueline por su comportamiento y le dice a Eugenio que sospecha que su hija está consumiendo drogas, tomándolo por sorpresa. + + Alejandra Ávalos + Arturo Peniche + José Carlos Ruiz + + Soaps + + + TVPG + + + + Fútbol central + El programa elemental para los fans, el cual les indica qué buscar y esperar en la cancha en los próximos partidos y campeonatos. + Sports + Soccer + + + + Barcelona vs. Shakhtar Donetsk + FC Shakhtar Donetsk vs. FC Barcelona + Fecha 4 en el Grupo H. Shakhtar recibe a Barcelona. Desde el Volksparkstadion. Los ucranianos son locales en lo administrativo y buscan una victoria que los coloque en zona de clasificación a la siguiente ronda. + Sports + Soccer + + + + Barcelona vs. Shakhtar Donetsk + FC Shakhtar Donetsk vs. FC Barcelona + Fecha 4 en el Grupo H. Shakhtar recibe a Barcelona. Desde el Volksparkstadion. Los ucranianos son locales en lo administrativo y buscan una victoria que los coloque en zona de clasificación a la siguiente ronda. + Sports + Soccer + + + + Vecinos + ¡Qué escándalo! + Morris aprende a tocar la batería y los vecinos se quejan por el ruido, pero Silvia y Luis descubren que ese ruido arrulla al bebé. Pedro está preocupado porque no recuerda la fecha del cumpleaños de Cris. + + César Bono + Eduardo España + Macaria + + Sitcom + + + TVPG + + + + Vecinos + Arturo influencer + Arturo se vuelve un famoso influencer de TikTok y Paco de Miguel lo busca para una colaboración. Cris recibe la visita de su hermana Esmeralda y Pedro se siente desplazado. + + César Bono + Eduardo España + Macaria + + Sitcom + + + TVPG + + + + Esta historia me suena + Por amarte así + Una pareja de jóvenes se encuentra años después, en los cuales sus vidas han cambiado por completo. Ahora ambos tienen familias propias y deben decidir si quieren volver a estar juntos. + Music + + + + Como dice el dicho + Echando a perder se aprende + Úrsula, una chica que no sabe lo que quiere, entrará en el mundo del modelaje con mentiras y engaños. + + Michael Ronda + Wendy González + Sergio Corona + + Comedy + + + TV14 + + + + Amorcito corazón + El destino sentimental de una joven queda marcado, por un acontecimiento en su fiesta de 18 años al ir en contra de las normas de sus padres, decidiendo tener relaciones con su novio quien más tarde tiene una desgracia. + + Elizabeth Álvarez + Diego Olivera + Daniel Arenas + + Soaps + Comedy + + + TV14 + + + + Por ella soy Eva + Explicaciones + Juan Carlos le pide a Eugenia que lo deje explicarle todo y aclararle la situación, ella lo medita y acepta. + + Lucero + Jaime Camil + Tiaré Scanda + + Soaps + Drama + + + + Abismo de pasión + Crecieron los niños + Elisa es una mujer bella y cautivadora que nunca ha olvidado a Damián desde que se lo llevaron del pueblo. Augusto sigue obsesionado con el recuerdo de Estefanía y Carmina se siente despreciada. Gael está enamorado de Elisa. + + Angelique Boyer + David Zepeda + Alejandro Camacho + + Soaps + Drama + + + + Amor prohibido + Una familia vive en uno de los mejores vecindarios de Estambul con el hijo de un pariente, Behlül y la niñera de sus hijos. Behlül conoce a Bihter años más tarde y se enamora profundamente de ella. + + Beren Saat + Kivanc Tatlitug + Selçuk Yöntem + + Soaps + + + + Enamorándonos recargado + Solteros de todas las edades buscan a su media naranja. En esta edición, los amorosos regresan con un solo objetivo: conseguir pareja. + Reality TV + + + + Reto 4 elementos: La liga extrema + Un grupo de atletas de alto rendimiento se enfrenta a una serie de obstáculos para ganar una importante suma de dinero. + Game Shows + + + + Como dice el dicho + Pelillos a la mar y lo pasado olvidar + Una joven sufre porque su papá no tiene tiempo para estar con ella y cancela sus vacaciones juntos. Entonces decide escaparse con su amiga a la playa, pero los celos harán que las cosas se compliquen entre ellas. + + Michael Ronda + Wendy González + Sergio Corona + + Comedy + + + TV14 + + + + Reto 4 elementos: La liga extrema + Un grupo de atletas de alto rendimiento se enfrenta a una serie de obstáculos para ganar una importante suma de dinero. + Game Shows + + + + Amor prohibido + Una familia vive en uno de los mejores vecindarios de Estambul con el hijo de un pariente, Behlül y la niñera de sus hijos. Behlül conoce a Bihter años más tarde y se enamora profundamente de ella. + + Beren Saat + Kivanc Tatlitug + Selçuk Yöntem + + Soaps + + + + Esta historia me suena + ¿Cómo pudiste hacerme esto a mí? + La vida de una exitosa abogada comienza a venirse abajo después de que sus relaciones de trabajo y personales se van terminando poco a poco, mientras intenta salvar a su madre de un terrible delito del cual resulta presunta culpable. + Music + + + + ¿Accidente automovilistico? Consulta legal gratuita + Profesionales legales listos para responder preguntas. + Paid Program + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Esta historia me suena + A puro dolor + Una joven privada de su libertad desde muy pequeña, es manipulada por su captor para llevar a cabo relaciones de negocios. Después de mucho tiempo busca su libertad con ayuda de un joven periodista. + Music + + + + ¿Accidente automovilístico? Consulta legal gratuita + Profesionales legales listos para responder sus preguntas. + Paid Program + + + + AAA Benefits and Savings + Learn how you could save everyday with AAA, from 24-hour Roadside Assistance and Travel to Insurance and Member Discounts. + Paid Program + + + + Goin' Loco + Programa de cámaras escondidas que muestra a un grupo de amigos en una de las playas más famosas de México. Los chicos solo tienen una cosa en mente: jugarles bromas a todos aquellos que se crucen en su camino. + Comedy + + + TV14 + + + + Soñadoras + Venganza por amor + Eugenio planea una venganza en contra de José Luis por robarle el amor de Fernanda. Jacqueline es sorprendida haciendo un examen con acordeón. + + Alejandra Ávalos + Arturo Peniche + José Carlos Ruiz + + Soaps + + + TVPG + + + + Fútbol central + El programa elemental para los fans, el cual les indica qué buscar y esperar en la cancha en los próximos partidos y campeonatos. + Sports + Soccer + + + + Benfica vs. Real Sociedad + Real Sociedad vs. Benfica + Jornada 4 del Grupo D en la Champions League. Real Sociedad se enfrenta a Benfica. Desde el Reale Arena. + Sports + Soccer + + + + Benfica vs. Real Sociedad + Real Sociedad vs. Benfica + Jornada 4 del Grupo D en la Champions League. Real Sociedad se enfrenta a Benfica. Desde el Reale Arena. + Sports + Soccer + + + + Vecinos + El novio de Virginia + Silvia acude a un diplomado que dura dos días y quiere contratar a una niñera, pero Luis no está de acuerdo. Virginia le quiere declarar su amor a un chico y Germán piensa que es él. + + César Bono + Eduardo España + Macaria + + Sitcom + + + TVPG + + + + Vecinos + Bebé a bordo + En el segundo día del diplomado de Silvia, Luisito Jr. queda al cuidado de Pedrito, pero este permite que todos los vecinos lo cuiden y en un descuido pierden al bebé. + + César Bono + Eduardo España + Macaria + + Sitcom + + + TVPG + + + + Esta historia me suena + Un buen perdedor + Una joven esperará con paciencia a que su novio regrese de Estados Unidos para que puedan estar juntos. Sin embargo, ella conoce a un buen hombre del que se va enamorando poco a poco. Ella tendrá que decidir si esperar o comenzar una nueva vida. + Music + + + + Como dice el dicho + Hasta que es padecido, el mal es conocido + Susana y Nacho son dos jóvenes tranquilos que experimentarán el oscuro mundo de las drogas, lo que no los llevará a nada bueno. + + Michael Ronda + Wendy González + Sergio Corona + + Comedy + + + TV14 + + + + Amorcito corazón + El destino sentimental de una joven queda marcado, por un acontecimiento en su fiesta de 18 años al ir en contra de las normas de sus padres, decidiendo tener relaciones con su novio quien más tarde tiene una desgracia. + + Elizabeth Álvarez + Diego Olivera + Daniel Arenas + + Soaps + Comedy + + + TV14 + + + + Masha and the Bear + Best of Masha and the Bear: Volume 10 + Masha befriends a bear in the forest. + + Alina Kukushkina + Boris Kutnevich + Giselle Nieto + + Animated + Children + + + TVY + + + + Masha and the Bear Shorties + Selfie + Children + + + TVY + + + + Masha and the Bear + Best of Masha and the Bear: Volume 11 + Masha befriends a bear in the forest. + + Alina Kukushkina + Boris Kutnevich + Giselle Nieto + + Animated + Children + + + TVY + + + + Masha and the Bear Shorties + Dance! Dance! + Children + + + TVY + + + + Masha and the Bear Shorties + Roller Skater + Children + + + TVY + + + + Masha and the Bear + Best of Masha and the Bear: Volume 13 + Includes. + + Alina Kukushkina + Boris Kutnevich + Giselle Nieto + + Animated + Children + + + TVY + + + + Masha and the Bear Shorties + Modern Art + Children + + + TVY + + + + Dragons: Race to the Edge + Have Dragon, Will Travel, Part 1 + The dragon riders are surprised to discover who is behind recent attacks on nearby ships -- and to learn exactly what the ships are. + + Jay Baruchel + America Ferrera + Christopher Mintz-Plasse + + Animated + Children + + + TVY7 + + + + Dragons: Race to the Edge + Have Dragon, Will Travel, Part 2 + A familiar face joins ranks with the dragon riders, but it's not an easy alliance, especially when Hiccup uncovers a shocking secret about the new member's true identity. + + Jay Baruchel + America Ferrera + Christopher Mintz-Plasse + + Animated + Children + + + TVY7 + + + + Dragons: Race to the Edge + The Next Big Sting + Hiccup, Toothless and the dragon riders rescue a wounded Speed Stinger and take it back to Dragon's Edge, unaware of the dangers that follow. + + Jay Baruchel + America Ferrera + Christopher Mintz-Plasse + + Animated + Children + + + TVY7 + + + + Dragons: Race to the Edge + Total Nightmare + When Hookfang is drawn to a female Monstrous Nightmare, Snotlout tries to break them up before he loses his best friend forever. + + Jay Baruchel + America Ferrera + Christopher Mintz-Plasse + + Animated + Children + + + TVY7 + + + + Dragons: Race to the Edge + Total Nightmare + When Hookfang is drawn to a female Monstrous Nightmare, Snotlout tries to break them up before he loses his best friend forever. + + Jay Baruchel + America Ferrera + Christopher Mintz-Plasse + + Animated + Children + + + TVY7 + + + + The Adventures of Puss in Boots + Not a Date + Puss and Dulcinea decide to go on a vacation together, though neither of them will admit it's a date -- especially when the whole town comes along. + + Eric Bauza + Jayma Mays + Laraine Newman + + Animated + Children + + + TVY + + + + The Adventures of Puss in Boots + Flock the Boat + The townsfolk look to Puss to stop San Lorenzo's earthquakes, but first a mission to rescue a pirate captain from the Island of Doom. + + Eric Bauza + Jayma Mays + Laraine Newman + + Animated + Children + + + TVY + + + + The Adventures of Puss in Boots + All Hail, Puss! + When the sky gods grant Puss divine powers to calm the earthquakes, his oversized ego threatens to turn the town against him. + + Eric Bauza + Jayma Mays + Laraine Newman + + Animated + Children + + + TVY + + + + The Adventures of Puss in Boots + The Moving Finger Writes + With the future of the world at stake, Puss and his friends head to the Forbidden Citadel on a mission to find the Great Mage Sino. + + Eric Bauza + Jayma Mays + Laraine Newman + + Animated + Children + + + TVY + + + + Trolls: The Beat Goes On! + Adventures and Dance Parties, Volume 20 + Episodes include. + + Skylar Astin + Amanda Leighton + Ron Funches + + Animated + Children + + + TVY + + + + Trolls: The Beat Goes On! + Adventures and Dance Parties, Volume 21 + Poppy, Branch and friends keep the dance party raving in their fantastical forest home in. + + Skylar Astin + Amanda Leighton + Ron Funches + + Animated + Children + + + TVY + + + + Cocomelon + Cocomelon Sing-a-Longs, Volume 39 + JJ and pals learn about letters, numbers, animal sounds, and more in this musical series featuring nursery rhymes. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Babble Bop! + Let's Discover Your World + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Cocomelon + Cocomelon Sing-a-Longs, Volume 40 + Baby JJ and his family go on sing-a-long adventures through their everyday lives. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Babble Bop! + The Best Time Is Storytime + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Cocomelon + Cocomelon Sing-a-Longs, Volume 41 + Baby JJ and his family go on sing-a-long adventures through their everyday lives. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Babble Bop! + Hot Cross Buns + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Ruff-Ruff, Tweet & Dave + A Superpower Adventure; A Special Delivery Adventure + Three friends play and explore together. + + Austin Chase + Ethan Drake Davis + Hannah Swain + + Animated + Children + + + TVY + + + + Babble Bop! + Jack and Jill + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Ruff-Ruff, Tweet & Dave + A Happy Hat Adventure; A Robot Adventure + Inspired by Hatty's love of hats, Ruff-Ruff, Tweet and Dave go in search of. + + Austin Chase + Ethan Drake Davis + Hannah Swain + + Animated + Children + + + TVY + + + + Ruff-Ruff, Tweet & Dave + A Fire Fighter Adventure; A Bibble Bink Adventure + Ruff-Ruff, Tweet and Dave get to be firefighter helpers for the day and rescue Larry the Leopard Cub, who's stuck up a tree; Ruff-Ruff, Tweet and Dave learn how to speak monkey language. + + Austin Chase + Ethan Drake Davis + Hannah Swain + + Animated + Children + + + TVY + + + + Babble Bop! + This Is the Way + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVG + + + + Ruff-Ruff, Tweet & Dave + A Ruff-Ruff Adventure; A Song Making Adventure + A sad Ruff-Ruff learns how to be a happy puppy again; Ruff-Ruff, Tweet and Dave make up a song to sing at Speedy Sheep's party. + + Austin Chase + Ethan Drake Davis + Hannah Swain + + Animated + Children + + + TVY + + + + Nina's World + Nina's Game Day; Nina Learns Karate + Nina and her friends invent a game. + Animated + Children + + + TVY + + + + Nina's World + Nina's Very Merry Gift; Nina Celebrates Chinese New Year + Nina and Carlos are Christmas elves for the day and will be giving out special ornaments. + Animated + Children + + + TVY + + + + Nina's World + To Mami, Love Nina; Nina's Lemonade Stand + Nina looks for the perfect Mother's Day gift. + Animated + Children + + + TVY + + + + Nina's World + Nina's Color Festival; Nina's Amazing Amigos + Nina and her friends decorate the courtyard with a chalk mural; Carlos and Chelsea argue about which one is Nina's true best friend. + Animated + Children + + + TVY + + + + Masha and the Bear + Best of Masha and the Bear: Volume 14 + Includes. + + Alina Kukushkina + Boris Kutnevich + Giselle Nieto + + Animated + Children + + + TVY + + + + Masha and the Bear Shorties + The Taming of the Shrew + Children + + + TVY + + + + Masha and the Bear + Best of Masha and the Bear: Volume 15 + Includes. + + Alina Kukushkina + Boris Kutnevich + Giselle Nieto + + Animated + Children + + + TVY + + + + Masha and the Bear Shorties + Bus Stop + Children + + + TVY + + + + Masha and the Bear + Best of Masha and the Bear: Volume 16 + Includes. + + Alina Kukushkina + Boris Kutnevich + Giselle Nieto + + Animated + Children + + + TVY + + + + Masha and the Bear Shorties + Competition + Children + + + TVY + + + + Cocomelon + Cocomelon Sing-a-Longs, Volume 42 + JJ and pals learn about letters, numbers, animal sounds, and more in this musical series featuring nursery rhymes. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Babble Bop! + Listen to Your World + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVG + + + + Cocomelon + Cocomelon Sing-a-Longs, Volume 43 + JJ and pals learn about letters, numbers, animal sounds, and more in this musical series featuring nursery rhymes. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Babble Bop! + Need to Snooze Blues + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVG + + + + Cocomelon + Cocomelon Sing-a-Longs, Volume 44 + JJ and pals learn about letters, numbers, animal sounds, and more in this musical series featuring nursery rhymes. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Babble Bop! + My First Snow + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Cocomelon + Cocomelon Sing-a-Longs, Volume 45 + JJ and pals learn about letters, numbers, animal sounds, and more in this musical series featuring nursery rhymes. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Babble Bop! + Baking With Dad + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imaginations. + Animated + Children + + + TVG + + + + Masha and the Bear + Best of Masha and the Bear: Volume 17 + Includes. + + Alina Kukushkina + Boris Kutnevich + Giselle Nieto + + Animated + Children + + + TVY + + + + Masha and the Bear Shorties + Scary Movie + Children + + + TVY + + + + Masha and the Bear + Best of Masha and the Bear: Volume 18 + Includes. + + Alina Kukushkina + Boris Kutnevich + Giselle Nieto + + Animated + Children + + + TVY + + + + Masha and the Bear Shorties + Hugs + Children + + + TVY + + + + Masha and the Bear + Best of Masha and the Bear: Volume 19 + Includes the episodes. + Animated + Children + + + TVY + + + + Masha and the Bear Shorties + Come On Let's Share + Children + + + TVY + + + + Masha and the Bear + Best of Masha and the Bear: Volume 20 + Includes the episodes. + Animated + Children + + + TVY + + + + Masha and the Bear Shorties + Well Sorted + Children + + + TVY + + + + Dragons: Race to the Edge + Team Astrid + After Dagur attacks Berk, Astrid trains a crew of back-up Dragon Riders to battle back, although no one anticipates how soon the next strike will come. + + Jay Baruchel + America Ferrera + Christopher Mintz-Plasse + + Animated + Children + + + TVY7 + + + + Dragons: Race to the Edge + Night of the Hunters, Part 1 + When Stormfly is captured by a new enemy, Hiccup, Toothless and the team must rescue her before it's too late. + + Jay Baruchel + America Ferrera + Christopher Mintz-Plasse + + Animated + Children + + + TVY7 + + + + Dragons: Race to the Edge + Night of the Hunters, Part 2 + As Hiccup and Snotlout race to rescue the others from Ryker and the Dragon Hunters, they don't realize Dagur and Heather are working with the enemy. + + Jay Baruchel + America Ferrera + Christopher Mintz-Plasse + + Animated + Children + + + TVY7 + + + + Dragons: Race to the Edge + Bad Moon Rising + After a strange creature bites Tuffnut, he believes he'll turn into a legendary Lycanwing dragon when the moon is full unless his friends can save him. + + Jay Baruchel + America Ferrera + Christopher Mintz-Plasse + + Animated + Children + + + TVY7 + + + + The Adventures of Puss in Boots + And, Having Writ, Moves On + The Great Mage Sino reveals the full history of San Lorenzo -- and the only way to save it, which requires Puss to give up everything. + + Eric Bauza + Jayma Mays + Laraine Newman + + Animated + Children + + + TVY + + + + The Adventures of Puss in Boots + Bootless Cries + When the town of San Lorenzo is threatened by the Bloodwolf, Puss feels like he has failed as a hero. + + Eric Bauza + Jayma Mays + Laraine Newman + + Animated + Children + + + TVY + + + + The Adventures of Puss in Boots + Sullen Earth + Uli has information about the Bloodwolf, but the Mole King imprisons him. + + Eric Bauza + Jayma Mays + Laraine Newman + + Animated + Children + + + TVY + + + + The Adventures of Puss in Boots + Ugly Duckling + Puss swallows his pride and asks his mentor for help in defending San Lorenzo. + + Eric Bauza + Jayma Mays + Laraine Newman + + Animated + Children + + + TVY + + + + Trolls: The Beat Goes On! + Adventures and Dance Parties, Volume 22 + Poppy, Branch, and friends keep the dance party raving in their fantastical forest home in. + + Skylar Astin + Amanda Leighton + Ron Funches + + Animated + Children + + + TVY + + + + Trolls: The Beat Goes On! + Adventures and Dance Parties, Volume 23 + Poppy, Branch, and friends keep the dance party raving in. + + Skylar Astin + Amanda Leighton + Ron Funches + + Animated + Children + + + TVY + + + + Cocomelon + Cocomelon Sing-a-Longs, Volume 46 + JJ and pals learn about letters, numbers, animal sounds, and more in this musical series featuring nursery rhymes. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Babble Bop! + Bath Time + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVG + + + + Cocomelon + Cocomelon Sing-a-Longs, Volume 47 + JJ and pals learn about letters, numbers, animal sounds, and more in this musical series featuring nursery rhymes. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Babble Bop! + When You Gotta Go + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Cocomelon + Cocomelon Sing-a-Longs: Volume 1 + JJ and pals learn about letters, numbers, animal sounds, and more in this musical series featuring nursery rhymes. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Babble Bop! + Something Yummy + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Ruff-Ruff, Tweet & Dave + A Game Show Adventure; A Wishing Adventure + Ruff-Ruff, Tweet and Dave play. + + Austin Chase + Ethan Drake Davis + Hannah Swain + + Animated + Children + + + TVY + + + + Babble Bop! + Playing in the Backyard + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Ruff-Ruff, Tweet & Dave + A Noisy Adventure; A Moving Home Adventure + When Ruff-Ruff, Tweet and Dave hear strange noises in Hatty's garden, Dave's blue panda idea helps them stop the noises from keeping Hatty awake at night; Ruff-Ruff, Tweet and Dave help the Rabbit family move home and keep track of their belongings. + + Austin Chase + Ethan Drake Davis + Hannah Swain + + Animated + Children + + + TVY + + + + Ruff-Ruff, Tweet & Dave + A Friends Adventure; A Princess Adventure + Ruff-Ruff, Tweet and Dave show two feuding friends how to be best friends again; Tweet enjoys the attention that comes with being Princess Tweet for the day, but soon learns that sometimes it's more fun to take part with her friends. + + Austin Chase + Ethan Drake Davis + Hannah Swain + + Animated + Children + + + TVY + + + + Babble Bop! + Vroom Vroom + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Ruff-Ruff, Tweet & Dave + A Prize-Winning Adventure; A Honey Adventure + Ruff-Ruff, Tweet and Dave win at the village fair's game stalls, while Hatty shows them how to be a good loser; Ruff-Ruff, Tweet and Dave help Hatty find some honey for his breakfast toast. + + Austin Chase + Ethan Drake Davis + Hannah Swain + + Animated + Children + + + TVY + + + + Nina's World + Nina Wants to Grow; Nina Takes the Stage + Nina wants to grow taller; Nina discovers a shadow puppet from an ancient story. + Animated + Children + + + TVY + + + + Nina's World + Nina From Space; Nina Makes Music + Nina and Chelsea pretend to be visitors from another planet; Nina helps inspire Tio Javier to write a song. + Animated + Children + + + TVY + + + + Nina's World + Nina the Nurse; Super Nina! + Nina takes care of her sick grandmother; Nina and Carlos become superheroes! + Animated + Children + + + TVY + + + + Nina's World + Nina's Birthday; Nina's Big Adventure + It's Nina's birthday party; Tio Javier goes on an adventurous trip across the globe. + Animated + Children + + + TVY + + + + Masha and the Bear + Best of Masha and the Bear: Volume 21 + Includes the episodes. + Animated + Children + + + TVY + + + + Masha and the Bear Shorties + Fast Food and Healthy Food + Children + + + TVY + + + + Masha and the Bear + Best of Masha and the Bear: Volume 22 + Includes the episodes. + Animated + Children + + + TVY + + + + Masha and the Bear Shorties + Stylish Swim + Children + + + TVY + + + + Masha and the Bear + Masha Mash-Up: Volume 1 + Masha befriends a bear in the forest. + + Alina Kukushkina + Boris Kutnevich + + Animated + Children + + + TVY + + + + Cocomelon + Cocomelon Sing-a-Longs: Volume 2 + JJ and pals learn about letters, numbers, animal sounds, and more in this musical series featuring nursery rhymes. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Babble Bop! + Little Things + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Cocomelon + Cocomelon Sing-a-Longs: Volume 3 + JJ and pals learn about letters, numbers, animal sounds, and more in this musical series featuring nursery rhymes. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Babble Bop! + The Giggly Wiggly Sillies + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Cocomelon + Cocomelon Sing-a-Longs: Volume 4 + JJ and pals learn about letters, numbers, animal sounds, and more in this musical series featuring nursery rhymes. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Babble Bop! + Zoom + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Cocomelon + Cocomelon Sing-a-Longs: Volume 5 + JJ and pals learn about letters, numbers, animal sounds, and more in this musical series featuring nursery rhymes. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Babble Bop! + Robot Dance + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Masha and the Bear + Masha Mash-Up: Volume 2 + Masha befriends a bear in the forest. + + Alina Kukushkina + Boris Kutnevich + + Animated + Children + + + TVY + + + + Masha and the Bear + Masha Mash-Up: Volume 3 + Masha befriends a bear in the forest. + + Alina Kukushkina + Boris Kutnevich + + Animated + Children + + + TVY + + + + Masha and the Bear + Masha Mash-Up: Volume 4 + Masha befriends a bear in the forest. + + Alina Kukushkina + Boris Kutnevich + + Animated + Children + + + TVY + + + + Masha and the Bear + Masha Mash-Up: Volume 5 + Masha befriends a bear in the forest. + + Alina Kukushkina + Boris Kutnevich + + Animated + Children + + + TVY + + + + Dragons: Race to the Edge + Snotlout Gets the Axe + When Snotlout and Astrid must fly a ceremonial battle axe to a family wedding, they must work together when an Armorwing dragon derails their plans. + + Jay Baruchel + America Ferrera + Christopher Mintz-Plasse + + Animated + Children + + + TVY7 + + + + Dragons: Race to the Edge + The Zippleback Experience + After Hiccup and Toothless save Barf and Belch's lives, the grateful Zippleback tries to repay its life debt and abandons riders Ruff and Tuff. + + Jay Baruchel + America Ferrera + Christopher Mintz-Plasse + + Animated + Children + + + TVY7 + + + + Dragons: Race to the Edge + Snow Way Out + Determined to create a key to the Dragon Eye, Ryker heads to Glacier Island to find the dangerous Snow Wraith being protected by the Dragon Riders. + + Jay Baruchel + America Ferrera + Christopher Mintz-Plasse + + Animated + Children + + + TVY7 + + + + Dragons: Race to the Edge + Edge of Disaster, Part 1 + When Ruffnut is captured by Dragon Hunters, it's up to Astrid and Tuffnut to defend Dragon's Edge from the invading Dragon Hunter army. + + Jay Baruchel + America Ferrera + Christopher Mintz-Plasse + + Animated + Children + + + TVY7 + + + + The Adventures of Puss in Boots + The Muscle + Puss and his friends look for the powerful Golem to help save San Lorenzo, but Puss feels like he doesn't have enough strength and power to meet the challenge. + + Eric Bauza + Jayma Mays + Laraine Newman + + Animated + Children + + + TVY + + + + The Adventures of Puss in Boots + Sword's Man + Puss agrees to recruit Goodsword to join his army, but the powerful blade isn't easily convinced. + + Eric Bauza + Jayma Mays + Laraine Newman + + Animated + Children + + + TVY + + + + The Adventures of Puss in Boots + Escape Goat + Now that his team is complete, Puss quickly realizes that he has no idea how to lead them into battle. + + Eric Bauza + Jayma Mays + Laraine Newman + + Animated + Children + + + TVY + + + + The Adventures of Puss in Boots + Copy Cat + Puss accidentally agrees to ride for two different groups in the town's horse race. + + Eric Bauza + Jayma Mays + Laraine Newman + + Animated + Children + + + TVY + + + + Trolls: The Beat Goes On! + Adventures and Dance Parties, Volume 24 + Poppy, Branch and friends keep the dance party raving in. + + Skylar Astin + Amanda Leighton + Ron Funches + + Animated + Children + + + TVY + + + + Trolls: The Beat Goes On! + Adventures and Dance Parties, Volume 25 + Poppy, Branch and friends keep the dance party raving in. + + Skylar Astin + Amanda Leighton + Ron Funches + + Animated + Children + + + TVY + + + + Cocomelon + Cocomelon Sing-a-Longs, Volume 6 + JJ and pals learn about letters, numbers, animal sounds, and more in this musical series featuring nursery rhymes. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Babble Bop! + Whoops! + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Cocomelon + Cocomelon Sing-a-Longs, Volume 7 + JJ and pals learn about letters, numbers, animal sounds, and more in this musical series featuring nursery rhymes. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Babble Bop! + My Favorite Toy + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Cocomelon + Cocomelon Sing-a-Longs, Volume 8 + JJ and pals learn about letters, numbers, animal sounds, and more in this musical series featuring nursery rhymes. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Babble Bop! + My Bonnie Lies Over the Ocean + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Ruff-Ruff, Tweet & Dave + A Banana Adventure; A Delivery Crew Adventure + Ruff-Ruff, Tweet and Dave fly off to the jungle to pick bananas; Ruff-Ruff, Tweet and Dave deliver a big box to Speedy Sheep. + + Austin Chase + Ethan Drake Davis + Hannah Swain + + Animated + Children + + + TVY + + + + Babble Bop! + Yankee Doodle + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Ruff-Ruff, Tweet & Dave + A Bug Adventure; A Butterfly Adventure + Ruff-Ruff, Tweet and Dave take Buddy Bug to the jungle to reunite him with his family; Ruff-Ruff, Tweet and Dave meet some fluttery new butterfly friends and discover how caterpillars turn into butterflies. + + Austin Chase + Ethan Drake Davis + Hannah Swain + + Animated + Children + + + TVY + + + + Ruff-Ruff, Tweet & Dave + A Hiccup Adventure; A Bunny-Sitting Adventure + When Ruff-Ruff, Tweet and Dave get the hiccups, everyone they meet suggests a different way to stop them; Ruff-Ruff, Tweet and Dave help Hatty bunny-sit the three Little Bunnies. + + Austin Chase + Ethan Drake Davis + Hannah Swain + + Animated + Children + + + TVY + + + + Babble Bop! + Little Bo Peep + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Ruff-Ruff, Tweet & Dave + A Magic Show Adventure; A Bowling Adventure + Hatty teaches Ruff-Ruff, Tweet and Dave how to do magic tricks; Ruff-Ruff, Tweet and Dave go bowling in the jungle with Bobby the Monkey. + + Austin Chase + Ethan Drake Davis + Hannah Swain + + Animated + Children + + + TVY + + + + Nina's World + Nina and Papi Play Baseball; Nina the Shadow Chaser + Nina helps Papi practice his pitching; while Skye is babysitting, Nina and Star watch a scary movie about a shadow monster and their imagination gets away from them. + Animated + Children + + + TVY + + + + Nina's World + Nina Unplugged; Nina the Great + When a neighborhood blackout causes chaos on the block, Nina sees an opportunity to bring family and friends together; Nina the Great and Chelsea the Magnificent nearly let competitive spirits get in the way of their magic show. + Animated + Children + + + TVY + + + + Nina's World + Nina the Kite Flyer; Nina's First Sleepover + Nina is making a butterfly kite for the kite festival with Carlos, but then disaster strikes; Chelsea is sleeping over. + Animated + Children + + + TVY + + + + Nina's World + Nina's Show and Tell; Nina's Snow Day + When Nina discovers a lone flower growing in a sidewalk crack, she looks for a way to savor and share its beauty; Nina learns what winter is like in other parts of the world. + Animated + Children + + + TVY + + + + Masha and the Bear + Masha Mash-Up: Volume 6 + Masha befriends a bear in the forest. + + Alina Kukushkina + Boris Kutnevich + + Animated + Children + + + TVY + + + + Masha and the Bear + Masha Mash-Up: Volume 7 + Masha befriends a bear in the forest. + + Alina Kukushkina + Boris Kutnevich + + Animated + Children + + + TVY + + + + Masha and the Bear + Masha Mash-Up: Volume 8 + Masha befriends a bear in the forest. + + Alina Kukushkina + Boris Kutnevich + + Animated + Children + + + TVY + + + + Cocomelon + Cocomelon Sing-a-Longs, Volume 9 + JJ and pals learn about letters, numbers, animal sounds, and more in this musical series featuring nursery rhymes. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Babble Bop! + One, Two, Buckle My Shoe + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Cocomelon + Cocomelon Sing-a-Longs, Volume 10 + JJ and pals learn about letters, numbers, animal sounds, and more in this musical series featuring nursery rhymes. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Babble Bop! + Hickory Dickory Doc + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Cocomelon + Cocomelon Sing-a-Longs, Volume 11 + JJ and pals learn about letters, numbers, animal sounds, and more in this musical series featuring nursery rhymes. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Babble Bop! + Here We Go Looby Loo + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Cocomelon + Cocomelon Sing-a-Longs, Volume 12 + JJ and pals learn about letters, numbers, animal sounds, and more in this musical series featuring nursery rhymes. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Babble Bop! + The More We Get Together (The Happier We'll Be) + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Masha and the Bear + Masha Mash-Up: Volume 9 + Masha befriends a bear in the forest. + + Alina Kukushkina + Boris Kutnevich + + Animated + Children + + + TVY + + + + Masha and the Bear + Masha Mash-Up: Volume 10 + Masha befriends a bear in the forest. + + Alina Kukushkina + Boris Kutnevich + + Animated + Children + + + TVY + + + + Masha and the Bear + Masha Mash-Up: Volume 11 + Masha befriends a bear in the forest. + + Alina Kukushkina + Boris Kutnevich + + Animated + Children + + + TVY + + + + Masha and the Bear + Masha Mash-Up: Volume 12 + Masha befriends a bear in the forest. + + Alina Kukushkina + Boris Kutnevich + + Animated + Children + + + TVY + + + + Dragons: Race to the Edge + Edge of Disaster, Part 2 + Unaware of the war on Dragon's Edge, Hiccup, Snotlout and Johann discover an island full of dragons that have been wounded by the Dragon Hunters. + + Jay Baruchel + America Ferrera + Christopher Mintz-Plasse + + Animated + Children + + + TVY7 + + + + Dragons: Race to the Edge + Shock and Awe + When a new dragon is found in Edge Cove, the Dragon Riders must help the Sea Shocker escape a group of hungry Scauldrons. + + Jay Baruchel + America Ferrera + Christopher Mintz-Plasse + + Animated + Children + + + TVY7 + + + + Dragons: Race to the Edge + A Time to Skrill + When the Skrill returns with a vendetta against Hiccup and Toothless, the Dragon Riders must choose a new course of action to stop the vicious dragon. + + Jay Baruchel + America Ferrera + Christopher Mintz-Plasse + + Animated + Children + + + TVY7 + + + + Dragons: Race to the Edge + Maces and Talons, Part 1 + When they learn the Dragon Hunters are tracking the Flightmare, Hiccup and Astrid race to stop them after Heather spills secrets from Viggo Grimborn. + + Jay Baruchel + America Ferrera + Christopher Mintz-Plasse + + Animated + Children + + + TVY7 + + + + The Adventures of Puss in Boots + Coin Toss + Dulcinea must save the town from thieves when Puss and the townspeople become obsessed with a gambling game and forget to protect San Lorenzo. + + Eric Bauza + Jayma Mays + Laraine Newman + + Animated + Children + + + TVY + + + + The Adventures of Puss in Boots + King Pickles + When Kid Pickles is feeling down on his birthday, Puss and Artephius create a magical scroll that names Kid Pickles as heir to the San Lorenzo throne. + + Eric Bauza + Jayma Mays + Laraine Newman + + Animated + Children + + + TVY + + + + The Adventures of Puss in Boots + Pirate Booty + After pirates invade San Lorenzo searching for mystical treasure, Puss leads them on the hunt, hoping his share will defend against the Bloodwolf. + + Eric Bauza + Jayma Mays + Laraine Newman + + Animated + Children + + + TVY + + + + The Adventures of Puss in Boots + Cat Fish + When pirates force Puss to face his fear of water by walking the ship's plank, he is rescued by his ex-girlfriend and fish monster, Feejee the Mermaid. + + Eric Bauza + Jayma Mays + Laraine Newman + + Animated + Children + + + TVY + + + + Trolls: The Beat Goes On! + Adventures and Dance Parties, Volume 26 + Poppy, Branch and friends keep the dance party raving in. + + Skylar Astin + Amanda Leighton + Ron Funches + + Animated + Children + + + TVY + + + + Trolls: The Beat Goes On! + Adventures and Dance Parties, Volume 1 + Episodes include. + + Skylar Astin + Amanda Leighton + Ron Funches + + Animated + Children + + + TVY + + + + Cocomelon + Cocomelon Sing-a-Longs, Volume 13 + JJ and pals learn about letters, numbers, animal sounds, and more in this musical series featuring nursery rhymes. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Babble Bop! + My Fair Lady (London Bridge) + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Cocomelon + Cocomelon Sing-a-Longs, Volume 14 + JJ and pals learn about letters, numbers, animal sounds, and more in this musical series featuring nursery rhymes. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Babble Bop! + Merrily Merrily + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Cocomelon + Cocomelon Sing-a-Longs, Volume 15 + JJ and pals learn about letters, numbers, animal sounds, and more in this musical series featuring nursery rhymes. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Babble Bop! + Happy Birthday + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Ruff-Ruff, Tweet & Dave + A Cheerleader Adventure; A Playhouse Adventure + Ruff-Ruff, Tweet and Dave sing a cheerleader chant; Ruff-Ruff, Tweet and Dave build a playhouse for Little Lamb, Baby Calf and Littlest Bunny. + + Austin Chase + Ethan Drake Davis + Hannah Swain + + Animated + Children + + + TVY + + + + Babble Bop! + Sailing Sailing + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Ruff-Ruff, Tweet & Dave + A Finding Adventure; A Tall Adventure + Ruff-Ruff, Tweet and Dave find Littlest Bunny's missing cuddly carrot toy; Ruff-Ruff, Tweet and Dave have some big, tall fun in Hatty's garden. + + Austin Chase + Ethan Drake Davis + Hannah Swain + + Animated + Children + + + TVY + + + + Ruff-Ruff, Tweet & Dave + A Clean Up Adventure; A Harvest Adventure + Ruff-Ruff, Tweet and Dave help clean up Hatty's garden and solve the mystery of the messy muddler; Ruff-Ruff, Tweet and Dave bring in the hay at harvest time. + + Austin Chase + Ethan Drake Davis + Hannah Swain + + Animated + Children + + + TVY + + + + Babble Bop! + It's Raining It's Pouring + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Ruff-Ruff, Tweet & Dave + An Animal Parade Adventure; A Rollypod Adventure + Ruff-Ruff, Tweet and Dave take part in the Animal Day Parade, transforming their Rollypod trailers into colorful floats and helping Sneezy Sheep organize the animals; Rollypods are brought to the Rollypod Garage for a bubble makeover. + + Austin Chase + Ethan Drake Davis + Hannah Swain + + Animated + Children + + + TVY + + + + Nina's World + Nina's Henna Hijinx!; Nina's Everything Garden + Nina learns about patience when waiting for henna to dry; Nina gets a chance to plant her own garden. + Animated + Children + + + TVY + + + + Nina's World + Nina Rides a Bike; Nina Takes the Cake + When Nina doesn't want to ride her bike after an accident, Abuelita, Carlos and Chelsea build her a bike school to help Nina get back on her bike; Nina and Abuelita deliver Mami's famous cakes to Eddie and Mrs. Goldstein. + Animated + Children + + + TVY + + + + Nina's World + Nina Delivers; Nina's Library Hop + Nina becomes a delivery girl and learns how the post office operates. + Animated + Children + + + TVY + + + + Nina's World + Nina the Artist; Nina and the Missing Myna Bird + Nina tries to paint a picture for a school art project but has trouble getting inspired; when Dr. Kapur's pet bird escapes, Nina and Star team with Carlos and Abuelita to rescue the music-loving mynah. + Animated + Children + + + TVY + + + + Masha and the Bear + Masha Mash-Up: Volume 13 + Masha befriends a bear in the forest. + + Alina Kukushkina + Boris Kutnevich + + Animated + Children + + + TVY + + + + Masha and the Bear + Masha Mash-Up: Volume 14 + Masha befriends a bear in the forest. + + Alina Kukushkina + Boris Kutnevich + + Animated + Children + + + TVY + + + + Masha and the Bear + Masha Mash-Up: Volume 15 + Masha, Bear, and all their forest friends are back with assorted episodes from. + + Alina Kukushkina + Boris Kutnevich + + Animated + Children + + + TVY + + + + Cocomelon + Cocomelon Sing-a-Longs, Volume 16 + JJ and pals learn about letters, numbers, animal sounds, and more in this musical series featuring nursery rhymes. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Babble Bop! + Jack Be Nimble + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Cocomelon + Cocomelon Sing-a-Longs, Volume 17 + JJ and pals learn about letters, numbers, animal sounds, and more in this musical series featuring nursery rhymes. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Babble Bop! + Hide and Seek + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Cocomelon + Cocomelon Sing-a-Longs, Volume 18 + JJ and pals learn about letters, numbers, animal sounds, and more in this musical series featuring nursery rhymes. + + Ava Madison Gray + Hannah An + Alice Cho + + Animated + Children + + + TVY + + + + Babble Bop! + Tag (You're It!) + Lily, Hugo, Miguel, Izzie and Sam learn about the world around them by exploring nature, helping their parents with chores, celebrating holidays and using their imagination through song and dance. + Animated + Children + + + TVY + + + + Summerfest + Sarasate Shaw and Vivaldi + The works of Sarasate Shaw and Vivaldi. + Regular + + + + La Jolla Symphony and Chorus + Rossini's Stabat Mater and Song's Frozen Grief. + Regular + + + + Summerfest + Sarasate Shaw and Vivaldi + The works of Sarasate Shaw and Vivaldi. + Regular + + + + La Jolla Symphony and Chorus + Rossini's Stabat Mater and Song's Frozen Grief. + Regular + + + + Engineering Mosquitos to Fight Malaria + Creating malaria-resistant mosquitos. + Instructional + Science + + + + La Jolla Symphony and Chorus + Rossini's Stabat Mater and Song's Frozen Grief. + Regular + + + + Summerfest + Sarasate Shaw and Vivaldi + The works of Sarasate Shaw and Vivaldi. + Regular + + + + Physical Therapy + Back Pain + How physical therapy can help with low back pain. + Specials + Health + + + + Reversing a Model of Parkinson's Disease + Treating neurodegeneration by replacing lost neurons. + Science + + + + Stem Cells + Architects of Niches and Mechanical Forces + Dr. Elaine Fuchs: September 2, 2020 issue of Nature. + Health + Science + + + + Subversives: Pee-Wee's Playhouse + Conversation about the iconic Saturday morning program. + Performing Arts + + + + La Jolla Symphony and Chorus + Rossini's Stabat Mater and Song's Frozen Grief. + Regular + + + + Summerfest + Sarasate Shaw and Vivaldi + The works of Sarasate Shaw and Vivaldi. + Regular + + + + Physical Therapy + Back Pain + How physical therapy can help with low back pain. + Specials + Health + + + + Reversing a Model of Parkinson's Disease + Treating neurodegeneration by replacing lost neurons. + Science + + + + Stem Cells + Architects of Niches and Mechanical Forces + Dr. Elaine Fuchs: September 2, 2020 issue of Nature. + Health + Science + + + + Subversives: Pee-Wee's Playhouse + Conversation about the iconic Saturday morning program. + Performing Arts + + + + La Jolla Symphony and Chorus + Rossini's Stabat Mater and Song's Frozen Grief. + Regular + + + + Summerfest + Sarasate Shaw and Vivaldi + The works of Sarasate Shaw and Vivaldi. + Regular + + + + Physical Therapy + Back Pain + How physical therapy can help with low back pain. + Specials + Health + + + + Reversing a Model of Parkinson's Disease + Treating neurodegeneration by replacing lost neurons. + Science + + + + Stem Cells + Architects of Niches and Mechanical Forces + Dr. Elaine Fuchs: September 2, 2020 issue of Nature. + Health + Science + + + + Stem Cells + Architects of Niches and Mechanical Forces + Dr. Elaine Fuchs: September 2, 2020 issue of Nature. + Health + Science + + + + Subversives: Pee-Wee's Playhouse + Conversation about the iconic Saturday morning program. + Performing Arts + + + + Human Rights Education + Human rights work in the classroom. + Local + + + TV14 + + + + The Gonzales Family + A family shares how education has changed their lives. + Instructional + + + + Future of Work and Higher Education + Innovations that will transform the labor market. + Instructional + + + + KAHNOP + To Tell a Story + KAHNOP - TO TELL A STORY is a public artwork. + Arts & Entertainment + + + + Finding the Common Good + A look at political philosophy. + Regular + + + + Four Winters + Insights into the making of the documentary. + Local + + + + Indian Classical Music + Tradition and Beyond + Performance by Zakir Hussain. + Arts & Entertainment + + + + Brahms German Requiem + Conductor Valery Gergiev and the London Symphony Orchestra present Johannes Brahms' greatest choral work, the German Requiem, featuring soprano Sally Matthews and baritone Christopher Maltman. + + Valery Gergiev + Simon Halsey + London Symphony Chorus + + Specials + Music + + + TVG + + + + Intimations of Failure + Is our system of government failing? + Regular + + + + Good Design and Neighborhoods + Good public design and how it impacts our neighborhoods. + Regular + + + + Dive Medicine + Stay safe and avoidn injury while diving. + Specials + Health + + + + Sanford Stem Cell Symposium + 2023 + Sanford Stem Cell Symposium 2023 - Peggy Whitson. + Science + + + + Sanford Stem Cell Symposium + 2023: Stem Cells + Sanford Stem Cell Symposium 2023 - Session 6: Stem Cells. + Science + + + + Ethical Challenges in Genomics + Ethics in genomics and patient advocacy. + Science + + + + Special Effects + The Wizard Of Oz + Two scholars discuss the classic The Wizard of Oz (1939). + Shopping + Performing Arts + + + + Healthy Aging + A geroscientist's perspective on aging. + Health + + + + Aging + Social and Societal Implications + Healthy Aging: Social and Societal Implications. + Health + + + + Biological and Clinical Heterogeneity in Medulloblastoma + Research on pediatric medulloblastoma. + Science + + + + Healthy Aging + A geroscientist's perspective on aging. + Health + + + + Aging + Social and Societal Implications + Healthy Aging: Social and Societal Implications. + Health + + + + Biological and Clinical Heterogeneity in Medulloblastoma + Research on pediatric medulloblastoma. + Science + + + + Biological and Clinical Heterogeneity in Medulloblastoma + Research on pediatric medulloblastoma. + Science + + + + Stephanie Richards: New Trumpet Music + New music from acclaimed trumpeter Stephanie Richards. + Specials + Music + + + + KAHNOP + To Tell a Story + KAHNOP - TO TELL A STORY is a public artwork. + Arts & Entertainment + + + + Finding the Common Good + A look at political philosophy. + Regular + + + + Four Winters + Insights into the making of the documentary. + Local + + + + Indian Classical Music + Tradition and Beyond + Performance by Zakir Hussain. + Arts & Entertainment + + + + Brahms German Requiem + Conductor Valery Gergiev and the London Symphony Orchestra present Johannes Brahms' greatest choral work, the German Requiem, featuring soprano Sally Matthews and baritone Christopher Maltman. + + Valery Gergiev + Simon Halsey + London Symphony Chorus + + Specials + Music + + + TVG + + + + Human Rights Education + Human rights work in the classroom. + Local + + + TV14 + + + + The Gonzales Family + A family shares how education has changed their lives. + Instructional + + + + Future of Work and Higher Education + Innovations that will transform the labor market. + Instructional + + + + Healthy Aging + A geroscientist's perspective on aging. + Health + + + + Aging + Social and Societal Implications + Healthy Aging: Social and Societal Implications. + Health + + + + Biological and Clinical Heterogeneity in Medulloblastoma + Research on pediatric medulloblastoma. + Science + + + + Marine Envenomations + Learn about marine creatures that can bite and sting. + Health + + + + Intimations of Failure + Is our system of government failing? + Regular + + + + Good Design and Neighborhoods + Good public design and how it impacts our neighborhoods. + Regular + + + + Special Effects + Mad Max: Fury Road + Special effects on Mad Max - Fury Road. + Shopping + Performing Arts + + + + Sanford Stem Cell Symposium + 2023 + Sanford Stem Cell Symposium 2023 - Peggy Whitson. + Science + + + + Sanford Stem Cell Symposium + 2023: Stem Cells + Sanford Stem Cell Symposium 2023 - Session 6: Stem Cells. + Science + + + + Ethical Challenges in Genomics + Ethics in genomics and patient advocacy. + Science + + + + Sanford Stem Cell Symposium + 2023 + Sanford Stem Cell Symposium 2023 - Peggy Whitson. + Science + + + + Sanford Stem Cell Symposium + 2023: Stem Cells + Sanford Stem Cell Symposium 2023 - Session 6: Stem Cells. + Science + + + + Ethical Challenges in Genomics + Ethics in genomics and patient advocacy. + Science + + + + Race and the Memory of Evil + Looking to history to confront the evils of the past. + History + + + + Healthy Aging + A geroscientist's perspective on aging. + Health + + + + Aging + Social and Societal Implications + Healthy Aging: Social and Societal Implications. + Health + + + + Biological and Clinical Heterogeneity in Medulloblastoma + Research on pediatric medulloblastoma. + Science + + + + Sanford Stem Cell Symposium + 2023 + Sanford Stem Cell Symposium 2023 - Peggy Whitson. + Science + + + + Sanford Stem Cell Symposium + 2023: Stem Cells + Sanford Stem Cell Symposium 2023 - Session 6: Stem Cells. + Science + + + + Ethical Challenges in Genomics + Ethics in genomics and patient advocacy. + Science + + + + KAHNOP + To Tell a Story + KAHNOP - TO TELL A STORY is a public artwork. + Arts & Entertainment + + + + Finding the Common Good + A look at political philosophy. + Regular + + + + Four Winters + Insights into the making of the documentary. + Local + + + + Indian Classical Music + Tradition and Beyond + Performance by Zakir Hussain. + Arts & Entertainment + + + + Brahms German Requiem + Conductor Valery Gergiev and the London Symphony Orchestra present Johannes Brahms' greatest choral work, the German Requiem, featuring soprano Sally Matthews and baritone Christopher Maltman. + + Valery Gergiev + Simon Halsey + London Symphony Chorus + + Specials + Music + + + TVG + + + + Bites and Stings: The Venomous Truth + Snake insect arthropod envenomation. + Health + + + + Human Rights Education + Human rights work in the classroom. + Local + + + TV14 + + + + The Gonzales Family + A family shares how education has changed their lives. + Instructional + + + + Future of Work and Higher Education + Innovations that will transform the labor market. + Instructional + + + + Tijuana vs. América + América vs. Tijuana + Jornada 16 de la Liga MX Apertura 2023. Las Águilas del América se enfrenta a los Xolos de Tijuana. Desde el estadio Azteca, Ciudad de México. + Sports + Soccer + + + + Monterrey vs. Pachuca + Pachuca vs. Monterrey + Pachuca y Monterrey miden fuerzas en partido de la Jornada 16 del torneo Apertura. Encuentro disputado el 4 de noviembre en el estadio Hidalgo. + Sports + Soccer + + + + Vecinos + Las cuotas del mantenimiento + Un programa que relata las vidas de los habitantes de un edificio de apartamentos y cómo interactúan entre ellos. Explora de forma amena los conflictos y sucesos divertidos que pueden ocurrir entre los vecinos. + + César Bono + Eduardo España + Macaria + + Sitcom + + + TVPG + + + + Vecinos + Ropa de paca + Jorjais decide vender ropa de paca afuera del edificio. Además, Luis y Silvia se sienten solos y tristes porque Luisito se ha ido a la guardería. + + César Bono + Eduardo España + Macaria + + Sitcom + + + TVPG + + + + Nosotros los guapos + Boxeador profesional + Albertano y el Vítor hablan sobre el acoso. Rosita llega muy enojada a la casa porque el Chirris le faltó al respeto, Albertano y el Vítor van a enfrentarlo. El Chirris golpea al Vítor y lo deja inconsciente. + + Malillany Marín + Adrián Uribe + Ariel Miramontes + + Soaps + Comedy + + + TV14 + + + + Noticiero Univisión: Fin de semana + La información más importante y actualizada de lo que ha sucedido en el mundo durante el fin de semana, realizado por un equipo de periodistas apasionados por su trabajo, objetivos y veraces que dan las últimas noticias y el resumen de la semana. + News + + + + Esta historia me suena, Vol. 6 + ¿Cómo pagarte? + Marco cae en problemas de drogadicción después de perder a su madre. Sin embargo, Cris llega a su vida y podría ser la luz que lo guíe fuera de la oscuridad antes de que se pierda. + Music + + + TVMA + + + + Contacto deportivo + El destino obligado de los amantes del deporte para estar actualizados sobre las noticias más importantes y los partidos más destacados de todos los deportes masivos. + Sports + News + + + + Vecinos + Ropa de paca + Jorjais decide vender ropa de paca afuera del edificio. Además, Luis y Silvia se sienten solos y tristes porque Luisito se ha ido a la guardería. + + César Bono + Eduardo España + Macaria + + Sitcom + + + TVPG + + + + Vecinos + Las cuotas del mantenimiento + Un programa que relata las vidas de los habitantes de un edificio de apartamentos y cómo interactúan entre ellos. Explora de forma amena los conflictos y sucesos divertidos que pueden ocurrir entre los vecinos. + + César Bono + Eduardo España + Macaria + + Sitcom + + + TVPG + + + + Como dice el dicho + Pueblo chico, infierno grande + Un joven expone constantemente su integridad al cumplir retos por internet y esto lo lleva a descubrir que es adoptado. El joven decide buscar a su madre biológica y descubre una vida totalmente diferente en un pueblo lejano. + + Michael Ronda + Wendy González + Sergio Corona + + Comedy + + + TV14 + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Vecinos + El wifi + Silvia instala internet de alta velocidad en su departamento, sin embargo su conexión está muy lenta pero lo que no sabe es que los vecinos conocen su contraseña y todos se conectan a su red. + + César Bono + Eduardo España + Macaria + + Sitcom + + + TVPG + + + + Noticiero Univisión: Fin de semana + La información más importante y actualizada de lo que ha sucedido en el mundo durante el fin de semana, realizado por un equipo de periodistas apasionados por su trabajo, objetivos y veraces que dan las últimas noticias y el resumen de la semana. + News + + + + Los González + Pasteles locos + Los González comenzarán un nuevo negocio tras haber conseguido pasteles como parte de pago. Serán descubiertos en una nueva faceta. + + Raquel Pankowsky + Alejandro Cuétara + + Sitcom + + + TV14 + + + + Los González + Bromas rompehuesos + Los González deben salir adelante sin importar las consecuencias de los actos de Leo, todos deben progresar. + + Raquel Pankowsky + Alejandro Cuétara + + Sitcom + + + TV14 + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Esta historia me suena, Vol. 6 + Mariposa traicionera + Maite y Diego se conocen en un bar y comienzan una relación, pero él tiene novia y Maite lo descubre. Diego le pide otra oportunidad, pero ella duda si debe aceptar o no. + Music + + + TVG + + + + Fútbol central + El programa elemental para los fans, el cual les indica qué buscar y esperar en la cancha en los próximos partidos y campeonatos. + Sports + Soccer + + + + Atlas vs. Pumas UNAM + Pumas UNAM vs. Club Atlas + Acción en la Jornada 16 de la Liga MX. Los Pumas de la UNAM juegan contra los rojinegros del Atlas. Desde el Estadio Olímpico Universitario. + Sports + Soccer + + + + Al punto con Jorge Ramos + La revista informativa presenta los sucesos más actualizados en los diferentes ámbitos del mundo latino, incluyendo la política, los temas de inmigración, el mundo del entretenimiento, entre otros. + News + + + TV14 + + + + Aquí y ahora + Reportajes de investigaciones periodísticas de temas de actualidad, de vanguardia, de opinión pública y de problemáticas sociales, este además tiene su faceta ligera y algunas veces incluye episodios con entrevistas exclusivas de los famosos. + News Magazine + + + TV14 + + + + Como dice el dicho + Nunca prometer lo que nunca puedas dar o hacer + Un joven se ve afectado por el alcoholismo de su padre y se comporta de manera conflictiva. El padre promete una y otra vez dejar de beber, pero no lo cumple, orillando a su hijo a poner en riesgo su vida. + + Michael Ronda + Wendy González + Sergio Corona + + Comedy + Drama + + + TV14 + + + + Una familia de diez + La ropa nueva se revuelve en casa + Teresa tiene que realizar unas prendas para un desfile. Además, Plácido participará en un torneo de tenis de mesa. + + Jorge Ortiz de Pinedo + Eduardo Manzano + Zully Keith + + Comedy + + + TVPG + + + + Una familia de diez + El bebé de Rosegaby + Plácido ya está en su casa, pero todas las noches sueña con que su jefe regresa por él. Además, la familia piensa que el gusanitito está poseído porque se oyen ruidos extraños cada vez que él los visita. + + Jorge Ortiz de Pinedo + Eduardo Manzano + Zully Keith + + Comedy + + + TVPG + + + + La rosa de Guadalupe + No te fresees, fresa no es un verbo + Una joven no se lleva bien con uno de sus compañeros del colegio debido a su egocentrismo, pero el destino hace que se reencuentren en el futuro y termine profundamente enamorada de él. + + Milia Nader + Diego Lara + Sandra Itzel + + Drama + + + TV14 + + + + La rosa de Guadalupe + Alguien a quien amar + Una pareja decide hacerse cargo del hijo de su amiga fallecida, pero las cosas se salen de control cuando la abuela intenta quitarles al pequeño sin importarle su felicidad. + + Milia Nader + Diego Lara + Sandra Itzel + + Drama + + + TV14 + + + + María de Todos los Ángeles + Sed de triunfo + Doña Lucha aprovecha el corte de agua en la colonia para vender unas cubetas que tenía apartadas. María se pone celosa de la nueva ayudante del equipo de futbol, Citlali, mientras que Albertano se la pasa en la banca por ser mal jugador. + + Mara Escalante + Ariel Miramontes + Carlos Cobos + + Comedy + + + TVPG + + + + Noticiero Univisión: Fin de semana + La información más importante y actualizada de lo que ha sucedido en el mundo durante el fin de semana, realizado por un equipo de periodistas apasionados por su trabajo, objetivos y veraces que dan las últimas noticias y el resumen de la semana. + News + + + + Mira quién baila: ¡La revancha! + Se reunen concursantes que ya han competido en anteriores versiones así como otros destacados artistas que han dado de qué hablar en el baile. + Performing Arts + Game Shows + + + + De noche pero sin sueño + Un espacio que reúne a los grandes talentos de la música, la TV y el cine, y los creadores de contenido. Comedia, música e innovadores segmentos de entretenimiento brindan un ritmo dinámico sorprendiendo al público constantemente. + Performing Arts + Talk Shows + + + TV14 + + + + Aquí y ahora + Reportajes de investigaciones periodísticas de temas de actualidad, de vanguardia, de opinión pública y de problemáticas sociales, este además tiene su faceta ligera y algunas veces incluye episodios con entrevistas exclusivas de los famosos. + News Magazine + + + TV14 + + + + Noticiero Univisión: Fin de semana + La información más importante y actualizada de lo que ha sucedido en el mundo durante el fin de semana, realizado por un equipo de periodistas apasionados por su trabajo, objetivos y veraces que dan las últimas noticias y el resumen de la semana. + News + + + + Sabor de mañana + Un adelanto de lo que sucederá en. + Performing Arts + + + + Noticiero Univisión: Fin de semana + La información más importante y actualizada de lo que ha sucedido en el mundo durante el fin de semana, realizado por un equipo de periodistas apasionados por su trabajo, objetivos y veraces que dan las últimas noticias y el resumen de la semana. + News + + + + Mira quién baila: ¡La revancha! + Se reunen concursantes que ya han competido en anteriores versiones así como otros destacados artistas que han dado de qué hablar en el baile. + Performing Arts + Game Shows + + + + De noche pero sin sueño + Un espacio que reúne a los grandes talentos de la música, la TV y el cine, y los creadores de contenido. Comedia, música e innovadores segmentos de entretenimiento brindan un ritmo dinámico sorprendiendo al público constantemente. + Performing Arts + Talk Shows + + + TV14 + + + + Vecinos + El método Rivers + Lorena está cansada de que Frankie no consiga trabajo y a él se le ocurre una gran idea: abrir una academia de actuación basada en el Método Rivers. + + César Bono + Eduardo España + Macaria + + Sitcom + + + TVPG + + + + Renta congelada + Prefiero mi arte + Ana y Fernando idean un plan para deshacerse de la mesa de billar de Federico. Por otro lado, Ana pinta uno de sus cuadros para su primera exposición sin imaginar que Federico y Fernando le ocasionarían un accidente. + Comedy + + + TV14 + + + + La jugada + El lugar para revivir los sucesos y las noticias más importantes del fin de semana, combinados con entrevistas, emotivas historias y reseñas de todo el mundo deportivo. Secciones dedicadas a fútbol, NFL, MLB, NBA y más. + Sports + Talk Show + + + + María de Todos los Ángeles + El sueño angélico + María de Todos los Ángeles es una mujer que siente que se está haciendo vieja sin haber encontrado el amor de su vida. Ella tiene un sueño en el que los ángeles anuncian que pronto el amor de su vida va a llegar. + + Mara Escalante + Ariel Miramontes + Carlos Cobos + + Comedy + + + TVPG + + + + Noticiero Univisión: Fin de semana + La información más importante y actualizada de lo que ha sucedido en el mundo durante el fin de semana, realizado por un equipo de periodistas apasionados por su trabajo, objetivos y veraces que dan las últimas noticias y el resumen de la semana. + News + + + + Como dice el dicho + Todo en el mundo es robar y el que dude que haga cuentas + Fede y su hermana buscan a Boris, el perro, que fue robado de su casa. Cuando están cerca de encontrarlo, descubren una red criminal dedicada a robar animales en su colonia. + + Michael Ronda + Wendy González + Sergio Corona + + Comedy + + + TV14 + + + + ¡Despierta América! + Revista matutina con noticias, temas de actualidad, reportajes de farándula, música e información práctica. + + Maity Interiano + Andrea Chediak + + Talk Shows + Variety + + + TV14 + + + + Como dice el dicho + El mayate cree que sus hijos son granos de oro + La madre de Mine se queda a cargo del negocio familiar. Sin embargo, aunque Mine quiere estudiar la universidad, sus hermanos se gastan el dinero en apuestas y truncan su sueño. + + Michael Ronda + Wendy González + Sergio Corona + + Comedy + + + TV14 + + + + Noticiero Univision: Edición digital + Noticiero que transmite los hechos mundiales relevantes para la comunidad hispana. Presentado por jóvenes periodistas en un ambiente informal. + News + + + + Nosotros los guapos + Los mariachis + Albertano y el Vítor deciden trabajar de mariachis y hacen un casting para conformar su grupo. Tras armar uno con sus vecinos, usan una grabadora para llevar sus serenatas. + + Malillany Marín + Adrián Uribe + Ariel Miramontes + + Soaps + Comedy + + + TV14 + + + + Hoy + Revista de entretenimiento y estilo de vida que presenta consejos de cocina, proyectos caseros, belleza y salud, además de noticias y artistas invitados. + Talk Shows + Variety + + + + ¡Siéntese quien pueda! + Una serie de panelistas destacados del mundo de la prensa de espectáculos participan en un reality entre ellos mientras se desarrolla el programa. + Game Shows + Performing Arts + + + + Vino el amor + Tentadora oferta + Tano le pide a David que lo deje estar cerca de Fernanda para que salga adelante, pero él le pide que se aleje de ella. Juan le propone a Adolfo darle información sobre el viñedo de David para que gane la competencia de vino. + + Gabriel Soto + Irina Baeva + Christian De la Campa + + Soaps + + + TV14 + + + + El gordo y la flaca + Chismes de celebridades y las últimas noticias de la industria del entretenimiento, en un programa que combina entrevistas con actores, músicos y celebridades. + Talk Shows + Performing Arts + + + TVPG + + + + Primer impacto + Una revista que cubre las noticias de última hora y las más impactantes. Un gran equipo de periodistas ofrece completos informes del país y del mundo. El programa también cuenta con dos segmentos de salud semanales. + News Magazine + + + + Noticiero Univision: Edición digital + Noticiero que transmite los hechos mundiales relevantes para la comunidad hispana. Presentado por jóvenes periodistas en un ambiente informal. + News + + + + Noticiero Univisión + El noticiero transmite los acontecimientos mundiales que son de interés público para la comunidad hispana desde su sede en Florida e incluye reportajes de la política, el clima, los deportes, la educación, la inmigración, entre otros. + News + + + + La rosa de Guadalupe + Falsa palabra + Alina y Rubén son esposos, pero él ya no tiene interés en ella. Después de un ataque de celos, Alina culpa a Rubén de abusar de su hija, por lo que él trata de probar su inocencia. + + Milia Nader + Diego Lara + Sandra Itzel + + Drama + + + TV14 + + + + Eternamente amándonos + El pasado vs. el presente + Martina se despide de sus hijos y familia porque presiente que pronto los va a olvidar. Además, Paula y Eva deciden enfrentar la verdad y hablar de lo sucedido. + + Alejandra Robles Gil + Marcus Ornellas + + Soaps + Drama + + + TVY + + + + Mujer + Arif le confiesa a su padre sus sentimientos por Bahar y su intención de proponerle matrimonio. Un enemigo del pasado regresa a atormentar a Piril y Alp, poniendo en grave peligro sus vidas y la de sus hijos. + + Özge Özpirincci + Seray Kaya + Kubra Suzgun + + Drama + Soaps + + + TV14 + + + + Minas de pasión + Emilia ha muerto + Descubre si Tigre se recupera tras su caída en el bosque. Además, Emilia está lista para regresar por venganza. + + Livia Brito + Osvaldo de León + Anette Michel + + Soaps + + + + Noticiero Univisión + El noticiero transmite los acontecimientos mundiales que son de interés público para la comunidad hispana desde su sede en Florida e incluye reportajes de la política, el clima, los deportes, la educación, la inmigración, entre otros. + News + + + + Sabor de mañana + Un adelanto de lo que sucederá en. + Performing Arts + + + + Noticiero Univision: Edición nocturna + Un repaso de las noticias ocurridas hasta el final el día. Tiene la información completa de las noticias de último minuto y registra con las cámaras desde el lugar de los hechos para que la audiencia quede bien informada antes de terminar el día. + News + + + + Contacto deportivo + El destino obligado de los amantes del deporte para estar actualizados sobre las noticias más importantes y los partidos más destacados de todos los deportes masivos. + Sports + News + + + + Mujer + Arif le confiesa a su padre sus sentimientos por Bahar y su intención de proponerle matrimonio. Un enemigo del pasado regresa a atormentar a Piril y Alp, poniendo en grave peligro sus vidas y la de sus hijos. + + Özge Özpirincci + Seray Kaya + Kubra Suzgun + + Drama + Soaps + + + TV14 + + + + Minas de pasión + Emilia ha muerto + Descubre si Tigre se recupera tras su caída en el bosque. Además, Emilia está lista para regresar por venganza. + + Livia Brito + Osvaldo de León + Anette Michel + + Soaps + + + + Vecinos + Cuando un esposo se va + Arturo decide ir a vivir a casa de Luis, Magda se molesta y cree que Luis lo está mal influenciando. Luis le dice a Magda que todos los vecinos están hartos de su mal carácter, ella lo golpea. + + César Bono + Eduardo España + Macaria + + Sitcom + + + TVPG + + + + La familia P. Luche + Viva el domingo + Federica hace planes para comer con sus papás pero Ludovico muere por ver el fútbol, así que arma una estrategia para regresar temprano a casa. En casa de sus suegros, Ludovico se las ingenia para estar enterado de cómo va el partido. + + Eugenio Derbez + Consuelo Duval + Luis Manuel Ávila + + Sitcom + + + TV14 + + + + Quiero Amarte + La trampa de Lucrecia + César le pide a uno de sus empleados que ponga cámaras en la oficina de Amaya; Iván despierta y cree que es novio de Cecilia. + + Karyme Lozano + Cristian de la Fuente + Diana Bracho + + Soaps + + + + Nosotros los guapos + Los mariachis + Albertano y el Vítor deciden trabajar de mariachis y hacen un casting para conformar su grupo. Tras armar uno con sus vecinos, usan una grabadora para llevar sus serenatas. + + Malillany Marín + Adrián Uribe + Ariel Miramontes + + Soaps + Comedy + + + TV14 + + + + Noticiero Univision: Edición nocturna + Un repaso de las noticias ocurridas hasta el final el día. Tiene la información completa de las noticias de último minuto y registra con las cámaras desde el lugar de los hechos para que la audiencia quede bien informada antes de terminar el día. + News + + + + Como dice el dicho + El mayate cree que sus hijos son granos de oro + La madre de Mine se queda a cargo del negocio familiar. Sin embargo, aunque Mine quiere estudiar la universidad, sus hermanos se gastan el dinero en apuestas y truncan su sueño. + + Michael Ronda + Wendy González + Sergio Corona + + Comedy + + + TV14 + + + + ¡Despierta América! + Revista matutina con noticias, temas de actualidad, reportajes de farándula, música e información práctica. + + Maity Interiano + Andrea Chediak + + Talk Shows + Variety + + + TV14 + + + + Como dice el dicho + Cuando el tiempo ayuda, hasta los troncos retoñan + Mariano acaba de salir de prisión y quiere comenzar una nueva vida. Sin embargo, se reencuentra con Antonio, el culpable de que fuera a prisión, por lo que sus planes podrían cambiar. + + Michael Ronda + Wendy González + Sergio Corona + + Comedy + + + TV14 + + + + Paris Saint-Germain vs. AC Milan + AC Milan vs. Paris Saint-Germain FC + Jornada 4 del Grupo F de la Champions League. Milan se enfrenta a Paris Saint-Germain. Desde el estadio Giuseppe Meazza. + Sports + Soccer + + + + Noticiero Univision: Edición digital + Noticiero que transmite los hechos mundiales relevantes para la comunidad hispana. Presentado por jóvenes periodistas en un ambiente informal. + News + + + + Nosotros los guapos + Los guapos chambelanes + El Vítor le dice a Albertano que usó sus revistas de lucha libre como papel de baño. El Vítor y Albertano ven el anuncio de un baile que habrá en el barrio y los dos quieren invitar a Rosita. + + Malillany Marín + Adrián Uribe + Ariel Miramontes + + Soaps + Comedy + + + TV14 + + + + ¡Siéntese quien pueda! + Una serie de panelistas destacados del mundo de la prensa de espectáculos participan en un reality entre ellos mientras se desarrolla el programa. + Game Shows + Performing Arts + + + + El gordo y la flaca + Chismes de celebridades y las últimas noticias de la industria del entretenimiento, en un programa que combina entrevistas con actores, músicos y celebridades. + Talk Shows + Performing Arts + + + TVPG + + + + Primer impacto + Una revista que cubre las noticias de última hora y las más impactantes. Un gran equipo de periodistas ofrece completos informes del país y del mundo. El programa también cuenta con dos segmentos de salud semanales. + News Magazine + + + + Noticiero Univision: Edición digital + Noticiero que transmite los hechos mundiales relevantes para la comunidad hispana. Presentado por jóvenes periodistas en un ambiente informal. + News + + + + Noticiero Univisión + El noticiero transmite los acontecimientos mundiales que son de interés público para la comunidad hispana desde su sede en Florida e incluye reportajes de la política, el clima, los deportes, la educación, la inmigración, entre otros. + News + + + + La rosa de Guadalupe + El rostro de mi abuela + Iván tiene problemas en casa y sus padres lo descuidan. Por hacer caso a malas amistades, él genera una adicción a las drogas de la cual solo su abuela lo ayuda a salir. + + Milia Nader + Diego Lara + Sandra Itzel + + Drama + + + TV14 + + + + Eternamente amándonos + El último cumpleaños + Fernando le pide matrimonio a Imelda de nuevo. Además, durante su cumpleaños, Gabriel habla con Rogelio sobre lo que hará cuando Martina los olvide. + + Alejandra Robles Gil + Marcus Ornellas + + Soaps + Drama + + + TV14 + + + + Mujer + Enver confronta a Sirin acerca del dinero que encontró en su habitación. Ante los reclamos de Enver, Sirin se va de la casa y busca refugio con Suat. Mientras tanto, la enfermedad de Bahar progresa cada día más. + + Özge Özpirincci + Seray Kaya + Kubra Suzgun + + Drama + Soaps + + + TV14 + + + + Minas de pasión + Nace Victoria Alcázar + Emilia ha quedado atrás y ahora Victoria Alcázar será quien tome posesión de sus cosas y haga justicia por Emilia. Además, una visita inesperada hará que Nicolás regrese a San Lorenzo. + + Livia Brito + Osvaldo de León + Anette Michel + + Soaps + + + + Noticiero Univisión + El noticiero transmite los acontecimientos mundiales que son de interés público para la comunidad hispana desde su sede en Florida e incluye reportajes de la política, el clima, los deportes, la educación, la inmigración, entre otros. + News + + + + Sabor de mañana + Un adelanto de lo que sucederá en. + Performing Arts + + + + Noticiero Univision: Edición nocturna + Un repaso de las noticias ocurridas hasta el final el día. Tiene la información completa de las noticias de último minuto y registra con las cámaras desde el lugar de los hechos para que la audiencia quede bien informada antes de terminar el día. + News + + + + Contacto deportivo + El destino obligado de los amantes del deporte para estar actualizados sobre las noticias más importantes y los partidos más destacados de todos los deportes masivos. + Sports + News + + + + Mujer + Enver confronta a Sirin acerca del dinero que encontró en su habitación. Ante los reclamos de Enver, Sirin se va de la casa y busca refugio con Suat. Mientras tanto, la enfermedad de Bahar progresa cada día más. + + Özge Özpirincci + Seray Kaya + Kubra Suzgun + + Drama + Soaps + + + TV14 + + + + Minas de pasión + Nace Victoria Alcázar + Emilia ha quedado atrás y ahora Victoria Alcázar será quien tome posesión de sus cosas y haga justicia por Emilia. Además, una visita inesperada hará que Nicolás regrese a San Lorenzo. + + Livia Brito + Osvaldo de León + Anette Michel + + Soaps + + + + Vecinos + Vecinos en Ixtapa + Magdalena organiza un viaje a Ixtapa y convence a todos los vecinos para que vayan, pero los engaña cobrándoles más dinero. Magda se emborracha y termina pagando todo. + + César Bono + Eduardo España + Macaria + + Sitcom + + + TVPG + + + + La familia P. Luche + Encuentro casual + Federica se encuentra a su amiga Columba y las indirectas entre ellas no se hacen esperar; Federica quiere vengarse de que Columba y Bacilio les ganaron en el dominó, los invitan a una fiesta pero ellos a cambio de ir les piden varios favores. + + Eugenio Derbez + Consuelo Duval + Luis Manuel Ávila + + Sitcom + + + TV14 + + + + Quiero Amarte + Sin memoria + Juliana enfrenta a su ex novio y le pregunta por qué fue tan cruel con ella; Juliana descubre a César rociando un líquido en su carro; Max le pide a Constanza que intenten tener una nueva relación. + + Karyme Lozano + Cristian de la Fuente + Diana Bracho + + Soaps + + + + Nosotros los guapos + Los guapos chambelanes + El Vítor le dice a Albertano que usó sus revistas de lucha libre como papel de baño. El Vítor y Albertano ven el anuncio de un baile que habrá en el barrio y los dos quieren invitar a Rosita. + + Malillany Marín + Adrián Uribe + Ariel Miramontes + + Soaps + Comedy + + + TV14 + + + + Noticiero Univision: Edición nocturna + Un repaso de las noticias ocurridas hasta el final el día. Tiene la información completa de las noticias de último minuto y registra con las cámaras desde el lugar de los hechos para que la audiencia quede bien informada antes de terminar el día. + News + + + + Como dice el dicho + Pueblo chico, infierno grande + Un joven expone constantemente su integridad al cumplir retos por internet y esto lo lleva a descubrir que es adoptado. El joven decide buscar a su madre biológica y descubre una vida totalmente diferente en un pueblo lejano. + + Michael Ronda + Wendy González + Sergio Corona + + Comedy + + + TV14 + + + + ¡Despierta América! + Revista matutina con noticias, temas de actualidad, reportajes de farándula, música e información práctica. + + Maity Interiano + Andrea Chediak + + Talk Shows + Variety + + + TV14 + + + + Como dice el dicho + Malo es errar y peor es perseverar + La madre de Sasha no confía en Víctor, su yerno, pero su hija está muy enamorada. Cuando Víctor se mete en problemas serios, presiona a Sasha para crear contenido sexual y pagar su deuda. + + Michael Ronda + Wendy González + Sergio Corona + + Comedy + + + TV14 + + + + Sevilla vs. Arsenal + Arsenal vs. Sevilla + Crónica del partido Arsenal contra Sevilla correspondiente al Grupo B de la fase de grupos de la Liga de Campeones de la UEFA. + Sports + Soccer + + + + Noticiero Univision: Edición digital + Noticiero que transmite los hechos mundiales relevantes para la comunidad hispana. Presentado por jóvenes periodistas en un ambiente informal. + News + + + + Nosotros los guapos + Ilegales + El Vítor se molesta con Albertano porque salieron tarde para buscar trabajo. Albertano y el Vítor no traen dinero para los tacos en un puesto, por lo que el Huevo y el Bizco los pagan para que trabajen para ellos. + + Malillany Marín + Adrián Uribe + Ariel Miramontes + + Soaps + Comedy + + + TV14 + + + + ¡Siéntese quien pueda! + Una serie de panelistas destacados del mundo de la prensa de espectáculos participan en un reality entre ellos mientras se desarrolla el programa. + Game Shows + Performing Arts + + + + Eyewitness News + Breaking news. + News + + + + Wheel of Fortune + Fabulous Food + In a classic game-show version of. + Game Shows + + + TVG + + + + Jeopardy! + The Emmy-winning quiz show features a unique answer-and-question format. + Game Shows + + + TVG + + + + On the Red Carpet + CMA Awards Preview + A look at the year's CMA award nominees, presenters and performers. + Performing Arts + + + + Eyewitness News + Breaking news. + News + + + + Eyewitness News 11PM + Local, national and international news. + News + + + + Game Time with Coach McVay + Sports + + + + Rams 360 + Enjoy highlights and stories from Los Angeles Rams. + Sports + Football + + + + 9-1-1 + Pinned + Accidents happen at a bowling alley and a home renovation; Athena pursues a car thief; Bobby and Michael take Harry camping; Chimney and Maddie rush into action when their romantic dinner date takes a wild turn. + + Angela Bassett + Peter Krause + Oliver Stark + + Drama + + + TV14 + + + + The Rookie + La Fiera + Officer John Nolan's mom makes an unannounced visit, which complicates his life; Sgt. Grey considers retiring. + + Nathan Fillion + Mekia Cox + Alyssa Diaz + + Drama + + + TV14 + + + + Destination: Palm Springs + Escape to the Southern California desert and explore the resort town of Palm Springs. It's a perfect place to do a little shopping and dining, relax by the pool, or pamper yourself at the spa, plus don't forget to check out the Agua Caliente casinos. + Specials + Travel + + + TV14 + + + + Destination: Disney Castaway Cay + Set sail on the Wish, the newest ship in the Disney Cruise Line fleet, to Disney Castaway Cay in the Bahamas. + Specials + Travel + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Relief from inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all natural solution for joint pain from inflammation. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Eyewitness News 5AM + News coverage to start the day. + News + + + + Good Morning America + Up-to-the-minute news, weather, lifestyle and topical features. + Talk Shows + News + + + + Eyewitness News at 7AM + News + + + + This Week With George Stephanopoulos + Anchor George Stephanopoulos and co-anchors Martha Raddatz and Jonathan Karl interview top newsmakers and officials, with reporting from across the country and roundtable debates over the hottest political issues. + Talk Shows + News + + + + Eyewitness News 9:00AM + News coverage to start the day. + News + + + + Eyewitness News 10AM + News coverage to start the day. + News + + + + ABC7 Presents the Grand Parade Día de Los Muertos + Specials + News + + + + 2023 TCS New York City Marathon + The annual New York City Marathon winds its 26 mile course through the city's five boroughs and draws record numbers of participants, including the world's top runners. + Sports + Athletics + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Wildlife Nation With Jeff Corwin + Florida Gold + Saving gopher tortoises from a real estate development; how gopher tortoises contribute to Florida's ecosystem by providing important habitat for many other species. + Animals + Instructional + + + + oh baby! + Unearthing the Unexpected + Host Janai Norman takes a closer look at some of the strangest creatures on the planet. + Animals + Instructional + + + TVG + + + + Hearts of Heroes + Friend on the Frontline + An unlikely hero comes to the rescue of an off-duty police officer who falls unconscious in a canyon. + Reality TV + + + TVG + + + + Vets Saving Pets + The Travels and Travails of Bella + A ragdoll cat named Bella is rescued; a dog named Teddy suffers from severe anxiety; Dim Sum the pug needs to shed a few pounds. + Animals + Documentary + + + TVG + + + + Eyewitness News 4:30PM + Early evening news. + News + + + + Eyewitness News 5PM + Early evening news. + News + + + + ABC World News Tonight With David Muir + The latest news from America, as reported by the ABC television network. + News + + + + Eyewitness News 6PM + Local, national and international news. + News + + + + On the Red Carpet + CMA Awards Preview + A look at the year's CMA award nominees, presenters and performers. + Performing Arts + + + + America's Funniest Home Videos + A mom plays ice cream truck music to prank her teen; a teenager makes a wrong turn during her driving lesson; comical snow snafus. + Reality TV + Comedy + + + TVPG + + + + Coco + Accompanied by a charming trickster, a young musician embarks on an extraordinary journey through the colorful Land of the Dead to unlock the real story behind his family's history. + + Anthony Gonzalez + Gael García Bernal + Benjamin Bratt + + 2017 + Movies + Animated + + + TVG + + + 3 + + + + Generation Gap + I Love It When It's Summertime + The seniors and juniors are joined by special celebrity guest Cheryl Ladd.Guests: Cheryl Ladd.. + Game Shows + + + TVPG + + + + Eyewitness News 11PM + Local, national and international news. + News + + + + ABC7's Sunday Night Sports + Fast paced wrap up of the day's sports news. + Sports + + + + 9-1-1 + Eddie Begins + Eddie's journey to rescue a boy from a well turns into a mission to save himself from his past. + + Angela Bassett + Peter Krause + Oliver Stark + + Drama + + + TV14 + + + + The Rookie + Sabotage + Officer Jackson West's relationship with his new training officer, Stanton, escalates, and he begins to work with Sgt. Grey to find a solution. + + Nathan Fillion + Mekia Cox + Alyssa Diaz + + Drama + + + TV14 + + + + This Week With George Stephanopoulos + Anchor George Stephanopoulos and co-anchors Martha Raddatz and Jonathan Karl interview top newsmakers and officials, with reporting from across the country and roundtable debates over the hottest political issues. + Talk Shows + News + + + + ABC World News Now + Global news. + News + + + + America This Morning + The early-morning news program presenting breaking news, trending stories and viral videos covering everything from business to weather to sports. + News + + + + Eyewitness News 4AM + News coverage to start the day. + News + + + + Eyewitness News 4:30AM + News coverage to start the day. + News + + + + Eyewitness News 5AM + News coverage to start the day. + News + + + + Eyewitness News 6AM + News coverage to start the day. + News + + + + Good Morning America + Up-to-the-minute news, weather, lifestyle and topical features. + Talk Shows + News + + + + Live with Kelly and Mark + Great Getaways Week + Gerry Turner (ABC'sGuests: Gerry Turner, Samantha Brown.. + Talk Shows + + + TVPG + + + + The View + Celebrity and political guests join the panel of hosts for up-to-the-minute hot topics and invaluable conversations. + Talk Shows + + + TV14 + + + + Eyewitness News 11AM + Midday news update. + News + + + + GMA3: What You Need to Know + News, lifestyle and entertainment program hosted by Eva Pilgrim, DeMarco Morgan and Dr. Jennifer Ashton. + News + Talk Shows + + + + Tamron Hall + From the deeply moving to the purely fun, the show is a daily destination for all things topical and a platform for viewers to connect with the people who are shaping the world through meaningful, engaging and entertaining conversations. + Talk Shows + + + TVPG + + + + General Hospital + The ongoing lives of the diverse and evolving citizens of the fictional town of Port Charles in upstate New York. + + Maurice Benard + Steve Burton + Michael Easton + + Soaps + + + TV14 + + + + Eyewitness News 3PM + Local, national and international news. + News + + + + ABC World News Tonight With David Muir + The latest news from America, as reported by the ABC television network. + News + + + + Eyewitness News 4PM + Early evening news. + News + + + + Los Angeles Chargers vs. New York Jets + Los Angeles Chargers at New York Jets + The streaking Jets (4-3) welcome the Chargers (3-4) to MetLife Stadium for Monday Night Football. The Jets have won three straight following a 13-10 victory in overtime over the Giants. Los Angeles is back on track after blasting Chicago 30-13. + Sports + Football + + + + ABC7's Post Game + Sports + + + + Wheel of Fortune + Veterans Week + In a classic game-show version of. + Game Shows + + + TVG + + + + Jeopardy! + Champions Wildcard + The Emmy-winning quiz show features a unique answer-and-question format. + Game Shows + + + TVG + + + + Eyewitness News + Breaking news. + News + + + + Eyewitness News 11PM + Local, national and international news. + News + + + + Jimmy Kimmel Live! + Magic Johnson; José Andrés; Jordan Davis + Former professional basketball player Magic Johnson; chef José Andrés; Jordan Davis performs.Guests: Magic Johnson, José Andrés.. + Talk Shows + Comedy + + + TV14 + + + + Nightline + In-depth reporting on news and events with Juju Chang and Byron Pitts. + Talk Shows + News + + + + Tamron Hall + Music to My Ears + A special concert hour: J.J. Hairston, Infinity Song, and Brandee Younger perform. + Talk Shows + + + TVPG + + + + Live with Kelly and Mark + Great Getaways Week + Gerry Turner (ABC'sGuests: Gerry Turner, Samantha Brown.. + Talk Shows + + + TVPG + + + + ABC World News Now + Global news. + News + + + + America This Morning + The early-morning news program presenting breaking news, trending stories and viral videos covering everything from business to weather to sports. + News + + + + Eyewitness News 4AM + News coverage to start the day. + News + + + + Eyewitness News 4:30AM + News coverage to start the day. + News + + + + Eyewitness News 5AM + News coverage to start the day. + News + + + + Eyewitness News 6AM + News coverage to start the day. + News + + + + Good Morning America + Author Holly Marie; actress Megan Fox; author Alex Aster.Guests: Holly Marie, Megan Fox, Alex Aster.. + Talk Shows + News + + + + Live with Kelly and Mark + Great Getaways Week + The winner of the year's NASCAR championship race; professional mixed martial artist Sean O'Malley; Jacqui Gifford shares some foodie destinations.Guests: Sean O'Malley, Jacqui Gifford.. + Talk Shows + + + TVPG + + + + The View + Filmmaker Tyler Perry; author Holly Marie.Guests: Tyler Perry, Holly Marie.. + Talk Shows + + + TV14 + + + + Eyewitness News 11AM + Midday news update. + News + + + + GMA3: What You Need to Know + ABC News political director Rick Klein; North Carolina Democratic Party chair Anderson Clayton; Alabama Republican Party chair John Wahl; journalists MaryAlice Parks, Alex Presha, Elizabeth Schulze and Rachel Scott; Rep. Maxwell Frost (D-Fla.).Guests: Rick Klein, Anderson Clayton, MaryAlice Parks, Alex Presha, Elizabeth Schulze, Rachel Scott, Maxwell Frost, John Wahl.. + News + Talk Shows + + + + Tamron Hall + Putting Yourself out There + Gerry Turner (Guests: Gerry Turner, Sonya Renee Taylor, Joel Madden.. + Talk Shows + + + TVPG + + + + General Hospital + Sonny offers support to Anna; Robert offers an explanation; Gregory helps Alexis with an ethical issue; Sam is overjoyed; Curtis gets valuable advice. + + Maurice Benard + Steve Burton + Michael Easton + + Soaps + + + TV14 + + + + Eyewitness News 3PM + Local, national and international news. + News + + + + ABC World News Tonight With David Muir + The latest news from America, as reported by the ABC television network. + News + + + + Eyewitness News 4PM + Early evening news. + News + + + + Eyewitness News 5PM + Early evening news. + News + + + + Eyewitness News 6PM + Local, national and international news. + News + + + + ABC World News Tonight With David Muir + The latest news from America, as reported by the ABC television network. + News + + + + Jeopardy! + Champions Wildcard + The Emmy-winning quiz show features a unique answer-and-question format. + Game Shows + + + TVG + + + + Wheel of Fortune + Veterans Week + In a classic game-show version of. + Game Shows + + + TVG + + + + Dancing With the Stars + Music Video Night + The eight remaining couples prepare for an electrifying night as they perform dances to songs behind the most iconic music videos; guest judge Paula Abdul.Guests: Paula Abdul.. + Performing Arts + Game Shows + + + TVPG + + + + Dancing With the Stars + Music Video Night + The eight remaining couples prepare for an electrifying night as they perform dances to songs behind the most iconic music videos; guest judge Paula Abdul.Guests: Paula Abdul.. + Performing Arts + Game Shows + + + TVPG + + + + Dolly Parton -- From Rhinestones to Rock & Roll + Specials + Performing Arts + + + TVPG + + + + Eyewitness News 11PM + Local, national and international news. + News + + + + Jimmy Kimmel Live! + Saint Harison + Saint Harison performs. + Talk Shows + Comedy + + + TV14 + + + + Nightline + In-depth reporting on news and events with Juju Chang and Byron Pitts. + Talk Shows + News + + + + Tamron Hall + Putting Yourself out There + Gerry Turner (Guests: Gerry Turner, Sonya Renee Taylor, Joel Madden.. + Talk Shows + + + TVPG + + + + Live with Kelly and Mark + Great Getaways Week + The winner of the year's NASCAR championship race; professional mixed martial artist Sean O'Malley; Jacqui Gifford shares some foodie destinations.Guests: Sean O'Malley, Jacqui Gifford.. + Talk Shows + + + TVPG + + + + ABC World News Now + Global news. + News + + + + America This Morning + The early-morning news program presenting breaking news, trending stories and viral videos covering everything from business to weather to sports. + News + + + + Eyewitness News 4AM + News coverage to start the day. + News + + + + Eyewitness News 4:30AM + News coverage to start the day. + News + + + + Eyewitness News 5AM + News coverage to start the day. + News + + + + Eyewitness News 6AM + News coverage to start the day. + News + + + + Good Morning America + Former professional football player Peyton Manning; singer Luke Bryan; ABC News correspondent Bob Woodruff with wife and author Lee Woodruff; Megan Moroney talks and performs.Guests: Peyton Manning, Luke Bryan, Bob Woodruff, Lee Woodruff.. + Talk Shows + News + + + + Live with Kelly and Mark + Great Getaways Week + Ian Somerhalder (documentaryGuests: Ian Somerhalder, Amy Goodman.. + Talk Shows + + + TVPG + + + + The View + Politician Hillary Clinton and producer Shannon Cohn.Guests: Hillary Clinton, Shannon Cohn.. + Talk Shows + + + TV14 + + + + Eyewitness News 11AM + Midday news update. + News + + + + GMA3: What You Need to Know + ABC News political director Rick Klein; Megan Moroney talks and performs; Deals and Steals with Tory Johnson.Guests: Rick Klein, Tory Johnson.. + News + Talk Shows + + + + Tamron Hall + How's Your Game? + Robin Roberts (Guests: Robin Roberts, Sydney Colson, Theresa Plaisance.. + Talk Shows + + + TVPG + + + + General Hospital + Tracy makes an announcement; Michael is relieved; Austin is cagey; Sonny shares shocking info with Ava; Sasha tries to mend a broken bond. + + Maurice Benard + Steve Burton + Michael Easton + + Soaps + + + TV14 + + + + Eyewitness News 3PM + Local, national and international news. + News + + + + ABC World News Tonight With David Muir + The latest news from America, as reported by the ABC television network. + News + + + + Planet Earth: Blue Planet II + Green Seas + In green seas, competition is fierce. Sunlight powers vast kelp forests, mangroves, prairies of seagrass and blooms of algae. Here, animals must fight for space and food. In kelp forests, a common octopus must become the ultimate escape artist. + Documentary + + + TVG + + + + Planet Earth: Blue Planet II + Big Blue + The Big Blue is a marine desert, far from shore, miles deep, with almost nothing to eat and home to some of the largest creatures on Earth; special pressure-proofed cameras capture Sperm whales on the hunt for squid 3,000 feet down. + Documentary + + + TVG + + + + Planet Earth: Blue Planet II + Coral Reefs + Coral reefs are home to one-quarter of all marine species and survival in these undersea megacities is a challenge with many different solutions; a turtle heads to the reef's equivalent of a health spa, but she must use trickery to avoid the queue. + Documentary + + + TVG + + + + Planet Earth III + Coasts + Sir David Attenborough explores the dangerous frontiers created by the world's coasts, where animals fight for survival amid constant change; there are some unexpected residents on Namibia's Skeleton Coast. + Documentary + + + + Planet Earth: Blue Planet II + Our Blue Planet + Pioneers strive to protect the ocean from the effects of human activity. + Documentary + + + TVPG + + + + Planet Earth: Blue Planet II + One Ocean + Life exists in nearly every part of the oceans, and the different regions present unique challenges for its inhabitants. + Documentary + + + TVPG + + + + Planet Earth: Blue Planet II + One Ocean + Life exists in nearly every part of the oceans, and the different regions present unique challenges for its inhabitants. + Documentary + + + TVPG + + + + Planet Earth: Blue Planet II + The Deep + An unimaginable abundance of life in the pitch-black darkness of the seabed; Antarctica is the coldest, harshest and most remote continent on earth. + Documentary + + + TVG + + + + Planet Earth III + Coasts + Sir David Attenborough explores the dangerous frontiers created by the world's coasts, where animals fight for survival amid constant change; there are some unexpected residents on Namibia's Skeleton Coast. + Documentary + + + + Planet Earth: Blue Planet II + The Best of the Blue Planet II + Revisiting the most memorable scenes; highlights include giant trevally that fly out of the water to snatch seabirds in midair and the industrious tuskfish who uses a coral anvil to crack open its clams. + Documentary + + + TVPG + + + + Planet Earth II + Mountains + The secretive lives of mountain animals; snow leopards come together to help a mother and cub, trapped between rival males. + Animals + Documentary + + + + Planet Earth II + Islands + Remote islands offer sanctuary; pygmy three-toed sloth resides on a Caribbean island; nesting albatross thrive in isolation. + Animals + Documentary + + + + Planet Earth II + Jungles + From the jungles of Brazil to Costa Rica, animals face life in the most competitive place on Earth. + Animals + Documentary + + + TVPG + + + + Hidden Habitats + Them & Us + The connections between humans and insects. + Documentary + + + TVPG + + + + Planet Earth: Blue Planet II + Green Seas + In green seas, competition is fierce. Sunlight powers vast kelp forests, mangroves, prairies of seagrass and blooms of algae. Here, animals must fight for space and food. In kelp forests, a common octopus must become the ultimate escape artist. + Documentary + + + TVG + + + + Planet Earth: Blue Planet II + One Ocean + Life exists in nearly every part of the oceans, and the different regions present unique challenges for its inhabitants. + Documentary + + + TVPG + + + + Planet Earth: Blue Planet II + Coasts + At the coast, two worlds collide. Coasts is the story of how our wildlife survives in this ever-changing world. It's a roller-coaster ride of heart-stopping action and epic drama, with characters from beautiful to bizarre. + Documentary + + + TVPG + + + + Planet Earth: Blue Planet II + Coral Reefs + Coral reefs are home to one-quarter of all marine species and survival in these undersea megacities is a challenge with many different solutions; a turtle heads to the reef's equivalent of a health spa, but she must use trickery to avoid the queue. + Documentary + + + TVG + + + + Highlander + A New Yorker (Christopher Lambert) beheads a swordsman in a parking lot, continuing a battle of immortals. + + Christopher Lambert + Sean Connery + Roxanne Hart + + 1986 + Movies + Fantasy + + + TVPG + + + 2 + + + + Robin Hood + In 13th-century England, a skilled archer (Russell Crowe) and his men confront a despot in a local village and set out to prevent their homeland from erupting in civil war. + + Russell Crowe + Cate Blanchett + William Hurt + + 2010 + Movies + Adventure + + + TVG + + + 2 + + + + Robin Hood: Prince of Thieves + The archer (Kevin Costner) and his Moorish sidekick (Morgan Freeman) join Sherwood Forest outlaws against the sheriff of Nottingham, who covets Maid Marian (Mary Elizabeth Mastrantonio). + + Kevin Costner + Morgan Freeman + Mary Elizabeth Mastrantonio + + 1991 + Movies + Adventure + + + TVG + + + 2 + + + + Troy + The fierce warrior Achilles (Brad Pitt) leads Greek forces in the Trojan War, ignited when Paris (Orlando Bloom) abducts Helen of Troy. + + Brad Pitt + Eric Bana + Orlando Bloom + + 2004 + Movies + Adventure + + + TVPG + + + 3 + + + + Robin Hood: Prince of Thieves + The archer (Kevin Costner) and his Moorish sidekick (Morgan Freeman) join Sherwood Forest outlaws against the sheriff of Nottingham, who covets Maid Marian (Mary Elizabeth Mastrantonio). + + Kevin Costner + Morgan Freeman + Mary Elizabeth Mastrantonio + + 1991 + Movies + Adventure + + + TVG + + + 2 + + + + Troy + The fierce warrior Achilles (Brad Pitt) leads Greek forces in the Trojan War, ignited when Paris (Orlando Bloom) abducts Helen of Troy. + + Brad Pitt + Eric Bana + Orlando Bloom + + 2004 + Movies + Adventure + + + TVPG + + + 3 + + + + Star Trek: The Next Generation + Conundrum + Amnesia leaves the crew with the ability to run the ship but no memory of becoming involved in a war they find themselves fighting. + + Patrick Stewart + Jonathan Frakes + LeVar Burton + + Sci-Fi + Drama + + + TVPG + + + + The Three Stooges + If a Body Meets a Body + Curly is mentioned in a will. + + Moe Howard + Larry Fine + Curly Howard + + Comedy + + + TVPG + + + + Star Trek: The Next Generation + Power Play + Troi, Data and O'Brien are enveloped by a strange cloud that effects changes in their personalities and causes them to take over the ship. + + Patrick Stewart + Jonathan Frakes + LeVar Burton + + Sci-Fi + Drama + + + TVPG + + + + Star Trek: The Next Generation + Ethics + Dr. Crusher and a colleague disagree over an experimental operation for Worf, who is paralyzed after an accident and considering a Klingon suicide ritual. + + Patrick Stewart + Jonathan Frakes + LeVar Burton + + Sci-Fi + Drama + + + TVPG + + + + Star Trek: The Next Generation + The Outcast + Riker enters into a dangerous liaison with a member of the androgynous J'naii race, who considers herself to only have one gender, a crime in J'naii society. + + Patrick Stewart + Jonathan Frakes + LeVar Burton + + Sci-Fi + Drama + + + TVPG + + + + Star Trek: The Next Generation + Cause and Effect + The ship is trapped in a time warp that forces the crew to endlessly repeat the same experiences, and could ultimately lead to their destruction. + + Patrick Stewart + Jonathan Frakes + LeVar Burton + + Sci-Fi + Drama + + + TVPG + + + + Star Trek: The Next Generation + The First Duty + Wesley Crusher allows himself to become involved in a cover-up of a Starfleet Academy accident that cost the life of one of his friends. + + Patrick Stewart + Jonathan Frakes + LeVar Burton + + Sci-Fi + Drama + + + TVPG + + + + Star Trek: The Next Generation + Cost of Living + As the ship encounters mechanical problems, Lwaxana Troi takes Worf's son under her wing while she prepares for her wedding. + + Patrick Stewart + Jonathan Frakes + LeVar Burton + + Sci-Fi + Drama + + + TVPG + + + + Star Trek: The Next Generation + The Perfect Mate + Picard finds himself attracted to a beautiful woman being given as a gift to promote reconciliation between two warring systems. + + Patrick Stewart + Jonathan Frakes + LeVar Burton + + Sci-Fi + Drama + + + TVPG + + + + Star Trek: The Next Generation + Imaginary Friend + While exploring a rare nebula around a neutron star, the Enterprise's safety is threatened by a little girl's imaginary playmate. + + Patrick Stewart + Jonathan Frakes + LeVar Burton + + Sci-Fi + Drama + + + TVPG + + + + Star Trek: The Next Generation + I, Borg + An encounter with an injured adolescent Borg affords Picard the opportunity to remove the Borg threat forever. + + Patrick Stewart + Jonathan Frakes + LeVar Burton + + Sci-Fi + Drama + + + TVPG + + + + Star Trek: The Next Generation + The Next Phase + Geordi and Ro disappear and are presumed dead after a transporting maneuver from a disabled Romulan science ship goes awry. + + Patrick Stewart + Jonathan Frakes + LeVar Burton + + Sci-Fi + Drama + + + TVPG + + + + Star Trek: The Next Generation + The Inner Light + Picard awakens after being hit by a mysterious particle stream to find he is living another life on a strange planet. + + Patrick Stewart + Jonathan Frakes + LeVar Burton + + Sci-Fi + Drama + + + TVPG + + + + Law & Order + Swept Away: A Very Special Episode + When a murder happens on a reality television program, investigators try to identify the real culprits. + + Jerry Orbach + Jesse L. Martin + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + Bronx Cheer + While investigating a murder, Briscoe and Green discover their prime suspect may be guilty of a homicide another man has been convicted of. + + Jerry Orbach + Jesse L. Martin + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + Ego + A rising politician is suspected in the murder of a state investigator after Briscoe and Green discover he had a relationship with her. + + Jerry Orbach + Jesse L. Martin + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + White Lie + A drugs-and-money trail leads to a woman whose military husband directs anti-drug efforts in Colombia. + + Jerry Orbach + Jesse L. Martin + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + Whiplash + A man's death is linked to a series of car crashes that finds the same employer, chiropractor, insurance adjuster and lawyers profiting. + + Jerry Orbach + Jesse L. Martin + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + All My Children + The murder of a prep school student points to a mystery woman who may have been extorting money from the victim's wealthy father. + + Jerry Orbach + Jesse L. Martin + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + Brother's Keeper + Briscoe and Green (Jerry Orbach, Jesse L. Martin) discover a murdered businessman may have been the target of a well-known criminal (guest star Michael O'Keefe), but the investigation stumbles when the FBI acts as the suspect's alibi. + + Jerry Orbach + Jesse L. Martin + S. Epatha Merkerson + + Drama + + + TV14 + + + + The Graham Norton Show + Dame Judi Dench; Arnold Schwarzenegger; Jack Whitehall; Jay Blades; Duran Duran.Guests: Judi Dench, Arnold Schwarzenegger, Jack Whitehall, Jay Blades.. + Talk Shows + Performing Arts + + + TV14 + + + + Recipes for Love and Murder + Enough Sweet Potatoes + A last-minute will by Martine's dad is not what it seems, and the doctor reveals the truth about his collapse. + + Maria Doyle Kennedy + Kylie Fisher + Tony Kgoroge + + Drama + + + TV14 + + + + Star Trek: Deep Space Nine + Second Sight + The wife of a prominent expert on dead planet regeneration provides bittersweet mystery and heartache for Sisko. + + Avery Brooks + Rene Auberjonois + Alexander Siddig + + Sci-Fi + + + TVPG + + + + Star Trek: Deep Space Nine + Sanctuary + Refugees from the Gamma Quadrant searching for their mythical homeland stop at DS9, then discover that Bajor may be their destination. + + Avery Brooks + Rene Auberjonois + Alexander Siddig + + Sci-Fi + + + TVPG + + + + Star Trek: Deep Space Nine + Rivals + Quark gets some competition when a slick con artist opens a gambling club on the Promenade; the station suffers strange problems that are normally highly unlikely to occur. + + Avery Brooks + Rene Auberjonois + Alexander Siddig + + Sci-Fi + + + TVPG + + + + Star Trek: Deep Space Nine + The Alternate + A life form retrieved from a Gamma Quadrant planet wreaks havoc on DS9 and seems to have a strange effect on Odo. + + Avery Brooks + Rene Auberjonois + Alexander Siddig + + Sci-Fi + + + TVPG + + + + Star Trek: Deep Space Nine + Armageddon Game + Unaware of being used as pawns, Bashir and O'Brien attempt to eliminate a biomechanical weapon used for centuries by two warring societies. + + Avery Brooks + Rene Auberjonois + Alexander Siddig + + Sci-Fi + + + TVPG + + + + Star Trek: Deep Space Nine + Whispers + While aboard a runabout shuttle he has stolen from DS9, Chief O'Brien records a log recounting how he returned from a mission to find his wife and friends had inexplicably turned against him. + + Avery Brooks + Rene Auberjonois + Alexander Siddig + + Sci-Fi + + + TVPG + + + + Star Trek: Deep Space Nine + Paradise + When Sisko and O'Brien beam down to a planet looking for a potential colony site, their technology fails and they are stranded amongst a group of anti-technology zealots. + + Avery Brooks + Rene Auberjonois + Alexander Siddig + + Sci-Fi + + + TVPG + + + + Star Trek: Deep Space Nine + Shadowplay + On a planet in the Gamma Quadrant, Odo and Dax discover a society whose inhabitants are mysteriously disappearing into thin air. + + Avery Brooks + Rene Auberjonois + Alexander Siddig + + Sci-Fi + + + TVPG + + + + Bones + The Bullet in the Brain + The Jeffersonian team investigates when a notorious murderer known as. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The Sin in the Sisterhood + A man's corpse disguised as a scarecrow is found in a cornfield; Booth and Brennan question the victim's three wives, who are also sisters; Cam doubts her relationship. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The Daredevil in the Mold + The team analyzes a BMX rider's remains, discovered on the roof of a warehouse; Sweets asks Booth for advice; Booth makes a decision about Hannah. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The Bikini in the Soup + When the liquefied remains of a wedding planner are found in a tanning bed on Valentine's Day, Cam pressures the team to work fast so she can spend the holiday with her boyfriend; Clark helps Hodgins realize the best gifts come from the heart. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The Killer in the Crosshairs + Sniper Jacob Broadsky takes out a victim who escaped from the justice system; Booth uses his military training to try to stop Broadsky before he strikes again; Angela's father visits the Jeffersonian. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The Blackout in the Blizzard + During a blizzard that causes a citywide blackout, the team must solve a murder case that could be connected to a possible viral outbreak; Sweets starts a touchy conversation about Brennan and Booth's relationship. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The Feet on the Beach + Brennan teams up with a forensic podiatrist to match seven pairs of severed feet with bodies; Cam makes college plans for her daughter. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The Truth in the Myth + A TV-show host's remains are found in the wilderness; Vincent Nigel-Murray makes surprising confessions while making amends with each member of the team. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + Finder + When the remains of a maritime museum security guard are found in the Florida Everglades, Booth asks a former Iraqi soldier for help with the case. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The Pinocchio in the Planter + The remains of a successful ad man are found in a new community center playground; the members of the team try to communicate more honestly. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The Signs in the Silence + An unidentified 15-year-old girl, who is hearing impaired and not able to communicate, is found covered in blood and wielding a knife; Angela hides the details of her pregnancy. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The Hole in the Heart + Booth becomes more determined to catch Jacob Broadsky after he takes out another victim. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The Change in the Game + Booth and Brennan go under cover to find out what happened to a man whose remains were found lodged in the pinsetter at a bowling lane. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The Memories in the Shallow Grave + A woman's remains are found in a paintball field; Booth and Brennan adjust to life as an expectant couple. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + The Graham Norton Show + Dame Judi Dench; Arnold Schwarzenegger; Jack Whitehall; Jay Blades; Duran Duran.Guests: Judi Dench, Arnold Schwarzenegger, Jack Whitehall, Jay Blades.. + Talk Shows + Performing Arts + + + TV14 + + + + Bones + The Sin in the Sisterhood + A man's corpse disguised as a scarecrow is found in a cornfield; Booth and Brennan question the victim's three wives, who are also sisters; Cam doubts her relationship. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The Daredevil in the Mold + The team analyzes a BMX rider's remains, discovered on the roof of a warehouse; Sweets asks Booth for advice; Booth makes a decision about Hannah. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Star Trek: Deep Space Nine + Playing God + A Trill initiate who has come to DS9 to be trained by Dax is shocked by her unorthodox demeanor; Dax discovers a tiny developing universe. + + Avery Brooks + Rene Auberjonois + Alexander Siddig + + Sci-Fi + + + TVPG + + + + Star Trek: Deep Space Nine + Profit and Loss + Quark's one true love flees to the station with two of her students, members of the Cardassian underground being sought by the military. + + Avery Brooks + Rene Auberjonois + Alexander Siddig + + Sci-Fi + + + TVPG + + + + Star Trek: Deep Space Nine + Blood Oath + Jadzia opts to risk her future with Starfleet in order to fulfill a blood oath made by Curzon with three Klingon warriors. + + Avery Brooks + Rene Auberjonois + Alexander Siddig + + Sci-Fi + + + TVPG + + + + Star Trek: Deep Space Nine + The Maquis + The explosion of a Cardassian freighter leaving DS9 makes unlikely allies of Sisko and Gul Dukat as they try to expose a terrorist group. + + Avery Brooks + Rene Auberjonois + Alexander Siddig + + Sci-Fi + + + TVPG + + + + Star Trek: Deep Space Nine + The Maquis + Sisko struggles to stop the Maquis terrorist attacks while keeping Cal Hudson's involvement with the rebels a secret. + + Avery Brooks + Rene Auberjonois + Alexander Siddig + + Sci-Fi + + + TVPG + + + + Star Trek: Deep Space Nine + The Wire + Another piece of the puzzle that is. + + Avery Brooks + Rene Auberjonois + Alexander Siddig + + Sci-Fi + + + TVPG + + + + Star Trek: Deep Space Nine + Crossover + A wormhole mishap sends Kira and Bashir into the Mirror Universe where Bajor rules and humans are slaves. + + Avery Brooks + Rene Auberjonois + Alexander Siddig + + Sci-Fi + + + TVPG + + + + Bones + The Pinocchio in the Planter + The remains of a successful ad man are found in a new community center playground; the members of the team try to communicate more honestly. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The Signs in the Silence + An unidentified 15-year-old girl, who is hearing impaired and not able to communicate, is found covered in blood and wielding a knife; Angela hides the details of her pregnancy. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The Hole in the Heart + Booth becomes more determined to catch Jacob Broadsky after he takes out another victim. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The Change in the Game + Booth and Brennan go under cover to find out what happened to a man whose remains were found lodged in the pinsetter at a bowling lane. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The Memories in the Shallow Grave + A woman's remains are found in a paintball field; Booth and Brennan adjust to life as an expectant couple. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The Hot Dog in the Competition + The team identifies the remains of a competitive-eating champion just days before a contest; a brilliant new squint has trouble fitting in; Booth and Brennan try to put themselves in each other's places after a disagreement about the baby. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + And Me + My Sperm Donor & Me + Children born in the UK using sperm, egg and embryo donors will now have the right to know their donor's identity. But will everyone be able to find their donor families? + Documentary + + + + Africa Eye + What Happened to the Baby Stealers? + The filmmakers reveal the impact of. + News Magazine + Documentary + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + Our World + The anchors deliver the latest updates, trends and developments on modern issues and showcase the impact of these events on a national and global scale. + News Magazine + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + The Travel Show + Rajan Datar travels to Uzbekistan to discover how young people are helping to shape the future of this rapidly developing Central Asian country, just five years after it opened up to tourists. + Travel + Documentary + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + The Travel Show + Exploring new destinations around the globe and uncovering hidden sides to some of the world's favorite holiday hotspots. + Travel + Documentary + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + Talking Movies + New York Film Festival Special + Talking Movies reports on the New York Film Festival, with a look at opening night movie 'May December' from director Todd Haynes, and Sofia Coppola's new picture 'Priscilla'. + Talk Shows + Performing Arts + + + TVPG + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + After Kakhovka + Following the destruction of the Kakhovka Dam in Russian-occupied southern Ukraine in June, the BBC World Service returns to Kakhovka to hear from those affected. + Specials + News + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + HARDtalk + The presenters sit down with prominent figures from all walks of life to ask difficult questions surrounding their personal and professional lives. + News + + + TVG + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + The Travel Show + Exploring new destinations around the globe and uncovering hidden sides to some of the world's favorite holiday hotspots. + Travel + Documentary + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + Click + The hosts share stories about the evolution of technology, ranging from the discovery of the internet to the development of modern gadgets. + Computers & Technologies + Science + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + And Me + My Sperm Donor & Me + Children born in the UK using sperm, egg and embryo donors will now have the right to know their donor's identity. But will everyone be able to find their donor families? + Documentary + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + Future Earth + Carl Nasman explores the specific challenges cities and urbanised areas face as temperatures rise. As well as assessing the impact of more greenery around Earth's concrete jungles, Carl also speaks to some of the world's first chief heat officers. + Environmental + Documentary + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + Talking Business + The host sits down with experts to shed light on various issues from the business world and interviews them on the latest innovations in technology. + Business + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + Africa Eye + What Happened to the Baby Stealers? + The filmmakers reveal the impact of. + News Magazine + Documentary + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + The Spirit of Yachting + Maxi Yacht Rolex Cup + The world of sailing up close -- not only the sporting side with all the spectacular competitions, but also the champions' personal stories. + Sports + Boating + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + Click + The hosts share stories about the evolution of technology, ranging from the discovery of the internet to the development of modern gadgets. + Computers & Technologies + Science + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + Newsday + International news from London and Singapore. + News + + + + Asia Business Report + The anchors present the latest financial and business news, with in-depth coverage of stock markets from all across Asia and around the world. + News + Business + + + + Sportsday + Round-up of the day's sporting events. + Sports + News + + + + Newsday + International news from London and Singapore. + News + + + + Asia Business Report + The anchors present the latest financial and business news, with in-depth coverage of stock markets from all across Asia and around the world. + News + Business + + + + Sportsday + Round-up of the day's sporting events. + Sports + News + + + + Newsday + International news from London and Singapore. + News + + + + Asia Business Report + The anchors present the latest financial and business news, with in-depth coverage of stock markets from all across Asia and around the world. + News + Business + + + + Sportsday + Round-up of the day's sporting events. + Sports + News + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + Asia Business Report + The anchors present the latest financial and business news, with in-depth coverage of stock markets from all across Asia and around the world. + News + Business + + + + Sportsday + Round-up of the day's sporting events. + Sports + News + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + Asia Business Report + The anchors present the latest financial and business news, with in-depth coverage of stock markets from all across Asia and around the world. + News + Business + + + + Sportsday + Round-up of the day's sporting events. + Sports + News + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + HARDtalk + The presenters sit down with prominent figures from all walks of life to ask difficult questions surrounding their personal and professional lives. + News + + + TVG + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + World Business Report + The anchors deliver the latest news from the business world, with the analyses and predictions of leading financial centers. + News + Business + + + + The Travel Show + Exploring new destinations around the globe and uncovering hidden sides to some of the world's favorite holiday hotspots. + Travel + Documentary + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + Talking Movies + New York Film Festival Special + Talking Movies reports on the New York Film Festival, with a look at opening night movie 'May December' from director Todd Haynes, and Sofia Coppola's new picture 'Priscilla'. + Talk Shows + Performing Arts + + + TVPG + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + After Kakhovka + Following the destruction of the Kakhovka Dam in Russian-occupied southern Ukraine in June, the BBC World Service returns to Kakhovka to hear from those affected. + Specials + News + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + HARDtalk + The presenters sit down with prominent figures from all walks of life to ask difficult questions surrounding their personal and professional lives. + News + + + TVG + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + The Travel Show + Exploring new destinations around the globe and uncovering hidden sides to some of the world's favorite holiday hotspots. + Travel + Documentary + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + Click + The hosts share stories about the evolution of technology, ranging from the discovery of the internet to the development of modern gadgets. + Computers & Technologies + Science + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + And Me + My Sperm Donor & Me + Children born in the UK using sperm, egg and embryo donors will now have the right to know their donor's identity. But will everyone be able to find their donor families? + Documentary + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + Future Earth + Carl Nasman explores the specific challenges cities and urbanised areas face as temperatures rise. As well as assessing the impact of more greenery around Earth's concrete jungles, Carl also speaks to some of the world's first chief heat officers. + Environmental + Documentary + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + Talking Business + The host sits down with experts to shed light on various issues from the business world and interviews them on the latest innovations in technology. + Business + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + Africa Eye + What Happened to the Baby Stealers? + The filmmakers reveal the impact of. + News Magazine + Documentary + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + The Spirit of Yachting + Maxi Yacht Rolex Cup + The world of sailing up close -- not only the sporting side with all the spectacular competitions, but also the champions' personal stories. + Sports + Boating + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + Click + The hosts share stories about the evolution of technology, ranging from the discovery of the internet to the development of modern gadgets. + Computers & Technologies + Science + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + Newsday + International news from London and Singapore. + News + + + + Asia Business Report + The anchors present the latest financial and business news, with in-depth coverage of stock markets from all across Asia and around the world. + News + Business + + + + Sportsday + Round-up of the day's sporting events. + Sports + News + + + + Newsday + International news from London and Singapore. + News + + + + Asia Business Report + The anchors present the latest financial and business news, with in-depth coverage of stock markets from all across Asia and around the world. + News + Business + + + + Sportsday + Round-up of the day's sporting events. + Sports + News + + + + Newsday + International news from London and Singapore. + News + + + + Asia Business Report + The anchors present the latest financial and business news, with in-depth coverage of stock markets from all across Asia and around the world. + News + Business + + + + Sportsday + Round-up of the day's sporting events. + Sports + News + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + Asia Business Report + The anchors present the latest financial and business news, with in-depth coverage of stock markets from all across Asia and around the world. + News + Business + + + + Sportsday + Round-up of the day's sporting events. + Sports + News + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + Asia Business Report + The anchors present the latest financial and business news, with in-depth coverage of stock markets from all across Asia and around the world. + News + Business + + + + Sportsday + Round-up of the day's sporting events. + Sports + News + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + HARDtalk + The presenters sit down with prominent figures from all walks of life to ask difficult questions surrounding their personal and professional lives. + News + + + TVG + + + + BBC News + Twenty-four hours a day, the latest national and international stories as they break. + News + + + + World Business Report + The anchors deliver the latest news from the business world, with the analyses and predictions of leading financial centers. + News + Business + + + + Chargers HQ + Analysis, highlights, predictions and interviews pertaining to the Chargers. + Sports + Football + + + + Lawmen: Bass Reeves: Inside the Series + Behind the scenes of the series. + Specials + Performing Arts + + + + Entertainment Tonight + News and features about performers, productions and the milieu. + News Magazine + Performing Arts + + + + The Best of SoCal Spotlight + News Magazine + + + + KCAL News at 11p on CBS Los Angeles + News + + + + Sports Central on CBS Los Angeles + Highlights, player reaction and analysis from the biggest games in Southern California sports. + News + Sports + + + + Inside Edition Weekend + Interviews and human-interest stories. + Talk Shows + + + TVPG + + + + Game Time With Boomer Esiason + Joe Namath + Super Bowl champion and Pro Football Hall of Famer, Joe Namath, chats about being football's most popular player of all-time.Guests: Joe Namath.. + Sports + Talk Show + + + + The Equalizer + Followers + McCall is hired by an online group of true-crime enthusiasts to find the anonymous stalker of an unsuspecting NYC woman when the criminal claims he will murder her in eight hours. + + Queen Latifah + Tory Kittles + Adam Goldberg + + Drama + + + TV14 + + + + SEAL Team + The Graveyard of Empires + Following a helicopter crash, the team must proceed with the mission as hostiles close in; an injured and impaired Jason goes after their target alone. + + David Boreanaz + Max Thieriot + Neil Brown Jr. + + Drama + + + TV14 + + + + Military Makeover + The Carmody Family's Big Reveal + The time has arrived to welcome the Carmody family back for the big reveal of their fully transformed home. + Home + Instructional + + + TVPG + + + + Designing Spaces + Step-by-step home improvements and do-it-yourself projects to help make homes more comfortable. + Home + Instructional + + + TVPG + + + + America Honors Our Veterans + Showcasing inspiring veteran stories and honoring those who have given so much to support freedom. + Specials + Local + + + + Everyday Heroes: Thanking Our Heroes + Honoring U.S. military veterans. + Specials + Documentary + + + + In Touch With Dr. Charles Stanley + The Stages of Faith; Overcoming Discouragement + In Touch Ministries is the broadcast teaching ministry of Dr. Charles Stanley. + Religious + + + TVG + + + + KCAL News Sun 5a on CBS Los Angeles + News + + + + CBS News Sunday Morning + News, features, weather and commentary. + Talk Shows + News Magazine + + + TVPG + + + + Face the Nation + Margaret Brennan hosts news interviews with distinguished national and foreign figures, offering insight and analysis on the top issues of the day. + Talk Shows + News + + + TVG + + + + KCAL News Sun 8:30a on CBS Los Angeles + News + + + + The NFL Today + Featuring highlights, predictions and the latest news from across the league. + Sports + Talk Show + + + TV14 + + + + Lucky Dog + Sandy Reunion + Brandon revisits one of his favorite episodes featuring a golden retriever that answers the call of duty for a wounded warrior in need. + Reality TV + Animals + + + TVG + + + + The Henry Ford's Innovation Nation + The No Pedal Bike + Learning to ride a bike without pedals; tracking one's child's growth with tech; the disruptive invention of colorblind glasses; the women of agriculture. + Children + Instructional + + + TVG + + + + Mission Unstoppable + Sealife, Self-Talk and Stargazing + The CEO of an aquarium shows how they work to restore wildlife; why talking to oneself matters; stargazing tips; how people taste and experience food. + Instructional + Science + + + TVG + + + + Hope in the Wild + Nicole's Very Special Owls + Nicole forms a special bond with a pair of barred owls; Hope and her team brace for the influx of spring raccoon orphans. + Instructional + Reality TV + + + TVG + + + + SailGP Racing + Spain Sail Grand Prix, Andalucía - Cádiz + SailGP's high-speed F50s from 10 international teams take to the water in Cádiz, Spain for the fifth event of the Championship. The United States team, lead by Jimmy Spithill, continues to chase victory in the final European race of the season. + Sports + Boating + + + + Indianapolis Colts vs. Carolina Panthers + Indianapolis Colts at Carolina Panthers + The Panthers (1-6) host the Colts (3-5). A potential matchup of top-four picks in the 2023 draft was derailed by Anthony Richardson's season-ending injury, leaving No. 1 selection Bryce Young to take the field for Carolina against Gardner Minshew. + Sports + Football + + + TV14 + + + + Sports Central on CBS Los Angeles + Highlights, player reaction and analysis from the biggest games in Southern California sports. + News + Sports + + + + KCAL News at 5p on CBS Los Angeles + News + + + + CBS Weekend News + The latest world and national news. + News + + + TVPG + + + + KCAL News at 6p on CBS Los Angeles + News + + + + 60 Minutes + Newsmagazine with features focusing on people, and events in the news and behind the headlines. + News Magazine + + + + Yellowstone + New Beginnings + Kayce and Rip come to blows; Beth starts buying up land to protect the ranch; Monica begins a new chapter at the university. + + Kevin Costner + Wes Bentley + Kelly Reilly + + Drama + + + TVMA + + + + Yellowstone + The Reek of Desperation + Rainwater teams up with Jenkins for a big business deal, but powerful new enemies look to block their plans; John and Beth groom a new political candidate. + + Kevin Costner + Wes Bentley + Kelly Reilly + + Drama + + + TVMA + + + + Big Brother + The head of household nominates two fellow houseguests for possible eviction. + Game Shows + + + TVPG + + + + KCAL News at 11p on CBS Los Angeles + News + + + + Sports Central on CBS Los Angeles + Highlights, player reaction and analysis from the biggest games in Southern California sports. + News + Sports + + + + Joel Osteen + Joel and Victoria Osteen's message of unconditional love and unending hope reaches everyone across the world. + Religious + + + TVPG + + + + Joni: Table Talk + Joni and guests tackle a wide range of relevant issues, controversial subjects and hard-hitting news topics with candor and wit. + Religious + Talk Shows + + + TVG + + + + The Equalizer + Shooter + Mel's military proves critical when McCall is hired by the D.A. to find a sniper; Delilah experiences PTSD as a result of the shootings. + + Queen Latifah + Tory Kittles + Adam Goldberg + + Drama + + + TV14 + + + + SEAL Team + Fracture + Jason and the team must rescue American hostages after an oil platform is overtaken by armed militants. + + David Boreanaz + Max Thieriot + Neil Brown Jr. + + Drama + + + TV14 + + + + Face the Nation + Margaret Brennan hosts news interviews with distinguished national and foreign figures, offering insight and analysis on the top issues of the day. + Talk Shows + News + + + TVG + + + + CBS Morning News + News reports on current events. + News + + + + CBS Mornings + Reporting on international news stories, interviews, and in-depth pieces, covering topics from news, sports, climate and technology to race, health, parenting and personal finance. + Talk Shows + News + + + TVG + + + + KCAL Mornings 6a on CBS Los Angeles + News + + + + CBS Mornings + Reporting on international news stories, interviews, and in-depth pieces, covering topics from news, sports, climate and technology to race, health, parenting and personal finance. + Talk Shows + News + + + TVG + + + + Let's Make a Deal + Costumed contestants compete for cash and prizes. + Game Shows + + + TVPG + + + + The Price Is Right + Contestants bid for prizes then compete for fabulous showcases. + Game Shows + + + TVG + + + + KCAL News at 11a on CBS Los Angeles + News + + + + The Young and the Restless + Drama revolves around three families in Genoa City. + + Peter Bergman + Eric Braeden + Christel Khalil + + Soaps + + + TV14 + + + + The Bold and the Beautiful + Past history links two Los Angeles families. + + Katherine Kelly Lang + Jacqueline MacInnes Wood + Thorsten Kaye + + Soaps + + + TV14 + + + + The Talk + Well-known entertainment personalities discuss current events, pop culture, family, celebrity and trending topics of the day. + Talk Shows + Performing Arts + + + TV14 + + + + The Drew Barrymore Show + Drew Barrymore presents human-interest stories, celebrity guests, lifestyle segments and field pieces, all driven by her infectious brand of humor and optimism. + Talk Shows + Performing Arts + + + TVG + + + + The Drew Barrymore Show + Drew Barrymore presents human-interest stories, celebrity guests, lifestyle segments and field pieces, all driven by her infectious brand of humor and optimism. + Talk Shows + Performing Arts + + + TVG + + + + Hot Bench + Three judges argue the merits of a case among themselves and render a verdict. + Reality TV + Legal + + + TVG + + + + Hot Bench + Pay Dirt-Bike + A man buys a dirt bike for his nephew with the expectation of being paid back, but when the nephew is stabbed and shot, the payments reportedly cease. + Reality TV + Legal + + + TVG + + + + Judge Judy + Pepper Spraying Parent Catastrophe! + A woman pepper sprays the father of her children because she thinks he is kidnapping the kids; he wipes the pepper spray on her face in retaliation. + Reality TV + Legal + + + TVPG + + + + Judge Judy + Wild Tequila Bar Catfight!; Older Woman Takes Advantage of Young Partner?! + After a night of heavy drinking at five bars, two women end up on the ground, fighting over slander and boys; a young woman sues her ex-business partner for damages resulting from the dissolution of their partnership in a salon. + Reality TV + Legal + + + TVPG + + + + KCAL News at 5p on CBS Los Angeles + News + + + + KCAL News at 6p on CBS Los Angeles + News + + + + CBS Evening News With Norah O'Donnell + A weeknight survey of major news stories, human-interest segments and interviews with newsmakers, anchored by Norah O'Donnell. + News + + + TVPG + + + + Inside Edition + DeLorean Car Discovered After 30 Years + An original DeLorean is discovered after 30 years hidden in a barn. + News Magazine + + + TVPG + + + + Entertainment Tonight + News and features about performers, productions and the milieu. + News Magazine + Performing Arts + + + + NCIS + Collective Memory + When a hotshot financial adviser is found shot at a naval station, NCIS investigates the case by interviewing the victim's 3D hologram of herself, which she created before her death. + + Mark Harmon + Sean Murray + Wilmer Valderrama + + Drama + + + TV14 + + + + NCIS + Fight or Flight + When the body of a Navy lieutenant is discovered missing an eye, the NCIS investigation leads to the world of cage fighting. + + Mark Harmon + Sean Murray + Wilmer Valderrama + + Drama + + + TV14 + + + + NCIS + First Steps + As NCIS investigates the cause of death of a reservist Navy SEAL surgeon, they're forced to bring Vance's daughter to help with a highly dangerous mission. + + Mark Harmon + Sean Murray + Wilmer Valderrama + + Drama + + + TV14 + + + + KCAL News at 11p on CBS Los Angeles + News + + + + The Late Show With Stephen Colbert + Pete Buttigieg; Willie Nelson + Transportation Secretary Pete Buttigieg; singer Willie Nelson.Guests: Pete Buttigieg, Willie Nelson.. + Talk Shows + Comedy + + + TVPG + + + + Comics Unleashed With Byron Allen + Katt Williams; Don Friesen; Tina Giorgi; Ralphie May.Guests: Katt Williams.. + Comedy + + + TVPG + + + + Comics Unleashed With Byron Allen + Pierre Edwards; AlonzoGuests: Loni Love.. + Comedy + + + TVPG + + + + Comics Unleashed With Byron Allen + Harland Williams; Jon Rineman; Mike Yard; Jackie Kashian. + Comedy + + + TVPG + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + CBS Evening News With Norah O'Donnell + A weeknight survey of major news stories, human-interest segments and interviews with newsmakers, anchored by Norah O'Donnell. + News + + + TVPG + + + + CBS Overnight News + National and international headlines from CBS News journalists all around the world, plus stories from the West Coast edition of the. + News + + + + CBS Morning News + News reports on current events. + News + + + + CBS Mornings + Filmmaker Tyler Perry; actress Hilary Duff; authors Courtney B. Vance and Dr. Robin L. Smith.Guests: Tyler Perry, Hilary Duff, Courtney B. Vance, Robin Smith.. + Talk Shows + News + + + TVY + + + + KCAL Mornings 6a on CBS Los Angeles + News + + + + CBS Mornings + Filmmaker Tyler Perry; actress Hilary Duff; authors Courtney B. Vance and Dr. Robin L. Smith.Guests: Tyler Perry, Hilary Duff, Courtney B. Vance, Robin Smith.. + Talk Shows + News + + + TVY + + + + Let's Make a Deal + Costumed contestants compete for cash and prizes. + Game Shows + + + TVPG + + + + The Price Is Right + Contestants bid for prizes then compete for fabulous showcases. + Game Shows + + + TVG + + + + KCAL News at 11a on CBS Los Angeles + News + + + + The Young and the Restless + Victor makes a shocking announcement; Devon questions Nate's sincerity; Lily experiences mixed signals with Daniel. + + Peter Bergman + Eric Braeden + Christel Khalil + + Soaps + + + TV14 + + + + The Bold and the Beautiful + Liam believes he can give Steffy a better life than Finn; Ridge begins a new chapter at Forrester Creations with Eric. + + Katherine Kelly Lang + Jacqueline MacInnes Wood + Thorsten Kaye + + Soaps + + + TV14 + + + + The Talk + Dancer Derek Hough; TV host Brandon McMillan.Guests: Derek Hough, Brandon McMillan.. + Talk Shows + Performing Arts + + + TV14 + + + + The Drew Barrymore Show + Josh Gad; Drew's News With Krystal Joy Brown + Krystal Joy Brown (Guests: Krystal Joy Brown, Ross Mathews, Josh Gad.. + Talk Shows + Performing Arts + + + TVG + + + + The Drew Barrymore Show + Erin French; Drew's News + Drew and Ross cover news; chef Erin French (bookGuests: Ross Mathews, Erin French.. + Talk Shows + Performing Arts + + + TVG + + + + Hot Bench + Love Does Cost a Thing + A massage therapist's ex-girlfriend says she shouldn't be held liable for damages to his car, because she caught him cheating. + Reality TV + Legal + + + TVG + + + + Hot Bench + Bad Ex-perience + An unwed couple used the man's credit and VA loan to buy a home, but now that they have broken up, the woman wants to be repaid for the furniture that was in the home when they bought it. + Reality TV + Legal + + + TVG + + + + Judge Judy + Wedding Dress Distress; Pregnant and Panicked! + A bride's unhappiness with her designer dress makes an appearance on the local news -- she is accused of deceptive and vindictive slander; a young woman vents to a family friend about her financial troubles after being involved in a hit and run. + Reality TV + Legal + + + TVPG + + + + Judge Judy + I Need You to Love My Lamb!; Playing the Ride Share Game + A woman is heartbroken after giving away her lamb and tries to get it back, but the new owners have grown attached; a man shares the dark side of the ride-share business as he prepares to file for bankruptcy after being sued for car-related damages. + Reality TV + Legal + + + TVPG + + + + KCAL News at 5p on CBS Los Angeles + News + + + + KCAL News at 6p on CBS Los Angeles + News + + + + CBS Evening News With Norah O'Donnell + A weeknight survey of major news stories, human-interest segments and interviews with newsmakers, anchored by Norah O'Donnell. + News + + + TVY + + + + Inside Edition + Primary stories and alternative news. + News Magazine + + + TVPG + + + + Entertainment Tonight + News and features about performers, productions and the milieu. + News Magazine + Performing Arts + + + + Big Brother + The houseguests compete to win the power of veto; during the veto meeting, the winner of the competition can keep nominations the same or save someone from eviction for the week. + Game Shows + + + TVPG + + + + FBI True + Operation Knockout: The Biggest Takedown; Terror in Times Square: Chasing a Madman + The FBI leads a task force in Operation Knockout, the largest anti-gang operation in U.S. history; the FBI embarks on a high-speed, high-stakes race against time to catch a bomber. + Documentary + + + TV14 + + + + FBI + The Lies We Tell + When an off-duty diplomatic security agent is fatally shot in New York City trying to apprehend someone, the team investigates if there's a connection to his time working in Croatia. + + Missy Peregrym + Zeeko Zaki + Jeremy Sisto + + Drama + + + TV14 + + + + KCAL News at 11p on CBS Los Angeles + News + + + + The Late Show With Stephen Colbert + Daniel Radcliffe; Jonathan Groff; Lindsay Mendez; Arlo Parks + Actor Daniel Radcliffe; actors Jonathan Groff and Lindsay Mendez; Arlo Parks performs.Guests: Daniel Radcliffe, Jonathan Groff, Lindsay Mendez.. + Talk Shows + Comedy + + + TVPG + + + + Comics Unleashed With Byron Allen + Matt Baetz; Paul Bel; Hampton Yount; Mike E. Winfield.Guests: Matt Baetz, Hampton Yount, Mike E. Winfield.. + Comedy + + + TVPG + + + + Comics Unleashed With Byron Allen + Ty Barnett; Alonzo Bodden; Sommore; Guy Torry.Guests: Alonzo Bodden, Sommore.. + Comedy + + + TVPG + + + + Comics Unleashed With Byron Allen + Ryan Hamilton; Joe DeVito; Lowell Sanders; Lisa Landry. + Comedy + + + TVPG + + + + Car accident? Free Legal Consultation. + Legal professionals standing by to answer your questions. + Paid Program + + + + CBS Evening News With Norah O'Donnell + A weeknight survey of major news stories, human-interest segments and interviews with newsmakers, anchored by Norah O'Donnell. + News + + + TVY + + + + CBS Overnight News + National and international headlines from CBS News journalists all around the world, plus stories from the West Coast edition of the. + News + + + + CBS Morning News + News reports on current events. + News + + + + CBS Mornings + Author Rachel Maddow; author Dan Senor.Guests: Rachel Maddow, Dan Senor.. + Talk Shows + News + + + TVY + + + + KCAL Mornings 6a on CBS Los Angeles + News + + + + CBS Mornings + Author Rachel Maddow; author Dan Senor.Guests: Rachel Maddow, Dan Senor.. + Talk Shows + News + + + TVY + + + + Let's Make a Deal + Costumed contestants compete for cash and prizes. + Game Shows + + + TVPG + + + + The Price Is Right + Contestants bid for prizes then compete for fabulous showcases. + Game Shows + + + TVG + + + + KCAL News at 11a on CBS Los Angeles + News + + + + The Young and the Restless + Victor puts a stop to his family's infighting; Danny keeps the peace between Phyllis and Christine; Chance catches Nina off guard. + + Peter Bergman + Eric Braeden + Christel Khalil + + Soaps + + + TV14 + + + + The Bold and the Beautiful + Ridge mediates a heated exchange between Brooke and Taylor; Steffy learns the truth about Thomas' and Hope's relationship. + + Katherine Kelly Lang + Jacqueline MacInnes Wood + Thorsten Kaye + + Soaps + + + TV14 + + + + The Talk + Author Rich Paul; TV host Casey Wilson.Guests: Rich Paul, Casey Wilson.. + Talk Shows + Performing Arts + + + TV14 + + + + The Drew Barrymore Show + Tallulah Willis; Drew's News + Tallulah Willis tells about her dad Bruce Willis' health struggles; Drew and Ross cover headlines.Guests: Tallulah Willis, Ross Mathews.. + Talk Shows + Performing Arts + + + TVG + + + + The Drew Barrymore Show + Sohla El-Waylly; Drew's News + Drew and Ross cover headlines; chef Sohla El-Waylly shares a recipe for fruity doodle cookies.Guests: Ross Mathews, Sohla El-Waylly.. + Talk Shows + Performing Arts + + + TVG + + + + Hot Bench + At Least Do the Right Thing! + The plaintiff bought a house and offered to let her roommate move with her, but when she raised the price at the last minute, the roommate changed her mind; they feud over the termination fee on their old place. + Reality TV + Legal + + + TVG + + + + Hot Bench + Money for Nothing; Border in the Court + An accidentally overpaid employee tries to explain why he doesn't owe his boss anything; a defendant who went out clubbing doesn't remember leaving a note confessing to hitting the plaintiff's car in a Tijuana liquor store parking lot. + Reality TV + Legal + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Better Smile + Have that amazing smile you've always dreamed about in just ONE visit! It can be done right here in Los Angeles! + Paid Program + Health + + + + KCAL9 News 6pm + News + + + + California Bountiful + Getting up close with the people, places, food and farms that make California bountiful. + Travel + + + TVG + + + + KCAL 9 News 8pm + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + KCAL 9 News 9pm + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + KCAL 9 News 10pm + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + Sports Central + Highlights, player reaction and analysis from the biggest games in Southern California sports. + News + Sports + + + + WOW - Women Of Wrestling + The World's Greatest Opportunity + Princess Aussie defends her title against Tormenta; Adriana Gambino takes on Stephy Slays; BK Rhythm and Gigi Gianni vs. Chantilly Chella and Tiki Chamorro; Goldie Collins attempts to break Kandi Krush's winning streak. + Sports + Wrestling + + + TV14 + + + + American Housewife + The Guardian + Katie and Greg secretly test Kathryn to see if she would make a good guardian for Anna-Kat in the unlikely event something should happen to them; after tracking down J.D.'s potential egg donors, Tami and Katie scheme to learn more about them. + + Katy Mixon + Diedrich Bader + Meg Donnelly + + Sitcom + + + TV14 + + + + American Housewife + How Oliver Got His Groove Back + Katie plays matchmaker by impersonating Oliver on his social media account to win over a girl; Lonnie helps Greg dig up dirt on his political rival. + + Katy Mixon + Diedrich Bader + Meg Donnelly + + Sitcom + + + TV14 + + + + Funny You Should Ask + Jon Lovitz; Sheryl Underwood; Bill Engvall; Byron Allen; Natasha Leggero; Jeff Ross. + Game Shows + Comedy + + + TVPG + + + + Funny You Should Ask + Jon Lovitz; Jackeé Harry; Howie Mandel; Byron Allen; Natasha Leggero; Jamie Kennedy. + Game Shows + Comedy + + + TVPG + + + + The World's Funniest Weather + You Can't Handle the Youth + A golden retriever marks his territory in the middle of a live weather cast; a little league player does a comedic dance on first base; a guy tries jumping over a mud pit. + Environmental + + + + The World's Funniest Weather + I Feel Your Rain + A call-in viewer's bad singing causes a TV host to lose control; camping mishaps. + Environmental + + + + The Neighborhood + Welcome to the Challenge + When Victor Alvarez tries to steal Calvin's customers, the Butlers and Johnsons join forces on a plan to drum up business and give back to their community. + + Cedric the Entertainer + Max Greenfield + Beth Behrs + + Sitcom + + + TVPG + + + + The Neighborhood + Welcome to the Future + Calvin and Marty encounter difficulties trying to secure financing for their new business; Dave invites his boss to Grover's 13th birthday party, much to Gemma's frustration. + + Cedric the Entertainer + Max Greenfield + Beth Behrs + + Sitcom + + + TVPG + + + + Storm of Suspicion + Snow Packed + After freezing temperatures encompass the mountains of North Carolina, the body of a man is discovered buried in the snow. + Reality TV + Environmental + + + TVPG + + + + Staycation + Travel + + + + Small Town Big Deal + Georgia Peanut Festival + Innovation, tradition and success happen in rural places. + Travel + Documentary + + + TVG + + + + Joel Osteen + Joel and Victoria Osteen's message of unconditional love and unending hope reaches everyone across the world. + Religious + + + TVPG + + + + Loveland Church + Chuck Singleton shares God's love note to the world. + Religious + + + + KCAL 9 News Sunday + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + KCAL 9 News Sunday + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + Joel Osteen + Joel and Victoria Osteen's message of unconditional love and unending hope reaches everyone across the world. + Religious + + + TVPG + + + + David Jeremiah + Salvation in the Tribulation + David Jeremiah looks at the Tribulation. + Religious + + + TVG + + + + Joel Osteen + Joel and Victoria Osteen's message of unconditional love and unending hope reaches everyone across the world. + Religious + + + TVPG + + + + Harvest with Pastor Greg Laurie: Encouragement, Worship, & Bible Study + God created you to have a future and a hope! Join Pastor Greg Laurie for a time of encouragement, worship, and Bible study. You'll be strengthened in your faith to live a life of purpose and meaning. + Paid Program + + + + CBS News Sunday Morning + News, features, weather and commentary. + Talk Shows + News Magazine + + + TVPG + + + + Face the Nation + Margaret Brennan hosts news interviews with distinguished national and foreign figures, offering insight and analysis on the top issues of the day. + Talk Shows + News + + + TVG + + + + Foothill Family Church with Mike Webb + Pastored by Mike Webb; building strong, spirit-filled lives. + Religious + + + + Bobby Schuller + Hour of Power with Bobby Schuller is a weekly program featuring exciting interviews, inspiring music, and encouraging messages filled with spiritual principles and practices to help people live lives of meaning. + Religious + + + + Rare Silver Coin Set + Add the First Day of Issue 2023 Morgan and Peace Dollars graded in perfect Mint State and Proof 70 condition to your collection. With Mint State mintages of only 275,000 examples and 400,00 for Proof, these coins are incredible absolute rarities! + Paid Program + + + + All the Answers + Local + + + + On the Spot + On the Brain, Health & Fitness, Dinosaurs + How the brain works; the effects of caffeine; an up-close look at dinosaurs. + Reality TV + Instructional + + + TVG + + + + The World Is Yours + Travels to exciting and interesting destinations around the globe. + Travel + Documentary + + + + The Coolest Places on Earth + The South Pacific + Beautiful beaches, tropical wildlife and incredible native cultures of the South Pacific. + Travel + Instructional + + + TVG + + + + Yaba TV + Regular + + + + Best Cooling Topper for Back & Hip Pain! + Dormeo Mattress Topper Transforms Your Bed To Get A Great Night's Sleep. Soothing & Cooling. + Paid Program + + + + Entertainers: With Byron Allen + Cillian Murphy (. + Talk Shows + Performing Arts + + + TVPG + + + + Judge Judy + Staged for Disaster!; Funeral Road Trip Ruined + A tenant moves in a messy stranger and a cat just as the landlady stages the home for sale; a road trip falls apart when the purchase of a classic car goes wrong. + Reality TV + Legal + + + TVPG + + + + Judge Judy + Shih Tzu Shuttling!; Pit Bull Collateral Damage! + A woman is accused of refusing to return a dog to its rightful owner; neighbors fight over liability after a pit bull charges a woman and her daughter, forcing her to jump onto a car and damage it. + Reality TV + Legal + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Lawmen: Bass Reeves: Inside the Series + Behind the scenes of the series. + Specials + Performing Arts + + + + KCAL 9 News 8pm + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + KCAL 9 News 9pm + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + KCAL 9 News 10pm + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + Sports Central + Highlights, player reaction and analysis from the biggest games in Southern California sports. + News + Sports + + + + Joel Osteen + Joel and Victoria Osteen's message of unconditional love and unending hope reaches everyone across the world. + Religious + + + TVPG + + + + In Touch With Dr. Charles Stanley + The Stages of Faith + In Touch Ministries is the broadcast teaching ministry of Dr. Charles Stanley. + Religious + + + TVG + + + + WOW - Women Of Wrestling + The World's Greatest Opportunity + Princess Aussie defends her title against Tormenta; Adriana Gambino takes on Stephy Slays; BK Rhythm and Gigi Gianni vs. Chantilly Chella and Tiki Chamorro; Goldie Collins attempts to break Kandi Krush's winning streak. + Sports + Wrestling + + + TV14 + + + + Major Crimes + Conspiracy Theory: Part 3 + While working two seemingly connected murders, the division suddenly uncovers a series of sexual assaults against servers from Tackles; a new theory about the killer gathers steam and an unexpected twist throws Major Crimes off course. + + Mary McDonnell + G.W. Bailey + Tony Denison + + Drama + + + TV14 + + + + Storm of Suspicion + Snow Packed + After freezing temperatures encompass the mountains of North Carolina, the body of a man is discovered buried in the snow. + Reality TV + Environmental + + + TVPG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + KCAL Mornings 4am + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + KCAL Mornings 5am + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + KCAL Mornings 6am + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + KCAL Mornings 7am + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + KCAL Mornings 8am + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + KCAL Mornings 9am + News + + + + KCAL Mornings 10am + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + Mathis Court With Judge Mathis + Tattoo Ready & Animal Primal Yoga + Mobile tattoo artist seeks payment for his services at a party; woman sues after a specialized yoga class doesn't deliver as advertised. + Reality TV + Legal + + + TVPG + + + + Mathis Court With Judge Mathis + Reclaiming My Wig & Fraud-Tube + A woman is injured after her wig is repossessed; on-air talent outsources interviews for a web series to her assistant. + Reality TV + Legal + + + TVPG + + + + KCAL 9 News 12pm + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + America's Court With Judge Ross + Not so Golden Girls + Damaged furniture, unpaid rent, and too many guests come between feisty ex-roommates in their golden years. + Reality TV + Legal + + + TVPG + + + + Equal Justice With Judge Eboni K. Williams + The Car-tastrophe + Man seeks compensation after spotty Wi-Fi at a vacation rental costs him a lucrative client for his business. + Reality TV + Legal + + + TVPG + + + + Cutlers Court + Gomez vs. Banks + Accusations of cheating and a claim for more than $8,000 have exes Isabella and Sarah squabbling in court. + Legal + Reality TV + + + TVPG + + + + Cutlers Court + Robinson vs. Ballard + Shawndreca has a few demands before she marries Derrick and hopes the Cutlers can help to determine whether she will stay or walk away. + Legal + Reality TV + + + TVPG + + + + Dr. Phil + Mother Knows Best: The Story of Gypsy Rose + Gypsy Rose Blanchard's mother forces her to pretend to be sick, makes her undergo countless surgeries, shaves her head, has a feeding tube inserted and makes her use a wheelchair; the deceit and torture eventually breed a contempt leading to murder. + Talk Shows + + + TV14 + + + + KCAL 9 News 4pm + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + Funny You Should Ask + Jon Lovitz; Tiffany Haddish; Adam Carolla; Byron Allen; Whitney Cummings; Jamie Kennedy. + Game Shows + Comedy + + + TVPG + + + + Funny You Should Ask + Jon Lovitz; Tiffany Haddish; Adam Carolla; Byron Allen; Caroline Rhea; Jeff Ross. + Game Shows + Comedy + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + KCAL 9 News 8pm + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + KCAL 9 News 9pm + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + KCAL 9 News 10pm + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + Sports Central + Highlights, player reaction and analysis from the biggest games in Southern California sports. + News + Sports + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + The Neighborhood + Welcome Back to the Neighborhood + When Dave decides to disconnect the Johnson home from the grid, he inadvertently causes a community-wide power outage; in the wake of Marty's engagement, Tina struggles with no longer being the primary woman in her son's life. + + Cedric the Entertainer + Max Greenfield + Beth Behrs + + Sitcom + + + TVPG + + + + The Neighborhood + Welcome to the Other Neighborhood + Calvin and Marty are surprised when their new business sparks protests from residents concerned about gentrification; Grover's family tree project reveals fresh details about the whereabouts of Dave's estranged father, who left when he was a child. + + Cedric the Entertainer + Max Greenfield + Beth Behrs + + Sitcom + + + TVPG + + + + 48 Hours + Hollywood Horror Story + A mother's concerns lead police to the scene of her daughter's murder in the Los Angeles home she shared with her producer boyfriend. + News Magazine + Legal + + + + American Housewife + The Election + Katie pushes Cooper to share his passion for the culinary arts and ambition of becoming a chef with his autocratic father; Greg and Principal Ablin go head-to-head when the election results offer an interesting twist; the Otto family gets a surprise. + + Katy Mixon + Diedrich Bader + Meg Donnelly + + Sitcom + + + TV14 + + + + American Housewife + Pilot + Katie tries to help Anna-Kat fit in at school; Taylor and Oliver get caught up in the luxe Westport lifestyle; Katie's neighbor decides to move. + + Katy Mixon + Diedrich Bader + Daniel DiMaggio + + Sitcom + + + TVPG + + + + Justice for All With Judge Cristina Pérez + Sympathy, Please & Burnt Tongues Don't Get Fed + A courier blames a mechanic for lost work because his motorcycle wasn't fixed in a timely manner; a woman is injured after she is served scalding-hot coffee. + Reality TV + Legal + + + TVPG + + + + We the People With Judge Lauren Lake + Drummer Drama & Running the Green + Dispute between neighbors over a loud party and damaged speakers; woman blames her friend for her missed flight after they're pulled over by the police. + Reality TV + Legal + + + TVPG + + + + KCAL Mornings 4am + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + KCAL Mornings 5am + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + KCAL Mornings 6am + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + KCAL Mornings 7am + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + KCAL Mornings 8am + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + KCAL Mornings 9am + News + + + + KCAL Mornings 10am + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + Mathis Court With Judge Mathis + Judge Greg Mathis presides over small-claims court arbitrations. + Reality TV + Legal + + + TVPG + + + + Mathis Court With Judge Mathis + Deadbeat Dadmate + A son is sued after he has no choice but to send his father packing. + Reality TV + Legal + + + TVPG + + + + KCAL 9 News 12pm + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + America's Court With Judge Ross + Birthday Bills & Washed Up + A man sues his ex-girlfriend for spending too much of his money on her vacation; a father blames his daughter's ex-boyfriend for property damage. + Reality TV + Legal + + + TVPG + + + + Equal Justice With Judge Eboni K. Williams + Death of Disco & Style Me Not + Woman sues after her ex-best friend takes someone else to a concert; salon owner seeks compensation after a hairstylist leaves without notice. + Reality TV + Legal + + + TVPG + + + + Cutlers Court + Daniels vs. White + After her boyfriend, Barry, takes a suspicious. + Legal + Reality TV + + + TVPG + + + + Cutlers Court + Mallett vs. Silas + Felicia is done playing sugar mama for her younger boyfriend, Tyler: she wants the money she's owed for his repossessed truck. + Legal + Reality TV + + + TVPG + + + + Dr. Phil + Gypsy Rose: From Wheelchair Bound to Behind Bars for Murder + A severe case of Munchausen syndrome by proxy leads to murder: Gypsy Rose Blanchard decides that killing her own mother is her only way to escape years of abuse. + Talk Shows + + + TV14 + + + + KCAL 9 News 4pm + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + Funny You Should Ask + Jon Lovitz; Tiffany Haddish; Adam Carolla; Byron Allen; Whitney Cummings; Jamie Kennedy. + Game Shows + Comedy + + + TVPG + + + + Funny You Should Ask + Jon Lovitz; Kim Whitley; Billy Gardell; Byron Allen; Natasha Leggero; Jamie Kennedy. + Game Shows + Comedy + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + KCAL 9 News 8pm + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + KCAL 9 News 9pm + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + KCAL 9 News 10pm + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + Sports Central + Highlights, player reaction and analysis from the biggest games in Southern California sports. + News + Sports + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + Family Feud + Teams compete to match answers of nationwide surveys. + Game Shows + + + TVPG + + + + The Neighborhood + Pilot + A friendly Midwesterner moves his family to a Los Angeles neighborhood next door to Calvin, who's concerned the newcomers will disrupt the culture on the block. + + Cedric the Entertainer + Max Greenfield + Beth Behrs + + Sitcom + + + TVPG + + + + The Neighborhood + Welcome to Bowling + Calvin and Dave team up for a chance at bowling championship glory; Gemma and Tina face off against each other for the top ranking in an arcade game. + + Cedric the Entertainer + Max Greenfield + Beth Behrs + + Sitcom + + + TVPG + + + + 48 Hours + Loved to Death + A teen ends up dead after an intense breakup. + News Magazine + Legal + + + + American Housewife + The Nap + Katie is exhausted after the kids keep her up all night, and Greg catches the flu; Katie has a confrontation with the school crossing guard. + + Katy Mixon + Diedrich Bader + Meg Donnelly + + Sitcom + + + TVPG + + + + American Housewife + Westport Zombies + Katie reluctantly joins Westport's Halloween zombie run; Anna-Kat and Greg get too enthusiastic about being zombies. + + Katy Mixon + Diedrich Bader + Meg Donnelly + + Sitcom + Christmas + + + TVPG + + + + Justice for All With Judge Cristina Pérez + Prom Protocol & Dog + A dispute between parents after their teens are banned from prom; a woman breaks her lease in order to pay a hefty fine because she dyed her dog's fur. + Reality TV + Legal + + + TVPG + + + + We the People With Judge Lauren Lake + Caged Lovers & Washing Machine Misery + Woman sues her ex-boyfriend for selling her dog while she was in prison; man blames his flooded apartment on his neighbor's leaky washing machine. + Reality TV + Legal + + + TVPG + + + + KCAL Mornings 4am + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + KCAL Mornings 5am + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + KCAL Mornings 6am + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + KCAL Mornings 7am + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + KCAL Mornings 8am + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + KCAL Mornings 9am + News + + + + KCAL Mornings 10am + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + Mathis Court With Judge Mathis + Twisted Television & Kind of Beefy + Man sues his roommate's girlfriend for intentionally breaking his television, twice; woman seeks compensation after a food festival booth is a success. + Reality TV + Legal + + + TVPG + + + + Mathis Court With Judge Mathis + Roadrageous & Fried Catfish + A parent seeks compensation after a son is traumatized by a co-worker's road rage; a woman sues after she is scammed by an online love interest. + Reality TV + Legal + + + TVPG + + + + KCAL 9 News 12pm + The KCAL 9 News Team presents the latest news along with sports, weather and traffic. + News + + + + America's Court With Judge Ross + Bail Me Out + A man seeks compensation from his cousin's neighbor after he was wrongfully arrested because she called the police while he was house-sitting. + Reality TV + Legal + + + TVPG + + + + Equal Justice With Judge Eboni K. Williams + All Them Dogs + Tenant seeks the return of prepaid rent after her landlord's home was overrun with dogs. + Reality TV + Legal + + + TVPG + + + + Cutlers Court + Renneberg vs. Peterson + A surprise confession changes the course of Johnathan and McKenzie's budding relationship. + Legal + Reality TV + + + TVPG + + + + Cutlers Court + Hicks vs. Rodriguez + A Texas man says he suspects his girlfriend of cheating with the father of her children. + Legal + Reality TV + + + TVPG + + + + Dr. Phil + Exclusive: The Vanderbilt Football Player's Interview From Behind Bars + One of two former Vanderbilt University football players who were found guilty of raping an unconscious female classmate in a campus dorm room after a night of drinking tells his story. + Talk Shows + + + TV14 + + + + WTAJ News at 11 + + + + Hiring America + Helping America's returning military veterans find good jobs. + + + + Access Hollywood + Hosts Mario Lopez, Kit Hoover and Scott Evans and correspondent Zuri Hall take viewers behind the velvet ropes and onto the red carpet to deliver celebrity interviews and entertainment news stories in Hollywood. + + + + SEAL Team + Jason and the team travel to Saudi Arabia, where extremists threaten to release anthrax into an underground water supply; Ray contemplates joining another team. + + + + SEAL Team + Jason and the team must rescue American hostages after an oil platform is overtaken by armed militants. + + + + Pets.TV + Pet news, care, health and lifestyles. + + + + Beautiful Homes and Great Estates + + + + Cars.TV + Porsche race cars; GT Celebration; Thermal Club. + + + + Inogen Portable Oxygen - Oxygen Therapy that Moves with You + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + + + + Inside Edition Weekend + Interviews and human-interest stories. + + + + Designing Spaces + Step-by-step home improvements and do-it-yourself projects to help make homes more comfortable. + + + + Paid Programming + Paid programming. + + + + Inogen Portable Oxygen - Oxygen Therapy that Moves with You + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + + + + Wild About Animals + Host Mariette Hartley presents videos of animals. + + + + This Week in Pennsylvania + "This Week in Pennsylvania" examines issues important to Pennsylvanians, connects viewers with their elected state leaders, and provides perspective analysis on the many things happening in state government and politics. Hosted by Dennis Owens. + + + + Teen Kids News + Teenage reporters relay relative information for younger audiences. + + + + In Touch With Dr. Charles Stanley + In Touch Ministries is the broadcast teaching ministry of Dr. Charles Stanley. + + + + Gospel Notes + + + + WTAJ News Sunday Morning + + + + CBS News Sunday Morning + News, features, weather and commentary. + + + + Face the Nation + Margaret Brennan hosts news interviews with distinguished national and foreign figures, offering insight and analysis on the top issues of the day. + + + + DraftKings Casino Report + DraftKings Casino, a top-rated casino app! + + + + The NFL Today + Featuring highlights, predictions and the latest news from across the league. + + + + NFL Football + The Ravens (6-2) host the Seahawks (5-2) for a game featuring division leaders. Seattle took control of the NFC West with a 24-20 triumph over Cleveland in Week 8. AFC North leader Baltimore has won three straight after a 31-24 verdict at Arizona. + + + + NFL Today Postgame + Host Jim Nantz and guests dissect the action from the day's NFL games. + + + + NFL Today Postgame + Host Jim Nantz and guests dissect the action from the day's NFL games. + + + + SailGP Racing + SailGP's high-speed F50s from 10 international teams take to the water in Cádiz, Spain for the fifth event of the Championship. The United States team, lead by Jimmy Spithill, continues to chase victory in the final European race of the season. + + + + WTAJ News at 6PM + WTAJ's Emmy award-winning News team delivers the day's top local, state, and national news and a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + CBS Weekend News + The latest world and national news. + + + + 60 Minutes + Newsmagazine with features focusing on people, and events in the news and behind the headlines. + + + + Yellowstone + Kayce and Rip come to blows; Beth starts buying up land to protect the ranch; Monica begins a new chapter at the university. + + + + Yellowstone + Rainwater teams up with Jenkins for a big business deal, but powerful new enemies look to block their plans; John and Beth groom a new political candidate. + + + + Big Brother + The head of household nominates two fellow houseguests for possible eviction. + + + + WTAJ News at 11 + + + + Nittany Nation Overtime + + + + The Equalizer + McCall is hired by an online group of true-crime enthusiasts to find the anonymous stalker of an unsuspecting NYC woman when the criminal claims he will murder her in eight hours. + + + + The Equalizer + Mel's military proves critical when McCall is hired by the D.A. to find a sniper; Delilah experiences PTSD as a result of the shootings. + + + + Paid Programming + Paid programming. + + + + CBS Overnight News + National and international headlines from CBS News journalists all around the world, plus stories from the West Coast edition of the "CBS Evening News With Norah O'Donnell.". + + + + CBS Morning News + News reports on current events. + + + + WTAJ News at 5AM + WTAJ's Emmy award-winning News team delivers all of the overnight news and has a look at what viewers can expect from the day. + + + + WTAJ News at 5:30AM + WTAJ's Emmy award-winning News team delivers all of the overnight news and has a look at what viewers can expect from the day. + + + + WTAJ News at 6AM + WTAJ's Emmy award-winning News team delivers all of the overnight news and has a look at what viewers can expect from the day. + + + + WTAJ News at 6:30AM + WTAJ's Emmy award-winning News team delivers all of the overnight news and has a look at what viewers can expect from the day. + + + + CBS Mornings + Reporting on international news stories, interviews, and in-depth pieces, covering topics from news, sports, climate and technology to race, health, parenting and personal finance. + + + + The 700 Club + The doctors told Mark's family that he would never be the same even if he came out of the coma. But as they began to pray, they soon began believing for a miracle instead. + + + + Studio 814 + Studio 814 is central Pennsylvania's only live and local lifestyle show. + + + + The Price Is Right + Contestants bid for prizes then compete for fabulous showcases. + + + + WTAJ News at Noon + + + + The Young and the Restless + Drama revolves around three families in Genoa City. + + + + The Bold and the Beautiful + Past history links two Los Angeles families. + + + + The Talk + Well-known entertainment personalities discuss current events, pop culture, family, celebrity and trending topics of the day. + + + + Let's Make a Deal + Costumed contestants compete for cash and prizes. + + + + WTAJ News at 4PM + WTAJ's Emmy award-winning news team with a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + Inside Edition + Primary stories and alternative news. + + + + WTAJ News at 5PM + WTAJ's Emmy award-winning News team delivers the day's top local, state, and national news and a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + WTAJ News at 5:30PM + WTAJ's Emmy award-winning News team delivers the day's top local, state, and national news and a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + WTAJ News at 6PM + WTAJ's Emmy award-winning News team delivers the day's top local, state, and national news and a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + CBS Evening News With Norah O'Donnell + A weeknight survey of major news stories, human-interest segments and interviews with newsmakers, anchored by Norah O'Donnell. + + + + Inside Edition + An original DeLorean is discovered after 30 years hidden in a barn. + + + + Access Hollywood + BravoCon highlights, surprises and drama; the cast of "Priscilla"; Rock & Roll Hall of Fame red carpet in New York City; Danny and Lucy DeVito (Broadway's "I Need That"). + + + + NCIS + When a hotshot financial adviser is found shot at a naval station, NCIS investigates the case by interviewing the victim's 3D hologram of herself, which she created before her death. + + + + NCIS + When the body of a Navy lieutenant is discovered missing an eye, the NCIS investigation leads to the world of cage fighting. + + + + NCIS + As NCIS investigates the cause of death of a reservist Navy SEAL surgeon, they're forced to bring Vance's daughter to help with a highly dangerous mission. + + + + WTAJ News at 11PM + WTAJ's Emmy award-winning News team delivers the day's top local, state, and national news.and a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + The Late Show With Stephen Colbert + Transportation Secretary Pete Buttigieg; singer Willie Nelson. + + + + Comics Unleashed With Byron Allen + Katt Williams; Don Friesen; Tina Giorgi; Ralphie May. + + + + Comics Unleashed With Byron Allen + Pierre Edwards; Alonzo "Hamburger" Jones; Loni Love; Joe Torry. + + + + Studio 814 + Studio 814 is central Pennsylvania's only live and local lifestyle show. + + + + CBS Overnight News + National and international headlines from CBS News journalists all around the world, plus stories from the West Coast edition of the "CBS Evening News With Norah O'Donnell.". + + + + CBS Morning News + News reports on current events. + + + + WTAJ News at 5AM + WTAJ's Emmy award-winning News team delivers all of the overnight news and has a look at what viewers can expect from the day. + + + + WTAJ News at 5:30AM + WTAJ's Emmy award-winning News team delivers all of the overnight news and has a look at what viewers can expect from the day. + + + + WTAJ News at 6AM + WTAJ's Emmy award-winning News team delivers all of the overnight news and has a look at what viewers can expect from the day. + + + + WTAJ News at 6:30AM + WTAJ's Emmy award-winning News team delivers all of the overnight news and has a look at what viewers can expect from the day. + + + + CBS Mornings + Filmmaker Tyler Perry; actress Hilary Duff; authors Courtney B. Vance and Dr. Robin L. Smith. + + + + The 700 Club + Nico attempts suicide several times and no one understands it's a cry for help to get away from his abuser. When he meets a friend who finally sees him and believes him, his life changes forever. + + + + Studio 814 + Studio 814 is central Pennsylvania's only live and local lifestyle show. + + + + The Price Is Right + Contestants bid for prizes then compete for fabulous showcases. + + + + WTAJ News at Noon + + + + The Young and the Restless + Victor makes a shocking announcement; Devon questions Nate's sincerity; Lily experiences mixed signals with Daniel. + + + + The Bold and the Beautiful + Liam believes he can give Steffy a better life than Finn; Ridge begins a new chapter at Forrester Creations with Eric. + + + + The Talk + Dancer Derek Hough; TV host Brandon McMillan. + + + + Let's Make a Deal + Costumed contestants compete for cash and prizes. + + + + WTAJ News at 4PM + WTAJ's Emmy award-winning news team with a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + Inside Edition + Primary stories and alternative news. + + + + WTAJ News at 5PM + WTAJ's Emmy award-winning News team delivers the day's top local, state, and national news and a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + WTAJ News at 5:30PM + WTAJ's Emmy award-winning News team delivers the day's top local, state, and national news and a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + WTAJ News at 6PM + WTAJ's Emmy award-winning News team delivers the day's top local, state, and national news and a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + CBS Evening News With Norah O'Donnell + A weeknight survey of major news stories, human-interest segments and interviews with newsmakers, anchored by Norah O'Donnell. + + + + Inside Edition + Primary stories and alternative news. + + + + Access Hollywood + CFDA Fashion Awards. + + + + Big Brother + The houseguests compete to win the power of veto; during the veto meeting, the winner of the competition can keep nominations the same or save someone from eviction for the week. + + + + FBI True + The FBI leads a task force in Operation Knockout, the largest anti-gang operation in U.S. history; the FBI embarks on a high-speed, high-stakes race against time to catch a bomber. + + + + FBI + When an off-duty diplomatic security agent is fatally shot in New York City trying to apprehend someone, the team investigates if there's a connection to his time working in Croatia. + + + + WTAJ News at 11PM + WTAJ's Emmy award-winning News team delivers the day's top local, state, and national news.and a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + The Late Show With Stephen Colbert + Actor Daniel Radcliffe; actors Jonathan Groff and Lindsay Mendez; Arlo Parks performs. + + + + Comics Unleashed With Byron Allen + Matt Baetz; Paul Bel; Hampton Yount; Mike E. Winfield. + + + + Comics Unleashed With Byron Allen + Ty Barnett; Alonzo Bodden; Sommore; Guy Torry. + + + + Studio 814 + Studio 814 is central Pennsylvania's only live and local lifestyle show. + + + + CBS Overnight News + National and international headlines from CBS News journalists all around the world, plus stories from the West Coast edition of the "CBS Evening News With Norah O'Donnell.". + + + + CBS Morning News + News reports on current events. + + + + WTAJ News at 5AM + WTAJ's Emmy award-winning News team delivers all of the overnight news and has a look at what viewers can expect from the day. + + + + WTAJ News at 5:30AM + WTAJ's Emmy award-winning News team delivers all of the overnight news and has a look at what viewers can expect from the day. + + + + WTAJ News at 6AM + WTAJ's Emmy award-winning News team delivers all of the overnight news and has a look at what viewers can expect from the day. + + + + WTAJ News at 6:30AM + WTAJ's Emmy award-winning News team delivers all of the overnight news and has a look at what viewers can expect from the day. + + + + CBS Mornings + Author Rachel Maddow; author Dan Senor. + + + + The 700 Club + News from a Christian perspective and inspirational guests who share stories of God at work in their lives. + + + + Studio 814 + Studio 814 is central Pennsylvania's only live and local lifestyle show. + + + + The Price Is Right + Contestants bid for prizes then compete for fabulous showcases. + + + + WTAJ News at Noon + + + + The Young and the Restless + Victor puts a stop to his family's infighting; Danny keeps the peace between Phyllis and Christine; Chance catches Nina off guard. + + + + The Bold and the Beautiful + Ridge mediates a heated exchange between Brooke and Taylor; Steffy learns the truth about Thomas' and Hope's relationship. + + + + The Talk + Author Rich Paul; TV host Casey Wilson. + + + + Let's Make a Deal + Costumed contestants compete for cash and prizes. + + + + WTAJ News at 4PM + WTAJ's Emmy award-winning news team with a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + Inside Edition + Primary stories and alternative news. + + + + WTAJ News at 5PM + WTAJ's Emmy award-winning News team delivers the day's top local, state, and national news and a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + WTAJ News at 5:30PM + WTAJ's Emmy award-winning News team delivers the day's top local, state, and national news and a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + WTAJ News at 6PM + WTAJ's Emmy award-winning News team delivers the day's top local, state, and national news and a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + CBS Evening News With Norah O'Donnell + A weeknight survey of major news stories, human-interest segments and interviews with newsmakers, anchored by Norah O'Donnell. + + + + WTAJ News at 11 + + + + Hiring America + Helping America's returning military veterans find good jobs. + + + + Access Hollywood + Hosts Mario Lopez, Kit Hoover and Scott Evans and correspondent Zuri Hall take viewers behind the velvet ropes and onto the red carpet to deliver celebrity interviews and entertainment news stories in Hollywood. + + + + SEAL Team + Jason and the team travel to Saudi Arabia, where extremists threaten to release anthrax into an underground water supply; Ray contemplates joining another team. + + + + SEAL Team + Jason and the team must rescue American hostages after an oil platform is overtaken by armed militants. + + + + Pets.TV + Pet news, care, health and lifestyles. + + + + Beautiful Homes and Great Estates + + + + Cars.TV + Porsche race cars; GT Celebration; Thermal Club. + + + + Inogen Portable Oxygen - Oxygen Therapy that Moves with You + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + + + + Inside Edition Weekend + Interviews and human-interest stories. + + + + Designing Spaces + Step-by-step home improvements and do-it-yourself projects to help make homes more comfortable. + + + + Paid Programming + Paid programming. + + + + Inogen Portable Oxygen - Oxygen Therapy that Moves with You + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + + + + Wild About Animals + Host Mariette Hartley presents videos of animals. + + + + This Week in Pennsylvania + "This Week in Pennsylvania" examines issues important to Pennsylvanians, connects viewers with their elected state leaders, and provides perspective analysis on the many things happening in state government and politics. Hosted by Dennis Owens. + + + + Teen Kids News + Teenage reporters relay relative information for younger audiences. + + + + In Touch With Dr. Charles Stanley + In Touch Ministries is the broadcast teaching ministry of Dr. Charles Stanley. + + + + Gospel Notes + + + + WTAJ News Sunday Morning + + + + CBS News Sunday Morning + News, features, weather and commentary. + + + + Face the Nation + Margaret Brennan hosts news interviews with distinguished national and foreign figures, offering insight and analysis on the top issues of the day. + + + + DraftKings Casino Report + DraftKings Casino, a top-rated casino app! + + + + The NFL Today + Featuring highlights, predictions and the latest news from across the league. + + + + NFL Football + The Ravens (6-2) host the Seahawks (5-2) for a game featuring division leaders. Seattle took control of the NFC West with a 24-20 triumph over Cleveland in Week 8. AFC North leader Baltimore has won three straight after a 31-24 verdict at Arizona. + + + + NFL Today Postgame + Host Jim Nantz and guests dissect the action from the day's NFL games. + + + + NFL Today Postgame + Host Jim Nantz and guests dissect the action from the day's NFL games. + + + + SailGP Racing + SailGP's high-speed F50s from 10 international teams take to the water in Cádiz, Spain for the fifth event of the Championship. The United States team, lead by Jimmy Spithill, continues to chase victory in the final European race of the season. + + + + WTAJ News at 6PM + WTAJ's Emmy award-winning News team delivers the day's top local, state, and national news and a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + CBS Weekend News + The latest world and national news. + + + + 60 Minutes + Newsmagazine with features focusing on people, and events in the news and behind the headlines. + + + + Yellowstone + Kayce and Rip come to blows; Beth starts buying up land to protect the ranch; Monica begins a new chapter at the university. + + + + Yellowstone + Rainwater teams up with Jenkins for a big business deal, but powerful new enemies look to block their plans; John and Beth groom a new political candidate. + + + + Big Brother + The head of household nominates two fellow houseguests for possible eviction. + + + + WTAJ News at 11 + + + + Nittany Nation Overtime + + + + The Equalizer + McCall is hired by an online group of true-crime enthusiasts to find the anonymous stalker of an unsuspecting NYC woman when the criminal claims he will murder her in eight hours. + + + + The Equalizer + Mel's military proves critical when McCall is hired by the D.A. to find a sniper; Delilah experiences PTSD as a result of the shootings. + + + + Paid Programming + Paid programming. + + + + CBS Overnight News + National and international headlines from CBS News journalists all around the world, plus stories from the West Coast edition of the "CBS Evening News With Norah O'Donnell.". + + + + CBS Morning News + News reports on current events. + + + + WTAJ News at 5AM + WTAJ's Emmy award-winning News team delivers all of the overnight news and has a look at what viewers can expect from the day. + + + + WTAJ News at 5:30AM + WTAJ's Emmy award-winning News team delivers all of the overnight news and has a look at what viewers can expect from the day. + + + + WTAJ News at 6AM + WTAJ's Emmy award-winning News team delivers all of the overnight news and has a look at what viewers can expect from the day. + + + + WTAJ News at 6:30AM + WTAJ's Emmy award-winning News team delivers all of the overnight news and has a look at what viewers can expect from the day. + + + + CBS Mornings + Reporting on international news stories, interviews, and in-depth pieces, covering topics from news, sports, climate and technology to race, health, parenting and personal finance. + + + + The 700 Club + The doctors told Mark's family that he would never be the same even if he came out of the coma. But as they began to pray, they soon began believing for a miracle instead. + + + + Studio 814 + Studio 814 is central Pennsylvania's only live and local lifestyle show. + + + + The Price Is Right + Contestants bid for prizes then compete for fabulous showcases. + + + + WTAJ News at Noon + + + + The Young and the Restless + Drama revolves around three families in Genoa City. + + + + The Bold and the Beautiful + Past history links two Los Angeles families. + + + + The Talk + Well-known entertainment personalities discuss current events, pop culture, family, celebrity and trending topics of the day. + + + + Let's Make a Deal + Costumed contestants compete for cash and prizes. + + + + WTAJ News at 4PM + WTAJ's Emmy award-winning news team with a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + Inside Edition + Primary stories and alternative news. + + + + WTAJ News at 5PM + WTAJ's Emmy award-winning News team delivers the day's top local, state, and national news and a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + WTAJ News at 5:30PM + WTAJ's Emmy award-winning News team delivers the day's top local, state, and national news and a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + WTAJ News at 6PM + WTAJ's Emmy award-winning News team delivers the day's top local, state, and national news and a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + CBS Evening News With Norah O'Donnell + A weeknight survey of major news stories, human-interest segments and interviews with newsmakers, anchored by Norah O'Donnell. + + + + Inside Edition + An original DeLorean is discovered after 30 years hidden in a barn. + + + + Access Hollywood + BravoCon highlights, surprises and drama; the cast of "Priscilla"; Rock & Roll Hall of Fame red carpet in New York City; Danny and Lucy DeVito (Broadway's "I Need That"). + + + + NCIS + When a hotshot financial adviser is found shot at a naval station, NCIS investigates the case by interviewing the victim's 3D hologram of herself, which she created before her death. + + + + NCIS + When the body of a Navy lieutenant is discovered missing an eye, the NCIS investigation leads to the world of cage fighting. + + + + NCIS + As NCIS investigates the cause of death of a reservist Navy SEAL surgeon, they're forced to bring Vance's daughter to help with a highly dangerous mission. + + + + WTAJ News at 11PM + WTAJ's Emmy award-winning News team delivers the day's top local, state, and national news.and a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + The Late Show With Stephen Colbert + Transportation Secretary Pete Buttigieg; singer Willie Nelson. + + + + Comics Unleashed With Byron Allen + Katt Williams; Don Friesen; Tina Giorgi; Ralphie May. + + + + Comics Unleashed With Byron Allen + Pierre Edwards; Alonzo "Hamburger" Jones; Loni Love; Joe Torry. + + + + Studio 814 + Studio 814 is central Pennsylvania's only live and local lifestyle show. + + + + CBS Overnight News + National and international headlines from CBS News journalists all around the world, plus stories from the West Coast edition of the "CBS Evening News With Norah O'Donnell.". + + + + CBS Morning News + News reports on current events. + + + + WTAJ News at 5AM + WTAJ's Emmy award-winning News team delivers all of the overnight news and has a look at what viewers can expect from the day. + + + + WTAJ News at 5:30AM + WTAJ's Emmy award-winning News team delivers all of the overnight news and has a look at what viewers can expect from the day. + + + + WTAJ News at 6AM + WTAJ's Emmy award-winning News team delivers all of the overnight news and has a look at what viewers can expect from the day. + + + + WTAJ News at 6:30AM + WTAJ's Emmy award-winning News team delivers all of the overnight news and has a look at what viewers can expect from the day. + + + + CBS Mornings + Filmmaker Tyler Perry; actress Hilary Duff; authors Courtney B. Vance and Dr. Robin L. Smith. + + + + The 700 Club + Nico attempts suicide several times and no one understands it's a cry for help to get away from his abuser. When he meets a friend who finally sees him and believes him, his life changes forever. + + + + Studio 814 + Studio 814 is central Pennsylvania's only live and local lifestyle show. + + + + The Price Is Right + Contestants bid for prizes then compete for fabulous showcases. + + + + WTAJ News at Noon + + + + The Young and the Restless + Victor makes a shocking announcement; Devon questions Nate's sincerity; Lily experiences mixed signals with Daniel. + + + + The Bold and the Beautiful + Liam believes he can give Steffy a better life than Finn; Ridge begins a new chapter at Forrester Creations with Eric. + + + + The Talk + Dancer Derek Hough; TV host Brandon McMillan. + + + + Let's Make a Deal + Costumed contestants compete for cash and prizes. + + + + WTAJ News at 4PM + WTAJ's Emmy award-winning news team with a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + Inside Edition + Primary stories and alternative news. + + + + WTAJ News at 5PM + WTAJ's Emmy award-winning News team delivers the day's top local, state, and national news and a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + WTAJ News at 5:30PM + WTAJ's Emmy award-winning News team delivers the day's top local, state, and national news and a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + WTAJ News at 6PM + WTAJ's Emmy award-winning News team delivers the day's top local, state, and national news and a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + CBS Evening News With Norah O'Donnell + A weeknight survey of major news stories, human-interest segments and interviews with newsmakers, anchored by Norah O'Donnell. + + + + Inside Edition + Primary stories and alternative news. + + + + Access Hollywood + CFDA Fashion Awards. + + + + Big Brother + The houseguests compete to win the power of veto; during the veto meeting, the winner of the competition can keep nominations the same or save someone from eviction for the week. + + + + FBI True + The FBI leads a task force in Operation Knockout, the largest anti-gang operation in U.S. history; the FBI embarks on a high-speed, high-stakes race against time to catch a bomber. + + + + FBI + When an off-duty diplomatic security agent is fatally shot in New York City trying to apprehend someone, the team investigates if there's a connection to his time working in Croatia. + + + + WTAJ News at 11PM + WTAJ's Emmy award-winning News team delivers the day's top local, state, and national news.and a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + The Late Show With Stephen Colbert + Actor Daniel Radcliffe; actors Jonathan Groff and Lindsay Mendez; Arlo Parks performs. + + + + Comics Unleashed With Byron Allen + Matt Baetz; Paul Bel; Hampton Yount; Mike E. Winfield. + + + + Comics Unleashed With Byron Allen + Ty Barnett; Alonzo Bodden; Sommore; Guy Torry. + + + + Studio 814 + Studio 814 is central Pennsylvania's only live and local lifestyle show. + + + + CBS Overnight News + National and international headlines from CBS News journalists all around the world, plus stories from the West Coast edition of the "CBS Evening News With Norah O'Donnell.". + + + + CBS Morning News + News reports on current events. + + + + WTAJ News at 5AM + WTAJ's Emmy award-winning News team delivers all of the overnight news and has a look at what viewers can expect from the day. + + + + WTAJ News at 5:30AM + WTAJ's Emmy award-winning News team delivers all of the overnight news and has a look at what viewers can expect from the day. + + + + WTAJ News at 6AM + WTAJ's Emmy award-winning News team delivers all of the overnight news and has a look at what viewers can expect from the day. + + + + WTAJ News at 6:30AM + WTAJ's Emmy award-winning News team delivers all of the overnight news and has a look at what viewers can expect from the day. + + + + CBS Mornings + Author Rachel Maddow; author Dan Senor. + + + + The 700 Club + News from a Christian perspective and inspirational guests who share stories of God at work in their lives. + + + + Studio 814 + Studio 814 is central Pennsylvania's only live and local lifestyle show. + + + + The Price Is Right + Contestants bid for prizes then compete for fabulous showcases. + + + + WTAJ News at Noon + + + + The Young and the Restless + Victor puts a stop to his family's infighting; Danny keeps the peace between Phyllis and Christine; Chance catches Nina off guard. + + + + The Bold and the Beautiful + Ridge mediates a heated exchange between Brooke and Taylor; Steffy learns the truth about Thomas' and Hope's relationship. + + + + The Talk + Author Rich Paul; TV host Casey Wilson. + + + + Let's Make a Deal + Costumed contestants compete for cash and prizes. + + + + WTAJ News at 4PM + WTAJ's Emmy award-winning news team with a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + Inside Edition + Primary stories and alternative news. + + + + WTAJ News at 5PM + WTAJ's Emmy award-winning News team delivers the day's top local, state, and national news and a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + WTAJ News at 5:30PM + WTAJ's Emmy award-winning News team delivers the day's top local, state, and national news and a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + WTAJ News at 6PM + WTAJ's Emmy award-winning News team delivers the day's top local, state, and national news and a weather forecast powered by VIPIR Radar, the region's most powerful and accurate radar. + + + + CBS Evening News With Norah O'Donnell + A weeknight survey of major news stories, human-interest segments and interviews with newsmakers, anchored by Norah O'Donnell. + + + + Listing Impossible + The Marble Monument to Love + A widower says he wants to sell the dream house his late wife designed, but his emotional attachment to the property makes it hard to let go; agent Arvin tries a hard sell on potential clients in Hancock Park, only to get an unpleasant surprise. + Reality TV + Business + + + TVPG + + + + Listing Impossible + The Marble Monument to Love + A widower says he wants to sell the dream house his late wife designed, but his emotional attachment to the property makes it hard to let go; agent Arvin tries a hard sell on potential clients in Hancock Park, only to get an unpleasant surprise. + Reality TV + Business + + + TVPG + + + + Listing Impossible + The Best Castle in Orange County + A $30 million Tuscan-style castle sticks out like a sore thumb in its Newport Beach neighborhood, but the stubborn seller is convinced she's got the right house at the right price; Aaron must find an NFL star the perfect L.A. home. + Reality TV + Business + + + TVPG + + + + Listing Impossible + The Finest English Manor in Napa + When Aaron and Neyshia travel to Napa to take on a one-of-a-kind vineyard estate, they must tread carefully - because the eccentric English owners have already fired them once before. + Reality TV + Business + + + TVPG + + + + Listing Impossible + The Cold Box on the Beach + A desperate divorcée enlists Aaron to help unload her beach house, which has been sitting on the market for three years with zero offers; agent Tay must decide whether to capitalize on her very famous last name or keep trying to make it on her own. + Reality TV + Business + + + TVPG + + + + Listing Impossible + The Marble Monument to Love + A widower says he wants to sell the dream house his late wife designed, but his emotional attachment to the property makes it hard to let go; agent Arvin tries a hard sell on potential clients in Hancock Park, only to get an unpleasant surprise. + Reality TV + Business + + + TVPG + + + + Listing Impossible + The Best Castle in Orange County + A $30 million Tuscan-style castle sticks out like a sore thumb in its Newport Beach neighborhood, but the stubborn seller is convinced she's got the right house at the right price; Aaron must find an NFL star the perfect L.A. home. + Reality TV + Business + + + TVPG + + + + Listing Impossible + The Finest English Manor in Napa + When Aaron and Neyshia travel to Napa to take on a one-of-a-kind vineyard estate, they must tread carefully - because the eccentric English owners have already fired them once before. + Reality TV + Business + + + TVPG + + + + Listing Impossible + The House on the 16th Hole + A $12 million mansion in a golf course community isn't quite the hot commodity its owners hoped it'd be, but Aaron and Morgan are determined to turn up the temperature. And Aaron and Arvin clash in the office when Arvin oversteps on a deal. + Reality TV + Business + + + TVPG + + + + American Greed + Clean Teeth, Dirty Money; Comic Book Murder + A sex trafficking ring, comprised of violent pimps who exploit women, enlists a Chicago dentist to launder their money; a plot to steal a valuable comic book collection ends in murder. + News Magazine + Docu-Series + + + TVPG + + + + American Greed + Diagnosis: Blood Money; Chicago Jailbreak + A Michigan doctor treats cancer-free patients with poisonous chemotherapy while taking millions in payment; two Chicago-area bank robbers repel 17 stories to escape the Metropolitan Correctional Center. + News Magazine + Docu-Series + + + TVPG + + + + ExxonMobil at the Crossroads + Once seen as untouchable, ExxonMobil now faces shareholder challenges over its direction and criticism that it fostered public uncertainty about global warming; examining if the company is ready for the energy transition. + Specials + Documentary + + + + American Greed + Family Fortune Feud + A once $100 million publishing fortune creates tension between mother and son when he's accused of squandering millions on sex, diamonds, and fraud. + News Magazine + Docu-Series + + + TVPG + + + + American Greed + Silk Road: Digital Drug Dealers + Federal agents seek to unmask the anonymous mastermind of the world's largest online and underground drug bazaar, despite potential corruption in their own ranks. + News Magazine + Docu-Series + + + TVPG + + + + Back in the Game + Joe Smith + Former professional athletes that are suffering with financial troubles are paired with money mentors to get them back on track. + Reality TV + Business + + + TVPG + + + + Back in the Game + Ryan Lochte + Alex Rodriguez gives financial advice to Olympic swimmer Ryan Lochte who is living paycheck to paycheck after becoming embroiled in a scandal during the 2016 Summer Olympics held in Rio de Janeiro. + Reality TV + Business + + + TVPG + + + + Back in the Game + Brian Dunkleman + Ever since he foolishly walked away from a lucrative job as co-host of American Idol, Brian Dunkleman has been struggling and is now a full time Uber driver trying to support his young son. + Reality TV + Business + + + TVPG + + + + Back in the Game + Nicole Eggert + As former. + Reality TV + Business + + + TVPG + + + + Back in the Game + Joe Smith + Former professional athletes that are suffering with financial troubles are paired with money mentors to get them back on track. + Reality TV + Business + + + TVPG + + + + Back in the Game + Ryan Lochte + Alex Rodriguez gives financial advice to Olympic swimmer Ryan Lochte who is living paycheck to paycheck after becoming embroiled in a scandal during the 2016 Summer Olympics held in Rio de Janeiro. + Reality TV + Business + + + TVPG + + + + Back in the Game + Brian Dunkleman + Ever since he foolishly walked away from a lucrative job as co-host of American Idol, Brian Dunkleman has been struggling and is now a full time Uber driver trying to support his young son. + Reality TV + Business + + + TVPG + + + + Back in the Game + Nicole Eggert + As former. + Reality TV + Business + + + TVPG + + + + Managing Asia + Neste + Christine Tan speaks to Neste's President & CEO, Matti Lehmus, to learn about the company's renewable fuel strategy and whether he has plans to wind down its traditional crude oil refinery business. + Business + News + + + + Managing Asia + Kuehne+Nagel + Christine Tan speaks exclusively to Kuehne+Nagel's CEO, Stefan Paul, to find out how he plans to grow the Swiss-based transportation and logistics group. + Business + + + TV14 + + + + Squawk Box + The biggest names in business and politics tell their most important stories in this ultimate pre-market morning news and talk program; a must see for everyone, from the professional trader to the casual investor. + News + Business + + + + Street Signs + Information about under-the-radar stocks and market trends help investors make wise choices. + News + Business + + + + Managing Asia + Neste + Christine Tan speaks to Neste's President & CEO, Matti Lehmus, to learn about the company's renewable fuel strategy and whether he has plans to wind down its traditional crude oil refinery business. + Business + News + + + + Managing Asia + Kuehne+Nagel + Christine Tan speaks exclusively to Kuehne+Nagel's CEO, Stefan Paul, to find out how he plans to grow the Swiss-based transportation and logistics group. + Business + + + TV14 + + + + Capital Connection + Global business news broadcast simultaneously from London and Singapore. + News + Business + + + + Squawk Box + The biggest names in business and politics tell their most important stories in this ultimate pre-market morning news and talk program; a must see for everyone, from the professional trader to the casual investor. + News + Business + + + + Street Signs + Information about under-the-radar stocks and market trends help investors make wise choices. + News + Business + + + + Worldwide Exchange + Delivering essential, actionable information and analysis for anyone who wants to be part of the global business conversation; preparing CNBC's worldwide audience with a smart take on overnight U.S. news and live international market action. + News + Business + + + + Marketing Media Money + Anantara + CNBC's Dan Murphy explores the global luxury hotel and resorts brand Anantara to examine its marketing strategies; he visits one of its latest resorts on Dubai's ambitious World Islands. + News + Talk Shows + + + + Marketing Media Money + The Sandbox + People see marketing every day, but how they consume it changes with the media. + News + Talk Shows + + + + The CNBC Conversation + GP Hinduja + Gopichand Hinduja, shares his thoughts with Tanvir Gill on the company's investment into the luxury property sector and he gives his opinion on what's hindering India from becoming an investment hotspot. + Business + + + + The CNBC Conversation + Jim Hagemann Snab + What Jim Hagemann Snabe thinks about the transformative power of technology; the move towards sustainability; and the current issues surrounding globalization. + Business + + + + CNBC Meets + Defining Values: HSH Prince Albert II of Monaco + CNBC goes face to face with the world's most influential high flyers to ask about their business. + Documentary + + + + CNBC Meets + Defining Values: Yo Yo Ma + Tania Bryer meets Yo-Yo Ma, a world-renowned cellist with a six-decade career, to discover how he hopes music will help break down barriers and create cross-cultural understanding. + Documentary + + + + The Brave Ones + Zhang Xin + SOHO China CEO Zhang Xin shares her journey from working in a sweatshop to becoming one of China's richest women and most prominent and innovative pioneers. + Business + News + + + + The Brave Ones + Hugh Evans + Humanitarian Hugh Evans brings together some of the world's biggest music artists for the Global Citizen Festival in an effort to end poverty. + Business + News + + + TVG + + + + Trailblazers + Jean Paul Gaultier's Paris + Jean Paul Gaultier becomes a tour guide in Paris and reveals where he hangs out. + Reality TV + News + + + TV14 + + + + Trailblazers + Andrea Bocelli's Tuscany + Andrea Bocelli reveals his favorite places in Tuscany. + News + + + + IoT: Powering the Digital Economy + Energy (B2B) + Fin Tech offers consumers a choice when it comes to handling their finances. + Computers & Technologies + Business + + + + IoT: Powering the Digital Economy + Energy (B2C) + Fin Tech offers consumers a choice when it comes to handling their finances. + Computers & Technologies + Business + + + + Sustainable Energy + Agrifood + Environmental + Business + + + + Sustainable Energy + Green Chemistry + Environmental + Business + + + + The Edge + The Future of Travel + Exploring the potential of innovation, from how new products and ideas will shape lives to the long-term investment opportunity. + Business + News + + + + The Edge + Powering Sport + Adam Reed explores the latest technologies behind the summer's biggest sporting events, from how AI helps tennis players improve their game at Wimbledon to the way data is transforming the Tour de France. + Business + News + + + + A Billionaire's Bet: The Best & Brightest + A group of remarkable students travels to Beijing, where they live, study and play together, to take part in a program for future world leaders. + Specials + Documentary + + + + Marketing Media Money + Anantara + CNBC's Dan Murphy explores the global luxury hotel and resorts brand Anantara to examine its marketing strategies; he visits one of its latest resorts on Dubai's ambitious World Islands. + News + Talk Shows + + + + Marketing Media Money + The Sandbox + People see marketing every day, but how they consume it changes with the media. + News + Talk Shows + + + + Managing Asia + Hysan Development + Asia's top business leaders share their secrets of success. + Business + News + + + + Managing Asia + Tory Burch + Christine Tan speaks with American designer Tory Burch and Pierre-Yves Roussel, CEO of the eponymous global fashion group, to find out how they plan to further grow the brand.Guests: Tory Burch, Pierre-Yves Roussel.. + Business + + + + Squawk Box + The biggest names in business and politics tell their most important stories in this ultimate pre-market morning news and talk program; a must see for everyone, from the professional trader to the casual investor. + News + Business + + + + Street Signs + Information about under-the-radar stocks and market trends help investors make wise choices. + News + Business + + + + Managing Asia + Hysan Development + Asia's top business leaders share their secrets of success. + Business + News + + + + Managing Asia + Tory Burch + Christine Tan speaks with American designer Tory Burch and Pierre-Yves Roussel, CEO of the eponymous global fashion group, to find out how they plan to further grow the brand.Guests: Tory Burch, Pierre-Yves Roussel.. + Business + + + + Capital Connection + Global business news broadcast simultaneously from London and Singapore. + News + Business + + + + Squawk Box + The biggest names in business and politics tell their most important stories in this ultimate pre-market morning news and talk program; a must see for everyone, from the professional trader to the casual investor. + News + Business + + + + Street Signs + Information about under-the-radar stocks and market trends help investors make wise choices. + News + Business + + + + Worldwide Exchange + Delivering essential, actionable information and analysis for anyone who wants to be part of the global business conversation; preparing CNBC's worldwide audience with a smart take on overnight U.S. news and live international market action. + News + Business + + + + Marketing Media Money + Publicis Sapient's Latest Campaign + News + Talk Shows + + + + Marketing Media Money + DBS + The strategy of DBS, a large bank, as it brands itself as a tech start-up. + News + Talk Shows + + + + The CNBC Conversation + Ep 210: Alexandre Ricard + Pernod Ricard Chairman and CEO, Alexandre Ricard speaks to Tania Bryer about leading the global drinks conglomerate co-founded by his grandfather, changing consumer trends, new markets and sustainability. + Business + + + + The CNBC Conversation + Ep 211: Jean Todt + In his final television interview before he stepped down as the President of the FIA, Jean Todt speaks about his extraordinary career, his hopes for safer roads and his predictions for Formula One. + Business + News + + + + CNBC Meets + Defining Values: Dr. Fei Fei + CNBC goes face to face with the world's most influential high flyers to ask about their business. + Documentary + + + + CNBC Meets + Defining Values: Simon Yam + CNBC goes face to face with the world's most influential high flyers to ask about their business.Guests: Simon Yam.. + Documentary + + + + The Brave Ones + Richard Branson + Virgin Group founder and billionaire Richard Branson narrates his journey and reveals why he takes a brave approach to business. + Business + News + + + + The Brave Ones + Bernard Arnault + Bernard Arnault took his father's construction business and turned it into the world's largest luxury product company, LVMH. + Business + News + + + + Trailblazers + Lenny Kravitz's Bahamas + With 40 million albums sold, Lenny Kravitz is a musical icon, but when not touring he goes home to the Bahamas and reveals why it is a must for travelers. + News + + + + Trailblazers + Nobu Matsuhisa's Tokyo + Chef Nobu Matsuhisa reveals his favorite places and shares his memories of growing up in the Japanese capital of Tokyo. + News + + + + IoT: Powering the Digital Economy + The media industry is adapting to the digital revolution and businesses work together to provide consumers with more choices, more content and more control. + Computers & Technologies + Business + + + + IoT: Powering the Digital Economy + Media B2C + Fin Tech offers consumers a choice when it comes to handling their finances. + Computers & Technologies + Business + + + + Sustainable Energy + Biomimicry + Environmental + Business + + + + Sustainable Energy + Forests + Environmental + Business + + + + The Edge + Dubai: Extreme Infrastructure + Dan Murphy explores innovative solutions allowing Dubai's buildings, public transport, farms, and leisure facilities to run efficiently in the United Arab Emirates' desert metropolis where temperatures can top 100 degrees Fahrenheit. + Business + + + + The Edge + Dubai: City of Startups + Exploring the potential of innovation, from how new products and ideas will shape lives to the long-term investment opportunity. + Business + News + + + + Bitcoin: Boom or Bust + The good, the bad and the ugly sides of bitcoin, the cryptocurrency that's turned into a worldwide phenomenon, attracting investors from Wall Street to Main Street; Melissa Lee interviews a quirky millionaire, an escort and a notorious con man. + Specials + Documentary + + + TVPG + + + + Marketing Media Money + Publicis Sapient's Latest Campaign + News + Talk Shows + + + + Marketing Media Money + DBS + The strategy of DBS, a large bank, as it brands itself as a tech start-up. + News + Talk Shows + + + + Managing Asia + ST Engineering + Christine Tan speaks with ST Engineering's president and CEO, Vincent Chong, about how he is driving change in the technology, defense, and engineering giant.Guests: Vincent Chong.. + Business + + + + Managing Asia + YTL Corp + Christine Tan travels to Kuala Lumpur to meet the chairman of YTL Corp., Francis Yeoh, and learns how one of biggest companies in Malaysia is capitalizing on its infrastructure expertise to expand its operations. + Business + + + + Squawk Box + The biggest names in business and politics tell their most important stories in this ultimate pre-market morning news and talk program; a must see for everyone, from the professional trader to the casual investor. + News + Business + + + + Street Signs + Information about under-the-radar stocks and market trends help investors make wise choices. + News + Business + + + + Managing Asia + ST Engineering + Christine Tan speaks with ST Engineering's president and CEO, Vincent Chong, about how he is driving change in the technology, defense, and engineering giant.Guests: Vincent Chong.. + Business + + + + Managing Asia + YTL Corp + Christine Tan travels to Kuala Lumpur to meet the chairman of YTL Corp., Francis Yeoh, and learns how one of biggest companies in Malaysia is capitalizing on its infrastructure expertise to expand its operations. + Business + + + + Capital Connection + Global business news broadcast simultaneously from London and Singapore. + News + Business + + + + Squawk Box + The biggest names in business and politics tell their most important stories in this ultimate pre-market morning news and talk program; a must see for everyone, from the professional trader to the casual investor. + News + Business + + + + Street Signs + Information about under-the-radar stocks and market trends help investors make wise choices. + News + Business + + + + Worldwide Exchange + Delivering essential, actionable information and analysis for anyone who wants to be part of the global business conversation; preparing CNBC's worldwide audience with a smart take on overnight U.S. news and live international market action. + News + Business + + + + Marketing Media Money + On + CNBC uncovers the marketing strategies behind Swiss sportswear brand, On, and reveals how an innovative running shoe became a multibillion-dollar business. + News + Talk Shows + + + + Marketing Media Money + Cannes Lions 2023 + CNBC's Tania Bryer heads to the Cannes Lions International Festival of Creativity for the 70th anniversary of the event. + News + Talk Shows + + + + The CNBC Conversation + Ep 212: Lord Karan Bilimoria + A show that lets the person talk for themselves and gives audiences a glimpse at the personality behind the public persona. Heads of State, titans of business and celebrated stars sit down for the CNBC Conversation. + Business + News + + + + The CNBC Conversation + Campbell Wilson + He's a veteran of airlines industry, so as it emerges from its most turbulent time ever; Campbell Wilson, CEO of Scoot reveals what really happened at the height of the pandemic and how it will affect the future of air travel. + Business + News + + + + CNBC Meets + Sir Richard Branson + Richard Branson talks to Tania Bryer. + Documentary + + + + CNBC Meets + Jon Bon Jovi + Jon Bon Jovi reveals to Tania Bryer his passion and dedication to his philanthropic work. + Documentary + + + + The Brave Ones + Tina Brown + Journalist, editor, columnist and TV host Tina Brown talks about her life, career and her drive.Guests: Tina Brown.. + Business + News + + + + The Brave Ones + Min-Liang Tan, CEO of Razer + Lawyer Min-Liang TanHe decides to give up practicing the law to start a hardware gaming company. + Business + News + + + + Trailblazers + Elle McPherson's Perth + The stories of individuals across the globe. + News + + + + Trailblazers + Shah Rukh Khan's New Delhi + The stories of individuals across the globe. + News + + + + IoT: Powering the Digital Economy + Manufacturing B2B + Data-driven intelligent systems transform the B2B manufacturing landscape with facial recognition, predictive maintenance, and 3D printing. + Computers & Technologies + Business + + + + IoT: Powering the Digital Economy + Manufacturing B2C + Using 3D printers, collaborative robots, solutions for predictive maintenance, and on-demand manufacturing to meet rapidly changing demands. + Computers & Technologies + Business + + + + Sustainable Energy + How Green Is Your Ride? + From cars to bikes to scooters, there continues to be more and more options for solo travelers. + Environmental + Business + + + + Sustainable Energy + Green Public Transportation + Features on the latest environmentally-friendly public transport innovations. + Environmental + Business + + + + The Edge + Remote Response: A Work in Progress + With the COVID-19 crisis impacting business, the global economy and everyday life, Karen Tso examines the technological challenges and triumphs as the world adopts remote working. + Business + News + + + + The Edge + Making Music in Lockdown + Examining COVID-19's impact on the music industry, innovative ways music fans are being entertained, and speaking to global artists including Adam Lambert and OneRepublic's Ryan Tedder. + Business + News + + + + Buffett & Munger: A Wealth of Wisdom + Warren Buffett and Charlie Munger join Becky Quick to discuss their six decade friendship, sharing how they navigate the business world, their heroes, and why Berkshire Hathaway is different from its peers.Guests: Warren Buffett, Charlie Munger.. + Specials + Documentary + + + + Marketing Media Money + On + CNBC uncovers the marketing strategies behind Swiss sportswear brand, On, and reveals how an innovative running shoe became a multibillion-dollar business. + News + Talk Shows + + + + Marketing Media Money + Cannes Lions 2023 + CNBC's Tania Bryer heads to the Cannes Lions International Festival of Creativity for the 70th anniversary of the event. + News + Talk Shows + + + + Managing Asia + Levi Strauss + Chip Bergh helps turn around the iconic blue jean brand that first created the denim pants; Christine Tan speaks exclusively with the president and CEO of Levi Strauss & Co. to find out how he is expanding the company beyond selling 501s. + Business + + + + Managing Asia + Getting Asia Future Ready + As Asia looks to resume growth in a post-pandemic environment, companies face challenges such as inflation and unpredictable geopolitics; Christine Tan finds out how businesses can navigate these headwinds to deliver inclusive and sustainable growth. + Business + + + + Squawk Box + The biggest names in business and politics tell their most important stories in this ultimate pre-market morning news and talk program; a must see for everyone, from the professional trader to the casual investor. + News + Business + + + + The Whole Story With Anderson Cooper + Hostage to Terror + Anderson Cooper reveals dramatic details of the Hamas mass kidnapping in Israel, speaks to the families of hostage Israelis and explores the use of hostages as a tool of terror and war. + News + + + + The Whole Story With Anderson Cooper + Inside Hamas + Exploring how Hamas pulled off it's massive attack on Israel. + News + + + + The Seventies + Terrorism at Home and Abroad + From TWA Flight 481 to the Munich Olympic Massacre, witness the seeds and evolution of modern-day terrorism. + History + Documentary + + + TVPG + + + + The Nineties + New World Order + The world has seen a lot of change due to major political events, including the Warsaw Pact, Nelson Mandela's release from prison, the Persian Gulf War, and Bill Clinton becoming the president of the United States. + History + Documentary + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + The Whole Story With Anderson Cooper + Hostage to Terror + Anderson Cooper reveals dramatic details of the Hamas mass kidnapping in Israel, speaks to the families of hostage Israelis and explores the use of hostages as a tool of terror and war. + News + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + CNN This Morning Weekend + Correspondents Victor Blackwell and Amara Walker engage in relevant conversations about the latest stories and developments from across the world. + News + + + + CNN This Morning Weekend + Correspondents Victor Blackwell and Amara Walker engage in relevant conversations about the latest stories and developments from across the world. + News + + + + CNN This Morning Weekend + Correspondents Victor Blackwell and Amara Walker engage in relevant conversations about the latest stories and developments from across the world. + News + + + + State of the Union With Jake Tapper and Dana Bash + Jake Tapper and Dana Bash bring together major newsmakers, analysts and experts to tackle pressing domestic issues and diplomacy on the global stage. + News + + + + Fareed Zakaria GPS + Insights, analysis and interviews world leaders, artists, scientists, business leaders, global affairs analysts, and other cultural observers for the. + News + Political + + + TVPG + + + + Inside Politics With Manu Raju + Manu Raju leads an in-depth conversation on the week's most important political storylines, with a diverse set of analysts and news-making interviews. + News + Political + + + + State of the Union With Jake Tapper and Dana Bash + Jake Tapper and Dana Bash bring together major newsmakers, analysts and experts to tackle pressing domestic issues and diplomacy on the global stage. + News + + + + Fareed Zakaria GPS + Insights, analysis and interviews world leaders, artists, scientists, business leaders, global affairs analysts, and other cultural observers for the. + News + Political + + + TVPG + + + + CNN Newsroom With Fredricka Whitfield + The latest news and information from around the world with Fredricka Whitfield. + News + Political + + + + CNN Newsroom With Fredricka Whitfield + The latest news and information from around the world with Fredricka Whitfield. + News + Political + + + + CNN Newsroom With Fredricka Whitfield + The latest news and information from around the world with Fredricka Whitfield. + News + Political + + + + CNN Newsroom With Jim Acosta + Updates of the latest news from around the world. + Talk Shows + + + + CNN Newsroom With Jim Acosta + Updates of the latest news from around the world. + Talk Shows + + + + CNN Newsroom With Jim Acosta + Updates of the latest news from around the world. + Talk Shows + + + + CNN Newsroom With Jim Acosta + Updates of the latest news from around the world. + Talk Shows + + + + The Whole Story With Anderson Cooper + Hostage to Terror + Anderson Cooper reveals dramatic details of the Hamas mass kidnapping in Israel, speaks to the families of hostage Israelis and explores the use of hostages as a tool of terror and war. + News + + + + The Whole Story With Anderson Cooper + Inside Hamas + Exploring how Hamas pulled off it's massive attack on Israel. + News + + + + The Whole Story With Anderson Cooper + Terror in Israel + Anderson Cooper reports from southern Israel on the music festival attacked by Hamas and hears stories from survivors and relatives of the victims. + News + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + Early Start With Kasie Hunt + Getting a jump on the day's news with Kasie Hunt. + News + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + CNN News Central + The latest news from around the world live from CNN's immersive news hub with John Berman, Kate Bolduan and Sara Sidner. + News + + + + CNN News Central + The latest news from around the world live from CNN's immersive news hub with John Berman, Kate Bolduan and Sara Sidner. + News + + + + CNN News Central + The latest news from around the world live from CNN's immersive news hub with John Berman, Kate Bolduan and Sara Sidner. + News + + + + Inside Politics With Dana Bash + Top political stories researched by top reporters. + News + Political + + + + CNN News Central + News from around the world with Brianna Keilar and Boris Sanchez. + News + + + + CNN News Central + News from around the world with Brianna Keilar and Boris Sanchez. + News + + + + CNN News Central + News from around the world with Brianna Keilar and Boris Sanchez. + News + + + + The Lead With Jake Tapper + Covering all the day's top stories around the country and the globe, from politics to money, sports to popular culture. + News + Political + + + + The Lead With Jake Tapper + Covering all the day's top stories around the country and the globe, from politics to money, sports to popular culture. + News + Political + + + + The Situation Room With Wolf Blitzer + The command center for breaking news, politics and reports from around the world. + News + Political + + + + Erin Burnett OutFront + Erin Burnett stays ahead of the headlines, delivering a show that's in-depth and informative. + News + Political + + + + Anderson Cooper 360 + Anderson Cooper takes viewers beyond the headlines with in-depth reporting and investigations. + News + Political + + + TVPG + + + + The Source With Kaitlan Collins + Kaitlan Collins is chasing the facts, asking the tough questions and connecting with her sources. + News + + + + CNN NewsNight With Abby Phillip + Abby Phillip delivers a smart, sharp approach to the day's biggest stories. + News + + + + Laura Coates Live + Laura Coates goes inside the story with a relentless pursuit of the facts. + News + + + + Anderson Cooper 360 + Anderson Cooper takes viewers beyond the headlines with in-depth reporting and investigations. + News + Political + + + TVPG + + + + The Source With Kaitlan Collins + Kaitlan Collins is chasing the facts, asking the tough questions and connecting with her sources. + News + + + + CNN NewsNight With Abby Phillip + Abby Phillip delivers a smart, sharp approach to the day's biggest stories. + News + + + + Laura Coates Live + Laura Coates goes inside the story with a relentless pursuit of the facts. + News + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + Early Start With Kasie Hunt + Getting a jump on the day's news with Kasie Hunt. + News + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + CNN News Central + The latest news from around the world live from CNN's immersive news hub with John Berman, Kate Bolduan and Sara Sidner. + News + + + + CNN News Central + The latest news from around the world live from CNN's immersive news hub with John Berman, Kate Bolduan and Sara Sidner. + News + + + + CNN News Central + The latest news from around the world live from CNN's immersive news hub with John Berman, Kate Bolduan and Sara Sidner. + News + + + + Inside Politics With Dana Bash + Top political stories researched by top reporters. + News + Political + + + + CNN News Central + News from around the world with Brianna Keilar and Boris Sanchez. + News + + + + CNN News Central + News from around the world with Brianna Keilar and Boris Sanchez. + News + + + + CNN News Central + News from around the world with Brianna Keilar and Boris Sanchez. + News + + + + Election Day in America + Special coverage of Election Day 2023. + Specials + News + + + + Election Day in America + Special coverage of Election Day 2023. + Specials + News + + + + Election Day in America + Special coverage of Election Day 2023. + Specials + News + + + + Election Day in America + Special coverage of Election Day 2023. + Specials + News + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + CNN Newsroom Live + The latest news from around the world. + News + Political + + + + Early Start With Kasie Hunt + Getting a jump on the day's news with Kasie Hunt. + News + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + CNN This Morning + Stories from across the world and refreshing conversations. + News + + + + CNN News Central + The latest news from around the world live from CNN's immersive news hub with John Berman, Kate Bolduan and Sara Sidner. + News + + + + CNN News Central + The latest news from around the world live from CNN's immersive news hub with John Berman, Kate Bolduan and Sara Sidner. + News + + + + CNN News Central + The latest news from around the world live from CNN's immersive news hub with John Berman, Kate Bolduan and Sara Sidner. + News + + + + Inside Politics With Dana Bash + Top political stories researched by top reporters. + News + Political + + + + CNN News Central + News from around the world with Brianna Keilar and Boris Sanchez. + News + + + + CNN News Central + News from around the world with Brianna Keilar and Boris Sanchez. + News + + + + CNN News Central + News from around the world with Brianna Keilar and Boris Sanchez. + News + + + + The Lead With Jake Tapper + Covering all the day's top stories around the country and the globe, from politics to money, sports to popular culture. + News + Political + + + + The Lead With Jake Tapper + Covering all the day's top stories around the country and the globe, from politics to money, sports to popular culture. + News + Political + + + + The Situation Room With Wolf Blitzer + The command center for breaking news, politics and reports from around the world. + News + Political + + + + To Be Announced + Programming to be announced. + Performing Arts + Music + + + TVPG + + + + Fox 11 Sports Wrap + NFL postgame show. + Sports + Talk Show + + + + Raw Travel + Exploring Rural Haiti + Haiti's beaches and culturally rich northern region. + Travel + + + TVPG + + + + Raw Travel + Incredible Cape Town + Locals, artists and world travelers rave about Cape Town, South Africa. + Travel + + + TVPG + + + + iCRIME With Elizabeth Vargas + Crimes from across the country that have been captured by ordinary people on their smartphones; stories of victims, witnesses, law enforcement and the videographers themselves. + Reality TV + + + TV14 + + + + iCRIME With Elizabeth Vargas + Crimes from across the country that have been captured by ordinary people on their smartphones; stories of victims, witnesses, law enforcement and the videographers themselves. + Reality TV + + + TV14 + + + + Fox 11 Ten O'Clock News + News + + + + Beat Shazam + Schoolhouse Rock! + Nick Cannon guest hosts; Kelly Osbourne guest DJs; teams of teachers battle to take home the $1 million prize. + Game Shows + Music + + + TVPG + + + + The Simpsons + Homer and Marge Simpson raise Bart, Lisa and baby Maggie in Springfield, where eccentric residents make everyday life interesting. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + iCRIME With Elizabeth Vargas + Crimes from across the country that have been captured by ordinary people on their smartphones; stories of victims, witnesses, law enforcement and the videographers themselves. + Reality TV + + + TV14 + + + + Fox 11 Ten O'Clock News + News + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Pain Relief TV + Matt's pain from his 20 year old lost limb is solved. + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Pain Relief TV + Matt's pain from his 20 year old lost limb is solved. + Paid Program + + + + Peter Popoff Ministries + For over 30 years Reverend Peter Popoff has provided spiritual direction and powerful testimonies to receive God's blessings in your life. + Paid Program + + + + Pain Relief TV + Matt's pain from his 20 year old lost limb is solved. + Paid Program + + + + Coffee With America + Fall and winter wellness advice; financial planning; a busy moms fall checklist. + Talk Shows + News Magazine + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Real Life with Jack Hibbs + Desire that through Jesus Christ, you will know real life. + Religious + + + + In Touch With Dr. Charles Stanley + The Stages of Faith + In Touch Ministries is the broadcast teaching ministry of Dr. Charles Stanley. + Religious + + + TVG + + + + FOX News Sunday + Anchor Shannon Bream interviews the biggest newsmakers of the week and leads guests in providing context and analysis of the issues facing Americans. + Talk Shows + News + + + + FOX NFL Kickoff + A preview of the day's NFL action, including interviews with NFL newsmakers, reports from NFL game venues, breaking news and updates. + + Charles Tillman + Champ Bailey + Randy Moss + + Sports + Football + + + + FOX NFL Sunday + Hosts Curt Menefee and Terry Bradshaw; with analysts Howie Long, Jimmy Johnson and Michael Strahan. + Sports + Football + + + TVPG + + + + Los Angeles Rams vs. Green Bay Packers + Los Angeles Rams at Green Bay Packers + The Rams (3-5) limp into Lambeau Field for a game against the reeling Packers (2-5). Los Angeles has lost two straight after absorbing a 43-20 beating at Dallas. Green Bay's slide reached four following a 24-10 setback against rival Minnesota. + Sports + Football + + + TVG + + + + Dallas Cowboys vs. Philadelphia Eagles + Dallas Cowboys at Philadelphia Eagles + The Cowboys visit the Eagles. Philadelphia sits atop the NFL with a 7-1 record, and paces the NFC with 224 points scored. A.J. Brown (PHI) became the first player in NFL history to record 125-plus receiving yards in six consecutive games on Oct. 29. + Sports + Football + + + + The OT + Sports scores, highlights and post-game coverage. + Sports + Football + + + TVPG + + + + Fox 11 Sports Wrap + NFL postgame show. + Sports + Talk Show + + + + Fox 11 Weekend News + News + + + + Modern Family + The Closet Case + Phil has second thoughts after he helps Haley talk Claire into letting Dylan move in; Mitch accepts a job working for Jay's biggest rival; Cameron and Gloria cannot agree on how to handle Manny's girl problem. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + Modern Family + She Crazy + Phil can't get anyone else to care about tending to the eggs; Claire is anxious about bringing her closet ideas to Jay; Cameron gets over-attached to the frat guys living in the upstairs unit. + + Ed O'Neill + Julie Bowen + Ty Burrell + + Sitcom + + + TVPG + + + + The Simpsons + Treehouse of Horror XXXIV + After Bart is turned into an NFT, Marge fights through the blockchain to rescue her son; to track down a gruesome serial killer, Lisa turns to a murderer from her past; an outbreak transforms Springfielders into a plague of lazy, beer-loving oafs. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TV14 + + + + Krapopolis + Please Demeter + Tyrannis begins dating the goddess Demeter and is given an option at immortality that Deliria squashes; Stupendous and Hippocampus go to Hades to retrieve Stupendous' shield from a fallen foe. + + Hannah Waddingham + Richard Ayoade + Matt Berry + + Animated + Sitcom + + + TV14 + + + + Bob's Burgers + Bully-ieve It or Not + The Belcher kids learn a secret about Zeke's past; Bob rekindles his feud with Jimmy Pesto. + + H. Jon Benjamin + Dan Mintz + Eugene Mirman + + Animated + Sitcom + + + TVPG + + + + Family Guy + Old World Harm + Peter and Lois vacation in Florida, only to discover they've rented a condo in a retirement community; Brian helps Stewie take his first shower. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + Fox 11 Ten O'Clock News + News + + + + The Simpsons + Homer and Marge Simpson raise Bart, Lisa and baby Maggie in Springfield, where eccentric residents make everyday life interesting. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + Homer and Marge Simpson raise Bart, Lisa and baby Maggie in Springfield, where eccentric residents make everyday life interesting. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + Homer and Marge Simpson raise Bart, Lisa and baby Maggie in Springfield, where eccentric residents make everyday life interesting. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + The Simpsons + Homer and Marge Simpson raise Bart, Lisa and baby Maggie in Springfield, where eccentric residents make everyday life interesting. + + Dan Castellaneta + Julie Kavner + Nancy Cartwright + + Animated + Sitcom + + + TVPG + + + + Fox 11 Ten O'Clock News + News + + + + Reduce swelling in your legs, ankles and feet + LegXercise is the easy-to-use, automatic leg mover that uses continuous movement to soothe pain and promote healthy circulation the natural drug-free way! It's Walking Simulator Technology moves your feet back and forth along its motion track. + Paid Program + + + + Organic Whole Food Nutrition, delivered right to your door! + Supercharge your Life with Organic Power-Packed Nutritious Superfoods, Grown Right Here in America. + Paid Program + + + + Peter Popoff Ministries + For over 30 years Reverend Peter Popoff has provided spiritual direction and powerful testimonies to receive God's blessings in your life. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Good Day LA at 4am + News + + + + Good Day LA at 5am + Morning news coverage. + News + + + + Good Day LA at 6am + Morning news coverage. + News + + + + Good Day LA at 7am + Morning news coverage. + Talk Shows + + + + Good Day LA at 9am + Morning news coverage. + Talk Shows + + + + Good Day LA at 10am + Morning news coverage. + News + + + + Sherri + Actress, comic and Emmy Award-winning longtime co-host of. + Talk Shows + + + TVPG + + + + The Jennifer Hudson Show + The EGOT winner's daytime talk show features celebrity interviews, topical stories, community heroes, viral sensations, and music, bringing fun, uplifting, and empowering conversations to the forefront. + Talk Shows + + + TVPG + + + + Person, Place or Thing + A modern take on the age-old game of 20 Questions intersperses comedy with common knowledge; host People's Choice Award winner Melissa Peterman. + Game Shows + + + TVPG + + + + Person, Place or Thing + A modern take on the age-old game of 20 Questions intersperses comedy with common knowledge; host People's Choice Award winner Melissa Peterman. + Game Shows + + + TVPG + + + + 25 Words or Less + Teams compete to see who can guess secret words or phrases with a limited amount of clues and time; host Meredith Vieira. + Game Shows + + + TVPG + + + + 25 Words or Less + Lisa Kudrow vs. Corbin Bleu + Corbin Bleu puts his best foot forward, but he's going to have to circle back on some clues if he wants to win the game. + Game Shows + + + TVPG + + + + Pictionary + Viva Las Vegas + Celebrity captains Jaleel White and Ricki Lake. + Game Shows + + + TVPG + + + + Who the Bleep Is That? + Talk Shows + Game Shows + + + TVPG + + + + TMZ Live + Harvey Levin invites viewers inside TMZ's newsroom to see how news is made. + News Magazine + Performing Arts + + + TVPG + + + + Fox 11 News at 5 + Latest local and regional news. + News + + + + Fox 11 News at 6 + Local and regional news coverage. + News + + + + Extra + Inside the entertainment newsgathering process, as reporters coast to coast break headlines, advance the stories of the day, and sit down with celebrities. + News Magazine + Performing Arts + + + TVPG + + + + TMZ + The very latest celebrity news. + News Magazine + Performing Arts + + + TVPG + + + + Kitchen Nightmares + Juicy Box + Gordon Ramsay steps in to transform a family-run Haitian juice bar and restaurant in Brooklyn, N.Y., that has fallen into utter chaos. + Reality TV + Food + + + TV14 + + + + Special Forces: World's Toughest Test + Pressure + The remaining recruits are taken to the top of a mountain range to face the most demanding exercise of selection so far -- using a single rope to crawl across a deadly ravine. + Game Shows + + + TV14 + + + + Fox 11 Ten O'Clock News + News + + + + West Coast Wrap + News + + + + Dateline + The Hideaway + After a 15-year-old girl disappears, investigators discover a creek where the local teenagers hang out that may hold the answer to her disappearance. + News Magazine + + + TVPG + + + + Dish Nation + Entertaining entertainment news: the show dishes on celebrity gossip with humorous commentary on pop culture. + Talk Shows + Performing Arts + + + TVPG + + + + Fox 11 Ten O'Clock News + News + + + + Car accident? Free Legal Consultation + Legal professionals standing by to answer your questions. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Pain Relief TV + Matt's pain from his 20 year old lost limb is solved. + Paid Program + + + + TMZ + The very latest celebrity news. + News Magazine + Performing Arts + + + TVPG + + + + Good Day LA at 4am + News + + + + Good Day LA at 5am + Morning news coverage. + News + + + + Good Day LA at 6am + Morning news coverage. + News + + + + Good Day LA at 7am + Morning news coverage. + Talk Shows + + + + Good Day LA at 9am + Morning news coverage. + Talk Shows + + + + Good Day LA at 10am + Morning news coverage. + News + + + + Sherri + Actress, comic and Emmy Award-winning longtime co-host of. + Talk Shows + + + TVPG + + + + The Jennifer Hudson Show + The EGOT winner's daytime talk show features celebrity interviews, topical stories, community heroes, viral sensations, and music, bringing fun, uplifting, and empowering conversations to the forefront. + Talk Shows + + + TVPG + + + + Person, Place or Thing + A modern take on the age-old game of 20 Questions intersperses comedy with common knowledge; host People's Choice Award winner Melissa Peterman. + Game Shows + + + TVPG + + + + Person, Place or Thing + A modern take on the age-old game of 20 Questions intersperses comedy with common knowledge; host People's Choice Award winner Melissa Peterman. + Game Shows + + + TVPG + + + + 25 Words or Less + Amanda Seales and Carson Kressley + Happy hour may turn sour when Carson Kressley tries to shake things up with a stiff selection of clues. + Game Shows + + + TVPG + + + + 25 Words or Less + Greg Grunberg vs. Gabrielle Ruiz + Greg Grunberg works to conjure great clues and vanish his team's doubts in a race against the clock. + Game Shows + + + TVPG + + + + Pictionary + Wild Animals + Celebrity captains Jaleel White and Adam Rippon. + Game Shows + + + TVPG + + + + Who the Bleep Is That? + Talk Shows + Game Shows + + + TVPG + + + + TMZ Live + Harvey Levin invites viewers inside TMZ's newsroom to see how news is made. + News Magazine + Performing Arts + + + TVPG + + + + Fox 11 News at 5 + Latest local and regional news. + News + + + + Fox 11 News at 6 + Local and regional news coverage. + News + + + + Extra + Inside the entertainment newsgathering process, as reporters coast to coast break headlines, advance the stories of the day, and sit down with celebrities. + News Magazine + Performing Arts + + + TVPG + + + + TMZ + The very latest celebrity news. + News Magazine + Performing Arts + + + TVPG + + + + Name That Tune + Look Who's Roasted Now! + Celebrity contestants Tig Notaro, Nicole Sullivan, Jeff Ross and Michael Kosta.Guests: Tig Notaro, Nicole Sullivan, Jeffrey Ross, Michael Kosta.. + Game Shows + + + TVPG + + + + 9-1-1: Lone Star + Double Trouble + The 126 races to rescue a woman with an arrow shot into her head; Judd is doubly surprised by news Wyatt shares; Mateo helps a family member in need and comes to regret it. + + Rob Lowe + Gina Torres + Ronen Rubinstein + + Drama + + + TV14 + + + + Fox 11 Ten O'Clock News + News + + + + West Coast Wrap + News + + + + Dateline + Mystery in Montana + Years after a Montana man is found dead, his son dreads what he'll find when he opens up the box of case files, giving him insight into what really happened. + News Magazine + + + TVPG + + + + Dish Nation + Entertaining entertainment news: the show dishes on celebrity gossip with humorous commentary on pop culture. + Talk Shows + Performing Arts + + + TVPG + + + + Fox 11 Ten O'Clock News + News + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Car accident? Free Legal Consultation + Legal professionals standing by to answer your questions. + Paid Program + + + + TMZ + The very latest celebrity news. + News Magazine + Performing Arts + + + TVPG + + + + Good Day LA at 4am + News + + + + Good Day LA at 5am + Morning news coverage. + News + + + + Good Day LA at 6am + Morning news coverage. + News + + + + Good Day LA at 7am + Morning news coverage. + Talk Shows + + + + Good Day LA at 9am + Morning news coverage. + Talk Shows + + + + Good Day LA at 10am + Morning news coverage. + News + + + + Sherri + Actress, comic and Emmy Award-winning longtime co-host of. + Talk Shows + + + TVPG + + + + The Jennifer Hudson Show + The EGOT winner's daytime talk show features celebrity interviews, topical stories, community heroes, viral sensations, and music, bringing fun, uplifting, and empowering conversations to the forefront. + Talk Shows + + + TVPG + + + + Person, Place or Thing + A modern take on the age-old game of 20 Questions intersperses comedy with common knowledge; host People's Choice Award winner Melissa Peterman. + Game Shows + + + TVPG + + + + Person, Place or Thing + A modern take on the age-old game of 20 Questions intersperses comedy with common knowledge; host People's Choice Award winner Melissa Peterman. + Game Shows + + + TVPG + + + + 25 Words or Less + Amanda Seales and Carson Kressley + Amanda Seales and her team go for the green but hit a spectrum of problems when some colorful clues get in their way. + Game Shows + + + TVPG + + + + 25 Words or Less + Greg Grunberg vs. Gabrielle Ruiz + Gabrielle Ruiz tries to deliver a win, but her clues may have gotten lost in the mail. + Game Shows + + + TVPG + + + + Pictionary + A Thing of the Past + Celebrity captains Jaleel White and Ricki Lake. + Game Shows + + + TVPG + + + + Who the Bleep Is That? + Talk Shows + Game Shows + + + TVPG + + + + American Dynasty + The Kennedys + Joe Kennedy is the grandson of Irish immigrants who, after graduating from Harvard, conquers Wall Street and Hollywood; when his own political career is cut short, he focuses on his children -- one becomes president. + History + + + TV14 + + + + American Dynasty + The Vanderbilts + Cornelius. + History + + + TV14 + + + + American Dynasty + The Rockefellers + John D. Rockefeller started out with one kerosene refinery in Cleveland, which within 15 years became Standard Oil, the largest oil producer in the world; the Rockefellers give much of their wealth away and dedicate their lives to philanthropy. + History + + + TV14 + + + + American Dynasty + The Morgans + Junius Morgan and his son JP arrive on Wall Street in the 1860s; bythe end of the century, the House of Morgan controls many of America's biggest industries, including the railways and U.S. Steel. + History + + + TV14 + + + + American Dynasty + The Gettys + J. Paul Getty made billions of dollars in the oil industry, rising to become the. + History + + + TV14 + + + + American Dynasty + The DuPonts + When young Lammot du Pont pushes his company to get out of the business of war, it sets off a conflict that transforms not only the family but American industry for generations. + History + + + TV14 + + + + American Dynasty + The Fords + Henry Ford was an American pioneer; he revolutionized the automobile, the assembly line production method and brought cars to millions of American families -- but his personal life was far from perfect. + History + + + TV14 + + + + American Dynasty + The Bushes + The Bushes are one of America's oldest families, known more for their genteel manners and success in business than politics; so when war hero George H.W. Bush decides he wants to run for president, he hopes the family name leads him to victory. + History + + + TV14 + + + + American Dynasty + The Kennedys + Joe Kennedy is the grandson of Irish immigrants who, after graduating from Harvard, conquers Wall Street and Hollywood; when his own political career is cut short, he focuses on his children -- one becomes president. + History + + + TV14 + + + + American Dynasty + The Vanderbilts + Cornelius. + History + + + TV14 + + + + American Dynasty + The Rockefellers + John D. Rockefeller started out with one kerosene refinery in Cleveland, which within 15 years became Standard Oil, the largest oil producer in the world; the Rockefellers give much of their wealth away and dedicate their lives to philanthropy. + History + + + TV14 + + + + FOX Weather First Weekend + Waking up to the first forecast for the weekend with Craig Herrera, Jane Minar, and Michael Estime to help prepare for what's ahead. + Environmental + Business + + + + FOX Weather First Weekend + Waking up to the first forecast for the weekend with Craig Herrera, Jane Minar, and Michael Estime to help prepare for what's ahead. + Environmental + Business + + + + FOX Weather First Weekend + Waking up to the first forecast for the weekend with Craig Herrera, Jane Minar, and Michael Estime to help prepare for what's ahead. + Environmental + Business + + + + Maria Bartiromo's Wall Street + A show about money from people who work in money with anchor Maria Bartiromo. + Business + + + + Barron's Roundtable + A weekly primetime series that features interviews with investors and major industry leaders about what to expect in the week ahead on Wall Street. + News + + + + Maria Bartiromo's Wall Street + A show about money from people who work in money with anchor Maria Bartiromo. + Business + + + + Barron's Roundtable + A weekly primetime series that features interviews with investors and major industry leaders about what to expect in the week ahead on Wall Street. + News + + + + Sunday Morning Futures With Maria Bartiromo + Analysis of recent economic developments and interviews with business leaders and newsmakers. + Business + + + + Michael Youssef + Leading The Way ministries and Dr. Michael Youssef share the Gospel across the globe, equipping believers to grow into a deeper walk with Christ. + Religious + + + TVG + + + + David Jeremiah + Delivering the unchanging Word of God to an ever-changing world. + Paid Program + + + + Amazing Facts With Doug Batchelor + The King Returns Pt. 2 + The great climax of the world's history is going to be when Christ comes and He sets everything right. Part 2 of 2. + Religious + + + TVG + + + + Harvest with Pastor Greg Laurie: Encouragement, Worship, & Bible Study + God created you to have a future and a hope! Join Pastor Greg Laurie for a time of encouragement, worship, and Bible study. You'll be strengthened in your faith to live a life of purpose and meaning. + Paid Program + + + + Wonderful You + Wonderful You. You can live with wellness, more joy and the fulfilled life that God designed for you to live. Learn more at trivita.com. + Paid Program + + + + Interested in gold? Learn more! + Here's your chance to learn more about owning gold! If you've been thinking about making a gold purchase, you cannot afford to miss this opportunity: Exclusive, FREE access to U.S. Money Reserve's Gold Information Kit and knowledge resources. + Paid Program + + + + 1880's Rare Silver + Add the stunning set of 2 1881 and 1885 Carson City Silver Morgan Dollar in Brilliant Uncirculated condition to your numismatic collection. These epic rare silver coins have miniscule mintages of 296,000 and 228,000 respectively. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Interested in gold? Learn more! + Here's your chance to learn more about owning gold! If you've been thinking about making a gold purchase, you cannot afford to miss this opportunity: Exclusive, FREE access to U.S. Money Reserve's Gold Information Kit and knowledge resources. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + Cops + Glazed and Confused + A defiant cyclist recalls a different version of the events leading up to his arrest; deputies respond to a disturbance involving a belligerent man and barbecue sauce; a slow-speed chase ends at the driver's girlfriend's house. + Reality TV + Legal + + + TV14 + + + + Cops + The Telltale Voicemail + A runaway ATV driver surprises deputies when he charges straight at them; the tears start flowing when a jumpy woman is caught ditching evidence; an assault suspect gets a rude awakening when a voicemail proves him guilty. + Reality TV + Legal + + + TV14 + + + + Cops + Triple Threat + In a desperate bid to avoid jail, a wanted man sprints across multiple lanes of traffic; a heated argument is taken to the next level when a woman starts smashing windows; a short-tempered driver takes his road rage way too far. + Reality TV + Legal + + + TV14 + + + + Cops + Lost and Found + Officers react quickly when a quiet passenger causes trouble during a traffic stop; one family gets a happy ending when a deputy safely recovers their stolen puppy; a struggling woman hits a speed bump on the road to recovery. + Reality TV + Legal + + + TV14 + + + + Cops + All in the Family + A frantic fight between siblings ends with a stabbing; officers arrest a delirious man after he attacks his brother and neighbor; despite their no-contact order, police find a married couple hanging out in someone else's house. + Reality TV + Legal + + + TV14 + + + + Cops + Spinning Out + The passenger of a fleeing vehicle manages to get away, but the driver isn't so lucky; a runaway motorcyclist narrowly misses another car before wrecking out; an eccentric woman accuses a man of trying to steal her hair. + Reality TV + Legal + + + TV14 + + + + Cops + Glazed and Confused + A defiant cyclist recalls a different version of the events leading up to his arrest; deputies respond to a disturbance involving a belligerent man and barbecue sauce; a slow-speed chase ends at the driver's girlfriend's house. + Reality TV + Legal + + + TV14 + + + + Cops + The Telltale Voicemail + A runaway ATV driver surprises deputies when he charges straight at them; the tears start flowing when a jumpy woman is caught ditching evidence; an assault suspect gets a rude awakening when a voicemail proves him guilty. + Reality TV + Legal + + + TV14 + + + + Cops + Triple Threat + In a desperate bid to avoid jail, a wanted man sprints across multiple lanes of traffic; a heated argument is taken to the next level when a woman starts smashing windows; a short-tempered driver takes his road rage way too far. + Reality TV + Legal + + + TV14 + + + + Cops + Lost and Found + Officers react quickly when a quiet passenger causes trouble during a traffic stop; one family gets a happy ending when a deputy safely recovers their stolen puppy; a struggling woman hits a speed bump on the road to recovery. + Reality TV + Legal + + + TV14 + + + + Cops + All in the Family + A frantic fight between siblings ends with a stabbing; officers arrest a delirious man after he attacks his brother and neighbor; despite their no-contact order, police find a married couple hanging out in someone else's house. + Reality TV + Legal + + + TV14 + + + + Cops + Spinning Out + The passenger of a fleeing vehicle manages to get away, but the driver isn't so lucky; a runaway motorcyclist narrowly misses another car before wrecking out; an eccentric woman accuses a man of trying to steal her hair. + Reality TV + Legal + + + TV14 + + + + Joel Osteen + Finding hope and inspiration in everyday life. + Paid Program + + + + Joni: Table Talk + Joni and guests tackle a wide range of relevant issues, controversial subjects and hard-hitting news topics with candor and wit. + Religious + Talk Shows + + + TVG + + + + Allen Jackson Ministries + From World Outreach Church in Murfreesboro, Tenn., pastor Allen Jackson mentors and challenges individuals with a biblical message that helps them become more fully devoted followers of Jesus Christ. + Religious + + + + Operation Smile + Operation Smile: transforming lives and bringing smiles to children around the world. + Paid Program + + + + Rare Silver Morgans + Add the stunning 1882 to 1884 Carson City Morgan Silver Dollars that come in brilliant uncirculated condition! Morgans struck at the CC Mint are among the most highly sought after by numismatists due to their low mintages & limited availability. + Paid Program + + + TVG + + + + Rare Silver Morgans + Add the stunning 1882 to 1884 Carson City Morgan Silver Dollars that come in brilliant uncirculated condition! Morgans struck at the CC Mint are among the most highly sought after by numismatists due to their low mintages & limited availability. + Paid Program + + + TVG + + + + Rare Silver Coin Set + Add this stunning set of 25 that features every 21st century release of the American Silver Eagle certified in Mint State 69 condition by NGC. This set even includes the monumental first Landing Eagle reverse issue, the 2021 Type 2! + Paid Program + + + + Rare Silver Coin Set + Add this stunning set of 25 that features every 21st century release of the American Silver Eagle certified in Mint State 69 condition by NGC. This set even includes the monumental first Landing Eagle reverse issue, the 2021 Type 2! + Paid Program + + + + Cops + Glazed and Confused + A defiant cyclist recalls a different version of the events leading up to his arrest; deputies respond to a disturbance involving a belligerent man and barbecue sauce; a slow-speed chase ends at the driver's girlfriend's house. + Reality TV + Legal + + + TV14 + + + + Cops + The Telltale Voicemail + A runaway ATV driver surprises deputies when he charges straight at them; the tears start flowing when a jumpy woman is caught ditching evidence; an assault suspect gets a rude awakening when a voicemail proves him guilty. + Reality TV + Legal + + + TV14 + + + + Kudlow Weekend + Following the closing bell, economist Larry Kudlow covers stock market analysis, financial and business news of the day, and looks at some of the most pressing economic issues impacting everyday Americans. + Business + + + + Mornings With Maria Bartiromo + Maria Bartiromo brings her knowledge of the finance industry to discuss news stories from around the world with a panel of rotating industry experts. + News + Business + + + + Mornings With Maria Bartiromo + Maria Bartiromo brings her knowledge of the finance industry to discuss news stories from around the world with a panel of rotating industry experts. + News + Business + + + + Mornings With Maria Bartiromo + Maria Bartiromo brings her knowledge of the finance industry to discuss news stories from around the world with a panel of rotating industry experts. + News + Business + + + + Varney & Company + Wall Street news. + News + Business + + + + Varney & Company + Wall Street news. + News + Business + + + + Varney & Company + Wall Street news. + News + Business + + + + Cavuto: Coast to Coast + Neil Cavuto covers breaking news and updates viewers on market status. + News + Business + + + + The Big Money Show + Taylor Riggs, Brian Brenberg and Jackie DeAngelis host an informative and fast-paced hour filled with business topics that impact everyone from Wall Street to the average person. + Business + + + + Making Money With Charles Payne + Wall Street analyst Charles Payne discusses investment prospects. + Business + + + + The Claman Countdown + News + + + + Kudlow + Host Larry Kudlow leads roundtable discussions on the policies impacting the domestic and global economies and interviews with business influencers across the world. + + Larry Kudlow + + Business + + + + The Evening Edit + Breaking down the news of the day after the markets close. + News + Business + + + + The Bottom Line + Dagen McDowell and Sean Duffy take on the hotly debated issues in the business and political world, plus the kitchen table topics that matter most to Americans. + Business + Political + + + + Kudlow + Host Larry Kudlow leads roundtable discussions on the policies impacting the domestic and global economies and interviews with business influencers across the world. + + Larry Kudlow + + Business + + + + Kelsey Grammer's Historic Battles for America + The Alamo + In 1836, American settlers in Mexican Texas take over a former mission in defiance of the government, and for weeks endure a siege by Mexican forces; a nighttime assault earns these vastly outnumbered rebels a spot in American lore. + History + Documentary + + + + Kelsey Grammer's Historic Battles for America + First Bull Run + The brutal fight for the soul of America begins at the Battle of Bull Run, the first major battle of the Civil War; as the Virginia hills run red with blood, hopes of a swift end to the war -- and the illusions of a young nation -- come to an end. + History + Documentary + + + + Kelsey Grammer's Historic Battles for America + Antietam + Two years into the Civil War, the Union is losing the fight and desperately needs a victory to stop Robert E. Lee's push north; near Sharpsburg, Md., Union troops take a stand in a battle that could save America or end it for good. + History + Documentary + + + + Kelsey Grammer's Historic Battles for America + Vicksburg + In the spring of 1863, the Civil War enters its third bloody year; for the North, the clearest path to victory runs through the last Confederate holdout, Vicksburg, but taking the fortified city amid unforgiving terrain may require a miracle. + History + Documentary + + + + Kelsey Grammer's Historic Battles for America + The Alamo + In 1836, American settlers in Mexican Texas take over a former mission in defiance of the government, and for weeks endure a siege by Mexican forces; a nighttime assault earns these vastly outnumbered rebels a spot in American lore. + History + Documentary + + + + Coin Collecting with Mike Mezack + Learn about the wonderful world of numismatics with your host Mike Mezack and get the opportunity to build your own collection with some of the best deals around! + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Coin Collecting with Mike Mezack + Learn about the wonderful world of numismatics with your host Mike Mezack and get the opportunity to build your own collection with some of the best deals around! + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Help Israel & Ukraine + There is an urgent need to help Jews suffering in Israel, Ukraine, and around the world. Act now and support the International Fellowship of Christians and Jews in their lifesaving work. + Paid Program + + + + Kelsey Grammer's Historic Battles for America + First Bull Run + The brutal fight for the soul of America begins at the Battle of Bull Run, the first major battle of the Civil War; as the Virginia hills run red with blood, hopes of a swift end to the war -- and the illusions of a young nation -- come to an end. + History + Documentary + + + + Kudlow + Host Larry Kudlow leads roundtable discussions on the policies impacting the domestic and global economies and interviews with business influencers across the world. + + Larry Kudlow + + Business + + + + Mornings With Maria Bartiromo + Maria Bartiromo brings her knowledge of the finance industry to discuss news stories from around the world with a panel of rotating industry experts. + News + Business + + + + Mornings With Maria Bartiromo + Maria Bartiromo brings her knowledge of the finance industry to discuss news stories from around the world with a panel of rotating industry experts. + News + Business + + + + Mornings With Maria Bartiromo + Maria Bartiromo brings her knowledge of the finance industry to discuss news stories from around the world with a panel of rotating industry experts. + News + Business + + + + Varney & Company + Wall Street news. + News + Business + + + + Varney & Company + Wall Street news. + News + Business + + + + Varney & Company + Wall Street news. + News + Business + + + + Cavuto: Coast to Coast + Neil Cavuto covers breaking news and updates viewers on market status. + News + Business + + + + The Big Money Show + Taylor Riggs, Brian Brenberg and Jackie DeAngelis host an informative and fast-paced hour filled with business topics that impact everyone from Wall Street to the average person. + Business + + + + Making Money With Charles Payne + Wall Street analyst Charles Payne discusses investment prospects. + Business + + + + The Claman Countdown + News + + + + Kudlow + Host Larry Kudlow leads roundtable discussions on the policies impacting the domestic and global economies and interviews with business influencers across the world. + + Larry Kudlow + + Business + + + + The Evening Edit + Breaking down the news of the day after the markets close. + News + Business + + + + The Bottom Line + Dagen McDowell and Sean Duffy take on the hotly debated issues in the business and political world, plus the kitchen table topics that matter most to Americans. + Business + Political + + + + Kudlow + Host Larry Kudlow leads roundtable discussions on the policies impacting the domestic and global economies and interviews with business influencers across the world. + + Larry Kudlow + + Business + + + + How America Works + Tools + With infrastructures growing the nation over, the demand for tools is at an all-time high; the workers of Channellock Inc. are in a mad dash to keep up. + Documentary + + + + How America Works + Wheat + Wheat is still one of America's cornerstone commodities; a look at how the farmers and millers of the nation bring this all-important crop from the ground to the grocery store. + Documentary + + + + How America Works + Glass + From the moment Americans wake up in the morning, they are surrounded by glass; finding out what it takes for companies like ARC Americas to make that possible. + Documentary + + + + How America Works + Tools + With infrastructures growing the nation over, the demand for tools is at an all-time high; the workers of Channellock Inc. are in a mad dash to keep up. + Documentary + + + + How America Works + Wheat + Wheat is still one of America's cornerstone commodities; a look at how the farmers and millers of the nation bring this all-important crop from the ground to the grocery store. + Documentary + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Rare Silver Morgans + Add the stunning 1882 to 1884 Carson City Morgan Silver Dollars that come in brilliant uncirculated condition! Morgans struck at the CC Mint are among the most highly sought after by numismatists due to their low mintages & limited availability. + Paid Program + + + TVG + + + + Rare Silver Morgans + Add the stunning 1882 to 1884 Carson City Morgan Silver Dollars that come in brilliant uncirculated condition! Morgans struck at the CC Mint are among the most highly sought after by numismatists due to their low mintages & limited availability. + Paid Program + + + TVG + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Help Israel & Ukraine + There is an urgent need to help Jews suffering in Israel, Ukraine, and around the world. Act now and support the International Fellowship of Christians and Jews in their lifesaving work. + Paid Program + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + How America Works + Glass + From the moment Americans wake up in the morning, they are surrounded by glass; finding out what it takes for companies like ARC Americas to make that possible. + Documentary + + + + Kudlow + Host Larry Kudlow leads roundtable discussions on the policies impacting the domestic and global economies and interviews with business influencers across the world. + + Larry Kudlow + + Business + + + + Mornings With Maria Bartiromo + Maria Bartiromo brings her knowledge of the finance industry to discuss news stories from around the world with a panel of rotating industry experts. + News + Business + + + + Mornings With Maria Bartiromo + Maria Bartiromo brings her knowledge of the finance industry to discuss news stories from around the world with a panel of rotating industry experts. + News + Business + + + + Mornings With Maria Bartiromo + Maria Bartiromo brings her knowledge of the finance industry to discuss news stories from around the world with a panel of rotating industry experts. + News + Business + + + + Varney & Company + Wall Street news. + News + Business + + + + Varney & Company + Wall Street news. + News + Business + + + + Varney & Company + Wall Street news. + News + Business + + + + Cavuto: Coast to Coast + Neil Cavuto covers breaking news and updates viewers on market status. + News + Business + + + + The Big Money Show + Taylor Riggs, Brian Brenberg and Jackie DeAngelis host an informative and fast-paced hour filled with business topics that impact everyone from Wall Street to the average person. + Business + + + + Making Money With Charles Payne + Wall Street analyst Charles Payne discusses investment prospects. + Business + + + + The Claman Countdown + News + + + + Kudlow + Host Larry Kudlow leads roundtable discussions on the policies impacting the domestic and global economies and interviews with business influencers across the world. + + Larry Kudlow + + Business + + + + The Evening Edit + Breaking down the news of the day after the markets close. + News + Business + + + + The Bottom Line + Dagen McDowell and Sean Duffy take on the hotly debated issues in the business and political world, plus the kitchen table topics that matter most to Americans. + Business + Political + + + + Life, Liberty & Levin + Mark Levin is joined by Michael Doran, senior fellow at the Hudson Institute, to discuss the Israel-Hamas conflict; Israeli activist and actress Noa Tishby discusses the rise of anti-Semitism. + News + + + + One Nation With Brian Kilmeade + In-depth analysis of the issues and stories that matter most to Americans while offering context and solutions to help bring the country together. + News + + + + FOX News Saturday Night + Discussing big stories of the week with a group of guests who give a humorous perspective on what America is talking about. + News + + + + Gutfeld! + Greg Gutfeld examines the news of the day through a satiric lens fused with pop culture. + News + Performing Arts + + + + The Big Weekend Show + Rotating panelists discuss the big news of the day and react to the top stories. + News + + + + Life, Liberty & Levin + Mark Levin is joined by Michael Doran, senior fellow at the Hudson Institute, to discuss the Israel-Hamas conflict; Israeli activist and actress Noa Tishby discusses the rise of anti-Semitism. + News + + + + One Nation With Brian Kilmeade + In-depth analysis of the issues and stories that matter most to Americans while offering context and solutions to help bring the country together. + News + + + + FOX News Saturday Night + Discussing big stories of the week with a group of guests who give a humorous perspective on what America is talking about. + News + + + + The Big Weekend Show + Rotating panelists discuss the big news of the day and react to the top stories. + News + + + + Life, Liberty & Levin + Mark Levin is joined by Michael Doran, senior fellow at the Hudson Institute, to discuss the Israel-Hamas conflict; Israeli activist and actress Noa Tishby discusses the rise of anti-Semitism. + News + + + + One Nation With Brian Kilmeade + In-depth analysis of the issues and stories that matter most to Americans while offering context and solutions to help bring the country together. + News + + + + FOX and Friends Sunday + Highlighting the latest in news, entertainment, politics and sports. + Talk Shows + News + + + + FOX and Friends Sunday + Highlighting the latest in news, entertainment, politics and sports. + Talk Shows + News + + + + FOX and Friends Sunday + Highlighting the latest in news, entertainment, politics and sports. + Talk Shows + News + + + + FOX and Friends Sunday + Highlighting the latest in news, entertainment, politics and sports. + Talk Shows + News + + + + Sunday Morning Futures With Maria Bartiromo + Analysis of recent economic developments and interviews with business leaders and newsmakers. + Business + + + + MediaBuzz + An analysis on the media's shaping of current events and their role in politics. + News + Talk Shows + + + + Fox News Live + The latest headlines and interviews with politicians and other national newsmakers. + News + + + + Fox News Live + The latest headlines and interviews with politicians and other national newsmakers. + News + + + + FOX News Sunday + Anchor Shannon Bream interviews the biggest newsmakers of the week and leads guests in providing context and analysis of the issues facing Americans. + Talk Shows + News + + + + Sunday Morning Futures With Maria Bartiromo + Analysis of recent economic developments and interviews with business leaders and newsmakers. + Business + + + + Fox News Live + The latest headlines and interviews with politicians and other national newsmakers. + News + + + + Fox Report With Jon Scott + The latest headlines, news and analysis. + News + + + + The Big Weekend Show + Rotating panelists discuss the big news of the day and react to the top stories. + News + + + + Life, Liberty & Levin + Mark Levin is joined by Senator Ted Cruz (R-TX) for an hour-long sit-down interview on current events and his new book. + News + + + + Sunday Night in America With Trey Gowdy + Insightful analysis and a new outlook on the latest issues facing the country, the former South Carolina Congressman utilizes his mixture of wisdom, humor and historical references to break down the latest legal and political news. + Talk Shows + + + + The Big Weekend Show + Rotating panelists discuss the big news of the day and react to the top stories. + News + + + + Life, Liberty & Levin + Mark Levin is joined by Senator Ted Cruz (R-TX) for an hour-long sit-down interview on current events and his new book. + News + + + + Sunday Night in America With Trey Gowdy + Insightful analysis and a new outlook on the latest issues facing the country, the former South Carolina Congressman utilizes his mixture of wisdom, humor and historical references to break down the latest legal and political news. + Talk Shows + + + + The Big Weekend Show + Rotating panelists discuss the big news of the day and react to the top stories. + News + + + + FOX News Sunday + Anchor Shannon Bream interviews the biggest newsmakers of the week and leads guests in providing context and analysis of the issues facing Americans. + Talk Shows + News + + + + Life, Liberty & Levin + Mark Levin is joined by Senator Ted Cruz (R-TX) for an hour-long sit-down interview on current events and his new book. + News + + + + Sunday Night in America With Trey Gowdy + Insightful analysis and a new outlook on the latest issues facing the country, the former South Carolina Congressman utilizes his mixture of wisdom, humor and historical references to break down the latest legal and political news. + Talk Shows + + + + FOX & Friends First + Hosts Todd Piro and Carley Shimkus present all the headlines viewers may have missed overnight, along with a preview of upcoming news events. + News Magazine + + + + FOX and Friends + Co-hosts Steve Doocy, Ainsley Earhardt, Brian Kilmeade and Lawrence Jones highlight the latest. + Talk Shows + News + + + + FOX and Friends + Co-hosts Steve Doocy, Ainsley Earhardt, Brian Kilmeade and Lawrence Jones highlight the latest. + Talk Shows + News + + + + FOX and Friends + Co-hosts Steve Doocy, Ainsley Earhardt, Brian Kilmeade and Lawrence Jones highlight the latest. + Talk Shows + News + + + + America's Newsroom + Bill Hemmer and Dana Perino cover current events happening around the nation and the world; guests pertinent to the news topics are interviewed and viewer emails are also answered by the anchors and guests. + Talk Shows + News + + + + America's Newsroom + Bill Hemmer and Dana Perino cover current events happening around the nation and the world; guests pertinent to the news topics are interviewed and viewer emails are also answered by the anchors and guests. + Talk Shows + News + + + + The Faulkner Focus + Emmy-winning journalist Harris Faulkner provides the latest news with insightful analysis and interviews with top newsmakers. + News + + + + Outnumbered + Four female panelists and one male colleague share their perspectives on the day's top news stories. + News + + + + America Reports + A look at the latest news and headlines with Sandra Smith and John Roberts. + News + + + + America Reports + A look at the latest news and headlines with Sandra Smith and John Roberts. + News + + + + The Story With Martha MacCallum + Martha MacCallum brings the story of the times with her tough but fair interviews and straightforward analysis;. + News + + + + Your World With Neil Cavuto + Money tips from Wall Street. + News + Business + + + + The Five + Dana Perino, Greg Gutfeld, Jesse Watters, Jeanine Pirro and a rotating host discuss and debate hot issues across the spectrum, from politics to pop culture; the hosts also conclude each show with the. + Talk Shows + Political + + + + Special Report With Bret Baier + The latest news from inside the Beltway. + Talk Shows + News + + + + The Ingraham Angle + Laura Ingraham aims to cut through the Washington chatter to speak directly with unexpected voices and the actual people who are impacted by the news of the day. + News + + + + Jesse Watters Primetime + Jesse Watters speaks with newsmakers from across the country to give Americans a show where straight talk is the only talk. + Talk Shows + + + + Hannity + Commentary and interviews about the day's news. + Talk Shows + News + + + + Gutfeld! + Greg Gutfeld examines the news of the day through a satiric lens fused with pop culture. + News + Performing Arts + + + + Fox News at Night + News and analysis of current affairs. + News + + + + The Five + Dana Perino, Greg Gutfeld, Jesse Watters, Jeanine Pirro and a rotating host discuss and debate hot issues across the spectrum, from politics to pop culture; the hosts also conclude each show with the. + Talk Shows + Political + + + + Jesse Watters Primetime + Jesse Watters speaks with newsmakers from across the country to give Americans a show where straight talk is the only talk. + Talk Shows + + + + Hannity + Commentary and interviews about the day's news. + Talk Shows + News + + + + Gutfeld! + Greg Gutfeld examines the news of the day through a satiric lens fused with pop culture. + News + Performing Arts + + + + The Ingraham Angle + Laura Ingraham aims to cut through the Washington chatter to speak directly with unexpected voices and the actual people who are impacted by the news of the day. + News + + + + FOX & Friends First + Hosts Todd Piro and Carley Shimkus present all the headlines viewers may have missed overnight, along with a preview of upcoming news events. + News Magazine + + + + FOX and Friends + Co-hosts Steve Doocy, Ainsley Earhardt, Brian Kilmeade and Lawrence Jones highlight the latest. + Talk Shows + News + + + + FOX and Friends + Co-hosts Steve Doocy, Ainsley Earhardt, Brian Kilmeade and Lawrence Jones highlight the latest. + Talk Shows + News + + + + FOX and Friends + Co-hosts Steve Doocy, Ainsley Earhardt, Brian Kilmeade and Lawrence Jones highlight the latest. + Talk Shows + News + + + + America's Newsroom + Bill Hemmer and Dana Perino cover current events happening around the nation and the world; guests pertinent to the news topics are interviewed and viewer emails are also answered by the anchors and guests. + Talk Shows + News + + + + America's Newsroom + Bill Hemmer and Dana Perino cover current events happening around the nation and the world; guests pertinent to the news topics are interviewed and viewer emails are also answered by the anchors and guests. + Talk Shows + News + + + + The Faulkner Focus + Emmy-winning journalist Harris Faulkner provides the latest news with insightful analysis and interviews with top newsmakers. + News + + + + Outnumbered + Four female panelists and one male colleague share their perspectives on the day's top news stories. + News + + + + America Reports + A look at the latest news and headlines with Sandra Smith and John Roberts. + News + + + + America Reports + A look at the latest news and headlines with Sandra Smith and John Roberts. + News + + + + The Story With Martha MacCallum + Martha MacCallum brings the story of the times with her tough but fair interviews and straightforward analysis;. + News + + + + Your World With Neil Cavuto + Money tips from Wall Street. + News + Business + + + + The Five + Dana Perino, Greg Gutfeld, Jesse Watters, Jeanine Pirro and a rotating host discuss and debate hot issues across the spectrum, from politics to pop culture; the hosts also conclude each show with the. + Talk Shows + Political + + + + Special Report With Bret Baier + The latest news from inside the Beltway. + Talk Shows + News + + + + The Ingraham Angle + Laura Ingraham aims to cut through the Washington chatter to speak directly with unexpected voices and the actual people who are impacted by the news of the day. + News + + + + Jesse Watters Primetime + Jesse Watters speaks with newsmakers from across the country to give Americans a show where straight talk is the only talk. + Talk Shows + + + + Hannity + Commentary and interviews about the day's news. + Talk Shows + News + + + + Gutfeld! + Greg Gutfeld examines the news of the day through a satiric lens fused with pop culture. + News + Performing Arts + + + + Fox News at Night + News and analysis of current affairs. + News + + + + The Five + Dana Perino, Greg Gutfeld, Jesse Watters, Jeanine Pirro and a rotating host discuss and debate hot issues across the spectrum, from politics to pop culture; the hosts also conclude each show with the. + Talk Shows + Political + + + + Jesse Watters Primetime + Jesse Watters speaks with newsmakers from across the country to give Americans a show where straight talk is the only talk. + Talk Shows + + + + Hannity + Commentary and interviews about the day's news. + Talk Shows + News + + + + Gutfeld! + Greg Gutfeld examines the news of the day through a satiric lens fused with pop culture. + News + Performing Arts + + + + The Ingraham Angle + Laura Ingraham aims to cut through the Washington chatter to speak directly with unexpected voices and the actual people who are impacted by the news of the day. + News + + + + FOX & Friends First + Hosts Todd Piro and Carley Shimkus present all the headlines viewers may have missed overnight, along with a preview of upcoming news events. + News Magazine + + + + FOX and Friends + Co-hosts Steve Doocy, Ainsley Earhardt, Brian Kilmeade and Lawrence Jones highlight the latest. + Talk Shows + News + + + + FOX and Friends + Co-hosts Steve Doocy, Ainsley Earhardt, Brian Kilmeade and Lawrence Jones highlight the latest. + Talk Shows + News + + + + FOX and Friends + Co-hosts Steve Doocy, Ainsley Earhardt, Brian Kilmeade and Lawrence Jones highlight the latest. + Talk Shows + News + + + + America's Newsroom + Bill Hemmer and Dana Perino cover current events happening around the nation and the world; guests pertinent to the news topics are interviewed and viewer emails are also answered by the anchors and guests. + Talk Shows + News + + + + America's Newsroom + Bill Hemmer and Dana Perino cover current events happening around the nation and the world; guests pertinent to the news topics are interviewed and viewer emails are also answered by the anchors and guests. + Talk Shows + News + + + + The Faulkner Focus + Emmy-winning journalist Harris Faulkner provides the latest news with insightful analysis and interviews with top newsmakers. + News + + + + Outnumbered + Four female panelists and one male colleague share their perspectives on the day's top news stories. + News + + + + America Reports + A look at the latest news and headlines with Sandra Smith and John Roberts. + News + + + + America Reports + A look at the latest news and headlines with Sandra Smith and John Roberts. + News + + + + The Story With Martha MacCallum + Martha MacCallum brings the story of the times with her tough but fair interviews and straightforward analysis;. + News + + + + Your World With Neil Cavuto + Money tips from Wall Street. + News + Business + + + + The Five + Dana Perino, Greg Gutfeld, Jesse Watters, Jeanine Pirro and a rotating host discuss and debate hot issues across the spectrum, from politics to pop culture; the hosts also conclude each show with the. + Talk Shows + Political + + + + Special Report With Bret Baier + The latest news from inside the Beltway. + Talk Shows + News + + + + Life, Liberty & Levin + Mark Levin is joined by Michael Doran, senior fellow at the Hudson Institute, to discuss the Israel-Hamas conflict; Israeli activist and actress Noa Tishby discusses the rise of anti-Semitism. + News + + + + One Nation With Brian Kilmeade + In-depth analysis of the issues and stories that matter most to Americans while offering context and solutions to help bring the country together. + News + + + + FOX News Saturday Night + Discussing big stories of the week with a group of guests who give a humorous perspective on what America is talking about. + News + + + + Gutfeld! + Greg Gutfeld examines the news of the day through a satiric lens fused with pop culture. + News + Performing Arts + + + + The Big Weekend Show + Rotating panelists discuss the big news of the day and react to the top stories. + News + + + + Life, Liberty & Levin + Mark Levin is joined by Michael Doran, senior fellow at the Hudson Institute, to discuss the Israel-Hamas conflict; Israeli activist and actress Noa Tishby discusses the rise of anti-Semitism. + News + + + + One Nation With Brian Kilmeade + In-depth analysis of the issues and stories that matter most to Americans while offering context and solutions to help bring the country together. + News + + + + FOX News Saturday Night + Discussing big stories of the week with a group of guests who give a humorous perspective on what America is talking about. + News + + + + The Big Weekend Show + Rotating panelists discuss the big news of the day and react to the top stories. + News + + + + Life, Liberty & Levin + Mark Levin is joined by Michael Doran, senior fellow at the Hudson Institute, to discuss the Israel-Hamas conflict; Israeli activist and actress Noa Tishby discusses the rise of anti-Semitism. + News + + + + One Nation With Brian Kilmeade + In-depth analysis of the issues and stories that matter most to Americans while offering context and solutions to help bring the country together. + News + + + + FOX and Friends Sunday + Highlighting the latest in news, entertainment, politics and sports. + Talk Shows + News + + + + FOX and Friends Sunday + Highlighting the latest in news, entertainment, politics and sports. + Talk Shows + News + + + + FOX and Friends Sunday + Highlighting the latest in news, entertainment, politics and sports. + Talk Shows + News + + + + FOX and Friends Sunday + Highlighting the latest in news, entertainment, politics and sports. + Talk Shows + News + + + + Sunday Morning Futures With Maria Bartiromo + Analysis of recent economic developments and interviews with business leaders and newsmakers. + Business + + + + MediaBuzz + An analysis on the media's shaping of current events and their role in politics. + News + Talk Shows + + + + Fox News Live + The latest headlines and interviews with politicians and other national newsmakers. + News + + + + Fox News Live + The latest headlines and interviews with politicians and other national newsmakers. + News + + + + FOX News Sunday + Anchor Shannon Bream interviews the biggest newsmakers of the week and leads guests in providing context and analysis of the issues facing Americans. + Talk Shows + News + + + + Sunday Morning Futures With Maria Bartiromo + Analysis of recent economic developments and interviews with business leaders and newsmakers. + Business + + + + Fox News Live + The latest headlines and interviews with politicians and other national newsmakers. + News + + + + Fox Report With Jon Scott + The latest headlines, news and analysis. + News + + + + The Big Weekend Show + Rotating panelists discuss the big news of the day and react to the top stories. + News + + + + Life, Liberty & Levin + Mark Levin is joined by Senator Ted Cruz (R-TX) for an hour-long sit-down interview on current events and his new book. + News + + + + Sunday Night in America With Trey Gowdy + Insightful analysis and a new outlook on the latest issues facing the country, the former South Carolina Congressman utilizes his mixture of wisdom, humor and historical references to break down the latest legal and political news. + Talk Shows + + + + The Big Weekend Show + Rotating panelists discuss the big news of the day and react to the top stories. + News + + + + Life, Liberty & Levin + Mark Levin is joined by Senator Ted Cruz (R-TX) for an hour-long sit-down interview on current events and his new book. + News + + + + Sunday Night in America With Trey Gowdy + Insightful analysis and a new outlook on the latest issues facing the country, the former South Carolina Congressman utilizes his mixture of wisdom, humor and historical references to break down the latest legal and political news. + Talk Shows + + + + The Big Weekend Show + Rotating panelists discuss the big news of the day and react to the top stories. + News + + + + FOX News Sunday + Anchor Shannon Bream interviews the biggest newsmakers of the week and leads guests in providing context and analysis of the issues facing Americans. + Talk Shows + News + + + + Life, Liberty & Levin + Mark Levin is joined by Senator Ted Cruz (R-TX) for an hour-long sit-down interview on current events and his new book. + News + + + + Sunday Night in America With Trey Gowdy + Insightful analysis and a new outlook on the latest issues facing the country, the former South Carolina Congressman utilizes his mixture of wisdom, humor and historical references to break down the latest legal and political news. + Talk Shows + + + + FOX & Friends First + Hosts Todd Piro and Carley Shimkus present all the headlines viewers may have missed overnight, along with a preview of upcoming news events. + News Magazine + + + + FOX and Friends + Co-hosts Steve Doocy, Ainsley Earhardt, Brian Kilmeade and Lawrence Jones highlight the latest. + Talk Shows + News + + + + FOX and Friends + Co-hosts Steve Doocy, Ainsley Earhardt, Brian Kilmeade and Lawrence Jones highlight the latest. + Talk Shows + News + + + + FOX and Friends + Co-hosts Steve Doocy, Ainsley Earhardt, Brian Kilmeade and Lawrence Jones highlight the latest. + Talk Shows + News + + + + America's Newsroom + Bill Hemmer and Dana Perino cover current events happening around the nation and the world; guests pertinent to the news topics are interviewed and viewer emails are also answered by the anchors and guests. + Talk Shows + News + + + + America's Newsroom + Bill Hemmer and Dana Perino cover current events happening around the nation and the world; guests pertinent to the news topics are interviewed and viewer emails are also answered by the anchors and guests. + Talk Shows + News + + + + The Faulkner Focus + Emmy-winning journalist Harris Faulkner provides the latest news with insightful analysis and interviews with top newsmakers. + News + + + + Outnumbered + Four female panelists and one male colleague share their perspectives on the day's top news stories. + News + + + + America Reports + A look at the latest news and headlines with Sandra Smith and John Roberts. + News + + + + America Reports + A look at the latest news and headlines with Sandra Smith and John Roberts. + News + + + + The Story With Martha MacCallum + Martha MacCallum brings the story of the times with her tough but fair interviews and straightforward analysis;. + News + + + + Your World With Neil Cavuto + Money tips from Wall Street. + News + Business + + + + The Five + Dana Perino, Greg Gutfeld, Jesse Watters, Jeanine Pirro and a rotating host discuss and debate hot issues across the spectrum, from politics to pop culture; the hosts also conclude each show with the. + Talk Shows + Political + + + + Special Report With Bret Baier + The latest news from inside the Beltway. + Talk Shows + News + + + + The Ingraham Angle + Laura Ingraham aims to cut through the Washington chatter to speak directly with unexpected voices and the actual people who are impacted by the news of the day. + News + + + + Jesse Watters Primetime + Jesse Watters speaks with newsmakers from across the country to give Americans a show where straight talk is the only talk. + Talk Shows + + + + Hannity + Commentary and interviews about the day's news. + Talk Shows + News + + + + Gutfeld! + Greg Gutfeld examines the news of the day through a satiric lens fused with pop culture. + News + Performing Arts + + + + Fox News at Night + News and analysis of current affairs. + News + + + + The Five + Dana Perino, Greg Gutfeld, Jesse Watters, Jeanine Pirro and a rotating host discuss and debate hot issues across the spectrum, from politics to pop culture; the hosts also conclude each show with the. + Talk Shows + Political + + + + Jesse Watters Primetime + Jesse Watters speaks with newsmakers from across the country to give Americans a show where straight talk is the only talk. + Talk Shows + + + + Hannity + Commentary and interviews about the day's news. + Talk Shows + News + + + + Gutfeld! + Greg Gutfeld examines the news of the day through a satiric lens fused with pop culture. + News + Performing Arts + + + + The Ingraham Angle + Laura Ingraham aims to cut through the Washington chatter to speak directly with unexpected voices and the actual people who are impacted by the news of the day. + News + + + + FOX & Friends First + Hosts Todd Piro and Carley Shimkus present all the headlines viewers may have missed overnight, along with a preview of upcoming news events. + News Magazine + + + + FOX and Friends + Co-hosts Steve Doocy, Ainsley Earhardt, Brian Kilmeade and Lawrence Jones highlight the latest. + Talk Shows + News + + + + FOX and Friends + Co-hosts Steve Doocy, Ainsley Earhardt, Brian Kilmeade and Lawrence Jones highlight the latest. + Talk Shows + News + + + + FOX and Friends + Co-hosts Steve Doocy, Ainsley Earhardt, Brian Kilmeade and Lawrence Jones highlight the latest. + Talk Shows + News + + + + America's Newsroom + Bill Hemmer and Dana Perino cover current events happening around the nation and the world; guests pertinent to the news topics are interviewed and viewer emails are also answered by the anchors and guests. + Talk Shows + News + + + + America's Newsroom + Bill Hemmer and Dana Perino cover current events happening around the nation and the world; guests pertinent to the news topics are interviewed and viewer emails are also answered by the anchors and guests. + Talk Shows + News + + + + The Faulkner Focus + Emmy-winning journalist Harris Faulkner provides the latest news with insightful analysis and interviews with top newsmakers. + News + + + + Outnumbered + Four female panelists and one male colleague share their perspectives on the day's top news stories. + News + + + + America Reports + A look at the latest news and headlines with Sandra Smith and John Roberts. + News + + + + America Reports + A look at the latest news and headlines with Sandra Smith and John Roberts. + News + + + + The Story With Martha MacCallum + Martha MacCallum brings the story of the times with her tough but fair interviews and straightforward analysis;. + News + + + + Your World With Neil Cavuto + Money tips from Wall Street. + News + Business + + + + The Five + Dana Perino, Greg Gutfeld, Jesse Watters, Jeanine Pirro and a rotating host discuss and debate hot issues across the spectrum, from politics to pop culture; the hosts also conclude each show with the. + Talk Shows + Political + + + + Special Report With Bret Baier + The latest news from inside the Beltway. + Talk Shows + News + + + + The Ingraham Angle + Laura Ingraham aims to cut through the Washington chatter to speak directly with unexpected voices and the actual people who are impacted by the news of the day. + News + + + + Jesse Watters Primetime + Jesse Watters speaks with newsmakers from across the country to give Americans a show where straight talk is the only talk. + Talk Shows + + + + Hannity + Commentary and interviews about the day's news. + Talk Shows + News + + + + Gutfeld! + Greg Gutfeld examines the news of the day through a satiric lens fused with pop culture. + News + Performing Arts + + + + Fox News at Night + News and analysis of current affairs. + News + + + + The Five + Dana Perino, Greg Gutfeld, Jesse Watters, Jeanine Pirro and a rotating host discuss and debate hot issues across the spectrum, from politics to pop culture; the hosts also conclude each show with the. + Talk Shows + Political + + + + Jesse Watters Primetime + Jesse Watters speaks with newsmakers from across the country to give Americans a show where straight talk is the only talk. + Talk Shows + + + + Hannity + Commentary and interviews about the day's news. + Talk Shows + News + + + + Gutfeld! + Greg Gutfeld examines the news of the day through a satiric lens fused with pop culture. + News + Performing Arts + + + + The Ingraham Angle + Laura Ingraham aims to cut through the Washington chatter to speak directly with unexpected voices and the actual people who are impacted by the news of the day. + News + + + + FOX & Friends First + Hosts Todd Piro and Carley Shimkus present all the headlines viewers may have missed overnight, along with a preview of upcoming news events. + News Magazine + + + + FOX and Friends + Co-hosts Steve Doocy, Ainsley Earhardt, Brian Kilmeade and Lawrence Jones highlight the latest. + Talk Shows + News + + + + FOX and Friends + Co-hosts Steve Doocy, Ainsley Earhardt, Brian Kilmeade and Lawrence Jones highlight the latest. + Talk Shows + News + + + + FOX and Friends + Co-hosts Steve Doocy, Ainsley Earhardt, Brian Kilmeade and Lawrence Jones highlight the latest. + Talk Shows + News + + + + America's Newsroom + Bill Hemmer and Dana Perino cover current events happening around the nation and the world; guests pertinent to the news topics are interviewed and viewer emails are also answered by the anchors and guests. + Talk Shows + News + + + + America's Newsroom + Bill Hemmer and Dana Perino cover current events happening around the nation and the world; guests pertinent to the news topics are interviewed and viewer emails are also answered by the anchors and guests. + Talk Shows + News + + + + The Faulkner Focus + Emmy-winning journalist Harris Faulkner provides the latest news with insightful analysis and interviews with top newsmakers. + News + + + + Outnumbered + Four female panelists and one male colleague share their perspectives on the day's top news stories. + News + + + + America Reports + A look at the latest news and headlines with Sandra Smith and John Roberts. + News + + + + America Reports + A look at the latest news and headlines with Sandra Smith and John Roberts. + News + + + + The Story With Martha MacCallum + Martha MacCallum brings the story of the times with her tough but fair interviews and straightforward analysis;. + News + + + + Your World With Neil Cavuto + Money tips from Wall Street. + News + Business + + + + The Five + Dana Perino, Greg Gutfeld, Jesse Watters, Jeanine Pirro and a rotating host discuss and debate hot issues across the spectrum, from politics to pop culture; the hosts also conclude each show with the. + Talk Shows + Political + + + + Special Report With Bret Baier + The latest news from inside the Beltway. + Talk Shows + News + + + + KTLA 5 News at 5 + News + + + + KTLA 5 News at 6 + News + + + + KTLA 5 News at 6:30 + News + + + + Friends + The One With the Baby on the Bus + Joey and Chandler decide to baby-sit and use Ben as a way to pick up women; Phoebe loses her job singing at Central Perk. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TVPG + + + + Cowboys & Aliens + A 19th-century gunslinger (Daniel Craig) unites townspeople, outlaws, and a band of Apache warriors against an extraterrestrial threat. + + Daniel Craig + Harrison Ford + Olivia Wilde + + 2011 + Movies + Sci-Fi + + + TVPG + + + 2 + + + + KTLA 5 News at 10 + News + + + + KTLA 5 Sports Final + Sports + + + + KTLA 5 News at 11 + News + + + + KTLA 5 Sports Final + Sports + + + + The Silver and Black Show + Player interviews; discussing matchups. + Sports + Football + + + TVPG + + + + The Big Bang Theory + The Spaghetti Catalyst + Sheldon goes to extremes to keep Leonard and Penny happy when they stop speaking to each other. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TV14 + + + + The Big Bang Theory + The Plimpton Stimulation + Sheldon invites a famous physicist to the apartment, and competes with Leonard for her attention. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TV14 + + + + Two and a Half Men + Rough Night in Hump Junction + Alan fears that Charlie's womanizing is getting out of control. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Two and a Half Men + Whipped Unto the Third Generation + Charlie's house is taken over by women when Chelsea convinces him to let Alan's girlfriend move in. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + California Cooking With Jessica Holmes + Sweet Potato and Shishita Pepper Hash, Korean Corn Cheese, Creamy Pumpkin Carbonara, Homemade Apple + Jesssica cooks up some fall foods with sweet potato and shishito pepper hash, Korean corn cheese and a creamy pumpkin carbonara. Then, Jessica finishes it off with homemade apple cinnamon donuts. + Food + + + TVG + + + + Frank Buckley Interviews + KTLA anchor Frank Buckley sits down with various celebrities, political figures and locals for one on one chats about topics of importance. + Political + Performing Arts + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Frank Buckley Interviews + KTLA anchor Frank Buckley sits down with various celebrities, political figures and locals for one on one chats about topics of importance. + Political + Performing Arts + + + TVG + + + + Inside California Politics + Political + + + + KTLA 5 Morning News at 6 + News + + + + KTLA 5 Morning News at 7 + News + + + + KTLA 5 Morning News at 9 + News + + + + KTLA 5 Morning News at 10 + News + + + + In Touch With Dr. Charles Stanley + The Stages of Faith; Overcoming Discouragement + In Touch Ministries is the broadcast teaching ministry of Dr. Charles Stanley. + Religious + + + TVG + + + + Joel Osteen + Joel and Victoria Osteen's message of unconditional love and unending hope reaches everyone across the world. + Religious + + + TVPG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Jack Hanna's Into the Wild + Going Batty + Bats, birds and other jungle creatures in Panama; echolocation; Canopy Tower. + Animals + Instructional + + + TVG + + + + Jack Hanna's Into the Wild + Sea Turtles of Pongara + One-ton leatherback sea turtles return to shore to lay their eggs. + Animals + Instructional + + + TVG + + + + Jack Hanna's Into the Wild + The Wilds + The Wilds conservation center in Ohio: the takin, the Asian one-horned rhinoceros, the white rhinoceros; wild dogs; the cheetah. + Animals + Instructional + + + TVG + + + + Jack Hanna's Into the Wild + Exploring El Valle + Panamanian golden frogs; zip-lining; a cacao plantation. + Animals + Instructional + + + TVG + + + + KTLA 5 News at 4 + News + + + + KTLA 5 News at 5 + News + + + + KTLA 5 News at 6 + News + + + + KTLA 5 News at 6:30 + News + + + + Sullivan's Crossing + Pressure Drop + Maggie makes a difficult decision after Sully lets his temper get the best of him. + + Morgan Kohan + Chad Michael Murray + Scott Patterson + + Drama + + + TVPG + + + + The Chosen + Homecoming + Jesus delivers the Sermon on the Mount to thousands of believers before he and his disciples return to their families. + + Jonathan Roumie + Shahar Isaac + Elizabeth Tabish + + Drama + + + TVPG + + + + Whose Line Is It Anyway? + Penn & Teller 2 + Special guests Penn & Teller.Guests: Penn & Teller.. + Comedy + Game Shows + + + TV14 + + + + KTLA 5 News at 10 + News + + + + KTLA 5 Sports Final + Sports + + + + KTLA 5 News at 11 + News + + + + KTLA 5 Sports Final + Sports + + + + Raiders Gameday + Sports + Football + + + + In Touch With Dr. Charles Stanley + The Stages of Faith + In Touch Ministries is the broadcast teaching ministry of Dr. Charles Stanley. + Religious + + + TVG + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + Court Cam + A teacher pays a shocking price for an affair with an underage student; a murderer must face the parents of his victims in court; a handcuffed defendant resorts to spitting to send a message. + Reality TV + Legal + + + TV14 + + + + Pawn Stars + Gotham Pawn + Limited-edition Batman and Joker Bolin guitars; a bronze sculpture by M.L. Snowden; a pair of signed Betty Crocker letters; a WWII-era Adolf Hitler pincushion. + Reality TV + History + + + TVPG + + + + Family Guy + Friends of Peter G + Brian and Peter are required to attend a 12-step program to deal with their drinking problems; Death (Adam Carolla) gives Peter a glimpse of what life would be like without alcohol. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + The Goldbergs + Man of the House + With everyone preoccupied with the new baby on the way, Erica's graduation is met with lackluster enthusiasm from Beverly and Geoff; Adam's new job is in jeopardy; Barry tries to be the new man of the house. + + Wendi McLendon-Covey + Sean Giambrone + Troy Gentile + + Sitcom + + + TVPG + + + + KTLA 5 Morning News at 4 + News + + + + KTLA 5 Morning News at 4:30 + News + + + + KTLA 5 Morning News at 5 + News + + + + KTLA 5 Morning News at 6 + News + + + + KTLA 5 Morning News at 7 + News + + + + KTLA 5 Morning News at 9 + News + + + + KTLA 5 Morning News at 10 + News + + + + KTLA 5 Morning News at 11 + News + + + + KTLA 5 News at Noon + News + + + + KTLA 5 News at 1 + News + + + + Off The Clock + Chris Schauble, Megan Henderson and Henry DiCarlo give viewers their take on the latest tech trends, superhero news, healthy headlines and more, as well as showing their favorite Southern California spots while discovering more. + Local + Performing Arts + + + + KTLA 5 News at 3 + News + + + + KTLA 5 News at 4 + News + + + + KTLA 5 News at 5 + News + + + + KTLA 5 News at 6 + News + + + + KTLA 5 News at 6:30 + News + + + + L.A. Unscripted + Join KTLA Entertainment Reporter Dayna Devon and friends as they discuss the unique and fun liestyles of the Los Angeles area. + Performing Arts + + + + Two and a Half Men + Phase One, Complete + Jake and Evelyn befriend one of Charlie's one-night stands, causing her to stay longer than expected. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TVPG + + + + Penn & Teller: Fool Us + 2 Dead in Tonight's Episode + Featured magicians include Alexandra, Artem, Anthony Dempsey and Rune Carlsen. + Reality TV + Performing Arts + + + TVPG + + + + Masters of Illusion + Knives Out and Other Strange Magic + Featured magicians include Ed Alonzo, Deadly Game, Lucy Darling, Joshua Jay, Lioz and Caleb Alexander. + Variety + Performing Arts + + + TVPG + + + + World's Funniest Animals + Episode 418 + Super cute and smart cats and dogs; cows playing ball; bears celebrating; horsing around; commentary provided by Carmen Hodgson, Devon Werkheiser and Daniel Curtis Lee.Guests: Carmen Hodgson, Devon Werkheiser, Daniel Curtis Lee.. + Animals + Performing Arts + + + TVPG + + + + KTLA 5 News at 10 + News + + + + KTLA 5 Sports Final + Sports + + + + KTLA 5 News at 11 + News + + + + Friends + The One With Joey's Interview + When Soap Opera Digest requests an interview, Joey enlists his friends to make sure he does not say anything that could cost him his role. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The One With the Baby Shower + During her baby shower, Rachel realizes she is unprepared to be a mother and accepts her mother's (Marlo Thomas) offer to move in to help with the child. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + The Big Bang Theory + The Creepy Candy Coating Corollary + Sheldon seeks revenge on his nemesis, Wil Wheaton; Wolowitz wants Penny to set him up with one of her friends. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + The Big Bang Theory + The Military Miniaturization + Wolowitz has a meeting with Colonel Williams, a representative from the Air Force Department of Material Command. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + Two and a Half Men + Does This Smell Funny to You? + Charlie unknowingly sleeps with an elderly man's (Orson Bean) hot trophy wife. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Court Cam + A murderer found guilty of a crime holds nothing back at sentencing; a convict attempts to get a judge's attention through any means necessary; a man breaks into a courthouse at 3 a.m. and calls 911 to report himself. + Reality TV + Legal + + + TV14 + + + + Pawn Stars + Priciest Pawns + Another look at some of the Priciest items the Pawn Stars have ever seen: a mint condition 1967 Ford Shelby G.T. 350, a Hotchkiss revolving Cannon from the 1800's; $85,000 Gibson guitar once owned by Stephen Stills. + Reality TV + History + + + TVPG + + + + Family Guy + Trading Places + When Chris and Meg trade roles with their parents, Chris works at the brewery and Meg runs the house. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + The Goldbergs + Uncle-ing + With her due date approaching, Erica is over pregnancy and demands a babymoon; Adam and Barry seek out advice on being an uncle from some unexpected sources. + + Wendi McLendon-Covey + Sean Giambrone + Troy Gentile + + Sitcom + + + TVPG + + + + KTLA 5 Morning News at 4 + News + + + + KTLA 5 Morning News at 4:30 + News + + + + KTLA 5 Morning News at 5 + News + + + + KTLA 5 Morning News at 6 + News + + + + KTLA 5 Morning News at 7 + News + + + + KTLA 5 Morning News at 9 + News + + + + KTLA 5 Morning News at 10 + News + + + + KTLA 5 Morning News at 11 + News + + + + KTLA 5 News at Noon + News + + + + KTLA 5 News at 1 + News + + + + Off The Clock + Chris Schauble, Megan Henderson and Henry DiCarlo give viewers their take on the latest tech trends, superhero news, healthy headlines and more, as well as showing their favorite Southern California spots while discovering more. + Local + Performing Arts + + + + KTLA 5 News at 3 + News + + + + KTLA 5 News at 4 + News + + + + KTLA 5 News at 5 + News + + + + KTLA 5 News at 6 + News + + + + KTLA 5 News at 6:30 + News + + + + L.A. Unscripted + Join KTLA Entertainment Reporter Dayna Devon and friends as they discuss the unique and fun liestyles of the Los Angeles area. + Performing Arts + + + + Two and a Half Men + Alan Harper, Frontier Chiropractor + Alan reluctantly agrees to a makeover after running into his ex-wife and her new beau; when the brothers go shopping, they clash over what to buy. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TVPG + + + + Inside the NFL + Week 9 + Recaping the greatest moments from week nine. + Sports + Football + + + TVPG + + + + Whose Line Is It Anyway? + Special 1 + A special episode featuring a compilation of games, moments, and outtakes of never-before-seen footage. + Comedy + Game Shows + + + TV14 + + + + Whose Line Is It Anyway? + Special 2 + A compilation of games, moments, and outtakes of never-before-seen footage. + Comedy + Game Shows + + + TV14 + + + + KTLA 5 News at 10 + News + + + + KTLA 5 Sports Final + Sports + + + + KTLA 5 News at 11 + News + + + + Friends + The One With the Cooking Class + A food critic blasts Monica's cooking in a newspaper review; a cute saleswoman (Rena Sofer) riles Rachel when she flirts with Ross; Phoebe coaches Chandler for a job interview. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + Friends + The One Where Rachel Is Late + Monica and Phoebe make a bet after Rachel passes her delivery date; Chandler falls asleep at the premiere screening of Joey's new film. + + Jennifer Aniston + Courteney Cox + Lisa Kudrow + + Sitcom + + + TV14 + + + + The Big Bang Theory + The Cornhusker Vortex + Sheldon teaches Leonard how to understand football; a kite-fighting incident threatens Howard and Raj's friendship. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + The Big Bang Theory + The Dependence Transcendence + Sheldon tries to stay awake with an energy drink as the gang races to finish its government project on time; Penny and Amy attend a gathering at Bert the Geologist's house; Koothrappali learns Bernadette's true feeling about her pregnancy. + + Johnny Galecki + Jim Parsons + Kaley Cuoco + + Sitcom + + + TVPG + + + + Two and a Half Men + The Sea Is a Harsh Mistress + Charlie is convinced he saw his late father while having a near-death experience. + + Charlie Sheen + Jon Cryer + Angus T. Jones + + Sitcom + + + TV14 + + + + Court Cam + A man accused of killing two of his girlfriends is brought to justice; a deputy recalls his surprising discovery deep in the Montana wilderness; multiple bailiffs are targeted during a defendant's violent outburst. + Reality TV + Legal + + + TV14 + + + + Pawn Stars + Monumental Pawn + Rick goes to look at 1966 Chevy II; a program from the unveiling of the Statue of Liberty; Corey attempts to convince Rick to buy him a company car. + Reality TV + History + + + TVPG + + + + Family Guy + Foreign Affairs + Bonnie and Lois take a trip to Paris; Peter uses unorthodox teaching methods while homeschooling Chris and Meg. + + Seth MacFarlane + Alex Borstein + Seth Green + + Animated + Sitcom + + + TV14 + + + + The Goldbergs + Rhinestones and Roses + The country music craze hits the town, and everyone is line dancing; Adam scores a new job, but his lack of time to spend with Pop-Pop results in some comically disastrous outcomes. + + Wendi McLendon-Covey + Sean Giambrone + Troy Gentile + + Sitcom + + + TVPG + + + + KTLA 5 Morning News at 4 + News + + + + KTLA 5 Morning News at 4:30 + News + + + + KTLA 5 Morning News at 5 + News + + + + KTLA 5 Morning News at 6 + News + + + + KTLA 5 Morning News at 7 + News + + + + KTLA 5 Morning News at 9 + News + + + + KTLA 5 Morning News at 10 + News + + + + KTLA 5 Morning News at 11 + News + + + + KTLA 5 News at Noon + News + + + + KTLA 5 News at 1 + News + + + + Off The Clock + Chris Schauble, Megan Henderson and Henry DiCarlo give viewers their take on the latest tech trends, superhero news, healthy headlines and more, as well as showing their favorite Southern California spots while discovering more. + Local + Performing Arts + + + + KTLA 5 News at 3 + News + + + + Ayman + The latest breaking news, reporting and coverage of the day's important stories. + News + + + + Ayman + The latest breaking news, reporting and coverage of the day's important stories. + News + + + + American Voices With Alicia Menendez + Alicia Menendez focuses on raising voices that aren't typically featured on cable news. + News + Political + + + + Ayman + The latest breaking news, reporting and coverage of the day's important stories. + News + + + + Ayman + The latest breaking news, reporting and coverage of the day's important stories. + News + + + + Dateline + The Ranch + The Valseca siblings' lives are changed when their father is taken hostage in an orchestrated abduction. + News Magazine + News + + + TV14 + + + + Dateline + The Night Lynsie Disappeared + A cold-case investigator helps police determine what happened to a missing woman. + News Magazine + + + TVPG + + + + Dateline + The Ranch + The Valseca siblings' lives are changed when their father is taken hostage in an orchestrated abduction. + News Magazine + News + + + TV14 + + + + Dateline + Secrets in the Mist + When a mother disappears, the internet is still in its infancy; decades later, a cold case investigator wonders if Facebook could be used to help find out what happened to the woman who vanished so long ago. + News Magazine + + + TVPG + + + + Dateline + Secrets in the Snow + It was a bone-chilling snowy night when mother and professional dancer Stephanie Bruner went missing in the Colorado mountains. Police had three viable suspects in mind, but a complicated love triangle may have sealed her fate. + News Magazine + Documentary + + + TV14 + + + + American Voices With Alicia Menendez + Alicia Menendez focuses on raising voices that aren't typically featured on cable news. + News + Political + + + + Ayman + The latest breaking news, reporting and coverage of the day's important stories. + News + + + + The Katie Phang Show + Katie Phang explores the intersections of law, politics, culture and more, and features interviews with the nation's top newsmakers. + News + + + + The Sunday Show With Jonathan Capehart + Examining the high stakes surrounding key issues affecting communities across America, cutting through the political noise with compelling, in-depth and unique viewpoints. + News + + + + Velshi + Current events and sharp analysis of top trending topics. + News + + + + Velshi + Current events and sharp analysis of top trending topics. + News + + + + Inside With Jen Psaki + Jen Psaki tackles the biggest issues of the week and features one-on-one interviews with newsmakers. + News + + + + Alex Witt Reports + The latest breaking news, reporting and live coverage of the day's important stories; hosted by trusted NBC News journalists, these dynamic hours offer discussions with newsmakers, journalists and politicians. + News + + + + Yasmin Vossoughian Reports + The latest breaking news, reporting and live coverage of the day's important stories; hosted by trusted NBC News journalists, these dynamic hours offer discussions with newsmakers, journalists and politicians. + News + + + + Yasmin Vossoughian Reports + The latest breaking news, reporting and live coverage of the day's important stories; hosted by trusted NBC News journalists, these dynamic hours offer discussions with newsmakers, journalists and politicians. + News + + + + Symone + Covering the day's biggest political, cultural and global stories. + News + + + + PoliticsNation + Rev. Al Sharpton highlights important political stories and issues that require a national platform. + News + + + TVG + + + + American Voices With Alicia Menendez + Alicia Menendez focuses on raising voices that aren't typically featured on cable news. + News + Political + + + + Inside With Jen Psaki + Jen Psaki tackles the biggest issues of the week and features one-on-one interviews with newsmakers. + News + + + + The Mehdi Hasan Show + Mehdi Hasan provides insightful reporting and probing interviews that examine the day's events and provide a deeper level of context for the politics of our interconnected society. + News + + + TV14 + + + + Ayman + The latest breaking news, reporting and coverage of the day's important stories. + News + + + + American Voices With Alicia Menendez + Alicia Menendez focuses on raising voices that aren't typically featured on cable news. + News + Political + + + + The Mehdi Hasan Show + Mehdi Hasan provides insightful reporting and probing interviews that examine the day's events and provide a deeper level of context for the politics of our interconnected society. + News + + + TV14 + + + + Ayman + The latest breaking news, reporting and coverage of the day's important stories. + News + + + + Dateline + The Night Hannah Hill Disappeared + A week after disappearing from her home, Hannah Hill's body is found in the trunk of her own car. + News Magazine + Documentary + + + TVPG + + + + Dateline + While They Were Sleeping + A father is murdered in his bed, in the middle of the night; it seems strange to investigators that no one else in the house is hurt, including his new wife who was sleeping by his side; there are three witnesses in the house but no one sees a thing. + News Magazine + + + TVPG + + + + Dateline + The Devil and Bobbi Parker + In 1994, convicted murderer Randolph Dial escapes from a prison in Oklahoma and takes the deputy warden's wife, Bobbi Parker, with him, then, 10 years later, Parker is found living with Dial on a farm in Texas. + News Magazine + Documentary + + + TV14 + + + + Meet the Press + Interviews with public figures and those making news, setting the political agenda and spotlighting the impact Washington decision-making has on Americans. + Talk Shows + Political + + + + Way Too Early With Jonathan Lemire + Inside-the-beltway political news and critical stories shaping the national conversation. + Political + News + + + + Morning Joe + Hosts Joe Scarborough, Mika Brzezinski and Willie Geist present in-depth and informed discussions that help drive the day's current political conversation. + News + Political + + + + Ana Cabrera Reports + The latest breaking news, reporting and coverage of the day's important stories. + News + Political + + + + José Díaz-Balart Reports + The latest breaking news, reporting and coverage of the day's important stories. + News + + + + Andrea Mitchell Reports + The latest breaking news, reporting and coverage of the day's important stories. + News + + + + Chris Jansing Reports + The latest breaking news, reporting and coverage of the day's important stories. + News + + + + Chris Jansing Reports + The latest breaking news, reporting and coverage of the day's important stories. + News + + + + Katy Tur Reports + The latest breaking news, reporting and live coverage of the day's important stories; hosted by trusted NBC News journalists, these dynamic hours offer discussions with newsmakers, journalists and politicians. + News + + + + Deadline: White House + In-depth reporting on political developments and dynamic discussions with leading newsmakers, with insights into complex issues. + News + Political + + + TVG + + + + The Beat With Ari Melber + Political and news stories, with interviews and original reporting from around the nation. + News + + + + The ReidOut + One-on-one conversations with politicians and newsmakers, and the breaking issues of the day. + News + Political + + + + Inside With Jen Psaki + Jen Psaki tackles the biggest issues of the week and features one-on-one interviews with newsmakers. + News + + + + The Rachel Maddow Show + Through her unique approach to storytelling, Rachel Maddow provides in-depth reporting to illuminate the current state of political affairs and reveals the importance of transparency and accountability from our leaders. + News + Political + + + + The Last Word With Lawrence O'Donnell + In his signature style, Lawrence O'Donnell goes into depth on the latest news developments and offers his take on the political stories driving the national conversation. + News + Political + + + + The 11th Hour With Stephanie Ruhle + An early look at the stories that will drive tomorrow's conversation. + News + Political + + + + The Rachel Maddow Show + Through her unique approach to storytelling, Rachel Maddow provides in-depth reporting to illuminate the current state of political affairs and reveals the importance of transparency and accountability from our leaders. + News + Political + + + + The Last Word With Lawrence O'Donnell + In his signature style, Lawrence O'Donnell goes into depth on the latest news developments and offers his take on the political stories driving the national conversation. + News + Political + + + + The 11th Hour With Stephanie Ruhle + An early look at the stories that will drive tomorrow's conversation. + News + Political + + + + Inside With Jen Psaki + Jen Psaki tackles the biggest issues of the week and features one-on-one interviews with newsmakers. + News + + + + The Rachel Maddow Show + Through her unique approach to storytelling, Rachel Maddow provides in-depth reporting to illuminate the current state of political affairs and reveals the importance of transparency and accountability from our leaders. + News + Political + + + + Way Too Early With Jonathan Lemire + Inside-the-beltway political news and critical stories shaping the national conversation. + Political + News + + + + Morning Joe + Hosts Joe Scarborough, Mika Brzezinski and Willie Geist present in-depth and informed discussions that help drive the day's current political conversation. + News + Political + + + + Ana Cabrera Reports + The latest breaking news, reporting and coverage of the day's important stories. + News + Political + + + + José Díaz-Balart Reports + The latest breaking news, reporting and coverage of the day's important stories. + News + + + + Andrea Mitchell Reports + The latest breaking news, reporting and coverage of the day's important stories. + News + + + + Chris Jansing Reports + The latest breaking news, reporting and coverage of the day's important stories. + News + + + + Chris Jansing Reports + The latest breaking news, reporting and coverage of the day's important stories. + News + + + + Katy Tur Reports + The latest breaking news, reporting and live coverage of the day's important stories; hosted by trusted NBC News journalists, these dynamic hours offer discussions with newsmakers, journalists and politicians. + News + + + + Deadline: White House + In-depth reporting on political developments and dynamic discussions with leading newsmakers, with insights into complex issues. + News + Political + + + TVG + + + + The Beat With Ari Melber + Political and news stories, with interviews and original reporting from around the nation. + News + + + + The ReidOut + One-on-one conversations with politicians and newsmakers, and the breaking issues of the day. + News + Political + + + + All In With Chris Hayes + Chris Hayes reports on some of the biggest news and political stories of the day with a commitment to in-depth reporting that seeks to hold the nation's leaders accountable for their actions. + News + Political + + + + Alex Wagner Tonight + Alex Wagner brings years of reporting experience and insight to covering the news of the day, politics and the cultural trends shaping the United States and American lives, giving viewers a better understanding of the rapidly changing world. + News + Political + + + + The Last Word With Lawrence O'Donnell + In his signature style, Lawrence O'Donnell goes into depth on the latest news developments and offers his take on the political stories driving the national conversation. + News + Political + + + + The 11th Hour With Stephanie Ruhle + An early look at the stories that will drive tomorrow's conversation. + News + Political + + + + Alex Wagner Tonight + Alex Wagner brings years of reporting experience and insight to covering the news of the day, politics and the cultural trends shaping the United States and American lives, giving viewers a better understanding of the rapidly changing world. + News + Political + + + + The Last Word With Lawrence O'Donnell + In his signature style, Lawrence O'Donnell goes into depth on the latest news developments and offers his take on the political stories driving the national conversation. + News + Political + + + + The 11th Hour With Stephanie Ruhle + An early look at the stories that will drive tomorrow's conversation. + News + Political + + + + All In With Chris Hayes + Chris Hayes reports on some of the biggest news and political stories of the day with a commitment to in-depth reporting that seeks to hold the nation's leaders accountable for their actions. + News + Political + + + + Alex Wagner Tonight + Alex Wagner brings years of reporting experience and insight to covering the news of the day, politics and the cultural trends shaping the United States and American lives, giving viewers a better understanding of the rapidly changing world. + News + Political + + + + Way Too Early With Jonathan Lemire + Inside-the-beltway political news and critical stories shaping the national conversation. + Political + News + + + + Morning Joe + Hosts Joe Scarborough, Mika Brzezinski and Willie Geist present in-depth and informed discussions that help drive the day's current political conversation. + News + Political + + + + Ana Cabrera Reports + The latest breaking news, reporting and coverage of the day's important stories. + News + Political + + + + José Díaz-Balart Reports + The latest breaking news, reporting and coverage of the day's important stories. + News + + + + Andrea Mitchell Reports + The latest breaking news, reporting and coverage of the day's important stories. + News + + + + Chris Jansing Reports + The latest breaking news, reporting and coverage of the day's important stories. + News + + + + Chris Jansing Reports + The latest breaking news, reporting and coverage of the day's important stories. + News + + + + Katy Tur Reports + The latest breaking news, reporting and live coverage of the day's important stories; hosted by trusted NBC News journalists, these dynamic hours offer discussions with newsmakers, journalists and politicians. + News + + + + Deadline: White House + In-depth reporting on political developments and dynamic discussions with leading newsmakers, with insights into complex issues. + News + Political + + + TVG + + + + The Beat With Ari Melber + Political and news stories, with interviews and original reporting from around the nation. + News + + + + The Land of Israel With Jon Voight: God's Story + King David + Hiram, king of Tyre, builds David a palace; Philistines come to attack, and David defeats them; Jon Voight visits the remains of his palace. + Religious + + + + Rob Carson's What in the World? + Rob Carson dissects politics, cultural phenomena and absurdity confronts America with humor and satire. + Talk Shows + + + + Wendy Bell Common Sense + Wendy Bell takes a deep dive into tough issues with guests from across the country. + Talk Shows + + + + Greg Kelly This Week + Greg Kelly provides hard-hitting reports and analysis from Los Angeles to New York and the Beltway to the Rust Belt. + Talk Shows + News + + + + The Biden Chronicles + War and Pieces + Chris Plante examines President Biden's foreign policy. + Political + + + + A Climate Conversation + Cuts through the rhetoric and propaganda to ask the simple questions, grounded in science and free of political cheap shots. + Specials + News + + + + Jimmy Stewart: A Wonderful American Life + Tthe life and career of legendary actor Jimmy Stewart. + Specials + Documentary + + + + American Hero: The John Wayne Story + A celebrated Hollywood icon, John Wayne. + Specials + Documentary + + + + Lucy: Queen of Comedy + A chronicle of the life and career of comedy legend, Lucille Ball. + Specials + + + + Marilyn Monroe: Fascination + From childhood poverty, neglect and loneliness to premature death, Marilyn Monroe endured criticism, insecurities, drug dependence, miscarriages and broken marriages, yet she managed to parlay her beauty, talent and quick wit into a Hollywood career. + Specials + Documentary + + + + Clint Eastwood: Steel Gaze + Eastwood's work includes acting, directing and composing, having an impact on the film industry. + + Clint Eastwood + + Specials + Documentary + + + + The Footprints of Jesus in Rome + The origins of the relics of Jesus and his disciples in Rome, and the influence they have throughout history. + Specials + Documentary + + + + The World Seen From the Vatican + All the latest news about Pope Francis, the Vatican, and other related social and political issues. + Religious + News Magazine + + + TVG + + + + The Land of Israel With Jon Voight: God's Story + King David + Hiram, king of Tyre, builds David a palace; Philistines come to attack, and David defeats them; Jon Voight visits the remains of his palace. + Religious + + + + Allen Jackson + Religious + + + + Harvest With Greg Laurie + Religious + + + TVG + + + + Wake Up America + Start your day with real news and analysis from Rob Finnerty and team. + News + + + + Sunday Report + Newsmax tackles the big headlines with smart analysis from top experts. + Regular + + + + Sunday Agenda + Newsmax reveals Washington's inner workings and the fight for core values. + Regular + + + + The Record with Greta Van Susteren Weekly + Greta Van Susteren gives the big news from D.C., N.Y., across America, and around the world. + News + Political + + + + Conversations With Nancy Brinker + Nancy Brinker talks to some of the nation's most powerful and influential personalities. + Talk Shows + + + + Wendy Bell Common Sense + Wendy Bell takes a deep dive into tough issues with guests from across the country. + Talk Shows + + + + The Land of Israel With Jon Voight: God's Story + Abraham and Sodom + Jon Voight visits Nebi Yakin, the traditional location where Abraham argued with God; seeing the footsteps at the ancient mosque marking the location where Abraham stood. + Religious + + + + The Land of Israel With Jon Voight: God's Story + King David + Hiram, king of Tyre, builds David a palace; Philistines come to attack, and David defeats them; Jon Voight visits the remains of his palace. + Religious + + + + Greg Kelly This Week + Greg Kelly provides hard-hitting reports and analysis from Los Angeles to New York and the Beltway to the Rust Belt. + Talk Shows + News + + + + The Mark Kaye Show + Radio talk show host Mark Kaye takes on big media, big government and big PC, with a few laughs too. + Talk Shows + + + + Newsmax News In-Depth + Bianca de la Garza looks at the big stories of the week, politics, policy, the economy and much more. + News + + + + The Gorka Reality Check + Sebastian Gorka exposes propaganda and hypocrisy from media, Big Tech, and D.C.'s Swamp. + Talk Shows + + + + Huckabee + No agenda news, positive entertainment and everyday stories that inspire. + Talk Shows + Religious + + + TVPG + + + + Sid Roth It's Supernatural! + Walk in continuous blessings! + Paid Program + + + + The Gorka Reality Check + Sebastian Gorka exposes propaganda and hypocrisy from media, Big Tech, and D.C.'s Swamp. + Talk Shows + + + + Rob Carson's What in the World? + Rob Carson dissects politics, cultural phenomena and absurdity confronts America with humor and satire. + Talk Shows + + + + Wise Guys With John Tabacco + John Tabacco and his crew look at the big issues and shine a light on hypocrisy and dangerous policies of the elites. + Talk Shows + + + + Remember Pearl Harbor + The personal stories of veterans and citizens who witnessed the attack on the American Pacific Fleet in Pearl Harbor on Dec. 7, 1941. + Specials + Documentary + + + TVPG + + + + Remember Pearl Harbor + The personal stories of veterans and citizens who witnessed the attack on the American Pacific Fleet in Pearl Harbor on Dec. 7, 1941. + Specials + Documentary + + + TVPG + + + + Hitler's Fatal Mistake: The Fall of the Third Reich + Hitler's decision to destroy his non-aggression pact with Stalin proves to be a fatal mistake that costs him dearly. + 2020 + Movies + War + + + + Nazi Manhunt + The story of three Nazi officers who needed to be brought to the books after WWII. + Specials + Documentary + + + + Nazis on the Run + The Fall + The US army are catching up, entering Berlin with a firm plan to capture as many Nazi officials as they can, their aim to bring them before a court on trial for the atrocities they helped make possible. + History + Documentary + + + + Nazis on the Run + The Trial + Twenty four Nazi officials are brought into the courtroom at Nuremberg, Germany; the biggest trial in history is about to begin; for the first time in international law, the Nuremberg indictments also mention crimes of genocide. + History + Documentary + + + + Wendy Bell Common Sense + Wendy Bell takes a deep dive into tough issues with guests from across the country. + Talk Shows + + + + Wake Up America + Start your day with real news and analysis from Rob Finnerty and team. + News + + + + The National Report + News + + + TVG + + + + Newsline + Tackling the big news from D.C., N.Y., across America and around the world. + News + + + TVG + + + + American Agenda + A live, fast-paced look at national news and international events; Bob Sellers brings the news from Washington with insightful analysis from lawmakers and experts, with media reports from New York and around the world. + News + + + + The Chris Salcedo Show + Conservative, liberty-loving host, hits press bias and both political parties every day. + Talk Shows + + + + Carl Higbie Frontline + Carl Higbie gives news analysis as he fights for American values. + News + + + TVY + + + + The Record with Greta Van Susteren + Greta Van Susteren gives the big news from Washington, D.C., New York, across America and around the world. + Talk Shows + News + + + + Rob Schmitt Tonight + Rob Schmitt wraps up all the latest news and opinion, and sets the stage for the next day. + News + Talk Shows + + + + Eric Bolling The Balance + Eric Bolling fights big media, woke politics, and cancel culture; he tells the truth and exposes hypocrisy. + Talk Shows + + + + Greg Kelly Reports + The hardest-hitting stories from coast to coast; taking viewers from the Beltway to the Rust Belt and beyond to enlighten, expose, inform, and spotlight the stories that matter to them. + News + Talk Shows + + + + Chris Plante The Right Squad + Chris Plante and a panel of guests discuss hot topics. + News + + + + Rob Schmitt Tonight + Rob Schmitt wraps up all the latest news and opinion, and sets the stage for the next day. + News + Talk Shows + + + + Eric Bolling The Balance + Eric Bolling fights big media, woke politics, and cancel culture; he tells the truth and exposes hypocrisy. + Talk Shows + + + + Greg Kelly Reports + The hardest-hitting stories from coast to coast; taking viewers from the Beltway to the Rust Belt and beyond to enlighten, expose, inform, and spotlight the stories that matter to them. + News + Talk Shows + + + + The Record with Greta Van Susteren + Greta Van Susteren gives the big news from Washington, D.C., New York, across America and around the world. + Talk Shows + News + + + + Wendy Bell Common Sense + Wendy Bell takes a deep dive into tough issues with guests from across the country. + Talk Shows + + + + Rob Carson's What in the World? + Rob Carson dissects politics, cultural phenomena and absurdity confronts America with humor and satire. + Talk Shows + + + + The Gorka Reality Check + Sebastian Gorka exposes propaganda and hypocrisy from media, Big Tech, and D.C.'s Swamp. + Talk Shows + + + + The Biden Chronicles + Documents and Deception + Biden wrestles breakdowns; top secret documents are discovered; fact-checkers have a field day. + Political + + + + The Biden Chronicles + Borders and Blunders + President Biden's communication skills; Vice President Kamala Harris discusses borders. + Political + + + + Rob Carson's What in the World? + Rob Carson dissects politics, cultural phenomena and absurdity confronts America with humor and satire. + Talk Shows + + + + Wake Up America + Rob Finnerty and Sharla McBride start the day with news and analysis. + News + + + + The National Report + News + + + TVG + + + + Newsline + Tackling the big news from D.C., N.Y., across America and around the world. + News + + + + American Agenda + A live, fast-paced look at national news and international events; Bob Sellers brings the news from Washington with insightful analysis from lawmakers and experts, with media reports from New York and around the world. + News + + + + The Chris Salcedo Show + Conservative, liberty-loving host, hits press bias and both political parties every day. + Talk Shows + + + + Carl Higbie Frontline + Carl Higbie gives news analysis as he fights for American values. + News + + + + The Record with Greta Van Susteren + Greta Van Susteren gives the big news from Washington, D.C., New York, across America and around the world. + Talk Shows + News + + + + Rob Schmitt Tonight + Rob Schmitt wraps up all the latest news and opinion, and sets the stage for the next day. + News + Talk Shows + + + + Eric Bolling The Balance + Eric Bolling fights big media, woke politics, and cancel culture; he tells the truth and exposes hypocrisy. + Talk Shows + + + + Greg Kelly Reports + The hardest-hitting stories from coast to coast; taking viewers from the Beltway to the Rust Belt and beyond to enlighten, expose, inform, and spotlight the stories that matter to them. + News + Talk Shows + + + + Chris Plante The Right Squad + Chris Plante and a panel of guests discuss hot topics. + News + + + + Rob Schmitt Tonight + Rob Schmitt wraps up all the latest news and opinion, and sets the stage for the next day. + News + Talk Shows + + + + Eric Bolling The Balance + Eric Bolling fights big media, woke politics, and cancel culture; he tells the truth and exposes hypocrisy. + Talk Shows + + + + Greg Kelly Reports + The hardest-hitting stories from coast to coast; taking viewers from the Beltway to the Rust Belt and beyond to enlighten, expose, inform, and spotlight the stories that matter to them. + News + Talk Shows + + + + The Record with Greta Van Susteren + Greta Van Susteren gives the big news from Washington, D.C., New York, across America and around the world. + Talk Shows + News + + + + The Chris Salcedo Show + Conservative, liberty-loving host, hits press bias and both political parties every day. + Talk Shows + + + + The Trump Wars + Battle for the GOP + Donald Trump faces a field of 17 political heavyweights and becomes the unlikely winner of the 2016 GOP nomination for President. + Documentary + + + + The Trump Wars + Exposing Fake News + No one else in the world understands what the news media has become more than President Donald Trump; he fights them on their level, and more often than not, he wins; reliving his best moments taking on fake news. + Documentary + + + + The Biden Chronicles + Brain Fog + Joe Biden has made gaffes and grasped at his memory. + Political + + + + The Biden Chronicles + War and Pieces + Chris Plante examines President Biden's foreign policy. + Political + + + + Wise Guys With John Tabacco + John Tabacco and his crew look at the big issues and shine a light on hypocrisy and dangerous policies of the elites. + Talk Shows + + + + Wake Up America + Rob Finnerty and Sharla McBride start the day with news and analysis. + News + + + + The National Report + News + + + TVG + + + + Newsline + Tackling the big news from D.C., N.Y., across America and around the world. + News + + + + American Agenda + A live, fast-paced look at national news and international events; Bob Sellers brings the news from Washington with insightful analysis from lawmakers and experts, with media reports from New York and around the world. + News + + + + The Chris Salcedo Show + Conservative, liberty-loving host, hits press bias and both political parties every day. + Talk Shows + + + + Carl Higbie Frontline + Carl Higbie gives news analysis as he fights for American values. + News + + + + The Record with Greta Van Susteren + Greta Van Susteren gives the big news from Washington, D.C., New York, across America and around the world. + Talk Shows + News + + + + Highway Thru Hell + Casualties of War + With winter's first blow, new recruit, John, must save a snowplow stuck in an icy river; changes rock the company, forcing Colin to take on a new role; the community says farewell to a Heavy Rescue legend. + Reality TV + + + TVPG + + + + Highway Thru Hell + Saved on Preacher's Corner + Jamie's new BC crew struggles with a badly mangled trailer on a dangerous blind corner; Colin slips up on a big recovery in Alberta and Jamie's brother has to take over the job; Brandon steps up to a new role. + Reality TV + + + TVPG + + + + Highway Thru Hell + War Zone + A flaming wreckage becomes the biggest recovery of Colin's career; as snowstorms pummel the Coquihalla, Al Quiring heads up, ready for battle; John faces off against a mangled tractor and becomes a mentor. + Reality TV + + + TVPG + + + + Highway Thru Hell + Holidays Through Hell + Two days before Christmas, a semi plows off a bridge, leaving a trailer and three RVs dangling over a raging river. It's up to John, Jamie's new BC driver, to get holiday traffic moving and prove himself on a multi part recovery. + Reality TV + + + TVPG + + + + Ice Pilots + Crash Landing + An accident affects the waterbomber crew in Turkey; Wilf's first run causes panic. + Reality TV + + + TVPG + + + + Ice Pilots + Cold Start + Everyone scrambles following a landing-gear collapse on the runway; getting a frozen DC-4 into the air proves to be a difficult task. + Reality TV + + + TVPG + + + + Prime Suspect: Earth + Suez Crisis and Mystery Jets + Documentary + + + + Prime Suspect: Earth + Suez Crisis and Mystery Jets + Documentary + + + + Prime Suspect: Earth + Mammoth Mystery & Vanishing Sub + A strange explosion and tower of fire in oil fields is not what it seems; the world's last mammoths are killed en masse; a U.S. nuclear sub goes missing. + Documentary + + + + Deadline to Disaster + Sally's Surge + Hurricane Sally makes landfall along Alabama's Gulf Coast, the first tropical cyclone to do so since 2004; intensifying to a Category 2 storm and turning east just prior to landfall, Sally catches many residents along the panhandle by surprise. + Environmental + Science + + + TVG + + + + Deadline to Disaster + Music Mayhem + On March 3, 2020, a super cell makes it way across Kentucky and sets its sights on Tennessee; that night, 10 tornados ranging from EF0 to EF4 touched down in Tennessee, leaving approximately $1.6 billion in damage and taking 25 lives. + Environmental + Science + + + TVG + + + + America's Weekend Headquarters + The science and stories of weather, plus in-depth forecasts with a focus on weekend weather. + Environmental + + + + America's Weekend Headquarters + The science and stories of weather, plus in-depth forecasts with a focus on weekend weather. + Environmental + + + + America's Weekend Headquarters + The science and stories of weather, plus in-depth forecasts with a focus on weekend weather. + Environmental + + + + Weekend Recharge + The latest news and weather to prepare for the weekend. + News + Environmental + + + TVG + + + + Weekend Recharge + The latest news and weather to prepare for the weekend. + News + Environmental + + + TVG + + + + Weekend Recharge + The latest news and weather to prepare for the weekend. + News + Environmental + + + TVG + + + + Weekend Recharge + The latest news and weather to prepare for the weekend. + News + Environmental + + + TVG + + + + Heavy Rescue: 401 + It's Now or Never and Pray for the Best + Sonny deals with a jackknife during the first winter storm; John deals with a messy wreck under an overpass. + Reality TV + + + TVMA + + + + Heavy Rescue: 401 + One Twisted Mess + Kevin orchestrates a team of heavy operators during a highway cleanup job; Gary's crew is sent on a marathon recovery. + Reality TV + + + TVMA + + + + Heavy Rescue: 401 + The 401 Is Calling + The Sarnia crew battles exhaustion and frustration on a wreck that refuses to stop fighting; a badly-timed breakdown puts Eric on edge; Sonny works to free a fleet of plows trapped on the highway. + Reality TV + + + TVMA + + + + Deep Water Salvage + Mystery Wrecks + Salvors tackle a mystery wreck removal of a vehicle sitting in mud at the bottom of a river; the police and fire department remain on on call as they suspect a body remains inside. + Reality TV + Environmental + + + + Deep Water Salvage + Hawaii 911 + An ace salvor and his small band of professionals recover a sailboat that poses a threat to a major shipping lane in Hawaii; in Panama, divers tackle the seriously damaged hull of a Liquid Natural Gas vessel. + Reality TV + Environmental + + + + Deep Water Salvage + Dire Straits + A massive freighter sinks after smashing into another ship; salvors are tasked with recovering its valuable cargo and removing the wreck blocking access to the Mediterranean; a recent round of violent storms creates havoc and danger for the crew. + Reality TV + Environmental + + + + Deep Water Salvage + Storm Force Destruction + Hurricane Ian slams into Florida and tosses a 60-foot fishing vessel onto a major highway; salvors face the daunting task of returning the precious vessel into the water unscathed. + Reality TV + Environmental + + + + Mayday: Air Disaster + Alarming Silence + Northwest Airlines Flight 255 crashes shortly after take-off in Detroit in 1987 proving to be one of the worst aviation disasters in American history. + History + Documentary + + + TVG + + + + Mayday: Air Disaster + Blind Landing + Experts face a tricky investigation into the crash of TANS Peru Flight 204 after key evidence is looted from the crash site. + History + Documentary + + + TVG + + + + Mayday: Air Disaster + Munich Air Disaster + A plane with members of the Manchester United football team crashes while heading home from Yugoslavia, killing 23 aboard. + History + Documentary + + + TVG + + + + Mayday: Air Disaster + Helicopter Down + In 1995, a chopper carrying 18 people to a North Sea oil platform crashes; miraculously, everyone onboard survived in a life raft. + + Scott Wickware + Robert Moloney + Andrew Sabiston + + History + Documentary + + + TVG + + + + Storm Stories: The Next Chapter + The Great Nebraska Floods of 2019 + Extreme flooding in Nebraska destroys a 100-year-old dam; firefighters are thrown into the raging currents of the Elkhorn River; when a cruise ship slams into a winter storm, a wave crashes into the ship, sweeping a woman away from her husband. + Documentary + Environmental + + + TVG + + + + Storm Stories: The Next Chapter + Deadliest Mudslide + A mudslide in Washington state rips through a hillside community, killing 43 people; the strongest November tornado ever recorded in Illinois hits a small town, as a man races home to see if his children are alive amid the debris. + Documentary + Environmental + + + TVG + + + + Could You Survive? With Creek Stewart + Trapped in Quicksand + A young woman races for rescue as her boyfriend is trapped and slowly dying in a freezing Utah river; a hiker faces a fork in an Oregon trail, and the choice he makes leads to a five-day struggle for survival. + Reality TV + Environmental + + + + Could You Survive? With Creek Stewart + Forest Crash + A freak car accident leaves a man unable to move and fighting for his life, just a few hundred feet from a busy Houston highway; a skilled Florida hunter is out of his element, lost and alone in Alaska's punishing environment. + Reality TV + Environmental + + + + Heavy Rescue: 401 + We're Jumping In + After three decades on the highway, a major change forces Eric Godard to adapt to a new crew on a tough rollover; a vicious pre-winter storm pushes Sonny into urgent on-the-job training; a jet fuel spill shuts down the entire 401. + Reality TV + + + TVMA + + + + Heavy Rescue: 401 + Take A Deep Breath + When a tanker bursts open east of Toronto, a young operator faces a toxic mess; Gary reacts fast when he spots a dangerous mistake on the road; a rookie takes the controls for his first heavy job. + Reality TV + + + TVMA + + + + America's Morning Headquarters + Starting the day by opening a window into weather, looking out at the stories and science behind the forecast. + Local + + + + America's Morning Headquarters + Starting the day by opening a window into weather, looking out at the stories and science behind the forecast. + Local + + + + America's Morning Headquarters + Starting the day by opening a window into weather, looking out at the stories and science behind the forecast. + Local + + + + America's Morning Headquarters + Starting the day by opening a window into weather, looking out at the stories and science behind the forecast. + Local + + + + America's Morning Headquarters + Starting the day by opening a window into weather, looking out at the stories and science behind the forecast. + Local + + + + America's Morning Headquarters + Starting the day by opening a window into weather, looking out at the stories and science behind the forecast. + Local + + + + Pattrn + Elevating the conversation about climate, extreme weather, sustainability and green living. + Environmental + + + + Weather Underground + A breakdown of the science behind today's weather, with fan interaction and frequent visits from guest meteorologists. + Environmental + + + TVG + + + + Weather Underground + A breakdown of the science behind today's weather, with fan interaction and frequent visits from guest meteorologists. + Environmental + + + TVG + + + + Weather Underground + A breakdown of the science behind today's weather, with fan interaction and frequent visits from guest meteorologists. + Environmental + + + TVG + + + + Weather Underground + A breakdown of the science behind today's weather, with fan interaction and frequent visits from guest meteorologists. + Environmental + + + TVG + + + + Storm Center + An inside look at the most powerful storms on Earth and the breaking weather news of the day using augmented reality. + Environmental + + + + Storm Center + An inside look at the most powerful storms on Earth and the breaking weather news of the day using augmented reality. + Environmental + + + + Storm Center + An inside look at the most powerful storms on Earth and the breaking weather news of the day using augmented reality. + Environmental + + + + Prime Suspect: Earth + Balloon Bombs & Pandemic Puzzle + A deadly balloon bomb threatens the Manhattan Project during World War II; India is rocked by unexpected Himalayan floods outside monsoon season; a pandemic shuts down the world. + Documentary + + + + Prime Suspect: Earth + Vanishing Planes and Weird Booms + Documentary + + + + Prime Suspect: Earth + Sand Dune Trap and Deadly Smog + Documentary + + + + Weather Gone Viral + I Survived + Falling deep into a crevasse, swept away from a flash flood, and violently pick-up by a tornado; find out how these people escaped nature's clutches. + Environmental + Documentary + + + TVG + + + + So You Think You'd Survive? + Wildfires and Flash Floods + Testing your instincts against blinding snow, suffocating sand and scorching flames; surviving a raging inferno barreling toward your home; escaping your car if caught in a flash flood and sinking fast. + Reality TV + Environmental + + + TVPG + + + + So You Think You'd Survive? + Avalanches and Volcanoes + Real-life video tests knowledge of exploding glaciers, venomous snakes and ground-crumbling earthquakes. + Reality TV + Environmental + + + TVPG + + + + Strangest Weather on Earth + Technicolor Weather + From Sapphire caves to bizarre blue lava and rainbow clouds; invisible forces of nature behind the strangest, most bright and beautiful events on our planet. + Documentary + Environmental + + + TVG + + + + Strangest Weather on Earth + Worldwide Weather Wipeouts + Lakes are boiled and frogs frozen alive; plagues of locusts rain down and snow buries a city; two global weather wipe-outs. + Documentary + Environmental + + + TVG + + + + Heavy Rescue: 401 + There's Always Fear + Steve's crew battles a fiery wreck in the heart of Toronto; the OPP takes to the air to keep the roads safe; when freezing rain ices up the highway around London, a newly-promoted rotator operator gets his first big test. + Reality TV + + + TVMA + + + + Heavy Rescue: 401 + Not The Best Spot To Be + A pileup on the 401 brings traffic to a standstill and pushes the Ross crew into action; Sonny helps a driver stuck on a dangerous stretch of highway in Toronto; Herb's rookie Zach masters a difficult move for the first time. + Reality TV + + + TVMA + + + + America's Morning Headquarters + Starting the day by opening a window into weather, looking out at the stories and science behind the forecast. + Local + + + + America's Morning Headquarters + Starting the day by opening a window into weather, looking out at the stories and science behind the forecast. + Local + + + + America's Morning Headquarters + Starting the day by opening a window into weather, looking out at the stories and science behind the forecast. + Local + + + + America's Morning Headquarters + Starting the day by opening a window into weather, looking out at the stories and science behind the forecast. + Local + + + + America's Morning Headquarters + Starting the day by opening a window into weather, looking out at the stories and science behind the forecast. + Local + + + + America's Morning Headquarters + Starting the day by opening a window into weather, looking out at the stories and science behind the forecast. + Local + + + + Pattrn + Elevating the conversation about climate, extreme weather, sustainability and green living. + Environmental + + + + Weather Underground + A breakdown of the science behind today's weather, with fan interaction and frequent visits from guest meteorologists. + Environmental + + + TVG + + + + Weather Underground + A breakdown of the science behind today's weather, with fan interaction and frequent visits from guest meteorologists. + Environmental + + + TVG + + + + Weather Underground + A breakdown of the science behind today's weather, with fan interaction and frequent visits from guest meteorologists. + Environmental + + + TVG + + + + Weather Underground + A breakdown of the science behind today's weather, with fan interaction and frequent visits from guest meteorologists. + Environmental + + + TVG + + + + Storm Center + An inside look at the most powerful storms on Earth and the breaking weather news of the day using augmented reality. + Environmental + + + + Storm Center + An inside look at the most powerful storms on Earth and the breaking weather news of the day using augmented reality. + Environmental + + + + Storm Center + An inside look at the most powerful storms on Earth and the breaking weather news of the day using augmented reality. + Environmental + + + + Deep Water Salvage + Sinkers and Swimmers + Bundles of cedar wood tree trunks are smashed apart, releasing thousands of logs on the shoreline; Jeremy and his crew must work fast to recover the cargo. + Reality TV + Environmental + + + + Weather Gone Viral + So, So Hot + The blazing heat in British Columbia transforms a quaint town into a hot destination; an earthquake rocks Alaska, twisting roads and damaging buildings; in California, a beach is split in two as a massive portion of the coastal cliffs crumbles. + Environmental + Documentary + + + TVG + + + + Weather Gone Viral + Defying Nature + Weather has a potent arsenal when it comes to tormenting humankind; how to defy the most powerful forces of nature. + Environmental + Documentary + + + TVG + + + + Weather Gone Viral + Without Warning + Ice forces an airplane down and passengers must prepare for a crash landing; a dust devil strikes during a controlled burn, sending flames whipping into the air; a powerful wave drags tourists down a 12-story drop. + Environmental + Documentary + + + TVG + + + + Weather Gone Viral + So, So Hot + The blazing heat in British Columbia transforms a quaint town into a hot destination; an earthquake rocks Alaska, twisting roads and damaging buildings; in California, a beach is split in two as a massive portion of the coastal cliffs crumbles. + Environmental + Documentary + + + TVG + + + + Highway Thru Hell + New Hell, Old Hell + Jamie Davis Heavy Rescue splits in two with Adam taking half the fleet to Alberta's rich oil fields and Jamie staying back to keep the Coq open. + Reality TV + + + TVPG + + + + Highway Thru Hell + New Hope + Jamie hires a new driver who crashes Bruce's legendary blue truck; rookie operator Colin learns how tough his new boss Adam can be. + Reality TV + + + TV14 + + + + Highway Thru Hell + Be Afraid + A close call on the highway shows Brandon that fear is his best friend when it comes to staying alive. + Reality TV + + + TVPG + + + + Heavy Rescue: 401 + Free The Highway + A 70-vehicle whiteout crash shuts down Highway 400 and the OPP jumps to organize an army of recovery crews; the Sarnia team struggles to recover a severely damaged trailer without losing the load. + Reality TV + + + TVMA + + + + Heavy Rescue: 401 + Pull 'n Pray + Eric is still working to find his place on the new County/Coxon team when a T-bone semi collision spurs them into action; with his first baby on the way, a blizzard in the east sends Andrew on an urgent rescue mission. + Reality TV + + + TVMA + + + + America's Morning Headquarters + Starting the day by opening a window into weather, looking out at the stories and science behind the forecast. + Local + + + + America's Morning Headquarters + Starting the day by opening a window into weather, looking out at the stories and science behind the forecast. + Local + + + + America's Morning Headquarters + Starting the day by opening a window into weather, looking out at the stories and science behind the forecast. + Local + + + + America's Morning Headquarters + Starting the day by opening a window into weather, looking out at the stories and science behind the forecast. + Local + + + + America's Morning Headquarters + Starting the day by opening a window into weather, looking out at the stories and science behind the forecast. + Local + + + + America's Morning Headquarters + Starting the day by opening a window into weather, looking out at the stories and science behind the forecast. + Local + + + + Pattrn + Elevating the conversation about climate, extreme weather, sustainability and green living. + Environmental + + + + Weather Underground + A breakdown of the science behind today's weather, with fan interaction and frequent visits from guest meteorologists. + Environmental + + + TVG + + + + Weather Underground + A breakdown of the science behind today's weather, with fan interaction and frequent visits from guest meteorologists. + Environmental + + + TVG + + + + Weather Underground + A breakdown of the science behind today's weather, with fan interaction and frequent visits from guest meteorologists. + Environmental + + + TVG + + + + Weather Underground + A breakdown of the science behind today's weather, with fan interaction and frequent visits from guest meteorologists. + Environmental + + + TVG + + + + Storm Center + An inside look at the most powerful storms on Earth and the breaking weather news of the day using augmented reality. + Environmental + + + + Storm Center + An inside look at the most powerful storms on Earth and the breaking weather news of the day using augmented reality. + Environmental + + + + Rush Hour + A Hong Kong detective (Jackie Chan) and a wisecracking L.A.P.D. detective (Chris Tucker) choose to work together to find the missing daughter of a Chinese diplomat. + + Jackie Chan + Chris Tucker + Tom Wilkinson + + 1998 + Movies + Action + + + TVPG + + + 3 + + + + Rush Hour 2 + Two detectives (Jackie Chan, Chris Tucker) battle a Hong Kong gangster (John Lone) and his henchmen after a bombing at the U.S. Embassy. + + Jackie Chan + Chris Tucker + John Lone + + 2001 + Movies + Action + + + TVG + + + 2 + + + + Rush Hour 3 + The assassination of a Chinese ambassador reunites Lee (Jackie Chan) and Carter (Chris Tucker), who tangle with Triad gangsters in France. + + Jackie Chan + Chris Tucker + Hiroyuki Sanada + + 2007 + Movies + Action + + + TVG + + + 1 + + + + Rush Hour 3 + The assassination of a Chinese ambassador reunites Lee (Jackie Chan) and Carter (Chris Tucker), who tangle with Triad gangsters in France. + + Jackie Chan + Chris Tucker + Hiroyuki Sanada + + 2007 + Movies + Action + + + TVG + + + 1 + + + + Boyz N the Hood + Three boys become men, one (Cuba Gooding Jr.) guided by his father (Larry Fishburne), in their racially divided Los Angeles neighborhood. + + Laurence Fishburne + Ice Cube + Cuba Gooding Jr. + + 1991 + Movies + Drama + + + TVPG + + + 3 + + + + The Fresh Prince of Bel-Air + As the Will Turns + The lead actress (guest star Leann Hunley) in a soap opera demands that Will (Will Smith) be hired for the leading male role. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVPG + + + + The Fresh Prince of Bel-Air + Save the Last Trance for Me + Nicky's chance of acceptance into a private school is jeopardized when Will escorts him to the interview. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVPG + + + + The Fresh Prince of Bel-Air + To Thine Own Self Be Blue ... And Gold + Will (Will Smith) is placed in an ethical dilemma by Uncle Phil's friend (guest star Charlie Robinson). With James Avery. + + Will Smith + James Avery + Karyn Parsons + + Sitcom + + + TVPG + + + + The Fresh Prince of Bel-Air + Cold Feet, Hot Body + A new student (guest star Robin Givens) turns up the heat when she decides to put the moves on Will (Will Smith). + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVG + + + + The Fresh Prince of Bel-Air + Love in an Elevator + Will reminisces about the women in his life when he is stranded in an elevator with Carlton and Jazz. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVPG + + + + The Fresh Prince of Bel-Air + For Whom the Wedding Bells Toll + Will's mother and Lisa's father (guest stars Vernee Watson-Johnson, John Amos) battle it out before the wedding. + + Will Smith + James Avery + Karyn Parsons + + Sitcom + + + TVPG + + + + The Fresh Prince of Bel-Air + Burnin' Down the House + Will causes a kitchen fire -- just as an important dinner guest arrives. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVPG + + + + The Fresh Prince of Bel-Air + Get a Job + By booking a famous director (Chris Rock), Will becomes Hilary's talent coordinator. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVG + + + + The Fresh Prince of Bel-Air + Stress Related + Will (Will Smith) tries to cure Hilary (Karyn Parsons) of a cold when they have a meeting with a potential sponsor. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVG + + + + The Fresh Prince of Bel-Air + Bourgie Sings the Blues + When Carlton (Alfonso Ribeiro) loses an important job opportunity, he boozes it up with a blues singer (guest star B.B. King) in a bar. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVPG + + + + Cheaters + Heather Lynski + Heather's boyfriend sneaks around at odd hours of the day. + Reality TV + + + TV14 + + + + Cheaters + Sandra Ruiz + Sandra's husband lies about working extra hours. + Reality TV + + + TV14 + + + + Cheaters + Alicia Smith + Alicia's boyfriend tends to mix business with pleasure. + Reality TV + + + TV14 + + + + Cheaters + Kamisha King + Kamisha's boyfriend cannot shake an old habit of courting attractive women. + Reality TV + + + TV14 + + + + Cheaters + Iris Hernandez + Iris' boyfriend is fascinated by her pretty young cousin. + Reality TV + + + TV14 + + + + Cheaters + Trisha Ludall + Trisha's fiance gets too friendly with someone close to her heart. + Reality TV + + + TV14 + + + + Boyz N the Hood + Three boys become men, one (Cuba Gooding Jr.) guided by his father (Larry Fishburne), in their racially divided Los Angeles neighborhood. + + Laurence Fishburne + Ice Cube + Cuba Gooding Jr. + + 1991 + Movies + Drama + + + TVPG + + + 3 + + + + Ms. Pat Settles It + Catfished and Carjacked + Judge Ms. Pat settles cases, including a loan between friends that turns to carjacking, a trespassing incident in which a romp is caught on ring camera, and a friend who wants her loan paid back. + Sitcom + Reality TV + + + TVMA + + + + Ms. Pat Settles It + Body by Insurance Check + Judge Ms. Pat settles cases that include unapproved dress alterations that removed breast breathing room, twins disputing over a rental property party, and a husband and wife on the brink of divorce after she stole his insurance money. + Sitcom + Reality TV + + + TVMA + + + + Rush Hour + A Hong Kong detective (Jackie Chan) and a wisecracking L.A.P.D. detective (Chris Tucker) choose to work together to find the missing daughter of a Chinese diplomat. + + Jackie Chan + Chris Tucker + Tom Wilkinson + + 1998 + Movies + Action + + + TVPG + + + 3 + + + + Rush Hour 2 + Two detectives (Jackie Chan, Chris Tucker) battle a Hong Kong gangster (John Lone) and his henchmen after a bombing at the U.S. Embassy. + + Jackie Chan + Chris Tucker + John Lone + + 2001 + Movies + Action + + + TVG + + + 2 + + + + Rush Hour 3 + The assassination of a Chinese ambassador reunites Lee (Jackie Chan) and Carter (Chris Tucker), who tangle with Triad gangsters in France. + + Jackie Chan + Chris Tucker + Hiroyuki Sanada + + 2007 + Movies + Action + + + TVG + + + 1 + + + + The Color Purple + A black Southern woman (Whoopi Goldberg) struggles to find her identity after suffering years of abuse from her father and others over 40 years. + + Whoopi Goldberg + Danny Glover + Margaret Avery + + 1985 + Movies + Drama + + + TVPG + + + 3 + + + + The Color Purple + A black Southern woman (Whoopi Goldberg) struggles to find her identity after suffering years of abuse from her father and others over 40 years. + + Whoopi Goldberg + Danny Glover + Margaret Avery + + 1985 + Movies + Drama + + + TVPG + + + 3 + + + + The Color Purple + A black Southern woman (Whoopi Goldberg) struggles to find her identity after suffering years of abuse from her father and others over 40 years. + + Whoopi Goldberg + Danny Glover + Margaret Avery + + 1985 + Movies + Drama + + + TVPG + + + 3 + + + + The Fresh Prince of Bel-Air + The Script Formerly Known As .. + Will (Will Smith) books a dismissed juror (guest star George Wallace) from Uncle Phil's (James Avery) court case as a guest on Hilary's (Karyn Parsons) show. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVPG + + + + The Fresh Prince of Bel-Air + Not I Barbeque + Will and Carlton (Will Smith, Alfonso Ribeiro) get caught with their pants down while on a double date. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVPG + + + + The Fresh Prince of Bel-Air + Not With My Cousin You Don't + Will and Carlton try to foil Ashley's plans for a romantic evening with her boyfriend (Jaleel White). + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVPG + + + + The Fresh Prince of Bel-Air + Viva Lost Wages + Uncle Phil (James Avery) takes Will and Carlton (Will Smith, Alfonso Ribeiro) to Las Vegas for Carlton's 21st birthday. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVG + + + + The Fresh Prince of Bel-Air + There's the Rub + Uncle Phil's and Will's geese are cooked when a Thanksgiving Day massage with two prostitutes lands them in the hoosegow. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + Thanksgiving + + + TVPG + + + + The Fresh Prince of Bel-Air + There's the Rub + Uncle Phil's and Will's geese are cooked when a Thanksgiving Day massage with two prostitutes lands them in the hoosegow. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + Thanksgiving + + + TVG + + + + The Fresh Prince of Bel-Air + I, Ooh, Baby, Baby + Will (Will Smith) plays matchmaker for Hilary (Karyn Parsons), setting her up with his friend Dr. Duane (guest star Duane Martin). + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + Thanksgiving + + + TVPG + + + + The Fresh Prince of Bel-Air + Boxing Helena + Will's encounter with a beautiful woman at the gym leaves his ego bruised; Ashley's job is too demanding. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVG + + + + Martin + Crunchy Drawers + Martin (Martin Lawrence) questions his true feelings after dreaming that he is attracted to his longtime enemy, Pam (Tichina Arnold). With Tisha Campbell. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Martin + No Love Lost + Rap artist Snoop Doggy Dogg and football player Randall Cunningham show up at Pam's engagement party for Martin and Gina. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Martin + Hoedown in Motown + When Stan (Garrett Morris) gets in trouble with the IRS, he sells WZUP to a country-western station and skips town. With Martin Lawrence. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Martin + Martin's on the Move + After he loses his job at WZUP and Gina (Tisha Campbell) must support him, a discouraged Martin (Martin Lawrence) disappears. With Tichina Arnold. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Martin + In Search of Martin + Gina (Tisha Campbell) locates Martin's (Martin Lawrence) whereabouts through a check he recently cashed. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Martin + Martin Returns + A huge argument ensues when Martin decides he doesn't like the redecorating Gina did in the apartment. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Martin + I've Got Work to Do + Martin (Martin Lawrence) decides to look for a better job but instead finds an endless trail to nowhere. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Martin + Martin Gets Paid + Martin gets his friends to help him put together an audition tape for a job interview at a television station. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Martin + Break Up to Make Up + Martin formulates a plan to win Gina back after he goes to Nipsy's bar and gets a taste of what the single life has to offer. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Martin + The Closer I Get to You + Things don't go quite as planned when Martin (Martin Lawrence) gives Tommy (Thomas Mikal Ford) advice on how to get a woman. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + First Sunday + Bumbling thieves (Ice Cube, Tracy Morgan) decide to rob a church to raise some much-needed cash, but they discover that someone else has already beaten them to the punch. + + Ice Cube + Katt Williams + Tracy Morgan + + 2008 + Movies + Comedy + + + TVG + + + 2 + + + + Baby Boy + A misguided 20-year-old (Tyrese Gibson) juggles various women while dealing with two children and his mother's new boyfriend. + + Tyrese Gibson + Omar Gooding + A.J. Johnson + + 2001 + Movies + Drama + + + TVPG + + + 3 + + + + First Sunday + Bumbling thieves (Ice Cube, Tracy Morgan) decide to rob a church to raise some much-needed cash, but they discover that someone else has already beaten them to the punch. + + Ice Cube + Katt Williams + Tracy Morgan + + 2008 + Movies + Comedy + + + TVG + + + 2 + + + + Tyler Perry's Diary of a Mad Black Woman + A woman (Kimberly Elise) must put her life back together after her husband (Steve Harris) of 18 years abruptly kicks her out of the house. + + Kimberly Elise + Steve Harris + Shemar Moore + + 2005 + Movies + Comedy + Drama + + + TVG + + + 2 + + + + My True Scam Story + This Man Has Got To Be Stopped, He Has To Be Stopped + When Basketball Wife Jennifer Williams discovers her ex-boyfriend is a con artist with a 20 year career as a love scammer, she makes it her mission to get justice… and it might not be through the court! + Documentary + + + TV14 + + + + Basketball Wives + Cooking With Fire + Jac'eil forms a bond with Brittany's rival, Brooke. Evelyn struggles to balance loyalty to her daughter with her friendship with Jennifer, Vanessa again puts her nose where it doesn't belong, and Jackie hatches a plan. + Sports + Basketball + + + TV14 + + + + Basketball Wives: Orlando + You Been Around My Kids? + After much anticipation from both sides, Mackenzie, and Danielle meet. Mehgan decides to try and make amends with her mother, but instead of amends, Miss Nikki reads her for filth. Mulan invites her troubled sisters to Orlando. + Reality TV + Sports + + + TV14 + + + + My True Scam Story + This Man Has Got To Be Stopped, He Has To Be Stopped + When Basketball Wife Jennifer Williams discovers her ex-boyfriend is a con artist with a 20 year career as a love scammer, she makes it her mission to get justice… and it might not be through the court! + Documentary + + + TV14 + + + + Basketball Wives + Cooking With Fire + Jac'eil forms a bond with Brittany's rival, Brooke. Evelyn struggles to balance loyalty to her daughter with her friendship with Jennifer, Vanessa again puts her nose where it doesn't belong, and Jackie hatches a plan. + Sports + Basketball + + + TV14 + + + + Basketball Wives: Orlando + You Been Around My Kids? + After much anticipation from both sides, Mackenzie, and Danielle meet. Mehgan decides to try and make amends with her mother, but instead of amends, Miss Nikki reads her for filth. Mulan invites her troubled sisters to Orlando. + Reality TV + Sports + + + TV14 + + + + Tyler Perry's Diary of a Mad Black Woman + A woman (Kimberly Elise) must put her life back together after her husband (Steve Harris) of 18 years abruptly kicks her out of the house. + + Kimberly Elise + Steve Harris + Shemar Moore + + 2005 + Movies + Comedy + Drama + + + TVG + + + 2 + + + + The Fresh Prince of Bel-Air + I, Clownius + Will and Carlton (Will Smith, Alfonso Ribeiro) act as bodyguards for Uncle Phil (James Avery), who has been receiving threatening phone calls. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVPG + + + + The Fresh Prince of Bel-Air + Breaking Up Is Hard to Do + With their lack of business acumen, Will and Carlton jeopardize Ashley's big break with a modeling agency. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVPG + + + + The Fresh Prince of Bel-Air + Breaking Up Is Hard to Do + Will (Will Smith) has a plan to save his Aunt Vivian and Uncle Phil's (Daphne Maxwell Reid, James Avery) marriage. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVPG + + + + Martin + Movin' On In + A garage sale becomes necessary after Gina (Tisha Campbell) and her clutter move back in with Martin (Martin Lawrence). + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Martin + Momma's Baby, Martin's Maybe + Martin (Martin Lawrence) befriends his old prom date's son and is led to believe the boy may be his own. With Tisha Campbell and Tichina Arnold. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Martin + Whole Lotto Trouble + Martin (Martin Lawrence) goes on a spending spree when he discovers he has a winning lottery ticket. With Tisha Campbell and Tichina Arnold. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Martin + Get a Job + Martin (Martin Lawrence) recruits Gina (Tisha Campbell) to help spy on Tommy (Thomas Mikal Ford) to find out what he does for a living. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Martin + Feast or Famine + The men decide they are better cooks than Gina and Pam (Tisha Campbell, Tichina Arnold), creating a Thanksgiving battle of the sexes. With Martin Lawrence and Thomas Mikal Ford. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + Christmas + + + TVPG + + + + Martin + Lockin' Boots + Gina secretly withdraws $600 from the joint account she shares with Martin to pay off unpaid parking fines. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Set It Off + Desperation drives four inner-city women to bank robbery in Los Angeles, then they start mistrusting one another. + + Jada Pinkett Smith + Queen Latifah + Vivica A. Fox + + 1996 + Movies + Action + + + TVPG + + + 3 + + + + National Security + Two Los Angeles security guards (Martin Lawrence, Steve Zahn) try to stop a criminal mastermind and his gang of robbers. + + Martin Lawrence + Steve Zahn + Colm Feore + + 2003 + Movies + Comedy + + + TVG + + + 2 + + + + Blue Streak + A jewel thief (Martin Lawrence) returns to a construction site to retrieve his cache and finds a police station on the spot. + + Martin Lawrence + Luke Wilson + Peter Greene + + 1999 + Movies + Comedy + + + TVG + + + 1 + + + + Straight Outta Compton + In 1988, N.W.A (O'Shea Jackson Jr., Corey Hawkins, Jason Mitchell) revolutionizes music and pop culture with their brutally honest depiction of life in Southern Los Angeles. + + O'Shea Jackson Jr. + Corey Hawkins + Jason Mitchell + + 2015 + Movies + Drama + + + TVPG + + + 3 + + + + VH1 Special + Music + Variety + + + TVPG + + + + Celebrity Squares + Can't Have No Cold Hot Sauce + The Nurse With Game takes on the Hype Teacher; the stars are led by center square Bobby Brown; the squares debate where to store hot sauce, DC undoes a mispronunciation, and everyone learns a bit too much about Pret. + Game Shows + + + TVPG + + + + Celebrity Squares + He Need a Girl Who Don't Take Baths + The Sneaker Fiend takes on the Gamma Blue Fanatic; Bresha Webb runs the show as center square; Affion Crockett channels Jay-Z, B. Simone talks hygiene, and Kirk Franklin takes everyone to church. + Game Shows + + + + Nick Cannon Presents: Wild 'n Out + Jason Lee + Nick Cannon and Jason Lee battle it out in games; DC Young Fly performs. + Comedy + + + TV14 + + + + Nick Cannon Presents: Wild 'n Out + Jay Pharoah, Next + Nick Cannon, Jay Pharoah and Next battle it out in games: What You Call That, Outgoing Message, Kick 'Em Out the Classroom, and the Wildstyle battle; Next performs. + Comedy + + + TV14 + + + + Straight Outta Compton + In 1988, N.W.A (O'Shea Jackson Jr., Corey Hawkins, Jason Mitchell) revolutionizes music and pop culture with their brutally honest depiction of life in Southern Los Angeles. + + O'Shea Jackson Jr. + Corey Hawkins + Jason Mitchell + + 2015 + Movies + Drama + + + TVPG + + + 3 + + + + National Security + Two Los Angeles security guards (Martin Lawrence, Steve Zahn) try to stop a criminal mastermind and his gang of robbers. + + Martin Lawrence + Steve Zahn + Colm Feore + + 2003 + Movies + Comedy + + + TVG + + + 2 + + + + VH1 Special + Music + Variety + + + TVPG + + + + The Fresh Prince of Bel-Air + I, Bowl Buster + Accepted to Princeton, Carlton jeopardizes his Ivy League career by taking an interest in professional bowling. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVG + + + + The Fresh Prince of Bel-Air + The Butler's Son Did It + Geoffrey's (Joseph Marcell) long-lost son (Craig Kirkwood) visits from London; Hilary (Karyn Parsons) begins writing her autobiography. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVG + + + + The Fresh Prince of Bel-Air + Hare Today .. + Will (Will Smith) is abashed when his Aunt Vivian (Daphne Maxwell Reid) unwittingly arouses the passions of a man of the cloth (guest star Richard Roundtree). + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVG + + + + The Fresh Prince of Bel-Air + I, Whoops, There It Is + Will Smith (as himself) steps out of character to view bloopers from the show's last six years. With James Avery and Dick Clark. + + Will Smith + James Avery + Daphne Maxwell Reid + + Sitcom + + + TVG + + + + Martin + Go Tell It on the Martin + Martin celebrates Christmas, Hanukkah and Kwanzaa on his cable show; Santa threatens to blow up the station. + + Martin Lawrence + Tisha Campbell-Martin + Tichina Arnold + + Sitcom + Christmas + + + TVPG + + + + Martin + 'Xpress Yourself + Martin's boss hires Gina (Tisha Campbell) as a consultant for Martin's (Martin Lawrence) cable program,. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Martin + Sophisticated Ladies + Gina and Pam (Tisha Campbell, Tichina Arnold) attempt to elevate their careers by joining the Ladies League of Detroit. Guest stars Roxanne Reese, Simbi Khali, Ann Weldon and Ethel Ayler. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Martin + Nuttin' Goin' On But the Rent + Martin (Martin Lawrence) and his friends are snowed in at Martin's apartment with no gas, water or electricity. With Tisha Campbell, Tichina Arnold, Thomas Mikal Ford and Carl Anthony Payne II. + + Martin Lawrence + Tisha Campbell-Martin + Carl Anthony Payne II + + Sitcom + + + TVPG + + + + Blue Streak + A jewel thief (Martin Lawrence) returns to a construction site to retrieve his cache and finds a police station on the spot. + + Martin Lawrence + Luke Wilson + Peter Greene + + 1999 + Movies + Comedy + + + TVG + + + 1 + + + + The Brothers + Four friends (Morris Chestnut, D.L. Hughley, Bill Bellamy) question women, relationships and honesty after one of them becomes engaged. + + Morris Chestnut + D.L. Hughley + Bill Bellamy + + 2001 + Movies + Romance + + + TVPG + + + 3 + + + + The Wood + Young men (Omar Epps, Taye Diggs, Richard T. Jones), one of whom is about to be married, reminisce about their childhood during the 1980s in Inglewood, Calif. + + Omar Epps + Taye Diggs + Richard T. Jones + + 1999 + Movies + Drama + + + TVPG + + + 2 + + + + The Best Man + A writer (Taye Diggs) heads to New York to be best man at a friend's (Morris Chestnut) wedding, where he meets up with an old flame (Nia Long). + + Taye Diggs + Nia Long + Morris Chestnut + + 1999 + Movies + Comedy + Drama + + + TVPG + + + 3 + + + + Talladega Nights + NASCAR driver Ricky Bobby (Will Ferrell) faces his greatest challenge ever when French Formula One driver Jean Girard (Sacha Baron Cohen) roars onto the scene. + + Will Ferrell + John C. Reilly + Sacha Baron Cohen + + 2006 + Movies + Comedy + + + TVG + + + 2 + + + + No Gamble, No Future + Eric Persson, Jean-Robert Bellande, Patrick Antonius, Sean Perry, Lynne Ji, Maria Ho, Eli Elezra, Jimmy D'Ambrosio, Dylan DeStefano, Nick Schulman, Krish Menon, David Williams, Alan Keating and Boston Rob Mariano play a variety of stakes. + Sports + Cards + + + TV14 + + + + Icons Unearthed: James Bond + Over a Cliff + With an aging actor in the lead and a new director in charge, the. + Documentary + + + TV14 + + + + To Be Announced + Programming to be announced. + Performing Arts + Music + + + TVPG + + + + Icons Unearthed: James Bond + A Dinosaur Reborn + James Bond began with real-life spy and anxious bridegroom Ian Fleming, but it would take a bumpy road to bring this spy story to the screen. + Documentary + + + + No Gamble, No Future + Eric Persson, Jean-Robert Bellande, Patrick Antonius, Sean Perry, Lynne Ji, Maria Ho, Eli Elezra, Jimmy D'Ambrosio, Dylan DeStefano, Nick Schulman, Krish Menon, David Williams, Alan Keating and Boston Rob Mariano play a variety of stakes. + Sports + Cards + + + TV14 + + + + Icons Unearthed: James Bond + Over a Cliff + With an aging actor in the lead and a new director in charge, the. + Documentary + + + TV14 + + + + Icons Unearthed: James Bond + A Dinosaur Reborn + James Bond began with real-life spy and anxious bridegroom Ian Fleming, but it would take a bumpy road to bring this spy story to the screen. + Documentary + + + + Rare Gold Coins + Add the 2022 Super Incuse Gold Half Eagle masterpiece, showcasing Saint Gaudens famous Double Eagle design in perfect SP70 condition like never before. Struck from 1/2 ounce of .999 gold with a mintage of only 499, this coin is an absolute rarity! + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Most Expensivest + Roll Up + From lowriders to skateboards, 2 Chainz is on the road to find the most expensive collections on wheels in SoCal; with special guests Too Short and Deon Cole. + Reality TV + Documentary + + + TV14 + + + + Most Expensivest + High Notes + 2 Chainz seeks out the most expensive musical collections, meeting legends and the instruments that defined their careers; with special guests Joe Banamassa, Hit-Boy and Angelo Moore.Guests: Hit-Boy, Angelo Moore.. + Reality TV + Documentary + + + TV14 + + + + Most Expensivest + G.O.A.T.s + 2 Chainz searches for the greatest collections of all time. + Reality TV + Documentary + + + TV14 + + + + Most Expensivest + Geeked Out + Sometimes big brains equal big bucks; 2 Chainz and his kids set out to experience the most expensive collections acquired by brainy collectors with smart money. + Reality TV + Documentary + + + TV14 + + + + Icons Unearthed: James Bond + Changing Times + Though diamonds may be forever, Connery was not; embracing the cultural changes of the '70s takes Bond to new heights, but for one producer it would be the end of an era. + Documentary + + + + Icons Unearthed: James Bond + Over a Cliff + With an aging actor in the lead and a new director in charge, the. + Documentary + + + TV14 + + + + Icons Unearthed: James Bond + A Dinosaur Reborn + James Bond began with real-life spy and anxious bridegroom Ian Fleming, but it would take a bumpy road to bring this spy story to the screen. + Documentary + + + + Dark Side of the 90s + Morning Show Wars + Morning TV is the profit center of the news divisions that produce them;. + Documentary + + + TV14 + + + + Dark Side of the 90s + Y2K: Paranoia Will Destroy Ya + At the end of the decade, the fear of an apocalypse looms; two men become the stars of the real-life action thriller known as the Y2K scare. + Documentary + + + TV14 + + + + Dark Side of the 90s + Tabloid TV + With sex, attempted murder and betrayal, nothing personifies the tabloidification of 1990s America better than the story of how Amy Fisher shot Mary Jo Buttafuoco in the head. + Documentary + + + TV14 + + + + Dark Side of the 90s + MTV & The Real World + MTV's. + Documentary + + + TV14 + + + + 50 First Dates + A veterinarian (Adam Sandler) tries to make a woman (Drew Barrymore) who has short-term memory loss fall in love with him. + + Adam Sandler + Drew Barrymore + Rob Schneider + + 2004 + Movies + Romance + + + TVG + + + 2 + + + + 50 First Dates + A veterinarian (Adam Sandler) tries to make a woman (Drew Barrymore) who has short-term memory loss fall in love with him. + + Adam Sandler + Drew Barrymore + Rob Schneider + + 2004 + Movies + Romance + + + TVG + + + 2 + + + + Dark Side of Comedy + Featuring different comics and their personal journeys while exploring the internal battles, unexpected fame and societal pressures in the comedy world. + + Melissa Melottey + + Documentary + + + + Dark Side of Comedy + Sam Kinison + Sam Kinison revolutionized comedy with a vulgar, sexist act, but his appetite for cocaine and chaos would lead to a dramatic downfall at the height of his massive success. + + Melissa Melottey + + Documentary + + + TV14 + + + + Dark Side of Comedy + Robin Williams + Robin Williams' suicide shocked the world; while he was a successful comedian, he struggled privately with crushing health and psychological issues. + + Melissa Melottey + + Documentary + + + + Dark Side of Comedy + Joan Rivers + Joan Rivers' insults made her a comedy icon, but the pressures of a male-dominated industry led to eating disorders, self-loathing, and a deadly addiction to plastic surgery. + + Melissa Melottey + + Documentary + + + + Dark Side of Comedy + Sam Kinison + Sam Kinison revolutionized comedy with a vulgar, sexist act, but his appetite for cocaine and chaos would lead to a dramatic downfall at the height of his massive success. + + Melissa Melottey + + Documentary + + + TV14 + + + + Dark Side of Comedy + Robin Williams + Robin Williams' suicide shocked the world; while he was a successful comedian, he struggled privately with crushing health and psychological issues. + + Melissa Melottey + + Documentary + + + + Dark Side of Comedy + Joan Rivers + Joan Rivers' insults made her a comedy icon, but the pressures of a male-dominated industry led to eating disorders, self-loathing, and a deadly addiction to plastic surgery. + + Melissa Melottey + + Documentary + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Alaska: The Last Frontier + Dead of Winter + The Kilcher family struggles with a harsher than average winter; desperate for food, Atz Lee and Jane venture onto the ice to fish; Otto and Atz embark on a dangerous mission. + Reality TV + Documentary + + + TV14 + + + + Alaska: The Last Frontier + Spring Has Sprung + Spring finally arrives; Elvin and his wife deal with a rogue cannibal hen; Jane fishes for king salmon while her husband hunts for black bear. + Reality TV + Documentary + + + TV14 + + + + Alaska: The Last Frontier + Cattle Drive + Otto and his family wage war with the elements and predators to drive their cattle to the summer pasture; Antz Lee and Jane build a makeshift greenhouse. + Reality TV + Documentary + + + TV14 + + + + Alaska: The Last Frontier + Range Riding + Atz protects Otto's cattle herd; a bear and wolf invade the herd; winter's hay crop; the cannibal hen strikes. + Reality TV + Documentary + + + TV14 + + + + QAnon: The Search for Q + Killing Q + QAnon posted a month before Jan. 6; fueled by conspiracies about a stolen election and COVID-19, the movement is alive; Bayan Joonam and Marley Clements investigate. + Documentary + + + TVMA + + + + QAnon: The Search for Q + Conspirituality + Bayan Joonam and Marley Clements investigate the movement that is seeing pastors at giant rallies inspire a new generation of Q-inspired spiritual warriors. + Documentary + + + TVMA + + + + QAnon: The Search for Q + Insurgency + Marley Clements and Bayan Joonam investigate the new war waged by Anons in school boards and local elections. + Documentary + + + TVMA + + + + QAnon: The Search for Q + The Reckoning + The powerful forces behind the ongoing QAnon conspiracies threaten to undermine future elections; Bayan and Marley go behind the scenes to investigate; Q posts again. + Documentary + + + TVMA + + + + While the Rest of Us Die + The Enemy Within + From major disasters to civil unrest, when crises arise, the vast machinery of a system designed to protect its citizenry comes up short. + Documentary + + + TV14 + + + + While the Rest of Us Die + National Insecurity + Even after winning the Cold War, the United States is reportedly less safe today due to countless military bases and endless wars. + Documentary + + + TV14 + + + + While the Rest of Us Die + Collapse + We spent decades and trillions of dollars worrying about nuclear annihilation. What if the apocalypse is already here, and we just don't realize it? + Documentary + + + TV14 + + + + Forged in Fire + Viking Sword + In a race against time, four bladesmiths have to salvage material from a car and forge a blade; two will make it to the final round where they will have just five days to create a Viking sword. + History + Game Shows + + + TVPG + + + + Forged in Fire + Khanda + The bladesmiths must create a weapon in their signature style from a large pile of mixed metal that is welded together; two return home to forge the mysterious Khanda. + History + Game Shows + + + TVPG + + + + Forged in Fire + Tabar + Four bladesmiths take an ordinary garden lawnmower and use its metal to create one of their signature blades; two will make it to the final round during which they must forge a Tabar, a battle ax from Southern Asia. + History + Game Shows + + + TVPG + + + + Forged in Fire + Champions Edition + Four champions return for a chance to prove who among them is the best of the best; after two rounds, only two will move on to the final round where they will have to create a weapon that stumped previous contestants -- the Scottish Claymore. + History + Game Shows + + + TVPG + + + + Forged in Fire + Fan Favorites + Fan favorites return for a shot at victory to make their signature style blades with materials from a surprising source; after two rounds, two smiths are left to take on the challenge of re-creating a weapon they've never seen before, the hook sword. + History + Game Shows + + + TVPG + + + + Betraying the Badge + Florida Killer Cops + A Florida sheriff's deputy investigates rumors that his partner is crooked and uncovers unthinkable crimes, including theft and the murder of an innocent businessman. + Legal + Documentary + + + TV14 + + + + Betraying the Badge + Sheriff's Bling Ring + An anonymous tip alleging that LA sheriff's deputies are illegally seizing millions of dollars from drug dealers results in the prosecution of over 35 officers. + Legal + Documentary + + + TV14 + + + + Betraying the Badge + Diamonds and Dirty Cops + The FBI investigates a jewelry-theft ring with ties to the Chicago mob; they soon find that the mastermind behind the operation is a decorated former Chicago police chief. + Legal + Documentary + + + TV14 + + + + Betraying the Badge + Florida Killer Cops + A Florida sheriff's deputy investigates rumors that his partner is crooked and uncovers unthinkable crimes, including theft and the murder of an innocent businessman. + Legal + Documentary + + + TV14 + + + + Betraying the Badge + Sheriff's Bling Ring + An anonymous tip alleging that LA sheriff's deputies are illegally seizing millions of dollars from drug dealers results in the prosecution of over 35 officers. + Legal + Documentary + + + TV14 + + + + Betraying the Badge + Diamonds and Dirty Cops + The FBI investigates a jewelry-theft ring with ties to the Chicago mob; they soon find that the mastermind behind the operation is a decorated former Chicago police chief. + Legal + Documentary + + + TV14 + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + DraftKings Sportsbook Report + DraftKings Sportsbook, a top-rated sportsbook app! + Paid Program + + + + Honoring America's Heroes + Trace Adkins and Wounded Warrior Dan Nevins share the inspiring journeys of four injured veterans and their families. Find out how you can join Wounded Warrior Project in serving those who have sacrificed so much for us. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + American Gladiators + Second Half Quarterfinals Round 3 + Sutton vs. Jordan; Lakatos vs. Silich. + Game Shows + + + TVPG + + + + American Gladiators + Second Half Quarterfinals Round 4 + Anderson vs. Allen; Brown vs. Farwell. + Game Shows + + + TVPG + + + + American Gladiators + Second Half Semifinals Round 1 + Jordan vs. Anderson; Venturi vs. Silich. + Game Shows + + + TVPG + + + + American Gladiators + Second Half Semifinals Round 2 + Podesta vs. Brown; Kidd vs. Seymour. + Game Shows + + + TVPG + + + + I Survived + Donna; Danelle; Robert & Ana + A woman plays dead to escape her abductor; an endurance athlete falls 60 feet in a remote canyon; a couple risk their lives to protect their children. + Documentary + + + TVPG + + + + I Survived + Kelly; Rose; Lt. Prescott & Gwen + A woman survives an attack by her estranged husband; a pregnant woman is caught in a fish processing machine on a boat at sea; ten people are held hostage by a man with a gun and a bomb. + Documentary + + + TVPG + + + + I Survived + Sarah; Sherman & Dee; Ellen + A pregnant woman is attacked by a woman who wants her baby; a couple must cling to the rafters of their home during Hurricane Ike; a woman fends off an attacker. + Documentary + + + TVPG + + + + I Survived + Alfred, Jan & Jerry; Ebony + Three survivors from UA Flight 232 relive the aviation disaster; a young woman is violently assaulted by two men. + Documentary + + + TVPG + + + + I Survived + Timothy; Scott & Sean; Stacey + A man is attacked by a grizzly bear while out walking his dog; a drifter shoots two friends on a fishing trip; an attacker invades a woman's apartment. + Documentary + + + TVPG + + + + I Survived + Jens & Jim; Dawn; Agnes + Two friends must fight for their lives when their plane goes down in the ocean; four men break into a family's home and threaten to shoot a woman in front of her daughters; a woman is abducted by an armed robber. + Documentary + + + TVPG + + + + I Survived + April; Mark; Jesse + A woman is brutally assaulted then set on fire by her attacker; a man is forced to amputate part of his leg after it is caught in a drive shaft; an act of kindness backfires on a motorist. + Documentary + + + TVPG + + + + Dark Side of Comedy + Joan Rivers + Joan Rivers' insults made her a comedy icon, but the pressures of a male-dominated industry led to eating disorders, self-loathing, and a deadly addiction to plastic surgery. + + Melissa Melottey + + Documentary + + + + Dark Side of Comedy + Freddie Prinze-Extended Cut + A working class Puerto Rican kid, Freddie Prinze exploded onto the comedy scene in the 1970s, but his overnight fame would come to an abrupt end just as fast. + + Melissa Melottey + + Documentary + + + + Dark Side of Comedy + Chris Farley-Extended Cut + Struggling with addiction and a dangerously low self-image, Chris Farley's old friends at. + + Melissa Melottey + + Documentary + + + + Dark Side of Comedy + Carlos Mencia + Carlos Mencia was a big comic in America until accusations of joke theft led to a dramatic downfall. + + Melissa Melottey + + Documentary + + + TV14 + + + + Dark Side of Comedy + Robin Williams + Robin Williams' suicide shocked the world; while he was a successful comedian, he struggled privately with crushing health and psychological issues. + + Melissa Melottey + + Documentary + + + + WOW - Women Of Wrestling + The World's Greatest Opportunity + Princess Aussie defends her title against Tormenta; Adriana Gambino takes on Stephy Slays; BK Rhythm and Gigi Gianni vs. Chantilly Chella and Tiki Chamorro; Goldie Collins attempts to break Kandi Krush's winning streak. + Sports + Wrestling + + + TV14 + + + + Dark Side of Comedy + Carlos Mencia + Carlos Mencia was a big comic in America until accusations of joke theft led to a dramatic downfall. + + Melissa Melottey + + Documentary + + + TV14 + + + + Dark Side of Comedy + Joan Rivers + Joan Rivers' insults made her a comedy icon, but the pressures of a male-dominated industry led to eating disorders, self-loathing, and a deadly addiction to plastic surgery. + + Melissa Melottey + + Documentary + + + + WOW - Women Of Wrestling + The World's Greatest Opportunity + Princess Aussie defends her title against Tormenta; Adriana Gambino takes on Stephy Slays; BK Rhythm and Gigi Gianni vs. Chantilly Chella and Tiki Chamorro; Goldie Collins attempts to break Kandi Krush's winning streak. + Sports + Wrestling + + + TV14 + + + + Dark Side of Comedy + Carlos Mencia + Carlos Mencia was a big comic in America until accusations of joke theft led to a dramatic downfall. + + Melissa Melottey + + Documentary + + + TV14 + + + + Dark Side of Comedy + Joan Rivers + Joan Rivers' insults made her a comedy icon, but the pressures of a male-dominated industry led to eating disorders, self-loathing, and a deadly addiction to plastic surgery. + + Melissa Melottey + + Documentary + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Christmas Lighting Made Easy + Decorating your entire home has never been easier with the brand new Star Shower Ultra 9 laser light show! Now with 9 different patterns, your home will dazzle with thousands of bright colorful stars in just minutes! + Paid Program + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + DraftKings Sportsbook Report + DraftKings Sportsbook, a top-rated sportsbook app! + Paid Program + + + + Super Maximum Retro Show + Angela Lansbury's Workout Video + Chris Distefano and the panel riff on celebrity crimes, work out videos, headbanging, flight attendants and a sax wizard. Guests: Jessica Kirson, Nimesh Patel and Gavin Matts. + Documentary + + + + Super Maximum Retro Show + Not Only the President But Also a Client + Chris Distefano and the panel dive into hair replacement options, questionable toys and Slim Goodbody; guests Nimesh Patel, Jim Florentine, Jordan Jensen and Ricky Cobb. + Documentary + + + + Super Maximum Retro Show + The Care Bears Were on Quaaludes + Chris Distefano and the panel dive into Saturday morning cartoons, the food pyramid, and soap operas; with guests Todd Barry, Joe Derosa, and Katherine Blanford. + Documentary + + + TVG + + + + Super Maximum Retro Show + Beefy Gladiator Goodness + Chris Distefano and the panel riff and reflect on strange cereals, awful recipes, cringey personal ads and American Gladiators; with guests Jim Norton, Joe Derosa and Cug. + Documentary + + + + Abandoned + St Louis Schools + Rick speaks with students in Saint Louis where over 20 schools are abandoned with no one to fill them. + Travel + Documentary + + + TV14 + + + + Abandoned + California Water Supply + Rick visits California to find out more about its water problems and what the future holds for the. + Travel + Documentary + + + TV14 + + + + Abandoned + Route 66 + Once touted as the Mother Road, Route 66 is a shadow of its former self; Rick and co-pilot Frank find out what remains along the nostalgic pipeline. + Travel + Documentary + + + TV14 + + + + Alaska: The Last Frontier + Dead of Winter + The Kilcher family struggles with a harsher than average winter; desperate for food, Atz Lee and Jane venture onto the ice to fish; Otto and Atz embark on a dangerous mission. + Reality TV + Documentary + + + TV14 + + + + Alaska: The Last Frontier + Spring Has Sprung + Spring finally arrives; Elvin and his wife deal with a rogue cannibal hen; Jane fishes for king salmon while her husband hunts for black bear. + Reality TV + Documentary + + + TV14 + + + + Alaska: The Last Frontier + Cattle Drive + Otto and his family wage war with the elements and predators to drive their cattle to the summer pasture; Antz Lee and Jane build a makeshift greenhouse. + Reality TV + Documentary + + + TV14 + + + + Alaska: The Last Frontier + Range Riding + Atz protects Otto's cattle herd; a bear and wolf invade the herd; winter's hay crop; the cannibal hen strikes. + Reality TV + Documentary + + + TV14 + + + + Naked and Afraid + King of the Forest + A self-proclaimed. + Reality TV + + + TV14 + + + + Naked and Afraid + From the Ashes + A strong bond develops between a biology student and an expert survival instructor in Croatia before they are confronted with a freak accident. + Reality TV + + + TV14 + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + La cocinación + Chuyin Barajas + Programa donde artistas musicales preparan platos inspirados en canciones y ponen a prueba sus habilidades culinarias. + Music + Food + + + + Ana Laura presenta + Esaúl García + Historias que inspiran, charlas de vida y aprendizaje, reflexiones que invitan a enriquecer la mente y la visión de la realidad, en un encuentro con el ser humano detrás del artista. + Music + + + TVPG + + + + Las Gruperronas + El top ten de la música más popular de México con Alexandra González. + Music + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + DJ Rola + Un programa liderado por Dj Rola, que acerca unas mezclas que animan a bailar y disfrutar. + Music + + + + Beat urbano + Los videos y artistas más representativos de la música urbana. + Music + + + + Karaoke + Para que no le cambie las letras a sus canciones favoritas Video Rola tiene especialmente para usted un espacio para que saque el artista de que lleva dentro y cante a todo pulmón. + Music + + + TVPG + + + + Las 3 más pedidas + Sierreño + Reproduciendo las canciones más solicitadas del momento con cada capítulo enfocado en un género musical. + Music + + + + Karaoke + Un divertido programa musical. + Music + Performing Arts + + + + Videografía + Pancho Barraza + Una oportunidad para disfrutar de los grandes éxitos de Pancho Barraza. + Music + Performing Arts + + + TVPG + + + + DJ Rola + Un programa liderado por Dj Rola, que acerca unas mezclas que animan a bailar y disfrutar. + Music + + + + Beat urbano + Los videos y artistas más representativos de la música urbana. + Music + + + + Ana Laura presenta + Esaúl García + Historias que inspiran, charlas de vida y aprendizaje, reflexiones que invitan a enriquecer la mente y la visión de la realidad, en un encuentro con el ser humano detrás del artista. + Music + + + TVPG + + + + Give Me Five + Canciones pa' la peda + Los cantantes más populares de la música regional mexicana presentan cinco videos de los artistas que más admiran. + Music + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Videorecuerdos + Los mejores videos del recuerdo. + Music + Performing Arts + + + TVPG + + + + Momento Vídeo Rola + Se reviven momentos del pasado captados por las cámaras de video rola a lo largo su historia. + Regular + + + + Las Gruperronas + El top ten de la música más popular de México con Alexandra González. + Music + + + + En concierto + Recoditos + Las canciones de una de las agrupaciones con más energía y ganas de cantar, la música de Recoditos. + Music + Performing Arts + + + + En concierto + 3BallMTY + Una selección de las mejores presentaciones en vivo de los artistas más destacados de la música regional mexicana. + Music + Performing Arts + + + TVPG + + + + En concierto + La original banda El Limón + Una selección de las mejores presentaciones en vivo de los artistas más destacados de la música regional mexicana. + Music + Performing Arts + + + + En concierto + Marco Antonio Solís + Una selección de las mejores presentaciones en vivo de los artistas más destacados de la música regional mexicana. + Music + Performing Arts + + + TVPG + + + + Karaoke + Un divertido programa musical. + Music + Performing Arts + + + + Las 3 más pedidas + Banda + Reproduciendo las canciones más solicitadas del momento con cada capítulo enfocado en un género musical. + Music + + + + Karaoke + Para que no le cambie las letras a sus canciones favoritas Video Rola tiene especialmente para usted un espacio para que saque el artista de que lleva dentro y cante a todo pulmón. + Music + + + TVPG + + + + Videografía + Alfredo Olivas + Un espacio para disfrutar de un recorrido musical con los mejores videos de tus artistas favoritos. En esta emisión, los éxitos de Alfredo Olivas. + Music + Performing Arts + + + + DJ Rola + Un programa liderado por Dj Rola, que acerca unas mezclas que animan a bailar y disfrutar. + Music + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Las Gruperronas + El top ten de la música más popular de México con Alexandra González. + Music + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + La cocinación + Chuyin Barajas + Programa donde artistas musicales preparan platos inspirados en canciones y ponen a prueba sus habilidades culinarias. + Music + Food + + + + Give Me Five + Canciones pa' la peda + Los cantantes más populares de la música regional mexicana presentan cinco videos de los artistas que más admiran. + Music + + + + Mini conciertos + Programa que muestra una selección de los mejores artistas y videos musicales en vivo a través de Video Rola Mini Conciertos. + Music + Performing Arts + + + TVPG + + + + En concierto + Recoditos + Las canciones de una de las agrupaciones con más energía y ganas de cantar, la música de Recoditos. + Music + Performing Arts + + + + En concierto + 3BallMTY + Una selección de las mejores presentaciones en vivo de los artistas más destacados de la música regional mexicana. + Music + Performing Arts + + + TVPG + + + + En concierto + La original banda El Limón + Una selección de las mejores presentaciones en vivo de los artistas más destacados de la música regional mexicana. + Music + Performing Arts + + + + En concierto + Marco Antonio Solís + Una selección de las mejores presentaciones en vivo de los artistas más destacados de la música regional mexicana. + Music + Performing Arts + + + TVPG + + + + Videorecuerdos + Los mejores videos del recuerdo. + Music + Performing Arts + + + TVPG + + + + Momento Vídeo Rola + Se reviven momentos del pasado captados por las cámaras de video rola a lo largo su historia. + Regular + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + PM + Los videos más extremos, exóticos y sin ningún tipo de censura de tus artistas favoritos. + Specials + Music + + + + Mini conciertos + Programa que muestra una selección de los mejores artistas y videos musicales en vivo a través de Video Rola Mini Conciertos. + Music + Performing Arts + + + TVPG + + + + La cocinación + Chuyin Barajas + Programa donde artistas musicales preparan platos inspirados en canciones y ponen a prueba sus habilidades culinarias. + Music + Food + + + + Las Gruperronas + El top ten de la música más popular de México con Alexandra González. + Music + + + + Give Me Five + Canciones pa' la peda + Los cantantes más populares de la música regional mexicana presentan cinco videos de los artistas que más admiran. + Music + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + La entrevista + Los artistas populares platican sobre sus planes, videos nuevos, conciertos y todo lo que circula su carrera. + Regular + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Videorecuerdos + Los mejores videos del recuerdo. + Music + Performing Arts + + + TVPG + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Videografía + Alfredo Olivas + Un espacio para disfrutar de un recorrido musical con los mejores videos de tus artistas favoritos. En esta emisión, los éxitos de Alfredo Olivas. + Music + Performing Arts + + + + Las Gruperronas + El top ten de la música más popular de México con Alexandra González. + Music + + + + En concierto + La original banda El Limón + Una selección de las mejores presentaciones en vivo de los artistas más destacados de la música regional mexicana. + Music + Performing Arts + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + La cocinación + Los nuevos Santa Rosa + Programa donde artistas musicales preparan platos inspirados en canciones y ponen a prueba sus habilidades culinarias. + Music + Food + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Videorecuerdos + Los mejores videos del recuerdo. + Music + Performing Arts + + + TVPG + + + + En concierto + Marco Antonio Solís + Una selección de las mejores presentaciones en vivo de los artistas más destacados de la música regional mexicana. + Music + Performing Arts + + + TVPG + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + La entrevista + Los artistas populares platican sobre sus planes, videos nuevos, conciertos y todo lo que circula su carrera. + Regular + + + + Estrenos app + Las cosas nuevas se puedes ver en video rola app. + Regular + + + + Like news + Lo más relevante de la información generada en torno a la música regional mexicana. + Regular + + + + Karaoke + Un divertido programa musical. + Music + Performing Arts + + + + Videografía + Alfredo Olivas + Un espacio para disfrutar de un recorrido musical con los mejores videos de tus artistas favoritos. En esta emisión, los éxitos de Alfredo Olivas. + Music + Performing Arts + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Videorecuerdos + Los mejores videos del recuerdo. + Music + Performing Arts + + + TVPG + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Beat urbano + Los videos y artistas más representativos de la música urbana. + Music + + + + Ana Laura presenta + Larry Hernández + Historias que inspiran, charlas de vida y aprendizaje, reflexiones que invitan a enriquecer la mente y la visión de la realidad, en un encuentro con el ser humano detrás del artista. + Music + + + TVPG + + + + Mini conciertos + Programa que muestra una selección de los mejores artistas y videos musicales en vivo a través de Video Rola Mini Conciertos. + Music + Performing Arts + + + TVPG + + + + Mini conciertos + Programa que muestra una selección de los mejores artistas y videos musicales en vivo a través de Video Rola Mini Conciertos. + Music + Performing Arts + + + TVPG + + + + DJ Rola + Un programa liderado por Dj Rola, que acerca unas mezclas que animan a bailar y disfrutar. + Music + + + + Like news + Lo más relevante de la información generada en torno a la música regional mexicana. + Regular + + + + Karaoke + Un divertido programa musical. + Music + Performing Arts + + + + Videografía + Alfredo Olivas + Un espacio para disfrutar de un recorrido musical con los mejores videos de tus artistas favoritos. En esta emisión, los éxitos de Alfredo Olivas. + Music + Performing Arts + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Mini conciertos + Programa que muestra una selección de los mejores artistas y videos musicales en vivo a través de Video Rola Mini Conciertos. + Music + Performing Arts + + + TVPG + + + + Ana Laura presenta + Larry Hernández + Historias que inspiran, charlas de vida y aprendizaje, reflexiones que invitan a enriquecer la mente y la visión de la realidad, en un encuentro con el ser humano detrás del artista. + Music + + + TVPG + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + La entrevista + Los artistas populares platican sobre sus planes, videos nuevos, conciertos y todo lo que circula su carrera. + Regular + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Videorecuerdos + Los mejores videos del recuerdo. + Music + Performing Arts + + + TVPG + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Like news + Lo más relevante de la información generada en torno a la música regional mexicana. + Regular + + + + Las Gruperronas + El top ten de la música más popular de México con Alexandra González. + Music + + + + Karaoke + Un divertido programa musical. + Music + Performing Arts + + + + Videografía + Alfredo Olivas + Un espacio para disfrutar de un recorrido musical con los mejores videos de tus artistas favoritos. En esta emisión, los éxitos de Alfredo Olivas. + Music + Performing Arts + + + + Las 3 más pedidas + Sierreño + Reproduciendo las canciones más solicitadas del momento con cada capítulo enfocado en un género musical. + Music + + + + Mini conciertos + Programa que muestra una selección de los mejores artistas y videos musicales en vivo a través de Video Rola Mini Conciertos. + Music + Performing Arts + + + TVPG + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Video estrenos + Regular + + + + Estrenos app + Las cosas nuevas se puedes ver en video rola app. + Regular + + + + Beat urbano + Los videos y artistas más representativos de la música urbana. + Music + + + + Ana Laura presenta + Larry Hernández + Historias que inspiran, charlas de vida y aprendizaje, reflexiones que invitan a enriquecer la mente y la visión de la realidad, en un encuentro con el ser humano detrás del artista. + Music + + + TVPG + + + + La entrevista + Los artistas populares platican sobre sus planes, videos nuevos, conciertos y todo lo que circula su carrera. + Regular + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + La cocinación + Los nuevos Santa Rosa + Programa donde artistas musicales preparan platos inspirados en canciones y ponen a prueba sus habilidades culinarias. + Music + Food + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + La regadera + Regular + + + + Estrenos app + Las cosas nuevas se puedes ver en video rola app. + Regular + + + + Mini conciertos + Programa que muestra una selección de los mejores artistas y videos musicales en vivo a través de Video Rola Mini Conciertos. + Music + Performing Arts + + + TVPG + + + + Las 3 más pedidas + Norteño + Se pueden pedir las canciones preferida a través de WhatsApp y el publico podrá ser protagonista en. + Music + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Give Me Five + Canciones pa' la peda + Los cantantes más populares de la música regional mexicana presentan cinco videos de los artistas que más admiran. + Music + + + + En concierto + La original banda El Limón + Una selección de las mejores presentaciones en vivo de los artistas más destacados de la música regional mexicana. + Music + Performing Arts + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + PM + Los videos más extremos, exóticos y sin ningún tipo de censura de tus artistas favoritos. + Specials + Music + + + + Mini conciertos + Programa que muestra una selección de los mejores artistas y videos musicales en vivo a través de Video Rola Mini Conciertos. + Music + Performing Arts + + + TVPG + + + + La cocinación + Los nuevos Santa Rosa + Programa donde artistas musicales preparan platos inspirados en canciones y ponen a prueba sus habilidades culinarias. + Music + Food + + + + Beat urbano + Los videos y artistas más representativos de la música urbana. + Music + + + + En concierto + Recoditos + Las canciones de una de las agrupaciones con más energía y ganas de cantar, la música de Recoditos. + Music + Performing Arts + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + La entrevista + Los artistas populares platican sobre sus planes, videos nuevos, conciertos y todo lo que circula su carrera. + Regular + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Videorecuerdos + Los mejores videos del recuerdo. + Music + Performing Arts + + + TVPG + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Videografía + Alfredo Olivas + Un espacio para disfrutar de un recorrido musical con los mejores videos de tus artistas favoritos. En esta emisión, los éxitos de Alfredo Olivas. + Music + Performing Arts + + + + Give Me Five + Canciones pa' la peda + Los cantantes más populares de la música regional mexicana presentan cinco videos de los artistas que más admiran. + Music + + + + Ana Laura presenta + Larry Hernández + Historias que inspiran, charlas de vida y aprendizaje, reflexiones que invitan a enriquecer la mente y la visión de la realidad, en un encuentro con el ser humano detrás del artista. + Music + + + TVPG + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Mini conciertos + Programa que muestra una selección de los mejores artistas y videos musicales en vivo a través de Video Rola Mini Conciertos. + Music + Performing Arts + + + TVPG + + + + Las 3 más pedidas + Urbano + Reproduciendo las canciones más solicitadas del momento con cada capítulo enfocado en un género musical. + Music + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + La cocinación + Los nuevos Santa Rosa + Programa donde artistas musicales preparan platos inspirados en canciones y ponen a prueba sus habilidades culinarias. + Music + Food + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + Videorecuerdos + Los mejores videos del recuerdo. + Music + Performing Arts + + + TVPG + + + + Mini conciertos + Programa que muestra una selección de los mejores artistas y videos musicales en vivo a través de Video Rola Mini Conciertos. + Music + Performing Arts + + + TVPG + + + + Música para tus ojos + Un programa que muestra los videos musicales de los artistas favoritos del momento. + Music + Performing Arts + + + + La entrevista + Los artistas populares platican sobre sus planes, videos nuevos, conciertos y todo lo que circula su carrera. + Regular + + + + Estrenos app + Las cosas nuevas se puedes ver en video rola app. + Regular + + + + La inocencia + Lis es una adolescente que pasa el verano en las calles de su pueblo mientras tontea con su novio, mayor que ella. El chismorreo constante de los vecinos obliga a Lis a llevar esa relación en secreto para que sus padres no se enteren. + + Carmen Arrufat + Laia Marull + Sergi López + + 2019 + Movies + Drama + + + + Back to the Beginning + Un exconvicto trata de enderezar su vida, pero todos los elementos a su alrededor lo empujan de regreso a todo lo que quiere dejar atrás. + + Jorge Alberti + Ricardo Alvarez + Natalia Rivera + + 2015 + Movies + Action + + + + La niebla y la doncella + Un sargento de la Guardia Civil debe investigar la muerte de un joven en la isla de La Gomera. La investigación estará condicionada por presiones políticas y por la dificultad de intentar no levantar sospechas, pues el caso ya estaba cerrado. + + Quim Gutiérrez + Verónica Echegui + Aura Garrido + + 2017 + Movies + Thriller + + + + El viaje de Keta + Keta es una maquilladora que lo tiene todo largo y grande: el físico, el cabello y los sueños, pero su afición a la marihuana y su extravagancia la alejan de ellos. Así que, finalmente, Keta no tiene otra salida que ganar dinero vendiendo droga. + + Leticia Huijara + Fabiola Campomanes + Julio Bekhor + + 2018 + Movies + Comedy + + + + El viaje de Keta + Keta es una maquilladora que lo tiene todo largo y grande: el físico, el cabello y los sueños, pero su afición a la marihuana y su extravagancia la alejan de ellos. Así que, finalmente, Keta no tiene otra salida que ganar dinero vendiendo droga. + + Leticia Huijara + Fabiola Campomanes + Julio Bekhor + + 2018 + Movies + Comedy + + + + Eloïse's Lover + Àsia, una joven de 18 años que se encuentra en coma en un hospital, conoce a Eloïse, quien la introduce en un mundo de nuevas sensaciones. + + Diana Gómez + Ariadna Cabrol + Laura Conejero + + 2009 + Movies + Romance + + + + Temporada de caza + Un adolescente agresivo y maleducado va a pasar unos meses con su padre, de profesión cazador, a la Patagonia cuando muere su madre. Su padre tiene otra familia y trata de encauzar la conducta de su hijo, a quien hacía 10 años que no veía. + + Germán Palacios + Lautaro Bettoni + Boy Olmi + + 2017 + Movies + Drama + + + + A cambio de nada + Los padres de Darío, un chico de dieciséis años, se separan y él decide huir de su hogar. Luismi, su amigo inseparable, Caralimpia, un pobre diablo que se cree un triunfador y Antonia, una mujer mayor, se convierten en su nueva familia. + + Miguel Herrán + Antonio Bachiller + Antonia Guzmán + + 2015 + Movies + Drama + + + + La chica del alquiler + Después de que ser plantado ante el altar por el amor de su vida, Sebastián va a buscarla al lugar que alquilaron para su luna de miel, donde conoce a la dueña, y además, encuentra a su exprometida con el padrino de bodas. + + Daniela Alvarado + Agustín Segnini + Patricia Schwarzgruber + + 2023 + Movies + Comedy + + + + Campeones + La historia de un entrenador y 21 jugadores de fútbol, menores de 17 años, que hicieron historia al ganar la primera Copa del Mundo para México. + + Raúl Adalid + Pierre Angelo + Harold Azuara + + 2018 + Movies + Drama + + + + Reinbou + Un hombre busca a su padre, a quien nunca ha conocido, pero de quien sabe que luchó en la guerra civil de la República Dominicana. + + Nashla Bogaert + Héctor Aníbal + David Maler + + 2017 + Movies + Drama + + + + Alma + Alma es una mujer bipolar que obliga a su esposo a dejar la casa porque él está cansado de su enfermedad. + + Javiera Contador + Fernando Larraín + Dayana Amigo + + 2015 + Movies + Romance + + + + El último traje + Abraham, un sastre judío de 88 años, emprende un largo viaje en busca del hombre que lo salvó de una muerte segura durante el Holocausto, en los estertores del nazismo. + + Miguel Ángel Solá + Ángela Molina + Natalia Verbeke + + 2017 + Movies + Drama + + + TVG + + + + ¡Ánimo, juventud! + Cuatro jóvenes de la Ciudad de México transitan hacia la vida adulta: Martín, enamorado de una chica a la que apenas conoce; Dulce, dura por fuera, tierna por dentro; Daniel, que será padre adolescente y Pedro, un niño harto de los adultos. + + Daniela Arce + Rodrigo Cortés + Mario Palmerin + + 2020 + Movies + Comedy + + + + La boda de Rosa + Rosa está a punto de cumplir 45 y se da cuenta de que siempre ha vivido para los demás. Cuando decide dejarlo todo atrás, toma el control de su vida para cumplir su sueño de empezar un nuevo negocio. + + Candela Peña + Nathalie Poza + Ramón Barea + + 2020 + Movies + Comedy + + + + La lectora + Una universitaria es obligada a traducir un texto en alemán con pistas para encontrar a un misterioso maletín desaparecido y más de uno haría cualquier cosa por encontrarlo. + + Carolina Guerra + Diego Cadavid + Carolina Gómez + + 2012 + Movies + Action + + + + La punta del iceberg + Sofía Cuevas es una exitosa directiva de una gran empresa multinacional. Su empresa le encomienda la investigación interna de tres suicidios de sus empleados con tal de aclarar lo sucedido. En su investigación descubre prácticas abusivas. + + Maribel Verdú + Álex García + Fernando Cayo + + 2016 + Movies + Thriller + + + + Por amor en el caserío + Crystal y Angelo se enamoran en medio de una vida llena de violencia, drogas y deterioro social. + + Anoushka Medina + Xavier Morales + Sully Diaz + + 2013 + Movies + Action + + + + Madrid, 1987 + Miguel, un escritor veterano, conoce a Ángela, una estudiante de periodismo. Juntos explorarán el deseo, la inspiración, el talento y las perspectivas profesionales. + + Jose Sacristan + María Valverde + Ramon Fontserè + + 2011 + Movies + Drama + + + + Madrid, 1987 + Miguel, un escritor veterano, conoce a Ángela, una estudiante de periodismo. Juntos explorarán el deseo, la inspiración, el talento y las perspectivas profesionales. + + Jose Sacristan + María Valverde + Ramon Fontserè + + 2011 + Movies + Drama + + + + Sangre en la boca + Ramo´n recupera su vitalidad cuando conoce a la joven Deborah y su pasión hace que renuncie a todo lo demás. + + Leonardo Sbaraglia + Eva De Dominici + Erika Blanc + + 2016 + Movies + Drama + + + TV14 + + + + Los héroes del mal + Tres adolescentes, víctimas de la humillación y del maltrato, encuentran una salida ante esa pesadilla: responder con violencia hacia los violentos. + + Jorge Clemente + Beatriz Sánchez Medina + Emilio Palacios + + 2015 + Movies + Drama + + + + Presos + Los dilemas de Victoria, una joven apasionada por el baile quien tras una relación con su novio de cinco años termina con él y con su vida habitual, para ingresar en el difícil medio carcelario. + + Alejandro Aguilar + Natalia Arias + Rocío Carranza + + 2015 + Movies + Drama + + + + El mejor verano de mi vida + Para Nico, su padre Curro es el mejor: el más trabajador, el más listo y el que siempre cumple sus promesas. En realidad, Curro es un lamentable comerciante que acumula deudas y que le ha prometido a su hijo algo que no puede cumplir. + + Leo Harlem + Alejandro Serrano + Toni Acosta + + 2018 + Movies + Comedy + + + + Corazón del tiempo + En la Esperanza de San Pedro, Chiapas, en medio de la lucha zapatista, Sonia, miembro de la comunidad, va a casarse. Ya tienen todo listo, pero Sonia está enamorada de otro: un revolucionario. + + Rocío Barrios + Francisco Jiménez + Marisela Rodríguez + + 2009 + Movies + Drama + + + + Prótesis + Marcos, un creador de prótesis con un pasado traumático, encuentra un cadáver en su laboratorio. Mientras decide qué hacer con el cuerpo, Marcos lidia con su vida familiar, una película de zombis, un nuevo amor y la creación de la prótesis perfecta. + + Carlos Rivera Marchand + Denise Quinones + Sunshine Logroño + + 2019 + Movies + Romance + + + + Alegría, tristeza + Marcos es un hombre con serias dificultades para identificar las emociones de los demás. Este bloqueo mental que sufre, consecuencia de un accidente laboral, le impide recuperar su antiguo trabajo y cuidar adecuadamente de su hija, la pequeña Lola. + + Roberto Álamo + Maggie Civantos + Claudia Placer + + 2018 + Movies + Drama + + + + Un traductor + Un profesor de literatura que trabaja en la Universidad de La Habana debe oficiar de traductor para los niños víctimas del accidente nuclear de Chernóbil que buscan tratamiento médico en Cuba. + + Rodrigo Santoro + Maricel Álvarez + Milda Gecaite + + 2018 + Movies + Drama + + + TV14 + + + + Mi mejor regalo + Daniel está viviendo un mal momento sentimental y profesional. En ese momento, llega el padre de su exnovia, la cual ya falleció, para revelarle que es el padre de una niña de 8 años llamada Samantha. Esto cambiará por completo la vida de Daniel. + + Plutarco Haza + Claudia Lizaldi + Aarón Hernán + + 2013 + Movies + Romance + + + TVG + + + + Pa'trás ni pa'tomar impulso + El baile flamenco es lo que teje el camino hacia el vacío que emprende Carmen cuando cruza a Buenos Aires y pone rumbo a los Andes. Pero una vida sentimental complicada y el bagaje dejado atrás no le pondrán fácil alcanzar su sueño. + 2020 + Movies + Documentary + + + + No te enamores de mí + Tres diferentes historias que se entrecruzan entre sí en un mismo conflicto: la imposibilidad de una unión amorosa verdadera. + + Pablo Rago + Julieta Ortega + Mercedes Oviedo + + 2012 + Movies + Romance + + + + Lo dejo cuando quiera + Amigos desde la facultad y muy preparados, Pedro, Arturo y Eligio son tres profesores universitarios a los que la crisis ha dejado sin trabajo. Cansados, encuentran la solución a sus problemas en un complejo vitamínico. + + David Verdaguer + Ernesto Sevilla + Carlos Santos + + 2019 + Movies + Comedy + + + + El vigilante + Mientras trabaja como vigilante durante la noche, Salvador ve a dos sujetos abandonar una camioneta con un cuerpo. Al ser el único testigo, se convierte en el centro de atención y conflicto. + + Leonardo Alonso + Ari Gallegos + Lilia Mendoza + + 2016 + Movies + Drama + + + + Ilegítimo + Juancho es un joven humilde, luchador y apegado a su familia, quien en su vida universitaria mantiene el amor al fútbol y al estudio como metas para sacar adelante su familia. Una tarde, encuentra a su madre sin conocimiento. + + Julieth Restrepo + Roberto Duran + Jorge Enrique Abello + + 2017 + Movies + Drama + + + + 15 horas + Aura, una solista en la sección de primeros violines, y Manuel, el director de orquesta, están casados. Sin embargo, Manuel la maltrata y Aura, desesperada, decide pedir ayuda después de tantos años de maltrato. + + Sterlyn Ramírez + Marc Clotet + Felix German + + 2021 + Movies + Drama + + + + 15 horas + Aura, una solista en la sección de primeros violines, y Manuel, el director de orquesta, están casados. Sin embargo, Manuel la maltrata y Aura, desesperada, decide pedir ayuda después de tantos años de maltrato. + + Sterlyn Ramírez + Marc Clotet + Felix German + + 2021 + Movies + Drama + + + + La lengua del sol + Emilia y Ramiro disfrutan de su amor, entregados a todos los placeres. Sin embargo, algo los tiene preocupados, la lengua del sol está por llegar. Emilia y Ramiro tienen un plan: han decidido concebir un hijo en el segundo justo del fin del mundo. + + Flavia Atencio + Raúl Méndez + José María Negri + + 2017 + Movies + Drama + + + + Olvidados + José, un general boliviano retirado, tras sufrir un infarto, se ve atormentado por los recuerdos de su pasado como torturador y decide, contarle a su único hijo sus secretos más grandes en busca de redención. + + Damián Alcázar + Rafael Ferro + Carla Ortiz + + 2014 + Movies + History + + + + Paper Boats + La historia de un hombre que parece haberlo perdido todo y recupera la esperanza ante la tragedia de la deportación. Una historia sobre el significado del amor, la familia y la búsqueda de la felicidad. + + Pedro Damián + Max Levi + + 2019 + Movies + Drama + + + + La cordillera + Durante una cumbre presidencial que se desarrolla en Chile, el presidente argentino vive un drama personal que afecta a la relación con su hija en el mismo momento en que debe asumir la decisión más importante de su trayectoria profesional. + + Ricardo Darín + Dolores Fonzi + Érica Rivas + + 2017 + Movies + Drama + + + + De pez en cuando + El destino interviene cuando Ben decide suicidarse y su vida se convierte en un caos. + + Luis José Germán + Itahisa Machado + Manolo Ozuna + + 2014 + Movies + Comedy + + + + Sin fin + La relación de Javier y María nació de la pasión, pero el tiempo la convirtió en predecible rutina. Sin embargo, el amor sobrevive a los años y la muerte y Javier viajará en el tiempo para cambiar el último día que pasó junto a su amada. + + Javier Rey + María León + Juan Carlos Sánchez + + 2018 + Movies + Romance + + + + Contigo pan y cebolla + La adquisición de un refrigerador revela las alegrías y angustias de una clásica familia cubana a finales de la década de los 50. + + Alina Rodriguez + Alicia Bustamante + Osvaldo Doimeadiós + + 2014 + Movies + Comedy + + + + La banda + Edu, un joven músico que vive en el extranjero, vuelve a su Valencia natal para asistir a la boda de su hermano. El retorno despierta en él la necesidad de recuperar todo lo que dejó atrás: especialmente a Alicia, la eterna novia de su mejor amigo. + + Charlotte Vega + Gonzalo Fernández + Pepo Llopis + + 2019 + Movies + Drama + + + + Lo que siento por ti + Tres historias de inclusión social: una madre de dos adolescentes autistas, una pareja que intenta tener un hijo y el padre de una olímpica especial. + + Yordanka Ariosa + Robinson Díaz + Nashla Bogaert + + 2018 + Movies + Comedy + Drama + + + + Handia + País Vasco, 1836. Martín regresa de la Primera Guerra Carlista y descubre asombrado que su hijo menor, Joaquín, es más alto que él. Padre e hijo comienzan a recorrer el mundo para exhibir en ferias y palacios el gigantismo de Joaquín. + + Ramón Agirre + Iñigo Aranburu + Iñigo Azpitarte + + 2017 + Movies + History + + + + Perro come perro + Víctor y Eusebio, dos criminales, rompen el código del hampa cuando asesinan al ahijado de su patrón y huyen con el dinero de un robo. Su temeridad genera una reacción en cadena de consecuencias imprevisibles. + + Marlon Moreno + Óscar Borda + Álvaro Rodríguez + + 2008 + Movies + Thriller + + + TVPG + + + 2 + + + + Manticore + Soldados estadounidenses en el Medio Oriente se enfrentan a una legendaria criatura que un vengativo iraquí liberó. + + Robert Beltran + Heather Donahue + Chase Masterson + + 2005 + Movies + Sci-Fi + + + TV14 + + + 1 + + + + Permitidos + En una charla con amigos, Mateo y Camila eligen a su permitido, una celebridad casi imposible de conocer con quien podrían tener una aventura sin que cuente como infidelidad. + + Lali Espósito + Martín Piroyansky + Benjamín Vicuña + + 2016 + Movies + Comedy + + + + No matarás + Dani decide retomar su vida después de cuidar de su padre hasta que fallece. Cuando decide emprender un largo viaje conoce a Mila, una chica sensual e inquietante que convertirá una noche en una pesadilla. + + Mario Casas + Milena Smit + Elisabeth Larena + + 2020 + Movies + Thriller + + + + Drama/Mex + Fernanda y Chano son dos jóvenes que tienen una relación violenta y destructiva, mientras un burócrata suicida roba en su trabajo y una joven huye de su casa. + + Fernando Becerril + Diana García + Miriana Moro + + 2006 + Movies + Drama + + + TVPG + + + 3 + + + + Drama/Mex + Fernanda y Chano son dos jóvenes que tienen una relación violenta y destructiva, mientras un burócrata suicida roba en su trabajo y una joven huye de su casa. + + Fernando Becerril + Diana García + Miriana Moro + + 2006 + Movies + Drama + + + TVPG + + + 3 + + + + Princesas + En Madrid, dos prostitutas inicialmente rivales, inician una buena amistad en busca de una vida mejor, cuando una de ellas termina herida y la otra la cuida durante su permanencia en el hospital. + + Candela Peña + Micaela Nevárez + Mariana Cordero + + 2005 + Movies + Drama + + + 3 + + + + Yo, imposible + Una joven descubre que fue sometida a varias cirugías para corregir su cuerpo intersexual cuando era bebé. Ahora, tiene que encontrarse a sí misma fuera de los binarios conceptos de género. + + Lucía Bedoya + Belkis Avilladares + María Elena Duque + + 2018 + Movies + Drama + + + + El ombligo de Guie'dani + Guie'dani, una niña indígena zapoteca, y su madre, trabajan con una familia acomodada de la Ciudad de México. La pequeña no se adapta y es conflictiva. Todo cambia cuando conoce a Claudia, una niña rebelde con la que entabla una intensa relación. + + Sótera Cruz + Erika López + Majo Alfaroh + + 2018 + Movies + Drama + + + + Inmersión + Mientras navegan, Ricardo y sus dos hijas se topan con un grupo de pescadores cuya embarcación está a punto de hundirse. Sin embargo, Ricardo sospecha de los pescadores y se rehúsa a ayudarlos, aun cuando sus hijas le insisten para que lo haga. + + Alfredo Castro + Michael Silva + Consuelo Carreño + + 2021 + Movies + Drama + + + + Sexo fácil, películas tristes + Un guionista argentino es contratado para escribir una comedia romántica ambientada en Madrid. Aunque en un principio Pablo se siente cómodo con el encargo, enseguida entra en crisis. + + Marta Etura + Quim Gutiérrez + Carlos Areces + + 2014 + Movies + Romance + + + + El evangelio de la carne + Un policía encubierto busca salvar a su esposa de una enfermedad desconocida. Félix intenta ser aceptado en la Hermandad del Señor de los Milagros. Narciso lucha por sacar a su hermano menor del reclusorio. + + Jimena Lindo + Norma Martínez + Lucho Cáceres + + 2013 + Movies + Drama + + + + Ama + A Pepa y a su hija Leila las echan de su hogar, por lo que se ven obligadas a encontrar un sitio donde dormir antes de que anochezca en un feliz día de carnaval. + + Pablo Gomez Pando + Tamara Casellas + Emma Hernández Pérez + + 2019 + Movies + Drama + + + + Misión estrella + El repartidor de una humilde tienda está frente a la oportunidad de su vida, cumplir su sueño de participar en un popular programa de televisión. + + Javier Grullón + Akari Endo + Vladimir Acevedo + + 2017 + Movies + Action + + + + Las furias + Marga anuncia a sus tres hijos la intención de vender la residencia de verano familiar con el propósito de emprender un misterioso viaje y les pide que se reúnan. El hermano mayor, Héctor, propone celebrar su boda ese mismo fin de semana. + + Nuria Garcia + Marta López Mazorra + Ángela Peral + + 2016 + Movies + Drama + + + TVG + + + + NCIS + Sharif Returns + The NCIS team must track down a wanted terrorist (Enzo Cilenti) who has obtained a missing chemical weapon before he carries out his plan to attack major U.S. cities. + + Mark Harmon + Michael Weatherly + Cote de Pablo + + Drama + + + TVPG + + + + NCIS + Blowback + Ducky goes under cover to stop the illegal sale of the Navy's top-secret weapons system to a high-priority arms dealer (Armand Assante). + + Mark Harmon + Michael Weatherly + Cote de Pablo + + Drama + + + TVPG + + + + NCIS + Friends and Lovers + When a young sailor's body is found in an abandoned building in a seedy part of town, an ominous message written in blood leads the team to switch gears to find the killer. + + Mark Harmon + Michael Weatherly + Cote de Pablo + + Drama + + + TVPG + + + + NCIS + Dead Man Walking + The NCIS team suspects foul play when a Navy lieutenant is the victim of radiation poisoning; Tony sees a softer side of Ziva. + + Mark Harmon + Michael Weatherly + Cote de Pablo + + Drama + + + TVPG + + + + NCIS + Skeletons + When an explosion at a military cemetery's mausoleum reveals a cache of dismembered human remains, the team searches for a potential serial killer. + + Mark Harmon + Michael Weatherly + Cote de Pablo + + Drama + + + TVPG + + + + NCIS + Iceman + With a young Marine on life support, the team tracks his movements in the days leading up to his being left for dead. + + Mark Harmon + Michael Weatherly + Cote de Pablo + + Drama + + + TVPG + + + + NCIS + Grace Period + Cassidy (Jessica Steen) blames herself when the team learns that a tip on terrorist activity was a trap that resulted in the deaths of two agents. + + Mark Harmon + Michael Weatherly + Cote de Pablo + + Drama + + + TV14 + + + + NCIS + Cover Story + When a petty officer on whom McGee based a character for his latest book is murdered, McGee must figure out who could have accessed his secret manuscript. + + Mark Harmon + Michael Weatherly + Cote de Pablo + + Drama + + + TVPG + + + + Law & Order: Criminal Intent + Undaunted Mettle + When a student is killed with a screwdriver, detectives discern a strong similarity between his bold design for a downtown building and that of a celebrated architect. + + Vincent D'Onofrio + Kathryn Erbe + Courtney B. Vance + + Docu-Series + Drama + + + TV14 + + + + Law & Order: Criminal Intent + Gemini + After a plastic surgeon and two contact-lens salesmen are murdered, the detectives search for a suspect who may be a racist. + + Vincent D'Onofrio + Kathryn Erbe + Courtney B. Vance + + Docu-Series + Drama + + + TV14 + + + + Law & Order: Criminal Intent + The Gift + Detectives link a young man's murder to practitioners of Santeria who duped the victim's mother into believing she has psychic powers. + + Vincent D'Onofrio + Kathryn Erbe + Courtney B. Vance + + Docu-Series + Drama + + + TV14 + + + + Law & Order: Criminal Intent + But Not Forgotten + The detectives discover a ledger's worth of bodies while searching for a missing bookkeeper. + + Vincent D'Onofrio + Kathryn Erbe + Courtney B. Vance + + Docu-Series + Drama + + + TV14 + + + + Commit or Quit + Marriage Is Prison? + After experiencing devastating losses, Ayanna and Brian seek Judge Toler's help to determine if their past baggage is too heavy to carry into the future; secrets & fertility struggles rock their marriage; Judge Toler decides their fate. + Reality TV + + + TV14 + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + Home Title Theft is Real! Home Title Lock Protects Your Title 24/7 + When a criminal fraudulently transfers your home title to a fake identity and steals your title, no one will notify you. Not your county, not the police, not even your bank. Home Title Lock protects your title 24/7 from this this fast-growing crime. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Bye Bye Neck Pain + Manage and relieve head, neck and shoulder pain on your terms with DR-HO'S Neck Pain Pro! + Paid Program + Science + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Amazing Abs + Tone, tighten and burn fat - In seated comfort! Transform your entire body with the Ab Doer 360! + Paid Program + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Ninja Combi Multicooker Oven Air Fryer and So Much More + Discover the new way to cook entire meals perfectly in 15 min with Ninja Combi All-In-One Multicooker, Oven & Air Fryer! Never boil water for rice/pasta, defrost proteins or do piles of dishes again. 14-in-1, it's the only appliance you'll ever need. + Paid Program + + + + Law & Order + Killerz + The detectives suspect a 10-year-old girl is responsible for the death of a boy at a construction site. + + Jerry Orbach + Jesse L. Martin + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + DNR + A judge maintains her husband's innocence after a botched murder attempt leaves her mortally wounded. + + Jerry Orbach + Jesse L. Martin + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + Merger + A scandal involving two wealthy families threatens McCoy and Carmichael's chances of a conviction in the murder of a drug-addicted girl of 15. + + Jerry Orbach + Jesse L. Martin + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + Justice + McCoy opposes his former colleague, Jamie Ross, in the murder of another attorney for which a man may be wrongly convicted. + + Jerry Orbach + Jesse L. Martin + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + Marathon + Briscoe, resentful at being second-guessed by fellow officers, feuds with Green over an exasperating murder case. + + Jerry Orbach + Jesse L. Martin + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + Patsy + Even with key DNA evidence, a new witness jeopardizes the conviction of a man suspected of bludgeoning a woman into a coma. + + Jerry Orbach + Jesse L. Martin + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + Blood Money + Briscoe and Green think a life insurance salesman's valuable information about his policies was a motive for his murder. + + Jerry Orbach + Jesse L. Martin + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + Sundown + Briscoe and Green track a gigolo and con artist who is suspected of murder, but they run into problems when McCoy and Carmichael interview a victim's family. + + Jerry Orbach + Jesse L. Martin + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + Loco Parentis + When a teenager is found murdered, Detectives Briscoe and Green suspect a school bully who displays an avid interest in martial-arts weapons. + + Jerry Orbach + Jesse L. Martin + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + Collision + A mentally disturbed suspect refuses to take his antidepressant medicine, rendering him incapable of standing trial for murder. + + Jerry Orbach + Jesse L. Martin + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + Mother's Milk + The parents of a missing child accuse each other of having the baby until a gruesome discovery is made. + + Jerry Orbach + Jesse L. Martin + Sam Waterston + + Drama + + + TV14 + + + + Law & Order + Panic + Briscoe and Green believe a possible love triangle was the motive behind the attempted assassination of a best-selling author. + + Jerry Orbach + Jesse L. Martin + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + Entitled + The detectives continue searching for a shooter who may be responsible for several unsolved murders years earlier. + + Jerry Orbach + Jesse L. Martin + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + Fools for Love + McCoy has trouble holding a case against a teenager's boyfriend suspected of killing two girls when she refuses to talk about his abuse. + + Jerry Orbach + Jesse L. Martin + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + Trade This + The murder of a stockbroker points to organized crime when the prime suspect is killed by a hired hit man. + + Jerry Orbach + Jesse L. Martin + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + Black, White and Blue + McCoy and Carmichael find two patrolmen partially responsible for the killing of a white teenager in Harlem. + + Jerry Orbach + Jesse L. Martin + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + Mega + When a bomb kills six on a helicopter flight, evidence points to a victim's wife who is influenced by two financial advisers (Annette O'Toole, Michael McKean). + + Jerry Orbach + Jesse L. Martin + S. Epatha Merkerson + + Drama + + + TV14 + + + + Law & Order + Surrender Dorothy + Briscoe and Green first suspect gang members when a woman is found stuffed inside a car trunk, until they find out that she was married and having an affair. + + Jerry Orbach + Jesse L. Martin + S. Epatha Merkerson + + Drama + + + TV14 + + + + Commit or Quit + Ex-pectations + After dating six years, Kieyesia and Antoine seek Judge Toler's help in taking the next step; Antoine constantly puts his ex on a pedestal, and Kieyesia fears she'll never live up to the expectations. + Reality TV + + + TV14 + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Car Repair Secrets! + Save thousands on car repairs. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Bones + The Soldier on the Grave + Booth and Brennan's investigation of an apparent suicide of a protester in Arlington National Cemetery may lead to a military scandal. + + Emily Deschanel + David Boreanaz + Eric Millegan + + Drama + + + TV14 + + + + Bones + The Woman in Limbo + Brennan makes a shocking discovery while trying to identify a Jane Doe; Brennan tries to come to grips with her parents' past. + + Emily Deschanel + David Boreanaz + Eric Millegan + + Drama + + + TV14 + + + + Bones + The Titan on the Tracks + Brennan and Booth investigate the site of a train wreck that includes the bodies of a senator and a high-profile businessman. + + Emily Deschanel + David Boreanaz + Eric Millegan + + Drama + + + TV14 + + + + Bones + Mother and Child in the Bay + The remains of a woman and fetus are found in the Delaware Bay; Brennan and Booth call for a manhunt for the victim's husband; Booth has issues with his ex-wife's boyfriend. + + Emily Deschanel + David Boreanaz + Eric Millegan + + Drama + + + TV14 + + + + Bones + The Boy in the Shroud + Wrapped in a shroud, the body of a young man lies beside an overturned garbage truck; Brennan's past as a foster child influences her judgment; Brennan and Cam butt heads over their work styles; Cam makes threats. + + Emily Deschanel + David Boreanaz + Eric Millegan + + Drama + + + TV14 + + + + Bones + The Blonde in the Game + Brennan and her team match wits with a serial killer to save a girl's life. + + Emily Deschanel + David Boreanaz + Eric Millegan + + Drama + + + TV14 + + + + Bones + The Truth in the Lye + Booth and Brennan probe what appears to be a case of jealousy and insurance money when a man is found dead at a construction site, but new clues send them in a different direction. + + Emily Deschanel + David Boreanaz + Eric Millegan + + Drama + + + TV14 + + + + Bones + The Girl in Suite 2103 + Brennan and Booth investigate an explosion in a Miami hotel where a young woman had burned to death. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The Girl With the Curl + Brennan and Booth investigate a young beauty queen's remains that are discovered at a water filtration plant; Hodgins asks Angela out on a date, which she accepts. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The Woman in the Sand + The skeletal remains of a federal prosecutor, who disappeared five years earlier, are discovered in the desert outside Las Vegas; an anonymous lead takes Booth and Brennan to the world of gambling and underground ultimate fighting. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Bones + The Soldier on the Grave + Booth and Brennan's investigation of an apparent suicide of a protester in Arlington National Cemetery may lead to a military scandal. + + Emily Deschanel + David Boreanaz + Eric Millegan + + Drama + + + TV14 + + + + Bones + The Woman in Limbo + Brennan makes a shocking discovery while trying to identify a Jane Doe; Brennan tries to come to grips with her parents' past. + + Emily Deschanel + David Boreanaz + Eric Millegan + + Drama + + + TV14 + + + + Bones + The Titan on the Tracks + Brennan and Booth investigate the site of a train wreck that includes the bodies of a senator and a high-profile businessman. + + Emily Deschanel + David Boreanaz + Eric Millegan + + Drama + + + TV14 + + + + Bones + Mother and Child in the Bay + The remains of a woman and fetus are found in the Delaware Bay; Brennan and Booth call for a manhunt for the victim's husband; Booth has issues with his ex-wife's boyfriend. + + Emily Deschanel + David Boreanaz + Eric Millegan + + Drama + + + TV14 + + + + Bones + The Boy in the Shroud + Wrapped in a shroud, the body of a young man lies beside an overturned garbage truck; Brennan's past as a foster child influences her judgment; Brennan and Cam butt heads over their work styles; Cam makes threats. + + Emily Deschanel + David Boreanaz + Eric Millegan + + Drama + + + TV14 + + + + Bones + The Blonde in the Game + Brennan and her team match wits with a serial killer to save a girl's life. + + Emily Deschanel + David Boreanaz + Eric Millegan + + Drama + + + TV14 + + + + Bones + The Truth in the Lye + Booth and Brennan probe what appears to be a case of jealousy and insurance money when a man is found dead at a construction site, but new clues send them in a different direction. + + Emily Deschanel + David Boreanaz + Eric Millegan + + Drama + + + TV14 + + + + Bones + The Girl in Suite 2103 + Brennan and Booth investigate an explosion in a Miami hotel where a young woman had burned to death. + + Emily Deschanel + David Boreanaz + T.J. Thyne + + Drama + + + TV14 + + + + Commit or Quit + Friends With Benefits? + Mac's been married once and doesn't want to make the same mistake twice; Unique is ready for a real commitment, but social media is killing their relationship. + Reality TV + + + TV14 + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Help Israel & Ukraine + There is an urgent need to help Jews suffering in Israel, Ukraine, and around the world. Act now and support the International Fellowship of Christians and Jews in their lifesaving work. + Paid Program + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + 9-1-1 + Starting Over + Members of the 118 attempt to rescue a wellness retreat guru after his followers turn on him; an emergency call at an upscale hair salon; Maddie contemplates returning to work, Eddie and May make decisions about their future. + + Angela Bassett + Peter Krause + Oliver Stark + + Drama + + + TV14 + + + + 9-1-1 + Let the Games Begin + When a blimp suffers mechanical failure and its engine catches fire, Athena and the 118 must rescue victims both inside and outside a packed sports stadium; Bobby and Athena drop off May on her first day of college and discuss honeymoon plans. + + Angela Bassett + Peter Krause + Oliver Stark + + Drama + + + TV14 + + + + 9-1-1 + Crash & Learn + The 118 race to the rescue when a structure collapses at a convention; Athena's father suffers a stroke; Hen stretches herself too thin with test prep and her new responsibilities at the 118; Maddie tries to help new recruit get his bearings. + + Angela Bassett + Peter Krause + Oliver Stark + + Drama + + + TV14 + + + + 9-1-1 + The Devil You Know + While in Florida caring for her ailing father, Athena and Bobby investigate the disappearance of her childhood friend from 45 years ago. + + Angela Bassett + Peter Krause + Oliver Stark + + Drama + + + TV14 + + + + 9-1-1 + Home Invasion + Athena investigates when the same house is hit with two home invasion 911 calls within hours of each other; the 118 race to the rescue when a man is trapped in an attic; Hen asks for a second chance with her medical school professor. + + Angela Bassett + Peter Krause + Oliver Stark + + Drama + + + TV14 + + + + 9-1-1 + Tomorrow + Hen fears for Karen's life when an explosion rocks her science lab on the day she brings Denny to work with her. + + Angela Bassett + Peter Krause + Oliver Stark + + Drama + + + TV14 + + + + 9-1-1 + Cursed + Athena and the 118 race to the rescue when a fading movie star is plagued by a series of near-death experiences. + + Angela Bassett + Peter Krause + Oliver Stark + + Drama + + + TV14 + + + + 9-1-1 + What's Your Fantasy? + The 118 race to the rescue to a renaissance faire; an overbearing boss is poisoned; Athena fears for May's life when she encounters a disturbed young man; Uncle Buck babysits young Jee-Yun as Maddie and Chimney begin house-hunting. + + Angela Bassett + Peter Krause + Oliver Stark + + Drama + + + TV14 + + + + 9-1-1 + Red Flag + The Santa Ana winds bring in a variety of weirder-than-usual emergencies; a family dog retrieves a severed hand; a young woman sleep-drives into the station; Denny questions Hen and Karen about his biological parents. + + Angela Bassett + Peter Krause + Oliver Stark + + Drama + + + TV14 + + + + 9-1-1 + In Another Life + As Buck's life hangs in the balance, he dreams of a world where he never became a firefighter, for better and worse. + + Angela Bassett + Peter Krause + Oliver Stark + + Drama + + + TV14 + + + + 9-1-1 + Recovery + Despite the case being closed, Bobby is determined to prove his Alcoholics Anonymous sponsor was murdered and bring his killer to justice; Buck struggles with his post-traumatic stress. + + Angela Bassett + Peter Krause + Oliver Stark + + Drama + + + TV14 + + + + 9-1-1 + Mixed Feelings + The 118 faces emergencies at a spin class and a hair salon; a husband and wife find themselves in a compromising position; Buck discovers new cognitive abilities; Hen and Karen find out Denny has been seeing his biological father. + + Angela Bassett + Peter Krause + Oliver Stark + + Drama + + + TV14 + + + + 9-1-1 + Performance Anxiety + The 118 race to emergencies at a commercial bakery and a bodybuilding competition; Bobby's annual performance reviews send Chimney to the firefighter academy, where he runs into a familiar face; Eddie's aunt gets involved in his personal life. + + Angela Bassett + Peter Krause + Oliver Stark + + Drama + + + TV14 + + + + 9-1-1 + Death and Taxes + A fire breaks out in an accountant's office and a car crashes into a. + + Angela Bassett + Peter Krause + Oliver Stark + + Drama + + + TV14 + + + + 9-1-1 + Lost & Found + The 118 race to rescue two roommates desperately trying to find a needle in a haystack at a landfill, and help a woman whose nightmare dream suddenly becomes a painful reality; Athena and Maddie team up to find a missing boy in a crowded mall. + + Angela Bassett + Peter Krause + Oliver Stark + + Drama + + + TV14 + + + + 9-1-1 + Starting Over + Members of the 118 attempt to rescue a wellness retreat guru after his followers turn on him; an emergency call at an upscale hair salon; Maddie contemplates returning to work, Eddie and May make decisions about their future. + + Angela Bassett + Peter Krause + Oliver Stark + + Drama + + + TV14 + + + + 9-1-1 + Let the Games Begin + When a blimp suffers mechanical failure and its engine catches fire, Athena and the 118 must rescue victims both inside and outside a packed sports stadium; Bobby and Athena drop off May on her first day of college and discuss honeymoon plans. + + Angela Bassett + Peter Krause + Oliver Stark + + Drama + + + TV14 + + + + 9-1-1 + Crash & Learn + The 118 race to the rescue when a structure collapses at a convention; Athena's father suffers a stroke; Hen stretches herself too thin with test prep and her new responsibilities at the 118; Maddie tries to help new recruit get his bearings. + + Angela Bassett + Peter Krause + Oliver Stark + + Drama + + + TV14 + + + + Commit or Quit + Bridging the Gap + Bridgit and James battle with infidelity, finances, a 20-year age gap, and keeping secrets; the elephant in the room is the size of a house, and they need Judge Toler's help to decide whether their love is worth fighting for. + Reality TV + + + TV14 + + + + Home Title Theft is Real! Home Title Lock Protects Your Title 24/7 + When a criminal fraudulently transfers your home title to a fake identity and steals your title, no one will notify you. Not your county, not the police, not even your bank. Home Title Lock protects your title 24/7 from this this fast-growing crime. + Paid Program + + + + Best Cooling Topper for Back & Hip Pain! + Dormeo Mattress Topper Transforms Your Bed To Get A Great Night's Sleep. Soothing & Cooling. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + Amazing Abs + Tone, tighten and burn fat - In seated comfort! Transform your entire body with the Ab Doer 360! + Paid Program + + + + Relief from Inflammation + Connie Craig-Carrol & Founder Ken Meares investigates Omega XL, the ultimate all-natural solution for joint pain from inflammation. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + House Call TV: New Hope For Aging Joints + Frustrated by aching joints and stiffness holding you back? Learn how to regain joint comfort and flexibility at any age. Results starting in just 5 days! + Paid Program + + + + Car Repair Secrets! + Save thousands on car repairs. + Paid Program + + + + True Crime 2023: Who Stole My Life? + Every 3 seconds an American's identity is stolen. Just how safe is your 401k? Your bank account? Your home? Your credit? Crime Reporter Tom Morris Jr. investigates the identity theft epidemic. Find out how you can help protect yourself with LifeLock. + Paid Program + + + + Humana Medicare Advantage Plans + The Medicare annual election period ends on December 7. Watch and learn about Humana Medicare Advantage plans. Otherwise, if you need more information about the plans specifically, you can go online here - https://www.humana.com/medicare. + Paid Program + + + + NCIS + Brothers in Arms + Gibbs and the team must take action after the director's risky solo meeting with an informant ends with a death. + + Mark Harmon + Michael Weatherly + Cote de Pablo + + Drama + + + TVPG + + + + NCIS + In the Dark + The team turns to a blind photographer (John Billingsley) to use his heightened senses of hearing and smell to re-create a crime scene and track down a petty officer's killer. + + Mark Harmon + Michael Weatherly + Cote de Pablo + + Drama + + + TVPG + + + + NCIS + Trojan Horse + Gibbs leads the investigation into a murder victim found in a taxi headed to NCIS headquarters; Jenny discovers a secret about her past. + + Mark Harmon + Michael Weatherly + Cote de Pablo + + Drama + + + TVPG + + + + NCIS + Angel of Death + Upon the director's return from a European junket, the team's secrets unravel; a merciless drug dealer holds Dinozzo and his girlfriend captive. + + Mark Harmon + Michael Weatherly + Cote de Pablo + + Drama + + + TV14 + + + + NCIS + Bury Your Dead + A showdown between the NCIS team and an elusive arms dealer reaches an explosive conclusion. + + Mark Harmon + Michael Weatherly + Cote de Pablo + + Drama + + + TV14 + + + + NCIS + Family + Ducky makes a startling discovery that leads to the search for a missing child; Tony struggles to deal with his feelings for Jeanne. + + Mark Harmon + Michael Weatherly + Cote de Pablo + + Drama + + + TV14 + + + + El remix + Actores jóvenes y veteranos harán reír hasta el cansancio con una comedia urbana que presenta la realidad que vive Puerto Rico. + Performing Arts + + + TVPG + + + + En una semana + Presentando el resumen de las noticias más importantes de la semana. + Variety + + + TVPG + + + + Película + Lo mejor del arte cinematográfico mundial. + Performing Arts + + + + El remix + Actores jóvenes y veteranos harán reír hasta el cansancio con una comedia urbana que presenta la realidad que vive Puerto Rico. + Performing Arts + + + TVPG + + + + Será anunciado + Programación que se anunciará. + News + Performing Arts + + + TVPG + + + + En una semana + Presentando el resumen de las noticias más importantes de la semana. + Variety + + + TVPG + + + + Mobil 1 The Grid + Destacados de deportes de motor a nivel nacional en un dinámico formato magazín. + Sports + Automotive + + + + Noticentro sábado 5 p. m. + Presenta las noticias más importantes del día junto al informe del tiempo. + News + + + TVPG + + + + En una semana + Presentando el resumen de las noticias más importantes de la semana. + Variety + + + TVPG + + + + Carmelo y Punto + Carmelo es el dueño del hotel La Providencia. Su hijo, Angelito, es una mezcla entre genio y despistado. Penchi es novia de Angelito, solo que él no lo sabe. Segunda buscar llamar la atención de Carmelo. + + Raul Davila + Luz María Rondón + Luis Oliva + + Comedy + + + TVG + + + + Carmelo y Punto + Carmelo es el dueño del hotel La Providencia. Su hijo, Angelito, es una mezcla entre genio y despistado. Penchi es novia de Angelito, solo que él no lo sabe. Segunda buscar llamar la atención de Carmelo. + + Raul Davila + Luz María Rondón + Luis Oliva + + Comedy + + + TVG + + + + Carmelo y Punto + Carmelo es el dueño del hotel La Providencia. Su hijo, Angelito, es una mezcla entre genio y despistado. Penchi es novia de Angelito, solo que él no lo sabe. Segunda buscar llamar la atención de Carmelo. + + Raul Davila + Luz María Rondón + Luis Oliva + + Comedy + + + TVG + + + + Carmelo y Punto + Carmelo es el dueño del hotel La Providencia. Su hijo, Angelito, es una mezcla entre genio y despistado. Penchi es novia de Angelito, solo que él no lo sabe. Segunda buscar llamar la atención de Carmelo. + + Raul Davila + Luz María Rondón + Luis Oliva + + Comedy + + + TVG + + + + Family K + Cinco súper héroes provenientes del Planeta K son capaces de vencer el mal. Esta es una serie que promueve el respeto y la tolerancia, y explica que estos valores son fundamentales para crear entre todos un mundo mejor. + Instructional + + + + Family K + Cinco súper héroes provenientes del Planeta K son capaces de vencer el mal. Esta es una serie que promueve el respeto y la tolerancia, y explica que estos valores son fundamentales para crear entre todos un mundo mejor. + Instructional + + + + Mobil 1 The Grid + Destacados de deportes de motor a nivel nacional en un dinámico formato magazín. + Sports + Automotive + + + + Mobil 1 The Grid + Destacados de deportes de motor a nivel nacional en un dinámico formato magazín. + Sports + Automotive + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Mobil 1 The Grid + Destacados de deportes de motor a nivel nacional en un dinámico formato magazín. + Sports + Automotive + + + + Mobil 1 The Grid + Destacados de deportes de motor a nivel nacional en un dinámico formato magazín. + Sports + Automotive + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Super Estrellas de la Lucha Libre + Las mejores peleas de lucha libre. + Sports + + + TVPG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Noticentro domingo 5 p. m. + Presentación de las noticias más importantes del día junto al informe del tiempo. + News + + + TVPG + + + + Cuarto poder + Un espacio con análisis político y cobertura en profundidad de los temas más relevantes y controversiales en el mundo de la política, finanzas y asuntos públicos. + News + + + + Película + Lo mejor del arte cinematográfico mundial. + Performing Arts + + + + El remix + Actores jóvenes y veteranos harán reír hasta el cansancio con una comedia urbana que presenta la realidad que vive Puerto Rico. + Performing Arts + + + TVPG + + + + Noticentro domingo 10 p. m. + Una actualización informativa con el resumen de las noticias más importantes del día. + News + + + + Película + Lo mejor del arte cinematográfico mundial. + Performing Arts + + + + Película + Lo mejor del arte cinematográfico mundial. + Performing Arts + + + + Película + Lo mejor del arte cinematográfico mundial. + Performing Arts + + + + Cuarto poder + Un espacio con análisis político y cobertura en profundidad de los temas más relevantes y controversiales en el mundo de la política, finanzas y asuntos públicos. + News + + + + Pégate al mediodía + Programa variado para disfrutar la hora del almuerzo. Juegos, comedia, entrevistas y una de las secciones más comentadas en el país. + News Magazine + Performing Arts + + + TVG + + + + Lo sé todo + El mejor equipo de entretenimiento mezcla el humor con investigación, además de entrevistas a artistas invitados, se realizan denuncias sociales y políticas y también hay espacio para la última información de la farándula. + News + Variety + + + TVPG + + + + Noticentro al amanecer: Primera edición + Las noticias actualizadas y de impacto que ocurrieron en la noche anterior y en la madrugada. + News + + + TVPG + + + + Noticentro al amanecer + Un espacio que ofrece las noticias del día de una manera refrescante. Además, la presentación de los informes actualizados del tiempo y el tránsito. + News + + + TVPG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Noticentro 11 a. m. + Un resumen de las noticias recientes sobre el país, deportes y el tiempo. Además, se presenta un adelanto de lo que se podrá conocer en la edición estelar. + News + + + TVPG + + + + Pégate al mediodía + Programa variado para disfrutar la hora del almuerzo. Juegos, comedia, entrevistas y una de las secciones más comentadas en el país. + News Magazine + Performing Arts + + + TVG + + + + Viva la tarde + Un espacio refrescante para disfrutar la tarde con las mejores comedias, entrevistas variadas y la creatividad de colaboradores expertos en diversos temas. + Performing Arts + + + TVPG + + + + Almas heridas + La historia de Safiye y Gülben, dos hermanas que poseen una personalidad muy obsesiva. Además, tienen un hermano llamado Han, quien siempre se preocupa por su familia y por su padre. + + Birkan Sokullu + Merve Dizdar + Ezgi Mola + + Drama + + + + Los datos son los datos + Un espacio de análisis que presenta debates de temas de actualidad y entrevistas a personalidades clave. + News + + + + Noticentro edición estelar + Un espacio que informa sobre las noticias más destacadas, en un formato dinámico, y presenta la discusión de temas que afectan al país junto a un panel de analistas. Además, se ofrece el informe y pronóstico del tiempo. + News + + + + Lo sé todo + El mejor equipo de entretenimiento mezcla el humor con investigación, además de entrevistas a artistas invitados, se realizan denuncias sociales y políticas y también hay espacio para la última información de la farándula. + News + Variety + + + TVPG + + + + Elif + Melek se enamora de Kenan, el hijo favorito de la familia para la que trabajaba. Pero la madre de Kenan la rechaza y la envía lejos a pesar de estar embarazada. La hija de ambos, Elif, nace mientras su padre se casa con otra mujer. + + Isabella Damla Güvenilir + Selin Sezgin + Altug Seçkiner + + Soaps + Drama + + + TVG + + + + Noticentro América + Noticiero dirigido a las comunidades hispanas en Estados Unidos. Un espacio para conocer las noticias locales e internaciones de interés. + News + + + + Elif una parte de mí + Regular + + + + Lo sé todo + El mejor equipo de entretenimiento mezcla el humor con investigación, además de entrevistas a artistas invitados, se realizan denuncias sociales y políticas y también hay espacio para la última información de la farándula. + News + Variety + + + TVPG + + + + Noticentro 11 p. m. + Información actualizada y un resumen de las noticias más importantes del día. + News + + + + Los datos son los datos + Un espacio de análisis que presenta debates de temas de actualidad y entrevistas a personalidades clave. + News + + + + Noticentro América + Noticiero dirigido a las comunidades hispanas en Estados Unidos. Un espacio para conocer las noticias locales e internaciones de interés. + News + + + + Lo sé todo + El mejor equipo de entretenimiento mezcla el humor con investigación, además de entrevistas a artistas invitados, se realizan denuncias sociales y políticas y también hay espacio para la última información de la farándula. + News + Variety + + + TVPG + + + + Viva la tarde + Un espacio refrescante para disfrutar la tarde con las mejores comedias, entrevistas variadas y la creatividad de colaboradores expertos en diversos temas. + Performing Arts + + + TVPG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Noticentro al amanecer: Primera edición + Las noticias actualizadas y de impacto que ocurrieron en la noche anterior y en la madrugada. + News + + + TVPG + + + + Noticentro al amanecer + Un espacio que ofrece las noticias del día de una manera refrescante. Además, la presentación de los informes actualizados del tiempo y el tránsito. + News + + + TVPG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Noticentro 11 a. m. + Un resumen de las noticias recientes sobre el país, deportes y el tiempo. Además, se presenta un adelanto de lo que se podrá conocer en la edición estelar. + News + + + TVPG + + + + Pégate al mediodía + Programa variado para disfrutar la hora del almuerzo. Juegos, comedia, entrevistas y una de las secciones más comentadas en el país. + News Magazine + Performing Arts + + + TVG + + + + Viva la tarde + Un espacio refrescante para disfrutar la tarde con las mejores comedias, entrevistas variadas y la creatividad de colaboradores expertos en diversos temas. + Performing Arts + + + TVPG + + + + Almas heridas + La historia de Safiye y Gülben, dos hermanas que poseen una personalidad muy obsesiva. Además, tienen un hermano llamado Han, quien siempre se preocupa por su familia y por su padre. + + Birkan Sokullu + Merve Dizdar + Ezgi Mola + + Drama + + + + Los datos son los datos + Un espacio de análisis que presenta debates de temas de actualidad y entrevistas a personalidades clave. + News + + + + Noticentro edición estelar + Un espacio que informa sobre las noticias más destacadas, en un formato dinámico, y presenta la discusión de temas que afectan al país junto a un panel de analistas. Además, se ofrece el informe y pronóstico del tiempo. + News + + + + Lo sé todo + El mejor equipo de entretenimiento mezcla el humor con investigación, además de entrevistas a artistas invitados, se realizan denuncias sociales y políticas y también hay espacio para la última información de la farándula. + News + Variety + + + TVPG + + + + Elif + Melek se enamora de Kenan, el hijo favorito de la familia para la que trabajaba. Pero la madre de Kenan la rechaza y la envía lejos a pesar de estar embarazada. La hija de ambos, Elif, nace mientras su padre se casa con otra mujer. + + Isabella Damla Güvenilir + Selin Sezgin + Altug Seçkiner + + Soaps + Drama + + + TVG + + + + Noticentro América + Noticiero dirigido a las comunidades hispanas en Estados Unidos. Un espacio para conocer las noticias locales e internaciones de interés. + News + + + + Elif una parte de mí + Regular + + + + Cuarto poder + Un espacio con análisis político y cobertura en profundidad de los temas más relevantes y controversiales en el mundo de la política, finanzas y asuntos públicos. + News + + + + Noticentro 11 p. m. + Información actualizada y un resumen de las noticias más importantes del día. + News + + + + Los datos son los datos + Un espacio de análisis que presenta debates de temas de actualidad y entrevistas a personalidades clave. + News + + + + Noticentro América + Noticiero dirigido a las comunidades hispanas en Estados Unidos. Un espacio para conocer las noticias locales e internaciones de interés. + News + + + + Lo sé todo + El mejor equipo de entretenimiento mezcla el humor con investigación, además de entrevistas a artistas invitados, se realizan denuncias sociales y políticas y también hay espacio para la última información de la farándula. + News + Variety + + + TVPG + + + + Viva la tarde + Un espacio refrescante para disfrutar la tarde con las mejores comedias, entrevistas variadas y la creatividad de colaboradores expertos en diversos temas. + Performing Arts + + + TVPG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Noticentro al amanecer: Primera edición + Las noticias actualizadas y de impacto que ocurrieron en la noche anterior y en la madrugada. + News + + + TVPG + + + + Noticentro al amanecer + Un espacio que ofrece las noticias del día de una manera refrescante. Además, la presentación de los informes actualizados del tiempo y el tránsito. + News + + + TVPG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Noticentro 11 a. m. + Un resumen de las noticias recientes sobre el país, deportes y el tiempo. Además, se presenta un adelanto de lo que se podrá conocer en la edición estelar. + News + + + TVPG + + + + Pégate al mediodía + Programa variado para disfrutar la hora del almuerzo. Juegos, comedia, entrevistas y una de las secciones más comentadas en el país. + News Magazine + Performing Arts + + + TVG + + + + Viva la tarde + Un espacio refrescante para disfrutar la tarde con las mejores comedias, entrevistas variadas y la creatividad de colaboradores expertos en diversos temas. + Performing Arts + + + TVPG + + + + Almas heridas + La historia de Safiye y Gülben, dos hermanas que poseen una personalidad muy obsesiva. Además, tienen un hermano llamado Han, quien siempre se preocupa por su familia y por su padre. + + Birkan Sokullu + Merve Dizdar + Ezgi Mola + + Drama + + + + Los datos son los datos + Un espacio de análisis que presenta debates de temas de actualidad y entrevistas a personalidades clave. + News + + + + Noticentro edición estelar + Un espacio que informa sobre las noticias más destacadas, en un formato dinámico, y presenta la discusión de temas que afectan al país junto a un panel de analistas. Además, se ofrece el informe y pronóstico del tiempo. + News + + + + Lo sé todo + El mejor equipo de entretenimiento mezcla el humor con investigación, además de entrevistas a artistas invitados, se realizan denuncias sociales y políticas y también hay espacio para la última información de la farándula. + News + Variety + + + TVPG + + + + Cricket Highlights + Icc CWC 2023: England vs Australia - 36th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: New Zealand vs Pakistan - 35th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: New Zealand vs South Africa - 32nd Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: New Zealand vs Pakistan - 35th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: England vs Australia - 36th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: New Zealand vs South Africa - 32nd Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: New Zealand vs South Africa - 32nd Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: England vs Australia - 36th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Preview + Icc CWC 2023: India vs South Africa - 37th Match + A preview of an upcoming cricket match. + Sports + Cricket + + + + South Africa vs. India + India vs. South Africa + From Eden Gardens in Kolkata, West Bengal, India. + Sports + Cricket + + + + South Africa vs. India + India vs. South Africa + From Eden Gardens in Kolkata, West Bengal, India. + Sports + Cricket + + + + Cricket Review + Icc CWC 2023: India vs South Africa - 37th Match + Action from cricket matches around the world. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: England vs Australia - 36th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: New Zealand vs Pakistan - 35th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: England vs Australia - 36th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: India vs Sri Lanka - 33rd Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: India vs South Africa - 37th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: England vs Australia - 36th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: India vs South Africa - 37th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: England vs Australia - 36th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: India vs South Africa - 37th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: India vs Sri Lanka - 33rd Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: England vs Australia - 36th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: India vs South Africa - 37th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: New Zealand vs Pakistan - 35th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: India vs Sri Lanka - 33rd Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: India vs South Africa - 37th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Preview + Icc CWC 2023: Bangladesh vs Sri Lanka - 38th Match + A preview of an upcoming cricket match. + Sports + Cricket + + + + Sri Lanka vs. Bangladesh + Bangladesh vs. Sri Lanka + From Arun Jaitley Stadium in Delhi, Delhi, India. + Sports + Cricket + + + + Sri Lanka vs. Bangladesh + Bangladesh vs. Sri Lanka + From Arun Jaitley Stadium in Delhi, Delhi, India. + Sports + Cricket + + + + Cricket Review + Icc CWC 2023: Bangladesh vs Sri Lanka - 38th Match + Action from cricket matches around the world. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: India vs South Africa - 37th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: England vs Australia - 36th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: India vs South Africa - 37th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: Netherlands vs Afghanistan - 34th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: Bangladesh vs Sri Lanka - 38th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: India vs South Africa - 37th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: Bangladesh vs Sri Lanka - 38th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: India vs South Africa - 37th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: Bangladesh vs Sri Lanka - 38th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: Netherlands vs Afghanistan - 34th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: India vs South Africa - 37th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: Bangladesh vs Sri Lanka - 38th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: India vs South Africa - 37th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: Netherlands vs Afghanistan - 34th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: Bangladesh vs Sri Lanka - 38th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Preview + Icc CWC 2023: Australia vs Afghanistan - 39th Match + A preview of an upcoming cricket match. + Sports + Cricket + + + + Afghanistan vs. Australia + Australia vs. Afghanistan + From Wankhede Stadium in Mumbai, Maharashtra, India. + Sports + Cricket + + + + Afghanistan vs. Australia + Australia vs. Afghanistan + From Wankhede Stadium in Mumbai, Maharashtra, India. + Sports + Cricket + + + + Cricket Review + Icc CWC 2023: Australia vs Afghanistan - 39th Match + Action from cricket matches around the world. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: Bangladesh vs Sri Lanka - 38th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: India vs South Africa - 37th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: Bangladesh vs Sri Lanka - 38th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: England vs Australia - 36th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: Australia vs Afghanistan - 39th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: Bangladesh vs Sri Lanka - 38th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: Australia vs Afghanistan - 39th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: Australia vs Afghanistan - 39th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: England vs Australia - 36th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: Bangladesh vs Sri Lanka - 38th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: Australia vs Afghanistan - 39th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: Bangladesh vs Sri Lanka - 38th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: New Zealand vs Pakistan - 35th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: Australia vs Afghanistan - 39th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Preview + Icc CWC 2023: England vs Netherlands - 40th Match + A preview of an upcoming cricket match. + Sports + Cricket + + + + Netherlands vs. England + England vs. Netherlands + From Maharashtra Cricket Association Stadium in Pune, Maharashtra, India. + Sports + Cricket + + + + Netherlands vs. England + England vs. Netherlands + From Maharashtra Cricket Association Stadium in Pune, Maharashtra, India. + Sports + Cricket + + + + Cricket Review + Icc CWC 2023: England vs Netherlands - 40th Match + Action from cricket matches around the world. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: Australia vs Afghanistan - 39th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: Bangladesh vs Sri Lanka - 38th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: Australia vs Afghanistan - 39th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: Bangladesh vs Sri Lanka - 38th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: England vs Netherlands - 40th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: Australia vs Afghanistan - 39th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: England vs Netherlands - 40th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Cricket Highlights + Icc CWC 2023: Australia vs Afghanistan - 39th Match + Highlights of all the action from international cricket tournaments, where teams compete to win the prestigious title. + Sports + Cricket + + + + Women's Big Bash League Cricket Highlights + Melbourne Stars vs. Sydney Thunder + Melbourne Stars vs. Sydney Thunder. + 2021 + Pro Sports + Sports + + + One Day International Cricket Highlights + Afghanistan vs. Pakistan + Afghanistan vs. Pakistan. + 2023 + + + Women's Big Bash League Cricket Highlights + Hobart Hurricanes vs. Brisbane Heat + Hobart Hurricanes vs. Brisbane Heat. + 2020 + Pro Sports + Sports + + + Women's Big Bash League Cricket Preview + Previewing action in Australia's pro Twenty20 cricket league, with round-robin and knockout rounds. (live). + Sports + + + Women's Big Bash League Cricket + Sydney Sixers vs. Melbourne Renegades + (live). + 2023 + + + Women's Big Bash League Cricket Review + A wrap-up of the women's Big Bash League action in Australia. (live). + Pro Sports + Sports + + + ICC Cricket World Cup Preview + (live). + + + ICC Men's Cricket World Cup India 2023 + India vs. South Africa + (live). + 2023 + Sports + + + ICC Men's Cricket World Cup India 2023 + India vs. South Africa + (live). + 2023 + Sports + + + ICC Cricket World Cup Review + (live). + + + Women's T20 Cricket Highlights + Australia vs. West Indies + + + T20 Cricket Highlights + UAE vs. New Zealand + UAE vs. New Zealand. + 2023 + + + Women's Big Bash League Cricket Highlights + Sydney Sixers vs. Melbourne Renegades + Sydney Sixers vs. Melbourne Renegades. + 2020 + Pro Sports + Sports + + + Women's Big Bash League Cricket Highlights + Perth Scorchers vs Adelaide Strikers + Perth Scorchers vs. Adelaide Strikers. + 2020 + Pro Sports + Sports + + + One Day International Cricket Highlights + Afghanistan vs. Pakistan + Afghanistan vs. Pakistan. + 2023 + + + Women's Big Bash League Cricket Highlights + Sydney Sixers vs. Melbourne Renegades + Sydney Sixers vs. Melbourne Renegades. + 2020 + Pro Sports + Sports + + + Women's Big Bash League Cricket Highlights + Perth Scorchers vs Adelaide Strikers + Perth Scorchers vs. Adelaide Strikers. + 2020 + Pro Sports + Sports + + + Major League T20 Cricket Highlights + Seattle Orcas vs. MI New York + Seattle Orcas vs. MI New York. + 2023 + + + International Test Cricket Highlights + England vs. Australia + England vs. Australia. + 2023 + + + Women's Big Bash League Cricket Highlights + Sydney Sixers vs. Melbourne Renegades + Sydney Sixers vs. Melbourne Renegades. + 2020 + Pro Sports + Sports + + + Women's Big Bash League Cricket Highlights + Perth Scorchers vs Adelaide Strikers + Perth Scorchers vs. Adelaide Strikers. + 2020 + Pro Sports + Sports + + + T20 Cricket Highlights + Ireland vs. India + Ireland vs. India. + 2022 + + + Women's Big Bash League Cricket Highlights + Sydney Sixers vs. Melbourne Renegades + Sydney Sixers vs. Melbourne Renegades. + 2020 + Pro Sports + Sports + + + Women's T20 Cricket Highlights + Australia vs. West Indies + + + Lanka Premier League Cricket Highlights + Kandy Falcons vs. Jaffna Kings + Kandy Falcons vs. Jaffna Kings in the eliminator match. + 2023 + Sports + + + ICC Cricket World Cup Preview + (live). + + + ICC Men's Cricket World Cup India 2023 + Bangladesh vs. Sri Lanka + (live). + 2023 + Sports + + + ICC Men's Cricket World Cup India 2023 + Bangladesh vs. Sri Lanka + (live). + 2023 + Sports + + + ICC Cricket World Cup Review + (live). + + + Women's T20 Cricket Highlights + Australia vs. West Indies + + + The Hundred Cricket Highlights + Oval Invincibles vs. Manchester Originals + + + Women's Big Bash League Cricket Highlights + Sydney Thunder vs. Brisbane Heat + Sydney Thunder vs. Brisbane Heat. + 2018 + Pro Sports + Sports + + + Women's T20 Cricket Highlights + South Africa vs. New Zealand + + + Lanka Premier League Cricket Highlights + Dambulla Aura vs. Kandy Falcons + Dambulla Aura vs. Kandy Falcons. + 2023 + Sports + + + Women's Big Bash League Cricket Highlights + Sydney Thunder vs. Brisbane Heat + Sydney Thunder vs. Brisbane Heat. + 2018 + Pro Sports + Sports + + + T20 Cricket Highlights + Ireland vs. India + Ireland vs. India. + 2022 + + + Women's Big Bash League Cricket Highlights + Sydney Thunder vs. Brisbane Heat + Sydney Thunder vs. Brisbane Heat. + 2018 + Pro Sports + Sports + + + One Day International Cricket Highlights + Afghanistan vs. Pakistan + Afghanistan vs. Pakistan. + 2023 + + + Women's Big Bash League Cricket Highlights + Sydney Thunder vs. Brisbane Heat + Sydney Thunder vs. Brisbane Heat. + 2018 + Pro Sports + Sports + + + T20 Cricket Highlights + UAE vs. New Zealand + UAE vs. New Zealand. + 2023 + + + Women's Big Bash League Cricket Highlights + Sydney Thunder vs. Brisbane Heat + Sydney Thunder vs. Brisbane Heat. + 2018 + Pro Sports + Sports + + + Lanka Premier League Cricket Highlights + Dambulla Aura vs. Kandy Falcons + Dambulla Aura vs. Kandy Falcons. + 2023 + Sports + + + One Day International Cricket Highlights + Afghanistan vs. Pakistan + Afghanistan vs. Pakistan. + 2023 + + + Major League T20 Cricket Highlights + Washington Freedom vs. MI New York + Washington Freedom vs. MI New York. + 2023 + + + ICC Cricket World Cup Preview + (live). + + + ICC Men's Cricket World Cup India 2023 + Australia vs. Afghanistan + Australia vs. Afghanistan in a group-stage match in Mumbai, India. From Wankhede Stadium. (live). + 2023 + Sports + + + ICC Men's Cricket World Cup India 2023 + Australia vs. Afghanistan + Australia vs. Afghanistan in a group-stage match in Mumbai, India. From Wankhede Stadium. (live). + 2023 + Sports + + + ICC Cricket World Cup Review + (live). + + + Women's T20 Cricket Highlights + Australia vs. West Indies + + + Women's T20 Cricket Highlights + England vs. Sri Lanka + England vs. Sri Lanka. + 2023 + + + International Test Cricket Highlights + England vs. Australia + England vs. Australia. + 2023 + + + International Test Cricket Highlights + England vs. Australia + England vs. Australia. + 2023 + + + Women's One-Day International Cricket Highlights + England vs. Sri Lanka + + + Women's One-Day International Cricket Highlights + South Africa vs. New Zealand + + + Major League T20 Cricket Highlights + Washington Freedom vs. MI New York + Washington Freedom vs. MI New York. + 2023 + + + One Day International Cricket Highlights + Afghanistan vs. Pakistan + Afghanistan vs. Pakistan. + 2023 + + + Women's Big Bash League Cricket Highlights + Sydney Thunder vs. Brisbane Heat + Sydney Thunder vs. Brisbane Heat. + 2018 + Pro Sports + Sports + + + Lanka Premier League Cricket Highlights + Kandy Falcons vs. Galle Titans + Kandy Falcons vs. Galle Titans. + 2023 + Sports + + + Women's T20 Cricket Highlights + England vs. Sri Lanka + England vs. Sri Lanka. + 2023 + + + Women's Big Bash League Cricket Highlights + Sydney Thunder vs. Brisbane Heat + Sydney Thunder vs. Brisbane Heat. + 2018 + Pro Sports + Sports + + + Cricket Filler + Cricket highlights, features and discussion. + + + Women's Big Bash League Cricket Preview + Previewing action in Australia's pro Twenty20 cricket league, with round-robin and knockout rounds. (live). + Sports + + + Women's Big Bash League Cricket + Melbourne Stars vs. Sydney Sixers + (live). + 2023 + + + ICC Cricket World Cup Preview + (live). + + + ICC Men's Cricket World Cup India 2023 + England vs. Netherlands + England vs. Netherlands in a group-stage match in Pune, India. From Maharashtra Cricket Association Stadium. (live). + 2023 + Sports + + + ICC Men's Cricket World Cup India 2023 + England vs. Netherlands + England vs. Netherlands in a group-stage match in Pune, India. From Maharashtra Cricket Association Stadium. (live). + 2023 + Sports + + + ICC Cricket World Cup Review + (live). + + + T20 Cricket Highlights + Ireland vs. India + Ireland vs. India. + 2022 + + + One Day International Cricket Highlights + Afghanistan vs. Pakistan + Afghanistan vs. Pakistan. + 2023 + + + Women's Big Bash League Cricket Highlights + Melbourne Stars vs. Sydney Sixers + Melbourne Stars vs. Sydney Sixers. + 2021 + Pro Sports + Sports + + + Women's Big Bash League Cricket Highlights + Adelaide Strikers vs. Melbourne Renegades + Adelaide Strikers vs. Melbourne Renegades. + 2021 + Pro Sports + Sports + + + T20 Cricket Highlights + UAE vs. New Zealand + UAE vs. New Zealand. + 2023 + + + Women's Big Bash League Cricket Highlights + Melbourne Stars vs. Sydney Sixers + Melbourne Stars vs. Sydney Sixers. + 2021 + Pro Sports + Sports + + + Women's Big Bash League Cricket Highlights + Adelaide Strikers vs. Melbourne Renegades + Adelaide Strikers vs. Melbourne Renegades. + 2021 + Pro Sports + Sports + + + The Hundred Cricket Highlights + Manchester Originals vs. Southern Brave + Manchester Originals vs. Southern Brave. + 2023 + + + MLF All Angles + Inside the Team Series Championship- Match 1, Day 1 + An inside look at the Team Series Championship Match 1, Day 1, with angler commentary. + 2023 + + TV-G + + + + Pro Team Journal + Great Lakes Largemouth With Mark Zona + Strike King pro Mark Zona targets aggressive Largemouth Bass on the Great Lakes. + 2023 + Sports + + + Zona's Awesome Fishing Show + Seth Feider - Minnesota - Part 1 + Fresh off a Bassmaster Angler of the Year run, Seth Feider head's out with Zona on an unexplored lake and they find the right ones. + + Mark Zona + + 2022 + Sports + + + The Hunt for Monster Bass + Big Bass of Texas + + Ott DeFoe + + 2023 + Sports + + + Major League Fishing's Bass Pro Tour + Stage 6 Championship Round + 2023 + + TV-G + + + + MLF All Angles + Inside the Team Series Championship- Match 1, Day 1 + An inside look at the Team Series Championship Match 1, Day 1, with angler commentary. + 2023 + + TV-G + + + + Pro Team Journal + Great Lakes Largemouth With Mark Zona + Strike King pro Mark Zona targets aggressive Largemouth Bass on the Great Lakes. + 2023 + Sports + + + Zona's Awesome Fishing Show + Seth Feider - Minnesota - Part 1 + Fresh off a Bassmaster Angler of the Year run, Seth Feider head's out with Zona on an unexplored lake and they find the right ones. + + Mark Zona + + 2022 + Sports + + + The Hunt for Monster Bass + Big Bass of Texas + + Ott DeFoe + + 2023 + Sports + + + Mlf5 + 2023 Tackle Warehouse Invitationals stop 4 + 2023 + + + Mlf5 + 2023 Tackle Warehouse Invitationals stop 4 + 2023 + + + MLF All Angles + Inside the Team Series Championship- Match 1, Day 1 + An inside look at the Team Series Championship Match 1, Day 1, with angler commentary. + 2023 + + TV-G + + + + Pro Team Journal + Great Lakes Largemouth With Mark Zona + Strike King pro Mark Zona targets aggressive Largemouth Bass on the Great Lakes. + 2023 + Sports + + + Zona's Awesome Fishing Show + Seth Feider - Minnesota - Part 1 + Fresh off a Bassmaster Angler of the Year run, Seth Feider head's out with Zona on an unexplored lake and they find the right ones. + + Mark Zona + + 2022 + Sports + + + The Hunt for Monster Bass + Big Bass of Texas + + Ott DeFoe + + 2023 + Sports + + + Trev Gowdy's Monster Fish + Canadian Sturgeon + Fred Lavitman searches for the 1000-pound sturgeon of Fraser River. + + Trevor Gowdy + Dennis Braid + + 2018 + Sports + S10 E8 + + + In-Fisherman TV + Fishing Topics of Our Times + 2023 + + TV-MA + + + + Live Bait + Secretary of State + 2023 + + + Westcoast Sporting Journal + SPOON RIGGING FOR KINGS + + + Lindner's Angling Edge + Finesse Factors for Summer Smallmouths + 2023 + + TV-G + + + + Jimmy Houston Outdoors + St Lawrence Samllmouth + + Jimmy Houston + + 2023 + Sports + + TV-PG + + + + Mlf5 + 2023 Tackle Warehouse Invitationals stop 4 + 2023 + + + MLF All Angles + Inside the Team Series Championship- Match 1, Day 1 + An inside look at the Team Series Championship Match 1, Day 1, with angler commentary. + 2023 + + TV-G + + + + Pro Team Journal + Great Lakes Largemouth With Mark Zona + Strike King pro Mark Zona targets aggressive Largemouth Bass on the Great Lakes. + 2023 + Sports + + + Uncharted Waters With Peter Miller + Wahoo and Swordfish in the Keys PART 1 + + Peter Miller + + 2023 + Travel + Sports + + TV-PG + + + + Florida Sport Fishing + Master of the Deep P.1 + 2023 + + + Bigwater Adventures + Crocodile Bay, Costa Rica Inshore Fishing + 2023 + + + Facts of Fishing + Searchin' With the Jerk + Dave is on a small high-tech boat with a buddy to reel in a good number of springtime smallmouths. They are in the middle of Lake Ontario and he is going to use a jerk bait, which works well in cold water. + 2023 + + + Fishing University + Fall Fishing on Wappapello Lake + Charlie and Ray learn about boating accessories and catch fall bass on Wappapello Lake in Missouri. + 2023 + + TV-G + + + + The Hunt for Monster Bass + Big Bass of Texas + + Ott DeFoe + + 2023 + Sports + + + Zona's Awesome Fishing Show + Seth Feider - Minnesota - Part 1 + Fresh off a Bassmaster Angler of the Year run, Seth Feider head's out with Zona on an unexplored lake and they find the right ones. + + Mark Zona + + 2022 + Sports + + + Lake Commandos + Extreme Cold Front, Giant Bass + In-Fisherman's Thomas Allen joins Steve the morning after a killer storm drops temps overnight. + 2023 + Reality + Sports + + + Modern Fishing With Jared Jeffries + South Florida Rollercoaster + Jared meets up with Captain Jack Carlson for a roller coaster of a trip in the Florida Keys as they face the infamous Marathon hump while embracing the true force of Mother Nature. + + Jared Jeffries + + 2018 + Sports + + + Livin' the Dream With Captain Jimmy Nelson + Running With the Bulls Part 1 + 2023 + + + Unfathomed + Abaco Part 2 + Capt. George Gozdz goes fishing with focus on destinations, intriguing personalities, and quality fisheries. + 2023 + Sports + + + Guide's Tails + Money Shot + 2023 + + + Wild Fish Wild Places + Alaska Silver Rush + 2023 + Travel + Sports + + + Two Conchs Adventures + Jurassic Park + JC and Tucker Carlson travel deep into the Gulf of Mexico to fish for giant warsaw grouper, queen snapper and more. + 2023 + + + Two Conchs Sport Fishing TV + Marathon Class Reunion + 2023 + Sports + + + A Fishing Story With Ronnie Green + Fishing Phenom + + Ronnie Green + + 2023 + Sports + + TV-G + + + + The Obsession of Carter Andrews + Look out Cape Lookout + Carter and his friends, Fen Rascoe and Kelsey Dick, are on the look out for false albacore in Cape Lookout, North Carolina. + + Carter Andrews + + 2023 + Sports + + + Wildfly Fishing + Weather Gods + 2023 + + + Spear Life + Hogfish Competition Rivalry + The Spear Life crew is hitting the Middle Grounds this trip. The guys slam the hogfish and grouper and check out shipwrecks they have never dived before. + 2023 + + + Reel Animals Fishing Show + Bronze Bomber + 2023 + + + Wild Fish Wild Places + Alaska Silver Rush + 2023 + Travel + Sports + + + Two Conchs Adventures + Jurassic Park + JC and Tucker Carlson travel deep into the Gulf of Mexico to fish for giant warsaw grouper, queen snapper and more. + 2023 + + + Two Conchs Sport Fishing TV + Marathon Class Reunion + 2023 + Sports + + + A Fishing Story With Ronnie Green + Fishing Phenom + + Ronnie Green + + 2023 + Sports + + TV-G + + + + The Obsession of Carter Andrews + Look out Cape Lookout + Carter and his friends, Fen Rascoe and Kelsey Dick, are on the look out for false albacore in Cape Lookout, North Carolina. + + Carter Andrews + + 2023 + Sports + + + Wildfly Fishing + Weather Gods + 2023 + + + Spear Life + Hogfish Competition Rivalry + The Spear Life crew is hitting the Middle Grounds this trip. The guys slam the hogfish and grouper and check out shipwrecks they have never dived before. + 2023 + + + Reel Animals Fishing Show + Bronze Bomber + 2023 + + + Wild Fish Wild Places + Alaska Silver Rush + 2023 + Travel + Sports + + + Two Conchs Adventures + Jurassic Park + JC and Tucker Carlson travel deep into the Gulf of Mexico to fish for giant warsaw grouper, queen snapper and more. + 2023 + + + Two Conchs Sport Fishing TV + Marathon Class Reunion + 2023 + Sports + + + A Fishing Story With Ronnie Green + Fishing Phenom + + Ronnie Green + + 2023 + Sports + + TV-G + + + + The Obsession of Carter Andrews + Look out Cape Lookout + Carter and his friends, Fen Rascoe and Kelsey Dick, are on the look out for false albacore in Cape Lookout, North Carolina. + + Carter Andrews + + 2023 + Sports + + + Wildfly Fishing + Weather Gods + 2023 + + + Spear Life + Hogfish Competition Rivalry + The Spear Life crew is hitting the Middle Grounds this trip. The guys slam the hogfish and grouper and check out shipwrecks they have never dived before. + 2023 + + + Reel Animals Fishing Show + Bronze Bomber + 2023 + + + BC Outdoors Sport Fishing + Kokanee on the Fly + + Mike Mitchell + + 2023 + Sports + + + George Poveromo's World of Saltwater Fishing + Biscayne Bay, Florida + + George Poveromo + + 2021 + Sports + + TV-G + + + + Bill Dance Outdoors + Freddy and My Favorite Aquatic Vegetation Part 2 + Biologist Freddie Langford talks about aquatic vegatation and its importance in bass fishing. + + Bill Dance + + 2022 + Sports + + TV-G + + + + Fishing University + Wilson Reservoir, Russell, Kansas + Charlie and Ray fish Wilson Lake with Bass fishing legend Gary Yamamoto and pro Daisey Brumley. + 2022 + + TV-G + + + + Fishing 411 + Trolling Tadpole Divers for Western Basin Walleye + Mark and Jake Romanack pull Hammer Time spinners using Tadpole Divers and Off Shore Tackle Side-Planer Boards en route to catching limits of Lake Erie walleye. + 2021 + + + Trev Gowdy's Monster Fish + Marlin vs. Permit + Trev Gowdy hunts down massive permit in the Florida Keys, while Fred Lavitman targets monster marlin off the Bahamian coast. + + Trevor Gowdy + Dennis Braid + + 2019 + Sports + S11 E6 + + + Lindner's Angling Edge + Swimbaiting Secrets + James and Troy Lindner head out on Leech Lake, searching for giant smallmouth bass on swimbaits. + 2021 + + TV-G + + + + Lund the Ultimate Fishing Experience + Lake Superior Lake Trout + Lund pro staffer Grant Sorensen and his wife Morgan chase Lake Trout on massive Lake Superior. + 2019 + Sports + + + The Next Bite + \"Rock\"-ing Late Fall Walleyes + Chase Parsons and Tom Kemos demonstrate late fall, jigging techniques for walleye and sauger on The Rock River in Wisconsin. + + Pete Maina + Gary Parsons + Keith Kavajecz + + 2019 + Sports + S15 E13 + + TV-G + + + + In-Fisherman TV + Tenacious Tactics for Tough Times + When the going gets tough, the In-Fisherman staff shifts into four-wheel drive, as they feature "hairy" times for smallmouths and walleyes, duck under bridges for big-time crappies, and put on a "shiner show" for giant largemouth bass. + 2020 + + TV-MA + + + + Fishful Thinker + Arizona Road Trippin' + Whenever Chad LaChance has the chance to fish with a professional bass guy, he jumps at the chance. Josh Bertrand invited him to Arizona to bass fish and this episode gives viewers an in depth look at how the patterns were worked out. + 2020 + + + Zona's Awesome Fishing Show + Matt Robertson - Kentucky + + Mark Zona + + 2022 + Sports + + + BC Outdoors Sport Fishing + Kokanee on the Fly + + Mike Mitchell + + 2023 + Sports + + + George Poveromo's World of Saltwater Fishing + Biscayne Bay, Florida + + George Poveromo + + 2021 + Sports + + TV-G + + + + Bill Dance Outdoors + Freddy and My Favorite Aquatic Vegetation Part 2 + Biologist Freddie Langford talks about aquatic vegatation and its importance in bass fishing. + + Bill Dance + + 2022 + Sports + + TV-G + + + + Fishing University + Wilson Reservoir, Russell, Kansas + Charlie and Ray fish Wilson Lake with Bass fishing legend Gary Yamamoto and pro Daisey Brumley. + 2022 + + TV-G + + + + Fishing 411 + Trolling Tadpole Divers for Western Basin Walleye + Mark and Jake Romanack pull Hammer Time spinners using Tadpole Divers and Off Shore Tackle Side-Planer Boards en route to catching limits of Lake Erie walleye. + 2021 + + + Trev Gowdy's Monster Fish + Marlin vs. Permit + Trev Gowdy hunts down massive permit in the Florida Keys, while Fred Lavitman targets monster marlin off the Bahamian coast. + + Trevor Gowdy + Dennis Braid + + 2019 + Sports + S11 E6 + + + Lindner's Angling Edge + Swimbaiting Secrets + James and Troy Lindner head out on Leech Lake, searching for giant smallmouth bass on swimbaits. + 2021 + + TV-G + + + + Lund the Ultimate Fishing Experience + Lake Superior Lake Trout + Lund pro staffer Grant Sorensen and his wife Morgan chase Lake Trout on massive Lake Superior. + 2019 + Sports + + + The Next Bite + \"Rock\"-ing Late Fall Walleyes + Chase Parsons and Tom Kemos demonstrate late fall, jigging techniques for walleye and sauger on The Rock River in Wisconsin. + + Pete Maina + Gary Parsons + Keith Kavajecz + + 2019 + Sports + S15 E13 + + TV-G + + + + In-Fisherman TV + Tenacious Tactics for Tough Times + When the going gets tough, the In-Fisherman staff shifts into four-wheel drive, as they feature "hairy" times for smallmouths and walleyes, duck under bridges for big-time crappies, and put on a "shiner show" for giant largemouth bass. + 2020 + + TV-MA + + + + Fishful Thinker + Arizona Road Trippin' + Whenever Chad LaChance has the chance to fish with a professional bass guy, he jumps at the chance. Josh Bertrand invited him to Arizona to bass fish and this episode gives viewers an in depth look at how the patterns were worked out. + 2020 + + + Zona's Awesome Fishing Show + Matt Robertson - Kentucky + + Mark Zona + + 2022 + Sports + + + Zona's Awesome Fishing Show + Zona Solo Traverse Michigan + + Mark Zona + + 2023 + Sports + + + Pro Team Journal + Largemouth Bass in Zone 1 With Greg Hackney + 2023 + Sports + + + Catching Bass With Dustin Wilks + Post Spawn Bass + 2023 + + + The Hunt for Monster Bass + Top Monster Bass + Chris Lane and Ott DeFoe battle some of the biggest bass of the season. + + Ott DeFoe + + 2023 + Sports + S6 E6 + + + Major League Fishing's Bass Pro Tour + Stage 7 Championship Round + (new). + 2023 + + TV-G + + + + MLF All Angles + Inside the Team Series Championship- Match 1, Day 2 + All Angles inside look at the Team Series Championship Match 1, Day 2 with angler commentary. + 2023 + + TV-G + + + + Pro Team Journal + Largemouth Bass in Zone 1 With Greg Hackney + 2023 + Sports + + + Catching Bass With Dustin Wilks + Post Spawn Bass + 2023 + + + The Hunt for Monster Bass + Top Monster Bass + Chris Lane and Ott DeFoe battle some of the biggest bass of the season. + + Ott DeFoe + + 2023 + Sports + S6 E6 + + + Major League Fishing's Bass Pro Tour + Stage 7 Championship Round + 2023 + + TV-G + + + + MLF All Angles + Inside the Team Series Championship- Match 1, Day 2 + All Angles inside look at the Team Series Championship Match 1, Day 2 with angler commentary. + 2023 + + TV-G + + + + Pro Team Journal + Largemouth Bass in Zone 1 With Greg Hackney + 2023 + Sports + + + Catching Bass With Dustin Wilks + Post Spawn Bass + 2023 + + + The Hunt for Monster Bass + Top Monster Bass + Chris Lane and Ott DeFoe battle some of the biggest bass of the season. + + Ott DeFoe + + 2023 + Sports + S6 E6 + + + Major League Fishing's Bass Pro Tour + Stage 7 Championship Round + 2023 + + TV-G + + + + BC Outdoors Sport Fishing + Back at Nootka With the Girls + + Mike Mitchell + + 2023 + Sports + + + George Poveromo's World of Saltwater Fishing + Key Largo, Florida Keys part 2 + + George Poveromo + + 2021 + Sports + + TV-G + + + + Bill Dance Outdoors + Little Frog Gone a Hoppin' + Featuring spatterdock and how important it is in fishing; Bill teaches how to fish for largemouth bass in the edges with the new Pad Crasher. + + Bill Dance + + 2022 + Sports + + TV-G + + + + Fishing University + Lake Hartwell, GA + Two women face off today to showcase SPRO's latest arsenal of lures--Macy Watkins, with Source Outdoor Group & Lee Rose Koza, SPRO pro. + 2021 + + TV-G + + + + Fishing 411 + Jigging for Drummond Island Lake Trout + Mark and Jake Romanack travel to the Straights of Mackinaw to jig fish for lake trout near Drummond Island. + 2021 + + + Trev Gowdy's Monster Fish + Tuna of Scotland + Fred Lavitman travels to Scotland, sees the sights, and fights to land a monster tuna in these rough waters. + + Trevor Gowdy + Dennis Braid + + 2019 + Sports + S11 E7 + + + Lindner's Angling Edge + Fishin' Pressured 'Skies + Jeremy Smith and Jake Wallace break down the state of musky fishing today, in light of all the heavy pressure on our lakes. + 2021 + + TV-G + + + + Lund the Ultimate Fishing Experience + Pontoon rigging and Fishing + These days, pontoons are for more than just touring. Lund pro staffer Ryan DeChaine shows us how to make your pontoon into a fishing machine. + 2019 + Sports + + + The Next Bite + \"Rock\"-ing Late Fall Walleyes + Chase Parsons and Tom Kemos demonstrate late fall, jigging techniques for walleye and sauger on The Rock River in Wisconsin. + + Pete Maina + Gary Parsons + Keith Kavajecz + + 2019 + Sports + S15 E13 + + TV-G + + + + In-Fisherman TV + Pick Your Pocket Presentations + The In-Fisherman staff shares secrets from extensive field experience, as they rig weighted swimbait hooks for redfish, get lake trout to go crazy for topwater lures, and travel to one of North America's top drive-to destinations for giant pike and walleyes. + 2020 + + TV-MA + + + + Fishful Thinker + Walleyes in the Cover + Host Chad LaChance and guest Brooks Tyser go after Walleye at Glendo Reservoir during tricky full flood conditions. + 2020 + + + Zona's Awesome Fishing Show + Jason Christie - Oklahoma + Zona meets up with an Oklahoma pro fishing powerhouse, Jason Christie, for an old-school muddy, shallow water largemouth beatdown. + + Mark Zona + + 2018 + Sports + + + BC Outdoors Sport Fishing + Back at Nootka With the Girls + + Mike Mitchell + + 2023 + Sports + + + George Poveromo's World of Saltwater Fishing + Key Largo, Florida Keys part 2 + + George Poveromo + + 2021 + Sports + + TV-G + + + + Bill Dance Outdoors + Little Frog Gone a Hoppin' + Featuring spatterdock and how important it is in fishing; Bill teaches how to fish for largemouth bass in the edges with the new Pad Crasher. + + Bill Dance + + 2022 + Sports + + TV-G + + + + Fishing University + Lake Hartwell, GA + Two women face off today to showcase SPRO's latest arsenal of lures--Macy Watkins, with Source Outdoor Group & Lee Rose Koza, SPRO pro. + 2021 + + TV-G + + + + Fishing 411 + Jigging for Drummond Island Lake Trout + Mark and Jake Romanack travel to the Straights of Mackinaw to jig fish for lake trout near Drummond Island. + 2021 + + + Trev Gowdy's Monster Fish + Tuna of Scotland + Fred Lavitman travels to Scotland, sees the sights, and fights to land a monster tuna in these rough waters. + + Trevor Gowdy + Dennis Braid + + 2019 + Sports + S11 E7 + + + Lindner's Angling Edge + Fishin' Pressured 'Skies + Jeremy Smith and Jake Wallace break down the state of musky fishing today, in light of all the heavy pressure on our lakes. + 2021 + + TV-G + + + + Lund the Ultimate Fishing Experience + Pontoon rigging and Fishing + These days, pontoons are for more than just touring. Lund pro staffer Ryan DeChaine shows us how to make your pontoon into a fishing machine. + 2019 + Sports + + + The Next Bite + \"Rock\"-ing Late Fall Walleyes + Chase Parsons and Tom Kemos demonstrate late fall, jigging techniques for walleye and sauger on The Rock River in Wisconsin. + + Pete Maina + Gary Parsons + Keith Kavajecz + + 2019 + Sports + S15 E13 + + TV-G + + + + In-Fisherman TV + Pick Your Pocket Presentations + The In-Fisherman staff shares secrets from extensive field experience, as they rig weighted swimbait hooks for redfish, get lake trout to go crazy for topwater lures, and travel to one of North America's top drive-to destinations for giant pike and walleyes. + 2020 + + TV-MA + + + + Fishful Thinker + Walleyes in the Cover + Host Chad LaChance and guest Brooks Tyser go after Walleye at Glendo Reservoir during tricky full flood conditions. + 2020 + + + Zona's Awesome Fishing Show + Jason Christie - Oklahoma + Zona meets up with an Oklahoma pro fishing powerhouse, Jason Christie, for an old-school muddy, shallow water largemouth beatdown. + + Mark Zona + + 2018 + Sports + + + Lindner's Angling Edge + Fall Trophy Walleye Fishing + 2023 + + TV-G + + + + Bottom Feeders + Old Habits + Mike travels back to his childhood home to pull his brother's new Minnesota license. (new). + 2014 + Reality + Business + S2 E8 + + TV-PG + + + + Fishing the Midwest + Deep Grass and Big Bass! + 2023 + + + Facts of Fishing + The Mother Erie Experience + Dave enjoys the fisherman's rollercoaster ride that is Lake Erie. + 2023 + + + 50 Places to Fly Fish Before You Die + Islamorada + Captain Mark Johnson attempts to fish for tarpon, but due to extremely tough conditions, shifts gears and sets up for sharks. + + Conway Bowman + + 2015 + Travel + Sports + S1 E8 + + + Familiar Waters + Kvichak River + 2009 + + + In-Fisherman TV + Busting Bodacious Beasts + The In-Fisherman staff goes into beast-busting mode, as they fish for the Niagara river's brutish smallmouths; stretch the limits of heavy-duty tackle for bruiser blue cats; and take you down a historic road of discovery in the quest for monster muskie. + 2022 + + TV-MA + + + + Lake Commandos + Topwater vs Spinnerbait, Summer Smallmouth + Top Pro John Cox joins Steve on a large natural lake known for big bass. + 2023 + Reality + Sports + + + Lindner's Angling Edge + Fall Trophy Walleye Fishing + 2023 + + TV-G + + + + Bottom Feeders + Old Habits + Mike travels back to his childhood home to pull his brother's new Minnesota license. + 2014 + Reality + Business + S2 E8 + + TV-PG + + + + Fishing the Midwest + Deep Grass and Big Bass! + 2023 + + + Facts of Fishing + The Mother Erie Experience + Dave enjoys the fisherman's rollercoaster ride that is Lake Erie. + 2023 + + + 50 Places to Fly Fish Before You Die + Islamorada + Captain Mark Johnson attempts to fish for tarpon, but due to extremely tough conditions, shifts gears and sets up for sharks. + + Conway Bowman + + 2015 + Travel + Sports + S1 E8 + + + Familiar Waters + Kvichak River + 2009 + + + In-Fisherman TV + Busting Bodacious Beasts + The In-Fisherman staff goes into beast-busting mode, as they fish for the Niagara river's brutish smallmouths; stretch the limits of heavy-duty tackle for bruiser blue cats; and take you down a historic road of discovery in the quest for monster muskie. + 2022 + + TV-MA + + + + Lake Commandos + Topwater vs Spinnerbait, Summer Smallmouth + Top Pro John Cox joins Steve on a large natural lake known for big bass. + 2023 + Reality + Sports + + + Lindner's Angling Edge + Fall Trophy Walleye Fishing + 2023 + + TV-G + + + + Bottom Feeders + Old Habits + Mike travels back to his childhood home to pull his brother's new Minnesota license. + 2014 + Reality + Business + S2 E8 + + TV-PG + + + + Fishing the Midwest + Deep Grass and Big Bass! + 2023 + + + Facts of Fishing + The Mother Erie Experience + Dave enjoys the fisherman's rollercoaster ride that is Lake Erie. + 2023 + + + 50 Places to Fly Fish Before You Die + Islamorada + Captain Mark Johnson attempts to fish for tarpon, but due to extremely tough conditions, shifts gears and sets up for sharks. + + Conway Bowman + + 2015 + Travel + Sports + S1 E8 + + + Familiar Waters + Kvichak River + 2009 + + + In-Fisherman TV + Busting Bodacious Beasts + The In-Fisherman staff goes into beast-busting mode, as they fish for the Niagara river's brutish smallmouths; stretch the limits of heavy-duty tackle for bruiser blue cats; and take you down a historic road of discovery in the quest for monster muskie. + 2022 + + TV-MA + + + + Lake Commandos + Topwater vs Spinnerbait, Summer Smallmouth + Top Pro John Cox joins Steve on a large natural lake known for big bass. + 2023 + Reality + Sports + + + BC Outdoors Sport Fishing + The Great White Sturgeon + + Mike Mitchell + + 2023 + Sports + + + George Poveromo's World of Saltwater Fishing + Marathon, Florida Keys part 2 + + George Poveromo + + 2021 + Sports + + TV-G + + + + Bill Dance Outdoors + The Best Stretch Part 1 + Focusing on various aspects of recreational fishing techniques. Hosted by noted fisherman Bill Dance. + + Bill Dance + + 2022 + Sports + + TV-G + + + + Fishing University + Wheeler Lake, Al + SPRO executives show off their hotest lures on Wheeler Lake in Rogersville, AL-featuring Kazutomo Nakamura, Exe. Officer & Syd Rives, Nat'l. Sale Manager. + 2021 + + TV-G + + + + Fishing 411 + Vertical Jigging Detroit River Walleye + Mark and Jake Romanack put on a jigging clinic on the Detroit River, outlining the many facets of vertical jigging for river walleye. + 2021 + + + Trev Gowdy's Monster Fish + Season Countdown + Monster largemouth bass from Falcon Lake; Giant Trevally from Australia; Massive Sturgeon and the High-Flying Thresher Shark. These are the monster fish of the year. + + Trevor Gowdy + Dennis Braid + + 2019 + Sports + S10 E11 + + + Lindner's Angling Edge + Breaking Down Vermilion + Al Lindner and Billy Rosner dissect the giant lake vermilion in Minnesota and give us some locational tips while catching walleye. + 2021 + + TV-G + + + + Lund the Ultimate Fishing Experience + Musky 101 + Musky hounds Jeremy Smith & James Lindner bring it back to the basics in a Musky 101 lesson for getting into musky fishing. + 2019 + Sports + + + The Next Bite + Ice Fishing for Green Lake, Lake Trout + Professional tournament anglers Gary and Chase Parsons are joined by fellow tournament champion, Korey Sprengel and guide/expert Justin Kohn to ice fish one of the few smaller, inland lakes that hold Lake Trout in the lower 48 states of North America. + + Pete Maina + Gary Parsons + Keith Kavajecz + + 2020 + Sports + S16 E1 + + TV-G + + + + In-Fisherman TV + Revolutionary Topics for These Times + The focus is on some of the hottest topics and lure presentations for North America's top freshwater sportfish, as the In-Fisherman staff works with weighted swimbait hooks for largemouth bass, pike, and redfish; delivers a potent conservation message fo. + 2020 + + TV-MA + + + + Fishful Thinker + Snap Jig Walleye + "Snap jigging"...it sounds simple but the technique has its nuances like any other. It's also a great way to catch walleyes, which is why host Chad LaChance gives viewers an in depth look at the tackle. + 2020 + + + Zona's Awesome Fishing Show + Davy Hite - Michigan Smallmouth + Former Bassmaster Classic champion and Angler of the Year, Davy Hite, is a favorite of ZAFS. There have been some memorable trips in the past. + + Mark Zona + + 2019 + Sports + + + BC Outdoors Sport Fishing + The Great White Sturgeon + + Mike Mitchell + + 2023 + Sports + + + George Poveromo's World of Saltwater Fishing + Marathon, Florida Keys part 2 + + George Poveromo + + 2021 + Sports + + TV-G + + + + Bill Dance Outdoors + The Best Stretch Part 1 + Focusing on various aspects of recreational fishing techniques. Hosted by noted fisherman Bill Dance. + + Bill Dance + + 2022 + Sports + + TV-G + + + + Fishing University + Wheeler Lake, Al + SPRO executives show off their hotest lures on Wheeler Lake in Rogersville, AL-featuring Kazutomo Nakamura, Exe. Officer & Syd Rives, Nat'l. Sale Manager. + 2021 + + TV-G + + + + Fishing 411 + Vertical Jigging Detroit River Walleye + Mark and Jake Romanack put on a jigging clinic on the Detroit River, outlining the many facets of vertical jigging for river walleye. + 2021 + + + Trev Gowdy's Monster Fish + Season Countdown + Monster largemouth bass from Falcon Lake; Giant Trevally from Australia; Massive Sturgeon and the High-Flying Thresher Shark. These are the monster fish of the year. + + Trevor Gowdy + Dennis Braid + + 2019 + Sports + S10 E11 + + + Lindner's Angling Edge + Breaking Down Vermilion + Al Lindner and Billy Rosner dissect the giant lake vermilion in Minnesota and give us some locational tips while catching walleye. + 2021 + + TV-G + + + + Lund the Ultimate Fishing Experience + Musky 101 + Musky hounds Jeremy Smith & James Lindner bring it back to the basics in a Musky 101 lesson for getting into musky fishing. + 2019 + Sports + + + The Next Bite + Ice Fishing for Green Lake, Lake Trout + Professional tournament anglers Gary and Chase Parsons are joined by fellow tournament champion, Korey Sprengel and guide/expert Justin Kohn to ice fish one of the few smaller, inland lakes that hold Lake Trout in the lower 48 states of North America. + + Pete Maina + Gary Parsons + Keith Kavajecz + + 2020 + Sports + S16 E1 + + TV-G + + + + In-Fisherman TV + Revolutionary Topics for These Times + The focus is on some of the hottest topics and lure presentations for North America's top freshwater sportfish, as the In-Fisherman staff works with weighted swimbait hooks for largemouth bass, pike, and redfish; delivers a potent conservation message fo. + 2020 + + TV-MA + + + + Fishful Thinker + Snap Jig Walleye + "Snap jigging"...it sounds simple but the technique has its nuances like any other. It's also a great way to catch walleyes, which is why host Chad LaChance gives viewers an in depth look at the tackle. + 2020 + + + Zona's Awesome Fishing Show + Davy Hite - Michigan Smallmouth + Former Bassmaster Classic champion and Angler of the Year, Davy Hite, is a favorite of ZAFS. There have been some memorable trips in the past. + + Mark Zona + + 2019 + Sports + + + Jokers Wild Off the Hook + Carolina Mix Bag + 2023 + Travel + + + Trev Gowdy's Monster Fish + The Canyons + Fred Lavitman and crew fish through the night in search of massive tuna and record numbers of swordfish. + + Trevor Gowdy + Dennis Braid + + 2019 + Sports + S11 E5 + + + Life of Cards + The lifestyles of ten of the best professional poker players in the world. + Sports + Cards + + + + Space Patrol + A space unit travels through the cosmos to fights villains and bring justice to the universe. + + Edward Kemmer + Lyn Osborn + + Sci-Fi + Children + + + + Space Patrol + A space unit travels through the cosmos to fights villains and bring justice to the universe. + + Edward Kemmer + Lyn Osborn + + Sci-Fi + Children + + + + Space Patrol + A space unit travels through the cosmos to fights villains and bring justice to the universe. + + Edward Kemmer + Lyn Osborn + + Sci-Fi + Children + + + + Space Patrol + A space unit travels through the cosmos to fights villains and bring justice to the universe. + + Edward Kemmer + Lyn Osborn + + Sci-Fi + Children + + + + The Killer Shrews + Capt. Thorne Sherman and his girlfriend run from a mad scientist's shrews, which are the size of dogs. + + James Best + Ingrid Goude + Baruch Lumet + + 1959 + Movies + Sci-Fi + + + TVG + + + 1 + + + + The Killer Shrews + Capt. Thorne Sherman and his girlfriend run from a mad scientist's shrews, which are the size of dogs. + + James Best + Ingrid Goude + Baruch Lumet + + 1959 + Movies + Sci-Fi + + + TVG + + + 1 + + + + JBTV + America's longest running music television program dedicated to breaking bands; performers include Green Day, No Doubt, Smashing Pumpkins, Blink-182, 30 Seconds to Mars, Jeff Buckley and Oasis. + Specials + Music + + + + Classic All-Star Wrestling + The greatest wrestling stars from the 1960s through the 90s are back with classic fight highlights from Hulk Hogan, Nature Boy Ric Flair, Andre the Giant, and more. Features pro wrestling aficionados and special guest legends. + Sports + Wrestling + + + + Championship Wrestling + Top independent professional wrestling action. + Sports + Wrestling + + + + Championship Wrestling + Top independent professional wrestling action. + Sports + Wrestling + + + + Ohio Valley Wrestling + Professional wrestling news and matches. + Sports + Wrestling + + + + Reel Animals Fishing + Tips and tactics from certified charter captains with more than 40 years experience. + Regular + + + TVG + + + + Sport Fishing + Fresh and saltwater fishing along the Pacific Coast from Alaska to Central America. + Regular + + + + Jimmy Houston Outdoors + Jimmy Houston visits unique locations and shares his fishing knowledge. + Sports + Outdoors + + + TVG + + + + Jimmy Houston Adventures + Jimmy is hunting and fishing across the nation, educating and entertaining in his own unique way. + Sports + Outdoors + + + TVG + + + + Hard Truths of Conservation + Experiencing some of the world's most fearsome animals up close -- leopards, bison, cheetahs, and more -- Dan Cabela learns how these creatures play such vital roles on the planet, and how important it is to keep them protected. + Docu-Series + Science + + + + Raised Hunting + The Holder's a family of hunters will take you on a ride of emotions and adventures into all kinds of hunting and outdoor situations. + Sports + Outdoors + + + TVPG + + + + Motorz + Chris Duke hosts a series showing you how to maintain your vehicle and install accessories, step-by-step. + Sports + Automotive + + + TVG + + + + Steel Dreams + Traveling the country in search of motorsports enthusiasts. + Sports + Automotive + + + TVG + + + + RaceWeek + The latest NASCAR news and behind the scenes coverage with a. + Sports + Auto Racing + + + TVG + + + + Talk! With Audrey + Conversations about the business of living featuring entertaining, informative interviews with experts from the health, fitness, financial, and travel industries. + Local + + + + Southern Glory + Host Jim Black presents videos from southern gospel's greatest groups. + Music + + + TVG + + + + Country Classics + Country music videos from the '80s and '90s. + Music + + + TVG + + + + My Life, My Songs + Host, Jimmy Fortune, formerly of The Statler Brothers, interviews songwriters/artists about their career and how they wrote #1 hit songs. + Music + + + TVPG + + + + Street Magic + Street magicians perform their acts for onlookers, some of whom are celebrities; featuring illusionists Ed Alonzo, mentalist Kevin Viner and more. + Reality TV + Performing Arts + + + TVPG + + + + Sonic the Hedgehog + Sonic defends planet Mobius from the evil Dr. Ivo Robotnik. + + Jaleel White + Charlie Adler + Christine Cavanaugh + + Animated + Children + + + TVY + + + + Sonic the Hedgehog + Sonic defends planet Mobius from the evil Dr. Ivo Robotnik. + + Jaleel White + Charlie Adler + Christine Cavanaugh + + Animated + Children + + + TVY + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Jimmy Bowen and Friends + A live music series featuring Jimmy Bowen, his band and a special guest artist each week. + Music + + + + Bluegrass Ridge + Some of the latest videos from the rising stars in Bluegrass. + Music + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Hiring America + Helping America's returning military veterans find good jobs. + Business + Lifestyle + + + TVG + + + + Small Town Big Deal + Innovation, tradition and success happen in rural places. + Travel + Documentary + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + B-Sides + Rock and electronic music videos. + Music + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Country Fix + Performing Arts + + + + Nashville Insider + The fast-paced entertainment news series gives viewers a sneak peek at all things country music by going behind the scenes to provide access to fans' favorite artists and country music's hottest events. + News + Performing Arts + + + TVPG + + + + Meet the Drapers + The Draper family gives aspiring entrepreneurs an opportunity to present their innovative ideas and business plans in order to get a prospective investor. + Reality TV + + + + JBTV + America's longest running music television program dedicated to breaking bands; performers include Green Day, No Doubt, Smashing Pumpkins, Blink-182, 30 Seconds to Mars, Jeff Buckley and Oasis. + Specials + Music + + + + Hell or High Seas + U.S. Navy veteran Taylor Grieger and writer Stephen O'Shea embark on the adventure of a lifetime -- sailing around the treacherous waters of Cape Horn. + + Taylor Grieger + John Rose + Stephen O'Shea + + 2021 + Movies + Documentary + + + + After Autumn + The woman a man falls in love with becomes attracted to his best friend. + + Hasan Bivings + Sundy Carter + Melvin Jackson Jr. + + 2007 + Movies + Drama + + + + My Paranormal Experience + Filmmaker Nathan Withers explores and showcases true encounters of the supernatural. + Paranormal + + + + JBTV + America's longest running music television program dedicated to breaking bands; performers include Green Day, No Doubt, Smashing Pumpkins, Blink-182, 30 Seconds to Mars, Jeff Buckley and Oasis. + Specials + Music + + + + Sidewalks Entertainment + Career-building moments for entertainers. + Talk Shows + Performing Arts + + + TVG + + + + Street Magic + Street magicians perform their acts for onlookers, some of whom are celebrities; featuring illusionists Ed Alonzo, mentalist Kevin Viner and more. + Reality TV + Performing Arts + + + TVPG + + + + Street Magic + Street magicians perform their acts for onlookers, some of whom are celebrities; featuring illusionists Ed Alonzo, mentalist Kevin Viner and more. + Reality TV + Performing Arts + + + TVPG + + + + The Paranormal Files + A series which explores all things paranormal, including spirits, religion, demons and extraterrestrials. + Paranormal + + + + Forensic Files + Retracing the steps of real investigations with interviews and dramatic re-creations as experts draw on forensic science to solve baffling crimes and other mysteries. + Documentary + + + TVPG + + + + Double Dragon + Animated + Children + + + TVG + + + + Bonanza + Life on the Ponderosa with the Cartwright clan. + + Lorne Greene + Michael Landon + Dan Blocker + + Drama + + + TVPG + + + + The Lucy Show + Widow Lucy Carmichael raises her kids on the West Coast. + + Lucille Ball + Vivian Vance + Gale Gordon + + Sitcom + + + TVG + + + + The Lucy Show + Widow Lucy Carmichael raises her kids on the West Coast. + + Lucille Ball + Vivian Vance + Gale Gordon + + Sitcom + + + TVG + + + + World Chase Tag + A global championship for competitive parkour involving the game of tag. + Sports + Miscellaneous + + + + The Big Biz Show + Sully and Russ. + Business + + + + The Scott and Suki Show + Popular, Emmy award-winning, former. + Talk Shows + + + + Daytime + Entertainment news, cooking tips, DIY advice, popular fashion trends and traven destinations. + Talk Shows + + + + Bloom + A daily show focusing on health and lifestyle. + Health + + + + Daily Flash + Four energetic hosts deliver fresh news, weather, and social-media and entertainment trends. + News Magazine + Performing Arts + + + + World Poker Tour + Poker players compete in a series of tournaments at casinos around the world. + Sports + Cards + + + + Forensic Files + Retracing the steps of real investigations with interviews and dramatic re-creations as experts draw on forensic science to solve baffling crimes and other mysteries. + Documentary + + + TVPG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Sidewalks Entertainment + Career-building moments for entertainers. + Talk Shows + Performing Arts + + + TVG + + + + The Lucy Show + Widow Lucy Carmichael raises her kids on the West Coast. + + Lucille Ball + Vivian Vance + Gale Gordon + + Sitcom + + + TVG + + + + Positively Paula + Paula Deen cooks her favorite recipes and shares family stories. + Food + + + TVG + + + + The Chef's Kitchen + Tips and techniques from the nation's top chefs, bakers and sommeliers. + Food + + + TVG + + + + Daytime + Entertainment news, cooking tips, DIY advice, popular fashion trends and traven destinations. + Talk Shows + + + + Bonanza + Life on the Ponderosa with the Cartwright clan. + + Lorne Greene + Michael Landon + Dan Blocker + + Drama + + + TVPG + + + + Space Patrol + A space unit travels through the cosmos to fights villains and bring justice to the universe. + + Edward Kemmer + Lyn Osborn + + Sci-Fi + Children + + + + Space Patrol + A space unit travels through the cosmos to fights villains and bring justice to the universe. + + Edward Kemmer + Lyn Osborn + + Sci-Fi + Children + + + + Daily Flash + Four energetic hosts deliver fresh news, weather, and social-media and entertainment trends. + News Magazine + Performing Arts + + + + The Big Biz Show + Sully and Russ. + Business + + + + Small Town Big Deal + Innovation, tradition and success happen in rural places. + Travel + Documentary + + + TVG + + + + Laura McKenzie's Traveler + The award winning travel journalist takes picturesque tours around the world. + Travel + Instructional + + + TVG + + + + The Neighborhood + When a man moves his family from Michigan to Los Angeles, he realizes that the secret to fitting in with his new neighborhood is befriending the opinionated man who lives next door. + + Cedric the Entertainer + Max Greenfield + Beth Behrs + + Sitcom + + + TVPG + + + + Chasing Down Madison Brown + Madison Brown interviews celebrities and visits special places while traveling across the United States. + Travel + Food + + + TVG + + + + The Witching Hour + The investigators of Argos Paranormal investigate locations that the locals fear. + + Brian Suojanen + + Drama + Reality TV + + + TVG + + + + Small Town Big Deal + Innovation, tradition and success happen in rural places. + Travel + Documentary + + + TVG + + + + Laura McKenzie's Traveler + The award winning travel journalist takes picturesque tours around the world. + Travel + Instructional + + + TVG + + + + The Neighborhood + When a man moves his family from Michigan to Los Angeles, he realizes that the secret to fitting in with his new neighborhood is befriending the opinionated man who lives next door. + + Cedric the Entertainer + Max Greenfield + Beth Behrs + + Sitcom + + + TVPG + + + + Chasing Down Madison Brown + Madison Brown interviews celebrities and visits special places while traveling across the United States. + Travel + Food + + + TVG + + + + The Paranormal Files + A series which explores all things paranormal, including spirits, religion, demons and extraterrestrials. + Paranormal + + + + Forensic Files + Retracing the steps of real investigations with interviews and dramatic re-creations as experts draw on forensic science to solve baffling crimes and other mysteries. + Documentary + + + TVPG + + + + Double Dragon + Animated + Children + + + TVG + + + + Bonanza + Life on the Ponderosa with the Cartwright clan. + + Lorne Greene + Michael Landon + Dan Blocker + + Drama + + + TVPG + + + + The Lucy Show + Widow Lucy Carmichael raises her kids on the West Coast. + + Lucille Ball + Vivian Vance + Gale Gordon + + Sitcom + + + TVG + + + + The Lucy Show + Widow Lucy Carmichael raises her kids on the West Coast. + + Lucille Ball + Vivian Vance + Gale Gordon + + Sitcom + + + TVG + + + + Charlie Moore: No Offense + From Redfish and cigar bars in South Carolina to Bone Fish and Lomi Lomi in Hawaii, Charlie Moore has been traveling to a lot of cool places all around the world and introducing its audience to many great people. + Sports + Outdoors + + + TVPG + + + + Ron Hazelton's HouseCalls + Master fix-it mogul Ron Hazelton takes to the road. + Home + Instructional + + + TVG + + + + The Big Biz Show + Sully and Russ. + Business + + + + Life of Cards + The lifestyles of ten of the best professional poker players in the world. + Sports + Cards + + + + Daytime + Entertainment news, cooking tips, DIY advice, popular fashion trends and traven destinations. + Talk Shows + + + + Bloom + A daily show focusing on health and lifestyle. + Health + + + + Daily Flash + Four energetic hosts deliver fresh news, weather, and social-media and entertainment trends. + News Magazine + Performing Arts + + + + World Poker Tour + Poker players compete in a series of tournaments at casinos around the world. + Sports + Cards + + + + Forensic Files + Retracing the steps of real investigations with interviews and dramatic re-creations as experts draw on forensic science to solve baffling crimes and other mysteries. + Documentary + + + TVPG + + + + Alive & Well + Host Michelle Harris examines healthy living and alternative medicines. + Health + + + TVG + + + + Lifestyle With Roy Ice + Featuring panel discussions, interviews, and demonstration segments focused on whole life health, including fitness, nutrition, relationships, outlook, and other ways to promote overall health. + Specials + Talk Shows + + + + The Lucy Show + Widow Lucy Carmichael raises her kids on the West Coast. + + Lucille Ball + Vivian Vance + Gale Gordon + + Sitcom + + + TVG + + + + Positively Paula + Paula Deen cooks her favorite recipes and shares family stories. + Food + + + TVG + + + + The Chef's Kitchen + Tips and techniques from the nation's top chefs, bakers and sommeliers. + Food + + + TVG + + + + Daytime + Entertainment news, cooking tips, DIY advice, popular fashion trends and traven destinations. + Talk Shows + + + + Bonanza + Life on the Ponderosa with the Cartwright clan. + + Lorne Greene + Michael Landon + Dan Blocker + + Drama + + + TVPG + + + + Screen Chatter + Film critic Tony Toscano leads a red carpet tour of what's playing and what's hot. + Performing Arts + + + + Sidewalks Entertainment + Career-building moments for entertainers. + Talk Shows + Performing Arts + + + TVG + + + + Daily Flash + Four energetic hosts deliver fresh news, weather, and social-media and entertainment trends. + News Magazine + Performing Arts + + + + The Big Biz Show + Sully and Russ. + Business + + + + The 900 Series + Exploring the full experience of Porsche ownership for collectors, owners and enthusiasts around the world, including repairs, restoration, maintenance tips, upgrade demonstrations, and insight into Porsche ownership clubs and car shows. + + Tony Mazzagatti + Ramon Montez Sr. + Gary Stanton + + Automotive + + + TVG + + + + In This Corner + An introspective look at the lives and careers of the biggest names in boxing's past and present. + Sports + Boxing + + + + UNF MMA + Featuring MMA events presented by Up Next Promotions, the most active and popular regional MMA brand in California. + Specials + Sports + + + + UNF MMA + Featuring MMA events presented by Up Next Promotions, the most active and popular regional MMA brand in California. + Specials + Sports + + + + The Witching Hour + The investigators of Argos Paranormal investigate locations that the locals fear. + + Brian Suojanen + + Drama + Reality TV + + + TVG + + + + Al Bernstein Unplugged + Boxing news, including interviews with fighters, promoters and sportscasters. + Sports + Talk Show + + + + In This Corner + An introspective look at the lives and careers of the biggest names in boxing's past and present. + Sports + Boxing + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + The Paranormal Files + A series which explores all things paranormal, including spirits, religion, demons and extraterrestrials. + Paranormal + + + + Forensic Files + Retracing the steps of real investigations with interviews and dramatic re-creations as experts draw on forensic science to solve baffling crimes and other mysteries. + Documentary + + + TVPG + + + + Dork Hunters + Five kids from New Jersey fight against an evil alien species named the Dorks in order to retrieve some peculiar and extremely dangerous explosives called microgalaxies. + Regular + + + + Bonanza + Life on the Ponderosa with the Cartwright clan. + + Lorne Greene + Michael Landon + Dan Blocker + + Drama + + + TVPG + + + + The Lucy Show + Widow Lucy Carmichael raises her kids on the West Coast. + + Lucille Ball + Vivian Vance + Gale Gordon + + Sitcom + + + TVG + + + + The Lucy Show + Widow Lucy Carmichael raises her kids on the West Coast. + + Lucille Ball + Vivian Vance + Gale Gordon + + Sitcom + + + TVG + + + + Reel Animals Fishing + Tips and tactics from certified charter captains with more than 40 years experience. + Regular + + + TVG + + + + Sport Fishing + Fresh and saltwater fishing along the Pacific Coast from Alaska to Central America. + Regular + + + + The Big Biz Show + Sully and Russ. + Business + + + + Double Dragon + Animated + Children + + + TVG + + + + Double Dragon + Animated + Children + + + TVG + + + + Daytime + Entertainment news, cooking tips, DIY advice, popular fashion trends and traven destinations. + Talk Shows + + + + Bloom + A daily show focusing on health and lifestyle. + Health + + + + Daily Flash + Four energetic hosts deliver fresh news, weather, and social-media and entertainment trends. + News Magazine + Performing Arts + + + + World Poker Tour + Poker players compete in a series of tournaments at casinos around the world. + Sports + Cards + + + + Forensic Files + Retracing the steps of real investigations with interviews and dramatic re-creations as experts draw on forensic science to solve baffling crimes and other mysteries. + Documentary + + + TVPG + + + + Small Town Big Deal + Innovation, tradition and success happen in rural places. + Travel + Documentary + + + TVG + + + + Laura McKenzie's Traveler + The award winning travel journalist takes picturesque tours around the world. + Travel + Instructional + + + TVG + + + + The Lucy Show + Widow Lucy Carmichael raises her kids on the West Coast. + + Lucille Ball + Vivian Vance + Gale Gordon + + Sitcom + + + TVG + + + + Positively Paula + Paula Deen cooks her favorite recipes and shares family stories. + Food + + + TVG + + + + The Chef's Kitchen + Tips and techniques from the nation's top chefs, bakers and sommeliers. + Food + + + TVG + + + + Daytime + Entertainment news, cooking tips, DIY advice, popular fashion trends and traven destinations. + Talk Shows + + + + Bonanza + Life on the Ponderosa with the Cartwright clan. + + Lorne Greene + Michael Landon + Dan Blocker + + Drama + + + TVPG + + + + The Scott and Suki Show + Popular, Emmy award-winning, former. + Talk Shows + + + + 90 in 60 + Ligue 1 2023-2024: Paris Saint-Germain vs. Montpellier + From Nov. 3, 2023. + Sports + Soccer + + + + MLW Fusion: ALPHA + Trust in Raven + A professional wrestling weekly television series produced by Major League Wrestling. + Sports + Wrestling + + + + Major League Wrestling: Fusion + Salina de la Renta's Fusion + Weekly action from Friday night Major League Wrestling: Fusion. + Sports + Wrestling + + + TV14 + + + + Boca vs. Fluminense + Final. + Sports + Soccer + + + + Boca vs. Fluminense + Final. + Sports + Soccer + + + + Lille OSC vs. Olympique de Marseille + Marseille vs. Lille + From Velodrome Stadium in Marseille, Provence-Alpes-Cote d'Azur, France. + Sports + Soccer + + + + This Is Paris + All the information related to the Paris Saint-Germain team. Learn about the training, international players, future stars of this prestigious club and all the locker room gossip. + Sports + Talk Show + + + TVPG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + The Ligue 1 Show + All of the greatest moments from a weekend full of action in Ligue 1, with reviews of table and results. Also discusses players of the week, best play, best save, worst blooper, who is in the hot seat, and who was the revelation of the round. + Sports + Talk Show + + + + Metz vs. Olympique Lyonnais + Olympique Lyonnais vs. FC Metz + From Parc Olympique Lyonnais in Décines-Charpieu, Rhône, France. + Sports + Soccer + + + + Stade de Reims vs. FC Nantes + Nantes vs. Stade de Reims + From Beaujoire-Louis Fonteneau Stadium in Nantes, Pays de la Loire, France. + Sports + Soccer + + + + Stade Brestois 29 vs. AS Monaco + AS Monaco vs. Stade Brestois + From Louis II Stadium in Fontvieille, Monaco. + Sports + Soccer + + + + 90 in 30 + Superliga 2023-2024: Fenerbahce vs. Trabzonspor + From Nov. 4, 2023. + Sports + Soccer + + + + 90 in 30 + Ligue 1 2023-2024: Paris Saint-Germain vs. Montpellier + From Nov. 3, 2023. + Sports + Soccer + + + + 90 in 30 + Copa Libertadores 2023-2024: Boca Juniors vs. Fluminense + Final, from Nov. 4, 2023. + Sports + Soccer + + + + The Express + Coverage of all live soccer action before the match including special reporting and analysis. + Sports + Soccer + + + + Stade Rennais vs. OGC Nice + OGC Nice vs. Rennes + From Allianz Riviera in Nice, Provence-Alpes-Cote d'Azur, France. + Sports + Soccer + + + + The Express + Coverage of all live soccer action before the match including special reporting and analysis. + Sports + Soccer + + + + The Ligue 1 Show + All of the greatest moments from a weekend full of action in Ligue 1, with reviews of table and results. Also discusses players of the week, best play, best save, worst blooper, who is in the hot seat, and who was the revelation of the round. + Sports + Talk Show + + + + 90 in 30 + Ligue 1 2023-2024: Marseille vs. Lille + From Nov. 4, 2023. + Sports + Soccer + + + + 90 in 30 + Ligue 1 2023-2024: Lyon vs. Metz + From Nov. 5, 2023. + Sports + Soccer + + + + 90 in 30 + Ligue 1 2023-2024: AS Monaco vs. Stade Brestois + From Nov. 5, 2023. + Sports + Soccer + + + + Besiktas vs. Antalyaspor + Antalyaspor vs. Besiktas + From Corendon Airlines Park in Antalya, Antalya, Turkey. + Sports + Soccer + + + + 90 in 30 + Superliga 2023-2024: Galatasaray vs. Kasimpasa + From Nov. 3, 2023. + Sports + Soccer + + + + 90 in 30 + Copa Libertadores 2023-2024: Boca Juniors vs. Fluminense + Final, from Nov. 4, 2023. + Sports + Soccer + + + + Karate Combat + The world's best compete in a full-contact karate competition in a virtual world. + Sports + Martial Arts + + + + Clermont Foot 63 vs. RC Strasbourg + Strasbourg vs. Clermont + From Stadium de la Meinau in Strasbourg, Bas-Rhin, France. + Sports + Soccer + + + + Clermont Foot 63 vs. RC Strasbourg + Strasbourg vs. Clermont + From Stadium de la Meinau in Strasbourg, Bas-Rhin, France. + Sports + Soccer + + + + 90 in 30 + Superliga 2023-2024: Antalyaspor vs. Besiktas + From Nov. 5, 2023. + Sports + Soccer + + + + 90 in 30 + Ligue 1 2023-2024: Paris Saint-Germain vs. Montpellier + From Nov. 3, 2023. + Sports + Soccer + + + + Wild Spirits + Exposing unheard stories from the extreme sports world, the show not only presents jaw-dropping action but uncovers personal journeys that turn hometown heroes into global icons. + Sports + Extreme + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Outdoor Sports Show + A look at various outdoor sports. + Sports + Outdoors + + + + Outdoor Sports Show + A look at various outdoor sports. + Sports + Outdoors + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Outdoor Sports Show + A look at various outdoor sports. + Sports + Outdoors + + + + Outdoor Sports Show + A look at various outdoor sports. + Sports + Outdoors + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Inside Sailing + The very best action from some of the most spectacular sailing events around the world. + Sports + Boating + + + + MXGP Behind the Gate + Nerves of Steel + The host shares unseen snippets of various FIM Motocross World Championship races, where professional riders compete to win the title. + Sports + Motorcycle Racing + + + + MXGP Behind the Gate + Monster Energy + The host shares unseen snippets of various FIM Motocross World Championship races, where professional riders compete to win the title. + Sports + Motorcycle Racing + + + + Gran Turismo World Series: Manufacturers Cup + Drivers represent their favorite manufacturer against other participating manufacturers. + Sports + eSports + + + + Gran Turismo World Series: Nations Cup + Drivers represent their respective country/territory in this championship series. + Sports + eSports + + + + Major League Wrestling: Fusion + Salina de la Renta's Fusion + Weekly action from Friday night Major League Wrestling: Fusion. + Sports + Wrestling + + + TV14 + + + + MLW Fusion: ALPHA + Trust in Raven + A professional wrestling weekly television series produced by Major League Wrestling. + Sports + Wrestling + + + + beIN SPORTS Rising Stars + Eli Kroupi Junior: Lyon vs. FC Lorient + Classic soccer matches featuring the sport's rising stars. + Sports + Soccer + + + + Stars of Ligue 1 + Randal Kolo Muani: PSG vs. Marseille + Classic soccer matches featuring the most renowned players from French Ligue 1 Soccer. + Sports + Soccer + + + + Ligue 1 - Highlight Show + All of the greatest moments from a weekend full of action in Ligue 1, with reviews of table and results. Also discusses players of the week, best play, best save, worst blooper, who is in the hot seat, and who was the revelation of the round. + Sports + Talk Show + + + + Pro Footvolley Tour + 2023 Pro Tour: America's ''SuperBoy'' of Footvolley + Shake the winter blues on sun-kissed Hollywood Beach with this exciting hybrid of soccer and volleyball. + Sports + Volleyball + + + + Beach Tennis Sand Series Highlights + Brazil + Sports + Tennis + + + + Beach Tennis Sand Series Highlights + Saarlouis Classic (Ger) + Sports + Tennis + + + + Jai Alai + Battle Court Spring: Cyclones vs. Renegades + Sports + Miscellaneous + + + + Bare Knuckle Boxing + Boxing in its purest form, with no gloves and hands are warped only. + Sports + Boxing + + + + Beach Tennis Sand Series Highlights + Brazil + Sports + Tennis + + + + Beach Tennis Sand Series Highlights + Saarlouis Classic (Ger) + Sports + Tennis + + + + Jai Alai + Battle Court Spring: Cyclones vs. Renegades + Sports + Miscellaneous + + + + Wild Spirits + Exposing unheard stories from the extreme sports world, the show not only presents jaw-dropping action but uncovers personal journeys that turn hometown heroes into global icons. + Sports + Extreme + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Outdoor Sports Show + A look at various outdoor sports. + Sports + Outdoors + + + + Outdoor Sports Show + A look at various outdoor sports. + Sports + Outdoors + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Outdoor Sports Show + A look at various outdoor sports. + Sports + Outdoors + + + + Outdoor Sports Show + A look at various outdoor sports. + Sports + Outdoors + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Inside Sailing + The very best action from some of the most spectacular sailing events around the world. + Sports + Boating + + + + Beach Tennis Sand Series Highlights + Brazil + Sports + Tennis + + + + Beach Tennis Sand Series Highlights + Saarlouis Classic (Ger) + Sports + Tennis + + + + Jai Alai + Battle Court Spring: Cyclones vs. Renegades + Sports + Miscellaneous + + + + Bare Knuckle Boxing + Boxing in its purest form, with no gloves and hands are warped only. + Sports + Boxing + + + + beIN SPORTS Rising Stars + Folarin Balogun: Stade Reims vs. AS Monaco + Classic soccer matches featuring the sport's rising stars. + Sports + Soccer + + + + Stars of Ligue 1 + Vitinha: Stade Rennais vs. PSG + Classic soccer matches featuring the most renowned players from French Ligue 1 Soccer. + Sports + Soccer + + + + Copa Libertadores Highlights + Final + Highlights of matches from the most prestigious club competition in South America. + Sports + Soccer + + + + Copa Sudamericana Highlight Show + Final + Sports + Soccer + + + + Pro Footvolley Tour + 2023 Pro Tour: Battle of Sexes + Shake the winter blues on sun-kissed Hollywood Beach with this exciting hybrid of soccer and volleyball. + Sports + Volleyball + + + + Equestrian + FEI Jumping European Championship, Haras du Pin + Coverage of equestrian events. + Sports + Equestrian + + + TVG + + + + UCI BMX Racing World Cup + Round 10: Santiago del Estero + Sports + BMX Racing + + + + Bare Knuckle Boxing + Boxing in its purest form, with no gloves and hands are warped only. + Sports + Boxing + + + + Equestrian + FEI Jumping European Championship, Haras du Pin + Coverage of equestrian events. + Sports + Equestrian + + + TVG + + + + UCI BMX Racing World Cup + Round 10: Santiago del Estero + Sports + BMX Racing + + + + Wild Spirits + Exposing unheard stories from the extreme sports world, the show not only presents jaw-dropping action but uncovers personal journeys that turn hometown heroes into global icons. + Sports + Extreme + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Outdoor Sports Show + A look at various outdoor sports. + Sports + Outdoors + + + + Outdoor Sports Show + A look at various outdoor sports. + Sports + Outdoors + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Outdoor Sports Show + A look at various outdoor sports. + Sports + Outdoors + + + + Outdoor Sports Show + A look at various outdoor sports. + Sports + Outdoors + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Inside Sailing + The very best action from some of the most spectacular sailing events around the world. + Sports + Boating + + + + Equestrian + FEI Jumping European Championship, Haras du Pin + Coverage of equestrian events. + Sports + Equestrian + + + TVG + + + + UCI BMX Racing World Cup + Round 10: Santiago del Estero + Sports + BMX Racing + + + + Bare Knuckle Boxing + Boxing in its purest form, with no gloves and hands are warped only. + Sports + Boxing + + + + beIN SPORTS Rising Stars + Desiree Doue: Stade Rennais vs. Nantes + From Oct. 1, 2023. + Sports + Soccer + + + + Stars of Ligue 1 + Alexandre Lacazette: Lyon vs. FC Lorient + Classic soccer matches featuring the most renowned players from French Ligue 1 Soccer. + Sports + Soccer + + + + Copa Sudamericana Highlight Show + Final + Sports + Soccer + + + + Copa Libertadores Highlights + Final + Highlights of matches from the most prestigious club competition in South America. + Sports + Soccer + + + + Pro Footvolley Tour + 2023 Pro Tour: Championship USA vs. Brazil in Footvolley for Nations Cup III + Shake the winter blues on sun-kissed Hollywood Beach with this exciting hybrid of soccer and volleyball. + Sports + Volleyball + + + + Lille OSC vs. Olympique de Marseille + Marseille vs. Lille + Jornada 11 de Ligue 1. Olympique de Marsella enfrenta a LOSC Lille. Desde el Orange Velodrome. + Sports + Soccer + + + + Fútbol CONMEBOL Libertadores + Boca vs. Fluminense + Boca Juniors y Fluminense se enfrentan en el estadio Maracaná en la final de la Copa Libertadores. A pesar de ser local, el Flu juega contra los Xeneizes en campo neutral, es un duelo más entre brasileños y argentinos en el torneo continental. + Sports + Soccer + + + + The Express + Cobertura en vivo de la acción futbolista antes del partido incluyendo reportajes especiales y análisis. + Sports + Soccer + + + + The Express + Cobertura en vivo de la acción futbolista antes del partido incluyendo reportajes especiales y análisis. + Sports + Soccer + + + + Racing Club de Lens vs. Lorient + FC Lorient vs. RC Lens + Jornada 11 de Ligue 1. Lorient enfrenta a Lens. Desde el Estadio Yves Allainmat-Le Moustoir. + Sports + Soccer + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Ligue 1 - Highlight Show + Un recuento de los momentos emocionantes de la semana en los partidos de fútbol de la liga francesa. Sigue el intento ambicioso de PSG por ganar el título contra equipos como Lyon y los campeones Montpellier. + Sports + Talk Show + + + + Metz vs. Olympique Lyonnais + Olympique Lyonnais vs. FC Metz + Desde el estadio Parc Olympique Lyonnais en Décines-Charpieu, Francia. + Sports + Soccer + + + + Stade de Reims vs. FC Nantes + FC Nantes vs. Stade de Reims + Desde el Estadio Beaujoire-Louis Fonteneau en Nantes, Pays de la Loire, Francia. + Sports + Soccer + + + + Stade Brestois 29 vs. AS Monaco + Mónaco vs. Stade Brestois + Desde el Estadio Louis II en Fontvieille, Monaco. + Sports + Soccer + + + + 90 in 30 + Ligue 1 2023-2024: Paris Saint-Germain vs. Montpellier + Jornada 11 de la Ligue 1 2023-24. Paris Saint-Germain recibe a Montpellier. Desde el Parc des Princes, París. + Sports + Soccer + + + + 90 in 30 + Superliga 2023-2024: Fenerbahce vs. Trabzonspor + 90 in 30 ofrece los mejores partidos de cada semana en 30 minutos de acción sin parar, brindando las jugadas más emocionantes e importantes. + Sports + Soccer + + + + 90 in 30 + Copa Libertadores 2023-2024: Boca Juniors vs. Fluminense + 90 in 30 ofrece los mejores partidos de cada semana en 30 minutos de acción sin parar, brindando las jugadas más emocionantes e importantes. + Sports + Soccer + + + + The Express + Cobertura en vivo de la acción futbolista antes del partido incluyendo reportajes especiales y análisis. + Sports + Soccer + + + + Stade Rennais vs. OGC Nice + OGC Nice vs. Stade Rennes + Desde el estadio Allianz Riviera de Niza, Francia. + Sports + Soccer + + + + The Express + Cobertura en vivo de la acción futbolista antes del partido incluyendo reportajes especiales y análisis. + Sports + Soccer + + + + Ligue 1 - Highlight Show + Un recuento de los momentos emocionantes de la semana en los partidos de fútbol de la liga francesa. Sigue el intento ambicioso de PSG por ganar el título contra equipos como Lyon y los campeones Montpellier. + Sports + Talk Show + + + + 90 in 30 + Ligue 1 2023-2024: Lyon vs. Metz + 90 in 30 ofrece los mejores partidos de cada semana en 30 minutos de acción sin parar, brindando las jugadas más emocionantes e importantes. + Sports + Soccer + + + + 90 in 30 + Ligue 1 2023-2024: AS Monaco vs. Stade Brestois + 90 in 30 ofrece los mejores partidos de cada semana en 30 minutos de acción sin parar, brindando las jugadas más emocionantes e importantes. + Sports + Soccer + + + + 90 in 30 + Ligue 1 2023-2024: Marseille vs. Lille + Resumen con lo mas destacado de Ligue 1. El Marseille se enfrenta contra Lille. Disputado el 4 de noviembre de 2023. + Sports + Soccer + + + + Besiktas vs. Antalyaspor + Antalyaspor vs. Besiktas JK + Toda la acción del campeonato turco de primera división. + Sports + Soccer + + + + Stade Rennais vs. OGC Nice + OGC Nice vs. Stade Rennes + Desde el estadio Allianz Riviera de Niza, Francia. + Sports + Soccer + + + + Metz vs. Olympique Lyonnais + Olympique Lyonnais vs. FC Metz + Desde el estadio Parc Olympique Lyonnais en Décines-Charpieu, Francia. + Sports + Soccer + + + + Stade Brestois 29 vs. AS Monaco + Mónaco vs. Stade Brestois + Desde el Estadio Louis II en Fontvieille, Monaco. + Sports + Soccer + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Footvolley + Hollywood Beach + Acción desde Hollywood Beach, en Florida. + Sports + Volleyball + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Desayuno con goles + Ligue 1: Nantes vs. Lens + Desayuno con un clásico de Ligue 1. El Nantes se enfrenta contra Lens. Disputado el 10 de diciembre de 2021. + Sports + Soccer + + + + Rivales del Marseille + Los mejores y más destacados encuentros y clásicos del Marseille contra sus rivales. + Sports + Family + + + + Montpellier vs. Paris Saint-Germain + Paris Saint-Germain FC vs. Montpellier HSC + Jornada 11 de Ligue 1. Paris Saint-Germain se enfrenta a Montpellier. Desde el Parc des Princes. + Sports + Soccer + + + + Kasimpasa Spor Kulübü vs. Galatasaray + Galatasaray A.S. vs. Kasimpasa Spor Kulübü + Desde Ali Sami Yen Spor Kompleksi - Rams Park, en Estambul, Turquía. + Sports + Soccer + + + + Le Havre AC vs. Toulouse + Toulouse vs. Le Havre + Desde el Estadio de Toulouse en Toulouse, Midi-Pyrenees, Francia. + Sports + Soccer + + + + 90 in 30 + Superliga 2023-2024: Antalyaspor vs. Besiktas + 90 in 30 ofrece los mejores partidos de cada semana en 30 minutos de acción sin parar, brindando las jugadas más emocionantes e importantes. + Sports + Soccer + + + + 90 in 30 + Superliga 2023-2024: Galatasaray vs. Kasimpasa + 90 in 30 ofrece los mejores partidos de cada semana en 30 minutos de acción sin parar, brindando las jugadas más emocionantes e importantes. + Sports + Soccer + + + + Ligue 1 - Highlight Show + Un recuento de los momentos emocionantes de la semana en los partidos de fútbol de la liga francesa. Sigue el intento ambicioso de PSG por ganar el título contra equipos como Lyon y los campeones Montpellier. + Sports + Talk Show + + + + 90 in 30 + Lo mejor de Boca: Boca Juniors vs. Pereira + Boca llega a la final de Libertadores. Hoy el compacto: Boca Juniors contra Pereira. Disputado el 18 de abril del 2023. + Sports + Soccer + + + + 90 in 30 + Lo mejor de Boca: Boca Juniors vs. Colo Colo + Boca llega a la final de Libertadores. El compacto: Boca Juniors contra Colo-Colo. Disputado el 6 de junio del 2023. + Sports + Soccer + + + + 90 in 30 + Lo mejor de Boca: Boca Juniors vs. Monagas + Boca llega a la final de Libertadores. El compacto: Boca Juniors contra Monagas SC. Disputado el 29 de junio del 2023. + Sports + Soccer + + + + 90 en 30 + Lo mejor de Boca + Lo más destacado de la semifinal en el juego de ida de la Copa Libertadores 2023 entre Verdão y Xeneize. Disputado el 5 de octubre de 2023. + Sports + Soccer + + + + Metz vs. Olympique Lyonnais + Olympique Lyonnais vs. FC Metz + Acción de la jornada 11 en Ligue 1. Olympique Lyon se enfrenta al FC Metz. Desde el Estadio Groupama. + Sports + Soccer + + + + Ligue 1 - Highlight Show + Un recuento de los momentos emocionantes de la semana en los partidos de fútbol de la liga francesa. Sigue el intento ambicioso de PSG por ganar el título contra equipos como Lyon y los campeones Montpellier. + Sports + Talk Show + + + + 90 in 60 + Copa Libertadores 1999: Palmeiras vs. River + Vuelta de semifinales. Partido del 26 de mayo de 1999. + Sports + Soccer + + + + Noche de Goles + Ligue 1: Nantes vs. Lens + Noche de gol con un clásico de Ligue 1. El Nantes se enfrenta contra Lens. Disputado el 10 de diciembre de 2021. + Sports + Soccer + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Footvolley + Hollywood Beach + Acción desde Hollywood Beach, en Florida. + Sports + Volleyball + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Desayuno con goles + Süper Lig: Ankaragucu vs. Galatasaray + Un desayuno con lo mejor de Süper Lig. El Ankaragucu se enfrenta contra Galatasaray. Jugado el 30 de mayo del 2023. + Sports + Soccer + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Lille OSC vs. Olympique de Marseille + Marseille vs. Lille + Jornada 11 de Ligue 1. Olympique de Marsella enfrenta a LOSC Lille. Desde el Orange Velodrome. + Sports + Soccer + + + + Trabzonspor vs. Fenerbahce + Fenerbahce vs. Trabzonspor AS + Desde el estadio Ülker, en Istanbul, Turquía. + Sports + Soccer + + + + Fútbol CONMEBOL Libertadores + Boca vs. Fluminense + Boca Juniors y Fluminense se enfrentan en el estadio Maracaná en la final de la Copa Libertadores. A pesar de ser local, el Flu juega contra los Xeneizes en campo neutral, es un duelo más entre brasileños y argentinos en el torneo continental. + Sports + Soccer + + + + 90 in 30 + Superliga 2023-2024: Galatasaray vs. Kasimpasa + 90 in 30 ofrece los mejores partidos de cada semana en 30 minutos de acción sin parar, brindando las jugadas más emocionantes e importantes. + Sports + Soccer + + + + 90 in 30 + Ligue 1 2023-2024: Lyon vs. Metz + 90 in 30 ofrece los mejores partidos de cada semana en 30 minutos de acción sin parar, brindando las jugadas más emocionantes e importantes. + Sports + Soccer + + + + Copa Libertadores Highlights + Final + Un repaso de los partidos correspondientes a la CONMEBOL Copa Libertadores. + Sports + Soccer + + + + Copa Sudamericana Highlight Show + Final + Un repaso de lo más destacado de la Copa Sudamericana de la CONMEBOL. + Sports + Soccer + + + + 90 in 30 + Lo mejor de Fluminense: Sporting Cristal vs. Fluminense + Lo más destacado de la fase de grupos en la Copa Libertadores 2022-23 entre Sporting Cristal y Fluminense. Desde el Estadio Nacional de Lima. Disputado el 5 de abril de 2023. + Sports + Soccer + + + + 90 in 30 + Lo mejor de Fluminense: Fluminense vs. River Plate + Lo mejor y los momentos más destacados del encuentro disputado entre Fluminense contra River Plate en resumen. + Sports + Soccer + + + + 90 in 30 + Lo mejor de Fluminense: Internacional vs. Fluminense + 90 in 30 ofrece los mejores partidos de cada semana en 30 minutos de acción sin parar, brindando las jugadas más emocionantes e importantes. + Sports + Soccer + + + + 90 in 30 + Lo mejor de Fluminense: Fluminense vs. Internacional + 90 in 30 ofrece los mejores partidos de cada semana en 30 minutos de acción sin parar, brindando las jugadas más emocionantes e importantes. + Sports + Soccer + + + + Montpellier vs. Paris Saint-Germain + Paris Saint-Germain FC vs. Montpellier HSC + Jornada 11 de Ligue 1. Paris Saint-Germain se enfrenta a Montpellier. Desde el Parc des Princes. + Sports + Soccer + + + + Copa Libertadores Highlights + Final + Un repaso de los partidos correspondientes a la CONMEBOL Copa Libertadores. + Sports + Soccer + + + + Copa Sudamericana Highlight Show + Final + Un repaso de lo más destacado de la Copa Sudamericana de la CONMEBOL. + Sports + Soccer + + + + 90 in 60 + Copa Libertadores 2018: Corinthians vs. Colo-Colo + Octavos de final, vuelta. Partido disputado el 29 de agosto de 2018. + Sports + Soccer + + + + Noche de Goles + Süper Lig: Ankaragucu vs. Galatasaray + Noche con lo mejor de Süper Lig. El Ankaragucu se enfrenta contra Galatasaray. Jugado el 30 de mayo del 2023. + Sports + Soccer + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Footvolley + Hollywood Beach 2022, semifinales + Acción de las semifinales del Hollywood Beach 2022. Desde Hollywood, Florida. + Sports + Volleyball + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Desayuno con goles + Copa Libertadores: Velez Starfield vs. Talleres + Acción en cuartos de final de Conmebol Libertadores. El Vélez Starfield enfrenta a Talleres (Córdoba). Disputado el 3 de agosto del 2022. + Sports + Soccer + + + + Programa pagado + Programa que muestra diversos productos para la venta. + Paid Program + Shopping + + + TVG + + + + Metz vs. Olympique Lyonnais + Olympique Lyonnais vs. FC Metz + Acción de la jornada 11 en Ligue 1. Olympique Lyon se enfrenta al FC Metz. Desde el Estadio Groupama. + Sports + Soccer + + + + Besiktas vs. Antalyaspor + Antalyaspor vs. Besiktas JK + Toda la acción del campeonato turco de primera división. + Sports + Soccer + + + + Fortaleza Esporte Club vs. + Fortaleza vs. Liga de Quito + Final de la Copa Sudamericana 2023. Fortaleza (Brasil) se enfrenta a LDU Quito (Ecuador). Desde el estadio Domingo Burgueño, en Maldonado, Uruguay. + Sports + Soccer + + + + 90 in 30 + Ligue 1 2023-2024: Paris Saint-Germain vs. Montpellier + Jornada 11 de la Ligue 1 2023-24. Paris Saint-Germain recibe a Montpellier. Desde el Parc des Princes, París. + Sports + Soccer + + + + 90 in 30 + Superliga 2023-2024: Fenerbahce vs. Trabzonspor + 90 in 30 ofrece los mejores partidos de cada semana en 30 minutos de acción sin parar, brindando las jugadas más emocionantes e importantes. + Sports + Soccer + + + + Copa Sudamericana Highlight Show + Final + Un repaso de lo más destacado de la Copa Sudamericana de la CONMEBOL. + Sports + Soccer + + + + Copa Libertadores Highlights + Final + Un repaso de los partidos correspondientes a la CONMEBOL Copa Libertadores. + Sports + Soccer + + + + Full Day Show + All day long + 24h schedule. + + me + myself + Irene + + film + entertainment + + + Full Day Show + All day long + 24h schedule. + + me + myself + Irene + + film + entertainment + + + Full Day Show + All day long + 24h schedule. + + me + myself + Irene + + film + entertainment + + + Full Day Show + All day long + 24h schedule. + + me + myself + Irene + + film + entertainment + + + To Be Announced + Programming to be announced. + Performing Arts + Music + + + TVPG + + + + To Be Announced + Programming to be announced. + Performing Arts + Music + + + TVPG + + + + To Be Announced + Programming to be announced. + Performing Arts + Music + + + TVPG + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Zoom IN + Zoom In goes beyond the catchy soundbites or viral video clips, to get to the heart of the stories impacting life across the Middle East, and around the world. + News + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Middle East Now + News + + + + The Rundown + Breaking headline stories, news features, and interviews with in-depth reports. + News + + + + Global Eye + News updates and insights regarding all the major events taking place in the world. + News + + + + Special Edition + Documentary + + + + To Be Announced + Programming to be announced. + Performing Arts + Music + + + TVPG + + + + The Rundown + Breaking headline stories, news features, and interviews with in-depth reports. + News + + + + Global Eye + News updates and insights regarding all the major events taking place in the world. + News + + + + Middle East Now + News + + + + Zoom IN + Zoom In goes beyond the catchy soundbites or viral video clips, to get to the heart of the stories impacting life across the Middle East, and around the world. + News + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Zoom IN + Zoom In goes beyond the catchy soundbites or viral video clips, to get to the heart of the stories impacting life across the Middle East, and around the world. + News + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Middle East Now + News + + + + The Rundown + Breaking headline stories, news features, and interviews with in-depth reports. + News + + + + Global Eye + News updates and insights regarding all the major events taking place in the world. + News + + + + Special Edition + Documentary + + + + To Be Announced + Programming to be announced. + Performing Arts + Music + + + TVPG + + + + The Rundown + Breaking headline stories, news features, and interviews with in-depth reports. + News + + + + Global Eye + News updates and insights regarding all the major events taking place in the world. + News + + + + Middle East Now + News + + + + Zoom IN + Zoom In goes beyond the catchy soundbites or viral video clips, to get to the heart of the stories impacting life across the Middle East, and around the world. + News + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Zoom IN + Zoom In goes beyond the catchy soundbites or viral video clips, to get to the heart of the stories impacting life across the Middle East, and around the world. + News + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Middle East Now + News + + + + The Rundown + Breaking headline stories, news features, and interviews with in-depth reports. + News + + + + Global Eye + News updates and insights regarding all the major events taking place in the world. + News + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + The Rundown + Breaking headline stories, news features, and interviews with in-depth reports. + News + + + + Global Eye + News updates and insights regarding all the major events taking place in the world. + News + + + + Middle East Now + News + + + + Zoom IN + Zoom In goes beyond the catchy soundbites or viral video clips, to get to the heart of the stories impacting life across the Middle East, and around the world. + News + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Zoom IN + Zoom In goes beyond the catchy soundbites or viral video clips, to get to the heart of the stories impacting life across the Middle East, and around the world. + News + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + Middle East Now + News + + + + The Rundown + Breaking headline stories, news features, and interviews with in-depth reports. + News + + + + Global Eye + News updates and insights regarding all the major events taking place in the world. + News + + + + Special Edition + Documentary + + + + Special Edition + Documentary + + + + The Rundown + Breaking headline stories, news features, and interviews with in-depth reports. + News + + + + Impractical Jokers + Paul Scheer + Unable to pull off this week's pickleball and coffee shop challenges, the losing Jokers are forced to participate in an overseas game show hosted by special guest Paul Scheer. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + Kal Penn + The jokers are posing as salesmen and must sell their bizarre products to focus group participants, then attempt a challenge that turns out to be a mouthful; Sal finds himself in a stinky situation in tonight's punishment with guest star Kal Penn. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + Blake Anderson + Q, Sal, and Murr pose as cash-grabby waiters and later as embarrassing parents; after the losing Joker is forced into a far-out focus group punishment with special guest, and so-called Ganja Weasel, Blake Anderson. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + Unmotivational Speaker + Friends compete to embarrass each other; speed dating with the world's worst pickup lines; phony fortunes on the boardwalk; getting personal in the hygiene aisle of a pharmacy. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + Drawing a Blank + The guys illustrate their lack of skill as caricature artists in the mall, demonstrate their odd living habits while interviewing for roommates, and try to cut the line for Broadway tickets in Times Square. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + Panty Raid + The guys massage beach goers on the boardwalk, broadcast the news from Times Square, and get their kicks teaching a karate class. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + Out of TP + The guys swipe food off diners' plates, tutor students in languages they don't speak and try to start a dance party. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + Who Arted? + The guys conduct a focus group with unique consumer questioning, are totally unfit as trainers in a gym class, and pretend to work at a famous New York bakery. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + A Loser Presents + The guy's serve up a new round of mischief at White Castle, pose as bouncers and offer phony horoscope readings. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + What Did I Eat? + The guys try to sell diamonds to unsuspecting couples ready to tie the knot and pose as members of a unwelcoming committee down at the boardwalk. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + Starfart Macchiato + The guys share humiliating text messages in a quiet waiting room, shampoo women's hair and teach a driver's ed course. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + Bellydancer + The guys put their green thumbs to the test as workers in a garden center, demonstrate how not to save lives as CPR instructors, and they're full of bologna working a deli counter. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + Charity Case + The guys bark up the wrong tree at a pet store, pose as golf instructors and give their regards to Broadway. + Reality TV + Comedy + + + TV14 + + + + American Dad! + Flavortown + Jeff starts hanging out with Stan's favorite celebrity chef while in search of an identity; Klaus and Roger start their own valet operation. + + Seth MacFarlane + Wendy Schaal + Rachael MacFarlane + + Animated + Sitcom + + + TV14 + + + + American Dad! + Persona Assistant + Roger has a medical emergency and Stan has to take over his personas; the series' 250th episode. + Animated + Sitcom + + + TV14 + + + + American Dad! + The Legend of Old Ulysses + Steve gets competitive during the father-son events at Possum Lake; Roger learns how to ride a bike. + Animated + Sitcom + + + TV14 + + + + American Dad! + Twinanigans + Steve and Roger restart their career as a twin brother acting duo; the family becomes addicted to a novelty gift shop. + Animated + Sitcom + + + TV14 + + + + American Dad! + The Legend of Old Ulysses + Steve gets competitive during the father-son events at Possum Lake; Roger learns how to ride a bike. + Animated + Sitcom + + + TV14 + + + + American Dad! + Twinanigans + Steve and Roger restart their career as a twin brother acting duo; the family becomes addicted to a novelty gift shop. + Animated + Sitcom + + + TV14 + + + + American Dad! + Top of the Steve + Steve goes to boarding school, only to discover it's an all-girls school; Stan is annoyed by a parade of characters that come to take Steve's place at home. + + Seth MacFarlane + Wendy Schaal + Rachael MacFarlane + + Animated + Sitcom + + + TV14 + + + + American Dad! + Funnyish Games + Francine becomes obsessed with home security after a break-in rattles her; Steve tries on Hayley's laid-back approach to school work. + Animated + Sitcom + + + TV14 + + + + American Dad! + Fleabiscuit + Hayley feels left behind after Jeff becomes a star dog racing coach; Steve takes advantage of an empty house. + Animated + Sitcom + + + TV14 + + + + American Dad! + The Future Is Borax + Worried about their bickering, Stan and Francine go to extremes to save their marriage; Roger excels at jingle writing. + Animated + Sitcom + + + TV14 + + + + World's Dumbest ... + World's Dumbest Brawlers 10 + Bums fighting over a bike tire; a naked guy using a guitar as a weapon; rappers that box worse than they rap. + Reality TV + + + TV14 + + + + World's Dumbest ... + World's Dumbest Pranksters 2 + Searching the video universe for the most idiotic pranksters imaginable. + Reality TV + + + TV14 + + + + World's Dumbest ... + World's Dumbest Thrillseekers 5 + A hung over hang glider; BMX klutzes; commentary from Tony Harding, Danny Bonaduce and Daniel Baldwin. + Reality TV + + + TV14 + + + + World's Dumbest ... + World's Dumbest Brawlers 11 + Subway brawls; Russian billionaires get physical. + Reality TV + + + TV14 + + + + World's Dumbest ... + World's Dumbest Motorheads 6 + A thief in a hijacked back-hoe; a trucker using Flintstone-style technology; an Amish buggy driver who doesn't care about the rules of the road. + Reality TV + + + TV14 + + + + World's Dumbest ... + World's Dumbest Performers 11 + Twenty stupid performers are in a countdown for a laugh. + Reality TV + + + TV14 + + + + Family Matters + Who's Afraid of the Big Black Book + For Eddie's (Darius McCrary) 21st birthday bash, Urkel (Jaleel White) mistakenly uses his little black book for the guest list. + + Reginald VelJohnson + Jo Marie Payton + Darius McCrary + + Sitcom + + + TVG + + + + Family Matters + A Mind Is a Terrible Thing to Read + A scientific accident leaves Urkel (Jaleel White) with the ability to read minds. With Reginald VelJohnson. + + Reginald VelJohnson + Jo Marie Payton + Darius McCrary + + Sitcom + + + TVG + + + + Family Matters + Stevil II: This Time He's Not Alone + The ventriloquist dummy Stevil and his new friend Carlsbad haunt Urkel and Carl (Jaleel White, Reginald VelJohnson). + + Reginald VelJohnson + Darius McCrary + Kellie Shanygne Williams + + Sitcom + Christmas + + + TVG + + + + Family Matters + Trading Places + Stephan and Urkel trade places to test Laura's feelings; Eddie tapes the police department for a school project. + + Reginald VelJohnson + Darius McCrary + Kellie Shanygne Williams + + Sitcom + + + TVG + + + + Family Matters + A Pain in Harassment + Urkel can win $1 million by sinking a halftime shot at an L.A. Clippers game; Harriette has trouble with her boss. + + Reginald VelJohnson + Jo Marie Payton + Darius McCrary + + Sitcom + + + TVG + + + + Family Matters + Original Gangsta Dawg + Trouble comes to town when Urkel's cousin, Original Gangsta Dawg, pays a visit and clashes with both Carl and Laura. + + Reginald VelJohnson + Jo Marie Payton + Darius McCrary + + Sitcom + + + TVG + + + + Family Matters + Deck the Malls + Urkel's (Jaleel White) new job as a gift-wrapper at the mall complicates his relationship with Myra (Michelle Thomas). + + Reginald VelJohnson + Jo Marie Payton + Darius McCrary + + Sitcom + + + TVG + + + + Family Matters + Grill of My Dreams + Urkel impresses Laura with his new cooking talent and manages to save a Japanese restaurant from a fire; Carl baby-sits a parrot. + + Reginald VelJohnson + Jo Marie Payton + Darius McCrary + + Sitcom + + + TVG + + + + Impractical Jokers: Inside Jokes + The Truth Hurts + A behind-the-scenes look at a challenge that became an instant classic; a spontaneous act of kindness blows the crew away; the Jokers are responsible for a word in the Urban Dictionary. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Psychotic Not-Line + The phrase the Jokers and crew still say to crack each other up; which Joker burned himself during a challenge; what's become a signature line in the show's opening. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Get Out of Dodge + One of the Joker's used to run his own business; actress Rosie O'Donnell becomes a fan of the show; Murr surprises the guys on set. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Out of Fashion + Going behind the scenes to see what challenge was canceled and rescheduled three times, why some people didn't want to be included in the show and what questions the guys prepared for each other that didn't make the cut. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Scaredy Cat + Find out which Joker almost walked out of a challenge, what scene inspired the name of a fan's baby and which Joker is allergic to cats. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Down in the Dump + Behind the scenes to find answers to important questions such as whose sister frequently helps on the show and what prop is a fan favorite. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Sweat the Small Things + Behind the scenes to find out what Q considers to be one of the worst punishments of all time; the prank Joe often pulls on Sal when they're traveling. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Film Fail + Behind the scenes; why the Jokers film in the produce section of grocery stores, what the guys tease Murr about, and why the audio team had issues recording in a medical office. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + The Alliance + A look at which Joker is an avid photographer, what words do the guys never want to hear before filming a punishment, and which Joker is never afraid to strip down for a challenge. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Enter the Dragons + One of the Joker's father has made a few appearances on the show; a natural disaster affects one of the challenges; Sal owns a replica of Van Halen's guitar. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Sorry for Your Loss + A Joker brings a kitten to set; a comment shocks Sal; the songs used on the show; Q tries to master a musical instrument. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Cyber Buddies + Going behind the scenes to find out which bit involving Sal and a scandalous photograph didn't make the cut, which Joker was fired twice in one summer, and which challenge took all day and into the night to complete. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + The Stoop Sessions: Part 1 + The guys discuss their most shocking incidents, the best reactions, and reveal never before seen moments from the cutting room floor. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + The Stoop Sessions: Part 2 + The guys relive the moments that made them cringe, crack under pressure, and reveal behind the scenes info on the surprises that came out of left field. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + Strip High Five + The guys say all the wrong things when conducting sensitivity training, have unexpected celebrity sightings on the street, and are forced into being unreceptive receptionists in a busy office. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + Do Something to My Face + The guys enlist shoppers to settle senseless debates in the mall; scream for ice-cream as patrons in a parlor; protest unconventional causes in the park. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Field of Screams + Creating a creepy voice changer for. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Nationals Disaster + A grocery store challenge takes place in the dairy aisle; the secret ingredient in Grandma Oil is revealed. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Toasted + The first special guest that subbed for one of the jokers; the joker who believes he is the best at baseball; the joker who is an ordained minister. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Scarytales + Sal earns the nickname. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Snow Way Out + One Joker only drinks coffee after 2 p.m.; a Joker is self-conscious about singing; how long Joe and Q waited inside while Murr and Sal hung out on a ski lift in the freezing cold. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Takes the Cake + Learning if any of the Jokers are avid skiers; a maitre d' helps out when seating patrons for. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Make Womb for Daddy + A behind-the-scenes look at who scored free sandwiches while shooting at Blimpie and which classic game inspired the Guess What challenge; Q reveals what was worse than the pain he endured during his childbirth punishment. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Junk in the Trunk + Which two Jokers have learned how to practice transcendental meditation? Who takes fashion tips from Joe? And which famous boy band member did the guys first meet at Carnegie Deli? Go behind the scenes to find out! + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + Sound EffeXXX + The guys debut uninspiring inventions to stunned focus groups, use people for pillows, talk shoppers out of their desired products; then the loser has his laptop make noises in a coffee shop. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + Joker vs. Joker + Joe, Sal, Murr, and Q try their hands at giving palm readings, manicures, and much more in a humiliating quest to avoid facing the ultimate punishment. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + The Good, the Bad, and the Uncomfortable + The guys talk ticks, tricks, and antics; see the Jokers' best bloopers, and learn all about the guys' annoying habits that aren't captured on camera. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + Clash of the Jokers + The guys pitch fabulous and tasty mascot ideas to diehard baseball fans. Then, Joe and Q, break-it-down old-school-style at the mall. And finally, Sal and Murr face-off in a challenge that literally proves neither is book smart. + Reality TV + Comedy + + + TV14 + + + + Under Eye Bags? SOLUTION! + Plexaderm helps reduce Under Eye Bags, Dark Circles, and Wrinkles in just 10 minutes! + Paid Program + Lifestyle + + + + Ninja Woodfire Outdoor Grill + Meet the Shark Ninja Wood Fire Grill, with Master Grill, BBQ Smoke, and Air Fry outdoor capabilities. Powered by electricity and flavored by real burning wood pellets, Woodfire Technology allows you to easily create rich flavor you can see and taste. + Paid Program + + + + Inogen Portable Oxygen - Oxygen Therapy that Moves with You + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Mercy Ships + Mercy Ship's crew of world class medical volunteers sail across the globe providing lifesaving surgeries to those with nowhere else to turn. + Paid Program + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Impractical Jokers: Inside Jokes + Butterfly Crime Scene + What classic phrase is still said today; which unaired challenges almost made it to the show; the real backstory of Butterfly Crime Scene. + Reality TV + Comedy + + + TV14 + + + + World's Dumbest ... + World's Dumbest Outlaws 6 + A look at 20 of the stupidest citizens ever to run afoul of the law, including a shoplifter who cannot help dancing and a pet store thief with a pocketful of snakes. + Reality TV + + + TV14 + + + + World's Dumbest ... + World's Smartest Inventions 7 + Silverware for your dog; holsters for your beer; improvements for your bathroom; pajamas you can wear to court. + Reality TV + + + TV14 + + + + World's Dumbest ... + World's Dumbest Partiers 19 + Outdoor parties in a hurricane; a coach trashing the team trophy; a barfing birthday boy; a groom gets tazed at his own wedding. + Reality TV + + + TV14 + + + + USC vs. Ohio State + From T-Mobile Arena in Las Vegas. + Sports + Basketball + + + + Georgia vs. Oregon + From T-Mobile Arena in Las Vegas. + Sports + Basketball + + + + Impractical Jokers + Fe-Mail + It's spa day for the Jokers; Sal reveals his secret identity; surprised strangers wish they could have their penny back for sharing their thoughts; the big loser finds himself a little over dressed. + Reality TV + Comedy + + + TV14 + + + + World's Dumbest ... + World's Dumbest Brawlers 12 + A drunk that doesn't know when to leave the party; a lady who re-defines crushing on a boyfriend; street fighters. + Reality TV + + + TV14 + + + + Impractical Jokers + Baggage Shame + The guys share secrets with shoppers; the guys get creative in an art store; the big loser heads to the airport with a travel itinerary that would make anyone nauseous. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + Quantum Mock-anics + The guys get themselves into some hairy predicaments at the beauty supply store; a language barrier adds to the awkwardness during a text message challenge in Times Square. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + Tooth & Consequences + The guys spread the love in a bridal dress shop; then attempt to sway focus groups with fragrance campaigns that truly stink; the big loser wonders if he's too old to get a visit from the tooth fairy. + Reality TV + Comedy + + + TV14 + + + + CBB Hall of Fame Series Pregame + Sports + Basketball + + + + Impractical Jokers + Pay It Forward + Sal, Murr, Q, and Joe serve up some mischief at White Castle, take on tourists in Times Square, and check out customers in a warehouse store. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Psychotic Not-Line + The phrase the Jokers and crew still say to crack each other up; which Joker burned himself during a challenge; what's become a signature line in the show's opening. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Get Out of Dodge + One of the Joker's used to run his own business; actress Rosie O'Donnell becomes a fan of the show; Murr surprises the guys on set. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Out of Fashion + Going behind the scenes to see what challenge was canceled and rescheduled three times, why some people didn't want to be included in the show and what questions the guys prepared for each other that didn't make the cut. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Scaredy Cat + Find out which Joker almost walked out of a challenge, what scene inspired the name of a fan's baby and which Joker is allergic to cats. + Reality TV + Comedy + + + TV14 + + + + The Hangover + After a wild stag party in Las Vegas, three hazy groomsmen (Bradley Cooper, Ed Helms, Zach Galifianakis) must find their missing friend and get him back to Los Angeles in time for his wedding. + + Bradley Cooper + Ed Helms + Zach Galifianakis + + 2009 + Movies + Comedy + + + TVPG + + + 3 + + + + The Hangover + After a wild stag party in Las Vegas, three hazy groomsmen (Bradley Cooper, Ed Helms, Zach Galifianakis) must find their missing friend and get him back to Los Angeles in time for his wedding. + + Bradley Cooper + Ed Helms + Zach Galifianakis + + 2009 + Movies + Comedy + + + TVPG + + + 3 + + + + Impractical Jokers: Inside Jokes + Down in the Dump + Behind the scenes to find answers to important questions such as whose sister frequently helps on the show and what prop is a fan favorite. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Sweat the Small Things + Behind the scenes to find out what Q considers to be one of the worst punishments of all time; the prank Joe often pulls on Sal when they're traveling. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Film Fail + Behind the scenes; why the Jokers film in the produce section of grocery stores, what the guys tease Murr about, and why the audio team had issues recording in a medical office. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + The Alliance + A look at which Joker is an avid photographer, what words do the guys never want to hear before filming a punishment, and which Joker is never afraid to strip down for a challenge. + Reality TV + Comedy + + + TV14 + + + + Under Eye Bags? SOLUTION! + Plexaderm helps reduce Under Eye Bags, Dark Circles, and Wrinkles in just 10 minutes! + Paid Program + Lifestyle + + + + Cindy Crawford and Ellen Pompeo share secrets + Cindy Crawford and Ellen Pompeo discuss breakthrough skin care advances! + Paid Program + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Best Cooling Topper for Back & Hip Pain! + Dormeo Mattress Topper Transforms Your Bed To Get A Great Night's Sleep. Soothing & Cooling. + Paid Program + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + Impractical Jokers: Inside Jokes + Birds and the Bees + A behind-the-scenes look at what has become a signature part of Q's wardrobe; the best dancer among the Jokers; a character who made his first appearance on an early episode of. + Reality TV + Comedy + + + TV14 + + + + World's Dumbest ... + World's Dumbest Daredevils 6 + Dumb daredevils; base jumpers; a ski jumper; three fiery crashes; celebrity commentators include Todd Bridges, Leif Garrett and Tonya Harding. + Reality TV + + + TV14 + + + + World's Dumbest ... + World's Dumbest Record Breakers 2 + High speed shopping cart races; epic strip poker games; worm eating contests. + Reality TV + + + TV14 + + + + World's Dumbest ... + World's Dumbest Competitions 5 + Dumb competitions; wrestling in gravy; coffin racers. + Reality TV + + + TV14 + + + + Wipeout + The Big Balls Are Back, Baby! + Fire performers, a rock 'n' roll father-daughter duo and bubbleologists have a chance to traverse three of the most challenging courses in. + Game Shows + Reality TV + + + TVPG + + + + Wipeout + Big Ball Energy + Forensic scientists, radio DJs and a pair of. + Game Shows + Reality TV + + + TV14 + + + + Wipeout + OMFG Girl Run! + From Luxembourg, Frisbee Camp, and even home-school, teams face the most challenging obstacles in. + Game Shows + Reality TV + + + TVPG + + + + Impractical Jokers + Butterfly Crime Scene + The guys get liberal with lotion down at the shore, shop from other people's carts in a supermarket, and try to scam their way to a free dish of yogurt. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + Unmotivational Speaker + Friends compete to embarrass each other; speed dating with the world's worst pickup lines; phony fortunes on the boardwalk; getting personal in the hygiene aisle of a pharmacy. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + Boardwalk of Shame + The guys use humiliating one-liners on strangers, play a unique word game and attempt to get shoppers in a car trunk. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + Drawing a Blank + The guys illustrate their lack of skill as caricature artists in the mall, demonstrate their odd living habits while interviewing for roommates, and try to cut the line for Broadway tickets in Times Square. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + Panty Raid + The guys massage beach goers on the boardwalk, broadcast the news from Times Square, and get their kicks teaching a karate class. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + Out of TP + The guys swipe food off diners' plates, tutor students in languages they don't speak and try to start a dance party. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + Who Arted? + The guys conduct a focus group with unique consumer questioning, are totally unfit as trainers in a gym class, and pretend to work at a famous New York bakery. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + A Loser Presents + The guy's serve up a new round of mischief at White Castle, pose as bouncers and offer phony horoscope readings. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + What Did I Eat? + The guys try to sell diamonds to unsuspecting couples ready to tie the knot and pose as members of a unwelcoming committee down at the boardwalk. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + Starfart Macchiato + The guys share humiliating text messages in a quiet waiting room, shampoo women's hair and teach a driver's ed course. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + Bellydancer + The guys put their green thumbs to the test as workers in a garden center, demonstrate how not to save lives as CPR instructors, and they're full of bologna working a deli counter. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + Charity Case + The guys bark up the wrong tree at a pet store, pose as golf instructors and give their regards to Broadway. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Enter the Dragons + One of the Joker's father has made a few appearances on the show; a natural disaster affects one of the challenges; Sal owns a replica of Van Halen's guitar. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Sorry for Your Loss + A Joker brings a kitten to set; a comment shocks Sal; the songs used on the show; Q tries to master a musical instrument. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Cyber Buddies + Going behind the scenes to find out which bit involving Sal and a scandalous photograph didn't make the cut, which Joker was fired twice in one summer, and which challenge took all day and into the night to complete. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Trouble Shoot + Why Murr is particular about the way labels face in grocery stores; how Sal always gets Joe to break character; who works out with a personal trainer and why wardrobe dressed Q in a Hawaiian shirt covered in lobsters. + Reality TV + Comedy + + + TV14 + + + + The Hangover Part II + Hoping to avoid the mayhem that marked his friend's Las Vegas bachelor party, Stu (Ed Helms) opts for what he thinks will be a safe prewedding brunch in Thailand. + + Bradley Cooper + Ed Helms + Zach Galifianakis + + 2011 + Movies + Comedy + + + TVPG + + + 2 + + + + The Hangover Part II + Hoping to avoid the mayhem that marked his friend's Las Vegas bachelor party, Stu (Ed Helms) opts for what he thinks will be a safe prewedding brunch in Thailand. + + Bradley Cooper + Ed Helms + Zach Galifianakis + + 2011 + Movies + Comedy + + + TVPG + + + 2 + + + + Impractical Jokers: Inside Jokes + Nationals Disaster + A grocery store challenge takes place in the dairy aisle; the secret ingredient in Grandma Oil is revealed. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Toasted + The first special guest that subbed for one of the jokers; the joker who believes he is the best at baseball; the joker who is an ordained minister. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Scarytales + Sal earns the nickname. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers: Inside Jokes + Snow Way Out + One Joker only drinks coffee after 2 p.m.; a Joker is self-conscious about singing; how long Joe and Q waited inside while Murr and Sal hung out on a ski lift in the freezing cold. + Reality TV + Comedy + + + TV14 + + + + Paid Programming + Paid programming. + Paid Program + Shopping + + + TVG + + + + H2O X5 - Super Powerful 5-In-1 Multi-Use Steam Cleaner + Kills 990f Bacteria, Viruses, and Germs with Steam! The 5-in-1 Lightweight, Fast, Powerful, And Completely Chemical Free Steam Cleaner! Lift and remove dirt and stains all around the home! + Paid Program + + + + Shark CarpetXpertTM with StainStrikerTM 2-in-1 deep carpet cleaner with built-in spot & stain remove + Shark CarpetXpert with StainStriker, 2-in-1 deep carpet and upholstery cleaner with a handheld spot & stain eliminator, combines Shark's powerful suction & deep-cleaning innovation to deliver unbeatable deep carpet cleaning & tough stain elimination. + Paid Program + + + + Portable Oxygen + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop + Experience hands-free cleaning with Shark Matrix™ Plus 2-in-1 Robot Vacuum & Mop! Matrix Clean precision grid cleaning leaves no spots and the Sonic Mopping™ feature scrubs 100x times per minute removing stuck on stains. + Paid Program + + + TVPG + + + + Inogen Portable Oxygen - Oxygen Therapy that Moves with You + Inogen® is a leading global medical technology company offering innovative respiratory products for use in the homecare setting. + Paid Program + + + + Impractical Jokers: Inside Jokes + Psychotic Not-Line + The phrase the Jokers and crew still say to crack each other up; which Joker burned himself during a challenge; what's become a signature line in the show's opening. + Reality TV + Comedy + + + TV14 + + + + World's Dumbest ... + World's Dumbest Criminals 14 + Inept arsonists; butter-fingered bank robbers; corrupt civil servants; celebrity commentators include Danny Bonaduce, Tonya Harding and Todd Bridges. + Reality TV + + + TV14 + + + + World's Dumbest ... + World's Dumbest Drivers 11 + Dangerous drivers are recognized in the. + Reality TV + + + TV14 + + + + World's Dumbest ... + World's Dumbest Partiers 6 + A man celebrates Canada Day by breaking beer bottles on his head; a naked john chases a prostitute who stole his clothes; celebrity commentators include Danny Bonaduce, Todd Bridges and Leif Garrett. + Reality TV + + + TV14 + + + + World's Dumbest ... + World's Dumbest Thrillseekers 3 + A base-jumper; moronic motorcyclists; a war re-enactor. + Reality TV + + + TV14 + + + + World's Dumbest ... + World's Dumbest Partiers 14 + Stupid celebrators from around the globe; a man with a rogue beer slingshot; Filipino friends freaking out over Miss Universe. + Reality TV + + + TV14 + + + + World's Dumbest ... + World's Dumbest Performers 7 + Dancers damage each other; Russian boy-band with dental issues; comedian with pepper spray. + Reality TV + + + TV14 + + + + Impractical Jokers + Theater del Absurdo + The guys raise money for absurd charities, join diners mid-meal; offer unsolicited advice to shoppers. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + Pick a Loser + The guys try to smooch strangers on the streets, play a word game with shoppers, and try not to be camera shy when forced to pose as photographers. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + Supercuts + The guys toy with customers at a candy store using bizarre party props, they all try their hands at nosing, and they break the rules of appropriate elevator etiquette. + Reality TV + Comedy + + + TV14 + + + + Impractical Jokers + The Stoop Sessions: Part 1 + The guys discuss their most shocking incidents, the best reactions, and reveal never before seen moments from the cutting room floor. + Reality TV + Comedy + + + TV14 + + +